]> git.ozlabs.org Git - ppp.git/blob - pppd/auth.c
make Octets-Direction flag accept value=4.
[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.79 2002/07/15 11:04:18 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         case PPP_OCTETS_DIRECTION_MAX2:
898             used = (link_stats.bytes_in > link_stats.bytes_out) ? link_stats.bytes_in : link_stats.bytes_out;
899             break;
900         default:
901             used = link_stats.bytes_in+link_stats.bytes_out;
902             break;
903     }
904     diff = maxoctets - used;
905     if(diff < 0) {
906         notice("Traffic limit reached. Limit: %u Used: %u", maxoctets, used);
907         lcp_close(0, "Traffic limit");
908         need_holdoff = 0;
909         status = EXIT_TRAFFIC_LIMIT;
910     } else {
911         TIMEOUT(check_maxoctets, NULL, maxoctets_timeout);
912     }
913 }
914 #endif
915
916 /*
917  * check_idle - check whether the link has been idle for long
918  * enough that we can shut it down.
919  */
920 static void
921 check_idle(arg)
922     void *arg;
923 {
924     struct ppp_idle idle;
925     time_t itime;
926     int tlim;
927
928     if (!get_idle_time(0, &idle))
929         return;
930     if (idle_time_hook != 0) {
931         tlim = idle_time_hook(&idle);
932     } else {
933         itime = MIN(idle.xmit_idle, idle.recv_idle);
934         tlim = idle_time_limit - itime;
935     }
936     if (tlim <= 0) {
937         /* link is idle: shut it down. */
938         notice("Terminating connection due to lack of activity.");
939         lcp_close(0, "Link inactive");
940         need_holdoff = 0;
941         status = EXIT_IDLE_TIMEOUT;
942     } else {
943         TIMEOUT(check_idle, NULL, tlim);
944     }
945 }
946
947 /*
948  * connect_time_expired - log a message and close the connection.
949  */
950 static void
951 connect_time_expired(arg)
952     void *arg;
953 {
954     info("Connect time expired");
955     lcp_close(0, "Connect time expired");       /* Close connection */
956     status = EXIT_CONNECT_TIME;
957 }
958
959 /*
960  * auth_check_options - called to check authentication options.
961  */
962 void
963 auth_check_options()
964 {
965     lcp_options *wo = &lcp_wantoptions[0];
966     int can_auth;
967     int lacks_ip;
968
969     /* Default our_name to hostname, and user to our_name */
970     if (our_name[0] == 0 || usehostname)
971         strlcpy(our_name, hostname, sizeof(our_name));
972     if (user[0] == 0)
973         strlcpy(user, our_name, sizeof(user));
974
975     /*
976      * If we have a default route, require the peer to authenticate
977      * unless the noauth option was given or the real user is root.
978      */
979     if (!auth_required && !allow_any_ip && have_route_to(0) && !privileged) {
980         auth_required = 1;
981         default_auth = 1;
982     }
983
984     /* If authentication is required, ask peer for CHAP or PAP. */
985     if (auth_required) {
986         allow_any_ip = 0;
987         if (!wo->neg_chap && !wo->neg_upap) {
988             wo->neg_chap = 1; wo->chap_mdtype = MDTYPE_ALL;
989             wo->neg_upap = 1;
990         }
991     } else {
992         wo->neg_chap = 0; wo->chap_mdtype = MDTYPE_NONE;
993         wo->neg_upap = 0;
994     }
995
996     /*
997      * Check whether we have appropriate secrets to use
998      * to authenticate the peer.
999      */
1000     lacks_ip = 0;
1001     can_auth = wo->neg_upap && (uselogin || have_pap_secret(&lacks_ip));
1002     if (!can_auth && (wo->neg_chap)) {
1003         can_auth = have_chap_secret((explicit_remote? remote_name: NULL),
1004                                     our_name, 1, &lacks_ip);
1005     }
1006
1007     if (auth_required && !can_auth && noauth_addrs == NULL) {
1008         if (default_auth) {
1009             option_error(
1010 "By default the remote system is required to authenticate itself");
1011             option_error(
1012 "(because this system has a default route to the internet)");
1013         } else if (explicit_remote)
1014             option_error(
1015 "The remote system (%s) is required to authenticate itself",
1016                          remote_name);
1017         else
1018             option_error(
1019 "The remote system is required to authenticate itself");
1020         option_error(
1021 "but I couldn't find any suitable secret (password) for it to use to do so.");
1022         if (lacks_ip)
1023             option_error(
1024 "(None of the available passwords would let it use an IP address.)");
1025
1026         exit(1);
1027     }
1028 }
1029
1030 /*
1031  * auth_reset - called when LCP is starting negotiations to recheck
1032  * authentication options, i.e. whether we have appropriate secrets
1033  * to use for authenticating ourselves and/or the peer.
1034  */
1035 void
1036 auth_reset(unit)
1037     int unit;
1038 {
1039     lcp_options *go = &lcp_gotoptions[unit];
1040     lcp_options *ao = &lcp_allowoptions[0];
1041
1042     ao->neg_upap = !refuse_pap && (passwd[0] != 0 || get_pap_passwd(NULL));
1043     ao->neg_chap = (!refuse_chap || !refuse_mschap || !refuse_mschap_v2)
1044         && (passwd[0] != 0
1045             || have_chap_secret(user, (explicit_remote? remote_name: NULL),
1046                                 0, NULL));
1047
1048     if (go->neg_upap && !uselogin && !have_pap_secret(NULL))
1049         go->neg_upap = 0;
1050     if (go->neg_chap) {
1051         if (!have_chap_secret((explicit_remote? remote_name: NULL),
1052                               our_name, 1, NULL))
1053             go->neg_chap = 0;
1054     }
1055 }
1056
1057
1058 /*
1059  * check_passwd - Check the user name and passwd against the PAP secrets
1060  * file.  If requested, also check against the system password database,
1061  * and login the user if OK.
1062  *
1063  * returns:
1064  *      UPAP_AUTHNAK: Authentication failed.
1065  *      UPAP_AUTHACK: Authentication succeeded.
1066  * In either case, msg points to an appropriate message.
1067  */
1068 int
1069 check_passwd(unit, auser, userlen, apasswd, passwdlen, msg)
1070     int unit;
1071     char *auser;
1072     int userlen;
1073     char *apasswd;
1074     int passwdlen;
1075     char **msg;
1076 {
1077     int ret;
1078     char *filename;
1079     FILE *f;
1080     struct wordlist *addrs = NULL, *opts = NULL;
1081     char passwd[256], user[256];
1082     char secret[MAXWORDLEN];
1083     static int attempts = 0;
1084
1085     /*
1086      * Make copies of apasswd and auser, then null-terminate them.
1087      * If there are unprintable characters in the password, make
1088      * them visible.
1089      */
1090     slprintf(passwd, sizeof(passwd), "%.*v", passwdlen, apasswd);
1091     slprintf(user, sizeof(user), "%.*v", userlen, auser);
1092     *msg = "";
1093
1094     /*
1095      * Check if a plugin wants to handle this.
1096      */
1097     if (pap_auth_hook) {
1098         ret = (*pap_auth_hook)(user, passwd, msg, &addrs, &opts);
1099         if (ret >= 0) {
1100             if (ret)
1101                 set_allowed_addrs(unit, addrs, opts);
1102             BZERO(passwd, sizeof(passwd));
1103             if (addrs != 0)
1104                 free_wordlist(addrs);
1105             if (opts != 0) {
1106                 free_wordlist(opts);
1107             }
1108             return ret? UPAP_AUTHACK: UPAP_AUTHNAK;
1109         }
1110     }
1111
1112     /*
1113      * Open the file of pap secrets and scan for a suitable secret
1114      * for authenticating this user.
1115      */
1116     filename = _PATH_UPAPFILE;
1117     addrs = opts = NULL;
1118     ret = UPAP_AUTHNAK;
1119     f = fopen(filename, "r");
1120     if (f == NULL) {
1121         error("Can't open PAP password file %s: %m", filename);
1122
1123     } else {
1124         check_access(f, filename);
1125         if (scan_authfile(f, user, our_name, secret, &addrs, &opts, filename) < 0) {
1126             warn("no PAP secret found for %s", user);
1127         } else {
1128             /*
1129              * If the secret is "@login", it means to check
1130              * the password against the login database.
1131              */
1132             int login_secret = strcmp(secret, "@login") == 0;
1133             ret = UPAP_AUTHACK;
1134             if (uselogin || login_secret) {
1135                 /* login option or secret is @login */
1136                 ret = plogin(user, passwd, msg);
1137                 if (ret == UPAP_AUTHNAK)
1138                     warn("PAP login failure for %s", user);
1139                 else
1140                     used_login = 1;
1141             }
1142             if (secret[0] != 0 && !login_secret) {
1143                 /* password given in pap-secrets - must match */
1144                 if ((cryptpap || strcmp(passwd, secret) != 0)
1145                     && strcmp(crypt(passwd, secret), secret) != 0) {
1146                     ret = UPAP_AUTHNAK;
1147                     warn("PAP authentication failure for %s", user);
1148                 }
1149             }
1150         }
1151         fclose(f);
1152     }
1153
1154     if (ret == UPAP_AUTHNAK) {
1155         if (**msg == 0)
1156             *msg = "Login incorrect";
1157         /*
1158          * XXX can we ever get here more than once??
1159          * Frustrate passwd stealer programs.
1160          * Allow 10 tries, but start backing off after 3 (stolen from login).
1161          * On 10'th, drop the connection.
1162          */
1163         if (attempts++ >= 10) {
1164             warn("%d LOGIN FAILURES ON %s, %s", attempts, devnam, user);
1165             lcp_close(unit, "login failed");
1166         }
1167         if (attempts > 3)
1168             sleep((u_int) (attempts - 3) * 5);
1169         if (opts != NULL)
1170             free_wordlist(opts);
1171
1172     } else {
1173         attempts = 0;                   /* Reset count */
1174         if (**msg == 0)
1175             *msg = "Login ok";
1176         set_allowed_addrs(unit, addrs, opts);
1177     }
1178
1179     if (addrs != NULL)
1180         free_wordlist(addrs);
1181     BZERO(passwd, sizeof(passwd));
1182     BZERO(secret, sizeof(secret));
1183
1184     return ret;
1185 }
1186
1187 /*
1188  * This function is needed for PAM.
1189  */
1190
1191 #ifdef USE_PAM
1192 /* Static variables used to communicate between the conversation function
1193  * and the server_login function 
1194  */
1195 static char *PAM_username;
1196 static char *PAM_password;
1197 static int PAM_error = 0;
1198 static pam_handle_t *pamh = NULL;
1199
1200 /* PAM conversation function
1201  * Here we assume (for now, at least) that echo on means login name, and
1202  * echo off means password.
1203  */
1204
1205 static int PAM_conv (int num_msg, const struct pam_message **msg,
1206                     struct pam_response **resp, void *appdata_ptr)
1207 {
1208     int replies = 0;
1209     struct pam_response *reply = NULL;
1210
1211 #define COPY_STRING(s) (s) ? strdup(s) : NULL
1212
1213     reply = malloc(sizeof(struct pam_response) * num_msg);
1214     if (!reply) return PAM_CONV_ERR;
1215
1216     for (replies = 0; replies < num_msg; replies++) {
1217         switch (msg[replies]->msg_style) {
1218             case PAM_PROMPT_ECHO_ON:
1219                 reply[replies].resp_retcode = PAM_SUCCESS;
1220                 reply[replies].resp = COPY_STRING(PAM_username);
1221                 /* PAM frees resp */
1222                 break;
1223             case PAM_PROMPT_ECHO_OFF:
1224                 reply[replies].resp_retcode = PAM_SUCCESS;
1225                 reply[replies].resp = COPY_STRING(PAM_password);
1226                 /* PAM frees resp */
1227                 break;
1228             case PAM_TEXT_INFO:
1229                 /* fall through */
1230             case PAM_ERROR_MSG:
1231                 /* ignore it, but pam still wants a NULL response... */
1232                 reply[replies].resp_retcode = PAM_SUCCESS;
1233                 reply[replies].resp = NULL;
1234                 break;
1235             default:       
1236                 /* Must be an error of some sort... */
1237                 free (reply);
1238                 PAM_error = 1;
1239                 return PAM_CONV_ERR;
1240         }
1241     }
1242     *resp = reply;     
1243     return PAM_SUCCESS;
1244 }
1245
1246 static struct pam_conv PAM_conversation = {
1247     &PAM_conv,
1248     NULL
1249 };
1250 #endif  /* USE_PAM */
1251
1252 /*
1253  * plogin - Check the user name and password against the system
1254  * password database, and login the user if OK.
1255  *
1256  * returns:
1257  *      UPAP_AUTHNAK: Login failed.
1258  *      UPAP_AUTHACK: Login succeeded.
1259  * In either case, msg points to an appropriate message.
1260  */
1261
1262 static int
1263 plogin(user, passwd, msg)
1264     char *user;
1265     char *passwd;
1266     char **msg;
1267 {
1268     char *tty;
1269
1270 #ifdef USE_PAM
1271     int pam_error;
1272
1273     pam_error = pam_start ("ppp", user, &PAM_conversation, &pamh);
1274     if (pam_error != PAM_SUCCESS) {
1275         *msg = (char *) pam_strerror (pamh, pam_error);
1276         reopen_log();
1277         return UPAP_AUTHNAK;
1278     }
1279     /*
1280      * Define the fields for the credential validation
1281      */
1282      
1283     PAM_username = user;
1284     PAM_password = passwd;
1285     PAM_error = 0;
1286     pam_set_item (pamh, PAM_TTY, devnam); /* this might be useful to some modules */
1287
1288     /*
1289      * Validate the user
1290      */
1291     pam_error = pam_authenticate (pamh, PAM_SILENT);
1292     if (pam_error == PAM_SUCCESS && !PAM_error) {    
1293         pam_error = pam_acct_mgmt (pamh, PAM_SILENT);
1294         if (pam_error == PAM_SUCCESS)
1295             pam_error = pam_open_session (pamh, PAM_SILENT);
1296     }
1297
1298     *msg = (char *) pam_strerror (pamh, pam_error);
1299
1300     /*
1301      * Clean up the mess
1302      */
1303     reopen_log();       /* apparently the PAM stuff does closelog() */
1304     PAM_username = NULL;
1305     PAM_password = NULL;
1306     if (pam_error != PAM_SUCCESS)
1307         return UPAP_AUTHNAK;
1308 #else /* #ifdef USE_PAM */
1309
1310 /*
1311  * Use the non-PAM methods directly
1312  */
1313
1314 #ifdef HAS_SHADOW
1315     struct spwd *spwd;
1316     struct spwd *getspnam();
1317 #endif
1318     struct passwd *pw = getpwnam(user);
1319
1320     endpwent();
1321     if (pw == NULL)
1322         return (UPAP_AUTHNAK);
1323
1324 #ifdef HAS_SHADOW
1325     spwd = getspnam(user);
1326     endspent();
1327     if (spwd) {
1328         /* check the age of the password entry */
1329         long now = time(NULL) / 86400L;
1330
1331         if ((spwd->sp_expire > 0 && now >= spwd->sp_expire)
1332             || ((spwd->sp_max >= 0 && spwd->sp_max < 10000)
1333                 && spwd->sp_lstchg >= 0
1334                 && now >= spwd->sp_lstchg + spwd->sp_max)) {
1335             warn("Password for %s has expired", user);
1336             return (UPAP_AUTHNAK);
1337         }
1338         pw->pw_passwd = spwd->sp_pwdp;
1339     }
1340 #endif
1341
1342     /*
1343      * If no passwd, don't let them login.
1344      */
1345     if (pw->pw_passwd == NULL || strlen(pw->pw_passwd) < 2
1346         || strcmp(crypt(passwd, pw->pw_passwd), pw->pw_passwd) != 0)
1347         return (UPAP_AUTHNAK);
1348
1349 #endif /* #ifdef USE_PAM */
1350
1351     /*
1352      * Write a wtmp entry for this user.
1353      */
1354
1355     tty = devnam;
1356     if (strncmp(tty, "/dev/", 5) == 0)
1357         tty += 5;
1358     logwtmp(tty, user, remote_name);            /* Add wtmp login entry */
1359
1360 #if defined(_PATH_LASTLOG) && !defined(USE_PAM)
1361     if (pw != (struct passwd *)NULL) {
1362             struct lastlog ll;
1363             int fd;
1364
1365             if ((fd = open(_PATH_LASTLOG, O_RDWR, 0)) >= 0) {
1366                 (void)lseek(fd, (off_t)(pw->pw_uid * sizeof(ll)), SEEK_SET);
1367                 memset((void *)&ll, 0, sizeof(ll));
1368                 (void)time(&ll.ll_time);
1369                 (void)strncpy(ll.ll_line, tty, sizeof(ll.ll_line));
1370                 (void)write(fd, (char *)&ll, sizeof(ll));
1371                 (void)close(fd);
1372             }
1373     }
1374 #endif /* _PATH_LASTLOG and not USE_PAM */
1375
1376     info("user %s logged in", user);
1377     logged_in = 1;
1378
1379     return (UPAP_AUTHACK);
1380 }
1381
1382 /*
1383  * plogout - Logout the user.
1384  */
1385 static void
1386 plogout()
1387 {
1388 #ifdef USE_PAM
1389     int pam_error;
1390
1391     if (pamh != NULL) {
1392         pam_error = pam_close_session (pamh, PAM_SILENT);
1393         pam_end (pamh, pam_error);
1394         pamh = NULL;
1395     }
1396     /* Apparently the pam stuff does closelog(). */
1397     reopen_log();
1398 #else /* ! USE_PAM */   
1399     char *tty;
1400
1401     tty = devnam;
1402     if (strncmp(tty, "/dev/", 5) == 0)
1403         tty += 5;
1404     logwtmp(tty, "", "");               /* Wipe out utmp logout entry */
1405 #endif /* ! USE_PAM */
1406     logged_in = 0;
1407 }
1408
1409
1410 /*
1411  * null_login - Check if a username of "" and a password of "" are
1412  * acceptable, and iff so, set the list of acceptable IP addresses
1413  * and return 1.
1414  */
1415 static int
1416 null_login(unit)
1417     int unit;
1418 {
1419     char *filename;
1420     FILE *f;
1421     int i, ret;
1422     struct wordlist *addrs, *opts;
1423     char secret[MAXWORDLEN];
1424
1425     /*
1426      * Check if a plugin wants to handle this.
1427      */
1428     ret = -1;
1429     if (null_auth_hook)
1430         ret = (*null_auth_hook)(&addrs, &opts);
1431
1432     /*
1433      * Open the file of pap secrets and scan for a suitable secret.
1434      */
1435     if (ret <= 0) {
1436         filename = _PATH_UPAPFILE;
1437         addrs = NULL;
1438         f = fopen(filename, "r");
1439         if (f == NULL)
1440             return 0;
1441         check_access(f, filename);
1442
1443         i = scan_authfile(f, "", our_name, secret, &addrs, &opts, filename);
1444         ret = i >= 0 && secret[0] == 0;
1445         BZERO(secret, sizeof(secret));
1446         fclose(f);
1447     }
1448
1449     if (ret)
1450         set_allowed_addrs(unit, addrs, opts);
1451     else if (opts != 0)
1452         free_wordlist(opts);
1453     if (addrs != 0)
1454         free_wordlist(addrs);
1455
1456     return ret;
1457 }
1458
1459
1460 /*
1461  * get_pap_passwd - get a password for authenticating ourselves with
1462  * our peer using PAP.  Returns 1 on success, 0 if no suitable password
1463  * could be found.
1464  * Assumes passwd points to MAXSECRETLEN bytes of space (if non-null).
1465  */
1466 static int
1467 get_pap_passwd(passwd)
1468     char *passwd;
1469 {
1470     char *filename;
1471     FILE *f;
1472     int ret;
1473     char secret[MAXWORDLEN];
1474
1475     /*
1476      * Check whether a plugin wants to supply this.
1477      */
1478     if (pap_passwd_hook) {
1479         ret = (*pap_passwd_hook)(user, passwd);
1480         if (ret >= 0)
1481             return ret;
1482     }
1483
1484     filename = _PATH_UPAPFILE;
1485     f = fopen(filename, "r");
1486     if (f == NULL)
1487         return 0;
1488     check_access(f, filename);
1489     ret = scan_authfile(f, user,
1490                         (remote_name[0]? remote_name: NULL),
1491                         secret, NULL, NULL, filename);
1492     fclose(f);
1493     if (ret < 0)
1494         return 0;
1495     if (passwd != NULL)
1496         strlcpy(passwd, secret, MAXSECRETLEN);
1497     BZERO(secret, sizeof(secret));
1498     return 1;
1499 }
1500
1501
1502 /*
1503  * have_pap_secret - check whether we have a PAP file with any
1504  * secrets that we could possibly use for authenticating the peer.
1505  */
1506 static int
1507 have_pap_secret(lacks_ipp)
1508     int *lacks_ipp;
1509 {
1510     FILE *f;
1511     int ret;
1512     char *filename;
1513     struct wordlist *addrs;
1514
1515     /* let the plugin decide, if there is one */
1516     if (pap_check_hook) {
1517         ret = (*pap_check_hook)();
1518         if (ret >= 0)
1519             return ret;
1520     }
1521
1522     filename = _PATH_UPAPFILE;
1523     f = fopen(filename, "r");
1524     if (f == NULL)
1525         return 0;
1526
1527     ret = scan_authfile(f, (explicit_remote? remote_name: NULL), our_name,
1528                         NULL, &addrs, NULL, filename);
1529     fclose(f);
1530     if (ret >= 0 && !some_ip_ok(addrs)) {
1531         if (lacks_ipp != 0)
1532             *lacks_ipp = 1;
1533         ret = -1;
1534     }
1535     if (addrs != 0)
1536         free_wordlist(addrs);
1537
1538     return ret >= 0;
1539 }
1540
1541
1542 /*
1543  * have_chap_secret - check whether we have a CHAP file with a
1544  * secret that we could possibly use for authenticating `client'
1545  * on `server'.  Either can be the null string, meaning we don't
1546  * know the identity yet.
1547  */
1548 static int
1549 have_chap_secret(client, server, need_ip, lacks_ipp)
1550     char *client;
1551     char *server;
1552     int need_ip;
1553     int *lacks_ipp;
1554 {
1555     FILE *f;
1556     int ret;
1557     char *filename;
1558     struct wordlist *addrs;
1559
1560     if (chap_check_hook) {
1561         ret = (*chap_check_hook)();
1562         if (ret >= 0) {
1563             return ret;
1564         }
1565     }
1566
1567     filename = _PATH_CHAPFILE;
1568     f = fopen(filename, "r");
1569     if (f == NULL)
1570         return 0;
1571
1572     if (client != NULL && client[0] == 0)
1573         client = NULL;
1574     else if (server != NULL && server[0] == 0)
1575         server = NULL;
1576
1577     ret = scan_authfile(f, client, server, NULL, &addrs, NULL, filename);
1578     fclose(f);
1579     if (ret >= 0 && need_ip && !some_ip_ok(addrs)) {
1580         if (lacks_ipp != 0)
1581             *lacks_ipp = 1;
1582         ret = -1;
1583     }
1584     if (addrs != 0)
1585         free_wordlist(addrs);
1586
1587     return ret >= 0;
1588 }
1589
1590
1591 /*
1592  * get_secret - open the CHAP secret file and return the secret
1593  * for authenticating the given client on the given server.
1594  * (We could be either client or server).
1595  */
1596 int
1597 get_secret(unit, client, server, secret, secret_len, am_server)
1598     int unit;
1599     char *client;
1600     char *server;
1601     char *secret;
1602     int *secret_len;
1603     int am_server;
1604 {
1605     FILE *f;
1606     int ret, len;
1607     char *filename;
1608     struct wordlist *addrs, *opts;
1609     char secbuf[MAXWORDLEN];
1610
1611     if (!am_server && passwd[0] != 0) {
1612         strlcpy(secbuf, passwd, sizeof(secbuf));
1613     } else if (!am_server && chap_passwd_hook) {
1614         if ( (*chap_passwd_hook)(client, secbuf) < 0) {
1615             error("Unable to obtain CHAP password for %s on %s from plugin",
1616                   client, server);
1617             return 0;
1618         }
1619     } else {
1620         filename = _PATH_CHAPFILE;
1621         addrs = NULL;
1622         secbuf[0] = 0;
1623
1624         f = fopen(filename, "r");
1625         if (f == NULL) {
1626             error("Can't open chap secret file %s: %m", filename);
1627             return 0;
1628         }
1629         check_access(f, filename);
1630
1631         ret = scan_authfile(f, client, server, secbuf, &addrs, &opts, filename);
1632         fclose(f);
1633         if (ret < 0)
1634             return 0;
1635
1636         if (am_server)
1637             set_allowed_addrs(unit, addrs, opts);
1638         else if (opts != 0)
1639             free_wordlist(opts);
1640         if (addrs != 0)
1641             free_wordlist(addrs);
1642     }
1643
1644     len = strlen(secbuf);
1645     if (len > MAXSECRETLEN) {
1646         error("Secret for %s on %s is too long", client, server);
1647         len = MAXSECRETLEN;
1648     }
1649     BCOPY(secbuf, secret, len);
1650     BZERO(secbuf, sizeof(secbuf));
1651     *secret_len = len;
1652
1653     return 1;
1654 }
1655
1656 /*
1657  * set_allowed_addrs() - set the list of allowed addresses.
1658  * Also looks for `--' indicating options to apply for this peer
1659  * and leaves the following words in extra_options.
1660  */
1661 static void
1662 set_allowed_addrs(unit, addrs, opts)
1663     int unit;
1664     struct wordlist *addrs;
1665     struct wordlist *opts;
1666 {
1667     int n;
1668     struct wordlist *ap, **plink;
1669     struct permitted_ip *ip;
1670     char *ptr_word, *ptr_mask;
1671     struct hostent *hp;
1672     struct netent *np;
1673     u_int32_t a, mask, ah, offset;
1674     struct ipcp_options *wo = &ipcp_wantoptions[unit];
1675     u_int32_t suggested_ip = 0;
1676
1677     if (addresses[unit] != NULL)
1678         free(addresses[unit]);
1679     addresses[unit] = NULL;
1680     if (extra_options != NULL)
1681         free_wordlist(extra_options);
1682     extra_options = opts;
1683
1684     /*
1685      * Count the number of IP addresses given.
1686      */
1687     n = wordlist_count(addrs) + wordlist_count(noauth_addrs);
1688     if (n == 0)
1689         return;
1690     ip = (struct permitted_ip *) malloc((n + 1) * sizeof(struct permitted_ip));
1691     if (ip == 0)
1692         return;
1693
1694     /* temporarily append the noauth_addrs list to addrs */
1695     for (plink = &addrs; *plink != NULL; plink = &(*plink)->next)
1696         ;
1697     *plink = noauth_addrs;
1698
1699     n = 0;
1700     for (ap = addrs; ap != NULL; ap = ap->next) {
1701         /* "-" means no addresses authorized, "*" means any address allowed */
1702         ptr_word = ap->word;
1703         if (strcmp(ptr_word, "-") == 0)
1704             break;
1705         if (strcmp(ptr_word, "*") == 0) {
1706             ip[n].permit = 1;
1707             ip[n].base = ip[n].mask = 0;
1708             ++n;
1709             break;
1710         }
1711
1712         ip[n].permit = 1;
1713         if (*ptr_word == '!') {
1714             ip[n].permit = 0;
1715             ++ptr_word;
1716         }
1717
1718         mask = ~ (u_int32_t) 0;
1719         offset = 0;
1720         ptr_mask = strchr (ptr_word, '/');
1721         if (ptr_mask != NULL) {
1722             int bit_count;
1723             char *endp;
1724
1725             bit_count = (int) strtol (ptr_mask+1, &endp, 10);
1726             if (bit_count <= 0 || bit_count > 32) {
1727                 warn("invalid address length %v in auth. address list",
1728                      ptr_mask+1);
1729                 continue;
1730             }
1731             bit_count = 32 - bit_count; /* # bits in host part */
1732             if (*endp == '+') {
1733                 offset = ifunit + 1;
1734                 ++endp;
1735             }
1736             if (*endp != 0) {
1737                 warn("invalid address length syntax: %v", ptr_mask+1);
1738                 continue;
1739             }
1740             *ptr_mask = '\0';
1741             mask <<= bit_count;
1742         }
1743
1744         hp = gethostbyname(ptr_word);
1745         if (hp != NULL && hp->h_addrtype == AF_INET) {
1746             a = *(u_int32_t *)hp->h_addr;
1747         } else {
1748             np = getnetbyname (ptr_word);
1749             if (np != NULL && np->n_addrtype == AF_INET) {
1750                 a = htonl (*(u_int32_t *)np->n_net);
1751                 if (ptr_mask == NULL) {
1752                     /* calculate appropriate mask for net */
1753                     ah = ntohl(a);
1754                     if (IN_CLASSA(ah))
1755                         mask = IN_CLASSA_NET;
1756                     else if (IN_CLASSB(ah))
1757                         mask = IN_CLASSB_NET;
1758                     else if (IN_CLASSC(ah))
1759                         mask = IN_CLASSC_NET;
1760                 }
1761             } else {
1762                 a = inet_addr (ptr_word);
1763             }
1764         }
1765
1766         if (ptr_mask != NULL)
1767             *ptr_mask = '/';
1768
1769         if (a == (u_int32_t)-1L) {
1770             warn("unknown host %s in auth. address list", ap->word);
1771             continue;
1772         }
1773         if (offset != 0) {
1774             if (offset >= ~mask) {
1775                 warn("interface unit %d too large for subnet %v",
1776                      ifunit, ptr_word);
1777                 continue;
1778             }
1779             a = htonl((ntohl(a) & mask) + offset);
1780             mask = ~(u_int32_t)0;
1781         }
1782         ip[n].mask = htonl(mask);
1783         ip[n].base = a & ip[n].mask;
1784         ++n;
1785         if (~mask == 0 && suggested_ip == 0)
1786             suggested_ip = a;
1787     }
1788     *plink = NULL;
1789
1790     ip[n].permit = 0;           /* make the last entry forbid all addresses */
1791     ip[n].base = 0;             /* to terminate the list */
1792     ip[n].mask = 0;
1793
1794     addresses[unit] = ip;
1795
1796     /*
1797      * If the address given for the peer isn't authorized, or if
1798      * the user hasn't given one, AND there is an authorized address
1799      * which is a single host, then use that if we find one.
1800      */
1801     if (suggested_ip != 0
1802         && (wo->hisaddr == 0 || !auth_ip_addr(unit, wo->hisaddr))) {
1803         wo->hisaddr = suggested_ip;
1804         /*
1805          * Do we insist on this address?  No, if there are other
1806          * addresses authorized than the suggested one.
1807          */
1808         if (n > 1)
1809             wo->accept_remote = 1;
1810     }
1811 }
1812
1813 /*
1814  * auth_ip_addr - check whether the peer is authorized to use
1815  * a given IP address.  Returns 1 if authorized, 0 otherwise.
1816  */
1817 int
1818 auth_ip_addr(unit, addr)
1819     int unit;
1820     u_int32_t addr;
1821 {
1822     int ok;
1823
1824     /* don't allow loopback or multicast address */
1825     if (bad_ip_adrs(addr))
1826         return 0;
1827
1828     if (allowed_address_hook) {
1829         ok = allowed_address_hook(addr);
1830         if (ok >= 0) return ok;
1831     }
1832
1833     if (addresses[unit] != NULL) {
1834         ok = ip_addr_check(addr, addresses[unit]);
1835         if (ok >= 0)
1836             return ok;
1837     }
1838
1839     if (auth_required)
1840         return 0;               /* no addresses authorized */
1841     return allow_any_ip || privileged || !have_route_to(addr);
1842 }
1843
1844 static int
1845 ip_addr_check(addr, addrs)
1846     u_int32_t addr;
1847     struct permitted_ip *addrs;
1848 {
1849     for (; ; ++addrs)
1850         if ((addr & addrs->mask) == addrs->base)
1851             return addrs->permit;
1852 }
1853
1854 /*
1855  * bad_ip_adrs - return 1 if the IP address is one we don't want
1856  * to use, such as an address in the loopback net or a multicast address.
1857  * addr is in network byte order.
1858  */
1859 int
1860 bad_ip_adrs(addr)
1861     u_int32_t addr;
1862 {
1863     addr = ntohl(addr);
1864     return (addr >> IN_CLASSA_NSHIFT) == IN_LOOPBACKNET
1865         || IN_MULTICAST(addr) || IN_BADCLASS(addr);
1866 }
1867
1868 /*
1869  * some_ip_ok - check a wordlist to see if it authorizes any
1870  * IP address(es).
1871  */
1872 static int
1873 some_ip_ok(addrs)
1874     struct wordlist *addrs;
1875 {
1876     for (; addrs != 0; addrs = addrs->next) {
1877         if (addrs->word[0] == '-')
1878             break;
1879         if (addrs->word[0] != '!')
1880             return 1;           /* some IP address is allowed */
1881     }
1882     return 0;
1883 }
1884
1885 /*
1886  * check_access - complain if a secret file has too-liberal permissions.
1887  */
1888 static void
1889 check_access(f, filename)
1890     FILE *f;
1891     char *filename;
1892 {
1893     struct stat sbuf;
1894
1895     if (fstat(fileno(f), &sbuf) < 0) {
1896         warn("cannot stat secret file %s: %m", filename);
1897     } else if ((sbuf.st_mode & (S_IRWXG | S_IRWXO)) != 0) {
1898         warn("Warning - secret file %s has world and/or group access",
1899              filename);
1900     }
1901 }
1902
1903
1904 /*
1905  * scan_authfile - Scan an authorization file for a secret suitable
1906  * for authenticating `client' on `server'.  The return value is -1
1907  * if no secret is found, otherwise >= 0.  The return value has
1908  * NONWILD_CLIENT set if the secret didn't have "*" for the client, and
1909  * NONWILD_SERVER set if the secret didn't have "*" for the server.
1910  * Any following words on the line up to a "--" (i.e. address authorization
1911  * info) are placed in a wordlist and returned in *addrs.  Any
1912  * following words (extra options) are placed in a wordlist and
1913  * returned in *opts.
1914  * We assume secret is NULL or points to MAXWORDLEN bytes of space.
1915  */
1916 static int
1917 scan_authfile(f, client, server, secret, addrs, opts, filename)
1918     FILE *f;
1919     char *client;
1920     char *server;
1921     char *secret;
1922     struct wordlist **addrs;
1923     struct wordlist **opts;
1924     char *filename;
1925 {
1926     int newline, xxx;
1927     int got_flag, best_flag;
1928     FILE *sf;
1929     struct wordlist *ap, *addr_list, *alist, **app;
1930     char word[MAXWORDLEN];
1931     char atfile[MAXWORDLEN];
1932     char lsecret[MAXWORDLEN];
1933
1934     if (addrs != NULL)
1935         *addrs = NULL;
1936     if (opts != NULL)
1937         *opts = NULL;
1938     addr_list = NULL;
1939     if (!getword(f, word, &newline, filename))
1940         return -1;              /* file is empty??? */
1941     newline = 1;
1942     best_flag = -1;
1943     for (;;) {
1944         /*
1945          * Skip until we find a word at the start of a line.
1946          */
1947         while (!newline && getword(f, word, &newline, filename))
1948             ;
1949         if (!newline)
1950             break;              /* got to end of file */
1951
1952         /*
1953          * Got a client - check if it's a match or a wildcard.
1954          */
1955         got_flag = 0;
1956         if (client != NULL && strcmp(word, client) != 0 && !ISWILD(word)) {
1957             newline = 0;
1958             continue;
1959         }
1960         if (!ISWILD(word))
1961             got_flag = NONWILD_CLIENT;
1962
1963         /*
1964          * Now get a server and check if it matches.
1965          */
1966         if (!getword(f, word, &newline, filename))
1967             break;
1968         if (newline)
1969             continue;
1970         if (!ISWILD(word)) {
1971             if (server != NULL && strcmp(word, server) != 0)
1972                 continue;
1973             got_flag |= NONWILD_SERVER;
1974         }
1975
1976         /*
1977          * Got some sort of a match - see if it's better than what
1978          * we have already.
1979          */
1980         if (got_flag <= best_flag)
1981             continue;
1982
1983         /*
1984          * Get the secret.
1985          */
1986         if (!getword(f, word, &newline, filename))
1987             break;
1988         if (newline)
1989             continue;
1990
1991         if (secret != NULL) {
1992             /*
1993              * Special syntax: @/pathname means read secret from file.
1994              */
1995             if (word[0] == '@' && word[1] == '/') {
1996                 strlcpy(atfile, word+1, sizeof(atfile));
1997                 if ((sf = fopen(atfile, "r")) == NULL) {
1998                     warn("can't open indirect secret file %s", atfile);
1999                     continue;
2000                 }
2001                 check_access(sf, atfile);
2002                 if (!getword(sf, word, &xxx, atfile)) {
2003                     warn("no secret in indirect secret file %s", atfile);
2004                     fclose(sf);
2005                     continue;
2006                 }
2007                 fclose(sf);
2008             }
2009             strlcpy(lsecret, word, sizeof(lsecret));
2010         }
2011
2012         /*
2013          * Now read address authorization info and make a wordlist.
2014          */
2015         app = &alist;
2016         for (;;) {
2017             if (!getword(f, word, &newline, filename) || newline)
2018                 break;
2019             ap = (struct wordlist *)
2020                     malloc(sizeof(struct wordlist) + strlen(word) + 1);
2021             if (ap == NULL)
2022                 novm("authorized addresses");
2023             ap->word = (char *) (ap + 1);
2024             strcpy(ap->word, word);
2025             *app = ap;
2026             app = &ap->next;
2027         }
2028         *app = NULL;
2029
2030         /*
2031          * This is the best so far; remember it.
2032          */
2033         best_flag = got_flag;
2034         if (addr_list)
2035             free_wordlist(addr_list);
2036         addr_list = alist;
2037         if (secret != NULL)
2038             strlcpy(secret, lsecret, MAXWORDLEN);
2039
2040         if (!newline)
2041             break;
2042     }
2043
2044     /* scan for a -- word indicating the start of options */
2045     for (app = &addr_list; (ap = *app) != NULL; app = &ap->next)
2046         if (strcmp(ap->word, "--") == 0)
2047             break;
2048     /* ap = start of options */
2049     if (ap != NULL) {
2050         ap = ap->next;          /* first option */
2051         free(*app);                     /* free the "--" word */
2052         *app = NULL;            /* terminate addr list */
2053     }
2054     if (opts != NULL)
2055         *opts = ap;
2056     else if (ap != NULL)
2057         free_wordlist(ap);
2058     if (addrs != NULL)
2059         *addrs = addr_list;
2060     else if (addr_list != NULL)
2061         free_wordlist(addr_list);
2062
2063     return best_flag;
2064 }
2065
2066 /*
2067  * wordlist_count - return the number of items in a wordlist
2068  */
2069 static int
2070 wordlist_count(wp)
2071     struct wordlist *wp;
2072 {
2073     int n;
2074
2075     for (n = 0; wp != NULL; wp = wp->next)
2076         ++n;
2077     return n;
2078 }
2079
2080 /*
2081  * free_wordlist - release memory allocated for a wordlist.
2082  */
2083 static void
2084 free_wordlist(wp)
2085     struct wordlist *wp;
2086 {
2087     struct wordlist *next;
2088
2089     while (wp != NULL) {
2090         next = wp->next;
2091         free(wp);
2092         wp = next;
2093     }
2094 }
2095
2096 /*
2097  * auth_script_done - called when the auth-up or auth-down script
2098  * has finished.
2099  */
2100 static void
2101 auth_script_done(arg)
2102     void *arg;
2103 {
2104     auth_script_pid = 0;
2105     switch (auth_script_state) {
2106     case s_up:
2107         if (auth_state == s_down) {
2108             auth_script_state = s_down;
2109             auth_script(_PATH_AUTHDOWN);
2110         }
2111         break;
2112     case s_down:
2113         if (auth_state == s_up) {
2114             auth_script_state = s_up;
2115             auth_script(_PATH_AUTHUP);
2116         }
2117         break;
2118     }
2119 }
2120
2121 /*
2122  * auth_script - execute a script with arguments
2123  * interface-name peer-name real-user tty speed
2124  */
2125 static void
2126 auth_script(script)
2127     char *script;
2128 {
2129     char strspeed[32];
2130     struct passwd *pw;
2131     char struid[32];
2132     char *user_name;
2133     char *argv[8];
2134
2135     if ((pw = getpwuid(getuid())) != NULL && pw->pw_name != NULL)
2136         user_name = pw->pw_name;
2137     else {
2138         slprintf(struid, sizeof(struid), "%d", getuid());
2139         user_name = struid;
2140     }
2141     slprintf(strspeed, sizeof(strspeed), "%d", baud_rate);
2142
2143     argv[0] = script;
2144     argv[1] = ifname;
2145     argv[2] = peer_authname;
2146     argv[3] = user_name;
2147     argv[4] = devnam;
2148     argv[5] = strspeed;
2149     argv[6] = NULL;
2150
2151     auth_script_pid = run_program(script, argv, 0, auth_script_done, NULL);
2152 }