1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
34 int mkdir_label(const char *path, mode_t mode) {
35 return label_mkdir(path, mode, true);
38 static int makedir_safe(const char *path, mode_t mode, uid_t uid, gid_t gid, bool apply) {
41 if (label_mkdir(path, mode, apply) >= 0)
42 if (chmod_and_chown(path, mode, uid, gid) < 0)
45 if (lstat(path, &st) < 0)
48 if ((st.st_mode & 0777) != mode ||
51 !S_ISDIR(st.st_mode)) {
59 int mkdir_safe(const char *path, mode_t mode, uid_t uid, gid_t gid) {
60 return makedir_safe(path, mode, uid, gid, false);
63 int mkdir_safe_label(const char *path, mode_t mode, uid_t uid, gid_t gid) {
64 return makedir_safe(path, mode, uid, gid, true);
67 static int makedir_parents(const char *path, mode_t mode, bool apply) {
73 /* return immediately if directory exists */
74 e = strrchr(path, '/');
77 p = strndupa(path, e - path);
78 if (stat(p, &st) >= 0) {
79 if ((st.st_mode & S_IFMT) == S_IFDIR)
85 /* create every parent directory in the path, except the last component */
86 p = path + strspn(path, "/");
91 e = p + strcspn(p, "/");
92 p = e + strspn(e, "/");
94 /* Is this the last component? If so, then we're
99 t = strndup(path, e - path);
103 r = label_mkdir(t, mode, apply);
106 if (r < 0 && errno != EEXIST)
111 int mkdir_parents(const char *path, mode_t mode) {
112 return makedir_parents(path, mode, false);
115 int mkdir_parents_label(const char *path, mode_t mode) {
116 return makedir_parents(path, mode, true);
119 static int makedir_p(const char *path, mode_t mode, bool apply) {
124 r = makedir_parents(path, mode, apply);
128 if (label_mkdir(path, mode, apply) < 0 && errno != EEXIST)
134 int mkdir_p(const char *path, mode_t mode) {
135 return makedir_p(path, mode, false);
138 int mkdir_p_label(const char *path, mode_t mode) {
139 return makedir_p(path, mode, true);