From: Daniel Golle Date: Sat, 12 Dec 2020 23:01:15 +0000 (+0000) Subject: block: replace local mkdir_p implementation X-Git-Url: http://git.openwrt.org/feed/packages.git%5Ecd5c448758f30868770b9ebf8b656c1a4211a240?a=commitdiff_plain;h=f415323b7c87d66ab11d89325937d5dae5eb65c9;p=project%2Ffstools.git block: replace local mkdir_p implementation Drop local mkdir_p implementation in favour of using the implementation now added to libubox. Signed-off-by: Daniel Golle --- diff --git a/block.c b/block.c index 569bf56..f094216 100644 --- a/block.c +++ b/block.c @@ -38,11 +38,12 @@ #include #include -#include +#include +#include #include +#include +#include #include -#include -#include #include #include "probe.h" @@ -697,18 +698,6 @@ static int print_block_info(struct probe_info *pr) return 0; } -static void mkdir_p(char *dir) -{ - char *l = strrchr(dir, '/'); - - if (l) { - *l = '\0'; - mkdir_p(dir); - *l = '/'; - mkdir(dir, 0755); - } -} - static void check_filesystem(struct probe_info *pr) { pid_t pid; @@ -1085,7 +1074,7 @@ static int mount_device(struct probe_info *pr, int type) if (check_fs) check_filesystem(pr); - mkdir_p(target); + mkdir_p(target, 0755); if (!lstat(target, &st) && S_ISLNK(st.st_mode)) unlink(target); @@ -1396,7 +1385,7 @@ static int check_extroot(char *path) snprintf(tag, sizeof(tag), "%s/etc", path); if (stat(tag, &s)) - mkdir_p(tag); + mkdir_p(tag, 0755); snprintf(tag, sizeof(tag), "%s/etc/.extroot-uuid", path); if (stat(tag, &s)) { @@ -1486,7 +1475,7 @@ static int mount_extroot(char *cfg) if (m->overlay) path = overlay; - mkdir_p(path); + mkdir_p(path, 0755); if (check_fs) check_filesystem(pr); @@ -1556,7 +1545,7 @@ static int main_extroot(int argc, char **argv) * Mount MTD part and try extroot (using * /etc/config/fstab from that partition) */ - mkdir_p(cfg); + mkdir_p(cfg, 0755); if (!mount(blkdev_path, cfg, "jffs2", MS_NOATIME, NULL)) { err = mount_extroot(cfg); umount2(cfg, MNT_DETACH); @@ -1578,7 +1567,7 @@ static int main_extroot(int argc, char **argv) char cfg[] = "/tmp/ubifs_cfg"; /* Mount volume and try extroot (using fstab from that vol) */ - mkdir_p(cfg); + mkdir_p(cfg, 0755); if (!mount(blkdev_path, cfg, "ubifs", MS_NOATIME, NULL)) { err = mount_extroot(cfg); umount2(cfg, MNT_DETACH);