sbase/chgrp.c

88 lines
1.4 KiB
C
Raw Normal View History

/* See LICENSE file for copyright and license details. */
2015-02-14 15:02:41 -05:00
#include <sys/stat.h>
2013-06-09 09:20:55 -04:00
#include <errno.h>
#include <grp.h>
#include <unistd.h>
2013-06-09 09:20:55 -04:00
#include "util.h"
2013-10-07 11:12:09 -04:00
static int gid;
static int ret = 0;
static int hflag = 0;
static int Rflag = 0;
static struct stat st;
2013-06-09 09:20:55 -04:00
static void
chgrp(const char *path, int depth)
2013-06-09 09:20:55 -04:00
{
char *chownf_name;
int (*chownf)(const char *, uid_t, gid_t);
if (recurse_follow == 'P' || (recurse_follow == 'H' && depth) || (hflag && !depth)) {
chownf_name = "lchown";
chownf = lchown;
} else {
chownf_name = "chown";
chownf = chown;
}
if (chownf(path, st.st_uid, gid) < 0) {
weprintf("%s %s:", chownf_name, path);
ret = 1;
} else if (Rflag) {
recurse(path, chgrp, depth);
}
2013-06-09 09:20:55 -04:00
}
2015-02-12 15:56:06 -05:00
static void
usage(void)
{
eprintf("usage: chgrp [-h] [-R [-H | -L | -P]] group file ...\n");
2015-02-12 15:56:06 -05:00
}
2013-06-09 09:20:55 -04:00
int
2014-04-18 06:51:18 -04:00
main(int argc, char *argv[])
2013-06-09 09:20:55 -04:00
{
struct group *gr;
ARGBEGIN {
2015-02-12 15:56:06 -05:00
case 'h':
hflag = 1;
2015-02-12 15:56:06 -05:00
break;
2013-06-09 09:20:55 -04:00
case 'R':
Rflag = 1;
2013-06-09 09:20:55 -04:00
break;
case 'H':
case 'L':
case 'P':
recurse_follow = ARGC();
break;
2013-06-09 09:20:55 -04:00
default:
usage();
} ARGEND;
if (argc < 2)
2013-06-09 09:20:55 -04:00
usage();
errno = 0;
if (!(gr = getgrnam(argv[0]))) {
if (errno)
eprintf("getgrnam %s:", argv[0]);
else
eprintf("getgrnam %s: no such group\n", argv[0]);
}
2013-06-09 09:20:55 -04:00
gid = gr->gr_gid;
for (; *argv; argc--, argv++) {
2014-11-19 14:59:37 -05:00
if (stat(*argv, &st) < 0) {
weprintf("stat %s:", *argv);
ret = 1;
2013-06-09 09:20:55 -04:00
continue;
}
chgrp(*argv, 0);
2013-06-09 09:20:55 -04:00
}
return ret;
2013-06-09 09:20:55 -04:00
}