Move start_stop_daemon to debianutils.
[oweals/busybox.git] / coreutils / chown.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini chown implementation for busybox
4  *
5  * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
6  *
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
23 /* 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
28 #include <stdlib.h>
29 #include <unistd.h>
30 #include <string.h>
31 #include "busybox.h"
32
33 /* Don't use lchown for glibc older then 2.1.x */
34 #if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1)
35 #define lchown  chown
36 #endif
37
38 static long uid;
39 static long gid;
40
41 static int (*chown_func)(const char *, uid_t, gid_t) = chown;
42
43 static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
44 {
45         if (chown_func(fileName, uid, (gid == -1) ? statbuf->st_gid : gid) == 0) {
46                 return (TRUE);
47         }
48         bb_perror_msg("%s", fileName);  /* Avoid multibyte problems. */
49         return (FALSE);
50 }
51
52 #define FLAG_R 1
53 #define FLAG_h 2
54
55 static 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
68 int chown_main(int argc, char **argv)
69 {
70         int flags;
71         int retval = EXIT_SUCCESS;
72         char *groupName;
73
74         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();
80         }
81
82         argv += optind;
83
84         /* First, check if there is a group name here */
85         if ((groupName = strchr(*argv, '.')) == NULL) {
86                 groupName = strchr(*argv, ':');
87         }
88
89         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         
100         /* Ok, ready to do the deed now */
101         do {
102                 if (! recursive_action (*argv, (flags & FLAG_R), FALSE, FALSE, 
103                                                                 fileAction, fileAction, NULL)) {
104                         retval = EXIT_FAILURE;
105                 }
106         } while (*++argv);
107
108         return retval;
109 }
110
111 /*
112 Local Variables:
113 c-file-style: "linux"
114 c-basic-offset: 4
115 tab-width: 4
116 End:
117 */