2001-04-24 18:07:19 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2001-10-24 05:00:29 +00:00
|
|
|
* Mini chown implementation for busybox
|
2001-04-24 18:07:19 +00:00
|
|
|
*
|
2004-03-15 08:29:22 +00:00
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2001-04-24 18:07:19 +00:00
|
|
|
*
|
2006-01-06 18:22:05 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-04-24 18:07:19 +00:00
|
|
|
*/
|
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
/* BB_AUDIT SUSv3 defects - unsupported options -h, -H, -L, and -P. */
|
|
|
|
/* BB_AUDIT GNU defects - unsupported options -h, -c, -f, -v, and long options. */
|
|
|
|
/* BB_AUDIT Note: gnu chown does not support -H, -L, or -P. */
|
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/chown.html */
|
|
|
|
|
2001-04-24 18:07:19 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2003-03-19 09:13:01 +00:00
|
|
|
#include <string.h>
|
2001-04-24 18:07:19 +00:00
|
|
|
#include "busybox.h"
|
|
|
|
|
2006-01-09 03:45:43 +00:00
|
|
|
static uid_t uid = -1;
|
|
|
|
static gid_t gid = -1;
|
2001-04-24 18:07:19 +00:00
|
|
|
|
2003-02-08 23:36:16 +00:00
|
|
|
static int (*chown_func)(const char *, uid_t, gid_t) = chown;
|
2001-05-11 15:55:41 +00:00
|
|
|
|
2006-01-30 17:17:14 +00:00
|
|
|
static int fileAction(const char *fileName, struct stat *statbuf,
|
|
|
|
void ATTRIBUTE_UNUSED *junk)
|
2001-04-24 18:07:19 +00:00
|
|
|
{
|
2006-01-06 18:22:05 +00:00
|
|
|
if (!chown_func(fileName,
|
2006-01-31 12:06:57 +00:00
|
|
|
(uid == (uid_t)-1) ? statbuf->st_uid : uid,
|
|
|
|
(gid == (gid_t)-1) ? statbuf->st_gid : gid)) {
|
2006-01-06 18:22:05 +00:00
|
|
|
return TRUE;
|
2001-04-24 18:07:19 +00:00
|
|
|
}
|
2006-01-06 18:22:05 +00:00
|
|
|
bb_perror_msg("%s", fileName); /* A filename could have % in it... */
|
|
|
|
return FALSE;
|
2001-04-24 18:07:19 +00:00
|
|
|
}
|
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
#define FLAG_R 1
|
|
|
|
#define FLAG_h 2
|
|
|
|
|
2001-04-24 18:07:19 +00:00
|
|
|
int chown_main(int argc, char **argv)
|
|
|
|
{
|
2003-03-19 09:13:01 +00:00
|
|
|
int flags;
|
|
|
|
int retval = EXIT_SUCCESS;
|
|
|
|
char *groupName;
|
|
|
|
|
|
|
|
flags = bb_getopt_ulflags(argc, argv, "Rh");
|
|
|
|
|
|
|
|
if (flags & FLAG_h) chown_func = lchown;
|
|
|
|
|
|
|
|
if (argc - optind < 2) {
|
|
|
|
bb_show_usage();
|
2001-04-24 18:07:19 +00:00
|
|
|
}
|
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
/* First, check if there is a group name here */
|
|
|
|
if ((groupName = strchr(*argv, '.')) == NULL) {
|
|
|
|
groupName = strchr(*argv, ':');
|
|
|
|
}
|
|
|
|
|
2006-01-09 03:45:43 +00:00
|
|
|
/* Check for the username and groupname */
|
2003-03-19 09:13:01 +00:00
|
|
|
if (groupName) {
|
|
|
|
*groupName++ = '\0';
|
2005-09-20 21:06:17 +00:00
|
|
|
gid = get_ug_id(groupName, bb_xgetgrnam);
|
2001-04-24 18:07:19 +00:00
|
|
|
}
|
2006-01-09 03:45:43 +00:00
|
|
|
if (--groupName != *argv) uid = get_ug_id(*argv, bb_xgetpwnam);
|
2003-03-19 09:13:01 +00:00
|
|
|
++argv;
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2001-04-24 18:07:19 +00:00
|
|
|
/* Ok, ready to do the deed now */
|
2003-03-19 09:13:01 +00:00
|
|
|
do {
|
2004-03-15 08:29:22 +00:00
|
|
|
if (! recursive_action (*argv, (flags & FLAG_R), FALSE, FALSE,
|
2003-03-19 09:13:01 +00:00
|
|
|
fileAction, fileAction, NULL)) {
|
|
|
|
retval = EXIT_FAILURE;
|
2001-04-24 18:07:19 +00:00
|
|
|
}
|
2003-03-19 09:13:01 +00:00
|
|
|
} while (*++argv);
|
2001-04-24 18:07:19 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
return retval;
|
2001-04-24 18:07:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Local Variables:
|
|
|
|
c-file-style: "linux"
|
|
|
|
c-basic-offset: 4
|
|
|
|
tab-width: 4
|
|
|
|
End:
|
|
|
|
*/
|