1 /*-
2  * Copyright (c) 1998 Brian Somers <brian@Awfulhak.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  *	$MirOS: src/usr.sbin/ppp/ppp/bundle.c,v 1.4 2012/07/06 16:21:17 tg Exp $
27  *	$OpenBSD: bundle.c,v 1.70 2005/07/17 19:13:24 brad Exp $
28  */
29 
30 #include <sys/param.h>
31 #include <sys/socket.h>
32 #include <sys/ioctl.h>
33 #include <netinet/in.h>
34 #include <net/if.h>
35 #include <net/if_tun.h>		/* For TUNS* ioctls */
36 #include <net/route.h>
37 #include <netinet/in_systm.h>
38 #include <netinet/ip.h>
39 #include <sys/un.h>
40 
41 #include <errno.h>
42 #include <fcntl.h>
43 #ifdef __OpenBSD__
44 #include <util.h>
45 #else
46 #include <libutil.h>
47 #endif
48 #include <paths.h>
49 #include <stdarg.h>
50 #include <stdio.h>
51 #include <stdlib.h>
52 #include <string.h>
53 #include <sys/uio.h>
54 #include <sys/wait.h>
55 #include <termios.h>
56 #include <unistd.h>
57 
58 #include "layer.h"
59 #include "defs.h"
60 #include "command.h"
61 #include "mbuf.h"
62 #include "log.h"
63 #include "id.h"
64 #include "timer.h"
65 #include "fsm.h"
66 #include "iplist.h"
67 #include "lqr.h"
68 #include "hdlc.h"
69 #include "throughput.h"
70 #include "slcompress.h"
71 #include "ncpaddr.h"
72 #include "ip.h"
73 #include "ipcp.h"
74 #include "filter.h"
75 #include "descriptor.h"
76 #include "route.h"
77 #include "lcp.h"
78 #include "ccp.h"
79 #include "link.h"
80 #include "mp.h"
81 #ifndef NORADIUS
82 #include "radius.h"
83 #endif
84 #include "ipv6cp.h"
85 #include "ncp.h"
86 #include "bundle.h"
87 #include "async.h"
88 #include "physical.h"
89 #include "auth.h"
90 #include "proto.h"
91 #include "chap.h"
92 #include "tun.h"
93 #include "prompt.h"
94 #include "chat.h"
95 #include "cbcp.h"
96 #include "datalink.h"
97 #include "iface.h"
98 #include "server.h"
99 #include "probe.h"
100 #ifndef NODES
101 #include "mppe.h"
102 #endif
103 
104 #define SCATTER_SEGMENTS 7  /* version, datalink, name, physical,
105                                throughput, throughput, device       */
106 
107 #define SEND_MAXFD 3        /* Max file descriptors passed through
108                                the local domain socket              */
109 
110 static int bundle_RemainingIdleTime(struct bundle *);
111 
112 static const char * const PhaseNames[] = {
113   "Dead", "Establish", "Authenticate", "Network", "Terminate"
114 };
115 
116 const char *
bundle_PhaseName(struct bundle * bundle)117 bundle_PhaseName(struct bundle *bundle)
118 {
119   return bundle->phase <= PHASE_TERMINATE ?
120     PhaseNames[bundle->phase] : "unknown";
121 }
122 
123 void
bundle_NewPhase(struct bundle * bundle,u_int new)124 bundle_NewPhase(struct bundle *bundle, u_int new)
125 {
126   if (new == bundle->phase)
127     return;
128 
129   if (new <= PHASE_TERMINATE)
130     log_Printf(LogPHASE, "bundle: %s\n", PhaseNames[new]);
131 
132   switch (new) {
133   case PHASE_DEAD:
134     bundle->phase = new;
135 #ifndef NODES
136     MPPE_MasterKeyValid = 0;
137 #endif
138     log_DisplayPrompts();
139     break;
140 
141   case PHASE_ESTABLISH:
142     bundle->phase = new;
143     break;
144 
145   case PHASE_AUTHENTICATE:
146     bundle->phase = new;
147     log_DisplayPrompts();
148     break;
149 
150   case PHASE_NETWORK:
151     if (ncp_fsmStart(&bundle->ncp, bundle)) {
152       bundle->phase = new;
153       log_DisplayPrompts();
154     } else {
155       log_Printf(LogPHASE, "bundle: All NCPs are disabled\n");
156       bundle_Close(bundle, NULL, CLOSE_STAYDOWN);
157     }
158     break;
159 
160   case PHASE_TERMINATE:
161     bundle->phase = new;
162     mp_Down(&bundle->ncp.mp);
163     log_DisplayPrompts();
164     break;
165   }
166 }
167 
168 static void
bundle_LayerStart(void * v,struct fsm * fp)169 bundle_LayerStart(void *v, struct fsm *fp)
170 {
171   /* The given FSM is about to start up ! */
172 }
173 
174 
175 void
bundle_Notify(struct bundle * bundle,char c)176 bundle_Notify(struct bundle *bundle, char c)
177 {
178   if (bundle->notify.fd != -1) {
179     int ret;
180 
181     ret = write(bundle->notify.fd, &c, 1);
182     if (c != EX_REDIAL && c != EX_RECONNECT) {
183       if (ret == 1)
184         log_Printf(LogCHAT, "Parent notified of %s\n",
185                    c == EX_NORMAL ? "success" : "failure");
186       else
187         log_Printf(LogERROR, "Failed to notify parent of success\n");
188       close(bundle->notify.fd);
189       bundle->notify.fd = -1;
190     } else if (ret == 1)
191       log_Printf(LogCHAT, "Parent notified of %s\n", ex_desc(c));
192     else
193       log_Printf(LogERROR, "Failed to notify parent of %s\n", ex_desc(c));
194   }
195 }
196 
197 static void
bundle_ClearQueues(void * v)198 bundle_ClearQueues(void *v)
199 {
200   struct bundle *bundle = (struct bundle *)v;
201   struct datalink *dl;
202 
203   log_Printf(LogPHASE, "Clearing choked output queue\n");
204   timer_Stop(&bundle->choked.timer);
205 
206   /*
207    * Emergency time:
208    *
209    * We've had a full queue for PACKET_DEL_SECS seconds without being
210    * able to get rid of any of the packets.  We've probably given up
211    * on the redials at this point, and the queued data has almost
212    * definitely been timed out by the layer above.  As this is preventing
213    * us from reading the TUN_NAME device (we don't want to buffer stuff
214    * indefinitely), we may as well nuke this data and start with a clean
215    * slate !
216    *
217    * Unfortunately, this has the side effect of shafting any compression
218    * dictionaries in use (causing the relevant RESET_REQ/RESET_ACK).
219    */
220 
221   ncp_DeleteQueues(&bundle->ncp);
222   for (dl = bundle->links; dl; dl = dl->next)
223     physical_DeleteQueue(dl->physical);
224 }
225 
226 static void
bundle_LinkAdded(struct bundle * bundle,struct datalink * dl)227 bundle_LinkAdded(struct bundle *bundle, struct datalink *dl)
228 {
229   bundle->phys_type.all |= dl->physical->type;
230   if (dl->state == DATALINK_OPEN)
231     bundle->phys_type.open |= dl->physical->type;
232 
233 #ifndef NORADIUS
234   if ((bundle->phys_type.open & (PHYS_DEDICATED|PHYS_DDIAL))
235       != bundle->phys_type.open && bundle->session.timer.state == TIMER_STOPPED)
236     if (bundle->radius.sessiontime)
237       bundle_StartSessionTimer(bundle, 0);
238 #endif
239 
240   if ((bundle->phys_type.open & (PHYS_DEDICATED|PHYS_DDIAL))
241       != bundle->phys_type.open && bundle->idle.timer.state == TIMER_STOPPED)
242     /* We may need to start our idle timer */
243     bundle_StartIdleTimer(bundle, 0);
244 }
245 
246 void
bundle_LinksRemoved(struct bundle * bundle)247 bundle_LinksRemoved(struct bundle *bundle)
248 {
249   struct datalink *dl;
250 
251   bundle->phys_type.all = bundle->phys_type.open = 0;
252   for (dl = bundle->links; dl; dl = dl->next)
253     bundle_LinkAdded(bundle, dl);
254 
255   bundle_CalculateBandwidth(bundle);
256   mp_CheckAutoloadTimer(&bundle->ncp.mp);
257 
258   if ((bundle->phys_type.open & (PHYS_DEDICATED|PHYS_DDIAL))
259       == bundle->phys_type.open) {
260 #ifndef NORADIUS
261     if (bundle->radius.sessiontime)
262       bundle_StopSessionTimer(bundle);
263 #endif
264     bundle_StopIdleTimer(bundle);
265    }
266 }
267 
268 static void
bundle_LayerUp(void * v,struct fsm * fp)269 bundle_LayerUp(void *v, struct fsm *fp)
270 {
271   /*
272    * The given fsm is now up
273    * If it's an LCP, adjust our phys_mode.open value and check the
274    * autoload timer.
275    * If it's the first NCP, calculate our bandwidth
276    * If it's the first NCP, set our ``upat'' time
277    * If it's the first NCP, start the idle timer.
278    * If it's an NCP, tell our -background parent to go away.
279    * If it's the first NCP, start the autoload timer
280    */
281   struct bundle *bundle = (struct bundle *)v;
282 
283   if (fp->proto == PROTO_LCP) {
284     struct physical *p = link2physical(fp->link);
285 
286     bundle_LinkAdded(bundle, p->dl);
287     mp_CheckAutoloadTimer(&bundle->ncp.mp);
288   } else if (isncp(fp->proto)) {
289     if (ncp_LayersOpen(&fp->bundle->ncp) == 1) {
290       bundle_CalculateBandwidth(fp->bundle);
291       time(&bundle->upat);
292 #ifndef NORADIUS
293       if (bundle->radius.sessiontime)
294         bundle_StartSessionTimer(bundle, 0);
295 #endif
296       bundle_StartIdleTimer(bundle, 0);
297       mp_CheckAutoloadTimer(&fp->bundle->ncp.mp);
298     }
299     bundle_Notify(bundle, EX_NORMAL);
300   } else if (fp->proto == PROTO_CCP)
301     bundle_CalculateBandwidth(fp->bundle);	/* Against ccp_MTUOverhead */
302 }
303 
304 static void
bundle_LayerDown(void * v,struct fsm * fp)305 bundle_LayerDown(void *v, struct fsm *fp)
306 {
307   /*
308    * The given FSM has been told to come down.
309    * If it's our last NCP, stop the idle timer.
310    * If it's our last NCP, clear our ``upat'' value.
311    * If it's our last NCP, stop the autoload timer
312    * If it's an LCP, adjust our phys_type.open value and any timers.
313    * If it's an LCP and we're in multilink mode, adjust our tun
314    * If it's the last LCP, down all NCPs
315    * speed and make sure our minimum sequence number is adjusted.
316    */
317 
318   struct bundle *bundle = (struct bundle *)v;
319 
320   if (isncp(fp->proto)) {
321     if (ncp_LayersOpen(&fp->bundle->ncp) == 0) {
322 #ifndef NORADIUS
323       if (bundle->radius.sessiontime)
324         bundle_StopSessionTimer(bundle);
325 #endif
326       bundle_StopIdleTimer(bundle);
327       bundle->upat = 0;
328       mp_StopAutoloadTimer(&bundle->ncp.mp);
329     }
330   } else if (fp->proto == PROTO_LCP) {
331     struct datalink *dl;
332     struct datalink *lost;
333     int others_active;
334 
335     bundle_LinksRemoved(bundle);  /* adjust timers & phys_type values */
336 
337     lost = NULL;
338     others_active = 0;
339     for (dl = bundle->links; dl; dl = dl->next) {
340       if (fp == &dl->physical->link.lcp.fsm)
341         lost = dl;
342       else if (dl->state != DATALINK_CLOSED && dl->state != DATALINK_HANGUP)
343         others_active++;
344     }
345 
346     if (bundle->ncp.mp.active) {
347       bundle_CalculateBandwidth(bundle);
348 
349       if (lost)
350         mp_LinkLost(&bundle->ncp.mp, lost);
351       else
352         log_Printf(LogALERT, "Oops, lost an unrecognised datalink (%s) !\n",
353                    fp->link->name);
354     }
355 
356     if (!others_active) {
357       /* Down the NCPs.  We don't expect to get fsm_Close()d ourself ! */
358       ncp2initial(&bundle->ncp);
359       mp_Down(&bundle->ncp.mp);
360     }
361   }
362 }
363 
364 static void
bundle_LayerFinish(void * v,struct fsm * fp)365 bundle_LayerFinish(void *v, struct fsm *fp)
366 {
367   /* The given fsm is now down (fp cannot be NULL)
368    *
369    * If it's the last NCP, fsm_Close all LCPs
370    * If it's the last NCP, bring any MP layer down
371    */
372 
373   struct bundle *bundle = (struct bundle *)v;
374   struct datalink *dl;
375 
376   if (isncp(fp->proto) && !ncp_LayersUnfinished(&bundle->ncp)) {
377     if (bundle_Phase(bundle) != PHASE_DEAD)
378       bundle_NewPhase(bundle, PHASE_TERMINATE);
379     for (dl = bundle->links; dl; dl = dl->next)
380       if (dl->state == DATALINK_OPEN)
381         datalink_Close(dl, CLOSE_STAYDOWN);
382     fsm2initial(fp);
383     mp_Down(&bundle->ncp.mp);
384   }
385 }
386 
387 void
bundle_Close(struct bundle * bundle,const char * name,int how)388 bundle_Close(struct bundle *bundle, const char *name, int how)
389 {
390   /*
391    * Please close the given datalink.
392    * If name == NULL or name is the last datalink, fsm_Close all NCPs
393    * (except our MP)
394    * If it isn't the last datalink, just Close that datalink.
395    */
396 
397   struct datalink *dl, *this_dl;
398   int others_active;
399 
400   others_active = 0;
401   this_dl = NULL;
402 
403   for (dl = bundle->links; dl; dl = dl->next) {
404     if (name && !strcasecmp(name, dl->name))
405       this_dl = dl;
406     if (name == NULL || this_dl == dl) {
407       switch (how) {
408         case CLOSE_LCP:
409           datalink_DontHangup(dl);
410           break;
411         case CLOSE_STAYDOWN:
412           datalink_StayDown(dl);
413           break;
414       }
415     } else if (dl->state != DATALINK_CLOSED && dl->state != DATALINK_HANGUP)
416       others_active++;
417   }
418 
419   if (name && this_dl == NULL) {
420     log_Printf(LogWARN, "%s: Invalid datalink name\n", name);
421     return;
422   }
423 
424   if (!others_active) {
425 #ifndef NORADIUS
426     if (bundle->radius.sessiontime)
427       bundle_StopSessionTimer(bundle);
428 #endif
429     bundle_StopIdleTimer(bundle);
430     if (ncp_LayersUnfinished(&bundle->ncp))
431       ncp_Close(&bundle->ncp);
432     else {
433       ncp2initial(&bundle->ncp);
434       mp_Down(&bundle->ncp.mp);
435       for (dl = bundle->links; dl; dl = dl->next)
436         datalink_Close(dl, how);
437     }
438   } else if (this_dl && this_dl->state != DATALINK_CLOSED &&
439              this_dl->state != DATALINK_HANGUP)
440     datalink_Close(this_dl, how);
441 }
442 
443 void
bundle_Down(struct bundle * bundle,int how)444 bundle_Down(struct bundle *bundle, int how)
445 {
446   struct datalink *dl;
447 
448   for (dl = bundle->links; dl; dl = dl->next)
449     datalink_Down(dl, how);
450 }
451 
452 static int
bundle_UpdateSet(struct fdescriptor * d,fd_set * r,fd_set * w,fd_set * e,int * n)453 bundle_UpdateSet(struct fdescriptor *d, fd_set *r, fd_set *w, fd_set *e, int *n)
454 {
455   struct bundle *bundle = descriptor2bundle(d);
456   struct datalink *dl;
457   int result, nlinks;
458   u_short ifqueue;
459   size_t queued;
460 
461   result = 0;
462 
463   /* If there are aren't many packets queued, look for some more. */
464   for (nlinks = 0, dl = bundle->links; dl; dl = dl->next)
465     nlinks++;
466 
467   if (nlinks) {
468     queued = r ? ncp_FillPhysicalQueues(&bundle->ncp, bundle) :
469                  ncp_QueueLen(&bundle->ncp);
470 
471     if (r && (bundle->phase == PHASE_NETWORK ||
472               bundle->phys_type.all & PHYS_AUTO)) {
473       /* enough surplus so that we can tell if we're getting swamped */
474       ifqueue = nlinks > bundle->cfg.ifqueue ? nlinks : bundle->cfg.ifqueue;
475       if (queued < ifqueue) {
476         /* Not enough - select() for more */
477         if (bundle->choked.timer.state == TIMER_RUNNING)
478           timer_Stop(&bundle->choked.timer);	/* Not needed any more */
479         FD_SET(bundle->dev.fd, r);
480         if (*n < bundle->dev.fd + 1)
481           *n = bundle->dev.fd + 1;
482         log_Printf(LogTIMER, "%s: fdset(r) %d\n", TUN_NAME, bundle->dev.fd);
483         result++;
484       } else if (bundle->choked.timer.state == TIMER_STOPPED) {
485         bundle->choked.timer.func = bundle_ClearQueues;
486         bundle->choked.timer.name = "output choke";
487         bundle->choked.timer.load = bundle->cfg.choked.timeout * SECTICKS;
488         bundle->choked.timer.arg = bundle;
489         timer_Start(&bundle->choked.timer);
490       }
491     }
492   }
493 
494 #ifndef NORADIUS
495   result += descriptor_UpdateSet(&bundle->radius.desc, r, w, e, n);
496 #endif
497 
498   /* Which links need a select() ? */
499   for (dl = bundle->links; dl; dl = dl->next)
500     result += descriptor_UpdateSet(&dl->desc, r, w, e, n);
501 
502   /*
503    * This *MUST* be called after the datalink UpdateSet()s as it
504    * might be ``holding'' one of the datalinks (death-row) and
505    * wants to be able to de-select() it from the descriptor set.
506    */
507   result += descriptor_UpdateSet(&bundle->ncp.mp.server.desc, r, w, e, n);
508 
509   return result;
510 }
511 
512 static int
bundle_IsSet(struct fdescriptor * d,const fd_set * fdset)513 bundle_IsSet(struct fdescriptor *d, const fd_set *fdset)
514 {
515   struct bundle *bundle = descriptor2bundle(d);
516   struct datalink *dl;
517 
518   for (dl = bundle->links; dl; dl = dl->next)
519     if (descriptor_IsSet(&dl->desc, fdset))
520       return 1;
521 
522 #ifndef NORADIUS
523   if (descriptor_IsSet(&bundle->radius.desc, fdset))
524     return 1;
525 #endif
526 
527   if (descriptor_IsSet(&bundle->ncp.mp.server.desc, fdset))
528     return 1;
529 
530   return FD_ISSET(bundle->dev.fd, fdset);
531 }
532 
533 static void
bundle_DescriptorRead(struct fdescriptor * d,struct bundle * bundle,const fd_set * fdset)534 bundle_DescriptorRead(struct fdescriptor *d, struct bundle *bundle,
535                       const fd_set *fdset)
536 {
537   struct datalink *dl;
538   unsigned secs;
539   u_int32_t af;
540 
541   if (descriptor_IsSet(&bundle->ncp.mp.server.desc, fdset))
542     descriptor_Read(&bundle->ncp.mp.server.desc, bundle, fdset);
543 
544   for (dl = bundle->links; dl; dl = dl->next)
545     if (descriptor_IsSet(&dl->desc, fdset))
546       descriptor_Read(&dl->desc, bundle, fdset);
547 
548 #ifndef NORADIUS
549   if (descriptor_IsSet(&bundle->radius.desc, fdset))
550     descriptor_Read(&bundle->radius.desc, bundle, fdset);
551 #endif
552 
553   if (FD_ISSET(bundle->dev.fd, fdset)) {
554     struct tun_data tun;
555     int n, pri;
556     u_char *data;
557     size_t sz;
558 
559     if (bundle->dev.header) {
560       data = (u_char *)&tun;
561       sz = sizeof tun;
562     } else {
563       data = tun.data;
564       sz = sizeof tun.data;
565     }
566 
567     /* something to read from tun */
568 
569     n = read(bundle->dev.fd, data, sz);
570     if (n < 0) {
571       log_Printf(LogWARN, "%s: read: %s\n", bundle->dev.Name, strerror(errno));
572       return;
573     }
574 
575     if (bundle->dev.header) {
576       n -= sz - sizeof tun.data;
577       if (n <= 0) {
578         log_Printf(LogERROR, "%s: read: Got only %d bytes of data !\n",
579                    bundle->dev.Name, n);
580         return;
581       }
582       af = ntohl(tun.header.family);
583 #ifndef NOINET6
584       if (af != AF_INET && af != AF_INET6)
585 #else
586       if (af != AF_INET)
587 #endif
588         /* XXX: Should be maintaining drop/family counts ! */
589         return;
590     } else
591       af = AF_INET;
592 
593     if (af == AF_INET && ((struct ip *)tun.data)->ip_dst.s_addr ==
594         bundle->ncp.ipcp.my_ip.s_addr) {
595       /* we've been asked to send something addressed *to* us :( */
596       if (Enabled(bundle, OPT_LOOPBACK)) {
597         pri = PacketCheck(bundle, af, tun.data, n, &bundle->filter.in,
598                           NULL, NULL);
599         if (pri >= 0) {
600           n += sz - sizeof tun.data;
601           write(bundle->dev.fd, data, n);
602           log_Printf(LogDEBUG, "Looped back packet addressed to myself\n");
603         }
604         return;
605       } else
606         log_Printf(LogDEBUG, "Oops - forwarding packet addressed to myself\n");
607     }
608 
609     /*
610      * Process on-demand dialup. Output packets are queued within the tunnel
611      * device until the appropriate NCP is opened.
612      */
613 
614     if (bundle_Phase(bundle) == PHASE_DEAD) {
615       /*
616        * Note, we must be in AUTO mode :-/ otherwise our interface should
617        * *not* be UP and we can't receive data
618        */
619       pri = PacketCheck(bundle, af, tun.data, n, &bundle->filter.dial,
620                         NULL, NULL);
621       if (pri >= 0)
622         bundle_Open(bundle, NULL, PHYS_AUTO, 0);
623       else
624         /*
625          * Drop the packet.  If we were to queue it, we'd just end up with
626          * a pile of timed-out data in our output queue by the time we get
627          * around to actually dialing.  We'd also prematurely reach the
628          * threshold at which we stop select()ing to read() the tun
629          * device - breaking auto-dial.
630          */
631         return;
632     }
633 
634     secs = 0;
635     pri = PacketCheck(bundle, af, tun.data, n, &bundle->filter.out,
636                       NULL, &secs);
637     if (pri >= 0) {
638       /* Prepend the number of seconds timeout given in the filter */
639       tun.header.timeout = secs;
640       ncp_Enqueue(&bundle->ncp, af, pri, (char *)&tun, n + sizeof tun.header);
641     }
642   }
643 }
644 
645 static int
bundle_DescriptorWrite(struct fdescriptor * d,struct bundle * bundle,const fd_set * fdset)646 bundle_DescriptorWrite(struct fdescriptor *d, struct bundle *bundle,
647                        const fd_set *fdset)
648 {
649   struct datalink *dl;
650   int result = 0;
651 
652   /* This is not actually necessary as struct mpserver doesn't Write() */
653   if (descriptor_IsSet(&bundle->ncp.mp.server.desc, fdset))
654     if (descriptor_Write(&bundle->ncp.mp.server.desc, bundle, fdset) == 1)
655       result++;
656 
657   for (dl = bundle->links; dl; dl = dl->next)
658     if (descriptor_IsSet(&dl->desc, fdset))
659       switch (descriptor_Write(&dl->desc, bundle, fdset)) {
660       case -1:
661         datalink_ComeDown(dl, CLOSE_NORMAL);
662         break;
663       case 1:
664         result++;
665       }
666 
667   return result;
668 }
669 
670 void
bundle_LockTun(struct bundle * bundle)671 bundle_LockTun(struct bundle *bundle)
672 {
673   FILE *lockfile;
674   char pidfile[PATH_MAX];
675 
676   snprintf(pidfile, sizeof pidfile, "%stun%d.pid", _PATH_VARRUN, bundle->unit);
677   lockfile = ID0fopen(pidfile, "w");
678   if (lockfile != NULL) {
679     fprintf(lockfile, "%d\n", (int)getpid());
680     fclose(lockfile);
681   }
682 #ifndef RELEASE_CRUNCH
683   else
684     log_Printf(LogERROR, "Warning: Can't create %s: %s\n",
685                pidfile, strerror(errno));
686 #endif
687 }
688 
689 static void
bundle_UnlockTun(struct bundle * bundle)690 bundle_UnlockTun(struct bundle *bundle)
691 {
692   char pidfile[PATH_MAX];
693 
694   snprintf(pidfile, sizeof pidfile, "%stun%d.pid", _PATH_VARRUN, bundle->unit);
695   ID0unlink(pidfile);
696 }
697 
698 struct bundle *
bundle_Create(const char * prefix,int type,int unit)699 bundle_Create(const char *prefix, int type, int unit)
700 {
701   static struct bundle bundle;		/* there can be only one */
702   int enoentcount, err, minunit, maxunit;
703   const char *ifname;
704 #if defined(__FreeBSD__) && !defined(NOKLDLOAD)
705   int kldtried;
706 #endif
707 #if defined(TUNSIFMODE) || defined(TUNSLMODE) || defined(TUNSIFHEAD)
708   int iff;
709 #endif
710 
711   if (bundle.iface != NULL) {	/* Already allocated ! */
712     log_Printf(LogALERT, "bundle_Create:  There's only one BUNDLE !\n");
713     return NULL;
714   }
715 
716   if (unit == -1) {
717     minunit = 0;
718     maxunit = -1;
719   } else {
720     minunit = unit;
721     maxunit = unit + 1;
722   }
723   err = ENOENT;
724   enoentcount = 0;
725 #if defined(__FreeBSD__) && !defined(NOKLDLOAD)
726   kldtried = 0;
727 #endif
728   for (bundle.unit = minunit; bundle.unit != maxunit; bundle.unit++) {
729     snprintf(bundle.dev.Name, sizeof bundle.dev.Name, "%s%d",
730              prefix, bundle.unit);
731     bundle.dev.fd = ID0open(bundle.dev.Name, O_RDWR);
732     if (bundle.dev.fd >= 0)
733       break;
734     else if (errno == ENXIO || errno == ENOENT) {
735 #if defined(__FreeBSD__) && !defined(NOKLDLOAD)
736       if (bundle.unit == minunit && !kldtried++) {
737         /*
738          * Attempt to load the tunnel interface KLD if it isn't loaded
739          * already.
740          */
741         if (loadmodules(LOAD_VERBOSLY, "if_tun", NULL))
742           bundle.unit--;
743         continue;
744       }
745 #endif
746       if (errno != ENOENT || ++enoentcount > 2) {
747         err = errno;
748 	break;
749       }
750     } else
751       err = errno;
752   }
753 
754   if (bundle.dev.fd < 0) {
755     if (unit == -1)
756       log_Printf(LogWARN, "No available tunnel devices found (%s)\n",
757                 strerror(err));
758     else
759       log_Printf(LogWARN, "%s%d: %s\n", prefix, unit, strerror(err));
760     return NULL;
761   }
762 
763   log_SetTun(bundle.unit);
764 
765   ifname = strrchr(bundle.dev.Name, '/');
766   if (ifname == NULL)
767     ifname = bundle.dev.Name;
768   else
769     ifname++;
770 
771   bundle.iface = iface_Create(ifname);
772   if (bundle.iface == NULL) {
773     close(bundle.dev.fd);
774     return NULL;
775   }
776 
777 #ifdef TUNSIFMODE
778   /* Make sure we're POINTOPOINT & IFF_MULTICAST */
779   iff = IFF_POINTOPOINT | IFF_MULTICAST;
780   if (ID0ioctl(bundle.dev.fd, TUNSIFMODE, &iff) < 0)
781     log_Printf(LogERROR, "bundle_Create: ioctl(TUNSIFMODE): %s\n",
782 	       strerror(errno));
783 #endif
784 
785 #ifdef TUNSLMODE
786   /* Make sure we're not prepending sockaddrs */
787   iff = 0;
788   if (ID0ioctl(bundle.dev.fd, TUNSLMODE, &iff) < 0)
789     log_Printf(LogERROR, "bundle_Create: ioctl(TUNSLMODE): %s\n",
790 	       strerror(errno));
791 #endif
792 
793 #ifdef TUNSIFHEAD
794   /* We want the address family please ! */
795   iff = 1;
796   if (ID0ioctl(bundle.dev.fd, TUNSIFHEAD, &iff) < 0) {
797     log_Printf(LogERROR, "bundle_Create: ioctl(TUNSIFHEAD): %s\n",
798 	       strerror(errno));
799     bundle.dev.header = 0;
800   } else
801     bundle.dev.header = 1;
802 #else
803 #ifdef __OpenBSD__
804   /* Always present for OpenBSD */
805   bundle.dev.header = 1;
806 #else
807   /*
808    * If TUNSIFHEAD isn't available and we're not OpenBSD, assume
809    * everything's AF_INET (hopefully the tun device won't pass us
810    * anything else !).
811    */
812   bundle.dev.header = 0;
813 #endif
814 #endif
815 
816   log_Printf(LogPHASE, "Using interface: %s\n", ifname);
817 
818   bundle.bandwidth = 0;
819   bundle.routing_seq = 0;
820   bundle.phase = PHASE_DEAD;
821   bundle.CleaningUp = 0;
822   bundle.NatEnabled = 0;
823 
824   bundle.fsm.LayerStart = bundle_LayerStart;
825   bundle.fsm.LayerUp = bundle_LayerUp;
826   bundle.fsm.LayerDown = bundle_LayerDown;
827   bundle.fsm.LayerFinish = bundle_LayerFinish;
828   bundle.fsm.object = &bundle;
829 
830   bundle.cfg.idle.timeout = NCP_IDLE_TIMEOUT;
831   bundle.cfg.idle.min_timeout = 0;
832   *bundle.cfg.auth.name = '\0';
833   *bundle.cfg.auth.key = '\0';
834   bundle.cfg.opt = OPT_IDCHECK | OPT_LOOPBACK | OPT_SROUTES | OPT_TCPMSSFIXUP |
835                    OPT_THROUGHPUT | OPT_UTMP;
836 #ifndef NOINET6
837   bundle.cfg.opt |= OPT_IPCP;
838   if (probe.ipv6_available)
839     bundle.cfg.opt |= OPT_IPV6CP;
840 #endif
841   *bundle.cfg.label = '\0';
842   bundle.cfg.ifqueue = DEF_IFQUEUE;
843   bundle.cfg.choked.timeout = CHOKED_TIMEOUT;
844   bundle.phys_type.all = type;
845   bundle.phys_type.open = 0;
846   bundle.upat = 0;
847 
848   bundle.links = datalink_Create("deflink", &bundle, type);
849   if (bundle.links == NULL) {
850     log_Printf(LogALERT, "Cannot create data link: %s\n", strerror(errno));
851     iface_Destroy(bundle.iface);
852     bundle.iface = NULL;
853     close(bundle.dev.fd);
854     return NULL;
855   }
856 
857   bundle.desc.type = BUNDLE_DESCRIPTOR;
858   bundle.desc.UpdateSet = bundle_UpdateSet;
859   bundle.desc.IsSet = bundle_IsSet;
860   bundle.desc.Read = bundle_DescriptorRead;
861   bundle.desc.Write = bundle_DescriptorWrite;
862 
863   ncp_Init(&bundle.ncp, &bundle);
864 
865   memset(&bundle.filter, '\0', sizeof bundle.filter);
866   bundle.filter.in.fragok = bundle.filter.in.logok = 1;
867   bundle.filter.in.name = "IN";
868   bundle.filter.out.fragok = bundle.filter.out.logok = 1;
869   bundle.filter.out.name = "OUT";
870   bundle.filter.dial.name = "DIAL";
871   bundle.filter.dial.logok = 1;
872   bundle.filter.alive.name = "ALIVE";
873   bundle.filter.alive.logok = 1;
874   {
875     int	i;
876     for (i = 0; i < MAXFILTERS; i++) {
877         bundle.filter.in.rule[i].f_action = A_NONE;
878         bundle.filter.out.rule[i].f_action = A_NONE;
879         bundle.filter.dial.rule[i].f_action = A_NONE;
880         bundle.filter.alive.rule[i].f_action = A_NONE;
881     }
882   }
883   memset(&bundle.idle.timer, '\0', sizeof bundle.idle.timer);
884   bundle.idle.done = 0;
885   bundle.notify.fd = -1;
886   memset(&bundle.choked.timer, '\0', sizeof bundle.choked.timer);
887 #ifndef NORADIUS
888   radius_Init(&bundle.radius);
889 #endif
890 
891   /* Clean out any leftover crud */
892   iface_Clear(bundle.iface, &bundle.ncp, 0, IFACE_CLEAR_ALL);
893 
894   bundle_LockTun(&bundle);
895 
896   return &bundle;
897 }
898 
899 static void
bundle_DownInterface(struct bundle * bundle)900 bundle_DownInterface(struct bundle *bundle)
901 {
902   route_IfDelete(bundle, 1);
903   iface_ClearFlags(bundle->iface->name, IFF_UP);
904 }
905 
906 void
bundle_Destroy(struct bundle * bundle)907 bundle_Destroy(struct bundle *bundle)
908 {
909   struct datalink *dl;
910 
911   /*
912    * Clean up the interface.  We don't really need to do the timer_Stop()s,
913    * mp_Down(), iface_Clear() and bundle_DownInterface() unless we're getting
914    * out under exceptional conditions such as a descriptor exception.
915    */
916   timer_Stop(&bundle->idle.timer);
917   timer_Stop(&bundle->choked.timer);
918   mp_Down(&bundle->ncp.mp);
919   iface_Clear(bundle->iface, &bundle->ncp, 0, IFACE_CLEAR_ALL);
920   bundle_DownInterface(bundle);
921 
922 #ifndef NORADIUS
923   /* Tell the radius server the bad news */
924   radius_Destroy(&bundle->radius);
925 #endif
926 
927   /* Again, these are all DATALINK_CLOSED unless we're abending */
928   dl = bundle->links;
929   while (dl)
930     dl = datalink_Destroy(dl);
931 
932   ncp_Destroy(&bundle->ncp);
933 
934   close(bundle->dev.fd);
935   bundle_UnlockTun(bundle);
936 
937   /* In case we never made PHASE_NETWORK */
938   bundle_Notify(bundle, EX_ERRDEAD);
939 
940   iface_Destroy(bundle->iface);
941   bundle->iface = NULL;
942 }
943 
944 void
bundle_LinkClosed(struct bundle * bundle,struct datalink * dl)945 bundle_LinkClosed(struct bundle *bundle, struct datalink *dl)
946 {
947   /*
948    * Our datalink has closed.
949    * CleanDatalinks() (called from DoLoop()) will remove closed
950    * BACKGROUND, FOREGROUND and DIRECT links.
951    * If it's the last data link, enter phase DEAD.
952    *
953    * NOTE: dl may not be in our list (bundle_SendDatalink()) !
954    */
955 
956   struct datalink *odl;
957   int other_links;
958 
959   log_SetTtyCommandMode(dl);
960 
961   other_links = 0;
962   for (odl = bundle->links; odl; odl = odl->next)
963     if (odl != dl && odl->state != DATALINK_CLOSED)
964       other_links++;
965 
966   if (!other_links) {
967     if (dl->physical->type != PHYS_AUTO)	/* Not in -auto mode */
968       bundle_DownInterface(bundle);
969     ncp2initial(&bundle->ncp);
970     mp_Down(&bundle->ncp.mp);
971     bundle_NewPhase(bundle, PHASE_DEAD);
972 #ifndef NORADIUS
973     if (bundle->radius.sessiontime)
974       bundle_StopSessionTimer(bundle);
975 #endif
976     bundle_StopIdleTimer(bundle);
977   }
978 }
979 
980 void
bundle_Open(struct bundle * bundle,const char * name,int mask,int force)981 bundle_Open(struct bundle *bundle, const char *name, int mask, int force)
982 {
983   /*
984    * Please open the given datalink, or all if name == NULL
985    */
986   struct datalink *dl;
987 
988   for (dl = bundle->links; dl; dl = dl->next)
989     if (name == NULL || !strcasecmp(dl->name, name)) {
990       if ((mask & dl->physical->type) &&
991           (dl->state == DATALINK_CLOSED ||
992            (force && dl->state == DATALINK_OPENING &&
993             dl->dial.timer.state == TIMER_RUNNING) ||
994            dl->state == DATALINK_READY)) {
995         timer_Stop(&dl->dial.timer);	/* We're finished with this */
996         datalink_Up(dl, 1, 1);
997         if (mask & PHYS_AUTO)
998           break;			/* Only one AUTO link at a time */
999       }
1000       if (name != NULL)
1001         break;
1002     }
1003 }
1004 
1005 struct datalink *
bundle2datalink(struct bundle * bundle,const char * name)1006 bundle2datalink(struct bundle *bundle, const char *name)
1007 {
1008   struct datalink *dl;
1009 
1010   if (name != NULL) {
1011     for (dl = bundle->links; dl; dl = dl->next)
1012       if (!strcasecmp(dl->name, name))
1013         return dl;
1014   } else if (bundle->links && !bundle->links->next)
1015     return bundle->links;
1016 
1017   return NULL;
1018 }
1019 
1020 int
bundle_ShowLinks(struct cmdargs const * arg)1021 bundle_ShowLinks(struct cmdargs const *arg)
1022 {
1023   struct datalink *dl;
1024   struct pppThroughput *t;
1025   unsigned long long octets;
1026   int secs;
1027 
1028   for (dl = arg->bundle->links; dl; dl = dl->next) {
1029     octets = MAX(dl->physical->link.stats.total.in.OctetsPerSecond,
1030                  dl->physical->link.stats.total.out.OctetsPerSecond);
1031 
1032     prompt_Printf(arg->prompt, "Name: %s [%s, %s]",
1033                   dl->name, mode2Nam(dl->physical->type), datalink_State(dl));
1034     if (dl->physical->link.stats.total.rolling && dl->state == DATALINK_OPEN)
1035       prompt_Printf(arg->prompt, " bandwidth %d, %llu bps (%llu bytes/sec)",
1036                     dl->mp.bandwidth ? dl->mp.bandwidth :
1037                                        physical_GetSpeed(dl->physical),
1038                     octets * 8, octets);
1039     prompt_Printf(arg->prompt, "\n");
1040   }
1041 
1042   t = &arg->bundle->ncp.mp.link.stats.total;
1043   octets = MAX(t->in.OctetsPerSecond, t->out.OctetsPerSecond);
1044   secs = t->downtime ? 0 : throughput_uptime(t);
1045   if (secs > t->SamplePeriod)
1046     secs = t->SamplePeriod;
1047   if (secs)
1048     prompt_Printf(arg->prompt, "Currently averaging %llu bps (%llu bytes/sec)"
1049                   " over the last %d secs\n", octets * 8, octets, secs);
1050 
1051   return 0;
1052 }
1053 
1054 static const char *
optval(struct bundle * bundle,int bit)1055 optval(struct bundle *bundle, int bit)
1056 {
1057   return (bundle->cfg.opt & bit) ? "enabled" : "disabled";
1058 }
1059 
1060 int
bundle_ShowStatus(struct cmdargs const * arg)1061 bundle_ShowStatus(struct cmdargs const *arg)
1062 {
1063   int remaining;
1064 
1065   prompt_Printf(arg->prompt, "Phase %s\n", bundle_PhaseName(arg->bundle));
1066   prompt_Printf(arg->prompt, " Device:        %s\n", arg->bundle->dev.Name);
1067   prompt_Printf(arg->prompt, " Interface:     %s @ %lubps",
1068                 arg->bundle->iface->name, arg->bundle->bandwidth);
1069 
1070   if (arg->bundle->upat) {
1071     int secs = bundle_Uptime(arg->bundle);
1072 
1073     prompt_Printf(arg->prompt, ", up time %d:%02d:%02d", secs / 3600,
1074                   (secs / 60) % 60, secs % 60);
1075   }
1076   prompt_Printf(arg->prompt, "\n Queued:        %lu of %u\n",
1077                 (unsigned long)ncp_QueueLen(&arg->bundle->ncp),
1078                 arg->bundle->cfg.ifqueue);
1079 
1080   prompt_Printf(arg->prompt, "\nDefaults:\n");
1081   prompt_Printf(arg->prompt, " Label:             %s\n",
1082                 arg->bundle->cfg.label);
1083   prompt_Printf(arg->prompt, " Auth name:         %s\n",
1084                 arg->bundle->cfg.auth.name);
1085   prompt_Printf(arg->prompt, " Diagnostic socket: ");
1086   if (*server.cfg.sockname != '\0') {
1087     prompt_Printf(arg->prompt, "%s", server.cfg.sockname);
1088     if (server.cfg.mask != (mode_t)-1)
1089       prompt_Printf(arg->prompt, ", mask 0%03o", (int)server.cfg.mask);
1090     prompt_Printf(arg->prompt, "%s\n", server.fd == -1 ? " (not open)" : "");
1091   } else if (server.cfg.port != 0)
1092     prompt_Printf(arg->prompt, "TCP port %d%s\n", server.cfg.port,
1093                   server.fd == -1 ? " (not open)" : "");
1094   else
1095     prompt_Printf(arg->prompt, "none\n");
1096 
1097   prompt_Printf(arg->prompt, " Choked Timer:      %ds\n",
1098                 arg->bundle->cfg.choked.timeout);
1099 
1100 #ifndef NORADIUS
1101   radius_Show(&arg->bundle->radius, arg->prompt);
1102 #endif
1103 
1104   prompt_Printf(arg->prompt, " Idle Timer:        ");
1105   if (arg->bundle->cfg.idle.timeout) {
1106     prompt_Printf(arg->prompt, "%ds", arg->bundle->cfg.idle.timeout);
1107     if (arg->bundle->cfg.idle.min_timeout)
1108       prompt_Printf(arg->prompt, ", min %ds",
1109                     arg->bundle->cfg.idle.min_timeout);
1110     remaining = bundle_RemainingIdleTime(arg->bundle);
1111     if (remaining != -1)
1112       prompt_Printf(arg->prompt, " (%ds remaining)", remaining);
1113     prompt_Printf(arg->prompt, "\n");
1114   } else
1115     prompt_Printf(arg->prompt, "disabled\n");
1116 
1117   prompt_Printf(arg->prompt, " Filter Decap:      %-20.20s",
1118                 optval(arg->bundle, OPT_FILTERDECAP));
1119   prompt_Printf(arg->prompt, " ID check:          %s\n",
1120                 optval(arg->bundle, OPT_IDCHECK));
1121   prompt_Printf(arg->prompt, " Iface-Alias:       %-20.20s",
1122                 optval(arg->bundle, OPT_IFACEALIAS));
1123 #ifndef NOINET6
1124   prompt_Printf(arg->prompt, " IPCP:              %s\n",
1125                 optval(arg->bundle, OPT_IPCP));
1126   prompt_Printf(arg->prompt, " IPV6CP:            %-20.20s",
1127                 optval(arg->bundle, OPT_IPV6CP));
1128 #endif
1129   prompt_Printf(arg->prompt, " Keep-Session:      %s\n",
1130                 optval(arg->bundle, OPT_KEEPSESSION));
1131   prompt_Printf(arg->prompt, " Loopback:          %-20.20s",
1132                 optval(arg->bundle, OPT_LOOPBACK));
1133   prompt_Printf(arg->prompt, " PasswdAuth:        %s\n",
1134                 optval(arg->bundle, OPT_PASSWDAUTH));
1135   prompt_Printf(arg->prompt, " Proxy:             %-20.20s",
1136                 optval(arg->bundle, OPT_PROXY));
1137   prompt_Printf(arg->prompt, " Proxyall:          %s\n",
1138                 optval(arg->bundle, OPT_PROXYALL));
1139   prompt_Printf(arg->prompt, " Sticky Routes:     %-20.20s",
1140                 optval(arg->bundle, OPT_SROUTES));
1141   prompt_Printf(arg->prompt, " TCPMSS Fixup:      %s\n",
1142                 optval(arg->bundle, OPT_TCPMSSFIXUP));
1143   prompt_Printf(arg->prompt, " Throughput:        %-20.20s",
1144                 optval(arg->bundle, OPT_THROUGHPUT));
1145   prompt_Printf(arg->prompt, " Utmp Logging:      %s\n",
1146                 optval(arg->bundle, OPT_UTMP));
1147 
1148   return 0;
1149 }
1150 
1151 static void
bundle_IdleTimeout(void * v)1152 bundle_IdleTimeout(void *v)
1153 {
1154   struct bundle *bundle = (struct bundle *)v;
1155 
1156   log_Printf(LogPHASE, "Idle timer expired\n");
1157   bundle_StopIdleTimer(bundle);
1158   bundle_Close(bundle, NULL, CLOSE_STAYDOWN);
1159 }
1160 
1161 /*
1162  *  Start Idle timer. If timeout is reached, we call bundle_Close() to
1163  *  close LCP and link.
1164  */
1165 void
bundle_StartIdleTimer(struct bundle * bundle,unsigned secs)1166 bundle_StartIdleTimer(struct bundle *bundle, unsigned secs)
1167 {
1168   timer_Stop(&bundle->idle.timer);
1169   if ((bundle->phys_type.open & (PHYS_DEDICATED|PHYS_DDIAL)) !=
1170       bundle->phys_type.open && bundle->cfg.idle.timeout) {
1171     time_t now = time(NULL);
1172 
1173     if (secs == 0)
1174       secs = bundle->cfg.idle.timeout;
1175 
1176     /* We want at least `secs' */
1177     if (bundle->cfg.idle.min_timeout > secs && bundle->upat) {
1178       int up = now - bundle->upat;
1179 
1180       if ((long long)bundle->cfg.idle.min_timeout - up > (long long)secs)
1181         /* Only increase from the current `remaining' value */
1182         secs = bundle->cfg.idle.min_timeout - up;
1183     }
1184     bundle->idle.timer.func = bundle_IdleTimeout;
1185     bundle->idle.timer.name = "idle";
1186     bundle->idle.timer.load = secs * SECTICKS;
1187     bundle->idle.timer.arg = bundle;
1188     timer_Start(&bundle->idle.timer);
1189     bundle->idle.done = now + secs;
1190   }
1191 }
1192 
1193 void
bundle_SetIdleTimer(struct bundle * bundle,int timeout,int min_timeout)1194 bundle_SetIdleTimer(struct bundle *bundle, int timeout, int min_timeout)
1195 {
1196   bundle->cfg.idle.timeout = timeout;
1197   if (min_timeout >= 0)
1198     bundle->cfg.idle.min_timeout = min_timeout;
1199   if (ncp_LayersOpen(&bundle->ncp))
1200     bundle_StartIdleTimer(bundle, 0);
1201 }
1202 
1203 void
bundle_StopIdleTimer(struct bundle * bundle)1204 bundle_StopIdleTimer(struct bundle *bundle)
1205 {
1206   timer_Stop(&bundle->idle.timer);
1207   bundle->idle.done = 0;
1208 }
1209 
1210 static int
bundle_RemainingIdleTime(struct bundle * bundle)1211 bundle_RemainingIdleTime(struct bundle *bundle)
1212 {
1213   if (bundle->idle.done)
1214     return bundle->idle.done - time(NULL);
1215   return -1;
1216 }
1217 
1218 #ifndef NORADIUS
1219 
1220 static void
bundle_SessionTimeout(void * v)1221 bundle_SessionTimeout(void *v)
1222 {
1223   struct bundle *bundle = (struct bundle *)v;
1224 
1225   log_Printf(LogPHASE, "Session-Timeout timer expired\n");
1226   bundle_StopSessionTimer(bundle);
1227   bundle_Close(bundle, NULL, CLOSE_STAYDOWN);
1228 }
1229 
1230 void
bundle_StartSessionTimer(struct bundle * bundle,unsigned secs)1231 bundle_StartSessionTimer(struct bundle *bundle, unsigned secs)
1232 {
1233   timer_Stop(&bundle->session.timer);
1234   if ((bundle->phys_type.open & (PHYS_DEDICATED|PHYS_DDIAL)) !=
1235       bundle->phys_type.open && bundle->radius.sessiontime) {
1236     time_t now = time(NULL);
1237 
1238     if (secs == 0)
1239       secs = bundle->radius.sessiontime;
1240 
1241     bundle->session.timer.func = bundle_SessionTimeout;
1242     bundle->session.timer.name = "session";
1243     bundle->session.timer.load = secs * SECTICKS;
1244     bundle->session.timer.arg = bundle;
1245     timer_Start(&bundle->session.timer);
1246     bundle->session.done = now + secs;
1247   }
1248 }
1249 
1250 void
bundle_StopSessionTimer(struct bundle * bundle)1251 bundle_StopSessionTimer(struct bundle *bundle)
1252 {
1253   timer_Stop(&bundle->session.timer);
1254   bundle->session.done = 0;
1255 }
1256 
1257 #endif
1258 
1259 int
bundle_IsDead(struct bundle * bundle)1260 bundle_IsDead(struct bundle *bundle)
1261 {
1262   return !bundle->links || (bundle->phase == PHASE_DEAD && bundle->CleaningUp);
1263 }
1264 
1265 static struct datalink *
bundle_DatalinkLinkout(struct bundle * bundle,struct datalink * dl)1266 bundle_DatalinkLinkout(struct bundle *bundle, struct datalink *dl)
1267 {
1268   struct datalink **dlp;
1269 
1270   for (dlp = &bundle->links; *dlp; dlp = &(*dlp)->next)
1271     if (*dlp == dl) {
1272       *dlp = dl->next;
1273       dl->next = NULL;
1274       bundle_LinksRemoved(bundle);
1275       return dl;
1276     }
1277 
1278   return NULL;
1279 }
1280 
1281 static void
bundle_DatalinkLinkin(struct bundle * bundle,struct datalink * dl)1282 bundle_DatalinkLinkin(struct bundle *bundle, struct datalink *dl)
1283 {
1284   struct datalink **dlp = &bundle->links;
1285 
1286   while (*dlp)
1287     dlp = &(*dlp)->next;
1288 
1289   *dlp = dl;
1290   dl->next = NULL;
1291 
1292   bundle_LinkAdded(bundle, dl);
1293   mp_CheckAutoloadTimer(&bundle->ncp.mp);
1294 }
1295 
1296 void
bundle_CleanDatalinks(struct bundle * bundle)1297 bundle_CleanDatalinks(struct bundle *bundle)
1298 {
1299   struct datalink **dlp = &bundle->links;
1300   int found = 0;
1301 
1302   while (*dlp)
1303     if ((*dlp)->state == DATALINK_CLOSED &&
1304         (*dlp)->physical->type &
1305         (PHYS_DIRECT|PHYS_BACKGROUND|PHYS_FOREGROUND)) {
1306       *dlp = datalink_Destroy(*dlp);
1307       found++;
1308     } else
1309       dlp = &(*dlp)->next;
1310 
1311   if (found)
1312     bundle_LinksRemoved(bundle);
1313 }
1314 
1315 int
bundle_DatalinkClone(struct bundle * bundle,struct datalink * dl,const char * name)1316 bundle_DatalinkClone(struct bundle *bundle, struct datalink *dl,
1317                      const char *name)
1318 {
1319   if (bundle2datalink(bundle, name)) {
1320     log_Printf(LogWARN, "Clone: %s: name already exists\n", name);
1321     return 0;
1322   }
1323 
1324   bundle_DatalinkLinkin(bundle, datalink_Clone(dl, name));
1325   return 1;
1326 }
1327 
1328 void
bundle_DatalinkRemove(struct bundle * bundle,struct datalink * dl)1329 bundle_DatalinkRemove(struct bundle *bundle, struct datalink *dl)
1330 {
1331   dl = bundle_DatalinkLinkout(bundle, dl);
1332   if (dl)
1333     datalink_Destroy(dl);
1334 }
1335 
1336 void
bundle_SetLabel(struct bundle * bundle,const char * label)1337 bundle_SetLabel(struct bundle *bundle, const char *label)
1338 {
1339   if (label)
1340     strncpy(bundle->cfg.label, label, sizeof bundle->cfg.label - 1);
1341   else
1342     *bundle->cfg.label = '\0';
1343 }
1344 
1345 const char *
bundle_GetLabel(struct bundle * bundle)1346 bundle_GetLabel(struct bundle *bundle)
1347 {
1348   return *bundle->cfg.label ? bundle->cfg.label : NULL;
1349 }
1350 
1351 int
bundle_LinkSize()1352 bundle_LinkSize()
1353 {
1354   struct iovec iov[SCATTER_SEGMENTS];
1355   int niov, expect, f;
1356 
1357   iov[0].iov_len = strlen(Version) + 1;
1358   iov[0].iov_base = NULL;
1359   niov = 1;
1360   if (datalink2iov(NULL, iov, &niov, SCATTER_SEGMENTS, NULL, NULL) == -1) {
1361     log_Printf(LogERROR, "Cannot determine space required for link\n");
1362     return 0;
1363   }
1364 
1365   for (f = expect = 0; f < niov; f++)
1366     expect += iov[f].iov_len;
1367 
1368   return expect;
1369 }
1370 
1371 void
bundle_ReceiveDatalink(struct bundle * bundle,int s)1372 bundle_ReceiveDatalink(struct bundle *bundle, int s)
1373 {
1374   char cmsgbuf[sizeof(struct cmsghdr) + sizeof(int) * SEND_MAXFD];
1375   int niov, expect, f, *fd, nfd, onfd, got;
1376   struct iovec iov[SCATTER_SEGMENTS];
1377   struct cmsghdr *cmsg;
1378   struct msghdr msg;
1379   struct datalink *dl;
1380   pid_t pid;
1381 
1382   log_Printf(LogPHASE, "Receiving datalink\n");
1383 
1384   /*
1385    * Create our scatter/gather array - passing NULL gets the space
1386    * allocation requirement rather than actually flattening the
1387    * structures.
1388    */
1389   iov[0].iov_len = strlen(Version) + 1;
1390   iov[0].iov_base = NULL;
1391   niov = 1;
1392   if (datalink2iov(NULL, iov, &niov, SCATTER_SEGMENTS, NULL, NULL) == -1) {
1393     log_Printf(LogERROR, "Cannot determine space required for link\n");
1394     return;
1395   }
1396 
1397   /* Allocate the scatter/gather array for recvmsg() */
1398   for (f = expect = 0; f < niov; f++) {
1399     if ((iov[f].iov_base = malloc(iov[f].iov_len)) == NULL) {
1400       log_Printf(LogERROR, "Cannot allocate space to receive link\n");
1401       return;
1402     }
1403     if (f)
1404       expect += iov[f].iov_len;
1405   }
1406 
1407   /* Set up our message */
1408   cmsg = (struct cmsghdr *)cmsgbuf;
1409   cmsg->cmsg_len = sizeof cmsgbuf;
1410   cmsg->cmsg_level = SOL_SOCKET;
1411   cmsg->cmsg_type = 0;
1412 
1413   memset(&msg, '\0', sizeof msg);
1414   msg.msg_name = NULL;
1415   msg.msg_namelen = 0;
1416   msg.msg_iov = iov;
1417   msg.msg_iovlen = 1;		/* Only send the version at the first pass */
1418   msg.msg_control = cmsgbuf;
1419   msg.msg_controllen = sizeof cmsgbuf;
1420 
1421   log_Printf(LogDEBUG, "Expecting %u scatter/gather bytes\n",
1422              (unsigned)iov[0].iov_len);
1423 
1424   if ((got = recvmsg(s, &msg, MSG_WAITALL)) != iov[0].iov_len) {
1425     if (got == -1)
1426       log_Printf(LogERROR, "Failed recvmsg: %s\n", strerror(errno));
1427     else
1428       log_Printf(LogERROR, "Failed recvmsg: Got %d, not %u\n",
1429                  got, (unsigned)iov[0].iov_len);
1430     while (niov--)
1431       free(iov[niov].iov_base);
1432     return;
1433   }
1434 
1435   if (cmsg->cmsg_level != SOL_SOCKET || cmsg->cmsg_type != SCM_RIGHTS) {
1436     log_Printf(LogERROR, "Recvmsg: no descriptors received !\n");
1437     while (niov--)
1438       free(iov[niov].iov_base);
1439     return;
1440   }
1441 
1442   fd = (int *)CMSG_DATA(cmsg);
1443   nfd = ((caddr_t)cmsg + cmsg->cmsg_len - (caddr_t)fd) / sizeof(int);
1444 
1445   if (nfd < 2) {
1446     log_Printf(LogERROR, "Recvmsg: %d descriptor%s received (too few) !\n",
1447                nfd, nfd == 1 ? "" : "s");
1448     while (nfd--)
1449       close(fd[nfd]);
1450     while (niov--)
1451       free(iov[niov].iov_base);
1452     return;
1453   }
1454 
1455   /*
1456    * We've successfully received two or more open file descriptors
1457    * through our socket, plus a version string.  Make sure it's the
1458    * correct version, and drop the connection if it's not.
1459    */
1460   if (strncmp(Version, iov[0].iov_base, iov[0].iov_len)) {
1461     log_Printf(LogWARN, "Cannot receive datalink, incorrect version"
1462                " (\"%.*s\", not \"%s\")\n", (int)iov[0].iov_len,
1463                (char *)iov[0].iov_base, Version);
1464     while (nfd--)
1465       close(fd[nfd]);
1466     while (niov--)
1467       free(iov[niov].iov_base);
1468     return;
1469   }
1470 
1471   /*
1472    * Everything looks good.  Send the other side our process id so that
1473    * they can transfer lock ownership, and wait for them to send the
1474    * actual link data.
1475    */
1476   pid = getpid();
1477   if ((got = write(fd[1], &pid, sizeof pid)) != sizeof pid) {
1478     if (got == -1)
1479       log_Printf(LogERROR, "Failed write: %s\n", strerror(errno));
1480     else
1481       log_Printf(LogERROR, "Failed write: Got %d, not %d\n", got,
1482                  (int)(sizeof pid));
1483     while (nfd--)
1484       close(fd[nfd]);
1485     while (niov--)
1486       free(iov[niov].iov_base);
1487     return;
1488   }
1489 
1490   if ((got = readv(fd[1], iov + 1, niov - 1)) != expect) {
1491     if (got == -1)
1492       log_Printf(LogERROR, "Failed write: %s\n", strerror(errno));
1493     else
1494       log_Printf(LogERROR, "Failed write: Got %d, not %d\n", got, expect);
1495     while (nfd--)
1496       close(fd[nfd]);
1497     while (niov--)
1498       free(iov[niov].iov_base);
1499     return;
1500   }
1501   close(fd[1]);
1502 
1503   onfd = nfd;	/* We've got this many in our array */
1504   nfd -= 2;	/* Don't include p->fd and our reply descriptor */
1505   niov = 1;	/* Skip the version id */
1506   dl = iov2datalink(bundle, iov, &niov, sizeof iov / sizeof *iov, fd[0],
1507                     fd + 2, &nfd);
1508   if (dl) {
1509 
1510     if (nfd) {
1511       log_Printf(LogERROR, "bundle_ReceiveDatalink: Failed to handle %d "
1512                  "auxiliary file descriptors (%d remain)\n", onfd, nfd);
1513       datalink_Destroy(dl);
1514       while (nfd--)
1515         close(fd[onfd--]);
1516       close(fd[0]);
1517     } else {
1518       bundle_DatalinkLinkin(bundle, dl);
1519       datalink_AuthOk(dl);
1520       bundle_CalculateBandwidth(dl->bundle);
1521     }
1522   } else {
1523     while (nfd--)
1524       close(fd[onfd--]);
1525     close(fd[0]);
1526     close(fd[1]);
1527   }
1528 
1529   free(iov[0].iov_base);
1530 }
1531 
1532 void
bundle_SendDatalink(struct datalink * dl,int s,struct sockaddr_un * sun)1533 bundle_SendDatalink(struct datalink *dl, int s, struct sockaddr_un *sun)
1534 {
1535   char cmsgbuf[CMSG_SPACE(sizeof(int) * SEND_MAXFD)];
1536   const char *constlock;
1537   char *lock;
1538   struct cmsghdr *cmsg;
1539   struct msghdr msg;
1540   struct iovec iov[SCATTER_SEGMENTS];
1541   int niov, f, expect, newsid, fd[SEND_MAXFD], nfd, reply[2], got;
1542   pid_t newpid;
1543 
1544   log_Printf(LogPHASE, "Transmitting datalink %s\n", dl->name);
1545 
1546   /* Record the base device name for a lock transfer later */
1547   constlock = physical_LockedDevice(dl->physical);
1548   if (constlock) {
1549     lock = alloca(strlen(constlock) + 1);
1550     strlcpy(lock, constlock, strlen(constlock) + 1);
1551   } else
1552     lock = NULL;
1553 
1554   bundle_LinkClosed(dl->bundle, dl);
1555   bundle_DatalinkLinkout(dl->bundle, dl);
1556 
1557   /* Build our scatter/gather array */
1558   iov[0].iov_len = strlen(Version) + 1;
1559   iov[0].iov_base = strdup(Version);
1560   niov = 1;
1561   nfd = 0;
1562 
1563   fd[0] = datalink2iov(dl, iov, &niov, SCATTER_SEGMENTS, fd + 2, &nfd);
1564 
1565   if (fd[0] != -1 && socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, reply) != -1) {
1566     /*
1567      * fd[1] is used to get the peer process id back, then to confirm that
1568      * we've transferred any device locks to that process id.
1569      */
1570     fd[1] = reply[1];
1571 
1572     nfd += 2;			/* Include fd[0] and fd[1] */
1573     memset(&msg, '\0', sizeof msg);
1574 
1575     msg.msg_name = NULL;
1576     msg.msg_namelen = 0;
1577     /*
1578      * Only send the version to start...  We used to send the whole lot, but
1579      * this caused problems with our RECVBUF size as a single link is about
1580      * 22k !  This way, we should bump into no limits.
1581      */
1582     msg.msg_iovlen = 1;
1583     msg.msg_iov = iov;
1584     msg.msg_control = cmsgbuf;
1585     msg.msg_controllen = CMSG_SPACE(sizeof(int) * nfd);
1586     msg.msg_flags = 0;
1587 
1588     cmsg = (struct cmsghdr *)cmsgbuf;
1589     cmsg->cmsg_len = msg.msg_controllen;
1590     cmsg->cmsg_level = SOL_SOCKET;
1591     cmsg->cmsg_type = SCM_RIGHTS;
1592 
1593     for (f = 0; f < nfd; f++)
1594       *((int *)CMSG_DATA(cmsg) + f) = fd[f];
1595 
1596     for (f = 1, expect = 0; f < niov; f++)
1597       expect += iov[f].iov_len;
1598 
1599     if (setsockopt(reply[0], SOL_SOCKET, SO_SNDBUF, &expect, sizeof(int)) == -1)
1600       log_Printf(LogERROR, "setsockopt(SO_RCVBUF, %d): %s\n", expect,
1601                  strerror(errno));
1602     if (setsockopt(reply[1], SOL_SOCKET, SO_RCVBUF, &expect, sizeof(int)) == -1)
1603       log_Printf(LogERROR, "setsockopt(SO_RCVBUF, %d): %s\n", expect,
1604                  strerror(errno));
1605 
1606     log_Printf(LogDEBUG, "Sending %d descriptor%s and %u bytes in scatter"
1607                "/gather array\n", nfd, nfd == 1 ? "" : "s",
1608                (unsigned)iov[0].iov_len);
1609 
1610     if ((got = sendmsg(s, &msg, 0)) == -1)
1611       log_Printf(LogERROR, "Failed sendmsg: %s: %s\n",
1612                  sun->sun_path, strerror(errno));
1613     else if (got != iov[0].iov_len)
1614       log_Printf(LogERROR, "%s: Failed initial sendmsg: Only sent %d of %u\n",
1615                  sun->sun_path, got, (unsigned)iov[0].iov_len);
1616     else {
1617       /* We must get the ACK before closing the descriptor ! */
1618       int res;
1619 
1620       if ((got = read(reply[0], &newpid, sizeof newpid)) == sizeof newpid) {
1621         log_Printf(LogDEBUG, "Received confirmation from pid %ld\n",
1622                    (long)newpid);
1623         if (lock && (res = ID0uu_lock_txfr(lock, newpid)) != UU_LOCK_OK)
1624             log_Printf(LogERROR, "uu_lock_txfr: %s\n", uu_lockerr(res));
1625 
1626         log_Printf(LogDEBUG, "Transmitting link (%d bytes)\n", expect);
1627         if ((got = writev(reply[0], iov + 1, niov - 1)) != expect) {
1628           if (got == -1)
1629             log_Printf(LogERROR, "%s: Failed writev: %s\n",
1630                        sun->sun_path, strerror(errno));
1631           else
1632             log_Printf(LogERROR, "%s: Failed writev: Wrote %d of %d\n",
1633                        sun->sun_path, got, expect);
1634         }
1635       } else if (got == -1)
1636         log_Printf(LogERROR, "%s: Failed socketpair read: %s\n",
1637                    sun->sun_path, strerror(errno));
1638       else
1639         log_Printf(LogERROR, "%s: Failed socketpair read: Got %d of %d\n",
1640                    sun->sun_path, got, (int)(sizeof newpid));
1641     }
1642 
1643     close(reply[0]);
1644     close(reply[1]);
1645 
1646     newsid = Enabled(dl->bundle, OPT_KEEPSESSION) ||
1647              tcgetpgrp(fd[0]) == getpgrp();
1648     while (nfd)
1649       close(fd[--nfd]);
1650     if (newsid)
1651       bundle_setsid(dl->bundle, got != -1);
1652   }
1653   close(s);
1654 
1655   while (niov--)
1656     free(iov[niov].iov_base);
1657 }
1658 
1659 int
bundle_RenameDatalink(struct bundle * bundle,struct datalink * ndl,const char * name)1660 bundle_RenameDatalink(struct bundle *bundle, struct datalink *ndl,
1661                       const char *name)
1662 {
1663   struct datalink *dl;
1664 
1665   if (!strcasecmp(ndl->name, name))
1666     return 1;
1667 
1668   for (dl = bundle->links; dl; dl = dl->next)
1669     if (!strcasecmp(dl->name, name))
1670       return 0;
1671 
1672   datalink_Rename(ndl, name);
1673   return 1;
1674 }
1675 
1676 int
bundle_SetMode(struct bundle * bundle,struct datalink * dl,int mode)1677 bundle_SetMode(struct bundle *bundle, struct datalink *dl, int mode)
1678 {
1679   int omode;
1680 
1681   omode = dl->physical->type;
1682   if (omode == mode)
1683     return 1;
1684 
1685   if (mode == PHYS_AUTO && !(bundle->phys_type.all & PHYS_AUTO))
1686     /* First auto link */
1687     if (bundle->ncp.ipcp.peer_ip.s_addr == INADDR_ANY) {
1688       log_Printf(LogWARN, "You must `set ifaddr' or `open' before"
1689                  " changing mode to %s\n", mode2Nam(mode));
1690       return 0;
1691     }
1692 
1693   if (!datalink_SetMode(dl, mode))
1694     return 0;
1695 
1696   if (mode == PHYS_AUTO && !(bundle->phys_type.all & PHYS_AUTO) &&
1697       bundle->phase != PHASE_NETWORK)
1698     /* First auto link, we need an interface */
1699     ipcp_InterfaceUp(&bundle->ncp.ipcp);
1700 
1701   /* Regenerate phys_type and adjust idle timer */
1702   bundle_LinksRemoved(bundle);
1703 
1704   return 1;
1705 }
1706 
1707 void
bundle_setsid(struct bundle * bundle,int holdsession)1708 bundle_setsid(struct bundle *bundle, int holdsession)
1709 {
1710   /*
1711    * Lose the current session.  This means getting rid of our pid
1712    * too so that the tty device will really go away, and any getty
1713    * etc will be allowed to restart.
1714    */
1715   pid_t pid, orig;
1716   int fds[2];
1717   char done;
1718   struct datalink *dl;
1719 
1720   if (!holdsession && bundle_IsDead(bundle)) {
1721     /*
1722      * No need to lose our session after all... we're going away anyway
1723      *
1724      * We should really stop the timer and pause if holdsession is set and
1725      * the bundle's dead, but that leaves other resources lying about :-(
1726      */
1727     return;
1728   }
1729 
1730   orig = getpid();
1731   if (pipe(fds) == -1) {
1732     log_Printf(LogERROR, "pipe: %s\n", strerror(errno));
1733     return;
1734   }
1735   switch ((pid = fork())) {
1736     case -1:
1737       log_Printf(LogERROR, "fork: %s\n", strerror(errno));
1738       close(fds[0]);
1739       close(fds[1]);
1740       return;
1741     case 0:
1742       close(fds[1]);
1743       read(fds[0], &done, 1);		/* uu_locks are mine ! */
1744       close(fds[0]);
1745       if (pipe(fds) == -1) {
1746         log_Printf(LogERROR, "pipe(2): %s\n", strerror(errno));
1747         return;
1748       }
1749       switch ((pid = fork())) {
1750         case -1:
1751           log_Printf(LogERROR, "fork(2): %s\n", strerror(errno));
1752           close(fds[0]);
1753           close(fds[1]);
1754           return;
1755         case 0:
1756           close(fds[1]);
1757           bundle_LockTun(bundle);	/* update pid */
1758           read(fds[0], &done, 1);	/* uu_locks are mine ! */
1759           close(fds[0]);
1760           setsid();
1761           bundle_ChangedPID(bundle);
1762           log_Printf(LogDEBUG, "%ld -> %ld: %s session control\n",
1763                      (long)orig, (long)getpid(),
1764                      holdsession ? "Passed" : "Dropped");
1765           timer_InitService(0);		/* Start the Timer Service */
1766           break;
1767         default:
1768           close(fds[0]);
1769           /* Give away all our physical locks (to the final process) */
1770           for (dl = bundle->links; dl; dl = dl->next)
1771             if (dl->state != DATALINK_CLOSED)
1772               physical_ChangedPid(dl->physical, pid);
1773           write(fds[1], "!", 1);	/* done */
1774           close(fds[1]);
1775           _exit(0);
1776           break;
1777       }
1778       break;
1779     default:
1780       close(fds[0]);
1781       /* Give away all our physical locks (to the intermediate process) */
1782       for (dl = bundle->links; dl; dl = dl->next)
1783         if (dl->state != DATALINK_CLOSED)
1784           physical_ChangedPid(dl->physical, pid);
1785       write(fds[1], "!", 1);	/* done */
1786       close(fds[1]);
1787       if (holdsession) {
1788         int status;
1789 
1790         timer_TermService();
1791         signal(SIGPIPE, SIG_DFL);
1792         signal(SIGALRM, SIG_DFL);
1793         signal(SIGHUP, SIG_DFL);
1794         signal(SIGTERM, SIG_DFL);
1795         signal(SIGINT, SIG_DFL);
1796         signal(SIGQUIT, SIG_DFL);
1797 	closefrom(0);
1798 
1799         /*
1800          * Reap the intermediate process.  As we're not exiting but the
1801          * intermediate is, we don't want it to become defunct.
1802          */
1803         waitpid(pid, &status, 0);
1804         /* Tweak our process arguments.... */
1805         SetTitle("session owner");
1806 #ifndef NOSUID
1807         setuid(ID0realuid());
1808 #endif
1809         /*
1810          * Hang around for a HUP.  This should happen as soon as the
1811          * ppp that we passed our ctty descriptor to closes it.
1812          * NOTE: If this process dies, the passed descriptor becomes
1813          *       invalid and will give a select() error by setting one
1814          *       of the error fds, aborting the other ppp.  We don't
1815          *       want that to happen !
1816          */
1817         pause();
1818       }
1819       _exit(0);
1820       break;
1821   }
1822 }
1823 
1824 int
bundle_HighestState(struct bundle * bundle)1825 bundle_HighestState(struct bundle *bundle)
1826 {
1827   struct datalink *dl;
1828   int result = DATALINK_CLOSED;
1829 
1830   for (dl = bundle->links; dl; dl = dl->next)
1831     if (result < dl->state)
1832       result = dl->state;
1833 
1834   return result;
1835 }
1836 
1837 int
bundle_Exception(struct bundle * bundle,int fd)1838 bundle_Exception(struct bundle *bundle, int fd)
1839 {
1840   struct datalink *dl;
1841 
1842   for (dl = bundle->links; dl; dl = dl->next)
1843     if (dl->physical->fd == fd) {
1844       datalink_Down(dl, CLOSE_NORMAL);
1845       return 1;
1846     }
1847 
1848   return 0;
1849 }
1850 
1851 void
bundle_AdjustFilters(struct bundle * bundle,struct ncpaddr * local,struct ncpaddr * remote)1852 bundle_AdjustFilters(struct bundle *bundle, struct ncpaddr *local,
1853                      struct ncpaddr *remote)
1854 {
1855   filter_AdjustAddr(&bundle->filter.in, local, remote, NULL);
1856   filter_AdjustAddr(&bundle->filter.out, local, remote, NULL);
1857   filter_AdjustAddr(&bundle->filter.dial, local, remote, NULL);
1858   filter_AdjustAddr(&bundle->filter.alive, local, remote, NULL);
1859 }
1860 
1861 void
bundle_AdjustDNS(struct bundle * bundle)1862 bundle_AdjustDNS(struct bundle *bundle)
1863 {
1864   struct in_addr *dns = bundle->ncp.ipcp.ns.dns;
1865 
1866   filter_AdjustAddr(&bundle->filter.in, NULL, NULL, dns);
1867   filter_AdjustAddr(&bundle->filter.out, NULL, NULL, dns);
1868   filter_AdjustAddr(&bundle->filter.dial, NULL, NULL, dns);
1869   filter_AdjustAddr(&bundle->filter.alive, NULL, NULL, dns);
1870 }
1871 
1872 void
bundle_CalculateBandwidth(struct bundle * bundle)1873 bundle_CalculateBandwidth(struct bundle *bundle)
1874 {
1875   struct datalink *dl;
1876   int sp, overhead, maxoverhead;
1877 
1878   bundle->bandwidth = 0;
1879   bundle->iface->mtu = 0;
1880   maxoverhead = 0;
1881 
1882   for (dl = bundle->links; dl; dl = dl->next) {
1883     overhead = ccp_MTUOverhead(&dl->physical->link.ccp);
1884     if (maxoverhead < overhead)
1885       maxoverhead = overhead;
1886     if (dl->state == DATALINK_OPEN) {
1887       if ((sp = dl->mp.bandwidth) == 0 &&
1888           (sp = physical_GetSpeed(dl->physical)) == 0)
1889         log_Printf(LogDEBUG, "%s: %s: Cannot determine bandwidth\n",
1890                    dl->name, dl->physical->name.full);
1891       else
1892         bundle->bandwidth += sp;
1893       if (!bundle->ncp.mp.active) {
1894         bundle->iface->mtu = dl->physical->link.lcp.his_mru;
1895 	if (dl->physical->link.lcp.cfg.max_mtu &&
1896 	    (dl->physical->link.lcp.cfg.max_mtu < bundle->iface->mtu))
1897 		bundle->iface->mtu = dl->physical->link.lcp.cfg.max_mtu;
1898         break;
1899       }
1900     }
1901   }
1902 
1903   if (bundle->bandwidth == 0)
1904     bundle->bandwidth = 115200;		/* Shrug */
1905 
1906   if (bundle->ncp.mp.active) {
1907     bundle->iface->mtu = bundle->ncp.mp.peer_mrru;
1908     overhead = ccp_MTUOverhead(&bundle->ncp.mp.link.ccp);
1909     if (maxoverhead < overhead)
1910       maxoverhead = overhead;
1911   } else if (!bundle->iface->mtu)
1912     bundle->iface->mtu = DEF_MRU;
1913 
1914 #ifndef NORADIUS
1915   if (bundle->radius.valid && bundle->radius.mtu &&
1916       bundle->radius.mtu < bundle->iface->mtu) {
1917     log_Printf(LogLCP, "Reducing MTU to radius value %lu\n",
1918                bundle->radius.mtu);
1919     bundle->iface->mtu = bundle->radius.mtu;
1920   }
1921 #endif
1922 
1923   if (maxoverhead) {
1924     log_Printf(LogLCP, "Reducing MTU from %d to %d (CCP requirement)\n",
1925                bundle->iface->mtu, bundle->iface->mtu - maxoverhead);
1926     bundle->iface->mtu -= maxoverhead;
1927   }
1928 
1929   tun_configure(bundle);
1930 
1931   route_UpdateMTU(bundle);
1932 }
1933 
1934 void
bundle_AutoAdjust(struct bundle * bundle,int percent,int what)1935 bundle_AutoAdjust(struct bundle *bundle, int percent, int what)
1936 {
1937   struct datalink *dl, *choice, *otherlinkup;
1938 
1939   choice = otherlinkup = NULL;
1940   for (dl = bundle->links; dl; dl = dl->next)
1941     if (dl->physical->type == PHYS_AUTO) {
1942       if (dl->state == DATALINK_OPEN) {
1943         if (what == AUTO_DOWN) {
1944           if (choice)
1945             otherlinkup = choice;
1946           choice = dl;
1947         }
1948       } else if (dl->state == DATALINK_CLOSED) {
1949         if (what == AUTO_UP) {
1950           choice = dl;
1951           break;
1952         }
1953       } else {
1954         /* An auto link in an intermediate state - forget it for the moment */
1955         choice = NULL;
1956         break;
1957       }
1958     } else if (dl->state == DATALINK_OPEN && what == AUTO_DOWN)
1959       otherlinkup = dl;
1960 
1961   if (choice) {
1962     if (what == AUTO_UP) {
1963       log_Printf(LogPHASE, "%d%% saturation -> Opening link ``%s''\n",
1964                  percent, choice->name);
1965       datalink_Up(choice, 1, 1);
1966       mp_CheckAutoloadTimer(&bundle->ncp.mp);
1967     } else if (otherlinkup) {	/* Only bring the second-last link down */
1968       log_Printf(LogPHASE, "%d%% saturation -> Closing link ``%s''\n",
1969                  percent, choice->name);
1970       datalink_Close(choice, CLOSE_STAYDOWN);
1971       mp_CheckAutoloadTimer(&bundle->ncp.mp);
1972     }
1973   }
1974 }
1975 
1976 int
bundle_WantAutoloadTimer(struct bundle * bundle)1977 bundle_WantAutoloadTimer(struct bundle *bundle)
1978 {
1979   struct datalink *dl;
1980   int autolink, opened;
1981 
1982   if (bundle->phase == PHASE_NETWORK) {
1983     for (autolink = opened = 0, dl = bundle->links; dl; dl = dl->next)
1984       if (dl->physical->type == PHYS_AUTO) {
1985         if (++autolink == 2 || (autolink == 1 && opened))
1986           /* Two auto links or one auto and one open in NETWORK phase */
1987           return 1;
1988       } else if (dl->state == DATALINK_OPEN) {
1989         opened++;
1990         if (autolink)
1991           /* One auto and one open link in NETWORK phase */
1992           return 1;
1993       }
1994   }
1995 
1996   return 0;
1997 }
1998 
1999 void
bundle_ChangedPID(struct bundle * bundle)2000 bundle_ChangedPID(struct bundle *bundle)
2001 {
2002 #ifdef TUNSIFPID
2003   ioctl(bundle->dev.fd, TUNSIFPID, 0);
2004 #endif
2005 }
2006 
2007 int
bundle_Uptime(struct bundle * bundle)2008 bundle_Uptime(struct bundle *bundle)
2009 {
2010   if (bundle->upat)
2011     return time(NULL) - bundle->upat;
2012 
2013   return 0;
2014 }
2015