blob: daf77e2949beccd8605642aedc820500c950be8d [file] [log] [blame]
Eric Andersen9f0fedb2001-04-24 18:07:19 +00001/* vi: set sw=4 ts=4: */
2/*
Eric Andersenbdfd0d72001-10-24 05:00:29 +00003 * Mini chown implementation for busybox
Eric Andersen9f0fedb2001-04-24 18:07:19 +00004 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersen9f0fedb2001-04-24 18:07:19 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
Manuel Novoa III cad53642003-03-19 09:13:01 +000023/* BB_AUDIT SUSv3 defects - unsupported options -h, -H, -L, and -P. */
24/* BB_AUDIT GNU defects - unsupported options -h, -c, -f, -v, and long options. */
25/* BB_AUDIT Note: gnu chown does not support -H, -L, or -P. */
26/* http://www.opengroup.org/onlinepubs/007904975/utilities/chown.html */
27
Eric Andersen9f0fedb2001-04-24 18:07:19 +000028#include <stdlib.h>
Eric Andersen9f0fedb2001-04-24 18:07:19 +000029#include <unistd.h>
Manuel Novoa III cad53642003-03-19 09:13:01 +000030#include <string.h>
Eric Andersen9f0fedb2001-04-24 18:07:19 +000031#include "busybox.h"
Eric Andersen9f0fedb2001-04-24 18:07:19 +000032
Eric Andersen85e5e722003-07-22 08:56:55 +000033/* Don't use lchown for glibc older then 2.1.x */
Eric Andersenc57a75d2001-04-25 17:12:33 +000034#if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1)
Eric Andersen9f0fedb2001-04-24 18:07:19 +000035#define lchown chown
36#endif
37
Eric Andersen65504ac2001-04-30 18:07:24 +000038static long uid;
39static long gid;
Eric Andersen9f0fedb2001-04-24 18:07:19 +000040
Glenn L McGratha88cb502003-02-08 23:36:16 +000041static int (*chown_func)(const char *, uid_t, gid_t) = chown;
Eric Andersen2b02ab92001-05-11 15:55:41 +000042
Eric Andersen9f0fedb2001-04-24 18:07:19 +000043static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
44{
Eric Andersen2b02ab92001-05-11 15:55:41 +000045 if (chown_func(fileName, uid, (gid == -1) ? statbuf->st_gid : gid) == 0) {
Glenn L McGrath55bf79f2003-09-08 14:34:23 +000046 chmod(fileName, statbuf->st_mode);
Eric Andersen9f0fedb2001-04-24 18:07:19 +000047 return (TRUE);
48 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000049 bb_perror_msg("%s", fileName); /* Avoid multibyte problems. */
Eric Andersen9f0fedb2001-04-24 18:07:19 +000050 return (FALSE);
51}
52
Manuel Novoa III cad53642003-03-19 09:13:01 +000053#define FLAG_R 1
54#define FLAG_h 2
55
Eric Andersen9f0fedb2001-04-24 18:07:19 +000056int chown_main(int argc, char **argv)
57{
Manuel Novoa III cad53642003-03-19 09:13:01 +000058 int flags;
59 int retval = EXIT_SUCCESS;
60 char *groupName;
Eric Andersen9f0fedb2001-04-24 18:07:19 +000061
Manuel Novoa III cad53642003-03-19 09:13:01 +000062 flags = bb_getopt_ulflags(argc, argv, "Rh");
63
64 if (flags & FLAG_h) chown_func = lchown;
65
66 if (argc - optind < 2) {
67 bb_show_usage();
Eric Andersen9f0fedb2001-04-24 18:07:19 +000068 }
69
Manuel Novoa III cad53642003-03-19 09:13:01 +000070 argv += optind;
Eric Andersen2b02ab92001-05-11 15:55:41 +000071
Manuel Novoa III cad53642003-03-19 09:13:01 +000072 /* First, check if there is a group name here */
73 if ((groupName = strchr(*argv, '.')) == NULL) {
74 groupName = strchr(*argv, ':');
Eric Andersen9f0fedb2001-04-24 18:07:19 +000075 }
76
Manuel Novoa III cad53642003-03-19 09:13:01 +000077 gid = -1;
78 if (groupName) {
79 *groupName++ = '\0';
Bernhard Reutner-Fischerd5bd1372005-09-20 21:06:17 +000080 gid = get_ug_id(groupName, bb_xgetgrnam);
Manuel Novoa III cad53642003-03-19 09:13:01 +000081 }
82
83 /* Now check for the username */
Bernhard Reutner-Fischerd5bd1372005-09-20 21:06:17 +000084 uid = get_ug_id(*argv, bb_xgetpwnam);
Manuel Novoa III cad53642003-03-19 09:13:01 +000085
86 ++argv;
Eric Andersenc7bda1c2004-03-15 08:29:22 +000087
Eric Andersen9f0fedb2001-04-24 18:07:19 +000088 /* Ok, ready to do the deed now */
Manuel Novoa III cad53642003-03-19 09:13:01 +000089 do {
Eric Andersenc7bda1c2004-03-15 08:29:22 +000090 if (! recursive_action (*argv, (flags & FLAG_R), FALSE, FALSE,
Manuel Novoa III cad53642003-03-19 09:13:01 +000091 fileAction, fileAction, NULL)) {
92 retval = EXIT_FAILURE;
Eric Andersen9f0fedb2001-04-24 18:07:19 +000093 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000094 } while (*++argv);
Eric Andersen9f0fedb2001-04-24 18:07:19 +000095
Manuel Novoa III cad53642003-03-19 09:13:01 +000096 return retval;
Eric Andersen9f0fedb2001-04-24 18:07:19 +000097}
98
99/*
100Local Variables:
101c-file-style: "linux"
102c-basic-offset: 4
103tab-width: 4
104End:
105*/