pw_yp.c revision 1.6 1 1.6 thorpej /* $NetBSD: pw_yp.c,v 1.6 1996/08/09 09:22:18 thorpej Exp $ */
2 1.5 glass
3 1.1 brezak /*
4 1.1 brezak * Copyright (c) 1988 The Regents of the University of California.
5 1.1 brezak * All rights reserved.
6 1.1 brezak *
7 1.1 brezak * Redistribution and use in source and binary forms, with or without
8 1.1 brezak * modification, are permitted provided that the following conditions
9 1.1 brezak * are met:
10 1.1 brezak * 1. Redistributions of source code must retain the above copyright
11 1.1 brezak * notice, this list of conditions and the following disclaimer.
12 1.1 brezak * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 brezak * notice, this list of conditions and the following disclaimer in the
14 1.1 brezak * documentation and/or other materials provided with the distribution.
15 1.1 brezak * 3. All advertising materials mentioning features or use of this software
16 1.1 brezak * must display the following acknowledgement:
17 1.1 brezak * This product includes software developed by the University of
18 1.1 brezak * California, Berkeley and its contributors.
19 1.1 brezak * 4. Neither the name of the University nor the names of its contributors
20 1.1 brezak * may be used to endorse or promote products derived from this software
21 1.1 brezak * without specific prior written permission.
22 1.1 brezak *
23 1.1 brezak * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 brezak * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 brezak * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 brezak * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 brezak * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 brezak * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 brezak * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 brezak * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 brezak * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 brezak * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 brezak * SUCH DAMAGE.
34 1.1 brezak */
35 1.1 brezak #ifndef lint
36 1.5 glass #if 0
37 1.5 glass static char sccsid[] = "@(#)pw_yp.c 1.0 2/2/93";
38 1.5 glass #else
39 1.6 thorpej static char rcsid[] = "$NetBSD: pw_yp.c,v 1.6 1996/08/09 09:22:18 thorpej Exp $";
40 1.5 glass #endif
41 1.1 brezak #endif /* not lint */
42 1.1 brezak
43 1.1 brezak #ifdef YP
44 1.1 brezak
45 1.1 brezak #include <stdio.h>
46 1.1 brezak #include <string.h>
47 1.1 brezak #include <netdb.h>
48 1.1 brezak #include <time.h>
49 1.1 brezak #include <pwd.h>
50 1.1 brezak #include <errno.h>
51 1.1 brezak #include <rpc/rpc.h>
52 1.1 brezak #include <rpcsvc/yp_prot.h>
53 1.1 brezak #include <rpcsvc/ypclnt.h>
54 1.1 brezak #define passwd yp_passwd_rec
55 1.1 brezak #include <rpcsvc/yppasswd.h>
56 1.1 brezak #undef passwd
57 1.3 deraadt
58 1.1 brezak static char *domain;
59 1.1 brezak
60 1.1 brezak pw_yp(pw, uid)
61 1.3 deraadt struct passwd *pw;
62 1.3 deraadt uid_t uid;
63 1.1 brezak {
64 1.3 deraadt char *master;
65 1.3 deraadt char *pp;
66 1.3 deraadt int r, rpcport, status;
67 1.3 deraadt struct yppasswd yppasswd;
68 1.1 brezak struct timeval tv;
69 1.1 brezak CLIENT *client;
70 1.3 deraadt extern char *getpass();
71 1.3 deraadt
72 1.3 deraadt /*
73 1.3 deraadt * Get local domain
74 1.3 deraadt */
75 1.6 thorpej if (!domain && (r = yp_get_default_domain(&domain)))
76 1.6 thorpej errx(1, "can't get local YP domain. Reason: %s",
77 1.6 thorpej yperr_string(r));
78 1.3 deraadt
79 1.3 deraadt /*
80 1.3 deraadt * Find the host for the passwd map; it should be running
81 1.3 deraadt * the daemon.
82 1.3 deraadt */
83 1.3 deraadt if ((r = yp_master(domain, "passwd.byname", &master)) != 0) {
84 1.6 thorpej warnx("can't find the master YP server. Reason: %s",
85 1.6 thorpej yperr_string(r));
86 1.6 thorpej return (1);
87 1.3 deraadt }
88 1.3 deraadt
89 1.3 deraadt /*
90 1.3 deraadt * Ask the portmapper for the port of the daemon.
91 1.3 deraadt */
92 1.3 deraadt if ((rpcport = getrpcport(master, YPPASSWDPROG, YPPASSWDPROC_UPDATE,
93 1.3 deraadt IPPROTO_UDP)) == 0) {
94 1.6 thorpej warnx("master YP server not running yppasswd daemon.\n\t%s\n",
95 1.6 thorpej "Can't change password.");
96 1.6 thorpej return (1);
97 1.3 deraadt }
98 1.3 deraadt
99 1.3 deraadt /*
100 1.3 deraadt * Be sure the port is priviledged
101 1.3 deraadt */
102 1.3 deraadt if (rpcport >= IPPORT_RESERVED) {
103 1.6 thorpej warnx("yppasswd daemon is on an invalid port.");
104 1.6 thorpej return (1);
105 1.3 deraadt }
106 1.3 deraadt
107 1.3 deraadt /* prompt for old password */
108 1.3 deraadt bzero(&yppasswd, sizeof yppasswd);
109 1.3 deraadt yppasswd.oldpass = "none";
110 1.4 deraadt yppasswd.oldpass = getpass("Old password:");
111 1.3 deraadt if (!yppasswd.oldpass) {
112 1.6 thorpej warnx("Cancelled.");
113 1.6 thorpej return (1);
114 1.3 deraadt }
115 1.6 thorpej
116 1.3 deraadt /* tell rpc.yppasswdd */
117 1.3 deraadt yppasswd.newpw.pw_name = pw->pw_name;
118 1.3 deraadt yppasswd.newpw.pw_passwd= pw->pw_passwd;
119 1.3 deraadt yppasswd.newpw.pw_uid = pw->pw_uid;
120 1.3 deraadt yppasswd.newpw.pw_gid = pw->pw_gid;
121 1.3 deraadt yppasswd.newpw.pw_gecos = pw->pw_gecos;
122 1.3 deraadt yppasswd.newpw.pw_dir = pw->pw_dir;
123 1.3 deraadt yppasswd.newpw.pw_shell = pw->pw_shell;
124 1.3 deraadt
125 1.3 deraadt client = clnt_create(master, YPPASSWDPROG, YPPASSWDVERS, "udp");
126 1.3 deraadt if (client==NULL) {
127 1.6 thorpej warnx("cannot contact yppasswdd on %s: Reason: %s",
128 1.3 deraadt master, yperr_string(YPERR_YPBIND));
129 1.6 thorpej return (1);
130 1.3 deraadt }
131 1.3 deraadt client->cl_auth = authunix_create_default();
132 1.3 deraadt tv.tv_sec = 5;
133 1.3 deraadt tv.tv_usec = 0;
134 1.3 deraadt r = clnt_call(client, YPPASSWDPROC_UPDATE,
135 1.3 deraadt xdr_yppasswd, &yppasswd, xdr_int, &status, tv);
136 1.3 deraadt if (r) {
137 1.6 thorpej warnx("rpc to yppasswdd failed.");
138 1.6 thorpej return (1);
139 1.6 thorpej } else if (status)
140 1.6 thorpej printf("Couldn't change YP password.\n");
141 1.6 thorpej else
142 1.6 thorpej printf("%s %s, %s\n",
143 1.6 thorpej "The YP password information has been changed on",
144 1.6 thorpej master, "the master YP passwd server.");
145 1.6 thorpej return (0);
146 1.1 brezak }
147 1.1 brezak
148 1.1 brezak static char *
149 1.3 deraadt pwskip(p)
150 1.3 deraadt register char *p;
151 1.1 brezak {
152 1.1 brezak while (*p && *p != ':' && *p != '\n')
153 1.1 brezak ++p;
154 1.1 brezak if (*p)
155 1.1 brezak *p++ = 0;
156 1.1 brezak return (p);
157 1.1 brezak }
158 1.1 brezak
159 1.1 brezak static struct passwd *
160 1.3 deraadt interpret(pwent, line)
161 1.3 deraadt struct passwd *pwent;
162 1.3 deraadt char *line;
163 1.1 brezak {
164 1.1 brezak register char *p = line;
165 1.1 brezak register int c;
166 1.1 brezak
167 1.3 deraadt pwent->pw_passwd = "*";
168 1.3 deraadt pwent->pw_uid = 0;
169 1.3 deraadt pwent->pw_gid = 0;
170 1.3 deraadt pwent->pw_gecos = "";
171 1.3 deraadt pwent->pw_dir = "";
172 1.3 deraadt pwent->pw_shell = "";
173 1.1 brezak pwent->pw_change = 0;
174 1.1 brezak pwent->pw_expire = 0;
175 1.1 brezak pwent->pw_class = "";
176 1.3 deraadt
177 1.3 deraadt /* line without colon separators is no good, so ignore it */
178 1.3 deraadt if(!strchr(p,':'))
179 1.3 deraadt return(NULL);
180 1.1 brezak
181 1.1 brezak pwent->pw_name = p;
182 1.1 brezak p = pwskip(p);
183 1.1 brezak pwent->pw_passwd = p;
184 1.1 brezak p = pwskip(p);
185 1.1 brezak pwent->pw_uid = (uid_t)strtoul(p, NULL, 10);
186 1.1 brezak p = pwskip(p);
187 1.1 brezak pwent->pw_gid = (gid_t)strtoul(p, NULL, 10);
188 1.1 brezak p = pwskip(p);
189 1.1 brezak pwent->pw_gecos = p;
190 1.1 brezak p = pwskip(p);
191 1.1 brezak pwent->pw_dir = p;
192 1.1 brezak p = pwskip(p);
193 1.1 brezak pwent->pw_shell = p;
194 1.1 brezak while (*p && *p != '\n')
195 1.1 brezak p++;
196 1.1 brezak *p = '\0';
197 1.1 brezak return (pwent);
198 1.1 brezak }
199 1.1 brezak
200 1.1 brezak struct passwd *
201 1.1 brezak ypgetpwnam(nam)
202 1.3 deraadt char *nam;
203 1.1 brezak {
204 1.3 deraadt static struct passwd pwent;
205 1.3 deraadt static char line[1024];
206 1.3 deraadt char *val;
207 1.3 deraadt int reason, vallen;
208 1.3 deraadt
209 1.3 deraadt /*
210 1.3 deraadt * Get local domain
211 1.3 deraadt */
212 1.6 thorpej if (!domain && (reason = yp_get_default_domain(&domain)))
213 1.6 thorpej errx(1, "can't get local YP domain. Reason: %s",
214 1.6 thorpej yperr_string(reason));
215 1.3 deraadt
216 1.3 deraadt reason = yp_match(domain, "passwd.byname", nam, strlen(nam),
217 1.3 deraadt &val, &vallen);
218 1.3 deraadt switch(reason) {
219 1.3 deraadt case 0:
220 1.3 deraadt break;
221 1.3 deraadt default:
222 1.3 deraadt return (NULL);
223 1.3 deraadt break;
224 1.3 deraadt }
225 1.3 deraadt val[vallen] = '\0';
226 1.3 deraadt strcpy(line, val);
227 1.3 deraadt free(val);
228 1.1 brezak
229 1.3 deraadt return(interpret(&pwent, line));
230 1.1 brezak }
231 1.1 brezak
232 1.1 brezak struct passwd *
233 1.1 brezak ypgetpwuid(uid)
234 1.3 deraadt uid_t uid;
235 1.1 brezak {
236 1.3 deraadt static struct passwd pwent;
237 1.3 deraadt static char line[1024];
238 1.3 deraadt char *val;
239 1.3 deraadt int reason, vallen;
240 1.3 deraadt char namebuf[16];
241 1.3 deraadt
242 1.6 thorpej if (!domain && (reason = yp_get_default_domain(&domain)))
243 1.6 thorpej errx(1, "can't get local YP domain. Reason: %s\n",
244 1.6 thorpej yperr_string(reason));
245 1.3 deraadt
246 1.3 deraadt sprintf(namebuf, "%d", uid);
247 1.3 deraadt reason = yp_match(domain, "passwd.byuid", namebuf, strlen(namebuf),
248 1.3 deraadt &val, &vallen);
249 1.3 deraadt switch(reason) {
250 1.3 deraadt case 0:
251 1.3 deraadt break;
252 1.3 deraadt default:
253 1.3 deraadt return (NULL);
254 1.3 deraadt break;
255 1.3 deraadt }
256 1.3 deraadt val[vallen] = '\0';
257 1.3 deraadt strcpy(line, val);
258 1.3 deraadt free(val);
259 1.1 brezak
260 1.3 deraadt return(interpret(&pwent, line));
261 1.1 brezak }
262 1.1 brezak
263 1.6 thorpej void
264 1.6 thorpej yppw_error(name, err, eval)
265 1.6 thorpej const char *name;
266 1.6 thorpej int err, eval;
267 1.6 thorpej {
268 1.6 thorpej
269 1.6 thorpej if (err)
270 1.6 thorpej warn(name);
271 1.6 thorpej
272 1.6 thorpej errx(eval, "YP passwd information unchanged");
273 1.6 thorpej }
274 1.6 thorpej
275 1.6 thorpej void
276 1.6 thorpej yppw_prompt()
277 1.6 thorpej {
278 1.6 thorpej int c;
279 1.6 thorpej
280 1.6 thorpej (void)printf("re-edit the password file? [y]: ");
281 1.6 thorpej (void)fflush(stdout);
282 1.6 thorpej c = getchar();
283 1.6 thorpej if (c != EOF && c != '\n')
284 1.6 thorpej while (getchar() != '\n');
285 1.6 thorpej if (c == 'n')
286 1.6 thorpej yppw_error(NULL, 0, 0);
287 1.6 thorpej }
288 1.1 brezak #endif /* YP */
289