summaryrefslogtreecommitdiff
path: root/src/chown-core.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2006-01-03 06:20:06 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2006-01-03 06:20:06 +0000
commit7126eb3216c92a7be5a9ff7011ca08a2a32ec190 (patch)
tree47f3df0f76343ffedef90a62b2d59b290857f244 /src/chown-core.c
parent6023a621486813148ff6117dd2992111ab1ca1b2 (diff)
downloadcoreutils-7126eb3216c92a7be5a9ff7011ca08a2a32ec190.tar.xz
(RC_do_ordinary_chown): New enum value.
(restricted_chown): Return it, if the file cannot be accessed due to EPERM, or if no uid or gid are required, or if the file is neither a directory nor a regular file. Rewrite to avoid gotos. (change_file_owner): Handle RC_do_ordinary_chown case. Rewrite to avoid gotos.
Diffstat (limited to 'src/chown-core.c')
-rw-r--r--src/chown-core.c129
1 files changed, 62 insertions, 67 deletions
diff --git a/src/chown-core.c b/src/chown-core.c
index e691023cc..3d6b0ad63 100644
--- a/src/chown-core.c
+++ b/src/chown-core.c
@@ -1,5 +1,5 @@
/* chown-core.c -- core functions for changing ownership.
- Copyright (C) 2000, 2002, 2003, 2004, 2005 Free Software Foundation.
+ Copyright (C) 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -43,6 +43,10 @@ enum RCH_status
/* SAME_INODE check failed */
RC_inode_changed,
+ /* open/fchown isn't needed, isn't safe, or doesn't work due to
+ permissions problems; fall back on chown */
+ RC_do_ordinary_chown,
+
/* open, fstat, fchown, or close failed */
RC_error
};
@@ -159,10 +163,7 @@ describe_change (const char *file, enum Change_status changed,
/* Change the owner and/or group of the FILE to UID and/or GID (safely)
only if REQUIRED_UID and REQUIRED_GID match the owner and group IDs
- of FILE. ORIG_ST must be the result of `stat'ing FILE. If this
- function ends up being called with a FILE that is a symlink and when
- we are *not* dereferencing symlinks, we'll detect the problem via
- the SAME_INODE test below.
+ of FILE. ORIG_ST must be the result of `stat'ing FILE.
The `safely' part above means that we can't simply use chown(2),
since FILE might be replaced with some other file between the time
@@ -172,14 +173,9 @@ describe_change (const char *file, enum Change_status changed,
the preceding stat call, and only then, if appropriate (given the
required_uid and required_gid constraints) do we call fchown.
- A minor problem:
- This function fails when FILE cannot be opened, but chown/lchown have
- no such limitation. But this may not be a problem for chown(1),
- since chown is useful mainly to root, and since root seems to have
- no problem opening `unreadable' files (on Linux). However, this can
- cause trouble when non-root users apply chgrp to files they own but
- to which they have neither read nor write access. For now, that
- isn't a problem since chgrp doesn't have a --from=O:G option.
+ Return RC_do_ordinary_chown if we can't open FILE, or if FILE is a
+ special file that might have undesirable side effects when opening.
+ In this case the caller can use the less-safe ordinary chown.
Return one of the RCH_status values. */
@@ -192,27 +188,31 @@ restricted_chown (char const *file,
enum RCH_status status = RC_ok;
struct stat st;
int open_flags = O_NONBLOCK | O_NOCTTY;
+ int fd;
- int fd = open (file, O_RDONLY | open_flags);
- if (! (0 <= fd
- || (errno == EACCES
- && 0 <= (fd = open (file, O_WRONLY | open_flags)))))
- return RC_error;
+ if (required_uid == (uid_t) -1 && required_gid == (gid_t) -1)
+ return RC_do_ordinary_chown;
- if (fstat (fd, &st) != 0)
+ if (! S_ISREG (orig_st->st_mode))
{
- status = RC_error;
- goto Lose;
+ if (S_ISDIR (orig_st->st_mode))
+ open_flags |= O_DIRECTORY;
+ else
+ return RC_do_ordinary_chown;
}
- if ( ! SAME_INODE (*orig_st, st))
- {
- status = RC_inode_changed;
- goto Lose;
- }
+ fd = open (file, O_RDONLY | open_flags);
+ if (! (0 <= fd
+ || (errno == EACCES && S_ISREG (orig_st->st_mode)
+ && 0 <= (fd = open (file, O_WRONLY | open_flags)))))
+ return (errno == EACCES ? RC_do_ordinary_chown : RC_error);
- if ((required_uid == (uid_t) -1 || required_uid == st.st_uid)
- && (required_gid == (gid_t) -1 || required_gid == st.st_gid))
+ if (fstat (fd, &st) != 0)
+ status = RC_error;
+ else if (! SAME_INODE (*orig_st, st))
+ status = RC_inode_changed;
+ else if ((required_uid == (uid_t) -1 || required_uid == st.st_uid)
+ && (required_gid == (gid_t) -1 || required_gid == st.st_gid))
{
if (fchown (fd, uid, gid) == 0)
{
@@ -226,7 +226,6 @@ restricted_chown (char const *file,
}
}
- Lose:
{ /* FIXME: remove these curly braces when we assume C99. */
int saved_errno = errno;
close (fd);
@@ -346,43 +345,41 @@ change_file_owner (FTS *fts, FTSENT *ent,
}
else
{
- if ( required_uid == (uid_t) -1 && required_gid == (gid_t) -1)
+ /* If possible, avoid a race condition with --from=O:G and without the
+ (-h) --no-dereference option. If fts's stat call determined
+ that the uid/gid of FILE matched the --from=O:G-selected
+ owner and group IDs, blindly using chown(2) here could lead
+ chown(1) or chgrp(1) mistakenly to dereference a *symlink*
+ to an arbitrary file that an attacker had moved into the
+ place of FILE during the window between the stat and
+ chown(2) calls. If FILE is a regular file or a directory
+ that can be opened, this race condition can be avoided safely. */
+
+ enum RCH_status err
+ = restricted_chown (file, file_stats, uid, gid,
+ required_uid, required_gid);
+ switch (err)
{
+ case RC_ok:
+ break;
+
+ case RC_do_ordinary_chown:
ok = (chown (file, uid, gid) == 0);
- }
- else
- {
- /* Avoid a race condition with --from=O:G and without the
- (-h) --no-dereference option. If fts' stat call determined
- that the uid/gid of FILE matched the --from=O:G-selected
- owner and group IDs, blindly using chown(2) here could lead
- chown(1) or chgrp(1) mistakenly to dereference a *symlink*
- to an arbitrary file that an attacker had moved into the
- place of FILE during the window between the stat and
- chown(2) calls. */
- enum RCH_status err
- = restricted_chown (file, file_stats, uid, gid,
- required_uid, required_gid);
- switch (err)
- {
- case RC_ok:
- ok = true;
- break;
-
- case RC_error:
- ok = false;
- break;
-
- case RC_inode_changed:
- /* FIXME: give a diagnostic in this case? */
- case RC_excluded:
- do_chown = false;
- ok = false;
- goto Skip_chown;
-
- default:
- abort ();
- }
+ break;
+
+ case RC_error:
+ ok = false;
+ break;
+
+ case RC_inode_changed:
+ /* FIXME: give a diagnostic in this case? */
+ case RC_excluded:
+ do_chown = false;
+ ok = false;
+ break;
+
+ default:
+ abort ();
}
}
@@ -393,15 +390,13 @@ change_file_owner (FTS *fts, FTSENT *ent,
by some other user and operating on files in a directory
where M has write access. */
- if (!ok && ! chopt->force_silent)
+ if (do_chown && !ok && ! chopt->force_silent)
error (0, errno, (uid != (uid_t) -1
? _("changing ownership of %s")
: _("changing group of %s")),
quote (file_full_name));
}
- Skip_chown:;
-
if (chopt->verbosity != V_off)
{
bool changed =