blob: 8c969d7b6be1e09137330b865244a47756181561 [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 chgrp 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 chgrp does not support -H, -L, or -P. */
26/* http://www.opengroup.org/onlinepubs/007904975/utilities/chgrp.html */
27
Eric Andersen9f0fedb2001-04-24 18:07:19 +000028#include <stdlib.h>
Eric Andersen9f0fedb2001-04-24 18:07:19 +000029#include <unistd.h>
30#include "busybox.h"
Eric Andersen9f0fedb2001-04-24 18:07:19 +000031
Eric Andersen85e5e722003-07-22 08:56:55 +000032/* Don't use lchown glibc older then 2.1.x */
Eric Andersenc57a75d2001-04-25 17:12:33 +000033#if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1)
Eric Andersen9f0fedb2001-04-24 18:07:19 +000034#define lchown chown
35#endif
36
Eric Andersen9f0fedb2001-04-24 18:07:19 +000037static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
38{
Manuel Novoa III cad53642003-03-19 09:13:01 +000039 if (lchown(fileName, statbuf->st_uid, *((long *) junk)) == 0) {
Eric Andersen9f0fedb2001-04-24 18:07:19 +000040 return (TRUE);
41 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000042 bb_perror_msg("%s", fileName); /* Avoid multibyte problems. */
Eric Andersen9f0fedb2001-04-24 18:07:19 +000043 return (FALSE);
44}
45
46int chgrp_main(int argc, char **argv)
47{
Manuel Novoa III cad53642003-03-19 09:13:01 +000048 long gid;
Manuel Novoa III 4eff1812003-03-19 09:42:02 +000049 int recursiveFlag;
Manuel Novoa III cad53642003-03-19 09:13:01 +000050 int retval = EXIT_SUCCESS;
51 char *p;
Eric Andersen9f0fedb2001-04-24 18:07:19 +000052
Manuel Novoa III cad53642003-03-19 09:13:01 +000053 recursiveFlag = bb_getopt_ulflags(argc, argv, "R");
54
55 if (argc - optind < 2) {
56 bb_show_usage();
Eric Andersen9f0fedb2001-04-24 18:07:19 +000057 }
58
Manuel Novoa III cad53642003-03-19 09:13:01 +000059 argv += optind;
60
61 /* Find the selected group */
Glenn L McGratheebcc1d2003-09-24 03:22:57 +000062 gid = get_ug_id(*argv, my_getgrnam);
Manuel Novoa III cad53642003-03-19 09:13:01 +000063 ++argv;
Eric Andersen9f0fedb2001-04-24 18:07:19 +000064
65 /* Ok, ready to do the deed now */
Manuel Novoa III cad53642003-03-19 09:13:01 +000066 do {
67 if (! recursive_action (*argv, recursiveFlag, FALSE, FALSE,
68 fileAction, fileAction, &gid)) {
69 retval = EXIT_FAILURE;
Eric Andersen9f0fedb2001-04-24 18:07:19 +000070 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000071 } while (*++argv);
Eric Andersen9f0fedb2001-04-24 18:07:19 +000072
Manuel Novoa III cad53642003-03-19 09:13:01 +000073 return retval;
Eric Andersen9f0fedb2001-04-24 18:07:19 +000074}
75
76/*
77Local Variables:
78c-file-style: "linux"
79c-basic-offset: 4
80tab-width: 4
81End:
82*/