doc: remove older ChangeLog items
[coreutils.git] / src / selinux.c
blobd96aa17b2d782d0239497a03acd249d32e25904a
1 /* selinux - core functions for maintaining SELinux labeling
2 Copyright (C) 2012-2024 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Daniel Walsh <dwalsh@redhat.com> */
19 #include <config.h>
20 #include <selinux/label.h>
21 #include <selinux/context.h>
22 #include <sys/types.h>
24 #include "system.h"
25 #include "canonicalize.h"
26 #include "xfts.h"
27 #include "selinux.h"
29 #if HAVE_SELINUX_LABEL_H
31 # if ! HAVE_MODE_TO_SECURITY_CLASS
33 This function has been added to libselinux-2.1.12-5, but is here
34 for support with older versions of SELinux
36 Translates a mode into an Internal SELinux security_class definition.
37 Returns 0 on failure, with errno set to EINVAL.
39 static security_class_t
40 mode_to_security_class (mode_t m)
43 if (S_ISREG (m))
44 return string_to_security_class ("file");
45 if (S_ISDIR (m))
46 return string_to_security_class ("dir");
47 if (S_ISCHR (m))
48 return string_to_security_class ("chr_file");
49 if (S_ISBLK (m))
50 return string_to_security_class ("blk_file");
51 if (S_ISFIFO (m))
52 return string_to_security_class ("fifo_file");
53 if (S_ISLNK (m))
54 return string_to_security_class ("lnk_file");
55 if (S_ISSOCK (m))
56 return string_to_security_class ("sock_file");
58 errno = EINVAL;
59 return 0;
61 # endif
64 This function takes a PATH and a MODE and then asks SELinux what the label
65 of the path object would be if the current process label created it.
66 It then returns the label.
68 Returns -1 on failure. errno will be set appropriately.
71 static int
72 computecon_raw (char const *path, mode_t mode, char **con)
74 char *scon_raw = nullptr;
75 char *tcon_raw = nullptr;
76 security_class_t tclass;
77 int rc = -1;
79 char *dir = dir_name (path);
80 if (!dir)
81 goto quit;
82 if (getcon_raw (&scon_raw) < 0)
83 goto quit;
84 if (getfilecon_raw (dir, &tcon_raw) < 0)
85 goto quit;
86 tclass = mode_to_security_class (mode);
87 if (!tclass)
88 goto quit;
89 rc = security_compute_create_raw (scon_raw, tcon_raw, tclass, con);
91 quit:;
92 int err = errno;
93 free (dir);
94 freecon (scon_raw);
95 freecon (tcon_raw);
96 errno = err;
97 return rc;
101 This function takes a handle, path and mode, it calls computecon_raw to get
102 the label of the path object if the current process created it, then it calls
103 selabel_lookup to get the default type for the object. It substitutes the
104 default type into label. It tells the SELinux Kernel to label all new file
105 system objects created by the current process with this label.
107 Returns -1 on failure. errno will be set appropriately.
110 defaultcon (struct selabel_handle *selabel_handle,
111 char const *path, mode_t mode)
113 int rc = -1;
114 char *scon_raw = nullptr;
115 char *tcon_raw = nullptr;
116 context_t scontext = 0, tcontext = 0;
117 char const *contype;
118 char const *constr;
119 char *newpath = nullptr;
121 if (! IS_ABSOLUTE_FILE_NAME (path))
123 /* Generate absolute name as required by subsequent selabel_lookup. */
124 newpath = canonicalize_filename_mode (path, CAN_MISSING);
125 if (! newpath)
126 goto quit;
127 path = newpath;
130 if (selabel_lookup_raw (selabel_handle, &scon_raw, path, mode) < 0)
132 /* "No such file or directory" is a confusing error,
133 when processing files, when in fact it was the
134 associated default context that was not found.
135 Therefore map the error to something more appropriate
136 to the context in which we're using selabel_lookup(). */
137 if (errno == ENOENT)
138 errno = ENODATA;
139 goto quit;
141 if (computecon_raw (path, mode, &tcon_raw) < 0)
142 goto quit;
143 if (!(scontext = context_new (scon_raw)))
144 goto quit;
145 if (!(tcontext = context_new (tcon_raw)))
146 goto quit;
148 if (!(contype = context_type_get (scontext)))
149 goto quit;
150 if (context_type_set (tcontext, contype))
151 goto quit;
152 if (!(constr = context_str (tcontext)))
153 goto quit;
155 rc = setfscreatecon_raw (constr);
157 quit:;
158 int err = errno;
159 context_free (scontext);
160 context_free (tcontext);
161 freecon (scon_raw);
162 freecon (tcon_raw);
163 free (newpath);
164 errno = err;
165 return rc;
169 If SELABEL_HANDLE is null, set PATH's label to the default to the
170 local process. Otherwise use selabel_lookup to determine the
171 default label, extract the type field and then modify the file
172 system object. Note only the type field is updated, thus preserving MLS
173 levels and user identity etc. of the PATH.
175 Returns -1 on failure. errno will be set appropriately.
177 static int
178 restorecon_private (struct selabel_handle *selabel_handle, char const *path)
180 int rc = -1;
181 struct stat sb;
182 char *scon_raw = nullptr;
183 char *tcon_raw = nullptr;
184 context_t scontext = 0, tcontext = 0;
185 char const *contype;
186 char const *constr;
187 int fd;
189 if (!selabel_handle)
191 if (getfscreatecon_raw (&tcon_raw) < 0)
192 return rc;
193 if (!tcon_raw)
195 errno = ENODATA;
196 return rc;
198 rc = lsetfilecon_raw (path, tcon_raw);
199 int err = errno;
200 freecon (tcon_raw);
201 errno = err;
202 return rc;
205 fd = open (path, O_RDONLY | O_NOFOLLOW);
206 if (fd == -1 && (errno != ELOOP))
207 goto quit;
209 if (fd != -1)
211 if (fstat (fd, &sb) < 0)
212 goto quit;
214 else
216 if (lstat (path, &sb) < 0)
217 goto quit;
220 if (selabel_lookup_raw (selabel_handle, &scon_raw, path, sb.st_mode) < 0)
222 /* "No such file or directory" is a confusing error,
223 when processing files, when in fact it was the
224 associated default context that was not found.
225 Therefore map the error to something more appropriate
226 to the context in which we're using selabel_lookup. */
227 if (errno == ENOENT)
228 errno = ENODATA;
229 goto quit;
231 if (!(scontext = context_new (scon_raw)))
232 goto quit;
234 if (fd != -1)
236 if (fgetfilecon_raw (fd, &tcon_raw) < 0)
237 goto quit;
239 else
241 if (lgetfilecon_raw (path, &tcon_raw) < 0)
242 goto quit;
245 if (!(tcontext = context_new (tcon_raw)))
246 goto quit;
248 if (!(contype = context_type_get (scontext)))
249 goto quit;
250 if (context_type_set (tcontext, contype))
251 goto quit;
252 if (!(constr = context_str (tcontext)))
253 goto quit;
255 if (fd != -1)
256 rc = fsetfilecon_raw (fd, constr);
257 else
258 rc = lsetfilecon_raw (path, constr);
260 quit:;
261 int err = errno;
262 if (fd != -1)
263 close (fd);
264 context_free (scontext);
265 context_free (tcontext);
266 freecon (scon_raw);
267 freecon (tcon_raw);
268 errno = err;
269 return rc;
273 This function takes three parameters:
275 SELABEL_HANDLE for selabel_lookup, or null to preserve.
277 PATH of an existing file system object.
279 A RECURSE boolean which if the file system object is a directory, will
280 call restorecon_private on every file system object in the directory.
282 Return false on failure. errno will be set appropriately.
284 bool
285 restorecon (struct selabel_handle *selabel_handle,
286 char const *path, bool recurse)
288 char *newpath = nullptr;
290 if (! IS_ABSOLUTE_FILE_NAME (path))
292 /* Generate absolute name as required by subsequent selabel_lookup.
293 When RECURSE, this also generates absolute names in the
294 fts entries, which may be quicker to process in any case. */
295 newpath = canonicalize_filename_mode (path, CAN_MISSING);
296 if (! newpath)
297 return false;
298 path = newpath;
301 if (! recurse)
303 bool ok = restorecon_private (selabel_handle, path) != -1;
304 int err = errno;
305 free (newpath);
306 errno = err;
307 return ok;
310 char const *ftspath[2] = { path, nullptr };
311 FTS *fts = xfts_open ((char *const *) ftspath, FTS_PHYSICAL, nullptr);
313 int err = 0;
314 for (FTSENT *ent; (ent = fts_read (fts)); )
315 if (restorecon_private (selabel_handle, fts->fts_path) < 0)
316 err = errno;
318 if (errno != 0)
319 err = errno;
321 if (fts_close (fts) != 0)
322 err = errno;
324 free (newpath);
325 return !err;
327 #endif