2013-10-07 12:03:26 -04:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2013-06-09 09:20:55 -04:00
|
|
|
#include <errno.h>
|
|
|
|
#include <grp.h>
|
2013-10-07 19:45:25 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2014-11-13 13:54:28 -05:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
2014-11-13 12:29:30 -05:00
|
|
|
|
2013-06-09 09:20:55 -04:00
|
|
|
#include "util.h"
|
|
|
|
|
2013-10-07 11:12:09 -04:00
|
|
|
static int gid;
|
2014-11-22 06:13:53 -05:00
|
|
|
static int status;
|
|
|
|
static int rflag;
|
2013-10-07 19:45:25 -04:00
|
|
|
static struct stat st;
|
2015-02-12 15:56:06 -05:00
|
|
|
static char *chown_f_name = "chown";
|
|
|
|
static int (*chown_f)(const char *, uid_t, gid_t) = chown;
|
2013-06-09 09:20:55 -04:00
|
|
|
|
2013-10-07 19:45:25 -04:00
|
|
|
static void
|
|
|
|
chgrp(const char *path)
|
2013-06-09 09:20:55 -04:00
|
|
|
{
|
2015-02-12 15:56:06 -05:00
|
|
|
if (chown_f(path, st.st_uid, gid) < 0) {
|
|
|
|
weprintf("%s %s:", chown_f_name, path);
|
2014-11-22 06:13:53 -05:00
|
|
|
status = 1;
|
2013-06-09 09:20:55 -04:00
|
|
|
}
|
2013-10-07 19:45:25 -04:00
|
|
|
if (rflag)
|
|
|
|
recurse(path, chgrp);
|
2013-06-09 09:20:55 -04:00
|
|
|
}
|
|
|
|
|
2015-02-12 15:56:06 -05:00
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
|
|
|
eprintf("usage: chgrp [-hR] groupname file...\n");
|
|
|
|
}
|
|
|
|
|
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':
|
|
|
|
chown_f_name = "lchown";
|
|
|
|
chown_f = lchown;
|
|
|
|
break;
|
2013-06-09 09:20:55 -04:00
|
|
|
case 'R':
|
|
|
|
rflag = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
} ARGEND;
|
2013-10-07 19:45:25 -04:00
|
|
|
|
2014-11-13 12:29:30 -05:00
|
|
|
if (argc < 2)
|
2013-06-09 09:20:55 -04:00
|
|
|
usage();
|
|
|
|
|
2013-10-07 19:45:25 -04:00
|
|
|
errno = 0;
|
2013-06-09 09:20:55 -04:00
|
|
|
gr = getgrnam(argv[0]);
|
2014-12-21 07:12:38 -05:00
|
|
|
if (!gr) {
|
|
|
|
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;
|
|
|
|
|
2014-11-13 12:29:30 -05:00
|
|
|
while (*++argv) {
|
2014-11-19 14:59:37 -05:00
|
|
|
if (stat(*argv, &st) < 0) {
|
2014-11-17 11:27:12 -05:00
|
|
|
weprintf("stat %s:", *argv);
|
2014-11-22 06:13:53 -05:00
|
|
|
status = 1;
|
2013-06-09 09:20:55 -04:00
|
|
|
continue;
|
|
|
|
}
|
2013-10-07 19:45:25 -04:00
|
|
|
chgrp(*argv);
|
2013-06-09 09:20:55 -04:00
|
|
|
}
|
2014-11-22 06:13:53 -05:00
|
|
|
return status;
|
2013-06-09 09:20:55 -04:00
|
|
|
}
|