sbase/chown.c

105 lines
1.9 KiB
C
Raw Normal View History

2011-05-24 19:24:33 -04:00
/* See LICENSE file for copyright and license details. */
#include <errno.h>
#include <fcntl.h>
2011-05-24 19:24:33 -04:00
#include <grp.h>
#include <limits.h>
2011-05-24 19:24:33 -04:00
#include <pwd.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "fs.h"
2011-05-24 19:24:33 -04:00
#include "util.h"
static int hflag = 0;
static uid_t uid = -1;
static gid_t gid = -1;
static int ret = 0;
2011-05-24 19:24:33 -04:00
2015-02-12 15:56:06 -05:00
static void
chownpwgr(int dirfd, const char *name, struct stat *st, void *data, struct recursor *r)
2015-02-12 15:56:06 -05:00
{
int flags = 0;
if ((r->maxdepth == 0 && r->follow == 'P') || (r->follow == 'H' && r->depth) || (hflag && !(r->depth)))
flags |= AT_SYMLINK_NOFOLLOW;
if (fchownat(dirfd, name, uid, gid, flags) < 0) {
weprintf("chown %s:", r->path);
2015-02-12 15:56:06 -05:00
ret = 1;
} else if (S_ISDIR(st->st_mode)) {
recurse(dirfd, name, NULL, r);
}
2015-02-12 15:56:06 -05:00
}
2011-05-24 19:24:33 -04:00
2013-06-14 14:20:47 -04:00
static void
usage(void)
{
eprintf("usage: %s [-h] [-R [-H | -L | -P]] owner[:[group]] file ...\n"
" %s [-h] [-R [-H | -L | -P]] :group file ...\n",
argv0, argv0);
2013-06-14 14:20:47 -04:00
}
2011-05-24 19:24:33 -04:00
int
main(int argc, char *argv[])
{
2014-11-02 17:24:53 -05:00
struct group *gr;
struct passwd *pw;
struct recursor r = { .fn = chownpwgr, .maxdepth = 1, .follow = 'P' };
char *owner, *group;
2011-05-24 19:24:33 -04:00
2013-06-14 14:20:47 -04:00
ARGBEGIN {
2015-02-12 15:56:06 -05:00
case 'h':
hflag = 1;
2015-02-12 15:56:06 -05:00
break;
2013-06-14 14:20:47 -04:00
case 'r':
case 'R':
r.maxdepth = 0;
2013-06-14 14:20:47 -04:00
break;
case 'H':
case 'L':
case 'P':
r.follow = ARGC();
break;
2013-06-14 14:20:47 -04:00
default:
usage();
} ARGEND
if (argc < 2)
2013-06-14 14:20:47 -04:00
usage();
owner = argv[0];
if ((group = strchr(owner, ':')))
2011-05-24 19:24:33 -04:00
*group++ = '\0';
if (owner && *owner) {
2011-05-24 19:24:33 -04:00
errno = 0;
pw = getpwnam(owner);
if (pw) {
2014-11-02 17:24:53 -05:00
uid = pw->pw_uid;
} else {
if (errno)
2014-07-09 09:48:59 -04:00
eprintf("getpwnam %s:", owner);
uid = estrtonum(owner, 0, UINT_MAX);
2014-07-09 09:48:59 -04:00
}
2011-05-24 19:24:33 -04:00
}
if (group && *group) {
2011-05-24 19:24:33 -04:00
errno = 0;
gr = getgrnam(group);
if (gr) {
2014-11-02 17:24:53 -05:00
gid = gr->gr_gid;
} else {
if (errno)
2014-07-09 09:48:59 -04:00
eprintf("getgrnam %s:", group);
gid = estrtonum(group, 0, UINT_MAX);
2014-07-09 09:48:59 -04:00
}
2011-05-24 19:24:33 -04:00
}
if (uid == (uid_t)-1 && gid == (gid_t)-1)
usage();
for (argc--, argv++; *argv; argc--, argv++)
recurse(AT_FDCWD, *argv, NULL, &r);
2013-06-14 14:20:47 -04:00
return ret || recurse_status;
2011-05-24 19:24:33 -04:00
}