blob: 7b9ea91753f4c2a726d83b55bc3ae2a3715bf9d3 [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 Andersencb81e642003-07-14 21:21:08 +00005 * Copyright (C) 1999-2003 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) {
Eric Andersen9f0fedb2001-04-24 18:07:19 +000046 return (TRUE);
47 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000048 bb_perror_msg("%s", fileName); /* Avoid multibyte problems. */
Eric Andersen9f0fedb2001-04-24 18:07:19 +000049 return (FALSE);
50}
51
Manuel Novoa III cad53642003-03-19 09:13:01 +000052#define FLAG_R 1
53#define FLAG_h 2
54
55static unsigned long get_ug_id(const char *s, long (*my_getxxnam)(const char *))
56{
57 unsigned long r;
58 char *p;
59
60 r = strtoul(s, &p, 10);
61 if (*p || (s == p)) {
62 r = my_getxxnam(s);
63 }
64
65 return r;
66}
67
Eric Andersen9f0fedb2001-04-24 18:07:19 +000068int chown_main(int argc, char **argv)
69{
Manuel Novoa III cad53642003-03-19 09:13:01 +000070 int flags;
71 int retval = EXIT_SUCCESS;
72 char *groupName;
Eric Andersen9f0fedb2001-04-24 18:07:19 +000073
Manuel Novoa III cad53642003-03-19 09:13:01 +000074 flags = bb_getopt_ulflags(argc, argv, "Rh");
75
76 if (flags & FLAG_h) chown_func = lchown;
77
78 if (argc - optind < 2) {
79 bb_show_usage();
Eric Andersen9f0fedb2001-04-24 18:07:19 +000080 }
81
Manuel Novoa III cad53642003-03-19 09:13:01 +000082 argv += optind;
Eric Andersen2b02ab92001-05-11 15:55:41 +000083
Manuel Novoa III cad53642003-03-19 09:13:01 +000084 /* First, check if there is a group name here */
85 if ((groupName = strchr(*argv, '.')) == NULL) {
86 groupName = strchr(*argv, ':');
Eric Andersen9f0fedb2001-04-24 18:07:19 +000087 }
88
Manuel Novoa III cad53642003-03-19 09:13:01 +000089 gid = -1;
90 if (groupName) {
91 *groupName++ = '\0';
92 gid = get_ug_id(groupName, my_getgrnam);
93 }
94
95 /* Now check for the username */
96 uid = get_ug_id(*argv, my_getpwnam);
97
98 ++argv;
99
Eric Andersen9f0fedb2001-04-24 18:07:19 +0000100 /* Ok, ready to do the deed now */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000101 do {
102 if (! recursive_action (*argv, (flags & FLAG_R), FALSE, FALSE,
103 fileAction, fileAction, NULL)) {
104 retval = EXIT_FAILURE;
Eric Andersen9f0fedb2001-04-24 18:07:19 +0000105 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000106 } while (*++argv);
Eric Andersen9f0fedb2001-04-24 18:07:19 +0000107
Manuel Novoa III cad53642003-03-19 09:13:01 +0000108 return retval;
Eric Andersen9f0fedb2001-04-24 18:07:19 +0000109}
110
111/*
112Local Variables:
113c-file-style: "linux"
114c-basic-offset: 4
115tab-width: 4
116End:
117*/