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