* src/dd.c (flags): noatime and nofollow now depend on
[coreutils/bo.git] / src / chown-core.c
blobdbd3e52d8c3cd9cb7865a1de668fa86c7698d293
1 /* chown-core.c -- core functions for changing ownership.
2 Copyright (C) 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation.
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 2, or (at your option)
7 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, write to the Free Software Foundation,
16 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
18 /* Extracted from chown.c/chgrp.c and librarified by Jim Meyering. */
20 #include <config.h>
21 #include <stdio.h>
22 #include <sys/types.h>
23 #include <pwd.h>
24 #include <grp.h>
26 #include "system.h"
27 #include "chown-core.h"
28 #include "error.h"
29 #include "inttostr.h"
30 #include "openat.h"
31 #include "quote.h"
32 #include "root-dev-ino.h"
33 #include "xfts.h"
35 enum RCH_status
37 /* we called fchown and close, and both succeeded */
38 RC_ok = 2,
40 /* required_uid and/or required_gid are specified, but don't match */
41 RC_excluded,
43 /* SAME_INODE check failed */
44 RC_inode_changed,
46 /* open/fchown isn't needed, isn't safe, or doesn't work due to
47 permissions problems; fall back on chown */
48 RC_do_ordinary_chown,
50 /* open, fstat, fchown, or close failed */
51 RC_error
54 extern void
55 chopt_init (struct Chown_option *chopt)
57 chopt->verbosity = V_off;
58 chopt->root_dev_ino = NULL;
59 chopt->affect_symlink_referent = true;
60 chopt->recurse = false;
61 chopt->force_silent = false;
62 chopt->user_name = NULL;
63 chopt->group_name = NULL;
66 extern void
67 chopt_free (struct Chown_option *chopt ATTRIBUTE_UNUSED)
69 /* Deliberately do not free chopt->user_name or ->group_name.
70 They're not always allocated. */
73 /* Convert the numeric group-id, GID, to a string stored in xmalloc'd memory,
74 and return it. If there's no corresponding group name, use the decimal
75 representation of the ID. */
77 extern char *
78 gid_to_name (gid_t gid)
80 char buf[INT_BUFSIZE_BOUND (intmax_t)];
81 struct group *grp = getgrgid (gid);
82 return xstrdup (grp ? grp->gr_name
83 : TYPE_SIGNED (gid_t) ? imaxtostr (gid, buf)
84 : umaxtostr (gid, buf));
87 /* Convert the numeric user-id, UID, to a string stored in xmalloc'd memory,
88 and return it. If there's no corresponding user name, use the decimal
89 representation of the ID. */
91 extern char *
92 uid_to_name (uid_t uid)
94 char buf[INT_BUFSIZE_BOUND (intmax_t)];
95 struct passwd *pwd = getpwuid (uid);
96 return xstrdup (pwd ? pwd->pw_name
97 : TYPE_SIGNED (uid_t) ? imaxtostr (uid, buf)
98 : umaxtostr (uid, buf));
101 /* Tell the user how/if the user and group of FILE have been changed.
102 If USER is NULL, give the group-oriented messages.
103 CHANGED describes what (if anything) has happened. */
105 static void
106 describe_change (const char *file, enum Change_status changed,
107 char const *user, char const *group)
109 const char *fmt;
110 char const *spec;
111 char *spec_allocated = NULL;
113 if (changed == CH_NOT_APPLIED)
115 printf (_("neither symbolic link %s nor referent has been changed\n"),
116 quote (file));
117 return;
120 if (user)
122 if (group)
124 spec_allocated = xmalloc (strlen (user) + 1 + strlen (group) + 1);
125 stpcpy (stpcpy (stpcpy (spec_allocated, user), ":"), group);
126 spec = spec_allocated;
128 else
130 spec = user;
133 else
135 spec = group;
138 switch (changed)
140 case CH_SUCCEEDED:
141 fmt = (user ? _("changed ownership of %s to %s\n")
142 : group ? _("changed group of %s to %s\n")
143 : _("no change to ownership of %s\n"));
144 break;
145 case CH_FAILED:
146 fmt = (user ? _("failed to change ownership of %s to %s\n")
147 : group ? _("failed to change group of %s to %s\n")
148 : _("failed to change ownership of %s\n"));
149 break;
150 case CH_NO_CHANGE_REQUESTED:
151 fmt = (user ? _("ownership of %s retained as %s\n")
152 : group ? _("group of %s retained as %s\n")
153 : _("ownership of %s retained\n"));
154 break;
155 default:
156 abort ();
159 printf (fmt, quote (file), spec);
161 free (spec_allocated);
164 /* Change the owner and/or group of the FILE to UID and/or GID (safely)
165 only if REQUIRED_UID and REQUIRED_GID match the owner and group IDs
166 of FILE. ORIG_ST must be the result of `stat'ing FILE.
168 The `safely' part above means that we can't simply use chown(2),
169 since FILE might be replaced with some other file between the time
170 of the preceding stat/lstat and this chown call. So here we open
171 FILE and do everything else via the resulting file descriptor.
172 We first call fstat and verify that the dev/inode match those from
173 the preceding stat call, and only then, if appropriate (given the
174 required_uid and required_gid constraints) do we call fchown.
176 Return RC_do_ordinary_chown if we can't open FILE, or if FILE is a
177 special file that might have undesirable side effects when opening.
178 In this case the caller can use the less-safe ordinary chown.
180 Return one of the RCH_status values. */
182 static enum RCH_status
183 restricted_chown (int cwd_fd, char const *file,
184 struct stat const *orig_st,
185 uid_t uid, gid_t gid,
186 uid_t required_uid, gid_t required_gid)
188 enum RCH_status status = RC_ok;
189 struct stat st;
190 int open_flags = O_NONBLOCK | O_NOCTTY;
191 int fd;
193 if (required_uid == (uid_t) -1 && required_gid == (gid_t) -1)
194 return RC_do_ordinary_chown;
196 if (! S_ISREG (orig_st->st_mode))
198 if (S_ISDIR (orig_st->st_mode))
199 open_flags |= O_DIRECTORY;
200 else
201 return RC_do_ordinary_chown;
204 fd = openat (cwd_fd, file, O_RDONLY | open_flags);
205 if (! (0 <= fd
206 || (errno == EACCES && S_ISREG (orig_st->st_mode)
207 && 0 <= (fd = openat (cwd_fd, file, O_WRONLY | open_flags)))))
208 return (errno == EACCES ? RC_do_ordinary_chown : RC_error);
210 if (fstat (fd, &st) != 0)
211 status = RC_error;
212 else if (! SAME_INODE (*orig_st, st))
213 status = RC_inode_changed;
214 else if ((required_uid == (uid_t) -1 || required_uid == st.st_uid)
215 && (required_gid == (gid_t) -1 || required_gid == st.st_gid))
217 if (fchown (fd, uid, gid) == 0)
219 status = (close (fd) == 0
220 ? RC_ok : RC_error);
221 return status;
223 else
225 status = RC_error;
229 { /* FIXME: remove these curly braces when we assume C99. */
230 int saved_errno = errno;
231 close (fd);
232 errno = saved_errno;
233 return status;
237 /* Change the owner and/or group of the file specified by FTS and ENT
238 to UID and/or GID as appropriate.
239 If REQUIRED_UID is not -1, then skip files with any other user ID.
240 If REQUIRED_GID is not -1, then skip files with any other group ID.
241 CHOPT specifies additional options.
242 Return true if successful. */
243 static bool
244 change_file_owner (FTS *fts, FTSENT *ent,
245 uid_t uid, gid_t gid,
246 uid_t required_uid, gid_t required_gid,
247 struct Chown_option const *chopt)
249 char const *file_full_name = ent->fts_path;
250 char const *file = ent->fts_accpath;
251 struct stat const *file_stats;
252 struct stat stat_buf;
253 bool ok = true;
254 bool do_chown;
255 bool symlink_changed = true;
257 switch (ent->fts_info)
259 case FTS_D:
260 if (chopt->recurse)
261 return true;
262 break;
264 case FTS_DP:
265 if (! chopt->recurse)
266 return true;
267 break;
269 case FTS_NS:
270 /* For a top-level file or directory, this FTS_NS (stat failed)
271 indicator is determined at the time of the initial fts_open call.
272 With programs like chmod, chown, and chgrp, that modify
273 permissions, it is possible that the file in question is
274 accessible when control reaches this point. So, if this is
275 the first time we've seen the FTS_NS for this file, tell
276 fts_read to stat it "again". */
277 if (ent->fts_level == 0 && ent->fts_number == 0)
279 ent->fts_number = 1;
280 fts_set (fts, ent, FTS_AGAIN);
281 return true;
283 error (0, ent->fts_errno, _("cannot access %s"), quote (file_full_name));
284 ok = false;
285 break;
287 case FTS_ERR:
288 error (0, ent->fts_errno, _("%s"), quote (file_full_name));
289 ok = false;
290 break;
292 case FTS_DNR:
293 error (0, ent->fts_errno, _("cannot read directory %s"),
294 quote (file_full_name));
295 ok = false;
296 break;
298 default:
299 break;
302 if (!ok)
304 do_chown = false;
305 file_stats = NULL;
307 else if (required_uid == (uid_t) -1 && required_gid == (gid_t) -1
308 && chopt->verbosity == V_off && ! chopt->root_dev_ino)
310 do_chown = true;
311 file_stats = ent->fts_statp;
313 else
315 file_stats = ent->fts_statp;
317 /* If this is a symlink and we're dereferencing them,
318 stat it to get info on the referent. */
319 if (S_ISLNK (file_stats->st_mode) && chopt->affect_symlink_referent)
321 if (stat (file, &stat_buf) != 0)
323 error (0, errno, _("cannot dereference %s"),
324 quote (file_full_name));
325 ok = false;
328 file_stats = &stat_buf;
331 do_chown = (ok
332 && (required_uid == (uid_t) -1
333 || required_uid == file_stats->st_uid)
334 && (required_gid == (gid_t) -1
335 || required_gid == file_stats->st_gid));
338 if (do_chown && ROOT_DEV_INO_CHECK (chopt->root_dev_ino, file_stats))
340 ROOT_DEV_INO_WARN (file_full_name);
341 ok = do_chown = false;
344 if (do_chown)
346 if ( ! chopt->affect_symlink_referent)
348 ok = (lchownat (fts->fts_cwd_fd, file, uid, gid) == 0);
350 /* Ignore any error due to lack of support; POSIX requires
351 this behavior for top-level symbolic links with -h, and
352 implies that it's required for all symbolic links. */
353 if (!ok && errno == EOPNOTSUPP)
355 ok = true;
356 symlink_changed = false;
359 else
361 /* If possible, avoid a race condition with --from=O:G and without the
362 (-h) --no-dereference option. If fts's stat call determined
363 that the uid/gid of FILE matched the --from=O:G-selected
364 owner and group IDs, blindly using chown(2) here could lead
365 chown(1) or chgrp(1) mistakenly to dereference a *symlink*
366 to an arbitrary file that an attacker had moved into the
367 place of FILE during the window between the stat and
368 chown(2) calls. If FILE is a regular file or a directory
369 that can be opened, this race condition can be avoided safely. */
371 enum RCH_status err
372 = restricted_chown (fts->fts_cwd_fd, file, file_stats, uid, gid,
373 required_uid, required_gid);
374 switch (err)
376 case RC_ok:
377 break;
379 case RC_do_ordinary_chown:
380 ok = (chownat (fts->fts_cwd_fd, file, uid, gid) == 0);
381 break;
383 case RC_error:
384 ok = false;
385 break;
387 case RC_inode_changed:
388 /* FIXME: give a diagnostic in this case? */
389 case RC_excluded:
390 do_chown = false;
391 ok = false;
392 break;
394 default:
395 abort ();
399 /* On some systems (e.g., Linux-2.4.x),
400 the chown function resets the `special' permission bits.
401 Do *not* restore those bits; doing so would open a window in
402 which a malicious user, M, could subvert a chown command run
403 by some other user and operating on files in a directory
404 where M has write access. */
406 if (do_chown && !ok && ! chopt->force_silent)
407 error (0, errno, (uid != (uid_t) -1
408 ? _("changing ownership of %s")
409 : _("changing group of %s")),
410 quote (file_full_name));
413 if (chopt->verbosity != V_off)
415 bool changed =
416 ((do_chown & ok & symlink_changed)
417 && ! ((uid == (uid_t) -1 || uid == file_stats->st_uid)
418 && (gid == (gid_t) -1 || gid == file_stats->st_gid)));
420 if (changed || chopt->verbosity == V_high)
422 enum Change_status ch_status =
423 (!ok ? CH_FAILED
424 : !symlink_changed ? CH_NOT_APPLIED
425 : !changed ? CH_NO_CHANGE_REQUESTED
426 : CH_SUCCEEDED);
427 describe_change (file_full_name, ch_status,
428 chopt->user_name, chopt->group_name);
432 if ( ! chopt->recurse)
433 fts_set (fts, ent, FTS_SKIP);
435 return ok;
438 /* Change the owner and/or group of the specified FILES.
439 BIT_FLAGS specifies how to treat each symlink-to-directory
440 that is encountered during a recursive traversal.
441 CHOPT specifies additional options.
442 If UID is not -1, then change the owner id of each file to UID.
443 If GID is not -1, then change the group id of each file to GID.
444 If REQUIRED_UID and/or REQUIRED_GID is not -1, then change only
445 files with user ID and group ID that match the non-(-1) value(s).
446 Return true if successful. */
447 extern bool
448 chown_files (char **files, int bit_flags,
449 uid_t uid, gid_t gid,
450 uid_t required_uid, gid_t required_gid,
451 struct Chown_option const *chopt)
453 bool ok = true;
455 /* Use lstat and stat only if they're needed. */
456 int stat_flags = ((required_uid != (uid_t) -1 || required_gid != (gid_t) -1
457 || chopt->verbosity != V_off || chopt->root_dev_ino)
459 : FTS_NOSTAT);
461 FTS *fts = xfts_open (files, bit_flags | stat_flags, NULL);
463 while (1)
465 FTSENT *ent;
467 ent = fts_read (fts);
468 if (ent == NULL)
470 if (errno != 0)
472 /* FIXME: try to give a better message */
473 error (0, errno, _("fts_read failed"));
474 ok = false;
476 break;
479 ok &= change_file_owner (fts, ent, uid, gid,
480 required_uid, required_gid, chopt);
483 /* Ignore failure, since the only way it can do so is in failing to
484 return to the original directory, and since we're about to exit,
485 that doesn't matter. */
486 fts_close (fts);
488 return ok;