chiark / gitweb /
9f74bce08c9ba1fc0e1427d3b016bd8bfbe3d227
[elogind.git] / src / basic / rm-rf.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 /***
5   Copyright 2015 Lennart Poettering
6 ***/
7
8 #include <sys/stat.h>
9
10 #include "util.h"
11
12 typedef enum RemoveFlags {
13         REMOVE_ONLY_DIRECTORIES = 1 << 0,
14         REMOVE_ROOT             = 1 << 1,
15         REMOVE_PHYSICAL         = 1 << 2, /* if not set, only removes files on tmpfs, never physical file systems */
16         REMOVE_SUBVOLUME        = 1 << 3,
17 } RemoveFlags;
18
19 int rm_rf_children(int fd, RemoveFlags flags, struct stat *root_dev);
20 int rm_rf(const char *path, RemoveFlags flags);
21
22 /* Useful for usage with _cleanup_(), destroys a directory and frees the pointer */
23 static inline void rm_rf_physical_and_free(char *p) {
24         PROTECT_ERRNO;
25         (void) rm_rf(p, REMOVE_ROOT|REMOVE_PHYSICAL);
26         free(p);
27 }
28 DEFINE_TRIVIAL_CLEANUP_FUNC(char*, rm_rf_physical_and_free);