xref: /freebsd/lib/libutil/gr_util.c (revision a2f733abcff64628b7771a47089628b7327a88bd)
10b5e8899SSean Farley /*-
2*4d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
35e53a4f9SPedro F. Giffuni  *
40b5e8899SSean Farley  * Copyright (c) 2008 Sean C. Farley <scf@FreeBSD.org>
50b5e8899SSean Farley  * All rights reserved.
60b5e8899SSean Farley  *
70b5e8899SSean Farley  * Redistribution and use in source and binary forms, with or without
80b5e8899SSean Farley  * modification, are permitted provided that the following conditions
90b5e8899SSean Farley  * are met:
100b5e8899SSean Farley  * 1. Redistributions of source code must retain the above copyright
110b5e8899SSean Farley  *    notice, this list of conditions and the following disclaimer,
120b5e8899SSean Farley  *    without modification, immediately at the beginning of the file.
130b5e8899SSean Farley  * 2. Redistributions in binary form must reproduce the above copyright
140b5e8899SSean Farley  *    notice, this list of conditions and the following disclaimer in the
150b5e8899SSean Farley  *    documentation and/or other materials provided with the distribution.
160b5e8899SSean Farley  *
170b5e8899SSean Farley  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
180b5e8899SSean Farley  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
190b5e8899SSean Farley  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
200b5e8899SSean Farley  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
210b5e8899SSean Farley  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
220b5e8899SSean Farley  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
230b5e8899SSean Farley  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
240b5e8899SSean Farley  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
250b5e8899SSean Farley  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
260b5e8899SSean Farley  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
270b5e8899SSean Farley  */
280b5e8899SSean Farley 
290b5e8899SSean Farley #include <sys/param.h>
301926f2f6SBaptiste Daroussin #include <sys/errno.h>
311926f2f6SBaptiste Daroussin #include <sys/stat.h>
32a0671723SSean Farley 
331926f2f6SBaptiste Daroussin #include <ctype.h>
341926f2f6SBaptiste Daroussin #include <err.h>
351926f2f6SBaptiste Daroussin #include <fcntl.h>
360b5e8899SSean Farley #include <grp.h>
370b5e8899SSean Farley #include <inttypes.h>
38a0671723SSean Farley #include <libutil.h>
391926f2f6SBaptiste Daroussin #include <paths.h>
400b5e8899SSean Farley #include <stdbool.h>
410b5e8899SSean Farley #include <stdio.h>
420b5e8899SSean Farley #include <stdlib.h>
430b5e8899SSean Farley #include <string.h>
441926f2f6SBaptiste Daroussin #include <unistd.h>
450b5e8899SSean Farley 
461926f2f6SBaptiste Daroussin static int lockfd = -1;
471926f2f6SBaptiste Daroussin static char group_dir[PATH_MAX];
481926f2f6SBaptiste Daroussin static char group_file[PATH_MAX];
491926f2f6SBaptiste Daroussin static char tempname[PATH_MAX];
501926f2f6SBaptiste Daroussin static int initialized;
5186e2f99dSDiane Bruce static size_t grmemlen(const struct group *, const char *, int *);
525e879837SDiane Bruce static struct group *grcopy(const struct group *gr, char *mem, const char *, int ndx);
531926f2f6SBaptiste Daroussin 
540b5e8899SSean Farley /*
551926f2f6SBaptiste Daroussin  * Initialize statics
561926f2f6SBaptiste Daroussin  */
571926f2f6SBaptiste Daroussin int
gr_init(const char * dir,const char * group)581926f2f6SBaptiste Daroussin gr_init(const char *dir, const char *group)
591926f2f6SBaptiste Daroussin {
6029e57550SBaptiste Daroussin 
611926f2f6SBaptiste Daroussin 	if (dir == NULL) {
621926f2f6SBaptiste Daroussin 		strcpy(group_dir, _PATH_ETC);
631926f2f6SBaptiste Daroussin 	} else {
641926f2f6SBaptiste Daroussin 		if (strlen(dir) >= sizeof(group_dir)) {
651926f2f6SBaptiste Daroussin 			errno = ENAMETOOLONG;
661926f2f6SBaptiste Daroussin 			return (-1);
671926f2f6SBaptiste Daroussin 		}
681926f2f6SBaptiste Daroussin 		strcpy(group_dir, dir);
691926f2f6SBaptiste Daroussin 	}
701926f2f6SBaptiste Daroussin 
711926f2f6SBaptiste Daroussin 	if (group == NULL) {
721926f2f6SBaptiste Daroussin 		if (dir == NULL) {
731926f2f6SBaptiste Daroussin 			strcpy(group_file, _PATH_GROUP);
741926f2f6SBaptiste Daroussin 		} else if (snprintf(group_file, sizeof(group_file), "%s/group",
751926f2f6SBaptiste Daroussin 			group_dir) > (int)sizeof(group_file)) {
761926f2f6SBaptiste Daroussin 			errno = ENAMETOOLONG;
771926f2f6SBaptiste Daroussin 			return (-1);
781926f2f6SBaptiste Daroussin 		}
791926f2f6SBaptiste Daroussin 	} else {
801926f2f6SBaptiste Daroussin 		if (strlen(group) >= sizeof(group_file)) {
811926f2f6SBaptiste Daroussin 			errno = ENAMETOOLONG;
821926f2f6SBaptiste Daroussin 			return (-1);
831926f2f6SBaptiste Daroussin 		}
841926f2f6SBaptiste Daroussin 		strcpy(group_file, group);
851926f2f6SBaptiste Daroussin 	}
8629e57550SBaptiste Daroussin 
871926f2f6SBaptiste Daroussin 	initialized = 1;
881926f2f6SBaptiste Daroussin 	return (0);
891926f2f6SBaptiste Daroussin }
901926f2f6SBaptiste Daroussin 
911926f2f6SBaptiste Daroussin /*
921926f2f6SBaptiste Daroussin  * Lock the group file
931926f2f6SBaptiste Daroussin  */
941926f2f6SBaptiste Daroussin int
gr_lock(void)951926f2f6SBaptiste Daroussin gr_lock(void)
961926f2f6SBaptiste Daroussin {
971926f2f6SBaptiste Daroussin 	if (*group_file == '\0')
981926f2f6SBaptiste Daroussin 		return (-1);
991926f2f6SBaptiste Daroussin 
1001926f2f6SBaptiste Daroussin 	for (;;) {
1011926f2f6SBaptiste Daroussin 		struct stat st;
1021926f2f6SBaptiste Daroussin 
103ede89d5dSBaptiste Daroussin 		lockfd = flopen(group_file, O_RDONLY|O_NONBLOCK|O_CLOEXEC, 0);
10498e79fb1SBaptiste Daroussin 		if (lockfd == -1) {
1051926f2f6SBaptiste Daroussin 			if (errno == EWOULDBLOCK) {
1061926f2f6SBaptiste Daroussin 				errx(1, "the group file is busy");
1071926f2f6SBaptiste Daroussin 			} else {
10839c64ed6SPiotr Pawel Stefaniak 				err(1, "could not lock the group file");
1091926f2f6SBaptiste Daroussin 			}
1101926f2f6SBaptiste Daroussin 		}
1111926f2f6SBaptiste Daroussin 		if (fstat(lockfd, &st) == -1)
11239c64ed6SPiotr Pawel Stefaniak 			err(1, "fstat() failed");
1131926f2f6SBaptiste Daroussin 		if (st.st_nlink != 0)
1141926f2f6SBaptiste Daroussin 			break;
1151926f2f6SBaptiste Daroussin 		close(lockfd);
1161926f2f6SBaptiste Daroussin 		lockfd = -1;
1171926f2f6SBaptiste Daroussin 	}
1181926f2f6SBaptiste Daroussin 	return (lockfd);
1191926f2f6SBaptiste Daroussin }
1201926f2f6SBaptiste Daroussin 
1211926f2f6SBaptiste Daroussin /*
1221926f2f6SBaptiste Daroussin  * Create and open a presmuably safe temp file for editing group data
1231926f2f6SBaptiste Daroussin  */
1241926f2f6SBaptiste Daroussin int
gr_tmp(int mfd)1251926f2f6SBaptiste Daroussin gr_tmp(int mfd)
1261926f2f6SBaptiste Daroussin {
1271926f2f6SBaptiste Daroussin 	char buf[8192];
1281926f2f6SBaptiste Daroussin 	ssize_t nr;
1291926f2f6SBaptiste Daroussin 	const char *p;
1301926f2f6SBaptiste Daroussin 	int tfd;
1311926f2f6SBaptiste Daroussin 
1321926f2f6SBaptiste Daroussin 	if (*group_file == '\0')
1331926f2f6SBaptiste Daroussin 		return (-1);
1341926f2f6SBaptiste Daroussin 	if ((p = strrchr(group_file, '/')))
1351926f2f6SBaptiste Daroussin 		++p;
1361926f2f6SBaptiste Daroussin 	else
1371926f2f6SBaptiste Daroussin 		p = group_file;
1381926f2f6SBaptiste Daroussin 	if (snprintf(tempname, sizeof(tempname), "%.*sgroup.XXXXXX",
1391926f2f6SBaptiste Daroussin 		(int)(p - group_file), group_file) >= (int)sizeof(tempname)) {
1401926f2f6SBaptiste Daroussin 		errno = ENAMETOOLONG;
1411926f2f6SBaptiste Daroussin 		return (-1);
1421926f2f6SBaptiste Daroussin 	}
143cbaba16bSAlan Somers 	if ((tfd = mkostemp(tempname, 0)) == -1)
1441926f2f6SBaptiste Daroussin 		return (-1);
1451926f2f6SBaptiste Daroussin 	if (mfd != -1) {
1461926f2f6SBaptiste Daroussin 		while ((nr = read(mfd, buf, sizeof(buf))) > 0)
1471926f2f6SBaptiste Daroussin 			if (write(tfd, buf, (size_t)nr) != nr)
1481926f2f6SBaptiste Daroussin 				break;
1491926f2f6SBaptiste Daroussin 		if (nr != 0) {
1501926f2f6SBaptiste Daroussin 			unlink(tempname);
1511926f2f6SBaptiste Daroussin 			*tempname = '\0';
1521926f2f6SBaptiste Daroussin 			close(tfd);
1531926f2f6SBaptiste Daroussin 			return (-1);
1541926f2f6SBaptiste Daroussin 		}
1551926f2f6SBaptiste Daroussin 	}
1561926f2f6SBaptiste Daroussin 	return (tfd);
1571926f2f6SBaptiste Daroussin }
1581926f2f6SBaptiste Daroussin 
1591926f2f6SBaptiste Daroussin /*
1601926f2f6SBaptiste Daroussin  * Copy the group file from one descriptor to another, replacing, deleting
1611926f2f6SBaptiste Daroussin  * or adding a single record on the way.
1621926f2f6SBaptiste Daroussin  */
1631926f2f6SBaptiste Daroussin int
gr_copy(int ffd,int tfd,const struct group * gr,struct group * old_gr)1641926f2f6SBaptiste Daroussin gr_copy(int ffd, int tfd, const struct group *gr, struct group *old_gr)
1651926f2f6SBaptiste Daroussin {
166e68bca50SDag-Erling Smørgrav 	char *buf, *end, *line, *p, *q, *r, *tmp;
1671926f2f6SBaptiste Daroussin 	struct group *fgr;
1681926f2f6SBaptiste Daroussin 	const struct group *sgr;
169e68bca50SDag-Erling Smørgrav 	size_t len, size;
1701926f2f6SBaptiste Daroussin 	int eof, readlen;
171e68bca50SDag-Erling Smørgrav 	char t;
1721926f2f6SBaptiste Daroussin 
1736e6c53f0SBaptiste Daroussin 	if (old_gr == NULL && gr == NULL)
1746e6c53f0SBaptiste Daroussin 		return(-1);
1756e6c53f0SBaptiste Daroussin 
1766e6c53f0SBaptiste Daroussin 	sgr = old_gr;
1776e6c53f0SBaptiste Daroussin 	/* deleting a group */
1781926f2f6SBaptiste Daroussin 	if (gr == NULL) {
1791926f2f6SBaptiste Daroussin 		line = NULL;
1806e6c53f0SBaptiste Daroussin 	} else {
1816e6c53f0SBaptiste Daroussin 		if ((line = gr_make(gr)) == NULL)
1821926f2f6SBaptiste Daroussin 			return (-1);
1836e6c53f0SBaptiste Daroussin 	}
1846e6c53f0SBaptiste Daroussin 
1856e6c53f0SBaptiste Daroussin 	/* adding a group */
1866e6c53f0SBaptiste Daroussin 	if (sgr == NULL)
1876e6c53f0SBaptiste Daroussin 		sgr = gr;
1881926f2f6SBaptiste Daroussin 
189e68bca50SDag-Erling Smørgrav 	/* initialize the buffer */
190e68bca50SDag-Erling Smørgrav 	if ((buf = malloc(size = 1024)) == NULL)
191e68bca50SDag-Erling Smørgrav 		goto err;
192e68bca50SDag-Erling Smørgrav 
1931926f2f6SBaptiste Daroussin 	eof = 0;
1941926f2f6SBaptiste Daroussin 	len = 0;
1951926f2f6SBaptiste Daroussin 	p = q = end = buf;
1961926f2f6SBaptiste Daroussin 	for (;;) {
1971926f2f6SBaptiste Daroussin 		/* find the end of the current line */
1981926f2f6SBaptiste Daroussin 		for (p = q; q < end && *q != '\0'; ++q)
1991926f2f6SBaptiste Daroussin 			if (*q == '\n')
2001926f2f6SBaptiste Daroussin 				break;
2011926f2f6SBaptiste Daroussin 
2021926f2f6SBaptiste Daroussin 		/* if we don't have a complete line, fill up the buffer */
2031926f2f6SBaptiste Daroussin 		if (q >= end) {
2041926f2f6SBaptiste Daroussin 			if (eof)
2051926f2f6SBaptiste Daroussin 				break;
206e68bca50SDag-Erling Smørgrav 			while ((size_t)(q - p) >= size) {
207efa8af7cSPedro F. Giffuni 				if ((tmp = reallocarray(buf, 2, size)) == NULL) {
2081926f2f6SBaptiste Daroussin 					warnx("group line too long");
2091926f2f6SBaptiste Daroussin 					goto err;
2101926f2f6SBaptiste Daroussin 				}
211e68bca50SDag-Erling Smørgrav 				p = tmp + (p - buf);
212e68bca50SDag-Erling Smørgrav 				q = tmp + (q - buf);
213e68bca50SDag-Erling Smørgrav 				end = tmp + (end - buf);
214e68bca50SDag-Erling Smørgrav 				buf = tmp;
215e68bca50SDag-Erling Smørgrav 				size = size * 2;
216e68bca50SDag-Erling Smørgrav 			}
2171926f2f6SBaptiste Daroussin 			if (p < end) {
2181926f2f6SBaptiste Daroussin 				q = memmove(buf, p, end -p);
2191926f2f6SBaptiste Daroussin 				end -= p - buf;
2201926f2f6SBaptiste Daroussin 			} else {
2211926f2f6SBaptiste Daroussin 				p = q = end = buf;
2221926f2f6SBaptiste Daroussin 			}
223e68bca50SDag-Erling Smørgrav 			readlen = read(ffd, end, size - (end - buf));
2241926f2f6SBaptiste Daroussin 			if (readlen == -1)
2251926f2f6SBaptiste Daroussin 				goto err;
2261926f2f6SBaptiste Daroussin 			else
2271926f2f6SBaptiste Daroussin 				len = (size_t)readlen;
2281926f2f6SBaptiste Daroussin 			if (len == 0 && p == buf)
2291926f2f6SBaptiste Daroussin 				break;
2301926f2f6SBaptiste Daroussin 			end += len;
2311926f2f6SBaptiste Daroussin 			len = end - buf;
232e68bca50SDag-Erling Smørgrav 			if (len < size) {
2331926f2f6SBaptiste Daroussin 				eof = 1;
2341926f2f6SBaptiste Daroussin 				if (len > 0 && buf[len -1] != '\n')
2351926f2f6SBaptiste Daroussin 					++len, *end++ = '\n';
2361926f2f6SBaptiste Daroussin 			}
2371926f2f6SBaptiste Daroussin 			continue;
2381926f2f6SBaptiste Daroussin 		}
2391926f2f6SBaptiste Daroussin 
2401926f2f6SBaptiste Daroussin 		/* is it a blank line or a comment? */
2411926f2f6SBaptiste Daroussin 		for (r = p; r < q && isspace(*r); ++r)
2421926f2f6SBaptiste Daroussin 			/* nothing */;
2431926f2f6SBaptiste Daroussin 		if (r == q || *r == '#') {
2441926f2f6SBaptiste Daroussin 			/* yep */
2451926f2f6SBaptiste Daroussin 			if (write(tfd, p, q -p + 1) != q - p + 1)
2461926f2f6SBaptiste Daroussin 				goto err;
2471926f2f6SBaptiste Daroussin 			++q;
2481926f2f6SBaptiste Daroussin 			continue;
2491926f2f6SBaptiste Daroussin 		}
2501926f2f6SBaptiste Daroussin 
2511926f2f6SBaptiste Daroussin 		/* is it the one we're looking for? */
2521926f2f6SBaptiste Daroussin 
2531926f2f6SBaptiste Daroussin 		t = *q;
2541926f2f6SBaptiste Daroussin 		*q = '\0';
2551926f2f6SBaptiste Daroussin 
2561926f2f6SBaptiste Daroussin 		fgr = gr_scan(r);
2571926f2f6SBaptiste Daroussin 
2581926f2f6SBaptiste Daroussin 		/* fgr is either a struct group for the current line,
2591926f2f6SBaptiste Daroussin 		 * or NULL if the line is malformed.
2601926f2f6SBaptiste Daroussin 		 */
2611926f2f6SBaptiste Daroussin 
2621926f2f6SBaptiste Daroussin 		*q = t;
2631926f2f6SBaptiste Daroussin 		if (fgr == NULL || fgr->gr_gid != sgr->gr_gid) {
2641926f2f6SBaptiste Daroussin 			/* nope */
2651926f2f6SBaptiste Daroussin 			if (fgr != NULL)
2661926f2f6SBaptiste Daroussin 				free(fgr);
2671926f2f6SBaptiste Daroussin 			if (write(tfd, p, q - p + 1) != q - p + 1)
2681926f2f6SBaptiste Daroussin 				goto err;
2691926f2f6SBaptiste Daroussin 			++q;
2701926f2f6SBaptiste Daroussin 			continue;
2711926f2f6SBaptiste Daroussin 		}
2721926f2f6SBaptiste Daroussin 		if (old_gr && !gr_equal(fgr, old_gr)) {
2731926f2f6SBaptiste Daroussin 			warnx("entry inconsistent");
2741926f2f6SBaptiste Daroussin 			free(fgr);
2751926f2f6SBaptiste Daroussin 			errno = EINVAL; /* hack */
2761926f2f6SBaptiste Daroussin 			goto err;
2771926f2f6SBaptiste Daroussin 		}
2781926f2f6SBaptiste Daroussin 		free(fgr);
2791926f2f6SBaptiste Daroussin 
2801926f2f6SBaptiste Daroussin 		/* it is, replace or remove it */
2811926f2f6SBaptiste Daroussin 		if (line != NULL) {
2821926f2f6SBaptiste Daroussin 			len = strlen(line);
2831926f2f6SBaptiste Daroussin 			if (write(tfd, line, len) != (int) len)
2841926f2f6SBaptiste Daroussin 				goto err;
2851926f2f6SBaptiste Daroussin 		} else {
2861926f2f6SBaptiste Daroussin 			/* when removed, avoid the \n */
2871926f2f6SBaptiste Daroussin 			q++;
2881926f2f6SBaptiste Daroussin 		}
2891926f2f6SBaptiste Daroussin 		/* we're done, just copy the rest over */
2901926f2f6SBaptiste Daroussin 		for (;;) {
2911926f2f6SBaptiste Daroussin 			if (write(tfd, q, end - q) != end - q)
2921926f2f6SBaptiste Daroussin 				goto err;
2931926f2f6SBaptiste Daroussin 			q = buf;
294e68bca50SDag-Erling Smørgrav 			readlen = read(ffd, buf, size);
2951926f2f6SBaptiste Daroussin 			if (readlen == 0)
2961926f2f6SBaptiste Daroussin 				break;
2971926f2f6SBaptiste Daroussin 			else
2981926f2f6SBaptiste Daroussin 				len = (size_t)readlen;
2991926f2f6SBaptiste Daroussin 			if (readlen == -1)
3001926f2f6SBaptiste Daroussin 				goto err;
3011926f2f6SBaptiste Daroussin 			end = buf + len;
3021926f2f6SBaptiste Daroussin 		}
3031926f2f6SBaptiste Daroussin 		goto done;
3041926f2f6SBaptiste Daroussin 	}
3051926f2f6SBaptiste Daroussin 
3061926f2f6SBaptiste Daroussin 	/* if we got here, we didn't find the old entry */
3071926f2f6SBaptiste Daroussin 	if (line == NULL) {
3081926f2f6SBaptiste Daroussin 		errno = ENOENT;
3091926f2f6SBaptiste Daroussin 		goto err;
3101926f2f6SBaptiste Daroussin 	}
3111926f2f6SBaptiste Daroussin 	len = strlen(line);
3121926f2f6SBaptiste Daroussin 	if ((size_t)write(tfd, line, len) != len ||
3131926f2f6SBaptiste Daroussin 	   write(tfd, "\n", 1) != 1)
3141926f2f6SBaptiste Daroussin 		goto err;
3151926f2f6SBaptiste Daroussin  done:
3161926f2f6SBaptiste Daroussin 	free(line);
317e68bca50SDag-Erling Smørgrav 	free(buf);
3181926f2f6SBaptiste Daroussin 	return (0);
3191926f2f6SBaptiste Daroussin  err:
3201926f2f6SBaptiste Daroussin 	free(line);
321e68bca50SDag-Erling Smørgrav 	free(buf);
3221926f2f6SBaptiste Daroussin 	return (-1);
3231926f2f6SBaptiste Daroussin }
3241926f2f6SBaptiste Daroussin 
3251926f2f6SBaptiste Daroussin /*
3261926f2f6SBaptiste Daroussin  * Regenerate the group file
3271926f2f6SBaptiste Daroussin  */
3281926f2f6SBaptiste Daroussin int
gr_mkdb(void)3291926f2f6SBaptiste Daroussin gr_mkdb(void)
3301926f2f6SBaptiste Daroussin {
331d32a66b2SRenato Botelho 	int fd;
332d32a66b2SRenato Botelho 
33309259e6cSBaptiste Daroussin 	if (chmod(tempname, 0644) != 0)
33409259e6cSBaptiste Daroussin 		return (-1);
3352d2b6ad7SBaptiste Daroussin 
336d32a66b2SRenato Botelho 	if (rename(tempname, group_file) != 0)
337d32a66b2SRenato Botelho 		return (-1);
338d32a66b2SRenato Botelho 
339d32a66b2SRenato Botelho 	/*
340d32a66b2SRenato Botelho 	 * Make sure new group file is safe on disk. To improve performance we
341d32a66b2SRenato Botelho 	 * will call fsync() to the directory where file lies
342d32a66b2SRenato Botelho 	 */
343d32a66b2SRenato Botelho 	if ((fd = open(group_dir, O_RDONLY|O_DIRECTORY)) == -1)
344d32a66b2SRenato Botelho 		return (-1);
345d32a66b2SRenato Botelho 
346d32a66b2SRenato Botelho 	if (fsync(fd) != 0) {
347d32a66b2SRenato Botelho 		close(fd);
348d32a66b2SRenato Botelho 		return (-1);
349d32a66b2SRenato Botelho 	}
350d32a66b2SRenato Botelho 
351d32a66b2SRenato Botelho 	close(fd);
352d32a66b2SRenato Botelho 	return(0);
3531926f2f6SBaptiste Daroussin }
3541926f2f6SBaptiste Daroussin 
3551926f2f6SBaptiste Daroussin /*
35608ecf0ccSMateusz Guzik  * Clean up. Preserves errno for the caller's convenience.
3571926f2f6SBaptiste Daroussin  */
3581926f2f6SBaptiste Daroussin void
gr_fini(void)3591926f2f6SBaptiste Daroussin gr_fini(void)
3601926f2f6SBaptiste Daroussin {
3611926f2f6SBaptiste Daroussin 	int serrno;
3621926f2f6SBaptiste Daroussin 
3631926f2f6SBaptiste Daroussin 	if (!initialized)
3641926f2f6SBaptiste Daroussin 		return;
3651926f2f6SBaptiste Daroussin 	initialized = 0;
3661926f2f6SBaptiste Daroussin 	serrno = errno;
3671926f2f6SBaptiste Daroussin 	if (*tempname != '\0') {
3681926f2f6SBaptiste Daroussin 		unlink(tempname);
3691926f2f6SBaptiste Daroussin 		*tempname = '\0';
3701926f2f6SBaptiste Daroussin 	}
3711926f2f6SBaptiste Daroussin 	if (lockfd != -1)
3721926f2f6SBaptiste Daroussin 		close(lockfd);
3731926f2f6SBaptiste Daroussin 	errno = serrno;
3741926f2f6SBaptiste Daroussin }
3751926f2f6SBaptiste Daroussin 
3761926f2f6SBaptiste Daroussin /*
3770b5e8899SSean Farley  * Compares two struct group's.
3780b5e8899SSean Farley  */
3790b5e8899SSean Farley int
gr_equal(const struct group * gr1,const struct group * gr2)3800b5e8899SSean Farley gr_equal(const struct group *gr1, const struct group *gr2)
3810b5e8899SSean Farley {
3820b5e8899SSean Farley 
3830b5e8899SSean Farley 	/* Check that the non-member information is the same. */
384805da51aSSean Farley 	if (gr1->gr_name == NULL || gr2->gr_name == NULL) {
385805da51aSSean Farley 		if (gr1->gr_name != gr2->gr_name)
386805da51aSSean Farley 			return (false);
387805da51aSSean Farley 	} else if (strcmp(gr1->gr_name, gr2->gr_name) != 0)
388805da51aSSean Farley 		return (false);
389805da51aSSean Farley 	if (gr1->gr_passwd == NULL || gr2->gr_passwd == NULL) {
390805da51aSSean Farley 		if (gr1->gr_passwd != gr2->gr_passwd)
391805da51aSSean Farley 			return (false);
392805da51aSSean Farley 	} else if (strcmp(gr1->gr_passwd, gr2->gr_passwd) != 0)
393805da51aSSean Farley 		return (false);
394805da51aSSean Farley 	if (gr1->gr_gid != gr2->gr_gid)
395805da51aSSean Farley 		return (false);
3960b5e8899SSean Farley 
397f8c88390SMark Johnston 	/*
398f8c88390SMark Johnston 	 * Check all members in both groups.
3995e879837SDiane Bruce 	 * getgrnam can return gr_mem with a pointer to NULL.
4005e879837SDiane Bruce 	 * gr_dup and gr_add strip out this superfluous NULL, setting
4015e879837SDiane Bruce 	 * gr_mem to NULL for no members.
4025e879837SDiane Bruce 	*/
4035e879837SDiane Bruce 	if (gr1->gr_mem != NULL && gr2->gr_mem != NULL) {
4045e879837SDiane Bruce 		int i;
4050b5e8899SSean Farley 
406f8c88390SMark Johnston 		for (i = 0;
407f8c88390SMark Johnston 		    gr1->gr_mem[i] != NULL && gr2->gr_mem[i] != NULL; i++) {
4085e879837SDiane Bruce 			if (strcmp(gr1->gr_mem[i], gr2->gr_mem[i]) != 0)
409805da51aSSean Farley 				return (false);
4100b5e8899SSean Farley 		}
411f8c88390SMark Johnston 		if (gr1->gr_mem[i] != NULL || gr2->gr_mem[i] != NULL)
4125e879837SDiane Bruce 			return (false);
413f8c88390SMark Johnston 	} else if (gr1->gr_mem != NULL && gr1->gr_mem[0] != NULL) {
414f8c88390SMark Johnston 		return (false);
415f8c88390SMark Johnston 	} else if (gr2->gr_mem != NULL && gr2->gr_mem[0] != NULL) {
416f8c88390SMark Johnston 		return (false);
417f8c88390SMark Johnston 	}
4180b5e8899SSean Farley 
419805da51aSSean Farley 	return (true);
4200b5e8899SSean Farley }
4210b5e8899SSean Farley 
4220b5e8899SSean Farley /*
4230b5e8899SSean Farley  * Make a group line out of a struct group.
4240b5e8899SSean Farley  */
4250b5e8899SSean Farley char *
gr_make(const struct group * gr)4260b5e8899SSean Farley gr_make(const struct group *gr)
4270b5e8899SSean Farley {
428fe75b0f0SMateusz Guzik 	const char *group_line_format = "%s:%s:%ju:";
42949013fb4SMateusz Guzik 	const char *sep;
4300b5e8899SSean Farley 	char *line;
43149013fb4SMateusz Guzik 	char *p;
432805da51aSSean Farley 	size_t line_size;
433a0671723SSean Farley 	int ndx;
4340b5e8899SSean Farley 
4350b5e8899SSean Farley 	/* Calculate the length of the group line. */
436805da51aSSean Farley 	line_size = snprintf(NULL, 0, group_line_format, gr->gr_name,
4370b5e8899SSean Farley 	    gr->gr_passwd, (uintmax_t)gr->gr_gid) + 1;
438805da51aSSean Farley 	if (gr->gr_mem != NULL) {
4390b5e8899SSean Farley 		for (ndx = 0; gr->gr_mem[ndx] != NULL; ndx++)
440805da51aSSean Farley 			line_size += strlen(gr->gr_mem[ndx]) + 1;
4410b5e8899SSean Farley 		if (ndx > 0)
442805da51aSSean Farley 			line_size--;
443805da51aSSean Farley 	}
4440b5e8899SSean Farley 
4450b5e8899SSean Farley 	/* Create the group line and fill it. */
44649013fb4SMateusz Guzik 	if ((line = p = malloc(line_size)) == NULL)
4470b5e8899SSean Farley 		return (NULL);
44849013fb4SMateusz Guzik 	p += sprintf(p, group_line_format, gr->gr_name, gr->gr_passwd,
4490dd84a53SSean Farley 	    (uintmax_t)gr->gr_gid);
45049013fb4SMateusz Guzik 	if (gr->gr_mem != NULL) {
45149013fb4SMateusz Guzik 		sep = "";
4520b5e8899SSean Farley 		for (ndx = 0; gr->gr_mem[ndx] != NULL; ndx++) {
45349013fb4SMateusz Guzik 			p = stpcpy(p, sep);
45449013fb4SMateusz Guzik 			p = stpcpy(p, gr->gr_mem[ndx]);
45549013fb4SMateusz Guzik 			sep = ",";
45649013fb4SMateusz Guzik 		}
4570b5e8899SSean Farley 	}
4580b5e8899SSean Farley 
4590b5e8899SSean Farley 	return (line);
4600b5e8899SSean Farley }
4610b5e8899SSean Farley 
4620b5e8899SSean Farley /*
4630b5e8899SSean Farley  * Duplicate a struct group.
4640b5e8899SSean Farley  */
4650b5e8899SSean Farley struct group *
gr_dup(const struct group * gr)4660b5e8899SSean Farley gr_dup(const struct group *gr)
4670b5e8899SSean Farley {
46886e2f99dSDiane Bruce 	return (gr_add(gr, NULL));
46986e2f99dSDiane Bruce }
47086e2f99dSDiane Bruce /*
47186e2f99dSDiane Bruce  * Add a new member name to a struct group.
47286e2f99dSDiane Bruce  */
47386e2f99dSDiane Bruce struct group *
gr_add(const struct group * gr,const char * newmember)47486e2f99dSDiane Bruce gr_add(const struct group *gr, const char *newmember)
47586e2f99dSDiane Bruce {
4765e879837SDiane Bruce 	char *mem;
4770b5e8899SSean Farley 	size_t len;
478805da51aSSean Farley 	int num_mem;
4790b5e8899SSean Farley 
48086e2f99dSDiane Bruce 	num_mem = 0;
48186e2f99dSDiane Bruce 	len = grmemlen(gr, newmember, &num_mem);
4820b5e8899SSean Farley 	/* Create new group and copy old group into it. */
4835e879837SDiane Bruce 	if ((mem = malloc(len)) == NULL)
4840b5e8899SSean Farley 		return (NULL);
4855e879837SDiane Bruce 	return (grcopy(gr, mem, newmember, num_mem));
48686e2f99dSDiane Bruce }
48786e2f99dSDiane Bruce 
48886e2f99dSDiane Bruce /* It is safer to walk the pointers given at gr_mem since there is no
4895e879837SDiane Bruce  * guarantee the gr_mem + strings are contiguous in the given struct group
4905e879837SDiane Bruce  * but compactify the new group into the following form.
49186e2f99dSDiane Bruce  *
49286e2f99dSDiane Bruce  * The new struct is laid out like this in memory. The example given is
49386e2f99dSDiane Bruce  * for a group with two members only.
49486e2f99dSDiane Bruce  *
49586e2f99dSDiane Bruce  * {
49686e2f99dSDiane Bruce  * (char *name)
49786e2f99dSDiane Bruce  * (char *passwd)
49886e2f99dSDiane Bruce  * (int gid)
49986e2f99dSDiane Bruce  * (gr_mem * newgrp + sizeof(struct group) + sizeof(**)) points to gr_mem area
50086e2f99dSDiane Bruce  * gr_mem area
50186e2f99dSDiane Bruce  * (member1 *)
50286e2f99dSDiane Bruce  * (member2 *)
50386e2f99dSDiane Bruce  * (NULL)
50486e2f99dSDiane Bruce  * (name string)
50586e2f99dSDiane Bruce  * (passwd string)
50686e2f99dSDiane Bruce  * (member1 string)
50786e2f99dSDiane Bruce  * (member2 string)
50886e2f99dSDiane Bruce  * }
50986e2f99dSDiane Bruce  */
51086e2f99dSDiane Bruce /*
5115e879837SDiane Bruce  * Copy the contents of a group plus given name to a preallocated group struct
51286e2f99dSDiane Bruce  */
51386e2f99dSDiane Bruce static struct group *
grcopy(const struct group * gr,char * dst,const char * name,int ndx)5145e879837SDiane Bruce grcopy(const struct group *gr, char *dst, const char *name, int ndx)
51586e2f99dSDiane Bruce {
51686e2f99dSDiane Bruce 	int i;
5175e879837SDiane Bruce 	struct group *newgr;
51886e2f99dSDiane Bruce 
5195e879837SDiane Bruce 	newgr = (struct group *)(void *)dst;	/* avoid alignment warning */
5205e879837SDiane Bruce 	dst += sizeof(*newgr);
5215e879837SDiane Bruce 	if (ndx != 0) {
5225e879837SDiane Bruce 		newgr->gr_mem = (char **)(void *)(dst);	/* avoid alignment warning */
5235e879837SDiane Bruce 		dst += (ndx + 1) * sizeof(*newgr->gr_mem);
5245e879837SDiane Bruce 	} else
5251067c64aSBaptiste Daroussin 		newgr->gr_mem = NULL;
5260b5e8899SSean Farley 	if (gr->gr_name != NULL) {
5271067c64aSBaptiste Daroussin 		newgr->gr_name = dst;
5281067c64aSBaptiste Daroussin 		dst = stpcpy(dst, gr->gr_name) + 1;
52986e2f99dSDiane Bruce 	} else
530167145a1SBaptiste Daroussin 		newgr->gr_name = NULL;
5310b5e8899SSean Farley 	if (gr->gr_passwd != NULL) {
5321067c64aSBaptiste Daroussin 		newgr->gr_passwd = dst;
5331067c64aSBaptiste Daroussin 		dst = stpcpy(dst, gr->gr_passwd) + 1;
53486e2f99dSDiane Bruce 	} else
535167145a1SBaptiste Daroussin 		newgr->gr_passwd = NULL;
5361067c64aSBaptiste Daroussin 	newgr->gr_gid = gr->gr_gid;
5375e879837SDiane Bruce 	i = 0;
5385e879837SDiane Bruce 	/* Original group struct might have a NULL gr_mem */
5395e879837SDiane Bruce 	if (gr->gr_mem != NULL) {
5405e879837SDiane Bruce 		for (; gr->gr_mem[i] != NULL; i++) {
54186e2f99dSDiane Bruce 			newgr->gr_mem[i] = dst;
54286e2f99dSDiane Bruce 			dst = stpcpy(dst, gr->gr_mem[i]) + 1;
5430b5e8899SSean Farley 		}
5445e879837SDiane Bruce 	}
5455e879837SDiane Bruce 	/* If name is not NULL, newgr->gr_mem is known to be not NULL */
54686e2f99dSDiane Bruce 	if (name != NULL) {
54786e2f99dSDiane Bruce 		newgr->gr_mem[i++] = dst;
54886e2f99dSDiane Bruce 		dst = stpcpy(dst, name) + 1;
54986e2f99dSDiane Bruce 	}
5505e879837SDiane Bruce 	/* if newgr->gr_mem is not NULL add NULL marker */
5515e879837SDiane Bruce 	if (newgr->gr_mem != NULL)
55286e2f99dSDiane Bruce 		newgr->gr_mem[i] = NULL;
5535e879837SDiane Bruce 
5541067c64aSBaptiste Daroussin 	return (newgr);
5550b5e8899SSean Farley }
5560b5e8899SSean Farley 
5570b5e8899SSean Farley /*
55886e2f99dSDiane Bruce  *  Calculate length of a struct group + given name
559be49c830SBaptiste Daroussin  */
56086e2f99dSDiane Bruce static size_t
grmemlen(const struct group * gr,const char * name,int * num_mem)56186e2f99dSDiane Bruce grmemlen(const struct group *gr, const char *name, int *num_mem)
562be49c830SBaptiste Daroussin {
56386e2f99dSDiane Bruce 	size_t len;
56486e2f99dSDiane Bruce 	int i;
565be49c830SBaptiste Daroussin 
56686e2f99dSDiane Bruce 	if (gr == NULL)
56786e2f99dSDiane Bruce 		return (0);
56886e2f99dSDiane Bruce 	/* Calculate size of the group. */
56986e2f99dSDiane Bruce 	len = sizeof(*gr);
57086e2f99dSDiane Bruce 	if (gr->gr_name != NULL)
57186e2f99dSDiane Bruce 		len += strlen(gr->gr_name) + 1;
57286e2f99dSDiane Bruce 	if (gr->gr_passwd != NULL)
57386e2f99dSDiane Bruce 		len += strlen(gr->gr_passwd) + 1;
5745e879837SDiane Bruce 	i = 0;
575be49c830SBaptiste Daroussin 	if (gr->gr_mem != NULL) {
5765e879837SDiane Bruce 		for (; gr->gr_mem[i] != NULL; i++) {
57786e2f99dSDiane Bruce 			len += strlen(gr->gr_mem[i]) + 1;
57886e2f99dSDiane Bruce 			len += sizeof(*gr->gr_mem);
579be49c830SBaptiste Daroussin 		}
580be49c830SBaptiste Daroussin 	}
58186e2f99dSDiane Bruce 	if (name != NULL) {
5825e879837SDiane Bruce 		i++;
58386e2f99dSDiane Bruce 		len += strlen(name) + 1;
58486e2f99dSDiane Bruce 		len += sizeof(*gr->gr_mem);
585be49c830SBaptiste Daroussin 	}
5865e879837SDiane Bruce 	/* Allow for NULL pointer */
5875e879837SDiane Bruce 	if (i != 0)
5885e879837SDiane Bruce 		len += sizeof(*gr->gr_mem);
5895e879837SDiane Bruce 	*num_mem = i;
59086e2f99dSDiane Bruce 	return(len);
591be49c830SBaptiste Daroussin }
592be49c830SBaptiste Daroussin 
593be49c830SBaptiste Daroussin /*
5940b5e8899SSean Farley  * Scan a line and place it into a group structure.
5950b5e8899SSean Farley  */
5960b5e8899SSean Farley static bool
__gr_scan(char * line,struct group * gr)5970b5e8899SSean Farley __gr_scan(char *line, struct group *gr)
5980b5e8899SSean Farley {
5990b5e8899SSean Farley 	char *loc;
6000b5e8899SSean Farley 	int ndx;
6010b5e8899SSean Farley 
6020b5e8899SSean Farley 	/* Assign non-member information to structure. */
6030b5e8899SSean Farley 	gr->gr_name = line;
6040b5e8899SSean Farley 	if ((loc = strchr(line, ':')) == NULL)
6050b5e8899SSean Farley 		return (false);
6060b5e8899SSean Farley 	*loc = '\0';
6070b5e8899SSean Farley 	gr->gr_passwd = loc + 1;
608a0671723SSean Farley 	if (*gr->gr_passwd == ':')
609a0671723SSean Farley 		*gr->gr_passwd = '\0';
6100b5e8899SSean Farley 	else {
6110b5e8899SSean Farley 		if ((loc = strchr(loc + 1, ':')) == NULL)
6120b5e8899SSean Farley 			return (false);
6130b5e8899SSean Farley 		*loc = '\0';
6140b5e8899SSean Farley 	}
615a0671723SSean Farley 	if (sscanf(loc + 1, "%u", &gr->gr_gid) != 1)
6160b5e8899SSean Farley 		return (false);
6170b5e8899SSean Farley 
6180b5e8899SSean Farley 	/* Assign member information to structure. */
6190b5e8899SSean Farley 	if ((loc = strchr(loc + 1, ':')) == NULL)
6200b5e8899SSean Farley 		return (false);
6210b5e8899SSean Farley 	line = loc + 1;
6220b5e8899SSean Farley 	gr->gr_mem = NULL;
6230b5e8899SSean Farley 	ndx = 0;
6240b5e8899SSean Farley 	do {
625805da51aSSean Farley 		gr->gr_mem = reallocf(gr->gr_mem, sizeof(*gr->gr_mem) *
626805da51aSSean Farley 		    (ndx + 1));
627805da51aSSean Farley 		if (gr->gr_mem == NULL)
6280b5e8899SSean Farley 			return (false);
629805da51aSSean Farley 
630805da51aSSean Farley 		/* Skip locations without members (i.e., empty string). */
631805da51aSSean Farley 		do {
6320b5e8899SSean Farley 			gr->gr_mem[ndx] = strsep(&line, ",");
633805da51aSSean Farley 		} while (gr->gr_mem[ndx] != NULL && *gr->gr_mem[ndx] == '\0');
6340b5e8899SSean Farley 	} while (gr->gr_mem[ndx++] != NULL);
6350b5e8899SSean Farley 
6360b5e8899SSean Farley 	return (true);
6370b5e8899SSean Farley }
6380b5e8899SSean Farley 
6390b5e8899SSean Farley /*
6400b5e8899SSean Farley  * Create a struct group from a line.
6410b5e8899SSean Farley  */
6420b5e8899SSean Farley struct group *
gr_scan(const char * line)6430b5e8899SSean Farley gr_scan(const char *line)
6440b5e8899SSean Farley {
645a0671723SSean Farley 	struct group gr;
646805da51aSSean Farley 	char *line_copy;
647805da51aSSean Farley 	struct group *new_gr;
6480b5e8899SSean Farley 
649805da51aSSean Farley 	if ((line_copy = strdup(line)) == NULL)
6500b5e8899SSean Farley 		return (NULL);
651805da51aSSean Farley 	if (!__gr_scan(line_copy, &gr)) {
652805da51aSSean Farley 		free(line_copy);
6530b5e8899SSean Farley 		return (NULL);
6540b5e8899SSean Farley 	}
655805da51aSSean Farley 	new_gr = gr_dup(&gr);
656805da51aSSean Farley 	free(line_copy);
6570b5e8899SSean Farley 	if (gr.gr_mem != NULL)
6580b5e8899SSean Farley 		free(gr.gr_mem);
6590b5e8899SSean Farley 
660805da51aSSean Farley 	return (new_gr);
6610b5e8899SSean Farley }
662