pwd_mkdb.c revision 1.57 1 1.57 christos /* $NetBSD: pwd_mkdb.c,v 1.57 2014/01/26 01:57:04 christos Exp $ */
2 1.36 jmmv
3 1.36 jmmv /*
4 1.36 jmmv * Copyright (c) 2000, 2009 The NetBSD Foundation, Inc.
5 1.36 jmmv * All rights reserved.
6 1.36 jmmv *
7 1.36 jmmv * Redistribution and use in source and binary forms, with or without
8 1.36 jmmv * modification, are permitted provided that the following conditions
9 1.36 jmmv * are met:
10 1.36 jmmv * 1. Redistributions of source code must retain the above copyright
11 1.36 jmmv * notice, this list of conditions and the following disclaimer.
12 1.36 jmmv * 2. Redistributions in binary form must reproduce the above copyright
13 1.36 jmmv * notice, this list of conditions and the following disclaimer in the
14 1.36 jmmv * documentation and/or other materials provided with the distribution.
15 1.36 jmmv *
16 1.36 jmmv * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17 1.36 jmmv * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18 1.36 jmmv * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 1.36 jmmv * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20 1.36 jmmv * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 1.36 jmmv * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 1.36 jmmv * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 1.36 jmmv * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 1.36 jmmv * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 1.36 jmmv * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 1.36 jmmv * POSSIBILITY OF SUCH DAMAGE.
27 1.36 jmmv */
28 1.19 ad
29 1.11 fair /*
30 1.5 mycroft * Copyright (c) 1991, 1993, 1994
31 1.5 mycroft * The Regents of the University of California. All rights reserved.
32 1.26 agc *
33 1.26 agc * Redistribution and use in source and binary forms, with or without
34 1.26 agc * modification, are permitted provided that the following conditions
35 1.26 agc * are met:
36 1.26 agc * 1. Redistributions of source code must retain the above copyright
37 1.26 agc * notice, this list of conditions and the following disclaimer.
38 1.26 agc * 2. Redistributions in binary form must reproduce the above copyright
39 1.26 agc * notice, this list of conditions and the following disclaimer in the
40 1.26 agc * documentation and/or other materials provided with the distribution.
41 1.26 agc * 3. Neither the name of the University nor the names of its contributors
42 1.26 agc * may be used to endorse or promote products derived from this software
43 1.26 agc * without specific prior written permission.
44 1.26 agc *
45 1.26 agc * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
46 1.26 agc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47 1.26 agc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
48 1.26 agc * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
49 1.26 agc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
50 1.26 agc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
51 1.26 agc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
52 1.26 agc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
53 1.26 agc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
54 1.26 agc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
55 1.26 agc * SUCH DAMAGE.
56 1.26 agc */
57 1.26 agc
58 1.26 agc /*
59 1.6 phil * Portions Copyright(C) 1994, Jason Downs. All rights reserved.
60 1.1 cgd *
61 1.1 cgd * Redistribution and use in source and binary forms, with or without
62 1.1 cgd * modification, are permitted provided that the following conditions
63 1.1 cgd * are met:
64 1.1 cgd * 1. Redistributions of source code must retain the above copyright
65 1.1 cgd * notice, this list of conditions and the following disclaimer.
66 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
67 1.1 cgd * notice, this list of conditions and the following disclaimer in the
68 1.1 cgd * documentation and/or other materials provided with the distribution.
69 1.1 cgd *
70 1.27 agc * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS
71 1.27 agc * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
72 1.27 agc * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
73 1.27 agc * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT,
74 1.27 agc * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
75 1.27 agc * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
76 1.27 agc * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
77 1.27 agc * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
78 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
79 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
80 1.1 cgd * SUCH DAMAGE.
81 1.1 cgd */
82 1.1 cgd
83 1.28 lukem #if HAVE_NBTOOL_CONFIG_H
84 1.28 lukem #include "nbtool_config.h"
85 1.23 tv #endif
86 1.23 tv
87 1.10 lukem #include <sys/cdefs.h>
88 1.28 lukem #if !defined(lint)
89 1.36 jmmv __COPYRIGHT("@(#) Copyright (c) 2000, 2009\
90 1.34 lukem The NetBSD Foundation, Inc. All rights reserved.\
91 1.34 lukem Copyright (c) 1991, 1993, 1994\
92 1.34 lukem The Regents of the University of California. All rights reserved.");
93 1.57 christos __RCSID("$NetBSD: pwd_mkdb.c,v 1.57 2014/01/26 01:57:04 christos Exp $");
94 1.1 cgd #endif /* not lint */
95 1.1 cgd
96 1.29 jmc #if HAVE_NBTOOL_CONFIG_H
97 1.29 jmc #include "compat_pwd.h"
98 1.29 jmc #else
99 1.29 jmc #include <pwd.h>
100 1.29 jmc #endif
101 1.29 jmc
102 1.1 cgd #include <sys/param.h>
103 1.1 cgd #include <sys/stat.h>
104 1.39 apb #include <sys/types.h>
105 1.39 apb
106 1.39 apb #ifndef HAVE_NBTOOL_CONFIG_H
107 1.39 apb #include <machine/bswap.h>
108 1.39 apb #endif
109 1.5 mycroft
110 1.1 cgd #include <db.h>
111 1.24 tv #include <err.h>
112 1.1 cgd #include <errno.h>
113 1.5 mycroft #include <fcntl.h>
114 1.52 christos #include <syslog.h>
115 1.1 cgd #include <limits.h>
116 1.5 mycroft #include <signal.h>
117 1.1 cgd #include <stdio.h>
118 1.5 mycroft #include <stdlib.h>
119 1.52 christos #include <stdarg.h>
120 1.1 cgd #include <string.h>
121 1.5 mycroft #include <unistd.h>
122 1.56 pooka
123 1.56 pooka #ifndef HAVE_NBTOOL_CONFIG_H
124 1.24 tv #include <util.h>
125 1.56 pooka #endif
126 1.23 tv
127 1.22 ad #define MAX_CACHESIZE 8*1024*1024
128 1.22 ad #define MIN_CACHESIZE 2*1024*1024
129 1.22 ad
130 1.19 ad #define PERM_INSECURE (S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH)
131 1.19 ad #define PERM_SECURE (S_IRUSR | S_IWUSR)
132 1.1 cgd
133 1.28 lukem #if HAVE_NBTOOL_CONFIG_H
134 1.23 tv static const char __yp_token[] = "__YP!";
135 1.23 tv #else
136 1.22 ad /* Pull this out of the C library. */
137 1.6 phil extern const char __yp_token[];
138 1.23 tv #endif
139 1.6 phil
140 1.41 christos static HASHINFO openinfo = {
141 1.5 mycroft 4096, /* bsize */
142 1.5 mycroft 32, /* ffactor */
143 1.5 mycroft 256, /* nelem */
144 1.22 ad 0, /* cachesize */
145 1.5 mycroft NULL, /* hash() */
146 1.5 mycroft 0 /* lorder */
147 1.5 mycroft };
148 1.1 cgd
149 1.22 ad #define FILE_INSECURE 0x01
150 1.22 ad #define FILE_SECURE 0x02
151 1.22 ad #define FILE_ORIG 0x04
152 1.22 ad
153 1.42 christos
154 1.42 christos struct pwddb {
155 1.42 christos DB *db;
156 1.42 christos char dbname[MAX(MAXPATHLEN, LINE_MAX * 2)];
157 1.42 christos const char *fname;
158 1.42 christos uint32_t rversion;
159 1.42 christos uint32_t wversion;
160 1.42 christos };
161 1.42 christos
162 1.22 ad static char *pname; /* password file name */
163 1.22 ad static char prefix[MAXPATHLEN];
164 1.22 ad static char oldpwdfile[MAX(MAXPATHLEN, LINE_MAX * 2)];
165 1.22 ad static int lorder = BYTE_ORDER;
166 1.52 christos static int logsyslog;
167 1.22 ad static int clean;
168 1.42 christos static int verbose;
169 1.42 christos static int warning;
170 1.42 christos static struct pwddb sdb, idb;
171 1.42 christos
172 1.22 ad
173 1.54 joerg void bailout(void) __dead;
174 1.22 ad void cp(const char *, const char *, mode_t);
175 1.44 christos void deldbent(struct pwddb *, int, void *);
176 1.54 joerg void mkpw_error(const char *, ...) __dead;
177 1.52 christos void mkpw_warning(const char *, ...);
178 1.42 christos int getdbent(struct pwddb *, int, void *, struct passwd **);
179 1.54 joerg void inconsistency(void) __dead;
180 1.22 ad void install(const char *, const char *);
181 1.19 ad int main(int, char **);
182 1.44 christos void putdbents(struct pwddb *, struct passwd *, const char *, int, int,
183 1.44 christos u_int, u_int);
184 1.42 christos void putyptoken(struct pwddb *);
185 1.19 ad void rm(const char *);
186 1.19 ad int scan(FILE *, struct passwd *, int *, int *);
187 1.54 joerg void usage(void) __dead;
188 1.54 joerg void wr_error(const char *) __dead;
189 1.41 christos uint32_t getversion(const char *);
190 1.42 christos void setversion(struct pwddb *);
191 1.35 christos
192 1.44 christos #ifndef __lint__
193 1.35 christos #define SWAP(sw) \
194 1.39 apb ((sizeof(sw) == 2 ? (typeof(sw))bswap16((uint16_t)sw) : \
195 1.39 apb (sizeof(sw) == 4 ? (typeof(sw))bswap32((uint32_t)sw) : \
196 1.39 apb (sizeof(sw) == 8 ? (typeof(sw))bswap64((uint64_t)sw) : (abort(), 0)))))
197 1.44 christos #else
198 1.44 christos #define SWAP(sw) sw
199 1.44 christos #endif
200 1.5 mycroft
201 1.42 christos static void
202 1.42 christos closedb(struct pwddb *db)
203 1.42 christos {
204 1.42 christos if ((*db->db->close)(db->db) < 0)
205 1.42 christos wr_error(db->dbname);
206 1.42 christos }
207 1.42 christos
208 1.42 christos static void
209 1.42 christos opendb(struct pwddb *db, const char *dbname, const char *username,
210 1.44 christos uint32_t req_version, int flags, mode_t perm)
211 1.42 christos {
212 1.42 christos char buf[MAXPATHLEN];
213 1.42 christos
214 1.42 christos (void)snprintf(db->dbname, sizeof(db->dbname), "%s%s.tmp", prefix,
215 1.42 christos dbname);
216 1.42 christos
217 1.42 christos if (username != NULL) {
218 1.44 christos (void)snprintf(buf, sizeof(buf), "%s%s", prefix, dbname);
219 1.42 christos cp(buf, db->dbname, perm);
220 1.42 christos }
221 1.42 christos
222 1.42 christos db->db = dbopen(db->dbname, flags, perm, DB_HASH, &openinfo);
223 1.42 christos if (db->db == NULL)
224 1.52 christos mkpw_error("Cannot open `%s'", db->dbname);
225 1.42 christos
226 1.42 christos db->fname = dbname;
227 1.42 christos db->rversion = getversion(dbname);
228 1.42 christos if (req_version == ~0U)
229 1.42 christos db->wversion = db->rversion;
230 1.42 christos else
231 1.42 christos db->wversion = req_version;
232 1.42 christos
233 1.42 christos if (warning && db->rversion == 0 && db->wversion == 0) {
234 1.52 christos mkpw_warning("Database %s is a version %u database.",
235 1.42 christos db->fname, db->rversion);
236 1.52 christos mkpw_warning("Use %s -V 1 to upgrade once you've recompiled "
237 1.42 christos "all your binaries.", getprogname());
238 1.42 christos }
239 1.42 christos if (db->wversion != db->rversion) {
240 1.44 christos if (username != NULL) {
241 1.52 christos mkpw_warning("You cannot change a single "
242 1.44 christos "record from version %u to version %u\n",
243 1.52 christos db->rversion, db->wversion);
244 1.44 christos bailout();
245 1.44 christos } else if (verbose) {
246 1.52 christos mkpw_warning("Changing %s from version %u to version %u",
247 1.52 christos db->fname, db->rversion, db->wversion);
248 1.42 christos }
249 1.44 christos } else {
250 1.44 christos if (verbose)
251 1.52 christos mkpw_warning("File `%s' version %u requested %u",
252 1.52 christos db->fname, db->rversion, db->wversion);
253 1.42 christos }
254 1.44 christos
255 1.42 christos setversion(db);
256 1.42 christos }
257 1.42 christos
258 1.5 mycroft int
259 1.19 ad main(int argc, char *argv[])
260 1.1 cgd {
261 1.42 christos int ch, makeold, tfd, lineno, found, rv, hasyp, secureonly;
262 1.22 ad struct passwd pwd, *tpwd;
263 1.22 ad char *username;
264 1.1 cgd FILE *fp, *oldfp;
265 1.1 cgd sigset_t set;
266 1.44 christos u_int dbflg, uid_dbflg;
267 1.44 christos int newuser, olduid, flags;
268 1.22 ad struct stat st;
269 1.22 ad u_int cachesize;
270 1.42 christos uint32_t req_version;
271 1.1 cgd
272 1.21 tron prefix[0] = '\0';
273 1.1 cgd makeold = 0;
274 1.22 ad oldfp = NULL;
275 1.22 ad username = NULL;
276 1.22 ad hasyp = 0;
277 1.22 ad secureonly = 0;
278 1.30 lukem found = 0;
279 1.30 lukem newuser = 0;
280 1.31 sketch cachesize = 0;
281 1.41 christos verbose = 0;
282 1.42 christos warning = 0;
283 1.52 christos logsyslog = 0;
284 1.42 christos req_version = ~0U;
285 1.22 ad
286 1.52 christos while ((ch = getopt(argc, argv, "BLc:d:lpsu:V:vw")) != -1)
287 1.22 ad switch (ch) {
288 1.22 ad case 'B': /* big-endian output */
289 1.22 ad lorder = BIG_ENDIAN;
290 1.22 ad break;
291 1.22 ad case 'L': /* little-endian output */
292 1.22 ad lorder = LITTLE_ENDIAN;
293 1.22 ad break;
294 1.31 sketch case 'c':
295 1.31 sketch cachesize = atoi(optarg) * 1024 * 1024;
296 1.31 sketch break;
297 1.19 ad case 'd': /* set prefix */
298 1.44 christos (void)strlcpy(prefix, optarg, sizeof(prefix));
299 1.8 lukem break;
300 1.52 christos case 'l':
301 1.52 christos openlog(getprogname(), LOG_PID, LOG_AUTH);
302 1.52 christos logsyslog = 1;
303 1.52 christos break;
304 1.1 cgd case 'p': /* create V7 "file.orig" */
305 1.1 cgd makeold = 1;
306 1.1 cgd break;
307 1.22 ad case 's': /* modify secure db only */
308 1.22 ad secureonly = 1;
309 1.1 cgd break;
310 1.22 ad case 'u': /* modify one user only */
311 1.22 ad username = optarg;
312 1.17 mycroft break;
313 1.41 christos case 'V':
314 1.42 christos req_version = (uint32_t)atoi(optarg);
315 1.52 christos if (req_version > 1) {
316 1.52 christos mkpw_warning("Unknown version %u", req_version);
317 1.52 christos return EXIT_FAILURE;
318 1.52 christos }
319 1.41 christos break;
320 1.41 christos case 'v':
321 1.41 christos verbose++;
322 1.17 mycroft break;
323 1.42 christos case 'w':
324 1.42 christos warning++;
325 1.42 christos break;
326 1.1 cgd case '?':
327 1.1 cgd default:
328 1.1 cgd usage();
329 1.1 cgd }
330 1.1 cgd argc -= optind;
331 1.1 cgd argv += optind;
332 1.1 cgd
333 1.1 cgd if (argc != 1)
334 1.1 cgd usage();
335 1.22 ad if (username != NULL)
336 1.22 ad if (username[0] == '+' || username[0] == '-')
337 1.22 ad usage();
338 1.22 ad if (secureonly)
339 1.22 ad makeold = 0;
340 1.4 cgd
341 1.1 cgd /*
342 1.5 mycroft * This could be changed to allow the user to interrupt.
343 1.5 mycroft * Probably not worth the effort.
344 1.1 cgd */
345 1.44 christos (void)sigemptyset(&set);
346 1.44 christos (void)sigaddset(&set, SIGTSTP);
347 1.44 christos (void)sigaddset(&set, SIGHUP);
348 1.44 christos (void)sigaddset(&set, SIGINT);
349 1.44 christos (void)sigaddset(&set, SIGQUIT);
350 1.44 christos (void)sigaddset(&set, SIGTERM);
351 1.55 plunky (void)sigprocmask(SIG_BLOCK, &set, NULL);
352 1.1 cgd
353 1.5 mycroft /* We don't care what the user wants. */
354 1.5 mycroft (void)umask(0);
355 1.5 mycroft
356 1.22 ad if (username == NULL)
357 1.22 ad flags = O_RDWR | O_CREAT | O_EXCL;
358 1.22 ad else
359 1.22 ad flags = O_RDWR;
360 1.22 ad
361 1.1 cgd pname = *argv;
362 1.1 cgd /* Open the original password file */
363 1.19 ad if ((fp = fopen(pname, "r")) == NULL)
364 1.52 christos mkpw_error("Cannot open `%s'", pname);
365 1.1 cgd
366 1.17 mycroft openinfo.lorder = lorder;
367 1.17 mycroft
368 1.22 ad if (fstat(fileno(fp), &st) == -1)
369 1.52 christos mkpw_error("Cannot stat `%s'", pname);
370 1.22 ad
371 1.31 sketch if (cachesize) {
372 1.31 sketch openinfo.cachesize = cachesize;
373 1.31 sketch } else {
374 1.31 sketch /* Tweak openinfo values for large passwd files. */
375 1.44 christos cachesize = (u_int)(st.st_size * 20);
376 1.31 sketch if (cachesize > MAX_CACHESIZE)
377 1.31 sketch cachesize = MAX_CACHESIZE;
378 1.31 sketch else if (cachesize < MIN_CACHESIZE)
379 1.31 sketch cachesize = MIN_CACHESIZE;
380 1.31 sketch openinfo.cachesize = cachesize;
381 1.31 sketch }
382 1.22 ad
383 1.1 cgd /* Open the temporary insecure password database. */
384 1.22 ad if (!secureonly) {
385 1.42 christos opendb(&idb, _PATH_MP_DB, username, req_version,
386 1.42 christos flags, PERM_INSECURE);
387 1.22 ad clean |= FILE_INSECURE;
388 1.22 ad }
389 1.42 christos
390 1.22 ad
391 1.22 ad /* Open the temporary encrypted password database. */
392 1.42 christos opendb(&sdb, _PATH_SMP_DB, username, req_version, flags, PERM_SECURE);
393 1.22 ad clean |= FILE_SECURE;
394 1.1 cgd
395 1.1 cgd /*
396 1.1 cgd * Open file for old password file. Minor trickiness -- don't want to
397 1.1 cgd * chance the file already existing, since someone (stupidly) might
398 1.1 cgd * still be using this for permission checking. So, open it first and
399 1.5 mycroft * fdopen the resulting fd. The resulting file should be readable by
400 1.5 mycroft * everyone.
401 1.1 cgd */
402 1.1 cgd if (makeold) {
403 1.11 fair (void)snprintf(oldpwdfile, sizeof(oldpwdfile), "%s.orig",
404 1.19 ad pname);
405 1.19 ad if ((tfd = open(oldpwdfile, O_WRONLY | O_CREAT | O_EXCL,
406 1.19 ad PERM_INSECURE)) < 0)
407 1.52 christos mkpw_error("Cannot create `%s'", oldpwdfile);
408 1.22 ad clean |= FILE_ORIG;
409 1.5 mycroft if ((oldfp = fdopen(tfd, "w")) == NULL)
410 1.52 christos mkpw_error("Cannot fdopen `%s'", oldpwdfile);
411 1.22 ad }
412 1.22 ad
413 1.22 ad if (username != NULL) {
414 1.22 ad uid_dbflg = 0;
415 1.22 ad dbflg = 0;
416 1.22 ad
417 1.22 ad /*
418 1.22 ad * Determine if this is a new entry.
419 1.22 ad */
420 1.42 christos if (getdbent(&sdb, _PW_KEYBYNAME, username, &tpwd))
421 1.22 ad newuser = 1;
422 1.22 ad else {
423 1.22 ad newuser = 0;
424 1.22 ad olduid = tpwd->pw_uid;
425 1.22 ad }
426 1.22 ad
427 1.22 ad } else {
428 1.22 ad uid_dbflg = R_NOOVERWRITE;
429 1.22 ad dbflg = R_NOOVERWRITE;
430 1.1 cgd }
431 1.1 cgd
432 1.1 cgd /*
433 1.6 phil * If we see something go by that looks like YP, we save a special
434 1.6 phil * pointer record, which if YP is enabled in the C lib, will speed
435 1.6 phil * things up.
436 1.1 cgd */
437 1.19 ad for (lineno = 0; scan(fp, &pwd, &flags, &lineno);) {
438 1.9 thorpej /*
439 1.22 ad * Create original format password file entry.
440 1.9 thorpej */
441 1.11 fair if (makeold) {
442 1.5 mycroft (void)fprintf(oldfp, "%s:*:%d:%d:%s:%s:%s\n",
443 1.5 mycroft pwd.pw_name, pwd.pw_uid, pwd.pw_gid, pwd.pw_gecos,
444 1.5 mycroft pwd.pw_dir, pwd.pw_shell);
445 1.19 ad if (ferror(oldfp))
446 1.11 fair wr_error(oldpwdfile);
447 1.11 fair }
448 1.22 ad
449 1.22 ad if (username == NULL) {
450 1.22 ad /* Look like YP? */
451 1.22 ad if (pwd.pw_name[0] == '+' || pwd.pw_name[0] == '-')
452 1.22 ad hasyp++;
453 1.22 ad
454 1.22 ad /* Warn about potentially unsafe uid/gid overrides. */
455 1.22 ad if (pwd.pw_name[0] == '+') {
456 1.22 ad if ((flags & _PASSWORD_NOUID) == 0 &&
457 1.22 ad pwd.pw_uid == 0)
458 1.52 christos mkpw_warning("line %d: superuser "
459 1.52 christos "override in YP inclusion", lineno);
460 1.22 ad if ((flags & _PASSWORD_NOGID) == 0 &&
461 1.22 ad pwd.pw_gid == 0)
462 1.52 christos mkpw_warning("line %d: wheel override "
463 1.22 ad "in YP inclusion", lineno);
464 1.22 ad }
465 1.22 ad
466 1.22 ad /* Write the database entry out. */
467 1.22 ad if (!secureonly)
468 1.42 christos putdbents(&idb, &pwd, "*", flags, lineno, dbflg,
469 1.42 christos uid_dbflg);
470 1.22 ad continue;
471 1.22 ad } else if (strcmp(username, pwd.pw_name) != 0)
472 1.22 ad continue;
473 1.22 ad
474 1.22 ad if (found) {
475 1.52 christos mkpw_warning("user `%s' listed twice in password file",
476 1.22 ad username);
477 1.22 ad bailout();
478 1.22 ad }
479 1.22 ad
480 1.22 ad /*
481 1.22 ad * Ensure that the text file and database agree on
482 1.22 ad * which line the record is from.
483 1.22 ad */
484 1.42 christos rv = getdbent(&sdb, _PW_KEYBYNUM, &lineno, &tpwd);
485 1.22 ad if (newuser) {
486 1.22 ad if (rv == 0)
487 1.44 christos inconsistency();
488 1.48 enami } else if (rv == 1 || strcmp(username, tpwd->pw_name) != 0)
489 1.44 christos inconsistency();
490 1.40 lukem else if ((uid_t)olduid != pwd.pw_uid) {
491 1.22 ad /*
492 1.22 ad * If we're changing UID, remove the BYUID
493 1.22 ad * record for the old UID only if it has the
494 1.22 ad * same username.
495 1.22 ad */
496 1.42 christos if (!getdbent(&sdb, _PW_KEYBYUID, &olduid, &tpwd)) {
497 1.22 ad if (strcmp(username, tpwd->pw_name) == 0) {
498 1.22 ad if (!secureonly)
499 1.42 christos deldbent(&idb, _PW_KEYBYUID,
500 1.42 christos &olduid);
501 1.42 christos deldbent(&sdb, _PW_KEYBYUID, &olduid);
502 1.22 ad }
503 1.22 ad } else
504 1.44 christos inconsistency();
505 1.22 ad }
506 1.22 ad
507 1.22 ad /*
508 1.22 ad * If there's an existing BYUID record for the new UID and
509 1.22 ad * the username doesn't match then be sure not to overwrite
510 1.22 ad * it.
511 1.22 ad */
512 1.42 christos if (!getdbent(&sdb, _PW_KEYBYUID, &pwd.pw_uid, &tpwd))
513 1.22 ad if (strcmp(username, tpwd->pw_name) != 0)
514 1.22 ad uid_dbflg = R_NOOVERWRITE;
515 1.22 ad
516 1.22 ad /* Write the database entries out */
517 1.22 ad if (!secureonly)
518 1.42 christos putdbents(&idb, &pwd, "*", flags, lineno, dbflg,
519 1.42 christos uid_dbflg);
520 1.42 christos putdbents(&sdb, &pwd, pwd.pw_passwd, flags, lineno, dbflg,
521 1.42 christos uid_dbflg);
522 1.22 ad
523 1.22 ad found = 1;
524 1.22 ad if (!makeold)
525 1.22 ad break;
526 1.22 ad }
527 1.22 ad
528 1.22 ad if (!secureonly) {
529 1.22 ad /* Store YP token if needed. */
530 1.22 ad if (hasyp)
531 1.42 christos putyptoken(&idb);
532 1.22 ad
533 1.22 ad /* Close the insecure database. */
534 1.42 christos closedb(&idb);
535 1.22 ad }
536 1.22 ad
537 1.22 ad /*
538 1.22 ad * If rebuilding the databases, we re-parse the text file and write
539 1.22 ad * the secure entries out in a separate pass.
540 1.22 ad */
541 1.22 ad if (username == NULL) {
542 1.22 ad rewind(fp);
543 1.22 ad for (lineno = 0; scan(fp, &pwd, &flags, &lineno);)
544 1.42 christos putdbents(&sdb, &pwd, pwd.pw_passwd, flags,
545 1.42 christos lineno, dbflg, uid_dbflg);
546 1.22 ad
547 1.22 ad /* Store YP token if needed. */
548 1.22 ad if (hasyp)
549 1.42 christos putyptoken(&sdb);
550 1.22 ad } else if (!found) {
551 1.52 christos mkpw_warning("user `%s' not found in password file", username);
552 1.22 ad bailout();
553 1.5 mycroft }
554 1.6 phil
555 1.22 ad /* Close the secure database. */
556 1.42 christos closedb(&sdb);
557 1.22 ad
558 1.22 ad /* Install as the real password files. */
559 1.22 ad if (!secureonly)
560 1.42 christos install(idb.dbname, idb.fname);
561 1.42 christos install(sdb.dbname, sdb.fname);
562 1.6 phil
563 1.22 ad /* Install the V7 password file. */
564 1.5 mycroft if (makeold) {
565 1.19 ad if (fflush(oldfp) == EOF)
566 1.11 fair wr_error(oldpwdfile);
567 1.19 ad if (fclose(oldfp) == EOF)
568 1.11 fair wr_error(oldpwdfile);
569 1.22 ad install(oldpwdfile, _PATH_PASSWD);
570 1.5 mycroft }
571 1.5 mycroft
572 1.1 cgd /* Set master.passwd permissions, in case caller forgot. */
573 1.1 cgd (void)fchmod(fileno(fp), S_IRUSR|S_IWUSR);
574 1.19 ad if (fclose(fp) == EOF)
575 1.11 fair wr_error(pname);
576 1.1 cgd
577 1.19 ad /*
578 1.22 ad * Move the temporary master password file LAST -- chpass(1),
579 1.33 wiz * passwd(1), vipw(8) and friends all use its existence to block
580 1.22 ad * other incarnations of themselves. The rename means that
581 1.22 ad * everything is unlocked, as the original file can no longer be
582 1.22 ad * accessed.
583 1.19 ad */
584 1.19 ad install(pname, _PATH_MASTERPASSWD);
585 1.19 ad exit(EXIT_SUCCESS);
586 1.19 ad /* NOTREACHED */
587 1.1 cgd }
588 1.1 cgd
589 1.5 mycroft int
590 1.19 ad scan(FILE *fp, struct passwd *pw, int *flags, int *lineno)
591 1.1 cgd {
592 1.1 cgd static char line[LINE_MAX];
593 1.1 cgd char *p;
594 1.17 mycroft int oflags;
595 1.1 cgd
596 1.44 christos if (fgets(line, (int)sizeof(line), fp) == NULL)
597 1.5 mycroft return (0);
598 1.19 ad (*lineno)++;
599 1.19 ad
600 1.1 cgd /*
601 1.1 cgd * ``... if I swallow anything evil, put your fingers down my
602 1.1 cgd * throat...''
603 1.1 cgd * -- The Who
604 1.1 cgd */
605 1.19 ad if ((p = strchr(line, '\n')) == NULL) {
606 1.19 ad errno = EFTYPE; /* XXX */
607 1.52 christos mkpw_error("%s, %d: line too long", pname, *lineno);
608 1.1 cgd }
609 1.1 cgd *p = '\0';
610 1.44 christos if (strcmp(line, "+") == 0) {
611 1.44 christos /* pw_scan() can't handle "+" */
612 1.44 christos (void)strcpy(line, "+:::::::::");
613 1.44 christos }
614 1.17 mycroft oflags = 0;
615 1.17 mycroft if (!pw_scan(line, pw, &oflags)) {
616 1.19 ad errno = EFTYPE; /* XXX */
617 1.52 christos mkpw_error("%s, %d: Syntax mkpw_error", pname, *lineno);
618 1.1 cgd }
619 1.17 mycroft *flags = oflags;
620 1.5 mycroft
621 1.5 mycroft return (1);
622 1.1 cgd }
623 1.1 cgd
624 1.5 mycroft void
625 1.19 ad install(const char *from, const char *to)
626 1.1 cgd {
627 1.1 cgd char buf[MAXPATHLEN];
628 1.1 cgd
629 1.44 christos (void)snprintf(buf, sizeof(buf), "%s%s", prefix, to);
630 1.52 christos if (rename(from, buf))
631 1.52 christos mkpw_error("Cannot rename `%s' to `%s'", from, buf);
632 1.1 cgd }
633 1.1 cgd
634 1.5 mycroft void
635 1.22 ad rm(const char *victim)
636 1.22 ad {
637 1.22 ad
638 1.22 ad if (unlink(victim) < 0)
639 1.22 ad warn("unlink(%s)", victim);
640 1.22 ad }
641 1.22 ad
642 1.22 ad void
643 1.22 ad cp(const char *from, const char *to, mode_t mode)
644 1.22 ad {
645 1.22 ad static char buf[MAXBSIZE];
646 1.52 christos int from_fd, to_fd;
647 1.44 christos ssize_t rcount, wcount;
648 1.22 ad
649 1.22 ad if ((from_fd = open(from, O_RDONLY, 0)) < 0)
650 1.52 christos mkpw_error("Cannot open `%s'", from);
651 1.53 wiz if ((to_fd = open(to, O_WRONLY | O_CREAT | O_EXCL, mode)) < 0) {
652 1.53 wiz (void)close(from_fd);
653 1.52 christos mkpw_error("Cannot open `%s'", to);
654 1.53 wiz }
655 1.22 ad while ((rcount = read(from_fd, buf, MAXBSIZE)) > 0) {
656 1.44 christos wcount = write(to_fd, buf, (size_t)rcount);
657 1.53 wiz if (rcount != wcount || wcount == -1) {
658 1.53 wiz (void)close(from_fd);
659 1.53 wiz (void)close(to_fd);
660 1.50 joerg goto on_error;
661 1.53 wiz }
662 1.22 ad }
663 1.22 ad
664 1.50 joerg close(from_fd);
665 1.50 joerg if (close(to_fd))
666 1.51 snj goto on_error;
667 1.53 wiz if (rcount < 0)
668 1.53 wiz goto on_error;
669 1.50 joerg return;
670 1.50 joerg
671 1.50 joerg on_error:
672 1.52 christos mkpw_error("Cannot copy `%s' to `%s'", from, to);
673 1.22 ad }
674 1.22 ad
675 1.22 ad void
676 1.19 ad wr_error(const char *str)
677 1.11 fair {
678 1.52 christos mkpw_error("Cannot write `%s'", str);
679 1.52 christos }
680 1.19 ad
681 1.52 christos void
682 1.52 christos mkpw_error(const char *fmt, ...)
683 1.52 christos {
684 1.52 christos va_list ap;
685 1.52 christos va_start(ap, fmt);
686 1.52 christos if (logsyslog) {
687 1.52 christos int sverrno = errno;
688 1.52 christos char efmt[BUFSIZ];
689 1.52 christos snprintf(efmt, sizeof(efmt), "%s (%%m)", fmt);
690 1.52 christos errno = sverrno;
691 1.52 christos vsyslog(LOG_ERR, efmt, ap);
692 1.52 christos } else
693 1.52 christos vwarn(fmt, ap);
694 1.52 christos va_end(ap);
695 1.52 christos bailout();
696 1.11 fair }
697 1.11 fair
698 1.11 fair void
699 1.52 christos mkpw_warning(const char *fmt, ...)
700 1.1 cgd {
701 1.52 christos va_list ap;
702 1.52 christos va_start(ap, fmt);
703 1.52 christos if (logsyslog)
704 1.52 christos vsyslog(LOG_WARNING, fmt, ap);
705 1.52 christos else
706 1.52 christos vwarnx(fmt, ap);
707 1.52 christos va_end(ap);
708 1.1 cgd }
709 1.1 cgd
710 1.5 mycroft void
711 1.44 christos inconsistency(void)
712 1.11 fair {
713 1.19 ad
714 1.52 christos mkpw_warning("text files and databases are inconsistent");
715 1.52 christos mkpw_warning("re-build the databases without -u");
716 1.22 ad bailout();
717 1.11 fair }
718 1.11 fair
719 1.11 fair void
720 1.22 ad bailout(void)
721 1.1 cgd {
722 1.19 ad
723 1.22 ad if ((clean & FILE_ORIG) != 0)
724 1.11 fair rm(oldpwdfile);
725 1.22 ad if ((clean & FILE_SECURE) != 0)
726 1.42 christos rm(sdb.dbname);
727 1.22 ad if ((clean & FILE_INSECURE) != 0)
728 1.42 christos rm(idb.dbname);
729 1.22 ad
730 1.22 ad exit(EXIT_FAILURE);
731 1.1 cgd }
732 1.1 cgd
733 1.41 christos uint32_t
734 1.41 christos getversion(const char *fname)
735 1.35 christos {
736 1.35 christos DBT data, key;
737 1.36 jmmv int ret;
738 1.41 christos uint32_t version = 0;
739 1.42 christos DB *db;
740 1.35 christos
741 1.42 christos db = dbopen(fname, O_RDONLY, PERM_INSECURE, DB_HASH, NULL);
742 1.42 christos if (db == NULL) {
743 1.45 christos /* If we are building on a separate root, assume version 1 */
744 1.57 christos if ((errno == EACCES && prefix[0]) || errno == ENOENT)
745 1.45 christos return 1;
746 1.52 christos mkpw_warning("Cannot open database `%s'", fname);
747 1.41 christos bailout();
748 1.41 christos }
749 1.35 christos key.data = __UNCONST("VERSION");
750 1.35 christos key.size = strlen((const char *)key.data) + 1;
751 1.35 christos
752 1.42 christos switch (ret = (*db->get)(db, &key, &data, 0)) {
753 1.41 christos case -1: /* Error */
754 1.52 christos mkpw_warning("Cannot get VERSION record from database `%s'",
755 1.52 christos fname);
756 1.41 christos goto out;
757 1.41 christos case 0:
758 1.41 christos if (data.size != sizeof(version)) {
759 1.52 christos mkpw_warning("Bad VERSION record in database `%s'", fname);
760 1.41 christos goto out;
761 1.41 christos }
762 1.44 christos (void)memcpy(&version, data.data, sizeof(version));
763 1.41 christos /*FALLTHROUGH*/
764 1.41 christos case 1:
765 1.42 christos if (ret == 1)
766 1.52 christos mkpw_warning("Database `%s' has no version info",
767 1.52 christos fname);
768 1.42 christos (*db->close)(db);
769 1.41 christos return version;
770 1.41 christos default:
771 1.52 christos mkpw_warning("internal mkpw_error db->get returns %d", ret);
772 1.41 christos goto out;
773 1.36 jmmv }
774 1.41 christos out:
775 1.42 christos (*db->close)(db);
776 1.41 christos bailout();
777 1.44 christos /*NOTREACHED*/
778 1.36 jmmv }
779 1.36 jmmv
780 1.36 jmmv void
781 1.42 christos setversion(struct pwddb *db)
782 1.36 jmmv {
783 1.36 jmmv DBT data, key;
784 1.36 jmmv key.data = __UNCONST("VERSION");
785 1.36 jmmv key.size = strlen((const char *)key.data) + 1;
786 1.36 jmmv
787 1.42 christos data.data = &db->wversion;
788 1.35 christos data.size = sizeof(uint32_t);
789 1.35 christos
790 1.43 christos if ((*db->db->put)(db->db, &key, &data, 0) != 0) {
791 1.52 christos mkpw_warning("Can't write VERSION record to `%s'", db->dbname);
792 1.42 christos bailout();
793 1.42 christos }
794 1.35 christos }
795 1.35 christos
796 1.41 christos
797 1.19 ad /*
798 1.19 ad * Write entries to a database for a single user.
799 1.19 ad *
800 1.19 ad * The databases actually contain three copies of the original data. Each
801 1.19 ad * password file entry is converted into a rough approximation of a ``struct
802 1.19 ad * passwd'', with the strings placed inline. This object is then stored as
803 1.19 ad * the data for three separate keys. The first key * is the pw_name field
804 1.19 ad * prepended by the _PW_KEYBYNAME character. The second key is the pw_uid
805 1.19 ad * field prepended by the _PW_KEYBYUID character. The third key is the line
806 1.19 ad * number in the original file prepended by the _PW_KEYBYNUM character.
807 1.19 ad * (The special characters are prepended to ensure that the keys do not
808 1.19 ad * collide.)
809 1.19 ad */
810 1.19 ad #define COMPACT(e) for (t = e; (*p++ = *t++) != '\0';)
811 1.19 ad
812 1.19 ad void
813 1.42 christos putdbents(struct pwddb *db, struct passwd *pw, const char *passwd, int flags,
814 1.44 christos int lineno, u_int dbflg, u_int uid_dbflg)
815 1.19 ad {
816 1.19 ad struct passwd pwd;
817 1.19 ad char buf[MAX(MAXPATHLEN, LINE_MAX * 2)], tbuf[1024], *p;
818 1.19 ad DBT data, key;
819 1.19 ad const char *t;
820 1.19 ad u_int32_t x;
821 1.44 christos size_t len;
822 1.19 ad
823 1.44 christos (void)memcpy(&pwd, pw, sizeof(pwd));
824 1.19 ad data.data = (u_char *)buf;
825 1.19 ad key.data = (u_char *)tbuf;
826 1.19 ad
827 1.19 ad if (lorder != BYTE_ORDER) {
828 1.35 christos pwd.pw_uid = SWAP(pwd.pw_uid);
829 1.35 christos pwd.pw_gid = SWAP(pwd.pw_gid);
830 1.19 ad }
831 1.19 ad
832 1.41 christos #define WRITEPWTIMEVAR(pwvar) \
833 1.41 christos do { \
834 1.42 christos if (db->wversion == 0 && \
835 1.44 christos /*CONSTCOND*/sizeof(pwvar) == sizeof(uint64_t)) { \
836 1.41 christos uint32_t tmp = (uint32_t)pwvar; \
837 1.41 christos if (lorder != BYTE_ORDER) \
838 1.41 christos tmp = SWAP(tmp); \
839 1.44 christos (void)memmove(p, &tmp, sizeof(tmp)); \
840 1.41 christos p += sizeof(tmp); \
841 1.42 christos } else if (db->wversion == 1 && \
842 1.44 christos /*CONSTCOND*/sizeof(pwvar) == sizeof(uint32_t)) { \
843 1.41 christos uint64_t tmp = pwvar; \
844 1.41 christos if (lorder != BYTE_ORDER) \
845 1.41 christos tmp = SWAP(tmp); \
846 1.44 christos (void)memmove(p, &tmp, sizeof(tmp)); \
847 1.41 christos p += sizeof(tmp); \
848 1.41 christos } else { \
849 1.41 christos if (lorder != BYTE_ORDER) \
850 1.41 christos pwvar = SWAP(pwvar); \
851 1.44 christos (void)memmove(p, &pwvar, sizeof(pwvar)); \
852 1.41 christos p += sizeof(pwvar); \
853 1.41 christos } \
854 1.41 christos } while (/*CONSTCOND*/0)
855 1.41 christos
856 1.19 ad /* Create insecure data. */
857 1.19 ad p = buf;
858 1.19 ad COMPACT(pwd.pw_name);
859 1.19 ad COMPACT(passwd);
860 1.44 christos (void)memmove(p, &pwd.pw_uid, sizeof(pwd.pw_uid));
861 1.19 ad p += sizeof(pwd.pw_uid);
862 1.44 christos (void)memmove(p, &pwd.pw_gid, sizeof(pwd.pw_gid));
863 1.19 ad p += sizeof(pwd.pw_gid);
864 1.41 christos WRITEPWTIMEVAR(pwd.pw_change);
865 1.19 ad COMPACT(pwd.pw_class);
866 1.19 ad COMPACT(pwd.pw_gecos);
867 1.19 ad COMPACT(pwd.pw_dir);
868 1.19 ad COMPACT(pwd.pw_shell);
869 1.41 christos WRITEPWTIMEVAR(pwd.pw_expire);
870 1.19 ad x = flags;
871 1.19 ad if (lorder != BYTE_ORDER)
872 1.35 christos x = SWAP(x);
873 1.44 christos (void)memmove(p, &x, sizeof(x));
874 1.48 enami p += sizeof(x);
875 1.19 ad data.size = p - buf;
876 1.19 ad
877 1.19 ad /* Store insecure by name. */
878 1.19 ad tbuf[0] = _PW_KEYBYNAME;
879 1.19 ad len = strlen(pwd.pw_name);
880 1.44 christos (void)memmove(tbuf + 1, pwd.pw_name, len);
881 1.19 ad key.size = len + 1;
882 1.42 christos if ((*db->db->put)(db->db, &key, &data, dbflg) == -1)
883 1.42 christos wr_error(db->dbname);
884 1.22 ad
885 1.19 ad /* Store insecure by number. */
886 1.19 ad tbuf[0] = _PW_KEYBYNUM;
887 1.19 ad x = lineno;
888 1.19 ad if (lorder != BYTE_ORDER)
889 1.35 christos x = SWAP(x);
890 1.44 christos (void)memmove(tbuf + 1, &x, sizeof(x));
891 1.19 ad key.size = sizeof(x) + 1;
892 1.42 christos if ((*db->db->put)(db->db, &key, &data, dbflg) == -1)
893 1.42 christos wr_error(db->dbname);
894 1.19 ad
895 1.19 ad /* Store insecure by uid. */
896 1.19 ad tbuf[0] = _PW_KEYBYUID;
897 1.44 christos (void)memmove(tbuf + 1, &pwd.pw_uid, sizeof(pwd.pw_uid));
898 1.19 ad key.size = sizeof(pwd.pw_uid) + 1;
899 1.42 christos if ((*db->db->put)(db->db, &key, &data, uid_dbflg) == -1)
900 1.42 christos wr_error(db->dbname);
901 1.22 ad }
902 1.22 ad
903 1.44 christos void
904 1.42 christos deldbent(struct pwddb *db, int type, void *keyp)
905 1.22 ad {
906 1.22 ad char tbuf[1024];
907 1.22 ad DBT key;
908 1.22 ad u_int32_t x;
909 1.44 christos size_t len;
910 1.22 ad
911 1.22 ad key.data = (u_char *)tbuf;
912 1.22 ad
913 1.22 ad switch (tbuf[0] = type) {
914 1.22 ad case _PW_KEYBYNAME:
915 1.22 ad len = strlen((char *)keyp);
916 1.44 christos (void)memcpy(tbuf + 1, keyp, len);
917 1.22 ad key.size = len + 1;
918 1.22 ad break;
919 1.22 ad
920 1.22 ad case _PW_KEYBYNUM:
921 1.22 ad case _PW_KEYBYUID:
922 1.22 ad x = *(int *)keyp;
923 1.22 ad if (lorder != BYTE_ORDER)
924 1.35 christos x = SWAP(x);
925 1.44 christos (void)memmove(tbuf + 1, &x, sizeof(x));
926 1.22 ad key.size = sizeof(x) + 1;
927 1.22 ad break;
928 1.22 ad }
929 1.22 ad
930 1.44 christos if ((*db->db->del)(db->db, &key, 0) == -1)
931 1.42 christos wr_error(db->dbname);
932 1.22 ad }
933 1.22 ad
934 1.22 ad int
935 1.42 christos getdbent(struct pwddb *db, int type, void *keyp, struct passwd **tpwd)
936 1.22 ad {
937 1.22 ad static char buf[MAX(MAXPATHLEN, LINE_MAX * 2)];
938 1.22 ad static struct passwd pwd;
939 1.22 ad char tbuf[1024], *p;
940 1.22 ad DBT key, data;
941 1.22 ad u_int32_t x;
942 1.44 christos size_t len;
943 1.44 christos int rv;
944 1.22 ad
945 1.22 ad data.data = (u_char *)buf;
946 1.22 ad data.size = sizeof(buf);
947 1.22 ad key.data = (u_char *)tbuf;
948 1.22 ad
949 1.22 ad switch (tbuf[0] = type) {
950 1.22 ad case _PW_KEYBYNAME:
951 1.22 ad len = strlen((char *)keyp);
952 1.44 christos (void)memcpy(tbuf + 1, keyp, len);
953 1.22 ad key.size = len + 1;
954 1.22 ad break;
955 1.22 ad
956 1.22 ad case _PW_KEYBYNUM:
957 1.22 ad case _PW_KEYBYUID:
958 1.22 ad x = *(int *)keyp;
959 1.22 ad if (lorder != BYTE_ORDER)
960 1.35 christos x = SWAP(x);
961 1.44 christos (void)memmove(tbuf + 1, &x, sizeof(x));
962 1.22 ad key.size = sizeof(x) + 1;
963 1.22 ad break;
964 1.22 ad }
965 1.22 ad
966 1.42 christos if ((rv = (*db->db->get)(db->db, &key, &data, 0)) == 1)
967 1.22 ad return (rv);
968 1.22 ad if (rv == -1)
969 1.52 christos mkpw_error("Error getting record from `%s'", db->dbname);
970 1.22 ad
971 1.22 ad p = (char *)data.data;
972 1.22 ad
973 1.22 ad pwd.pw_name = p;
974 1.22 ad while (*p++ != '\0')
975 1.41 christos continue;
976 1.22 ad pwd.pw_passwd = p;
977 1.22 ad while (*p++ != '\0')
978 1.41 christos continue;
979 1.22 ad
980 1.44 christos (void)memcpy(&pwd.pw_uid, p, sizeof(pwd.pw_uid));
981 1.22 ad p += sizeof(pwd.pw_uid);
982 1.44 christos (void)memcpy(&pwd.pw_gid, p, sizeof(pwd.pw_gid));
983 1.22 ad p += sizeof(pwd.pw_gid);
984 1.41 christos
985 1.41 christos #define READPWTIMEVAR(pwvar) \
986 1.41 christos do { \
987 1.42 christos if (db->rversion == 0 && \
988 1.44 christos /*CONSTCOND*/sizeof(pwvar) == sizeof(uint64_t)) { \
989 1.41 christos uint32_t tmp; \
990 1.44 christos (void)memcpy(&tmp, p, sizeof(tmp)); \
991 1.41 christos p += sizeof(tmp); \
992 1.41 christos if (lorder != BYTE_ORDER) \
993 1.41 christos pwvar = SWAP(tmp); \
994 1.41 christos else \
995 1.41 christos pwvar = tmp; \
996 1.42 christos } else if (db->rversion == 1 && \
997 1.44 christos /*CONSTCOND*/sizeof(pwvar) == sizeof(uint32_t)) { \
998 1.41 christos uint64_t tmp; \
999 1.44 christos (void)memcpy(&tmp, p, sizeof(tmp)); \
1000 1.41 christos p += sizeof(tmp); \
1001 1.41 christos if (lorder != BYTE_ORDER) \
1002 1.41 christos pwvar = (uint32_t)SWAP(tmp); \
1003 1.41 christos else \
1004 1.41 christos pwvar = (uint32_t)tmp; \
1005 1.41 christos } else { \
1006 1.44 christos (void)memcpy(&pwvar, p, sizeof(pwvar)); \
1007 1.41 christos p += sizeof(pwvar); \
1008 1.41 christos if (lorder != BYTE_ORDER) \
1009 1.41 christos pwvar = SWAP(pwvar); \
1010 1.41 christos } \
1011 1.41 christos } while (/*CONSTCOND*/0)
1012 1.41 christos
1013 1.41 christos READPWTIMEVAR(pwd.pw_change);
1014 1.22 ad
1015 1.22 ad pwd.pw_class = p;
1016 1.22 ad while (*p++ != '\0')
1017 1.41 christos continue;
1018 1.22 ad pwd.pw_gecos = p;
1019 1.22 ad while (*p++ != '\0')
1020 1.41 christos continue;
1021 1.22 ad pwd.pw_dir = p;
1022 1.22 ad while (*p++ != '\0')
1023 1.41 christos continue;
1024 1.22 ad pwd.pw_shell = p;
1025 1.22 ad while (*p++ != '\0')
1026 1.41 christos continue;
1027 1.22 ad
1028 1.41 christos READPWTIMEVAR(pwd.pw_expire);
1029 1.22 ad
1030 1.22 ad if (lorder != BYTE_ORDER) {
1031 1.35 christos pwd.pw_uid = SWAP(pwd.pw_uid);
1032 1.35 christos pwd.pw_gid = SWAP(pwd.pw_gid);
1033 1.22 ad }
1034 1.22 ad
1035 1.22 ad *tpwd = &pwd;
1036 1.22 ad return (0);
1037 1.19 ad }
1038 1.19 ad
1039 1.19 ad void
1040 1.42 christos putyptoken(struct pwddb *db)
1041 1.19 ad {
1042 1.19 ad DBT data, key;
1043 1.19 ad
1044 1.40 lukem key.data = __UNCONST(__yp_token);
1045 1.19 ad key.size = strlen(__yp_token);
1046 1.55 plunky data.data = NULL;
1047 1.19 ad data.size = 0;
1048 1.19 ad
1049 1.42 christos if ((*db->db->put)(db->db, &key, &data, R_NOOVERWRITE) == -1)
1050 1.42 christos wr_error(db->dbname);
1051 1.19 ad }
1052 1.19 ad
1053 1.5 mycroft void
1054 1.19 ad usage(void)
1055 1.1 cgd {
1056 1.5 mycroft
1057 1.22 ad (void)fprintf(stderr,
1058 1.52 christos "Usage: %s [-BLlpsvw] [-c cachesize] [-d directory] [-u user] "
1059 1.41 christos "[-V version] file\n",
1060 1.41 christos getprogname());
1061 1.19 ad exit(EXIT_FAILURE);
1062 1.1 cgd }
1063