pw_group.c revision 176473
1/*-
2 * Copyright (C) 1996
3 *	David L. Nugent.  All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY DAVID L. NUGENT AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED.  IN NO EVENT SHALL DAVID L. NUGENT OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 */
26
27#ifndef lint
28static const char rcsid[] =
29  "$FreeBSD: head/usr.sbin/pw/pw_group.c 176473 2008-02-23 01:17:42Z scf $";
30#endif /* not lint */
31
32#include <ctype.h>
33#include <err.h>
34#include <termios.h>
35#include <unistd.h>
36
37#include "pw.h"
38#include "bitmap.h"
39
40
41static int      print_group(struct group * grp, int pretty);
42static gid_t    gr_gidpolicy(struct userconf * cnf, struct cargs * args);
43
44int
45pw_group(struct userconf * cnf, int mode, struct cargs * args)
46{
47	int		rc;
48	struct carg    *a_name = getarg(args, 'n');
49	struct carg    *a_gid = getarg(args, 'g');
50	struct carg    *arg;
51	struct group   *grp = NULL;
52	int	        grmembers = 0;
53	char           **members = NULL;
54
55	static struct group fakegroup =
56	{
57		"nogroup",
58		"*",
59		-1,
60		NULL
61	};
62
63	if (mode == M_LOCK || mode == M_UNLOCK)
64		errx(EX_USAGE, "'lock' command is not available for groups");
65
66	/*
67	 * With M_NEXT, we only need to return the
68	 * next gid to stdout
69	 */
70	if (mode == M_NEXT) {
71		gid_t next = gr_gidpolicy(cnf, args);
72		if (getarg(args, 'q'))
73			return next;
74		printf("%ld\n", (long)next);
75		return EXIT_SUCCESS;
76	}
77
78	if (mode == M_PRINT && getarg(args, 'a')) {
79		int             pretty = getarg(args, 'P') != NULL;
80
81		SETGRENT();
82		while ((grp = GETGRENT()) != NULL)
83			print_group(grp, pretty);
84		ENDGRENT();
85		return EXIT_SUCCESS;
86	}
87	if (a_gid == NULL) {
88		if (a_name == NULL)
89			errx(EX_DATAERR, "group name or id required");
90
91		if (mode != M_ADD && grp == NULL && isdigit((unsigned char)*a_name->val)) {
92			(a_gid = a_name)->ch = 'g';
93			a_name = NULL;
94		}
95	}
96	grp = (a_name != NULL) ? GETGRNAM(a_name->val) : GETGRGID((gid_t) atoi(a_gid->val));
97
98	if (mode == M_UPDATE || mode == M_DELETE || mode == M_PRINT) {
99		if (a_name == NULL && grp == NULL)	/* Try harder */
100			grp = GETGRGID(atoi(a_gid->val));
101
102		if (grp == NULL) {
103			if (mode == M_PRINT && getarg(args, 'F')) {
104				char	*fmems[1];
105				fmems[0] = NULL;
106				fakegroup.gr_name = a_name ? a_name->val : "nogroup";
107				fakegroup.gr_gid = a_gid ? (gid_t) atol(a_gid->val) : -1;
108				fakegroup.gr_mem = fmems;
109				return print_group(&fakegroup, getarg(args, 'P') != NULL);
110			}
111			errx(EX_DATAERR, "unknown group `%s'", a_name ? a_name->val : a_gid->val);
112		}
113		if (a_name == NULL)	/* Needed later */
114			a_name = addarg(args, 'n', grp->gr_name);
115
116		/*
117		 * Handle deletions now
118		 */
119		if (mode == M_DELETE) {
120			gid_t           gid = grp->gr_gid;
121
122			rc = delgrent(grp);
123			if (rc == -1)
124				err(EX_IOERR, "group '%s' not available (NIS?)", grp->gr_name);
125			else if (rc != 0) {
126				warn("group update");
127				return EX_IOERR;
128			}
129			pw_log(cnf, mode, W_GROUP, "%s(%ld) removed", a_name->val, (long) gid);
130			return EXIT_SUCCESS;
131		} else if (mode == M_PRINT)
132			return print_group(grp, getarg(args, 'P') != NULL);
133
134		if (a_gid)
135			grp->gr_gid = (gid_t) atoi(a_gid->val);
136
137		if ((arg = getarg(args, 'l')) != NULL)
138			grp->gr_name = pw_checkname((u_char *)arg->val, 0);
139	} else {
140		if (a_name == NULL)	/* Required */
141			errx(EX_DATAERR, "group name required");
142		else if (grp != NULL)	/* Exists */
143			errx(EX_DATAERR, "group name `%s' already exists", a_name->val);
144
145		extendarray(&members, &grmembers, 200);
146		members[0] = NULL;
147		grp = &fakegroup;
148		grp->gr_name = pw_checkname((u_char *)a_name->val, 0);
149		grp->gr_passwd = "*";
150		grp->gr_gid = gr_gidpolicy(cnf, args);
151		grp->gr_mem = members;
152	}
153
154	/*
155	 * This allows us to set a group password Group passwords is an
156	 * antique idea, rarely used and insecure (no secure database) Should
157	 * be discouraged, but it is apparently still supported by some
158	 * software.
159	 */
160
161	if ((arg = getarg(args, 'h')) != NULL ||
162	    (arg = getarg(args, 'H')) != NULL) {
163		if (strcmp(arg->val, "-") == 0)
164			grp->gr_passwd = "*";	/* No access */
165		else {
166			int             fd = atoi(arg->val);
167			int		precrypt = (arg->ch == 'H');
168			int             b;
169			int             istty = isatty(fd);
170			struct termios  t;
171			char           *p, line[256];
172
173			if (istty) {
174				if (tcgetattr(fd, &t) == -1)
175					istty = 0;
176				else {
177					struct termios  n = t;
178
179					/* Disable echo */
180					n.c_lflag &= ~(ECHO);
181					tcsetattr(fd, TCSANOW, &n);
182					printf("%sassword for group %s:", (mode == M_UPDATE) ? "New p" : "P", grp->gr_name);
183					fflush(stdout);
184				}
185			}
186			b = read(fd, line, sizeof(line) - 1);
187			if (istty) {	/* Restore state */
188				tcsetattr(fd, TCSANOW, &t);
189				fputc('\n', stdout);
190				fflush(stdout);
191			}
192			if (b < 0) {
193				warn("-h file descriptor");
194				return EX_OSERR;
195			}
196			line[b] = '\0';
197			if ((p = strpbrk(line, " \t\r\n")) != NULL)
198				*p = '\0';
199			if (!*line)
200				errx(EX_DATAERR, "empty password read on file descriptor %d", fd);
201			if (precrypt) {
202				if (strchr(line, ':') != NULL)
203					return EX_DATAERR;
204				grp->gr_passwd = line;
205			} else
206				grp->gr_passwd = pw_pwcrypt(line);
207		}
208	}
209
210	if (((arg = getarg(args, 'M')) != NULL || (arg = getarg(args, 'm')) != NULL) && arg->val) {
211		int	i = 0;
212		char   *p;
213		struct passwd	*pwd;
214
215		/* Make sure this is not stay NULL with -M "" */
216		extendarray(&members, &grmembers, 200);
217		if (arg->ch == 'm') {
218			int	k = 0;
219
220			while (grp->gr_mem[k] != NULL) {
221				if (extendarray(&members, &grmembers, i + 2) != -1)
222					members[i++] = grp->gr_mem[k];
223				k++;
224			}
225		}
226		for (p = strtok(arg->val, ", \t"); p != NULL; p = strtok(NULL, ", \t")) {
227			int     j;
228			if ((pwd = GETPWNAM(p)) == NULL) {
229				if (!isdigit((unsigned char)*p) || (pwd = getpwuid((uid_t) atoi(p))) == NULL)
230					errx(EX_NOUSER, "user `%s' does not exist", p);
231			}
232			/*
233			 * Check for duplicates
234			 */
235			for (j = 0; j < i && strcmp(members[j], pwd->pw_name)!=0; j++)
236				;
237			if (j == i && extendarray(&members, &grmembers, i + 2) != -1)
238				members[i++] = newstr(pwd->pw_name);
239		}
240		while (i < grmembers)
241			members[i++] = NULL;
242		grp->gr_mem = members;
243	}
244
245	if (getarg(args, 'N') != NULL)
246		return print_group(grp, getarg(args, 'P') != NULL);
247
248	if (mode == M_ADD && (rc = addgrent(grp)) != 0) {
249		if (rc == -1)
250			warnx("group '%s' already exists", grp->gr_name);
251		else
252			warn("group update");
253		return EX_IOERR;
254	} else if (mode == M_UPDATE && (rc = chggrent(a_name->val, grp)) != 0) {
255		if (rc == -1)
256			warnx("group '%s' not available (NIS?)", grp->gr_name);
257		else
258			warn("group update");
259		return EX_IOERR;
260	}
261	/* grp may have been invalidated */
262	if ((grp = GETGRNAM(a_name->val)) == NULL)
263		errx(EX_SOFTWARE, "group disappeared during update");
264
265	pw_log(cnf, mode, W_GROUP, "%s(%ld)", grp->gr_name, (long) grp->gr_gid);
266
267	if (members)
268		free(members);
269
270	return EXIT_SUCCESS;
271}
272
273
274static          gid_t
275gr_gidpolicy(struct userconf * cnf, struct cargs * args)
276{
277	struct group   *grp;
278	gid_t           gid = (gid_t) - 1;
279	struct carg    *a_gid = getarg(args, 'g');
280
281	/*
282	 * Check the given gid, if any
283	 */
284	if (a_gid != NULL) {
285		gid = (gid_t) atol(a_gid->val);
286
287		if ((grp = GETGRGID(gid)) != NULL && getarg(args, 'o') == NULL)
288			errx(EX_DATAERR, "gid `%ld' has already been allocated", (long) grp->gr_gid);
289	} else {
290		struct bitmap   bm;
291
292		/*
293		 * We need to allocate the next available gid under one of
294		 * two policies a) Grab the first unused gid b) Grab the
295		 * highest possible unused gid
296		 */
297		if (cnf->min_gid >= cnf->max_gid) {	/* Sanity claus^H^H^H^Hheck */
298			cnf->min_gid = 1000;
299			cnf->max_gid = 32000;
300		}
301		bm = bm_alloc(cnf->max_gid - cnf->min_gid + 1);
302
303		/*
304		 * Now, let's fill the bitmap from the password file
305		 */
306		SETGRENT();
307		while ((grp = GETGRENT()) != NULL)
308			if ((gid_t)grp->gr_gid >= (gid_t)cnf->min_gid &&
309                            (gid_t)grp->gr_gid <= (gid_t)cnf->max_gid)
310				bm_setbit(&bm, grp->gr_gid - cnf->min_gid);
311		ENDGRENT();
312
313		/*
314		 * Then apply the policy, with fallback to reuse if necessary
315		 */
316		if (cnf->reuse_gids)
317			gid = (gid_t) (bm_firstunset(&bm) + cnf->min_gid);
318		else {
319			gid = (gid_t) (bm_lastset(&bm) + 1);
320			if (!bm_isset(&bm, gid))
321				gid += cnf->min_gid;
322			else
323				gid = (gid_t) (bm_firstunset(&bm) + cnf->min_gid);
324		}
325
326		/*
327		 * Another sanity check
328		 */
329		if (gid < cnf->min_gid || gid > cnf->max_gid)
330			errx(EX_SOFTWARE, "unable to allocate a new gid - range fully used");
331		bm_dealloc(&bm);
332	}
333	return gid;
334}
335
336
337static int
338print_group(struct group * grp, int pretty)
339{
340	if (!pretty) {
341		int		buflen = 0;
342		char           *buf = NULL;
343
344		fmtgrent(&buf, &buflen, grp);
345		fputs(buf, stdout);
346		free(buf);
347	} else {
348		int             i;
349
350		printf("Group Name: %-15s   #%lu\n"
351		       "   Members: ",
352		       grp->gr_name, (long) grp->gr_gid);
353		for (i = 0; grp->gr_mem[i]; i++)
354			printf("%s%s", i ? "," : "", grp->gr_mem[i]);
355		fputs("\n\n", stdout);
356	}
357	return EXIT_SUCCESS;
358}
359