From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCHv2 07/12] installer: Add recurisve mkdir function Date: Sat, 23 Mar 2024 11:56:24 +0100 Message-ID: <20240323105629.371511-7-stefan.schantl@ipfire.org> In-Reply-To: <20240323105629.371511-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6348532496025413242==" List-Id: --===============6348532496025413242== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Stefan Schantl --- src/installer/hw.c | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/src/installer/hw.c b/src/installer/hw.c index 8396d83cf..3fa8b889e 100644 --- a/src/installer/hw.c +++ b/src/installer/hw.c @@ -1281,6 +1281,49 @@ int hw_restore_backup(const char* output, const char* = backup_path, const char* d return 0; } =20 +int hw_mkdir(const char *dir) { + char tmp[STRING_SIZE]; + char *p =3D NULL; + size_t len; + int r; + + snprintf(tmp, sizeof(tmp),"%s",dir); + len =3D strlen(tmp); + + if (tmp[len - 1] =3D=3D '/') { + tmp[len - 1] =3D 0; + } + + for (p =3D tmp + 1; *p; p++) { + if (*p =3D=3D '/') { + *p =3D 0; + + // Create target if it does not exist + if (access(tmp, X_OK) !=3D 0) { + r =3D mkdir(tmp, S_IRWXU|S_IRWXG|S_IRWXO); + + if (r) { + return r; + } + } + + *p =3D '/'; + } + } + + // Create target if it does not exist + if (access(tmp, X_OK) !=3D 0) { + r =3D mkdir(tmp, S_IRWXU|S_IRWXG|S_IRWXO); + + if (r) { + return r; + } + } + + return 0; +} + + int hw_create_btrfs_subvolume(const char* output, const char* subvolume) { char command [STRING_SIZE]; int r; --=20 2.39.2 --===============6348532496025413242==--