2 This file is part of systemd.
4 Copyright 2010 Lennart Poettering
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
29 #include "path-util.h"
30 #include "stat-util.h"
31 #include "user-util.h"
33 int mkdir_safe_internal(const char *path, mode_t mode, uid_t uid, gid_t gid, mkdir_func_t _mkdir) {
36 if (_mkdir(path, mode) >= 0)
37 if (chmod_and_chown(path, mode, uid, gid) < 0)
40 if (lstat(path, &st) < 0)
43 if ((st.st_mode & 0007) > (mode & 0007) ||
44 (st.st_mode & 0070) > (mode & 0070) ||
45 (st.st_mode & 0700) > (mode & 0700) ||
46 (uid != UID_INVALID && st.st_uid != uid) ||
47 (gid != GID_INVALID && st.st_gid != gid) ||
54 int mkdir_safe(const char *path, mode_t mode, uid_t uid, gid_t gid) {
55 return mkdir_safe_internal(path, mode, uid, gid, mkdir);
58 int mkdir_parents_internal(const char *prefix, const char *path, mode_t mode, mkdir_func_t _mkdir) {
64 if (prefix && !path_startswith(path, prefix))
67 /* return immediately if directory exists */
68 e = strrchr(path, '/');
75 p = strndupa(path, e - path);
82 /* create every parent directory in the path, except the last component */
83 p = path + strspn(path, "/");
85 char t[strlen(path) + 1];
87 e = p + strcspn(p, "/");
88 p = e + strspn(e, "/");
90 /* Is this the last component? If so, then we're
95 memcpy(t, path, e - path);
98 if (prefix && path_startswith(prefix, t))
102 if (r < 0 && errno != EEXIST)
107 int mkdir_parents(const char *path, mode_t mode) {
108 return mkdir_parents_internal(NULL, path, mode, mkdir);
111 int mkdir_p_internal(const char *prefix, const char *path, mode_t mode, mkdir_func_t _mkdir) {
116 r = mkdir_parents_internal(prefix, path, mode, _mkdir);
120 r = _mkdir(path, mode);
121 if (r < 0 && (errno != EEXIST || is_dir(path, true) <= 0))
127 int mkdir_p(const char *path, mode_t mode) {
128 return mkdir_p_internal(NULL, path, mode, mkdir);