]> git.ozlabs.org Git - ppp.git/blob - pppd/auth.c
apply PAM patch
[ppp.git] / pppd / auth.c
1 /*
2  * auth.c - PPP authentication and phase control.
3  *
4  * Copyright (c) 1993 The Australian National University.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms are permitted
8  * provided that the above copyright notice and this paragraph are
9  * duplicated in all such forms and that any documentation,
10  * advertising materials, and other materials related to such
11  * distribution and use acknowledge that the software was developed
12  * by the Australian National University.  The name of the University
13  * may not be used to endorse or promote products derived from this
14  * software without specific prior written permission.
15  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
17  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
18  *
19  * Copyright (c) 1989 Carnegie Mellon University.
20  * All rights reserved.
21  *
22  * Redistribution and use in source and binary forms are permitted
23  * provided that the above copyright notice and this paragraph are
24  * duplicated in all such forms and that any documentation,
25  * advertising materials, and other materials related to such
26  * distribution and use acknowledge that the software was developed
27  * by Carnegie Mellon University.  The name of the
28  * University may not be used to endorse or promote products derived
29  * from this software without specific prior written permission.
30  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
31  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
32  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
33  */
34
35 #ifndef lint
36 static char rcsid[] = "$Id: auth.c,v 1.48 1999/03/30 06:02:21 paulus Exp $";
37 #endif
38
39 #include <stdio.h>
40 #include <stddef.h>
41 #include <stdlib.h>
42 #include <unistd.h>
43 #include <pwd.h>
44 #include <grp.h>
45 #include <string.h>
46 #include <sys/types.h>
47 #include <sys/stat.h>
48 #include <sys/socket.h>
49 #include <utmp.h>
50 #include <fcntl.h>
51 #if defined(_PATH_LASTLOG) && defined(_linux_)
52 #include <lastlog.h>
53 #endif
54
55 #include <netdb.h>
56 #include <netinet/in.h>
57 #include <arpa/inet.h>
58
59 #ifdef USE_PAM
60 #include <security/pam_appl.h>
61 #endif
62
63 #ifdef HAS_SHADOW
64 #include <shadow.h>
65 #ifndef PW_PPP
66 #define PW_PPP PW_LOGIN
67 #endif
68 #endif
69
70 #include "pppd.h"
71 #include "fsm.h"
72 #include "lcp.h"
73 #include "ipcp.h"
74 #include "upap.h"
75 #include "chap.h"
76 #ifdef CBCP_SUPPORT
77 #include "cbcp.h"
78 #endif
79 #include "pathnames.h"
80
81 /* Used for storing a sequence of words.  Usually malloced. */
82 struct wordlist {
83     struct wordlist     *next;
84     char                *word;
85 };
86
87 /* Bits in scan_authfile return value */
88 #define NONWILD_SERVER  1
89 #define NONWILD_CLIENT  2
90
91 #define ISWILD(word)    (word[0] == '*' && word[1] == 0)
92
93 /* The name by which the peer authenticated itself to us. */
94 char peer_authname[MAXNAMELEN];
95
96 /* Records which authentication operations haven't completed yet. */
97 static int auth_pending[NUM_PPP];
98
99 /* Set if we have successfully called plogin() */
100 static int logged_in;
101
102 /* List of addresses which the peer may use. */
103 static struct permitted_ip *addresses[NUM_PPP];
104
105 /* Number of network protocols which we have opened. */
106 static int num_np_open;
107
108 /* Number of network protocols which have come up. */
109 static int num_np_up;
110
111 /* Set if we got the contents of passwd[] from the pap-secrets file. */
112 static int passwd_from_file;
113
114 /*
115  * This is used to ensure that we don't start an auth-up/down
116  * script while one is already running.
117  */
118 enum script_state {
119     s_down,
120     s_up
121 };
122
123 static enum script_state auth_state = s_down;
124 static enum script_state auth_script_state = s_down;
125 static pid_t auth_script_pid = 0;
126
127 /*
128  * Option variables.
129  */
130 bool uselogin = 0;              /* Use /etc/passwd for checking PAP */
131 bool cryptpap = 0;              /* Passwords in pap-secrets are encrypted */
132 bool refuse_pap = 0;            /* Don't wanna auth. ourselves with PAP */
133 bool refuse_chap = 0;           /* Don't wanna auth. ourselves with CHAP */
134 bool usehostname = 0;           /* Use hostname for our_name */
135 bool auth_required = 0;         /* Always require authentication from peer */
136 bool allow_any_ip = 0;          /* Allow peer to use any IP address */
137 bool explicit_remote = 0;       /* User specified explicit remote name */
138 char remote_name[MAXNAMELEN];   /* Peer's name for authentication */
139
140 /* Bits in auth_pending[] */
141 #define PAP_WITHPEER    1
142 #define PAP_PEER        2
143 #define CHAP_WITHPEER   4
144 #define CHAP_PEER       8
145
146 extern char *crypt __P((const char *, const char *));
147
148 /* Prototypes for procedures local to this file. */
149
150 static void network_phase __P((int));
151 static void check_idle __P((void *));
152 static void connect_time_expired __P((void *));
153 static int  plogin __P((char *, char *, char **, int *));
154 static void plogout __P((void));
155 static int  null_login __P((int));
156 static int  get_pap_passwd __P((char *));
157 static int  have_pap_secret __P((int *));
158 static int  have_chap_secret __P((char *, char *, int, int *));
159 static int  ip_addr_check __P((u_int32_t, struct permitted_ip *));
160 static int  scan_authfile __P((FILE *, char *, char *, char *,
161                                struct wordlist **, char *));
162 static void free_wordlist __P((struct wordlist *));
163 static void auth_script __P((char *));
164 static void auth_script_done __P((void *));
165 static void set_allowed_addrs __P((int, struct wordlist *));
166 static int  some_ip_ok __P((struct wordlist *));
167 static int  setupapfile __P((char **));
168 static int  privgroup __P((char **));
169 static void check_access __P((FILE *, char *));
170
171 /*
172  * Authentication-related options.
173  */
174 option_t auth_options[] = {
175     { "require-pap", o_bool, &lcp_wantoptions[0].neg_upap,
176       "Require PAP authentication from peer", 1, &auth_required },
177     { "+pap", o_bool, &lcp_wantoptions[0].neg_upap,
178       "Require PAP authentication from peer", 1, &auth_required },
179     { "refuse-pap", o_bool, &refuse_pap,
180       "Don't agree to auth to peer with PAP", 1 },
181     { "-pap", o_bool, &refuse_pap,
182       "Don't allow PAP authentication with peer", 1 },
183     { "require-chap", o_bool, &lcp_wantoptions[0].neg_chap,
184       "Require CHAP authentication from peer", 1, &auth_required },
185     { "+chap", o_bool, &lcp_wantoptions[0].neg_chap,
186       "Require CHAP authentication from peer", 1, &auth_required },
187     { "refuse-chap", o_bool, &refuse_chap,
188       "Don't agree to auth to peer with CHAP", 1 },
189     { "-chap", o_bool, &refuse_chap,
190       "Don't allow CHAP authentication with peer", 1 },
191     { "name", o_string, our_name,
192       "Set local name for authentication",
193       OPT_PRIV|OPT_STATIC, NULL, MAXNAMELEN },
194     { "user", o_string, user,
195       "Set name for auth with peer", OPT_STATIC, NULL, MAXNAMELEN },
196     { "usehostname", o_bool, &usehostname,
197       "Must use hostname for authentication", 1 },
198     { "remotename", o_string, remote_name,
199       "Set remote name for authentication", OPT_STATIC,
200       &explicit_remote, MAXNAMELEN },
201     { "auth", o_bool, &auth_required,
202       "Require authentication from peer", 1 },
203     { "noauth", o_bool, &auth_required,
204       "Don't require peer to authenticate", OPT_PRIV, &allow_any_ip },
205     {  "login", o_bool, &uselogin,
206       "Use system password database for PAP", 1 },
207     { "papcrypt", o_bool, &cryptpap,
208       "PAP passwords are encrypted", 1 },
209     { "+ua", o_special, setupapfile,
210       "Get PAP user and password from file" },
211     { "privgroup", o_special, privgroup,
212       "Allow group members to use privileged options", OPT_PRIV },
213     { NULL }
214 };
215
216 /*
217  * setupapfile - specifies UPAP info for authenticating with peer.
218  */
219 static int
220 setupapfile(argv)
221     char **argv;
222 {
223     FILE * ufile;
224     int l;
225
226     lcp_allowoptions[0].neg_upap = 1;
227
228     /* open user info file */
229     seteuid(getuid());
230     ufile = fopen(*argv, "r");
231     seteuid(0);
232     if (ufile == NULL) {
233         option_error("unable to open user login data file %s", *argv);
234         return 0;
235     }
236     check_access(ufile, *argv);
237
238     /* get username */
239     if (fgets(user, MAXNAMELEN - 1, ufile) == NULL
240         || fgets(passwd, MAXSECRETLEN - 1, ufile) == NULL){
241         option_error("unable to read user login data file %s", *argv);
242         return 0;
243     }
244     fclose(ufile);
245
246     /* get rid of newlines */
247     l = strlen(user);
248     if (l > 0 && user[l-1] == '\n')
249         user[l-1] = 0;
250     l = strlen(passwd);
251     if (l > 0 && passwd[l-1] == '\n')
252         passwd[l-1] = 0;
253
254     return (1);
255 }
256
257
258 /*
259  * privgroup - allow members of the group to have privileged access.
260  */
261 static int
262 privgroup(argv)
263     char **argv;
264 {
265     struct group *g;
266     int i;
267
268     g = getgrnam(*argv);
269     if (g == 0) {
270         option_error("group %s is unknown", *argv);
271         return 0;
272     }
273     for (i = 0; i < ngroups; ++i) {
274         if (groups[i] == g->gr_gid) {
275             privileged = 1;
276             break;
277         }
278     }
279     return 1;
280 }
281
282
283 /*
284  * An Open on LCP has requested a change from Dead to Establish phase.
285  * Do what's necessary to bring the physical layer up.
286  */
287 void
288 link_required(unit)
289     int unit;
290 {
291 }
292
293 /*
294  * LCP has terminated the link; go to the Dead phase and take the
295  * physical layer down.
296  */
297 void
298 link_terminated(unit)
299     int unit;
300 {
301     if (phase == PHASE_DEAD)
302         return;
303     if (logged_in)
304         plogout();
305     phase = PHASE_DEAD;
306     notice("Connection terminated.");
307 }
308
309 /*
310  * LCP has gone down; it will either die or try to re-establish.
311  */
312 void
313 link_down(unit)
314     int unit;
315 {
316     int i;
317     struct protent *protp;
318
319     auth_state = s_down;
320     if (auth_script_state == s_up && auth_script_pid == 0) {
321         auth_script_state = s_down;
322         auth_script(_PATH_AUTHDOWN);
323     }
324     for (i = 0; (protp = protocols[i]) != NULL; ++i) {
325         if (!protp->enabled_flag)
326             continue;
327         if (protp->protocol != PPP_LCP && protp->lowerdown != NULL)
328             (*protp->lowerdown)(unit);
329         if (protp->protocol < 0xC000 && protp->close != NULL)
330             (*protp->close)(unit, "LCP down");
331     }
332     num_np_open = 0;
333     num_np_up = 0;
334     if (phase != PHASE_DEAD)
335         phase = PHASE_TERMINATE;
336 }
337
338 /*
339  * The link is established.
340  * Proceed to the Dead, Authenticate or Network phase as appropriate.
341  */
342 void
343 link_established(unit)
344     int unit;
345 {
346     int auth;
347     lcp_options *wo = &lcp_wantoptions[unit];
348     lcp_options *go = &lcp_gotoptions[unit];
349     lcp_options *ho = &lcp_hisoptions[unit];
350     int i;
351     struct protent *protp;
352
353     /*
354      * Tell higher-level protocols that LCP is up.
355      */
356     for (i = 0; (protp = protocols[i]) != NULL; ++i)
357         if (protp->protocol != PPP_LCP && protp->enabled_flag
358             && protp->lowerup != NULL)
359             (*protp->lowerup)(unit);
360
361     if (auth_required && !(go->neg_chap || go->neg_upap)) {
362         /*
363          * We wanted the peer to authenticate itself, and it refused:
364          * treat it as though it authenticated with PAP using a username
365          * of "" and a password of "".  If that's not OK, boot it out.
366          */
367         if (!wo->neg_upap || !null_login(unit)) {
368             warn("peer refused to authenticate: terminating link");
369             lcp_close(unit, "peer refused to authenticate");
370             return;
371         }
372     }
373
374     phase = PHASE_AUTHENTICATE;
375     auth = 0;
376     if (go->neg_chap) {
377         ChapAuthPeer(unit, our_name, go->chap_mdtype);
378         auth |= CHAP_PEER;
379     } else if (go->neg_upap) {
380         upap_authpeer(unit);
381         auth |= PAP_PEER;
382     }
383     if (ho->neg_chap) {
384         ChapAuthWithPeer(unit, user, ho->chap_mdtype);
385         auth |= CHAP_WITHPEER;
386     } else if (ho->neg_upap) {
387         if (passwd[0] == 0) {
388             passwd_from_file = 1;
389             if (!get_pap_passwd(passwd))
390                 error("No secret found for PAP login");
391         }
392         upap_authwithpeer(unit, user, passwd);
393         auth |= PAP_WITHPEER;
394     }
395     auth_pending[unit] = auth;
396
397     if (!auth)
398         network_phase(unit);
399 }
400
401 /*
402  * Proceed to the network phase.
403  */
404 static void
405 network_phase(unit)
406     int unit;
407 {
408     int i;
409     struct protent *protp;
410     lcp_options *go = &lcp_gotoptions[unit];
411
412     /*
413      * If the peer had to authenticate, run the auth-up script now.
414      */
415     if (go->neg_chap || go->neg_upap) {
416         auth_state = s_up;
417         if (auth_script_state == s_down && auth_script_pid == 0) {
418             auth_script_state = s_up;
419             auth_script(_PATH_AUTHUP);
420         }
421     }
422
423 #ifdef CBCP_SUPPORT
424     /*
425      * If we negotiated callback, do it now.
426      */
427     if (go->neg_cbcp) {
428         phase = PHASE_CALLBACK;
429         (*cbcp_protent.open)(unit);
430         return;
431     }
432 #endif
433
434     phase = PHASE_NETWORK;
435 #if 0
436     if (!demand)
437         set_filters(&pass_filter, &active_filter);
438 #endif
439     for (i = 0; (protp = protocols[i]) != NULL; ++i)
440         if (protp->protocol < 0xC000 && protp->enabled_flag
441             && protp->open != NULL) {
442             (*protp->open)(unit);
443             if (protp->protocol != PPP_CCP)
444                 ++num_np_open;
445         }
446
447     if (num_np_open == 0)
448         /* nothing to do */
449         lcp_close(0, "No network protocols running");
450 }
451
452 /*
453  * The peer has failed to authenticate himself using `protocol'.
454  */
455 void
456 auth_peer_fail(unit, protocol)
457     int unit, protocol;
458 {
459     /*
460      * Authentication failure: take the link down
461      */
462     lcp_close(unit, "Authentication failed");
463 }
464
465 /*
466  * The peer has been successfully authenticated using `protocol'.
467  */
468 void
469 auth_peer_success(unit, protocol, name, namelen)
470     int unit, protocol;
471     char *name;
472     int namelen;
473 {
474     int bit;
475
476     switch (protocol) {
477     case PPP_CHAP:
478         bit = CHAP_PEER;
479         break;
480     case PPP_PAP:
481         bit = PAP_PEER;
482         break;
483     default:
484         warn("auth_peer_success: unknown protocol %x", protocol);
485         return;
486     }
487
488     /*
489      * Save the authenticated name of the peer for later.
490      */
491     if (namelen > sizeof(peer_authname) - 1)
492         namelen = sizeof(peer_authname) - 1;
493     BCOPY(name, peer_authname, namelen);
494     peer_authname[namelen] = 0;
495     script_setenv("PEERNAME", peer_authname);
496
497     /*
498      * If there is no more authentication still to be done,
499      * proceed to the network (or callback) phase.
500      */
501     if ((auth_pending[unit] &= ~bit) == 0)
502         network_phase(unit);
503 }
504
505 /*
506  * We have failed to authenticate ourselves to the peer using `protocol'.
507  */
508 void
509 auth_withpeer_fail(unit, protocol)
510     int unit, protocol;
511 {
512     if (passwd_from_file)
513         BZERO(passwd, MAXSECRETLEN);
514     /*
515      * We've failed to authenticate ourselves to our peer.
516      * He'll probably take the link down, and there's not much
517      * we can do except wait for that.
518      */
519 }
520
521 /*
522  * We have successfully authenticated ourselves with the peer using `protocol'.
523  */
524 void
525 auth_withpeer_success(unit, protocol)
526     int unit, protocol;
527 {
528     int bit;
529
530     switch (protocol) {
531     case PPP_CHAP:
532         bit = CHAP_WITHPEER;
533         break;
534     case PPP_PAP:
535         if (passwd_from_file)
536             BZERO(passwd, MAXSECRETLEN);
537         bit = PAP_WITHPEER;
538         break;
539     default:
540         warn("auth_withpeer_success: unknown protocol %x", protocol);
541         bit = 0;
542     }
543
544     /*
545      * If there is no more authentication still being done,
546      * proceed to the network (or callback) phase.
547      */
548     if ((auth_pending[unit] &= ~bit) == 0)
549         network_phase(unit);
550 }
551
552
553 /*
554  * np_up - a network protocol has come up.
555  */
556 void
557 np_up(unit, proto)
558     int unit, proto;
559 {
560     if (num_np_up == 0) {
561         /*
562          * At this point we consider that the link has come up successfully.
563          */
564         need_holdoff = 0;
565
566         if (idle_time_limit > 0)
567             TIMEOUT(check_idle, NULL, idle_time_limit);
568
569         /*
570          * Set a timeout to close the connection once the maximum
571          * connect time has expired.
572          */
573         if (maxconnect > 0)
574             TIMEOUT(connect_time_expired, 0, maxconnect);
575
576         /*
577          * Detach now, if the updetach option was given.
578          */
579         if (updetach && !nodetach)
580             detach();
581     }
582     ++num_np_up;
583 }
584
585 /*
586  * np_down - a network protocol has gone down.
587  */
588 void
589 np_down(unit, proto)
590     int unit, proto;
591 {
592     if (--num_np_up == 0 && idle_time_limit > 0) {
593         UNTIMEOUT(check_idle, NULL);
594     }
595 }
596
597 /*
598  * np_finished - a network protocol has finished using the link.
599  */
600 void
601 np_finished(unit, proto)
602     int unit, proto;
603 {
604     if (--num_np_open <= 0) {
605         /* no further use for the link: shut up shop. */
606         lcp_close(0, "No network protocols running");
607     }
608 }
609
610 /*
611  * check_idle - check whether the link has been idle for long
612  * enough that we can shut it down.
613  */
614 static void
615 check_idle(arg)
616      void *arg;
617 {
618     struct ppp_idle idle;
619     time_t itime;
620
621     if (!get_idle_time(0, &idle))
622         return;
623     itime = MIN(idle.xmit_idle, idle.recv_idle);
624     if (itime >= idle_time_limit) {
625         /* link is idle: shut it down. */
626         info("Terminating connection due to lack of activity.");
627         lcp_close(0, "Link inactive");
628     } else {
629         TIMEOUT(check_idle, NULL, idle_time_limit - itime);
630     }
631 }
632
633 /*
634  * connect_time_expired - log a message and close the connection.
635  */
636 static void
637 connect_time_expired(arg)
638     void *arg;
639 {
640     info("Connect time expired");
641     lcp_close(0, "Connect time expired");       /* Close connection */
642 }
643
644 /*
645  * auth_check_options - called to check authentication options.
646  */
647 void
648 auth_check_options()
649 {
650     lcp_options *wo = &lcp_wantoptions[0];
651     int can_auth;
652     int lacks_ip;
653
654     /* Default our_name to hostname, and user to our_name */
655     if (our_name[0] == 0 || usehostname)
656         strlcpy(our_name, hostname, sizeof(our_name));
657     if (user[0] == 0)
658         strlcpy(user, our_name, sizeof(user));
659
660     /*
661      * If we have a default route, require the peer to authenticate
662      * unless the noauth option was given.
663      */
664     if (!auth_required && !allow_any_ip && have_route_to(0))
665         auth_required = 1;
666
667     /* If authentication is required, ask peer for CHAP or PAP. */
668     if (auth_required) {
669         if (!wo->neg_chap && !wo->neg_upap) {
670             wo->neg_chap = 1;
671             wo->neg_upap = 1;
672         }
673     } else {
674         wo->neg_chap = 0;
675         wo->neg_upap = 0;
676     }
677
678     /*
679      * Check whether we have appropriate secrets to use
680      * to authenticate the peer.
681      */
682     lacks_ip = 0;
683     can_auth = wo->neg_upap && (uselogin || have_pap_secret(&lacks_ip));
684     if (!can_auth && wo->neg_chap) {
685         can_auth = have_chap_secret((explicit_remote? remote_name: NULL),
686                                     our_name, 1, &lacks_ip);
687     }
688
689     if (auth_required && !can_auth) {
690         if (explicit_remote)
691             option_error(
692 "The remote system (%s) is required to authenticate itself but I",
693                          remote_name);
694         else
695             option_error(
696 "The remote system is required to authenticate itself but I");
697
698         if (!lacks_ip)
699             option_error(
700 "couldn't find any suitable secret (password) for it to use to do so.");
701         else
702             option_error(
703 "couldn't find any secret (password) which would let it use an IP address.");
704
705         exit(1);
706     }
707 }
708
709 /*
710  * auth_reset - called when LCP is starting negotiations to recheck
711  * authentication options, i.e. whether we have appropriate secrets
712  * to use for authenticating ourselves and/or the peer.
713  */
714 void
715 auth_reset(unit)
716     int unit;
717 {
718     lcp_options *go = &lcp_gotoptions[unit];
719     lcp_options *ao = &lcp_allowoptions[0];
720
721     ao->neg_upap = !refuse_pap && (passwd[0] != 0 || get_pap_passwd(NULL));
722     ao->neg_chap = !refuse_chap
723         && have_chap_secret(user, (explicit_remote? remote_name: NULL),
724                             0, NULL);
725
726     if (go->neg_upap && !uselogin && !have_pap_secret(NULL))
727         go->neg_upap = 0;
728     if (go->neg_chap) {
729         if (!have_chap_secret((explicit_remote? remote_name: NULL),
730                               our_name, 1, NULL))
731             go->neg_chap = 0;
732     }
733 }
734
735
736 /*
737  * check_passwd - Check the user name and passwd against the PAP secrets
738  * file.  If requested, also check against the system password database,
739  * and login the user if OK.
740  *
741  * returns:
742  *      UPAP_AUTHNAK: Authentication failed.
743  *      UPAP_AUTHACK: Authentication succeeded.
744  * In either case, msg points to an appropriate message.
745  */
746 int
747 check_passwd(unit, auser, userlen, apasswd, passwdlen, msg, msglen)
748     int unit;
749     char *auser;
750     int userlen;
751     char *apasswd;
752     int passwdlen;
753     char **msg;
754     int *msglen;
755 {
756     int ret;
757     char *filename;
758     FILE *f;
759     struct wordlist *addrs;
760     char passwd[256], user[256];
761     char secret[MAXWORDLEN];
762     static int attempts = 0;
763
764     /*
765      * Make copies of apasswd and auser, then null-terminate them.
766      */
767     BCOPY(apasswd, passwd, passwdlen);
768     passwd[passwdlen] = '\0';
769     BCOPY(auser, user, userlen);
770     user[userlen] = '\0';
771     *msg = (char *) 0;
772
773     /*
774      * Open the file of pap secrets and scan for a suitable secret
775      * for authenticating this user.
776      */
777     filename = _PATH_UPAPFILE;
778     addrs = NULL;
779     ret = UPAP_AUTHACK;
780     f = fopen(filename, "r");
781     if (f == NULL) {
782         error("Can't open PAP password file %s: %m", filename);
783         ret = UPAP_AUTHNAK;
784
785     } else {
786         check_access(f, filename);
787         if (scan_authfile(f, user, our_name, secret, &addrs, filename) < 0
788             || (secret[0] != 0 && (cryptpap || strcmp(passwd, secret) != 0)
789                 && strcmp(crypt(passwd, secret), secret) != 0)) {
790             warn("PAP authentication failure for %s", user);
791             ret = UPAP_AUTHNAK;
792         }
793         fclose(f);
794     }
795
796     if (uselogin && ret == UPAP_AUTHACK) {
797         ret = plogin(user, passwd, msg, msglen);
798         if (ret == UPAP_AUTHNAK) {
799             warn("PAP login failure for %s", user);
800         }
801     }
802
803     if (ret == UPAP_AUTHNAK) {
804         if (*msg == (char *) 0)
805             *msg = "Login incorrect";
806         *msglen = strlen(*msg);
807         /*
808          * XXX can we ever get here more than once??
809          * Frustrate passwd stealer programs.
810          * Allow 10 tries, but start backing off after 3 (stolen from login).
811          * On 10'th, drop the connection.
812          */
813         if (attempts++ >= 10) {
814             warn("%d LOGIN FAILURES ON %s, %s", attempts, devnam, user);
815             lcp_close(unit, "login failed");
816         }
817         if (attempts > 3)
818             sleep((u_int) (attempts - 3) * 5);
819         if (addrs != NULL)
820             free_wordlist(addrs);
821
822     } else {
823         attempts = 0;                   /* Reset count */
824         if (*msg == (char *) 0)
825             *msg = "Login ok";
826         *msglen = strlen(*msg);
827         set_allowed_addrs(unit, addrs);
828     }
829
830     BZERO(passwd, sizeof(passwd));
831     BZERO(secret, sizeof(secret));
832
833     return ret;
834 }
835
836 /*
837  * This function is needed for PAM.
838  */
839
840 #ifdef USE_PAM
841 /* Static variables used to communicate between the conversation function
842  * and the server_login function 
843  */
844 static char *PAM_username;
845 static char *PAM_password;
846 static int PAM_error = 0;
847 static pam_handle_t *pamh = NULL;
848
849 /* PAM conversation function
850  * Here we assume (for now, at least) that echo on means login name, and
851  * echo off means password.
852  */
853
854 static int PAM_conv (int num_msg, const struct pam_message **msg,
855                     struct pam_response **resp, void *appdata_ptr)
856 {
857     int replies = 0;
858     struct pam_response *reply = NULL;
859
860 #define COPY_STRING(s) (s) ? strdup(s) : NULL
861
862     reply = malloc(sizeof(struct pam_response) * num_msg);
863     if (!reply) return PAM_CONV_ERR;
864
865     for (replies = 0; replies < num_msg; replies++) {
866         switch (msg[replies]->msg_style) {
867             case PAM_PROMPT_ECHO_ON:
868                 reply[replies].resp_retcode = PAM_SUCCESS;
869                 reply[replies].resp = COPY_STRING(PAM_username);
870                 /* PAM frees resp */
871                 break;
872             case PAM_PROMPT_ECHO_OFF:
873                 reply[replies].resp_retcode = PAM_SUCCESS;
874                 reply[replies].resp = COPY_STRING(PAM_password);
875                 /* PAM frees resp */
876                 break;
877             case PAM_TEXT_INFO:
878                 /* fall through */
879             case PAM_ERROR_MSG:
880                 /* ignore it, but pam still wants a NULL response... */
881                 reply[replies].resp_retcode = PAM_SUCCESS;
882                 reply[replies].resp = NULL;
883                 break;
884             default:       
885                 /* Must be an error of some sort... */
886                 free (reply);
887                 PAM_error = 1;
888                 return PAM_CONV_ERR;
889         }
890     }
891     *resp = reply;     
892     return PAM_SUCCESS;
893 }
894 static struct pam_conv PAM_conversation = {
895     &PAM_conv,
896     NULL
897 };
898 #endif  /* USE_PAM */
899
900 /*
901  * plogin - Check the user name and password against the system
902  * password database, and login the user if OK.
903  *
904  * returns:
905  *      UPAP_AUTHNAK: Login failed.
906  *      UPAP_AUTHACK: Login succeeded.
907  * In either case, msg points to an appropriate message.
908  */
909
910 static int
911 plogin(user, passwd, msg, msglen)
912     char *user;
913     char *passwd;
914     char **msg;
915     int *msglen;
916 {
917     char *tty;
918
919 #ifdef USE_PAM
920     int pam_error;
921
922     pam_error = pam_start ("ppp", user, &PAM_conversation, &pamh);
923     if (pam_error != PAM_SUCCESS) {
924         *msg = (char *) pam_strerror (pamh, pam_error);  
925         return UPAP_AUTHNAK;
926     }
927     /*
928      * Define the fields for the credential validation
929      */
930      
931     PAM_username = user;
932     PAM_password = passwd;
933     PAM_error = 0;
934     pam_set_item (pamh, PAM_TTY, devnam); /* this might be useful to some modules */
935
936     /*
937      * Validate the user
938      */
939     pam_error = pam_authenticate (pamh, PAM_SILENT);
940     if (pam_error == PAM_SUCCESS && !PAM_error) {    
941         pam_error = pam_acct_mgmt (pamh, PAM_SILENT);
942         if (pam_error == PAM_SUCCESS)
943             pam_open_session (pamh, PAM_SILENT);
944     }
945
946     *msg = (char *) pam_strerror (pamh, pam_error);
947     /*
948      * Clean up the mess
949      */
950     PAM_username = NULL;
951     PAM_password = NULL;
952     if (pam_error != PAM_SUCCESS)
953         return UPAP_AUTHNAK;
954 #else /* #ifdef USE_PAM */
955
956 /*
957  * Use the non-PAM methods directly
958  */
959
960 #ifdef HAS_SHADOW
961     struct spwd *spwd;
962     struct spwd *getspnam();
963 #endif
964     struct passwd *pw = getpwnam(user);
965
966     endpwent();
967     if (pw == NULL)
968         return (UPAP_AUTHNAK);
969
970 #ifdef HAS_SHADOW
971     spwd = getspnam(user);
972     endspent();
973     if (spwd) {
974         /* check the age of the password entry */
975         long now = time(NULL) / 86400L;
976
977         if ((spwd->sp_expire > 0 && now >= spwd->sp_expire)
978             || ((spwd->sp_max >= 0 && spwd->sp_max < 10000)
979                 && spwd->sp_lstchg >= 0
980                 && now >= spwd->sp_lstchg + spwd->sp_max)) {
981             warn("Password for %s has expired", user);
982             return (UPAP_AUTHNAK);
983         }
984         pw->pw_passwd = spwd->sp_pwdp;
985     }
986 #endif
987
988     /*
989      * If no passwd, don't let them login.
990      */
991     if (pw->pw_passwd == NULL || strlen(pw->pw_passwd) < 2
992         || strcmp(crypt(passwd, pw->pw_passwd), pw->pw_passwd) != 0)
993         return (UPAP_AUTHNAK);
994
995 #endif /* #ifdef USE_PAM */
996
997     /*
998      * Write a wtmp entry for this user.
999      */
1000
1001     tty = devnam;
1002     if (strncmp(tty, "/dev/", 5) == 0)
1003         tty += 5;
1004     logwtmp(tty, user, remote_name);            /* Add wtmp login entry */
1005
1006 #if defined(_PATH_LASTLOG) && !defined(USE_PAM)
1007     if (pw != (struct passwd *)NULL) {
1008             struct lastlog ll;
1009             int fd;
1010
1011             if ((fd = open(_PATH_LASTLOG, O_RDWR, 0)) >= 0) {
1012                 (void)lseek(fd, (off_t)(pw->pw_uid * sizeof(ll)), SEEK_SET);
1013                 memset((void *)&ll, 0, sizeof(ll));
1014                 (void)time(&ll.ll_time);
1015                 (void)strlcpy(ll.ll_line, tty, sizeof(ll.ll_line));
1016                 (void)write(fd, (char *)&ll, sizeof(ll));
1017                 (void)close(fd);
1018             }
1019     }
1020 #endif /* _PATH_LASTLOG and not USE_PAM */
1021
1022     info("user %s logged in", user);
1023     logged_in = 1;
1024
1025     return (UPAP_AUTHACK);
1026 }
1027
1028 /*
1029  * plogout - Logout the user.
1030  */
1031 static void
1032 plogout()
1033 {
1034 #ifdef USE_PAM
1035     int pam_error;
1036
1037     if (pamh != NULL) {
1038         pam_error = pam_close_session (pamh, PAM_SILENT);
1039         pam_end (pamh, pam_error);
1040         pamh = NULL;
1041     }
1042 #else /* ! USE_PAM */   
1043     char *tty;
1044
1045     tty = devnam;
1046     if (strncmp(tty, "/dev/", 5) == 0)
1047         tty += 5;
1048     logwtmp(tty, "", "");               /* Wipe out utmp logout entry */
1049 #endif /* ! USE_PAM */
1050     logged_in = 0;
1051 }
1052
1053
1054 /*
1055  * null_login - Check if a username of "" and a password of "" are
1056  * acceptable, and iff so, set the list of acceptable IP addresses
1057  * and return 1.
1058  */
1059 static int
1060 null_login(unit)
1061     int unit;
1062 {
1063     char *filename;
1064     FILE *f;
1065     int i, ret;
1066     struct wordlist *addrs;
1067     char secret[MAXWORDLEN];
1068
1069     /*
1070      * Open the file of pap secrets and scan for a suitable secret.
1071      * We don't accept a wildcard client.
1072      */
1073     filename = _PATH_UPAPFILE;
1074     addrs = NULL;
1075     f = fopen(filename, "r");
1076     if (f == NULL)
1077         return 0;
1078     check_access(f, filename);
1079
1080     i = scan_authfile(f, "", our_name, secret, &addrs, filename);
1081     ret = i >= 0 && (i & NONWILD_CLIENT) != 0 && secret[0] == 0;
1082     BZERO(secret, sizeof(secret));
1083
1084     if (ret)
1085         set_allowed_addrs(unit, addrs);
1086     else
1087         free_wordlist(addrs);
1088
1089     fclose(f);
1090     return ret;
1091 }
1092
1093
1094 /*
1095  * get_pap_passwd - get a password for authenticating ourselves with
1096  * our peer using PAP.  Returns 1 on success, 0 if no suitable password
1097  * could be found.
1098  * Assumes passwd points to MAXSECRETLEN bytes of space (if non-null).
1099  */
1100 static int
1101 get_pap_passwd(passwd)
1102     char *passwd;
1103 {
1104     char *filename;
1105     FILE *f;
1106     int ret;
1107     struct wordlist *addrs;
1108     char secret[MAXWORDLEN];
1109
1110     filename = _PATH_UPAPFILE;
1111     addrs = NULL;
1112     f = fopen(filename, "r");
1113     if (f == NULL)
1114         return 0;
1115     check_access(f, filename);
1116     ret = scan_authfile(f, user,
1117                         (remote_name[0]? remote_name: NULL),
1118                         secret, NULL, filename);
1119     fclose(f);
1120     if (ret < 0)
1121         return 0;
1122     if (passwd != NULL)
1123         strlcpy(passwd, secret, MAXSECRETLEN);
1124     BZERO(secret, sizeof(secret));
1125     return 1;
1126 }
1127
1128
1129 /*
1130  * have_pap_secret - check whether we have a PAP file with any
1131  * secrets that we could possibly use for authenticating the peer.
1132  */
1133 static int
1134 have_pap_secret(lacks_ipp)
1135     int *lacks_ipp;
1136 {
1137     FILE *f;
1138     int ret;
1139     char *filename;
1140     struct wordlist *addrs;
1141
1142     filename = _PATH_UPAPFILE;
1143     f = fopen(filename, "r");
1144     if (f == NULL)
1145         return 0;
1146
1147     ret = scan_authfile(f, (explicit_remote? remote_name: NULL), our_name,
1148                         NULL, &addrs, filename);
1149     fclose(f);
1150     if (ret >= 0 && !some_ip_ok(addrs)) {
1151         if (lacks_ipp != 0)
1152             *lacks_ipp = 1;
1153         ret = -1;
1154     }
1155     if (addrs != 0)
1156         free_wordlist(addrs);
1157
1158     return ret >= 0;
1159 }
1160
1161
1162 /*
1163  * have_chap_secret - check whether we have a CHAP file with a
1164  * secret that we could possibly use for authenticating `client'
1165  * on `server'.  Either can be the null string, meaning we don't
1166  * know the identity yet.
1167  */
1168 static int
1169 have_chap_secret(client, server, need_ip, lacks_ipp)
1170     char *client;
1171     char *server;
1172     int need_ip;
1173     int *lacks_ipp;
1174 {
1175     FILE *f;
1176     int ret;
1177     char *filename;
1178     struct wordlist *addrs;
1179
1180     filename = _PATH_CHAPFILE;
1181     f = fopen(filename, "r");
1182     if (f == NULL)
1183         return 0;
1184
1185     if (client != NULL && client[0] == 0)
1186         client = NULL;
1187     else if (server != NULL && server[0] == 0)
1188         server = NULL;
1189
1190     ret = scan_authfile(f, client, server, NULL, &addrs, filename);
1191     fclose(f);
1192     if (ret >= 0 && need_ip && !some_ip_ok(addrs)) {
1193         if (lacks_ipp != 0)
1194             *lacks_ipp = 1;
1195         ret = -1;
1196     }
1197     if (addrs != 0)
1198         free_wordlist(addrs);
1199
1200     return ret >= 0;
1201 }
1202
1203
1204 /*
1205  * get_secret - open the CHAP secret file and return the secret
1206  * for authenticating the given client on the given server.
1207  * (We could be either client or server).
1208  */
1209 int
1210 get_secret(unit, client, server, secret, secret_len, save_addrs)
1211     int unit;
1212     char *client;
1213     char *server;
1214     char *secret;
1215     int *secret_len;
1216     int save_addrs;
1217 {
1218     FILE *f;
1219     int ret, len;
1220     char *filename;
1221     struct wordlist *addrs;
1222     char secbuf[MAXWORDLEN];
1223
1224     filename = _PATH_CHAPFILE;
1225     addrs = NULL;
1226     secbuf[0] = 0;
1227
1228     f = fopen(filename, "r");
1229     if (f == NULL) {
1230         error("Can't open chap secret file %s: %m", filename);
1231         return 0;
1232     }
1233     check_access(f, filename);
1234
1235     ret = scan_authfile(f, client, server, secbuf, &addrs, filename);
1236     fclose(f);
1237     if (ret < 0)
1238         return 0;
1239
1240     if (save_addrs)
1241         set_allowed_addrs(unit, addrs);
1242
1243     len = strlen(secbuf);
1244     if (len > MAXSECRETLEN) {
1245         error("Secret for %s on %s is too long", client, server);
1246         len = MAXSECRETLEN;
1247     }
1248     BCOPY(secbuf, secret, len);
1249     BZERO(secbuf, sizeof(secbuf));
1250     *secret_len = len;
1251
1252     return 1;
1253 }
1254
1255 /*
1256  * set_allowed_addrs() - set the list of allowed addresses.
1257  */
1258 static void
1259 set_allowed_addrs(unit, addrs)
1260     int unit;
1261     struct wordlist *addrs;
1262 {
1263     int n = 0;
1264     struct wordlist *ap;
1265     struct permitted_ip *ip;
1266     char *ptr_word, *ptr_mask;
1267     struct hostent *hp;
1268     struct netent *np;
1269     u_int32_t a, mask, ah;
1270     struct ipcp_options *wo = &ipcp_wantoptions[unit];
1271     u_int32_t suggested_ip = 0;
1272
1273     if (addresses[unit] != NULL)
1274         free(addresses[unit]);
1275     addresses[unit] = NULL;
1276
1277     for (ap = addrs; ap != NULL; ap = ap->next)
1278         ++n;
1279     if (n == 0)
1280         return;
1281     ip = (struct permitted_ip *) malloc((n + 1) * sizeof(struct permitted_ip));
1282     if (ip == 0)
1283         return;
1284
1285     n = 0;
1286     for (ap = addrs; ap != NULL; ap = ap->next) {
1287         /* "-" means no addresses authorized, "*" means any address allowed */
1288         ptr_word = ap->word;
1289         if (strcmp(ptr_word, "-") == 0)
1290             break;
1291         if (strcmp(ptr_word, "*") == 0) {
1292             ip[n].permit = 1;
1293             ip[n].base = ip[n].mask = 0;
1294             ++n;
1295             break;
1296         }
1297
1298         ip[n].permit = 1;
1299         if (*ptr_word == '!') {
1300             ip[n].permit = 0;
1301             ++ptr_word;
1302         }
1303
1304         mask = ~ (u_int32_t) 0;
1305         ptr_mask = strchr (ptr_word, '/');
1306         if (ptr_mask != NULL) {
1307             int bit_count;
1308
1309             bit_count = (int) strtol (ptr_mask+1, (char **) 0, 10);
1310             if (bit_count <= 0 || bit_count > 32) {
1311                 warn("invalid address length %v in auth. address list",
1312                      ptr_mask);
1313                 continue;
1314             }
1315             *ptr_mask = '\0';
1316             mask <<= 32 - bit_count;
1317         }
1318
1319         hp = gethostbyname(ptr_word);
1320         if (hp != NULL && hp->h_addrtype == AF_INET) {
1321             a = *(u_int32_t *)hp->h_addr;
1322         } else {
1323             np = getnetbyname (ptr_word);
1324             if (np != NULL && np->n_addrtype == AF_INET) {
1325                 a = htonl (*(u_int32_t *)np->n_net);
1326                 if (ptr_mask == NULL) {
1327                     /* calculate appropriate mask for net */
1328                     ah = ntohl(a);
1329                     if (IN_CLASSA(ah))
1330                         mask = IN_CLASSA_NET;
1331                     else if (IN_CLASSB(ah))
1332                         mask = IN_CLASSB_NET;
1333                     else if (IN_CLASSC(ah))
1334                         mask = IN_CLASSC_NET;
1335                 }
1336             } else {
1337                 a = inet_addr (ptr_word);
1338             }
1339         }
1340
1341         if (ptr_mask != NULL)
1342             *ptr_mask = '/';
1343
1344         if (a == (u_int32_t)-1L)
1345             warn("unknown host %s in auth. address list", ap->word);
1346         else {
1347             ip[n].mask = htonl(mask);
1348             ip[n].base = a & ip[n].mask;
1349             ++n;
1350             if (~mask == 0 && suggested_ip == 0)
1351                 suggested_ip = a;
1352         }
1353     }
1354
1355     ip[n].permit = 0;           /* make the last entry forbid all addresses */
1356     ip[n].base = 0;             /* to terminate the list */
1357     ip[n].mask = 0;
1358
1359     addresses[unit] = ip;
1360
1361     /*
1362      * If the address given for the peer isn't authorized, or if
1363      * the user hasn't given one, AND there is an authorized address
1364      * which is a single host, then use that if we find one.
1365      */
1366     if (suggested_ip != 0
1367         && (wo->hisaddr == 0 || !auth_ip_addr(unit, wo->hisaddr)))
1368         wo->hisaddr = suggested_ip;
1369 }
1370
1371 /*
1372  * auth_ip_addr - check whether the peer is authorized to use
1373  * a given IP address.  Returns 1 if authorized, 0 otherwise.
1374  */
1375 int
1376 auth_ip_addr(unit, addr)
1377     int unit;
1378     u_int32_t addr;
1379 {
1380     if (addresses[unit] == NULL) {
1381         if (auth_required)
1382             return 0;           /* no addresses authorized */
1383         return allow_any_ip || !have_route_to(addr);
1384     }
1385     return ip_addr_check(addr, addresses[unit]);
1386 }
1387
1388 static int
1389 ip_addr_check(addr, addrs)
1390     u_int32_t addr;
1391     struct permitted_ip *addrs;
1392 {
1393     /* don't allow loopback or multicast address */
1394     if (bad_ip_adrs(addr))
1395         return 0;
1396
1397     for (; ; ++addrs)
1398         if ((addr & addrs->mask) == addrs->base)
1399             return addrs->permit;
1400 }
1401
1402 /*
1403  * bad_ip_adrs - return 1 if the IP address is one we don't want
1404  * to use, such as an address in the loopback net or a multicast address.
1405  * addr is in network byte order.
1406  */
1407 int
1408 bad_ip_adrs(addr)
1409     u_int32_t addr;
1410 {
1411     addr = ntohl(addr);
1412     return (addr >> IN_CLASSA_NSHIFT) == IN_LOOPBACKNET
1413         || IN_MULTICAST(addr) || IN_BADCLASS(addr);
1414 }
1415
1416 /*
1417  * some_ip_ok - check a wordlist to see if it authorizes any
1418  * IP address(es).
1419  */
1420 static int
1421 some_ip_ok(addrs)
1422     struct wordlist *addrs;
1423 {
1424     for (; addrs != 0; addrs = addrs->next) {
1425         if (strcmp(addrs->word, "-") == 0)
1426             break;
1427         if (addrs->word[0] != '!')
1428             return 1;           /* some IP address is allowed */
1429     }
1430     return 0;
1431 }
1432
1433 /*
1434  * check_access - complain if a secret file has too-liberal permissions.
1435  */
1436 static void
1437 check_access(f, filename)
1438     FILE *f;
1439     char *filename;
1440 {
1441     struct stat sbuf;
1442
1443     if (fstat(fileno(f), &sbuf) < 0) {
1444         warn("cannot stat secret file %s: %m", filename);
1445     } else if ((sbuf.st_mode & (S_IRWXG | S_IRWXO)) != 0) {
1446         warn("Warning - secret file %s has world and/or group access",
1447              filename);
1448     }
1449 }
1450
1451
1452 /*
1453  * scan_authfile - Scan an authorization file for a secret suitable
1454  * for authenticating `client' on `server'.  The return value is -1
1455  * if no secret is found, otherwise >= 0.  The return value has
1456  * NONWILD_CLIENT set if the secret didn't have "*" for the client, and
1457  * NONWILD_SERVER set if the secret didn't have "*" for the server.
1458  * Any following words on the line (i.e. address authorization
1459  * info) are placed in a wordlist and returned in *addrs.
1460  * We assume secret is NULL or points to MAXWORDLEN bytes of space.
1461  */
1462 static int
1463 scan_authfile(f, client, server, secret, addrs, filename)
1464     FILE *f;
1465     char *client;
1466     char *server;
1467     char *secret;
1468     struct wordlist **addrs;
1469     char *filename;
1470 {
1471     int newline, xxx;
1472     int got_flag, best_flag;
1473     FILE *sf;
1474     struct wordlist *ap, *addr_list, *alist, *alast;
1475     char word[MAXWORDLEN];
1476     char atfile[MAXWORDLEN];
1477     char lsecret[MAXWORDLEN];
1478
1479     if (addrs != NULL)
1480         *addrs = NULL;
1481     addr_list = NULL;
1482     if (!getword(f, word, &newline, filename))
1483         return -1;              /* file is empty??? */
1484     newline = 1;
1485     best_flag = -1;
1486     for (;;) {
1487         /*
1488          * Skip until we find a word at the start of a line.
1489          */
1490         while (!newline && getword(f, word, &newline, filename))
1491             ;
1492         if (!newline)
1493             break;              /* got to end of file */
1494
1495         /*
1496          * Got a client - check if it's a match or a wildcard.
1497          */
1498         got_flag = 0;
1499         if (client != NULL && strcmp(word, client) != 0 && !ISWILD(word)) {
1500             newline = 0;
1501             continue;
1502         }
1503         if (!ISWILD(word))
1504             got_flag = NONWILD_CLIENT;
1505
1506         /*
1507          * Now get a server and check if it matches.
1508          */
1509         if (!getword(f, word, &newline, filename))
1510             break;
1511         if (newline)
1512             continue;
1513         if (!ISWILD(word)) {
1514             if (server != NULL && strcmp(word, server) != 0)
1515                 continue;
1516             got_flag |= NONWILD_SERVER;
1517         }
1518
1519         /*
1520          * Got some sort of a match - see if it's better than what
1521          * we have already.
1522          */
1523         if (got_flag <= best_flag)
1524             continue;
1525
1526         /*
1527          * Get the secret.
1528          */
1529         if (!getword(f, word, &newline, filename))
1530             break;
1531         if (newline)
1532             continue;
1533
1534         /*
1535          * Special syntax: @filename means read secret from file.
1536          */
1537         if (word[0] == '@') {
1538             strlcpy(atfile, word+1, sizeof(atfile));
1539             if ((sf = fopen(atfile, "r")) == NULL) {
1540                 warn("can't open indirect secret file %s", atfile);
1541                 continue;
1542             }
1543             check_access(sf, atfile);
1544             if (!getword(sf, word, &xxx, atfile)) {
1545                 warn("no secret in indirect secret file %s", atfile);
1546                 fclose(sf);
1547                 continue;
1548             }
1549             fclose(sf);
1550         }
1551         if (secret != NULL)
1552             strlcpy(lsecret, word, sizeof(lsecret));
1553
1554         /*
1555          * Now read address authorization info and make a wordlist.
1556          */
1557         alist = alast = NULL;
1558         for (;;) {
1559             if (!getword(f, word, &newline, filename) || newline)
1560                 break;
1561             ap = (struct wordlist *) malloc(sizeof(struct wordlist));
1562             if (ap == NULL)
1563                 novm("authorized addresses");
1564             ap->next = NULL;
1565             ap->word = strdup(word);
1566             if (ap->word == NULL)
1567                 novm("authorized address");
1568             if (alist == NULL)
1569                 alist = ap;
1570             else
1571                 alast->next = ap;
1572             alast = ap;
1573         }
1574
1575         /*
1576          * This is the best so far; remember it.
1577          */
1578         best_flag = got_flag;
1579         if (addr_list)
1580             free_wordlist(addr_list);
1581         addr_list = alist;
1582         if (secret != NULL)
1583             strlcpy(secret, lsecret, MAXWORDLEN);
1584
1585         if (!newline)
1586             break;
1587     }
1588
1589     if (addrs != NULL)
1590         *addrs = addr_list;
1591     else if (addr_list != NULL)
1592         free_wordlist(addr_list);
1593
1594     return best_flag;
1595 }
1596
1597 /*
1598  * free_wordlist - release memory allocated for a wordlist.
1599  */
1600 static void
1601 free_wordlist(wp)
1602     struct wordlist *wp;
1603 {
1604     struct wordlist *next;
1605
1606     while (wp != NULL) {
1607         next = wp->next;
1608         free(wp);
1609         wp = next;
1610     }
1611 }
1612
1613 /*
1614  * auth_script_done - called when the auth-up or auth-down script
1615  * has finished.
1616  */
1617 static void
1618 auth_script_done(arg)
1619     void *arg;
1620 {
1621     auth_script_pid = 0;
1622     switch (auth_script_state) {
1623     case s_up:
1624         if (auth_state == s_down) {
1625             auth_script_state = s_down;
1626             auth_script(_PATH_AUTHDOWN);
1627         }
1628         break;
1629     case s_down:
1630         if (auth_state == s_up) {
1631             auth_script_state = s_up;
1632             auth_script(_PATH_AUTHUP);
1633         }
1634         break;
1635     }
1636 }
1637
1638 /*
1639  * auth_script - execute a script with arguments
1640  * interface-name peer-name real-user tty speed
1641  */
1642 static void
1643 auth_script(script)
1644     char *script;
1645 {
1646     char strspeed[32];
1647     struct passwd *pw;
1648     char struid[32];
1649     char *user_name;
1650     char *argv[8];
1651
1652     if ((pw = getpwuid(getuid())) != NULL && pw->pw_name != NULL)
1653         user_name = pw->pw_name;
1654     else {
1655         slprintf(struid, sizeof(struid), "%d", getuid());
1656         user_name = struid;
1657     }
1658     slprintf(strspeed, sizeof(strspeed), "%d", baud_rate);
1659
1660     argv[0] = script;
1661     argv[1] = ifname;
1662     argv[2] = peer_authname;
1663     argv[3] = user_name;
1664     argv[4] = devnam;
1665     argv[5] = strspeed;
1666     argv[6] = NULL;
1667
1668     auth_script_pid = run_program(script, argv, 0, auth_script_done, NULL);
1669 }