summaryrefslogtreecommitdiffstats
path: root/pw/edgroup.c
blob: 296956633d9efac9852f06143dea1d5b6dfbeaeb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
/*-
 * Copyright (c) 1996 by David L. Nugent <davidn@blaze.net.au>.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer as
 *    the first lines of this file unmodified.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *	This product includes software developed by David L. Nugent.
 * 4. The name of the author may not be used to endorse or promote products
 *    derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE DAVID L. NUGENT ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL DAVID L. NUGENT BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 *
 *	$Id$
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <stdarg.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <pwd.h>
#include <grp.h>
#include <fcntl.h>
#include <sys/param.h>
#include <ctype.h>

#include "pwupd.h"

static int
isingroup(char const * name, char **mem)
{
	int             i;

	for (i = 0; i < MAXGROUPS && mem[i] != NULL; i++)
		if (strcmp(name, mem[i]) == 0)
			return i;
	return -1;
}

static char     groupfile[] = _PATH_GROUP;
static char     grouptmp[] = _PATH_GROUP ".new";

int
editgroups(char *name, char **groups)
{
	int             rc = 0;
	int             infd;

	if ((infd = open(groupfile, O_RDWR | O_CREAT | O_EXLOCK, 0644)) != -1) {
		FILE           *infp;

		if ((infp = fdopen(infd, "r+")) == NULL)
			close(infd);
		else {
			int             outfd;

			if ((outfd = open(grouptmp, O_RDWR | O_CREAT | O_TRUNC | O_EXLOCK, 0644)) != -1) {
				FILE           *outfp;

				if ((outfp = fdopen(outfd, "w+")) == NULL)
					close(outfd);
				else {
					char            line[MAXPWLINE];
					char            outl[MAXPWLINE];

					while (fgets(line, sizeof(line), infp) != NULL) {
						char           *p = strchr(line, '\n');

						if (p == NULL) {	/* Line too long */
							int             ch;

							fputs(line, outfp);
							while ((ch = fgetc(infp)) != EOF) {
								fputc(ch, outfp);
								if (ch == '\n')
									break;
							}
							continue;
						}
						if (*line == '#')
							strcpy(outl, line);
						else if (*line == '\n')
							*outl = '\0';
						else {
							int             i,
							                mno = 0;
							char           *cp = line;
							char const     *sep = ":\n";
							struct group    grp;
							char           *mems[MAXGROUPS];

							memset(&grp, 0, sizeof grp);
							grp.gr_mem = mems;
							for (i = 0; (p = strsep(&cp, sep)) != NULL; i++) {
								switch (i) {
								case 0:	/* Group name */
									grp.gr_name = p;
									break;
								case 1:	/* Group password */
									grp.gr_passwd = p;
									break;
								case 2:	/* Group id */
									grp.gr_gid = atoi(p);
									break;
								case 3:	/* Member list */
									cp = p;
									sep = ",\n";
									break;
								default:	/* Individual members */
									if (mno < MAXGROUPS && *p)
										mems[mno++] = p;
									break;
								}
							}
							if (i < 2)	/* Bail out -
									 * insufficient fields */
								continue;

							for (i = mno; i < MAXGROUPS; i++)
								mems[i] = NULL;

							/*
							 * Delete from group, or add to group?
							 */
							if (groups == NULL || isingroup(grp.gr_name, groups) == -1) {	/* Delete */
								int             idx;

								while ((idx = isingroup(name, mems)) != -1) {
									for (i = idx; i < (MAXGROUPS - 1); i++)
										mems[i] = mems[i + 1];
									mems[i] = NULL;
									--mno;
								}

								/*
								 * Special case - deleting user and group may be user's own
								 */
								if (groups == NULL && mems[0] == NULL && strcmp(name, grp.gr_name) == 0) {	/* First, make _sure_ we
																		 * don't have other
																		 * members */
									struct passwd  *pwd;

									setpwent();
									while ((pwd = getpwent()) != NULL && pwd->pw_gid != grp.gr_gid);
									endpwent();
									if (pwd == NULL)	/* No members at all */
										continue;	/* Drop the group */
								}
							} else if (isingroup(name, mems) == -1)
								mems[mno++] = name;
							fmtgrentry(outl, &grp, PWF_GROUP);
						}
						fputs(outl, outfp);
					}
					if (fflush(outfp) != EOF) {
						rc = 1;

						/*
						 * Copy data back into the original file and truncate
						 */
						rewind(infp);
						rewind(outfp);
						while (fgets(line, sizeof(line), outfp) != NULL)
							fputs(line, infp);

						/*
						 * This is a gross hack, but we may have corrupted the
						 * original file. Unfortunately, it will lose preservation
						 * of the inode.
						 */
						if (fflush(infp) == EOF || ferror(infp))
							rc = rename(grouptmp, groupfile) == 0;
						else
							ftruncate(infd, ftell(infp));
					}
					fclose(outfp);
				}
				remove(grouptmp);
			}
			fclose(infp);
		}
	}
	return rc;
}