2001-04-24 23:37:19 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2001-10-24 10:30:29 +05:30
|
|
|
* Mini chown implementation for busybox
|
2001-04-24 23:37:19 +05:30
|
|
|
*
|
2004-03-15 13:59:22 +05:30
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2001-04-24 23:37:19 +05:30
|
|
|
*
|
2006-01-06 23:52:05 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-04-24 23:37:19 +05:30
|
|
|
*/
|
|
|
|
|
2006-10-27 21:37:20 +05:30
|
|
|
/* BB_AUDIT SUSv3 defects - unsupported options -H, -L, and -P. */
|
|
|
|
/* BB_AUDIT GNU defects - unsupported long options. */
|
2003-03-19 14:43:01 +05:30
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/chown.html */
|
|
|
|
|
2001-04-24 23:37:19 +05:30
|
|
|
#include "busybox.h"
|
|
|
|
|
2007-01-04 01:37:06 +05:30
|
|
|
static struct bb_uidgid_t ugid = { -1, -1 };
|
2001-04-24 23:37:19 +05:30
|
|
|
|
2003-02-09 05:06:16 +05:30
|
|
|
static int (*chown_func)(const char *, uid_t, gid_t) = chown;
|
2001-05-11 21:25:41 +05:30
|
|
|
|
2006-10-27 21:37:20 +05:30
|
|
|
#define OPT_RECURSE (option_mask32 & 1)
|
|
|
|
#define OPT_NODEREF (option_mask32 & 2)
|
|
|
|
#define OPT_VERBOSE (USE_DESKTOP(option_mask32 & 4) SKIP_DESKTOP(0))
|
|
|
|
#define OPT_CHANGED (USE_DESKTOP(option_mask32 & 8) SKIP_DESKTOP(0))
|
|
|
|
#define OPT_QUIET (USE_DESKTOP(option_mask32 & 0x10) SKIP_DESKTOP(0))
|
|
|
|
#define OPT_STR ("Rh" USE_DESKTOP("vcf"))
|
|
|
|
|
|
|
|
/* TODO:
|
|
|
|
* -H if a command line argument is a symbolic link to a directory, traverse it
|
|
|
|
* -L traverse every symbolic link to a directory encountered
|
|
|
|
* -P do not traverse any symbolic links (default)
|
|
|
|
*/
|
|
|
|
|
2006-01-30 22:47:14 +05:30
|
|
|
static int fileAction(const char *fileName, struct stat *statbuf,
|
2006-10-28 05:12:25 +05:30
|
|
|
void ATTRIBUTE_UNUSED *junk, int depth)
|
2001-04-24 23:37:19 +05:30
|
|
|
{
|
2006-10-27 21:37:20 +05:30
|
|
|
// TODO: -H/-L/-P
|
|
|
|
// if (depth ... && S_ISLNK(statbuf->st_mode)) ....
|
|
|
|
|
2006-01-06 23:52:05 +05:30
|
|
|
if (!chown_func(fileName,
|
2007-01-04 01:37:06 +05:30
|
|
|
(ugid.uid == (uid_t)-1) ? statbuf->st_uid : ugid.uid,
|
|
|
|
(ugid.gid == (gid_t)-1) ? statbuf->st_gid : ugid.gid)
|
|
|
|
) {
|
2006-10-27 21:37:20 +05:30
|
|
|
if (OPT_VERBOSE
|
2007-01-04 01:37:06 +05:30
|
|
|
|| (OPT_CHANGED && (statbuf->st_uid != ugid.uid || statbuf->st_gid != ugid.gid))
|
2006-10-27 21:37:20 +05:30
|
|
|
) {
|
2007-01-04 01:37:06 +05:30
|
|
|
printf("changed ownership of '%s' to %u:%u\n",
|
|
|
|
fileName, ugid.uid, ugid.gid);
|
2006-10-27 21:37:20 +05:30
|
|
|
}
|
2006-01-06 23:52:05 +05:30
|
|
|
return TRUE;
|
2001-04-24 23:37:19 +05:30
|
|
|
}
|
2006-10-27 21:37:20 +05:30
|
|
|
if (!OPT_QUIET)
|
|
|
|
bb_perror_msg("%s", fileName); /* A filename can have % in it... */
|
2006-01-06 23:52:05 +05:30
|
|
|
return FALSE;
|
2001-04-24 23:37:19 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
int chown_main(int argc, char **argv)
|
|
|
|
{
|
2003-03-19 14:43:01 +05:30
|
|
|
char *groupName;
|
2006-12-28 11:14:47 +05:30
|
|
|
int retval = EXIT_SUCCESS;
|
2003-03-19 14:43:01 +05:30
|
|
|
|
2006-10-27 21:37:20 +05:30
|
|
|
opt_complementary = "-2";
|
|
|
|
getopt32(argc, argv, OPT_STR);
|
2006-12-28 11:14:47 +05:30
|
|
|
argv += optind;
|
2003-03-19 14:43:01 +05:30
|
|
|
|
2006-10-27 21:37:20 +05:30
|
|
|
if (OPT_NODEREF) chown_func = lchown;
|
2001-04-24 23:37:19 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
/* First, check if there is a group name here */
|
2006-12-28 11:14:47 +05:30
|
|
|
groupName = strchr(*argv, '.'); /* deprecated? */
|
2007-01-04 01:37:06 +05:30
|
|
|
if (!groupName)
|
2003-03-19 14:43:01 +05:30
|
|
|
groupName = strchr(*argv, ':');
|
2007-01-04 01:37:06 +05:30
|
|
|
else
|
|
|
|
*groupName = ':'; /* replace '.' with ':' */
|
2003-03-19 14:43:01 +05:30
|
|
|
|
2006-12-28 11:14:47 +05:30
|
|
|
/* First, try parsing "user[:[group]]" */
|
2007-01-14 02:36:21 +05:30
|
|
|
if (!groupName) { /* "user" */
|
2007-01-04 01:37:06 +05:30
|
|
|
ugid.uid = get_ug_id(*argv, xuname2uid);
|
2006-12-28 11:14:47 +05:30
|
|
|
} else if (groupName == *argv) { /* ":group" */
|
2007-01-04 01:37:06 +05:30
|
|
|
ugid.gid = get_ug_id(groupName + 1, xgroup2gid);
|
2006-12-28 11:14:47 +05:30
|
|
|
} else {
|
|
|
|
if (!groupName[1]) /* "user:" */
|
|
|
|
*groupName = '\0';
|
|
|
|
if (!get_uidgid(&ugid, *argv, 1))
|
|
|
|
bb_error_msg_and_die("unknown user/group %s", *argv);
|
2001-04-24 23:37:19 +05:30
|
|
|
}
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2001-04-24 23:37:19 +05:30
|
|
|
/* Ok, ready to do the deed now */
|
2006-12-28 11:14:47 +05:30
|
|
|
argv++;
|
2003-03-19 14:43:01 +05:30
|
|
|
do {
|
2006-10-27 21:37:20 +05:30
|
|
|
if (!recursive_action(*argv,
|
|
|
|
OPT_RECURSE, // recurse
|
|
|
|
FALSE, // follow links: TODO: -H/-L/-P
|
|
|
|
FALSE, // depth first
|
|
|
|
fileAction, // file action
|
|
|
|
fileAction, // dir action
|
2006-10-28 05:12:25 +05:30
|
|
|
NULL, // user data
|
2007-01-11 22:50:00 +05:30
|
|
|
0) // depth
|
2006-10-27 21:37:20 +05:30
|
|
|
) {
|
2003-03-19 14:43:01 +05:30
|
|
|
retval = EXIT_FAILURE;
|
2001-04-24 23:37:19 +05:30
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
} while (*++argv);
|
2001-04-24 23:37:19 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
return retval;
|
2001-04-24 23:37:19 +05:30
|
|
|
}
|