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