]> git.ozlabs.org Git - ppp.git/blob - pppd/auth.c
don't run auth-up/down script while one is already running.
[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.47 1999/03/19 01:17:51 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 char *PAM_username = "";
842 static char *PAM_password = "";
843
844 #ifdef PAM_ESTABLISH_CRED       /* new PAM defines :(^ */
845 #define MY_PAM_STRERROR(err_code)  (char *) pam_strerror(pamh,err_code)
846 #else
847 #define MY_PAM_STRERROR(err_code)  (char *) pam_strerror(err_code)
848 #endif
849
850 static int pam_conv (int num_msg,
851                      const struct pam_message **msg,
852                      struct pam_response **resp,
853                      void *appdata_ptr)
854 {
855     int count = 0, replies = 0;
856     struct pam_response *reply = NULL;
857     int size = 0;
858
859     for (count = 0; count < num_msg; count++)
860       {
861         size += sizeof (struct pam_response);
862         reply = realloc (reply, size); /* ANSI: is malloc() if reply==NULL */
863         if (!reply)
864             return PAM_CONV_ERR;
865
866         switch (msg[count]->msg_style)
867           {
868         case PAM_PROMPT_ECHO_ON:
869             reply[replies].resp_retcode = PAM_SUCCESS;
870             reply[replies++].resp = strdup(PAM_username); /* never NULL */
871             break;
872
873         case PAM_PROMPT_ECHO_OFF:
874             reply[replies].resp_retcode = PAM_SUCCESS;
875             reply[replies++].resp = strdup(PAM_password); /* never NULL */
876             break;
877
878         case PAM_TEXT_INFO:
879             reply[replies].resp_retcode = PAM_SUCCESS;
880             reply[replies++].resp = NULL;
881             break;
882
883         case PAM_ERROR_MSG:
884         default:
885             free (reply);
886             return PAM_CONV_ERR;
887           }
888       }
889
890     if (resp)
891         *resp = reply;
892     else
893         free (reply);
894
895     return PAM_SUCCESS;
896 }
897 #endif
898
899 /*
900  * plogin - Check the user name and password against the system
901  * password database, and login the user if OK.
902  *
903  * returns:
904  *      UPAP_AUTHNAK: Login failed.
905  *      UPAP_AUTHACK: Login succeeded.
906  * In either case, msg points to an appropriate message.
907  */
908
909 static int
910 plogin(user, passwd, msg, msglen)
911     char *user;
912     char *passwd;
913     char **msg;
914     int *msglen;
915 {
916
917 #ifdef USE_PAM
918
919     struct pam_conv pam_conversation;
920     pam_handle_t *pamh;
921     int pam_error;
922 /*
923  * Fill the pam_conversion structure
924  */
925     memset (&pam_conversation, '\0', sizeof (struct pam_conv));
926     pam_conversation.conv = &pam_conv;
927
928     pam_error = pam_start ("ppp", user, &pam_conversation, &pamh);
929
930     if (pam_error != PAM_SUCCESS) {
931         *msg = MY_PAM_STRERROR (pam_error);
932         return UPAP_AUTHNAK;
933     }
934 /*
935  * Define the fields for the credintial validation
936  */
937     (void) pam_set_item (pamh, PAM_TTY, devnam);
938     PAM_username = user;
939     PAM_password = passwd;
940 /*
941  * Validate the user
942  */
943     pam_error = pam_authenticate (pamh, PAM_SILENT);
944     if (pam_error == PAM_SUCCESS) {
945         pam_error = pam_acct_mgmt (pamh, PAM_SILENT);
946
947         /* start a session for this user. Session closed when link ends. */
948         if (pam_error == PAM_SUCCESS)
949            (void) pam_open_session (pamh, PAM_SILENT);
950     }
951
952     *msg = MY_PAM_STRERROR (pam_error);
953
954     PAM_username =
955     PAM_password = "";
956 /*
957  * Clean up the mess
958  */
959     (void) pam_end (pamh, pam_error);
960
961     if (pam_error != PAM_SUCCESS)
962         return UPAP_AUTHNAK;
963 /*
964  * Use the non-PAM methods directly
965  */
966 #else /* #ifdef USE_PAM */
967
968     struct passwd *pw;
969     char *tty;
970
971 #ifdef HAS_SHADOW
972     struct spwd *spwd;
973     struct spwd *getspnam();
974     long now;
975 #endif
976
977     pw = getpwnam(user);
978     endpwent();
979     if (pw == NULL)
980         return (UPAP_AUTHNAK);
981
982 #ifdef HAS_SHADOW
983     spwd = getspnam(user);
984     endspent();
985     if (spwd == NULL)
986         return UPAP_AUTHNAK;
987
988     /* check the age of the password entry */
989     now = time(NULL) / 86400L;
990
991     if ((spwd->sp_expire > 0 && now >= spwd->sp_expire)
992         || ((spwd->sp_max >= 0 && spwd->sp_max < 10000)
993             && spwd->sp_lstchg >= 0
994             && now >= spwd->sp_lstchg + spwd->sp_max)) {
995         warn("Password for %s has expired", user);
996         return (UPAP_AUTHNAK);
997     }
998     pw->pw_passwd = spwd->sp_pwdp;
999 #endif
1000
1001     /*
1002      * If no passwd, don't let them login.
1003      */
1004     if (pw->pw_passwd == NULL || *pw->pw_passwd == '\0'
1005         || strcmp(crypt(passwd, pw->pw_passwd), pw->pw_passwd) != 0)
1006         return (UPAP_AUTHNAK);
1007
1008     /* These functions are not enabled for PAM. The reason for this is that */
1009     /* there is not necessarily a "passwd" entry for this user. That is     */
1010     /* real purpose of 'PAM' -- to virtualize the account data from the     */
1011     /* application. If you want to do the same thing, write the entry in    */
1012     /* the 'session' hook.                                                  */
1013
1014     /*
1015      * Write a wtmp entry for this user.
1016      */
1017
1018     tty = devnam;
1019     if (strncmp(tty, "/dev/", 5) == 0)
1020         tty += 5;
1021     logwtmp(tty, user, remote_name);            /* Add wtmp login entry */
1022
1023 #if defined(_PATH_LASTLOG)
1024     {
1025             struct lastlog ll;
1026             int fd;
1027
1028             if ((fd = open(_PATH_LASTLOG, O_RDWR, 0)) >= 0) {
1029                 (void)lseek(fd, (off_t)(pw->pw_uid * sizeof(ll)), SEEK_SET);
1030                 memset((void *)&ll, 0, sizeof(ll));
1031                 (void)time(&ll.ll_time);
1032                 (void)strlcpy(ll.ll_line, tty, sizeof(ll.ll_line));
1033                 (void)write(fd, (char *)&ll, sizeof(ll));
1034                 (void)close(fd);
1035             }
1036     }
1037 #endif
1038
1039 #endif /* #ifdef USE_PAM */
1040
1041     info("user %s logged in", user);
1042     logged_in = 1;
1043
1044     return (UPAP_AUTHACK);
1045 }
1046
1047 /*
1048  * plogout - Logout the user.
1049  */
1050 static void
1051 plogout()
1052 {
1053 #ifdef USE_PAM
1054     struct pam_conv pam_conversation;
1055     pam_handle_t *pamh;
1056     int pam_error;
1057 /*
1058  * Fill the pam_conversion structure. The PAM specification states that the
1059  * session must be able to be closed by a totally different handle from which
1060  * it was created. Hold the PAM group to their own specification!
1061  */
1062     memset (&pam_conversation, '\0', sizeof (struct pam_conv));
1063     pam_conversation.conv = &pam_conv;
1064
1065     pam_error = pam_start ("ppp", user, &pam_conversation, &pamh);
1066     if (pam_error == PAM_SUCCESS) {
1067         (void) pam_set_item (pamh, PAM_TTY, devnam);
1068         (void) pam_close_session (pamh, PAM_SILENT);
1069         (void) pam_end (pamh, PAM_SUCCESS);
1070     }
1071
1072 #else
1073     char *tty;
1074
1075     tty = devnam;
1076     if (strncmp(tty, "/dev/", 5) == 0)
1077         tty += 5;
1078     logwtmp(tty, "", "");               /* Wipe out utmp logout entry */
1079 #endif
1080
1081     logged_in = 0;
1082 }
1083
1084
1085 /*
1086  * null_login - Check if a username of "" and a password of "" are
1087  * acceptable, and iff so, set the list of acceptable IP addresses
1088  * and return 1.
1089  */
1090 static int
1091 null_login(unit)
1092     int unit;
1093 {
1094     char *filename;
1095     FILE *f;
1096     int i, ret;
1097     struct wordlist *addrs;
1098     char secret[MAXWORDLEN];
1099
1100     /*
1101      * Open the file of pap secrets and scan for a suitable secret.
1102      * We don't accept a wildcard client.
1103      */
1104     filename = _PATH_UPAPFILE;
1105     addrs = NULL;
1106     f = fopen(filename, "r");
1107     if (f == NULL)
1108         return 0;
1109     check_access(f, filename);
1110
1111     i = scan_authfile(f, "", our_name, secret, &addrs, filename);
1112     ret = i >= 0 && (i & NONWILD_CLIENT) != 0 && secret[0] == 0;
1113     BZERO(secret, sizeof(secret));
1114
1115     if (ret)
1116         set_allowed_addrs(unit, addrs);
1117     else
1118         free_wordlist(addrs);
1119
1120     fclose(f);
1121     return ret;
1122 }
1123
1124
1125 /*
1126  * get_pap_passwd - get a password for authenticating ourselves with
1127  * our peer using PAP.  Returns 1 on success, 0 if no suitable password
1128  * could be found.
1129  * Assumes passwd points to MAXSECRETLEN bytes of space (if non-null).
1130  */
1131 static int
1132 get_pap_passwd(passwd)
1133     char *passwd;
1134 {
1135     char *filename;
1136     FILE *f;
1137     int ret;
1138     struct wordlist *addrs;
1139     char secret[MAXWORDLEN];
1140
1141     filename = _PATH_UPAPFILE;
1142     addrs = NULL;
1143     f = fopen(filename, "r");
1144     if (f == NULL)
1145         return 0;
1146     check_access(f, filename);
1147     ret = scan_authfile(f, user,
1148                         (remote_name[0]? remote_name: NULL),
1149                         secret, NULL, filename);
1150     fclose(f);
1151     if (ret < 0)
1152         return 0;
1153     if (passwd != NULL)
1154         strlcpy(passwd, secret, MAXSECRETLEN);
1155     BZERO(secret, sizeof(secret));
1156     return 1;
1157 }
1158
1159
1160 /*
1161  * have_pap_secret - check whether we have a PAP file with any
1162  * secrets that we could possibly use for authenticating the peer.
1163  */
1164 static int
1165 have_pap_secret(lacks_ipp)
1166     int *lacks_ipp;
1167 {
1168     FILE *f;
1169     int ret;
1170     char *filename;
1171     struct wordlist *addrs;
1172
1173     filename = _PATH_UPAPFILE;
1174     f = fopen(filename, "r");
1175     if (f == NULL)
1176         return 0;
1177
1178     ret = scan_authfile(f, (explicit_remote? remote_name: NULL), our_name,
1179                         NULL, &addrs, filename);
1180     fclose(f);
1181     if (ret >= 0 && !some_ip_ok(addrs)) {
1182         if (lacks_ipp != 0)
1183             *lacks_ipp = 1;
1184         ret = -1;
1185     }
1186     if (addrs != 0)
1187         free_wordlist(addrs);
1188
1189     return ret >= 0;
1190 }
1191
1192
1193 /*
1194  * have_chap_secret - check whether we have a CHAP file with a
1195  * secret that we could possibly use for authenticating `client'
1196  * on `server'.  Either can be the null string, meaning we don't
1197  * know the identity yet.
1198  */
1199 static int
1200 have_chap_secret(client, server, need_ip, lacks_ipp)
1201     char *client;
1202     char *server;
1203     int need_ip;
1204     int *lacks_ipp;
1205 {
1206     FILE *f;
1207     int ret;
1208     char *filename;
1209     struct wordlist *addrs;
1210
1211     filename = _PATH_CHAPFILE;
1212     f = fopen(filename, "r");
1213     if (f == NULL)
1214         return 0;
1215
1216     if (client != NULL && client[0] == 0)
1217         client = NULL;
1218     else if (server != NULL && server[0] == 0)
1219         server = NULL;
1220
1221     ret = scan_authfile(f, client, server, NULL, &addrs, filename);
1222     fclose(f);
1223     if (ret >= 0 && need_ip && !some_ip_ok(addrs)) {
1224         if (lacks_ipp != 0)
1225             *lacks_ipp = 1;
1226         ret = -1;
1227     }
1228     if (addrs != 0)
1229         free_wordlist(addrs);
1230
1231     return ret >= 0;
1232 }
1233
1234
1235 /*
1236  * get_secret - open the CHAP secret file and return the secret
1237  * for authenticating the given client on the given server.
1238  * (We could be either client or server).
1239  */
1240 int
1241 get_secret(unit, client, server, secret, secret_len, save_addrs)
1242     int unit;
1243     char *client;
1244     char *server;
1245     char *secret;
1246     int *secret_len;
1247     int save_addrs;
1248 {
1249     FILE *f;
1250     int ret, len;
1251     char *filename;
1252     struct wordlist *addrs;
1253     char secbuf[MAXWORDLEN];
1254
1255     filename = _PATH_CHAPFILE;
1256     addrs = NULL;
1257     secbuf[0] = 0;
1258
1259     f = fopen(filename, "r");
1260     if (f == NULL) {
1261         error("Can't open chap secret file %s: %m", filename);
1262         return 0;
1263     }
1264     check_access(f, filename);
1265
1266     ret = scan_authfile(f, client, server, secbuf, &addrs, filename);
1267     fclose(f);
1268     if (ret < 0)
1269         return 0;
1270
1271     if (save_addrs)
1272         set_allowed_addrs(unit, addrs);
1273
1274     len = strlen(secbuf);
1275     if (len > MAXSECRETLEN) {
1276         error("Secret for %s on %s is too long", client, server);
1277         len = MAXSECRETLEN;
1278     }
1279     BCOPY(secbuf, secret, len);
1280     BZERO(secbuf, sizeof(secbuf));
1281     *secret_len = len;
1282
1283     return 1;
1284 }
1285
1286 /*
1287  * set_allowed_addrs() - set the list of allowed addresses.
1288  */
1289 static void
1290 set_allowed_addrs(unit, addrs)
1291     int unit;
1292     struct wordlist *addrs;
1293 {
1294     int n = 0;
1295     struct wordlist *ap;
1296     struct permitted_ip *ip;
1297     char *ptr_word, *ptr_mask;
1298     struct hostent *hp;
1299     struct netent *np;
1300     u_int32_t a, mask, ah;
1301     struct ipcp_options *wo = &ipcp_wantoptions[unit];
1302     u_int32_t suggested_ip = 0;
1303
1304     if (addresses[unit] != NULL)
1305         free(addresses[unit]);
1306     addresses[unit] = NULL;
1307
1308     for (ap = addrs; ap != NULL; ap = ap->next)
1309         ++n;
1310     if (n == 0)
1311         return;
1312     ip = (struct permitted_ip *) malloc((n + 1) * sizeof(struct permitted_ip));
1313     if (ip == 0)
1314         return;
1315
1316     n = 0;
1317     for (ap = addrs; ap != NULL; ap = ap->next) {
1318         /* "-" means no addresses authorized, "*" means any address allowed */
1319         ptr_word = ap->word;
1320         if (strcmp(ptr_word, "-") == 0)
1321             break;
1322         if (strcmp(ptr_word, "*") == 0) {
1323             ip[n].permit = 1;
1324             ip[n].base = ip[n].mask = 0;
1325             ++n;
1326             break;
1327         }
1328
1329         ip[n].permit = 1;
1330         if (*ptr_word == '!') {
1331             ip[n].permit = 0;
1332             ++ptr_word;
1333         }
1334
1335         mask = ~ (u_int32_t) 0;
1336         ptr_mask = strchr (ptr_word, '/');
1337         if (ptr_mask != NULL) {
1338             int bit_count;
1339
1340             bit_count = (int) strtol (ptr_mask+1, (char **) 0, 10);
1341             if (bit_count <= 0 || bit_count > 32) {
1342                 warn("invalid address length %v in auth. address list",
1343                      ptr_mask);
1344                 continue;
1345             }
1346             *ptr_mask = '\0';
1347             mask <<= 32 - bit_count;
1348         }
1349
1350         hp = gethostbyname(ptr_word);
1351         if (hp != NULL && hp->h_addrtype == AF_INET) {
1352             a = *(u_int32_t *)hp->h_addr;
1353         } else {
1354             np = getnetbyname (ptr_word);
1355             if (np != NULL && np->n_addrtype == AF_INET) {
1356                 a = htonl (*(u_int32_t *)np->n_net);
1357                 if (ptr_mask == NULL) {
1358                     /* calculate appropriate mask for net */
1359                     ah = ntohl(a);
1360                     if (IN_CLASSA(ah))
1361                         mask = IN_CLASSA_NET;
1362                     else if (IN_CLASSB(ah))
1363                         mask = IN_CLASSB_NET;
1364                     else if (IN_CLASSC(ah))
1365                         mask = IN_CLASSC_NET;
1366                 }
1367             } else {
1368                 a = inet_addr (ptr_word);
1369             }
1370         }
1371
1372         if (ptr_mask != NULL)
1373             *ptr_mask = '/';
1374
1375         if (a == (u_int32_t)-1L)
1376             warn("unknown host %s in auth. address list", ap->word);
1377         else {
1378             ip[n].mask = htonl(mask);
1379             ip[n].base = a & ip[n].mask;
1380             ++n;
1381             if (~mask == 0 && suggested_ip == 0)
1382                 suggested_ip = a;
1383         }
1384     }
1385
1386     ip[n].permit = 0;           /* make the last entry forbid all addresses */
1387     ip[n].base = 0;             /* to terminate the list */
1388     ip[n].mask = 0;
1389
1390     addresses[unit] = ip;
1391
1392     /*
1393      * If the address given for the peer isn't authorized, or if
1394      * the user hasn't given one, AND there is an authorized address
1395      * which is a single host, then use that if we find one.
1396      */
1397     if (suggested_ip != 0
1398         && (wo->hisaddr == 0 || !auth_ip_addr(unit, wo->hisaddr)))
1399         wo->hisaddr = suggested_ip;
1400 }
1401
1402 /*
1403  * auth_ip_addr - check whether the peer is authorized to use
1404  * a given IP address.  Returns 1 if authorized, 0 otherwise.
1405  */
1406 int
1407 auth_ip_addr(unit, addr)
1408     int unit;
1409     u_int32_t addr;
1410 {
1411     if (addresses[unit] == NULL) {
1412         if (auth_required)
1413             return 0;           /* no addresses authorized */
1414         return allow_any_ip || !have_route_to(addr);
1415     }
1416     return ip_addr_check(addr, addresses[unit]);
1417 }
1418
1419 static int
1420 ip_addr_check(addr, addrs)
1421     u_int32_t addr;
1422     struct permitted_ip *addrs;
1423 {
1424     /* don't allow loopback or multicast address */
1425     if (bad_ip_adrs(addr))
1426         return 0;
1427
1428     for (; ; ++addrs)
1429         if ((addr & addrs->mask) == addrs->base)
1430             return addrs->permit;
1431 }
1432
1433 /*
1434  * bad_ip_adrs - return 1 if the IP address is one we don't want
1435  * to use, such as an address in the loopback net or a multicast address.
1436  * addr is in network byte order.
1437  */
1438 int
1439 bad_ip_adrs(addr)
1440     u_int32_t addr;
1441 {
1442     addr = ntohl(addr);
1443     return (addr >> IN_CLASSA_NSHIFT) == IN_LOOPBACKNET
1444         || IN_MULTICAST(addr) || IN_BADCLASS(addr);
1445 }
1446
1447 /*
1448  * some_ip_ok - check a wordlist to see if it authorizes any
1449  * IP address(es).
1450  */
1451 static int
1452 some_ip_ok(addrs)
1453     struct wordlist *addrs;
1454 {
1455     for (; addrs != 0; addrs = addrs->next) {
1456         if (strcmp(addrs->word, "-") == 0)
1457             break;
1458         if (addrs->word[0] != '!')
1459             return 1;           /* some IP address is allowed */
1460     }
1461     return 0;
1462 }
1463
1464 /*
1465  * check_access - complain if a secret file has too-liberal permissions.
1466  */
1467 static void
1468 check_access(f, filename)
1469     FILE *f;
1470     char *filename;
1471 {
1472     struct stat sbuf;
1473
1474     if (fstat(fileno(f), &sbuf) < 0) {
1475         warn("cannot stat secret file %s: %m", filename);
1476     } else if ((sbuf.st_mode & (S_IRWXG | S_IRWXO)) != 0) {
1477         warn("Warning - secret file %s has world and/or group access",
1478              filename);
1479     }
1480 }
1481
1482
1483 /*
1484  * scan_authfile - Scan an authorization file for a secret suitable
1485  * for authenticating `client' on `server'.  The return value is -1
1486  * if no secret is found, otherwise >= 0.  The return value has
1487  * NONWILD_CLIENT set if the secret didn't have "*" for the client, and
1488  * NONWILD_SERVER set if the secret didn't have "*" for the server.
1489  * Any following words on the line (i.e. address authorization
1490  * info) are placed in a wordlist and returned in *addrs.
1491  * We assume secret is NULL or points to MAXWORDLEN bytes of space.
1492  */
1493 static int
1494 scan_authfile(f, client, server, secret, addrs, filename)
1495     FILE *f;
1496     char *client;
1497     char *server;
1498     char *secret;
1499     struct wordlist **addrs;
1500     char *filename;
1501 {
1502     int newline, xxx;
1503     int got_flag, best_flag;
1504     FILE *sf;
1505     struct wordlist *ap, *addr_list, *alist, *alast;
1506     char word[MAXWORDLEN];
1507     char atfile[MAXWORDLEN];
1508     char lsecret[MAXWORDLEN];
1509
1510     if (addrs != NULL)
1511         *addrs = NULL;
1512     addr_list = NULL;
1513     if (!getword(f, word, &newline, filename))
1514         return -1;              /* file is empty??? */
1515     newline = 1;
1516     best_flag = -1;
1517     for (;;) {
1518         /*
1519          * Skip until we find a word at the start of a line.
1520          */
1521         while (!newline && getword(f, word, &newline, filename))
1522             ;
1523         if (!newline)
1524             break;              /* got to end of file */
1525
1526         /*
1527          * Got a client - check if it's a match or a wildcard.
1528          */
1529         got_flag = 0;
1530         if (client != NULL && strcmp(word, client) != 0 && !ISWILD(word)) {
1531             newline = 0;
1532             continue;
1533         }
1534         if (!ISWILD(word))
1535             got_flag = NONWILD_CLIENT;
1536
1537         /*
1538          * Now get a server and check if it matches.
1539          */
1540         if (!getword(f, word, &newline, filename))
1541             break;
1542         if (newline)
1543             continue;
1544         if (!ISWILD(word)) {
1545             if (server != NULL && strcmp(word, server) != 0)
1546                 continue;
1547             got_flag |= NONWILD_SERVER;
1548         }
1549
1550         /*
1551          * Got some sort of a match - see if it's better than what
1552          * we have already.
1553          */
1554         if (got_flag <= best_flag)
1555             continue;
1556
1557         /*
1558          * Get the secret.
1559          */
1560         if (!getword(f, word, &newline, filename))
1561             break;
1562         if (newline)
1563             continue;
1564
1565         /*
1566          * Special syntax: @filename means read secret from file.
1567          */
1568         if (word[0] == '@') {
1569             strlcpy(atfile, word+1, sizeof(atfile));
1570             if ((sf = fopen(atfile, "r")) == NULL) {
1571                 warn("can't open indirect secret file %s", atfile);
1572                 continue;
1573             }
1574             check_access(sf, atfile);
1575             if (!getword(sf, word, &xxx, atfile)) {
1576                 warn("no secret in indirect secret file %s", atfile);
1577                 fclose(sf);
1578                 continue;
1579             }
1580             fclose(sf);
1581         }
1582         if (secret != NULL)
1583             strlcpy(lsecret, word, sizeof(lsecret));
1584
1585         /*
1586          * Now read address authorization info and make a wordlist.
1587          */
1588         alist = alast = NULL;
1589         for (;;) {
1590             if (!getword(f, word, &newline, filename) || newline)
1591                 break;
1592             ap = (struct wordlist *) malloc(sizeof(struct wordlist));
1593             if (ap == NULL)
1594                 novm("authorized addresses");
1595             ap->next = NULL;
1596             ap->word = strdup(word);
1597             if (ap->word == NULL)
1598                 novm("authorized address");
1599             if (alist == NULL)
1600                 alist = ap;
1601             else
1602                 alast->next = ap;
1603             alast = ap;
1604         }
1605
1606         /*
1607          * This is the best so far; remember it.
1608          */
1609         best_flag = got_flag;
1610         if (addr_list)
1611             free_wordlist(addr_list);
1612         addr_list = alist;
1613         if (secret != NULL)
1614             strlcpy(secret, lsecret, MAXWORDLEN);
1615
1616         if (!newline)
1617             break;
1618     }
1619
1620     if (addrs != NULL)
1621         *addrs = addr_list;
1622     else if (addr_list != NULL)
1623         free_wordlist(addr_list);
1624
1625     return best_flag;
1626 }
1627
1628 /*
1629  * free_wordlist - release memory allocated for a wordlist.
1630  */
1631 static void
1632 free_wordlist(wp)
1633     struct wordlist *wp;
1634 {
1635     struct wordlist *next;
1636
1637     while (wp != NULL) {
1638         next = wp->next;
1639         free(wp);
1640         wp = next;
1641     }
1642 }
1643
1644 /*
1645  * auth_script_done - called when the auth-up or auth-down script
1646  * has finished.
1647  */
1648 static void
1649 auth_script_done(arg)
1650     void *arg;
1651 {
1652     auth_script_pid = 0;
1653     switch (auth_script_state) {
1654     case s_up:
1655         if (auth_state == s_down) {
1656             auth_script_state = s_down;
1657             auth_script(_PATH_AUTHDOWN);
1658         }
1659         break;
1660     case s_down:
1661         if (auth_state == s_up) {
1662             auth_script_state = s_up;
1663             auth_script(_PATH_AUTHUP);
1664         }
1665         break;
1666     }
1667 }
1668
1669 /*
1670  * auth_script - execute a script with arguments
1671  * interface-name peer-name real-user tty speed
1672  */
1673 static void
1674 auth_script(script)
1675     char *script;
1676 {
1677     char strspeed[32];
1678     struct passwd *pw;
1679     char struid[32];
1680     char *user_name;
1681     char *argv[8];
1682
1683     if ((pw = getpwuid(getuid())) != NULL && pw->pw_name != NULL)
1684         user_name = pw->pw_name;
1685     else {
1686         slprintf(struid, sizeof(struid), "%d", getuid());
1687         user_name = struid;
1688     }
1689     slprintf(strspeed, sizeof(strspeed), "%d", baud_rate);
1690
1691     argv[0] = script;
1692     argv[1] = ifname;
1693     argv[2] = peer_authname;
1694     argv[3] = user_name;
1695     argv[4] = devnam;
1696     argv[5] = strspeed;
1697     argv[6] = NULL;
1698
1699     auth_script_pid = run_program(script, argv, 0, auth_script_done, NULL);
1700 }