mirror of
https://github.com/shadow-maint/shadow.git
synced 2026-01-26 22:12:26 +00:00
"config.h" is a locally generated header. It must be included as '#include "config.h"'. It is already included correctly in some sources files. This commit unifies the way how "config.h" is included. Signed-off-by: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
105 lines
2.0 KiB
C
105 lines
2.0 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 1991 - 1994, Julianne Frances Haugh
|
|
* SPDX-FileCopyrightText: 1996 - 2001, Marek Michałkiewicz
|
|
* SPDX-FileCopyrightText: 2003 - 2006, Tomasz Kłoczko
|
|
* SPDX-FileCopyrightText: 2007 - 2010, Nicolas François
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#ident "$Id$"
|
|
|
|
#include <fcntl.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <dirent.h>
|
|
#include <unistd.h>
|
|
|
|
#include "defines.h"
|
|
#include "prototypes.h"
|
|
#include "string/strcmp/streq.h"
|
|
|
|
|
|
static int remove_tree_at (int at_fd, const char *path, bool remove_root)
|
|
{
|
|
DIR *dir;
|
|
const struct dirent *ent;
|
|
int dir_fd, rc = 0;
|
|
|
|
dir_fd = openat (at_fd, path, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
|
|
if (dir_fd < 0) {
|
|
return -1;
|
|
}
|
|
|
|
dir = fdopendir (dir_fd);
|
|
if (!dir) {
|
|
(void) close (dir_fd);
|
|
return -1;
|
|
}
|
|
|
|
/*
|
|
* Open the source directory and delete each entry.
|
|
*/
|
|
while ((ent = readdir (dir))) {
|
|
struct stat ent_sb;
|
|
|
|
/*
|
|
* Skip the "." and ".." entries
|
|
*/
|
|
if (streq(ent->d_name, ".") ||
|
|
streq(ent->d_name, "..")) {
|
|
continue;
|
|
}
|
|
|
|
rc = fstatat (dirfd(dir), ent->d_name, &ent_sb, AT_SYMLINK_NOFOLLOW);
|
|
if (rc < 0) {
|
|
break;
|
|
}
|
|
|
|
if (S_ISDIR (ent_sb.st_mode)) {
|
|
/*
|
|
* Recursively delete this directory.
|
|
*/
|
|
if (remove_tree_at (dirfd(dir), ent->d_name, true) != 0) {
|
|
rc = -1;
|
|
break;
|
|
}
|
|
} else {
|
|
/*
|
|
* Delete the file.
|
|
*/
|
|
if (unlinkat (dirfd(dir), ent->d_name, 0) != 0) {
|
|
rc = -1;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
(void) closedir (dir);
|
|
|
|
if (remove_root && (0 == rc)) {
|
|
if (unlinkat (at_fd, path, AT_REMOVEDIR) != 0) {
|
|
rc = -1;
|
|
}
|
|
}
|
|
|
|
return rc;
|
|
}
|
|
|
|
/*
|
|
* remove_tree - delete a directory tree
|
|
*
|
|
* remove_tree() walks a directory tree and deletes all the files
|
|
* and directories.
|
|
* At the end, it deletes the root directory itself.
|
|
*/
|
|
int remove_tree (const char *root, bool remove_root)
|
|
{
|
|
return remove_tree_at (AT_FDCWD, root, remove_root);
|
|
}
|