]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/rpc.yppasswdd/pw_copy.c
This commit was generated by cvs2svn to compensate for changes in r90446,
[FreeBSD/FreeBSD.git] / usr.sbin / rpc.yppasswdd / pw_copy.c
1 /*-
2  * Copyright (c) 1990, 1993, 1994
3  *      The Regents of the University of California.  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  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #ifndef lint
35 #if 0
36 static char sccsid[] = "@(#)pw_copy.c   8.4 (Berkeley) 4/2/94";
37 #endif
38 static const char rcsid[] =
39   "$FreeBSD$";
40 #endif /* not lint */
41
42 /*
43  * This module is used to copy the master password file, replacing a single
44  * record, by chpass(1) and passwd(1).
45  */
46
47 #include <err.h>
48 #include <pwd.h>
49 #include <stdio.h>
50 #include <string.h>
51
52 #include "yppasswdd_extern.h"
53
54 int
55 pw_copy(int ffd, int tfd, struct passwd *pw)
56 {
57         FILE *from, *to;
58         int done;
59         char *p, buf[8192];
60         char uidstr[20];
61         char gidstr[20];
62         char chgstr[20];
63         char expstr[20];
64
65         snprintf(uidstr, sizeof(uidstr), "%d", pw->pw_uid);
66         snprintf(gidstr, sizeof(gidstr), "%d", pw->pw_gid);
67         snprintf(chgstr, sizeof(chgstr), "%ld", pw->pw_change);
68         snprintf(expstr, sizeof(expstr), "%ld", pw->pw_expire);
69
70         if (!(from = fdopen(ffd, "r"))) {
71                 pw_error(passfile, 1, 1);
72                 return(-1);
73         }
74         if (!(to = fdopen(tfd, "w"))) {
75                 pw_error(tempname, 1, 1);
76                 return(-1);
77         }
78         for (done = 0; fgets(buf, sizeof(buf), from);) {
79                 if (!strchr(buf, '\n')) {
80                         yp_error("%s: line too long", passfile);
81                         pw_error(NULL, 0, 1);
82                         goto err;
83                 }
84                 if (done) {
85                         (void)fprintf(to, "%s", buf);
86                         if (ferror(to))
87                                 goto err;
88                         continue;
89                 }
90                 /*
91                  * Just copy comments and blank lines
92                  */
93                 p = buf + strspn(buf, " \t\n");
94                 if (*p == '\0' || *p == '#') {
95                         (void)fprintf(to, "%s", buf);
96                         if (ferror(to))
97                                 goto err;
98                         continue;
99                 }
100                 if (!(p = strchr(buf, ':'))) {
101                         yp_error("%s: corrupted entry", passfile);
102                         pw_error(NULL, 0, 1);
103                         goto err;
104                 }
105                 *p = '\0';
106                 if (strcmp(buf, pw->pw_name)) {
107                         *p = ':';
108                         (void)fprintf(to, "%s", buf);
109                         if (ferror(to))
110                                 goto err;
111                         continue;
112                 }
113                 (void)fprintf(to, "%s:%s:%s:%s:%s:%s:%s:%s:%s:%s\n",
114                     pw->pw_name, pw->pw_passwd,
115                     pw->pw_fields & _PWF_UID ? uidstr : "",
116                     pw->pw_fields & _PWF_GID ? gidstr : "",
117                     pw->pw_class,
118                     pw->pw_fields & _PWF_CHANGE ? chgstr : "",
119                     pw->pw_fields & _PWF_EXPIRE ? expstr : "",
120                     pw->pw_gecos, pw->pw_dir, pw->pw_shell);
121                 done = 1;
122                 if (ferror(to))
123                         goto err;
124         }
125         if (!done) {
126                 if (allow_additions) {
127                         (void)fprintf(to, "%s:%s:%s:%s:%s:%s:%s:%s:%s:%s\n",
128                         pw->pw_name, pw->pw_passwd,
129                         pw->pw_fields & _PWF_UID ? uidstr : "",
130                         pw->pw_fields & _PWF_GID ? gidstr : "",
131                         pw->pw_class,
132                         pw->pw_fields & _PWF_CHANGE ? chgstr : "",
133                         pw->pw_fields & _PWF_EXPIRE ? expstr : "",
134                         pw->pw_gecos, pw->pw_dir, pw->pw_shell);
135                 } else {
136                         yp_error("user \"%s\" not found in %s -- \
137 NIS maps and password file possibly out of sync", pw->pw_name, passfile);
138                         goto err;
139                 }
140         }
141         if (ferror(to)) {
142 err:            pw_error(NULL, 1, 1);
143                 (void)fclose(to);
144                 (void)fclose(from);
145                 return(-1);
146         }
147         (void)fclose(to);
148         (void)fclose(from);
149         return(0);
150 }