summaryrefslogtreecommitdiff
path: root/libbb/update_passwd.c (plain)
blob: 6255af492a1f6893f70e8b38dc175bf5084895ac
1/* vi: set sw=4 ts=4: */
2/*
3 * update_passwd
4 *
5 * update_passwd is a common function for passwd and chpasswd applets;
6 * it is responsible for updating password file (i.e. /etc/passwd or
7 * /etc/shadow) for a given user and password.
8 *
9 * Moved from loginutils/passwd.c by Alexander Shishkin <virtuoso@slind.org>
10 *
11 * Modified to be able to add or delete users, groups and users to/from groups
12 * by Tito Ragusa <farmatito@tiscali.it>
13 *
14 * Licensed under GPLv2, see file LICENSE in this source tree.
15 */
16#include "libbb.h"
17
18#if ENABLE_SELINUX
19static void check_selinux_update_passwd(const char *username)
20{
21 security_context_t context;
22 char *seuser;
23
24 if (getuid() != (uid_t)0 || is_selinux_enabled() == 0)
25 return; /* No need to check */
26
27 if (getprevcon_raw(&context) < 0)
28 bb_perror_msg_and_die("getprevcon failed");
29 seuser = strtok(context, ":");
30 if (!seuser)
31 bb_error_msg_and_die("invalid context '%s'", context);
32 if (strcmp(seuser, username) != 0) {
33 security_class_t tclass;
34 access_vector_t av;
35
36 tclass = string_to_security_class("passwd");
37 if (tclass == 0)
38 goto die;
39 av = string_to_av_perm(tclass, "passwd");
40 if (av == 0)
41 goto die;
42
43 if (selinux_check_passwd_access(av) != 0)
44 die:
45 bb_error_msg_and_die("SELinux: access denied");
46 }
47 if (ENABLE_FEATURE_CLEAN_UP)
48 freecon(context);
49}
50#else
51# define check_selinux_update_passwd(username) ((void)0)
52#endif
53
54/*
55 1) add a user: update_passwd(FILE, USER, REMAINING_PWLINE, NULL)
56 only if CONFIG_ADDUSER=y and applet_name[0] == 'a' like in adduser
57
58 2) add a group: update_passwd(FILE, GROUP, REMAINING_GRLINE, NULL)
59 only if CONFIG_ADDGROUP=y and applet_name[0] == 'a' like in addgroup
60
61 3) add a user to a group: update_passwd(FILE, GROUP, NULL, MEMBER)
62 only if CONFIG_FEATURE_ADDUSER_TO_GROUP=y, applet_name[0] == 'a'
63 like in addgroup and member != NULL
64
65 4) delete a user: update_passwd(FILE, USER, NULL, NULL)
66
67 5) delete a group: update_passwd(FILE, GROUP, NULL, NULL)
68
69 6) delete a user from a group: update_passwd(FILE, GROUP, NULL, MEMBER)
70 only if CONFIG_FEATURE_DEL_USER_FROM_GROUP=y and member != NULL
71
72 7) change user's password: update_passwd(FILE, USER, NEW_PASSWD, NULL)
73 only if CONFIG_PASSWD=y and applet_name[0] == 'p' like in passwd
74 or if CONFIG_CHPASSWD=y and applet_name[0] == 'c' like in chpasswd
75
76 8) delete a user from all groups: update_passwd(FILE, NULL, NULL, MEMBER)
77
78 This function does not validate the arguments fed to it
79 so the calling program should take care of that.
80
81 Returns number of lines changed, or -1 on error.
82*/
83int FAST_FUNC update_passwd(const char *filename,
84 const char *name,
85 const char *new_passwd,
86 const char *member)
87{
88#if !(ENABLE_FEATURE_ADDUSER_TO_GROUP || ENABLE_FEATURE_DEL_USER_FROM_GROUP)
89#define member NULL
90#endif
91 struct stat sb;
92 struct flock lock;
93 FILE *old_fp;
94 FILE *new_fp;
95 char *fnamesfx;
96 char *sfx_char;
97 char *name_colon;
98 int old_fd;
99 int new_fd;
100 int i;
101 int changed_lines;
102 int ret = -1; /* failure */
103 /* used as a bool: "are we modifying /etc/shadow?" */
104#if ENABLE_FEATURE_SHADOWPASSWDS
105 const char *shadow = strstr(filename, "shadow");
106#else
107# define shadow NULL
108#endif
109
110 filename = xmalloc_follow_symlinks(filename);
111 if (filename == NULL)
112 return ret;
113
114 if (name)
115 check_selinux_update_passwd(name);
116
117 /* New passwd file, "/etc/passwd+" for now */
118 fnamesfx = xasprintf("%s+", filename);
119 sfx_char = &fnamesfx[strlen(fnamesfx)-1];
120 name_colon = xasprintf("%s:", name ? name : "");
121
122 if (shadow)
123 old_fp = fopen(filename, "r+");
124 else
125 old_fp = fopen_or_warn(filename, "r+");
126 if (!old_fp) {
127 if (shadow)
128 ret = 0; /* missing shadow is not an error */
129 goto free_mem;
130 }
131 old_fd = fileno(old_fp);
132
133 selinux_preserve_fcontext(old_fd);
134
135 /* Try to create "/etc/passwd+". Wait if it exists. */
136 i = 30;
137 do {
138 // FIXME: on last iteration try w/o O_EXCL but with O_TRUNC?
139 new_fd = open(fnamesfx, O_WRONLY|O_CREAT|O_EXCL, 0600);
140 if (new_fd >= 0) goto created;
141 if (errno != EEXIST) break;
142 usleep(100000); /* 0.1 sec */
143 } while (--i);
144 bb_perror_msg("can't create '%s'", fnamesfx);
145 goto close_old_fp;
146
147 created:
148 if (fstat(old_fd, &sb) == 0) {
149 fchmod(new_fd, sb.st_mode & 0777); /* ignore errors */
150 fchown(new_fd, sb.st_uid, sb.st_gid);
151 }
152 errno = 0;
153 new_fp = xfdopen_for_write(new_fd);
154
155 /* Backup file is "/etc/passwd-" */
156 *sfx_char = '-';
157 /* Delete old backup */
158 i = (unlink(fnamesfx) && errno != ENOENT);
159 /* Create backup as a hardlink to current */
160 if (i || link(filename, fnamesfx))
161 bb_perror_msg("warning: can't create backup copy '%s'",
162 fnamesfx);
163 *sfx_char = '+';
164
165 /* Lock the password file before updating */
166 lock.l_type = F_WRLCK;
167 lock.l_whence = SEEK_SET;
168 lock.l_start = 0;
169 lock.l_len = 0;
170 if (fcntl(old_fd, F_SETLK, &lock) < 0)
171 bb_perror_msg("warning: can't lock '%s'", filename);
172 lock.l_type = F_UNLCK;
173
174 /* Read current password file, write updated /etc/passwd+ */
175 changed_lines = 0;
176 while (1) {
177 char *cp, *line;
178
179 line = xmalloc_fgetline(old_fp);
180 if (!line) /* EOF/error */
181 break;
182
183 if (!name && member) {
184 /* Delete member from all groups */
185 /* line is "GROUP:PASSWD:[member1[,member2]...]" */
186 unsigned member_len = strlen(member);
187 char *list = strrchr(line, ':');
188 while (list) {
189 list++;
190 next_list_element:
191 if (is_prefixed_with(list, member)) {
192 char c;
193 changed_lines++;
194 c = list[member_len];
195 if (c == '\0') {
196 if (list[-1] == ',')
197 list--;
198 *list = '\0';
199 break;
200 }
201 if (c == ',') {
202 overlapping_strcpy(list, list + member_len + 1);
203 goto next_list_element;
204 }
205 changed_lines--;
206 }
207 list = strchr(list, ',');
208 }
209 fprintf(new_fp, "%s\n", line);
210 goto next;
211 }
212
213 cp = is_prefixed_with(line, name_colon);
214 if (!cp) {
215 fprintf(new_fp, "%s\n", line);
216 goto next;
217 }
218
219 /* We have a match with "name:"... */
220 /* cp points past "name:" */
221
222#if ENABLE_FEATURE_ADDUSER_TO_GROUP || ENABLE_FEATURE_DEL_USER_FROM_GROUP
223 if (member) {
224 /* It's actually /etc/group+, not /etc/passwd+ */
225 if (ENABLE_FEATURE_ADDUSER_TO_GROUP
226 && applet_name[0] == 'a'
227 ) {
228 /* Add user to group */
229 fprintf(new_fp, "%s%s%s\n", line,
230 last_char_is(line, ':') ? "" : ",",
231 member);
232 changed_lines++;
233 } else if (ENABLE_FEATURE_DEL_USER_FROM_GROUP
234 /* && applet_name[0] == 'd' */
235 ) {
236 /* Delete user from group */
237 char *tmp;
238 const char *fmt = "%s";
239
240 /* find the start of the member list: last ':' */
241 cp = strrchr(line, ':');
242 /* cut it */
243 *cp++ = '\0';
244 /* write the cut line name:passwd:gid:
245 * or name:!:: */
246 fprintf(new_fp, "%s:", line);
247 /* parse the tokens of the member list */
248 tmp = cp;
249 while ((cp = strsep(&tmp, ",")) != NULL) {
250 if (strcmp(member, cp) != 0) {
251 fprintf(new_fp, fmt, cp);
252 fmt = ",%s";
253 } else {
254 /* found member, skip it */
255 changed_lines++;
256 }
257 }
258 fprintf(new_fp, "\n");
259 }
260 } else
261#endif
262 if ((ENABLE_PASSWD && applet_name[0] == 'p')
263 || (ENABLE_CHPASSWD && applet_name[0] == 'c')
264 ) {
265 /* Change passwd */
266 cp = strchrnul(cp, ':'); /* move past old passwd */
267
268 if (shadow && *cp == ':') {
269 /* /etc/shadow's field 3 (passwd change date) needs updating */
270 /* move past old change date */
271 cp = strchrnul(cp + 1, ':');
272 /* "name:" + "new_passwd" + ":" + "change date" + ":rest of line" */
273 fprintf(new_fp, "%s%s:%u%s\n", name_colon, new_passwd,
274 (unsigned)(time(NULL)) / (24*60*60), cp);
275 } else {
276 /* "name:" + "new_passwd" + ":rest of line" */
277 fprintf(new_fp, "%s%s%s\n", name_colon, new_passwd, cp);
278 }
279 changed_lines++;
280 } /* else delete user or group: skip the line */
281 next:
282 free(line);
283 }
284
285 if (changed_lines == 0) {
286#if ENABLE_FEATURE_ADDUSER_TO_GROUP || ENABLE_FEATURE_DEL_USER_FROM_GROUP
287 if (member) {
288 if (ENABLE_ADDGROUP && applet_name[0] == 'a')
289 bb_error_msg("can't find %s in %s", name, filename);
290 if (ENABLE_DELGROUP && applet_name[0] == 'd')
291 bb_error_msg("can't find %s in %s", member, filename);
292 }
293#endif
294 if ((ENABLE_ADDUSER || ENABLE_ADDGROUP)
295 && applet_name[0] == 'a' && !member
296 ) {
297 /* add user or group */
298 fprintf(new_fp, "%s%s\n", name_colon, new_passwd);
299 changed_lines++;
300 }
301 }
302
303 fcntl(old_fd, F_SETLK, &lock);
304
305 /* We do want all of them to execute, thus | instead of || */
306 errno = 0;
307 if ((ferror(old_fp) | fflush(new_fp) | fsync(new_fd) | fclose(new_fp))
308 || rename(fnamesfx, filename)
309 ) {
310 /* At least one of those failed */
311 bb_perror_nomsg();
312 goto unlink_new;
313 }
314 /* Success: ret >= 0 */
315 ret = changed_lines;
316
317 unlink_new:
318 if (ret < 0)
319 unlink(fnamesfx);
320
321 close_old_fp:
322 fclose(old_fp);
323
324 free_mem:
325 free(fnamesfx);
326 free((char *)filename);
327 free(name_colon);
328 return ret;
329}
330