8a98b4f28d636bb882af921b8e566ee02fc36e85
[bcm963xx.git] / userapps / opensource / ppp / pppoe / 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 #define RCSID   "$Id: auth.c,v 1.69 2001/03/12 22:50:01 paulus Exp $"
36
37 #include <stdio.h>
38 #include <stddef.h>
39 #include <stdlib.h>
40 #include <unistd.h>
41 #include <pwd.h>
42 #include <grp.h>
43 #include <string.h>
44 #include <sys/types.h>
45 #include <sys/stat.h>
46 #include <sys/socket.h>
47 #include <time.h>
48 #include <utmp.h>
49 #include <fcntl.h>
50 #if defined(_PATH_LASTLOG) && defined(_linux_)
51 #include <lastlog.h>
52 #endif
53
54 #include <netdb.h>
55 #include <netinet/in.h>
56 #include <arpa/inet.h>
57
58 // brcm
59 #include <syscall.h>
60 #include <syslog.h>
61 #ifdef USE_PAM
62 #include <security/pam_appl.h>
63 #endif
64
65 #ifdef HAS_SHADOW
66 #include <shadow.h>
67 #ifndef PW_PPP
68 #define PW_PPP PW_LOGIN
69 #endif
70 #endif
71
72 #include "pppd.h"
73 #include "fsm.h"
74 #include "lcp.h"
75 #include "ipcp.h"
76 #include "upap.h"
77 #include "chap.h"
78 #ifdef CBCP_SUPPORT
79 #include "cbcp.h"
80 #endif
81 #include "pathnames.h"
82
83 static const char rcsid[] = RCSID;
84
85 /* Bits in scan_authfile return value */
86 #define NONWILD_SERVER  1
87 #define NONWILD_CLIENT  2
88
89 #define ISWILD(word)    (word[0] == '*' && word[1] == 0)
90
91 /* The name by which the peer authenticated itself to us. */
92 char peer_authname[MAXNAMELEN];
93
94 /* Records which authentication operations haven't completed yet. */
95 static int auth_pending[NUM_PPP];
96
97 /* Set if we have successfully called plogin() */
98 static int logged_in;
99
100 /* List of addresses which the peer may use. */
101 static struct permitted_ip *addresses[NUM_PPP];
102
103 /* Wordlist giving addresses which the peer may use
104    without authenticating itself. */
105 static struct wordlist *noauth_addrs;
106
107 /* Extra options to apply, from the secrets file entry for the peer. */
108 static struct wordlist *extra_options;
109
110 /* Number of network protocols which we have opened. */
111 static int num_np_open;
112
113 /* Number of network protocols which have come up. */
114 static int num_np_up;
115
116 /* Set if we got the contents of passwd[] from the pap-secrets file. */
117 static int passwd_from_file;
118
119 /* Set if we require authentication only because we have a default route. */
120 static bool default_auth;
121
122 /* Hook to enable a plugin to control the idle time limit */
123 int (*idle_time_hook) __P((struct ppp_idle *)) = NULL;
124
125 /* Hook for a plugin to say whether we can possibly authenticate any peer */
126 int (*pap_check_hook) __P((void)) = NULL;
127
128 /* Hook for a plugin to check the PAP user and password */
129 int (*pap_auth_hook) __P((char *user, char *passwd, char **msgp,
130                           struct wordlist **paddrs,
131                           struct wordlist **popts)) = NULL;
132
133 /* Hook for a plugin to know about the PAP user logout */
134 void (*pap_logout_hook) __P((void)) = NULL;
135
136 /* Hook for a plugin to get the PAP password for authenticating us */
137 int (*pap_passwd_hook) __P((char *user, char *passwd)) = NULL;
138
139 /*
140  * This is used to ensure that we don't start an auth-up/down
141  * script while one is already running.
142  */
143 enum script_state {
144     s_down,
145     s_up
146 };
147
148 static enum script_state auth_state = s_down;
149 static enum script_state auth_script_state = s_down;
150 static pid_t auth_script_pid = 0;
151
152 static int used_login;          /* peer authenticated against login database */
153
154 /*
155  * Option variables.
156  */
157 bool uselogin = 0;              /* Use /etc/passwd for checking PAP */
158 bool cryptpap = 0;              /* Passwords in pap-secrets are encrypted */
159 bool refuse_pap = 0;            /* Don't wanna auth. ourselves with PAP */
160 bool refuse_chap = 0;           /* Don't wanna auth. ourselves with CHAP */
161 bool usehostname = 0;           /* Use hostname for our_name */
162 bool auth_required = 0;         /* Always require authentication from peer */
163 bool allow_any_ip = 0;          /* Allow peer to use any IP address */
164 bool explicit_remote = 0;       /* User specified explicit remote name */
165 char remote_name[MAXNAMELEN];   /* Peer's name for authentication */
166
167 static char *uafname;           /* name of most recent +ua file */
168
169 /* Bits in auth_pending[] */
170 #define PAP_WITHPEER    1
171 #define PAP_PEER        2
172 #define CHAP_WITHPEER   4
173 #define CHAP_PEER       8
174
175 extern char *crypt __P((const char *, const char *));
176
177 /* Prototypes for procedures local to this file. */
178
179 static void network_phase __P((int));
180 static void check_idle __P((void *));
181 // brcm
182 static void check_link __P((void *));
183 static void check_lan_link __P((void *));
184 static void connect_time_expired __P((void *));
185 static int  plogin __P((char *, char *, char **));
186 static void plogout __P((void));
187 static int  null_login __P((int));
188 static int  get_pap_passwd __P((char *));
189 static int  have_pap_secret __P((int *));
190 static int  have_chap_secret __P((char *, char *, int, int *));
191 static int  ip_addr_check __P((u_int32_t, struct permitted_ip *));
192 static int  scan_authfile __P((FILE *, char *, char *, char *,
193                                struct wordlist **, struct wordlist **,
194                                char *));
195 static void free_wordlist __P((struct wordlist *));
196 static void auth_script __P((char *));
197 static void auth_script_done __P((void *));
198 static void set_allowed_addrs __P((int, struct wordlist *, struct wordlist *));
199 static int  some_ip_ok __P((struct wordlist *));
200 static int  setupapfile __P((char **));
201 static int  privgroup __P((char **));
202 static int  set_noauth_addr __P((char **));
203 static void check_access __P((FILE *, char *));
204 static int  wordlist_count __P((struct wordlist *));
205
206 /*
207  * Authentication-related options.
208  */
209 option_t auth_options[] = {
210     { "auth", o_bool, &auth_required,
211       "Require authentication from peer", OPT_PRIO | 1 },
212     { "noauth", o_bool, &auth_required,
213       "Don't require peer to authenticate", OPT_PRIOSUB | OPT_PRIV,
214       &allow_any_ip },
215     { "require-pap", o_bool, &lcp_wantoptions[0].neg_upap,
216       "Require PAP authentication from peer",
217       OPT_PRIOSUB | 1, &auth_required },
218     { "+pap", o_bool, &lcp_wantoptions[0].neg_upap,
219       "Require PAP authentication from peer",
220       OPT_ALIAS | OPT_PRIOSUB | 1, &auth_required },
221     { "require-chap", o_bool, &lcp_wantoptions[0].neg_chap,
222       "Require CHAP authentication from peer",
223       OPT_PRIOSUB | 1, &auth_required },
224     { "+chap", o_bool, &lcp_wantoptions[0].neg_chap,
225       "Require CHAP authentication from peer",
226       OPT_ALIAS | OPT_PRIOSUB | 1, &auth_required },
227
228     { "refuse-pap", o_bool, &refuse_pap,
229       "Don't agree to auth to peer with PAP", 1 },
230     { "-pap", o_bool, &refuse_pap,
231       "Don't allow PAP authentication with peer", OPT_ALIAS | 1 },
232
233     { "refuse-chap", o_bool, &refuse_chap,
234       "Don't agree to auth to peer with CHAP", 1 },
235     { "-chap", o_bool, &refuse_chap,
236       "Don't allow CHAP authentication with peer", OPT_ALIAS | 1 },
237
238     { "name", o_string, our_name,
239       "Set local name for authentication",
240       OPT_PRIO | OPT_PRIV | OPT_STATIC, NULL, MAXNAMELEN },
241
242     { "+ua", o_special, (void *)setupapfile,
243       "Get PAP user and password from file",
244       OPT_PRIO | OPT_A2STRVAL, &uafname },
245
246     { "user", o_string, user,
247       "Set name for auth with peer", OPT_PRIO | OPT_STATIC, NULL, MAXNAMELEN },
248
249     { "password", o_string, passwd,
250       "Password for authenticating us to the peer",
251       OPT_PRIO | OPT_STATIC | OPT_HIDE, NULL, MAXSECRETLEN },
252
253     { "usehostname", o_bool, &usehostname,
254       "Must use hostname for authentication", 1 },
255
256     { "remotename", o_string, remote_name,
257       "Set remote name for authentication", OPT_PRIO | OPT_STATIC,
258       &explicit_remote, MAXNAMELEN },
259
260     { "login", o_bool, &uselogin,
261       "Use system password database for PAP", 1 },
262
263     { "papcrypt", o_bool, &cryptpap,
264       "PAP passwords are encrypted", 1 },
265
266     { "privgroup", o_special, (void *)privgroup,
267       "Allow group members to use privileged options", OPT_PRIV | OPT_A2LIST },
268
269     { "allow-ip", o_special, (void *)set_noauth_addr,
270       "Set IP address(es) which can be used without authentication",
271       OPT_PRIV | OPT_A2LIST },
272
273     { NULL }
274 };
275
276 /*
277  * setupapfile - specifies UPAP info for authenticating with peer.
278  */
279 static int
280 setupapfile(argv)
281     char **argv;
282 {
283     FILE *ufile;
284     int l;
285     char u[MAXNAMELEN], p[MAXSECRETLEN];
286     char *fname;
287
288     lcp_allowoptions[0].neg_upap = 1;
289
290     /* open user info file */
291     fname = strdup(*argv);
292     if (fname == NULL)
293         novm("+ua file name");
294     seteuid(getuid());
295     ufile = fopen(fname, "r");
296     seteuid(0);
297     if (ufile == NULL) {
298         option_error("unable to open user login data file %s", fname);
299         return 0;
300     }
301     check_access(ufile, fname);
302     uafname = fname;
303
304     /* get username */
305     if (fgets(u, MAXNAMELEN - 1, ufile) == NULL
306         || fgets(p, MAXSECRETLEN - 1, ufile) == NULL){
307         option_error("unable to read user login data file %s", fname);
308         return 0;
309     }
310     fclose(ufile);
311
312     /* get rid of newlines */
313     l = strlen(u);
314     if (l > 0 && u[l-1] == '\n')
315         u[l-1] = 0;
316     l = strlen(p);
317     if (l > 0 && p[l-1] == '\n')
318         p[l-1] = 0;
319
320     if (override_value("user", option_priority, fname))
321         strlcpy(user, u, sizeof(user));
322     if (override_value("passwd", option_priority, fname))
323         strlcpy(passwd, p, sizeof(passwd));
324
325     return (1);
326 }
327
328
329 /*
330  * privgroup - allow members of the group to have privileged access.
331  */
332 static int
333 privgroup(argv)
334     char **argv;
335 {
336     struct group *g;
337     int i;
338
339     g = getgrnam(*argv);
340     if (g == 0) {
341         option_error("group %s is unknown", *argv);
342         return 0;
343     }
344     for (i = 0; i < ngroups; ++i) {
345         if (groups[i] == g->gr_gid) {
346             privileged = 1;
347             break;
348         }
349     }
350     return 1;
351 }
352
353
354 /*
355  * set_noauth_addr - set address(es) that can be used without authentication.
356  * Equivalent to specifying an entry like `"" * "" addr' in pap-secrets.
357  */
358 static int
359 set_noauth_addr(argv)
360     char **argv;
361 {
362     char *addr = *argv;
363     int l = strlen(addr) + 1;
364     struct wordlist *wp;
365
366     wp = (struct wordlist *) malloc(sizeof(struct wordlist) + l);
367     if (wp == NULL)
368         novm("allow-ip argument");
369     wp->word = (char *) (wp + 1);
370     wp->next = noauth_addrs;
371     BCOPY(addr, wp->word, l);
372     noauth_addrs = wp;
373     return 1;
374 }
375
376
377 /*
378  * An Open on LCP has requested a change from Dead to Establish phase.
379  * Do what's necessary to bring the physical layer up.
380  */
381 void
382 link_required(unit)
383     int unit;
384 {
385 }
386
387 /*
388  * LCP has terminated the link; go to the Dead phase and take the
389  * physical layer down.
390  */
391 void
392 link_terminated(unit)
393     int unit;
394 {
395     if (phase == PHASE_DEAD)
396         return;
397     if (pap_logout_hook) {
398         pap_logout_hook();
399     } else {
400         if (logged_in)
401             plogout();
402     }
403     new_phase(PHASE_DEAD);
404     notice("Connection terminated.");
405 }
406
407 /*
408  * LCP has gone down; it will either die or try to re-establish.
409  */
410 void
411 link_down(unit)
412     int unit;
413 {
414     int i;
415     struct protent *protp;
416
417     auth_state = s_down;
418     if (auth_script_state == s_up && auth_script_pid == 0) {
419         update_link_stats(unit);
420         auth_script_state = s_down;
421         auth_script(_PATH_AUTHDOWN);
422     }
423     for (i = 0; (protp = protocols[i]) != NULL; ++i) {
424         if (!protp->enabled_flag)
425             continue;
426         if (protp->protocol != PPP_LCP && protp->lowerdown != NULL)
427             (*protp->lowerdown)(unit);
428         if (protp->protocol < 0xC000 && protp->close != NULL)
429             (*protp->close)(unit, "LCP down");
430     }
431     num_np_open = 0;
432     num_np_up = 0;
433     if (phase != PHASE_DEAD)
434         new_phase(PHASE_TERMINATE);
435 }
436
437 /*
438  * The link is established.
439  * Proceed to the Dead, Authenticate or Network phase as appropriate.
440  */
441 void
442 link_established(unit)
443     int unit;
444 {
445     int auth;
446     lcp_options *wo = &lcp_wantoptions[unit];
447     lcp_options *go = &lcp_gotoptions[unit];
448     lcp_options *ho = &lcp_hisoptions[unit];
449     int i;
450     struct protent *protp;
451
452     /*
453      * Tell higher-level protocols that LCP is up.
454      */
455     for (i = 0; (protp = protocols[i]) != NULL; ++i)
456         if (protp->protocol != PPP_LCP && protp->enabled_flag
457             && protp->lowerup != NULL)
458             (*protp->lowerup)(unit);
459
460     if (auth_required && !(go->neg_chap || go->neg_upap)) {
461         /*
462          * We wanted the peer to authenticate itself, and it refused:
463          * if we have some address(es) it can use without auth, fine,
464          * otherwise treat it as though it authenticated with PAP using
465          * a username * of "" and a password of "".  If that's not OK,
466          * boot it out.
467          */
468         if (noauth_addrs != NULL) {
469             set_allowed_addrs(unit, NULL, NULL);
470         } else if (!wo->neg_upap || uselogin || !null_login(unit)) {
471             warn("peer refused to authenticate: terminating link");
472             lcp_close(unit, "peer refused to authenticate");
473             status = EXIT_PEER_AUTH_FAILED;
474             return;
475         }
476     }
477
478     new_phase(PHASE_AUTHENTICATE);
479     used_login = 0;
480     auth = 0;
481     if (go->neg_chap) {
482         ChapAuthPeer(unit, our_name, go->chap_mdtype);
483         auth |= CHAP_PEER;
484     } else if (go->neg_upap) {
485         upap_authpeer(unit);
486         auth |= PAP_PEER;
487     }
488     if (ho->neg_chap) {
489         ChapAuthWithPeer(unit, user, ho->chap_mdtype);
490         auth |= CHAP_WITHPEER;
491     } else if (ho->neg_upap) {
492         if (passwd[0] == 0) {
493             passwd_from_file = 1;
494             if (!get_pap_passwd(passwd))
495                 error("No secret found for PAP login");
496         }
497         upap_authwithpeer(unit, user, passwd);
498         auth |= PAP_WITHPEER;
499     }
500     auth_pending[unit] = auth;
501
502     if (!auth)
503         network_phase(unit);
504 }
505
506 /*
507  * Proceed to the network phase.
508  */
509 static void
510 network_phase(unit)
511     int unit;
512 {
513     lcp_options *go = &lcp_gotoptions[unit];
514
515     /*
516      * If the peer had to authenticate, run the auth-up script now.
517      */
518     if (go->neg_chap || go->neg_upap) {
519         auth_state = s_up;
520         if (auth_script_state == s_down && auth_script_pid == 0) {
521             auth_script_state = s_up;
522             auth_script(_PATH_AUTHUP);
523         }
524     }
525
526 #ifdef CBCP_SUPPORT
527     /*
528      * If we negotiated callback, do it now.
529      */
530     if (go->neg_cbcp) {
531         new_phase(PHASE_CALLBACK);
532         (*cbcp_protent.open)(unit);
533         return;
534     }
535 #endif
536
537     /*
538      * Process extra options from the secrets file
539      */
540 // brcm
541 #if 0
542     if (extra_options) {
543         options_from_list(extra_options, 1);
544         free_wordlist(extra_options);
545         extra_options = 0;
546     }
547 #endif
548     start_networks();
549 }
550
551 void
552 start_networks()
553 {
554     int i;
555     struct protent *protp;
556
557     new_phase(PHASE_NETWORK);
558
559 #ifdef HAVE_MULTILINK
560     if (multilink) {
561         if (mp_join_bundle()) {
562             if (updetach && !nodetach)
563                 detach();
564             return;
565         }
566     }
567 #endif /* HAVE_MULTILINK */
568
569 #ifdef PPP_FILTER
570     if (!demand)
571         set_filters(&pass_filter, &active_filter);
572 #endif
573     for (i = 0; (protp = protocols[i]) != NULL; ++i)
574         if (protp->protocol < 0xC000 && protp->enabled_flag
575             && protp->open != NULL) {
576             (*protp->open)(0);
577             if (protp->protocol != PPP_CCP)
578                 ++num_np_open;
579         }
580
581     if (num_np_open == 0)
582         /* nothing to do */
583         lcp_close(0, "No network protocols running");
584 }
585
586 /*
587  * The peer has failed to authenticate himself using `protocol'.
588  */
589 void
590 auth_peer_fail(unit, protocol)
591     int unit, protocol;
592 {
593     /*
594      * Authentication failure: take the link down
595      */
596     lcp_close(unit, "Authentication failed");
597     status = EXIT_PEER_AUTH_FAILED;
598 }
599
600 /*
601  * The peer has been successfully authenticated using `protocol'.
602  */
603 void
604 auth_peer_success(unit, protocol, name, namelen)
605     int unit, protocol;
606     char *name;
607     int namelen;
608 {
609     int bit;
610
611     switch (protocol) {
612     case PPP_CHAP:
613         bit = CHAP_PEER;
614         break;
615     case PPP_PAP:
616         bit = PAP_PEER;
617         break;
618     default:
619         warn("auth_peer_success: unknown protocol %x", protocol);
620         return;
621     }
622
623     /*
624      * Save the authenticated name of the peer for later.
625      */
626     if (namelen > sizeof(peer_authname) - 1)
627         namelen = sizeof(peer_authname) - 1;
628     BCOPY(name, peer_authname, namelen);
629     peer_authname[namelen] = 0;
630     script_setenv("PEERNAME", peer_authname, 0);
631
632     /*
633      * If there is no more authentication still to be done,
634      * proceed to the network (or callback) phase.
635      */
636     if ((auth_pending[unit] &= ~bit) == 0)
637         network_phase(unit);
638 }
639
640 /*
641  * We have failed to authenticate ourselves to the peer using `protocol'.
642  */
643 void
644 auth_withpeer_fail(unit, protocol)
645     int unit, protocol;
646 {
647     if (passwd_from_file)
648         BZERO(passwd, MAXSECRETLEN);
649     /*
650      * We've failed to authenticate ourselves to our peer.
651      * Some servers keep sending CHAP challenges, but there
652      * is no point in persisting without any way to get updated
653      * authentication secrets.
654      */
655     lcp_close(unit, "Failed to authenticate ourselves to peer");
656     status = EXIT_AUTH_TOPEER_FAILED;
657 // brcm
658     if ((strlen(user) > 0) || autoscanP2) {
659     printf("PPP: Authenication failed.\n");
660     create_msg(BCM_PPPOE_AUTH_FAILED); 
661     syslog(LOG_ERR,"User name and password authentication failed.\n");
662     }
663     persist=0;
664 }
665
666 /*
667  * We have successfully authenticated ourselves with the peer using `protocol'.
668  */
669 void
670 auth_withpeer_success(unit, protocol)
671     int unit, protocol;
672 {
673     int bit;
674
675     switch (protocol) {
676     case PPP_CHAP:
677         bit = CHAP_WITHPEER;
678         break;
679     case PPP_PAP:
680         if (passwd_from_file)
681             BZERO(passwd, MAXSECRETLEN);
682         bit = PAP_WITHPEER;
683         break;
684     default:
685         warn("auth_withpeer_success: unknown protocol %x", protocol);
686         bit = 0;
687     }
688
689     /*
690      * If there is no more authentication still being done,
691      * proceed to the network (or callback) phase.
692      */
693     if ((auth_pending[unit] &= ~bit) == 0)
694         network_phase(unit);
695 }
696
697
698 /*
699  * np_up - a network protocol has come up.
700  */
701 void
702 np_up(unit, proto)
703     int unit, proto;
704 {
705     int tlim;
706
707     if (num_np_up == 0) {
708         /*
709          * At this point we consider that the link has come up successfully.
710          */
711         status = EXIT_OK;
712         unsuccess = 0;
713         new_phase(PHASE_RUNNING);
714
715         if (idle_time_hook != 0)
716             tlim = (*idle_time_hook)(NULL);
717         else
718             tlim = idle_time_limit;
719         if (tlim > 0)
720             TIMEOUT(check_idle, NULL, tlim);
721
722         // brcm
723         TIMEOUT(check_link, NULL, 3);
724
725         // brcm
726         if (ipext)
727             TIMEOUT(check_lan_link, NULL, 5);
728
729         /*
730          * Set a timeout to close the connection once the maximum
731          * connect time has expired.
732          */
733         if (maxconnect > 0)
734             TIMEOUT(connect_time_expired, 0, maxconnect);
735
736         /*
737          * Detach now, if the updetach option was given.
738          */
739         if (updetach && !nodetach)
740             detach();
741     }
742     ++num_np_up;
743 }
744
745 /*
746  * np_down - a network protocol has gone down.
747  */
748 void
749 np_down(unit, proto)
750     int unit, proto;
751 {
752     if (--num_np_up == 0) {
753         UNTIMEOUT(check_idle, NULL);
754         // brcm
755         UNTIMEOUT(check_link, NULL);
756         if (ipext)
757             UNTIMEOUT(check_lan_link, NULL);
758         new_phase(PHASE_NETWORK);
759     }
760 }
761
762 /*
763  * np_finished - a network protocol has finished using the link.
764  */
765 void
766 np_finished(unit, proto)
767     int unit, proto;
768 {
769     if (--num_np_open <= 0) {
770         /* no further use for the link: shut up shop. */
771         lcp_close(0, "No network protocols running");
772     }
773 }
774
775 /*
776  * check_idle - check whether the link has been idle for long
777  * enough that we can shut it down.
778  */
779 static void
780 check_idle(arg)
781     void *arg;
782 {
783     struct ppp_idle idle;
784     time_t itime;
785     int tlim;
786
787     if (!get_idle_time(0, &idle))
788         return;
789     if (idle_time_hook != 0) {
790         tlim = idle_time_hook(&idle);
791     } else {
792         tlim = idle_time_limit - idle.xmit_idle;
793         itime = MIN(idle.xmit_idle, idle.recv_idle);
794         tlim = idle_time_limit - itime;
795     }
796     if (tlim <= 0) {
797         /* link is idle: shut it down. */
798         notice("Terminating connection due to lack of activity.");
799         lcp_close(0, "Link inactive");
800         need_holdoff = 0;
801         status = EXIT_IDLE_TIMEOUT;
802         // brcm
803         redisconn = 0;
804         sprintf(oldsession, "%s", "");
805     } else {
806         TIMEOUT(check_idle, NULL, tlim);
807     }
808 }
809
810 // brcm
811 int link_up()
812 {
813 /*
814     FILE * fd = NULL;
815     if ((fd=fopen("/var/run/wanup", "r"))) {
816         fclose(fd);
817         return 1;
818     }
819     else
820         return 0;
821 */
822     FILE * fd = NULL;
823     char path[128]="";
824     char data[8];
825
826     sprintf(path, "%s/%s/%s", "/proc/var/fyi/wan", session_path, "wanup");
827     //printf("=== %s ===\n", path);
828
829     if (fd=fopen(path, "r")) {
830         fgets(data, 8, fd);
831         fclose(fd);
832         //printf("data=%x\n", data[0]);
833         if (strstr(data, "1"))
834             return 1;
835         else
836             return 0;
837         return 1;
838     }
839     else
840         return 0;
841 }
842
843
844 // brcm
845 static void
846 check_link(arg)
847     void *arg;
848 {
849     if (!link_up()) {
850         /* link is idle: shut it down. */
851         notice("Terminating connection due to link down.");
852         lcp_close(0, "Link down");
853         need_holdoff = 0;
854         status = EXIT_IDLE_TIMEOUT;
855     } else {
856         UNTIMEOUT(check_link, NULL);
857         TIMEOUT(check_link, NULL, 3);
858     }
859 }
860
861 int lan_pending_cur=0;
862 int lan_pending_max=36;
863 int lan_state=0;
864
865
866 int lan_link_up()
867 {
868     FILE * fd = NULL;
869     if ((fd=fopen("/var/run/ethup", "r"))) {
870         fclose(fd);
871         lan_state=1;
872         return 1;
873     }
874     else if ((fd=fopen("/var/run/usbup", "r"))) {
875         fclose(fd);
876         lan_state=1;
877         return 1;
878     }
879     else {
880         lan_state=0;
881         return 0;
882     }
883 }
884
885
886 static void
887 check_lan_link(arg)
888     void *arg;
889 {
890     if (!lan_link_up()) {
891         lan_pending_cur++;
892         //printf("LAN link down %d ....\n", lan_pending_cur);
893         if (lan_pending_cur >= lan_pending_max) {
894             /* link is idle: shut it down. */
895             lan_pending_cur=0;
896             notice("Terminating connection due to link down.");
897             lcp_close(0, "Link down");
898             need_holdoff = 0;
899             status = EXIT_IDLE_TIMEOUT;
900         }
901         UNTIMEOUT(check_lan_link, NULL);
902         TIMEOUT(check_lan_link, NULL, 5);
903     } else {
904         //printf("LAN link up ....\n");
905         lan_pending_cur=0;
906         UNTIMEOUT(check_lan_link, NULL);
907         TIMEOUT(check_lan_link, NULL, 5);
908     }
909 }
910
911 /*
912  * connect_time_expired - log a message and close the connection.
913  */
914 static void
915 connect_time_expired(arg)
916     void *arg;
917 {
918     info("Connect time expired");
919     lcp_close(0, "Connect time expired");       /* Close connection */
920     status = EXIT_CONNECT_TIME;
921 }
922
923 /*
924  * auth_check_options - called to check authentication options.
925  */
926 void
927 auth_check_options()
928 {
929     lcp_options *wo = &lcp_wantoptions[0];
930     int can_auth;
931     int lacks_ip;
932
933     /* Default our_name to hostname, and user to our_name */
934     if (our_name[0] == 0 || usehostname)
935         strlcpy(our_name, hostname, sizeof(our_name));
936     if (user[0] == 0)
937         strlcpy(user, our_name, sizeof(user));
938
939     /*
940      * If we have a default route, require the peer to authenticate
941      * unless the noauth option was given or the real user is root.
942      */
943     if (!auth_required && !allow_any_ip && have_route_to(0) && !privileged) {
944         auth_required = 1;
945         default_auth = 1;
946     }
947
948     /* If authentication is required, ask peer for CHAP or PAP. */
949     if (auth_required) {
950         allow_any_ip = 0;
951         if (!wo->neg_chap && !wo->neg_upap) {
952             wo->neg_chap = 1;
953             wo->neg_upap = 1;
954         }
955     } else {
956         wo->neg_chap = 0;
957         wo->neg_upap = 0;
958     }
959
960     /*
961      * Check whether we have appropriate secrets to use
962      * to authenticate the peer.
963      */
964     lacks_ip = 0;
965     can_auth = wo->neg_upap && (uselogin || have_pap_secret(&lacks_ip));
966     if (!can_auth && wo->neg_chap) {
967         can_auth = have_chap_secret((explicit_remote? remote_name: NULL),
968                                     our_name, 1, &lacks_ip);
969     }
970
971     if (auth_required && !can_auth && noauth_addrs == NULL) {
972         if (default_auth) {
973             option_error(
974 "By default the remote system is required to authenticate itself");
975             option_error(
976 "(because this system has a default route to the internet)");
977         } else if (explicit_remote)
978             option_error(
979 "The remote system (%s) is required to authenticate itself",
980                          remote_name);
981         else
982             option_error(
983 "The remote system is required to authenticate itself");
984         option_error(
985 "but I couldn't find any suitable secret (password) for it to use to do so.");
986         if (lacks_ip)
987             option_error(
988 "(None of the available passwords would let it use an IP address.)");
989
990         exit(1);
991     }
992 }
993
994 /*
995  * auth_reset - called when LCP is starting negotiations to recheck
996  * authentication options, i.e. whether we have appropriate secrets
997  * to use for authenticating ourselves and/or the peer.
998  */
999 void
1000 auth_reset(unit)
1001     int unit;
1002 {
1003     lcp_options *go = &lcp_gotoptions[unit];
1004     lcp_options *ao = &lcp_allowoptions[0];
1005
1006     ao->neg_upap = !refuse_pap && (passwd[0] != 0 || get_pap_passwd(NULL));
1007     ao->neg_chap = !refuse_chap
1008         && (passwd[0] != 0
1009             || have_chap_secret(user, (explicit_remote? remote_name: NULL),
1010                                 0, NULL));
1011
1012     if (go->neg_upap && !uselogin && !have_pap_secret(NULL))
1013         go->neg_upap = 0;
1014     if (go->neg_chap) {
1015         if (!have_chap_secret((explicit_remote? remote_name: NULL),
1016                               our_name, 1, NULL))
1017             go->neg_chap = 0;
1018     }
1019 }
1020
1021
1022 /*
1023  * check_passwd - Check the user name and passwd against the PAP secrets
1024  * file.  If requested, also check against the system password database,
1025  * and login the user if OK.
1026  *
1027  * returns:
1028  *      UPAP_AUTHNAK: Authentication failed.
1029  *      UPAP_AUTHACK: Authentication succeeded.
1030  * In either case, msg points to an appropriate message.
1031  */
1032 int
1033 check_passwd(unit, auser, userlen, apasswd, passwdlen, msg)
1034     int unit;
1035     char *auser;
1036     int userlen;
1037     char *apasswd;
1038     int passwdlen;
1039     char **msg;
1040 {
1041     int ret;
1042     char *filename;
1043     FILE *f;
1044     struct wordlist *addrs = NULL, *opts = NULL;
1045     char passwd[256], user[256];
1046     char secret[MAXWORDLEN];
1047     static int attempts = 0;
1048
1049     /*
1050      * Make copies of apasswd and auser, then null-terminate them.
1051      * If there are unprintable characters in the password, make
1052      * them visible.
1053      */
1054     slprintf(passwd, sizeof(passwd), "%.*v", passwdlen, apasswd);
1055     slprintf(user, sizeof(user), "%.*v", userlen, auser);
1056     *msg = "";
1057
1058     /*
1059      * Check if a plugin wants to handle this.
1060      */
1061     if (pap_auth_hook) {
1062         ret = (*pap_auth_hook)(user, passwd, msg, &addrs, &opts);
1063         if (ret >= 0) {
1064             if (ret)
1065                 set_allowed_addrs(unit, addrs, opts);
1066             BZERO(passwd, sizeof(passwd));
1067             if (addrs != 0)
1068                 free_wordlist(addrs);
1069             return ret? UPAP_AUTHACK: UPAP_AUTHNAK;
1070         }
1071     }
1072
1073     /*
1074      * Open the file of pap secrets and scan for a suitable secret
1075      * for authenticating this user.
1076      */
1077     filename = _PATH_UPAPFILE;
1078     addrs = opts = NULL;
1079     ret = UPAP_AUTHNAK;
1080     f = fopen(filename, "r");
1081     if (f == NULL) {
1082         error("Can't open PAP password file %s: %m", filename);
1083
1084     } else {
1085         check_access(f, filename);
1086         if (scan_authfile(f, user, our_name, secret, &addrs, &opts, filename) < 0) {
1087             warn("no PAP secret found for %s", user);
1088         } else {
1089             /*
1090              * If the secret is "@login", it means to check
1091              * the password against the login database.
1092              */
1093             int login_secret = strcmp(secret, "@login") == 0;
1094             ret = UPAP_AUTHACK;
1095             if (uselogin || login_secret) {
1096                 /* login option or secret is @login */
1097                 ret = plogin(user, passwd, msg);
1098                 if (ret == UPAP_AUTHNAK)
1099                     warn("PAP login failure for %s", user);
1100                 else
1101                     used_login = 1;
1102             }
1103             if (secret[0] != 0 && !login_secret) {
1104                 /* password given in pap-secrets - must match */
1105                 if ((cryptpap || strcmp(passwd, secret) != 0)
1106                     && strcmp(crypt(passwd, secret), secret) != 0) {
1107                     ret = UPAP_AUTHNAK;
1108                     warn("PAP authentication failure for %s", user);
1109                 }
1110             }
1111         }
1112         fclose(f);
1113     }
1114
1115     if (ret == UPAP_AUTHNAK) {
1116         if (**msg == 0)
1117             *msg = "Login incorrect";
1118         /*
1119          * XXX can we ever get here more than once??
1120          * Frustrate passwd stealer programs.
1121          * Allow 10 tries, but start backing off after 3 (stolen from login).
1122          * On 10'th, drop the connection.
1123          */
1124         if (attempts++ >= 10) {
1125             warn("%d LOGIN FAILURES ON %s, %s", attempts, devnam, user);
1126             lcp_close(unit, "login failed");
1127         }
1128         if (attempts > 3)
1129             sleep((u_int) (attempts - 3) * 5);
1130         if (opts != NULL)
1131             free_wordlist(opts);
1132
1133     } else {
1134         attempts = 0;                   /* Reset count */
1135         if (**msg == 0)
1136             *msg = "Login ok";
1137         set_allowed_addrs(unit, addrs, opts);
1138     }
1139
1140     if (addrs != NULL)
1141         free_wordlist(addrs);
1142     BZERO(passwd, sizeof(passwd));
1143     BZERO(secret, sizeof(secret));
1144
1145     return ret;
1146 }
1147
1148 /*
1149  * This function is needed for PAM.
1150  */
1151
1152 #ifdef USE_PAM
1153 /* Static variables used to communicate between the conversation function
1154  * and the server_login function 
1155  */
1156 static char *PAM_username;
1157 static char *PAM_password;
1158 static int PAM_error = 0;
1159 static pam_handle_t *pamh = NULL;
1160
1161 /* PAM conversation function
1162  * Here we assume (for now, at least) that echo on means login name, and
1163  * echo off means password.
1164  */
1165
1166 static int PAM_conv (int num_msg, const struct pam_message **msg,
1167                     struct pam_response **resp, void *appdata_ptr)
1168 {
1169     int replies = 0;
1170     struct pam_response *reply = NULL;
1171
1172 #define COPY_STRING(s) (s) ? strdup(s) : NULL
1173
1174     reply = malloc(sizeof(struct pam_response) * num_msg);
1175     if (!reply) return PAM_CONV_ERR;
1176
1177     for (replies = 0; replies < num_msg; replies++) {
1178         switch (msg[replies]->msg_style) {
1179             case PAM_PROMPT_ECHO_ON:
1180                 reply[replies].resp_retcode = PAM_SUCCESS;
1181                 reply[replies].resp = COPY_STRING(PAM_username);
1182                 /* PAM frees resp */
1183                 break;
1184             case PAM_PROMPT_ECHO_OFF:
1185                 reply[replies].resp_retcode = PAM_SUCCESS;
1186                 reply[replies].resp = COPY_STRING(PAM_password);
1187                 /* PAM frees resp */
1188                 break;
1189             case PAM_TEXT_INFO:
1190                 /* fall through */
1191             case PAM_ERROR_MSG:
1192                 /* ignore it, but pam still wants a NULL response... */
1193                 reply[replies].resp_retcode = PAM_SUCCESS;
1194                 reply[replies].resp = NULL;
1195                 break;
1196             default:       
1197                 /* Must be an error of some sort... */
1198                 free (reply);
1199                 PAM_error = 1;
1200                 return PAM_CONV_ERR;
1201         }
1202     }
1203     *resp = reply;     
1204     return PAM_SUCCESS;
1205 }
1206
1207 static struct pam_conv PAM_conversation = {
1208     &PAM_conv,
1209     NULL
1210 };
1211 #endif  /* USE_PAM */
1212
1213 /*
1214  * plogin - Check the user name and password against the system
1215  * password database, and login the user if OK.
1216  *
1217  * returns:
1218  *      UPAP_AUTHNAK: Login failed.
1219  *      UPAP_AUTHACK: Login succeeded.
1220  * In either case, msg points to an appropriate message.
1221  */
1222
1223 static int
1224 plogin(user, passwd, msg)
1225     char *user;
1226     char *passwd;
1227     char **msg;
1228 {
1229     char *tty;
1230
1231 #ifdef USE_PAM
1232     int pam_error;
1233
1234     pam_error = pam_start ("ppp", user, &PAM_conversation, &pamh);
1235     if (pam_error != PAM_SUCCESS) {
1236         *msg = (char *) pam_strerror (pamh, pam_error);
1237         reopen_log();
1238         return UPAP_AUTHNAK;
1239     }
1240     /*
1241      * Define the fields for the credential validation
1242      */
1243      
1244     PAM_username = user;
1245     PAM_password = passwd;
1246     PAM_error = 0;
1247     pam_set_item (pamh, PAM_TTY, devnam); /* this might be useful to some modules */
1248
1249     /*
1250      * Validate the user
1251      */
1252     pam_error = pam_authenticate (pamh, PAM_SILENT);
1253     if (pam_error == PAM_SUCCESS && !PAM_error) {    
1254         pam_error = pam_acct_mgmt (pamh, PAM_SILENT);
1255         if (pam_error == PAM_SUCCESS)
1256             pam_open_session (pamh, PAM_SILENT);
1257     }
1258
1259     *msg = (char *) pam_strerror (pamh, pam_error);
1260
1261     /*
1262      * Clean up the mess
1263      */
1264     reopen_log();       /* apparently the PAM stuff does closelog() */
1265     PAM_username = NULL;
1266     PAM_password = NULL;
1267     if (pam_error != PAM_SUCCESS)
1268         return UPAP_AUTHNAK;
1269 #else /* #ifdef USE_PAM */
1270
1271 /*
1272  * Use the non-PAM methods directly
1273  */
1274
1275 #ifdef HAS_SHADOW
1276     struct spwd *spwd;
1277     struct spwd *getspnam();
1278 #endif
1279     struct passwd *pw = getpwnam(user);
1280
1281     endpwent();
1282     if (pw == NULL)
1283         return (UPAP_AUTHNAK);
1284
1285 #ifdef HAS_SHADOW
1286     spwd = getspnam(user);
1287     endspent();
1288     if (spwd) {
1289         /* check the age of the password entry */
1290         long now = time(NULL) / 86400L;
1291
1292         if ((spwd->sp_expire > 0 && now >= spwd->sp_expire)
1293             || ((spwd->sp_max >= 0 && spwd->sp_max < 10000)
1294                 && spwd->sp_lstchg >= 0
1295                 && now >= spwd->sp_lstchg + spwd->sp_max)) {
1296             warn("Password for %s has expired", user);
1297             return (UPAP_AUTHNAK);
1298         }
1299         pw->pw_passwd = spwd->sp_pwdp;
1300     }
1301 #endif
1302
1303     /*
1304      * If no passwd, don't let them login.
1305      */
1306     if (pw->pw_passwd == NULL || strlen(pw->pw_passwd) < 2
1307         || strcmp(crypt(passwd, pw->pw_passwd), pw->pw_passwd) != 0)
1308         return (UPAP_AUTHNAK);
1309
1310 #endif /* #ifdef USE_PAM */
1311
1312     /*
1313      * Write a wtmp entry for this user.
1314      */
1315
1316     tty = devnam;
1317     if (strncmp(tty, "/dev/", 5) == 0)
1318         tty += 5;
1319     logwtmp(tty, user, remote_name);            /* Add wtmp login entry */
1320
1321 #if defined(_PATH_LASTLOG) && !defined(USE_PAM)
1322     if (pw != (struct passwd *)NULL) {
1323             struct lastlog ll;
1324             int fd;
1325
1326             if ((fd = open(_PATH_LASTLOG, O_RDWR, 0)) >= 0) {
1327                 (void)lseek(fd, (off_t)(pw->pw_uid * sizeof(ll)), SEEK_SET);
1328                 memset((void *)&ll, 0, sizeof(ll));
1329                 (void)time(&ll.ll_time);
1330                 (void)strncpy(ll.ll_line, tty, sizeof(ll.ll_line));
1331                 (void)write(fd, (char *)&ll, sizeof(ll));
1332                 (void)close(fd);
1333             }
1334     }
1335 #endif /* _PATH_LASTLOG and not USE_PAM */
1336
1337     info("user %s logged in", user);
1338     logged_in = 1;
1339
1340     return (UPAP_AUTHACK);
1341 }
1342
1343 /*
1344  * plogout - Logout the user.
1345  */
1346 static void
1347 plogout()
1348 {
1349 #ifdef USE_PAM
1350     int pam_error;
1351
1352     if (pamh != NULL) {
1353         pam_error = pam_close_session (pamh, PAM_SILENT);
1354         pam_end (pamh, pam_error);
1355         pamh = NULL;
1356     }
1357     /* Apparently the pam stuff does closelog(). */
1358     reopen_log();
1359 #else /* ! USE_PAM */   
1360     char *tty;
1361
1362     tty = devnam;
1363     if (strncmp(tty, "/dev/", 5) == 0)
1364         tty += 5;
1365     logwtmp(tty, "", "");               /* Wipe out utmp logout entry */
1366 #endif /* ! USE_PAM */
1367     logged_in = 0;
1368 }
1369
1370
1371 /*
1372  * null_login - Check if a username of "" and a password of "" are
1373  * acceptable, and iff so, set the list of acceptable IP addresses
1374  * and return 1.
1375  */
1376 static int
1377 null_login(unit)
1378     int unit;
1379 {
1380     char *filename;
1381     FILE *f;
1382     int i, ret;
1383     struct wordlist *addrs, *opts;
1384     char secret[MAXWORDLEN];
1385
1386     /*
1387      * Open the file of pap secrets and scan for a suitable secret.
1388      */
1389     filename = _PATH_UPAPFILE;
1390     addrs = NULL;
1391     f = fopen(filename, "r");
1392     if (f == NULL)
1393         return 0;
1394     check_access(f, filename);
1395
1396     i = scan_authfile(f, "", our_name, secret, &addrs, &opts, filename);
1397     ret = i >= 0 && secret[0] == 0;
1398     BZERO(secret, sizeof(secret));
1399
1400     if (ret)
1401         set_allowed_addrs(unit, addrs, opts);
1402     else if (opts != 0)
1403         free_wordlist(opts);
1404     if (addrs != 0)
1405         free_wordlist(addrs);
1406
1407     fclose(f);
1408     return ret;
1409 }
1410
1411
1412 /*
1413  * get_pap_passwd - get a password for authenticating ourselves with
1414  * our peer using PAP.  Returns 1 on success, 0 if no suitable password
1415  * could be found.
1416  * Assumes passwd points to MAXSECRETLEN bytes of space (if non-null).
1417  */
1418 static int
1419 get_pap_passwd(passwd)
1420     char *passwd;
1421 {
1422     char *filename;
1423     FILE *f;
1424     int ret;
1425     char secret[MAXWORDLEN];
1426
1427     /*
1428      * Check whether a plugin wants to supply this.
1429      */
1430     if (pap_passwd_hook) {
1431         ret = (*pap_passwd_hook)(user, passwd);
1432         if (ret >= 0)
1433             return ret;
1434     }
1435
1436     filename = _PATH_UPAPFILE;
1437     f = fopen(filename, "r");
1438     if (f == NULL)
1439         return 0;
1440     check_access(f, filename);
1441     ret = scan_authfile(f, user,
1442                         (remote_name[0]? remote_name: NULL),
1443                         secret, NULL, NULL, filename);
1444     fclose(f);
1445     if (ret < 0)
1446         return 0;
1447     if (passwd != NULL)
1448         strlcpy(passwd, secret, MAXSECRETLEN);
1449     BZERO(secret, sizeof(secret));
1450     return 1;
1451 }
1452
1453
1454 /*
1455  * have_pap_secret - check whether we have a PAP file with any
1456  * secrets that we could possibly use for authenticating the peer.
1457  */
1458 static int
1459 have_pap_secret(lacks_ipp)
1460     int *lacks_ipp;
1461 {
1462     FILE *f;
1463     int ret;
1464     char *filename;
1465     struct wordlist *addrs;
1466
1467     /* let the plugin decide, if there is one */
1468     if (pap_check_hook) {
1469         ret = (*pap_check_hook)();
1470         if (ret >= 0)
1471             return ret;
1472     }
1473
1474     filename = _PATH_UPAPFILE;
1475     f = fopen(filename, "r");
1476     if (f == NULL)
1477         return 0;
1478
1479     ret = scan_authfile(f, (explicit_remote? remote_name: NULL), our_name,
1480                         NULL, &addrs, NULL, filename);
1481     fclose(f);
1482     if (ret >= 0 && !some_ip_ok(addrs)) {
1483         if (lacks_ipp != 0)
1484             *lacks_ipp = 1;
1485         ret = -1;
1486     }
1487     if (addrs != 0)
1488         free_wordlist(addrs);
1489
1490     return ret >= 0;
1491 }
1492
1493
1494 /*
1495  * have_chap_secret - check whether we have a CHAP file with a
1496  * secret that we could possibly use for authenticating `client'
1497  * on `server'.  Either can be the null string, meaning we don't
1498  * know the identity yet.
1499  */
1500 static int
1501 have_chap_secret(client, server, need_ip, lacks_ipp)
1502     char *client;
1503     char *server;
1504     int need_ip;
1505     int *lacks_ipp;
1506 {
1507     FILE *f;
1508     int ret;
1509     char *filename;
1510     struct wordlist *addrs;
1511
1512     filename = _PATH_CHAPFILE;
1513     f = fopen(filename, "r");
1514     if (f == NULL)
1515         return 0;
1516
1517     if (client != NULL && client[0] == 0)
1518         client = NULL;
1519     else if (server != NULL && server[0] == 0)
1520         server = NULL;
1521
1522     ret = scan_authfile(f, client, server, NULL, &addrs, NULL, filename);
1523     fclose(f);
1524     if (ret >= 0 && need_ip && !some_ip_ok(addrs)) {
1525         if (lacks_ipp != 0)
1526             *lacks_ipp = 1;
1527         ret = -1;
1528     }
1529     if (addrs != 0)
1530         free_wordlist(addrs);
1531
1532     return ret >= 0;
1533 }
1534
1535
1536 /*
1537  * get_secret - open the CHAP secret file and return the secret
1538  * for authenticating the given client on the given server.
1539  * (We could be either client or server).
1540  */
1541 int
1542 get_secret(unit, client, server, secret, secret_len, am_server)
1543     int unit;
1544     char *client;
1545     char *server;
1546     char *secret;
1547     int *secret_len;
1548     int am_server;
1549 {
1550     FILE *f;
1551     int ret, len;
1552     char *filename;
1553     struct wordlist *addrs, *opts;
1554     char secbuf[MAXWORDLEN];
1555
1556     if (!am_server && passwd[0] != 0) {
1557         strlcpy(secbuf, passwd, sizeof(secbuf));
1558     } else {
1559         filename = _PATH_CHAPFILE;
1560         addrs = NULL;
1561         secbuf[0] = 0;
1562
1563         f = fopen(filename, "r");
1564         if (f == NULL) {
1565             error("Can't open chap secret file %s: %m", filename);
1566             return 0;
1567         }
1568         check_access(f, filename);
1569
1570         ret = scan_authfile(f, client, server, secbuf, &addrs, &opts, filename);
1571         fclose(f);
1572         if (ret < 0)
1573             return 0;
1574
1575         if (am_server)
1576             set_allowed_addrs(unit, addrs, opts);
1577         else if (opts != 0)
1578             free_wordlist(opts);
1579         if (addrs != 0)
1580             free_wordlist(addrs);
1581     }
1582
1583     len = strlen(secbuf);
1584     if (len > MAXSECRETLEN) {
1585         error("Secret for %s on %s is too long", client, server);
1586         len = MAXSECRETLEN;
1587     }
1588     BCOPY(secbuf, secret, len);
1589     BZERO(secbuf, sizeof(secbuf));
1590     *secret_len = len;
1591
1592     return 1;
1593 }
1594
1595 /*
1596  * set_allowed_addrs() - set the list of allowed addresses.
1597  * Also looks for `--' indicating options to apply for this peer
1598  * and leaves the following words in extra_options.
1599  */
1600 static void
1601 set_allowed_addrs(unit, addrs, opts)
1602     int unit;
1603     struct wordlist *addrs;
1604     struct wordlist *opts;
1605 {
1606     int n;
1607     struct wordlist *ap, **plink;
1608     struct permitted_ip *ip;
1609     char *ptr_word, *ptr_mask;
1610     struct hostent *hp;
1611     struct netent *np;
1612     u_int32_t a, mask, ah, offset;
1613     struct ipcp_options *wo = &ipcp_wantoptions[unit];
1614     u_int32_t suggested_ip = 0;
1615
1616     if (addresses[unit] != NULL)
1617         free(addresses[unit]);
1618     addresses[unit] = NULL;
1619     if (extra_options != NULL)
1620         free_wordlist(extra_options);
1621     extra_options = opts;
1622
1623     /*
1624      * Count the number of IP addresses given.
1625      */
1626     n = wordlist_count(addrs) + wordlist_count(noauth_addrs);
1627     if (n == 0)
1628         return;
1629     ip = (struct permitted_ip *) malloc((n + 1) * sizeof(struct permitted_ip));
1630     if (ip == 0)
1631         return;
1632
1633     /* temporarily append the noauth_addrs list to addrs */
1634     for (plink = &addrs; *plink != NULL; plink = &(*plink)->next)
1635         ;
1636     *plink = noauth_addrs;
1637
1638     n = 0;
1639     for (ap = addrs; ap != NULL; ap = ap->next) {
1640         /* "-" means no addresses authorized, "*" means any address allowed */
1641         ptr_word = ap->word;
1642         if (strcmp(ptr_word, "-") == 0)
1643             break;
1644         if (strcmp(ptr_word, "*") == 0) {
1645             ip[n].permit = 1;
1646             ip[n].base = ip[n].mask = 0;
1647             ++n;
1648             break;
1649         }
1650
1651         ip[n].permit = 1;
1652         if (*ptr_word == '!') {
1653             ip[n].permit = 0;
1654             ++ptr_word;
1655         }
1656
1657         mask = ~ (u_int32_t) 0;
1658         offset = 0;
1659         ptr_mask = strchr (ptr_word, '/');
1660         if (ptr_mask != NULL) {
1661             int bit_count;
1662             char *endp;
1663
1664             bit_count = (int) strtol (ptr_mask+1, &endp, 10);
1665             if (bit_count <= 0 || bit_count > 32) {
1666                 warn("invalid address length %v in auth. address list",
1667                      ptr_mask+1);
1668                 continue;
1669             }
1670             bit_count = 32 - bit_count; /* # bits in host part */
1671             if (*endp == '+') {
1672                 offset = ifunit + 1;
1673                 ++endp;
1674             }
1675             if (*endp != 0) {
1676                 warn("invalid address length syntax: %v", ptr_mask+1);
1677                 continue;
1678             }
1679             *ptr_mask = '\0';
1680             mask <<= bit_count;
1681         }
1682
1683         hp = gethostbyname(ptr_word);
1684         if (hp != NULL && hp->h_addrtype == AF_INET) {
1685             a = *(u_int32_t *)hp->h_addr;
1686         } else {
1687             np = getnetbyname (ptr_word);
1688             if (np != NULL && np->n_addrtype == AF_INET) {
1689                 a = htonl (*(u_int32_t *)np->n_net);
1690                 if (ptr_mask == NULL) {
1691                     /* calculate appropriate mask for net */
1692                     ah = ntohl(a);
1693                     if (IN_CLASSA(ah))
1694                         mask = IN_CLASSA_NET;
1695                     else if (IN_CLASSB(ah))
1696                         mask = IN_CLASSB_NET;
1697                     else if (IN_CLASSC(ah))
1698                         mask = IN_CLASSC_NET;
1699                 }
1700             } else {
1701                 a = inet_addr (ptr_word);
1702             }
1703         }
1704
1705         if (ptr_mask != NULL)
1706             *ptr_mask = '/';
1707
1708         if (a == (u_int32_t)-1L) {
1709             warn("unknown host %s in auth. address list", ap->word);
1710             continue;
1711         }
1712         if (offset != 0) {
1713             if (offset >= ~mask) {
1714                 warn("interface unit %d too large for subnet %v",
1715                      ifunit, ptr_word);
1716                 continue;
1717             }
1718             a = htonl((ntohl(a) & mask) + offset);
1719             mask = ~(u_int32_t)0;
1720         }
1721         ip[n].mask = htonl(mask);
1722         ip[n].base = a & ip[n].mask;
1723         ++n;
1724         if (~mask == 0 && suggested_ip == 0)
1725             suggested_ip = a;
1726     }
1727     *plink = NULL;
1728
1729     ip[n].permit = 0;           /* make the last entry forbid all addresses */
1730     ip[n].base = 0;             /* to terminate the list */
1731     ip[n].mask = 0;
1732
1733     addresses[unit] = ip;
1734
1735     /*
1736      * If the address given for the peer isn't authorized, or if
1737      * the user hasn't given one, AND there is an authorized address
1738      * which is a single host, then use that if we find one.
1739      */
1740     if (suggested_ip != 0
1741         && (wo->hisaddr == 0 || !auth_ip_addr(unit, wo->hisaddr))) {
1742         wo->hisaddr = suggested_ip;
1743         /*
1744          * Do we insist on this address?  No, if there are other
1745          * addresses authorized than the suggested one.
1746          */
1747         if (n > 1)
1748             wo->accept_remote = 1;
1749     }
1750 }
1751
1752 /*
1753  * auth_ip_addr - check whether the peer is authorized to use
1754  * a given IP address.  Returns 1 if authorized, 0 otherwise.
1755  */
1756 int
1757 auth_ip_addr(unit, addr)
1758     int unit;
1759     u_int32_t addr;
1760 {
1761     int ok;
1762
1763     /* don't allow loopback or multicast address */
1764     if (bad_ip_adrs(addr))
1765         return 0;
1766
1767     if (addresses[unit] != NULL) {
1768         ok = ip_addr_check(addr, addresses[unit]);
1769         if (ok >= 0)
1770             return ok;
1771     }
1772     if (auth_required)
1773         return 0;               /* no addresses authorized */
1774     return allow_any_ip || privileged || !have_route_to(addr);
1775 }
1776
1777 static int
1778 ip_addr_check(addr, addrs)
1779     u_int32_t addr;
1780     struct permitted_ip *addrs;
1781 {
1782     for (; ; ++addrs)
1783         if ((addr & addrs->mask) == addrs->base)
1784             return addrs->permit;
1785 }
1786
1787 /*
1788  * bad_ip_adrs - return 1 if the IP address is one we don't want
1789  * to use, such as an address in the loopback net or a multicast address.
1790  * addr is in network byte order.
1791  */
1792 int
1793 bad_ip_adrs(addr)
1794     u_int32_t addr;
1795 {
1796     addr = ntohl(addr);
1797     return (addr >> IN_CLASSA_NSHIFT) == IN_LOOPBACKNET
1798         || IN_MULTICAST(addr) || IN_BADCLASS(addr);
1799 }
1800
1801 /*
1802  * some_ip_ok - check a wordlist to see if it authorizes any
1803  * IP address(es).
1804  */
1805 static int
1806 some_ip_ok(addrs)
1807     struct wordlist *addrs;
1808 {
1809     for (; addrs != 0; addrs = addrs->next) {
1810         if (addrs->word[0] == '-')
1811             break;
1812         if (addrs->word[0] != '!')
1813             return 1;           /* some IP address is allowed */
1814     }
1815     return 0;
1816 }
1817
1818 /*
1819  * check_access - complain if a secret file has too-liberal permissions.
1820  */
1821 static void
1822 check_access(f, filename)
1823     FILE *f;
1824     char *filename;
1825 {
1826     struct stat sbuf;
1827
1828     if (fstat(fileno(f), &sbuf) < 0) {
1829         warn("cannot stat secret file %s: %m", filename);
1830     } else if ((sbuf.st_mode & (S_IRWXG | S_IRWXO)) != 0) {
1831         warn("Warning - secret file %s has world and/or group access",
1832              filename);
1833     }
1834 }
1835
1836
1837 /*
1838  * scan_authfile - Scan an authorization file for a secret suitable
1839  * for authenticating `client' on `server'.  The return value is -1
1840  * if no secret is found, otherwise >= 0.  The return value has
1841  * NONWILD_CLIENT set if the secret didn't have "*" for the client, and
1842  * NONWILD_SERVER set if the secret didn't have "*" for the server.
1843  * Any following words on the line up to a "--" (i.e. address authorization
1844  * info) are placed in a wordlist and returned in *addrs.  Any
1845  * following words (extra options) are placed in a wordlist and
1846  * returned in *opts.
1847  * We assume secret is NULL or points to MAXWORDLEN bytes of space.
1848  */
1849 static int
1850 scan_authfile(f, client, server, secret, addrs, opts, filename)
1851     FILE *f;
1852     char *client;
1853     char *server;
1854     char *secret;
1855     struct wordlist **addrs;
1856     struct wordlist **opts;
1857     char *filename;
1858 {
1859     int newline, xxx;
1860     int got_flag, best_flag;
1861     FILE *sf;
1862     struct wordlist *ap, *addr_list, *alist, **app;
1863     char word[MAXWORDLEN];
1864     char atfile[MAXWORDLEN];
1865     char lsecret[MAXWORDLEN];
1866
1867     if (addrs != NULL)
1868         *addrs = NULL;
1869     if (opts != NULL)
1870         *opts = NULL;
1871     addr_list = NULL;
1872     if (!getword(f, word, &newline, filename))
1873         return -1;              /* file is empty??? */
1874     newline = 1;
1875     best_flag = -1;
1876     for (;;) {
1877         /*
1878          * Skip until we find a word at the start of a line.
1879          */
1880         while (!newline && getword(f, word, &newline, filename))
1881             ;
1882         if (!newline)
1883             break;              /* got to end of file */
1884
1885         /*
1886          * Got a client - check if it's a match or a wildcard.
1887          */
1888         got_flag = 0;
1889         if (client != NULL && strcmp(word, client) != 0 && !ISWILD(word)) {
1890             newline = 0;
1891             continue;
1892         }
1893         if (!ISWILD(word))
1894             got_flag = NONWILD_CLIENT;
1895
1896         /*
1897          * Now get a server and check if it matches.
1898          */
1899         if (!getword(f, word, &newline, filename))
1900             break;
1901         if (newline)
1902             continue;
1903         if (!ISWILD(word)) {
1904             if (server != NULL && strcmp(word, server) != 0)
1905                 continue;
1906             got_flag |= NONWILD_SERVER;
1907         }
1908
1909         /*
1910          * Got some sort of a match - see if it's better than what
1911          * we have already.
1912          */
1913         if (got_flag <= best_flag)
1914             continue;
1915
1916         /*
1917          * Get the secret.
1918          */
1919         if (!getword(f, word, &newline, filename))
1920             break;
1921         if (newline)
1922             continue;
1923
1924         if (secret != NULL) {
1925             /*
1926              * Special syntax: @/pathname means read secret from file.
1927              */
1928             if (word[0] == '@' && word[1] == '/') {
1929                 strlcpy(atfile, word+1, sizeof(atfile));
1930                 if ((sf = fopen(atfile, "r")) == NULL) {
1931                     warn("can't open indirect secret file %s", atfile);
1932                     continue;
1933                 }
1934                 check_access(sf, atfile);
1935                 if (!getword(sf, word, &xxx, atfile)) {
1936                     warn("no secret in indirect secret file %s", atfile);
1937                     fclose(sf);
1938                     continue;
1939                 }
1940                 fclose(sf);
1941             }
1942             strlcpy(lsecret, word, sizeof(lsecret));
1943         }
1944
1945         /*
1946          * Now read address authorization info and make a wordlist.
1947          */
1948         app = &alist;
1949         for (;;) {
1950             if (!getword(f, word, &newline, filename) || newline)
1951                 break;
1952             ap = (struct wordlist *)
1953                     malloc(sizeof(struct wordlist) + strlen(word) + 1);
1954             if (ap == NULL)
1955                 novm("authorized addresses");
1956             ap->word = (char *) (ap + 1);
1957             strcpy(ap->word, word);
1958             *app = ap;
1959             app = &ap->next;
1960         }
1961         *app = NULL;
1962
1963         /*
1964          * This is the best so far; remember it.
1965          */
1966         best_flag = got_flag;
1967         if (addr_list)
1968             free_wordlist(addr_list);
1969         addr_list = alist;
1970         if (secret != NULL)
1971             strlcpy(secret, lsecret, MAXWORDLEN);
1972
1973         if (!newline)
1974             break;
1975     }
1976
1977     /* scan for a -- word indicating the start of options */
1978     for (app = &addr_list; (ap = *app) != NULL; app = &ap->next)
1979         if (strcmp(ap->word, "--") == 0)
1980             break;
1981     /* ap = start of options */
1982     if (ap != NULL) {
1983         ap = ap->next;          /* first option */
1984         free(*app);                     /* free the "--" word */
1985         *app = NULL;            /* terminate addr list */
1986     }
1987     if (opts != NULL)
1988         *opts = ap;
1989     else if (ap != NULL)
1990         free_wordlist(ap);
1991     if (addrs != NULL)
1992         *addrs = addr_list;
1993     else if (addr_list != NULL)
1994         free_wordlist(addr_list);
1995
1996     return best_flag;
1997 }
1998
1999 /*
2000  * wordlist_count - return the number of items in a wordlist
2001  */
2002 static int
2003 wordlist_count(wp)
2004     struct wordlist *wp;
2005 {
2006     int n;
2007
2008     for (n = 0; wp != NULL; wp = wp->next)
2009         ++n;
2010     return n;
2011 }
2012
2013 /*
2014  * free_wordlist - release memory allocated for a wordlist.
2015  */
2016 static void
2017 free_wordlist(wp)
2018     struct wordlist *wp;
2019 {
2020     struct wordlist *next;
2021
2022     while (wp != NULL) {
2023         next = wp->next;
2024         free(wp);
2025         wp = next;
2026     }
2027 }
2028
2029 /*
2030  * auth_script_done - called when the auth-up or auth-down script
2031  * has finished.
2032  */
2033 static void
2034 auth_script_done(arg)
2035     void *arg;
2036 {
2037     auth_script_pid = 0;
2038     switch (auth_script_state) {
2039     case s_up:
2040         if (auth_state == s_down) {
2041             auth_script_state = s_down;
2042             auth_script(_PATH_AUTHDOWN);
2043         }
2044         break;
2045     case s_down:
2046         if (auth_state == s_up) {
2047             auth_script_state = s_up;
2048             auth_script(_PATH_AUTHUP);
2049         }
2050         break;
2051     }
2052 }
2053
2054 /*
2055  * auth_script - execute a script with arguments
2056  * interface-name peer-name real-user tty speed
2057  */
2058 static void
2059 auth_script(script)
2060     char *script;
2061 {
2062     char strspeed[32];
2063     struct passwd *pw;
2064     char struid[32];
2065     char *user_name;
2066     char *argv[8];
2067
2068     if ((pw = getpwuid(getuid())) != NULL && pw->pw_name != NULL)
2069         user_name = pw->pw_name;
2070     else {
2071         slprintf(struid, sizeof(struid), "%d", getuid());
2072         user_name = struid;
2073     }
2074     slprintf(strspeed, sizeof(strspeed), "%d", baud_rate);
2075
2076     argv[0] = script;
2077     argv[1] = ifname;
2078     argv[2] = peer_authname;
2079     argv[3] = user_name;
2080     argv[4] = devnam;
2081     argv[5] = strspeed;
2082     argv[6] = NULL;
2083
2084     auth_script_pid = run_program(script, argv, 0, auth_script_done, NULL);
2085 }