chiark / gitweb /
mkdir: append _label to all mkdir() calls that explicitly set the selinux context
[elogind.git] / src / shared / mkdir.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2010 Lennart Poettering
7
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.
12
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.
17
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/>.
20 ***/
21
22 #include <assert.h>
23 #include <string.h>
24 #include <unistd.h>
25 #include <errno.h>
26 #include <stdlib.h>
27 #include <stdio.h>
28
29 #include "mkdir.h"
30 #include "label.h"
31 #include "util.h"
32 #include "log.h"
33
34 int mkdir_label(const char *path, mode_t mode) {
35         return label_mkdir(path, mode);
36 }
37
38 int mkdir_safe_label(const char *path, mode_t mode, uid_t uid, gid_t gid) {
39         struct stat st;
40
41         if (label_mkdir(path, mode) >= 0)
42                 if (chmod_and_chown(path, mode, uid, gid) < 0)
43                         return -errno;
44
45         if (lstat(path, &st) < 0)
46                 return -errno;
47
48         if ((st.st_mode & 0777) != mode ||
49             st.st_uid != uid ||
50             st.st_gid != gid ||
51             !S_ISDIR(st.st_mode)) {
52                 errno = EEXIST;
53                 return -errno;
54         }
55
56         return 0;
57 }
58
59 int mkdir_parents_label(const char *path, mode_t mode) {
60         struct stat st;
61         const char *p, *e;
62
63         assert(path);
64
65         /* return immediately if directory exists */
66         e = strrchr(path, '/');
67         if (!e)
68                 return -EINVAL;
69         p = strndupa(path, e - path);
70         if (stat(p, &st) >= 0) {
71                 if ((st.st_mode & S_IFMT) == S_IFDIR)
72                         return 0;
73                 else
74                         return -ENOTDIR;
75         }
76
77         /* create every parent directory in the path, except the last component */
78         p = path + strspn(path, "/");
79         for (;;) {
80                 int r;
81                 char *t;
82
83                 e = p + strcspn(p, "/");
84                 p = e + strspn(e, "/");
85
86                 /* Is this the last component? If so, then we're
87                  * done */
88                 if (*p == 0)
89                         return 0;
90
91                 t = strndup(path, e - path);
92                 if (!t)
93                         return -ENOMEM;
94
95                 r = label_mkdir(t, mode);
96                 free(t);
97
98                 if (r < 0 && errno != EEXIST)
99                         return -errno;
100         }
101 }
102
103 int mkdir_p_label(const char *path, mode_t mode) {
104         int r;
105
106         /* Like mkdir -p */
107
108         if ((r = mkdir_parents_label(path, mode)) < 0)
109                 return r;
110
111         if (label_mkdir(path, mode) < 0 && errno != EEXIST)
112                 return -errno;
113
114         return 0;
115 }