view toys/chgrp.c @ 588:9c2277b92b86

Factor out dirtree_comeagain() callback, setting up depth-first search with open filehandle in node->extra.
author Rob Landley <rob@landley.net>
date Fri, 01 Jun 2012 20:04:39 -0500
parents b88bc7dcdb48
children 7013fd450ff4
line wrap: on
line source

/* vi: set sw=4 ts=4:
 *
 * chgrp.c - Change group ownership
 *
 * Copyright 2012 Georgi Chorbadzhiyski <georgi@unixsol.org>
 *
 * See http://pubs.opengroup.org/onlinepubs/009695399/utilities/chgrp.html
 *
 * TODO: Add support for -h
 * TODO: Add support for -H
 * TODO: Add support for -L
 * TODO: Add support for -P

USE_CHGRP(NEWTOY(chgrp, "<2Rfv", TOYFLAG_BIN))

config CHGRP
	bool "chgrp"
	default y
	help
	  usage: chgrp [-R] [-f] [-v] group file...
	  Change group ownership of one or more files.

	  -R	recurse into subdirectories.
	  -f	suppress most error messages.
	  -v	verbose output.
*/

#include "toys.h"

#define FLAG_R 4
#define FLAG_f 2
#define FLAG_v 1

DEFINE_GLOBALS(
	gid_t group;
	char *group_name;
)

#define TT this.chgrp

static int do_chgrp(struct dirtree *node)
{
	int ret, flags = toys.optflags;

	ret = dirtree_comeagain(node, flags & FLAG_R);
	if (!ret || ret == DIRTREE_COMEAGAIN) return ret;

	if (node->extra != -1) ret = fchown(node->extra, -1, TT.group);

	if (ret || (flags & FLAG_v)) {
		char *path = dirtree_path(node, 0);
		if (flags & FLAG_v)
			xprintf("chgrp(%s, %s)\n", TT.group_name, path);
		if (ret == -1 && !(toys.optflags & FLAG_f))
			perror_msg("changing group of '%s' to '%s'", path, TT.group_name);
		free(path);
	}
	close(node->extra);
	toys.exitval |= ret;

	return 0;
}

void chgrp_main(void)
{
	char **s;
	struct group *group;

	TT.group_name = *toys.optargs;
	group = getgrnam(TT.group_name);
	if (!group) error_exit("no group '%s'", TT.group_name);
	TT.group = group->gr_gid;

	for (s=toys.optargs+1; *s; s++) dirtree_read(*s, do_chgrp);
}