From ef00567b029ec007ceab342a2ed1addaa5f63be6 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sun, 23 Oct 2022 13:26:48 +0100 Subject: utils: file: Use fstatat and unlinkat --- utils/file.c | 39 +++++++++++++++++++++++++++------------ 1 file changed, 27 insertions(+), 12 deletions(-) (limited to 'utils') diff --git a/utils/file.c b/utils/file.c index c460e49e9..3cf12d540 100644 --- a/utils/file.c +++ b/utils/file.c @@ -26,6 +26,7 @@ #include #include #include +#include #include #include "desktop/gui_internal.h" @@ -322,12 +323,23 @@ netsurf_recursive_rm(const char *path) int nentries, ent; nserror ret = NSERROR_OK; struct stat ent_stat; /* stat result of leaf entry */ - char *leafpath = NULL; const char *leafname; + int dirfd; - nentries = scandir(path, &listing, 0, alphasort); + dirfd = open(path, O_DIRECTORY); + if (dirfd == -1) { + switch (errno) { + case ENOENT: + return NSERROR_NOT_FOUND; + default: + return NSERROR_UNKNOWN; + } + } + nentries = scandir(path, &listing, 0, alphasort); if (nentries < 0) { + close(dirfd); + switch (errno) { case ENOENT: return NSERROR_NOT_FOUND; @@ -341,21 +353,26 @@ netsurf_recursive_rm(const char *path) if (strcmp(leafname, ".") == 0 || strcmp(leafname, "..") == 0) continue; - ret = netsurf_mkpath(&leafpath, NULL, 2, path, leafname); - if (ret != NSERROR_OK) goto out; - if (stat(leafpath, &ent_stat) != 0) { + if (fstatat(dirfd, leafname, &ent_stat, + AT_SYMLINK_NOFOLLOW) != 0) { goto out_via_errno; } if (S_ISDIR(ent_stat.st_mode)) { + char *leafpath = NULL; + + ret = netsurf_mkpath(&leafpath, NULL, 2, path, leafname); + if (ret != NSERROR_OK) + goto out; + ret = netsurf_recursive_rm(leafpath); - if (ret != NSERROR_OK) goto out; + free(leafpath); + if (ret != NSERROR_OK) + goto out; } else { - if (unlink(leafpath) != 0) { + if (unlinkat(dirfd, leafname, 0) != 0) { goto out_via_errno; } } - free(leafpath); - leafpath = NULL; } if (rmdir(path) != 0) { @@ -380,9 +397,7 @@ out: free(listing); } - if (leafpath != NULL) { - free(leafpath); - } + close(dirfd); return ret; } -- cgit v1.2.1