xref: /freebsd/usr.sbin/ppp/bundle.c (revision 1d1fc0171ef9061517a58ab70a7d0e2e8de33977)
17a6f8720SBrian Somers /*-
27a6f8720SBrian Somers  * Copyright (c) 1998 Brian Somers <brian@Awfulhak.org>
37a6f8720SBrian Somers  * All rights reserved.
47a6f8720SBrian Somers  *
57a6f8720SBrian Somers  * Redistribution and use in source and binary forms, with or without
67a6f8720SBrian Somers  * modification, are permitted provided that the following conditions
77a6f8720SBrian Somers  * are met:
87a6f8720SBrian Somers  * 1. Redistributions of source code must retain the above copyright
97a6f8720SBrian Somers  *    notice, this list of conditions and the following disclaimer.
107a6f8720SBrian Somers  * 2. Redistributions in binary form must reproduce the above copyright
117a6f8720SBrian Somers  *    notice, this list of conditions and the following disclaimer in the
127a6f8720SBrian Somers  *    documentation and/or other materials provided with the distribution.
137a6f8720SBrian Somers  *
147a6f8720SBrian Somers  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
157a6f8720SBrian Somers  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
167a6f8720SBrian Somers  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
177a6f8720SBrian Somers  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
187a6f8720SBrian Somers  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
197a6f8720SBrian Somers  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
207a6f8720SBrian Somers  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
217a6f8720SBrian Somers  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
227a6f8720SBrian Somers  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
237a6f8720SBrian Somers  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
247a6f8720SBrian Somers  * SUCH DAMAGE.
257a6f8720SBrian Somers  *
261d1fc017SBrian Somers  *	$Id: bundle.c,v 1.54 1999/05/27 08:42:15 brian Exp $
277a6f8720SBrian Somers  */
287a6f8720SBrian Somers 
291384bd27SBrian Somers #include <sys/param.h>
307a6f8720SBrian Somers #include <sys/socket.h>
317a6f8720SBrian Somers #include <netinet/in.h>
327a6f8720SBrian Somers #include <net/if.h>
330f203c7eSBrian Somers #include <net/if_tun.h>
347a6f8720SBrian Somers #include <arpa/inet.h>
357a6f8720SBrian Somers #include <net/route.h>
36eaa4df37SBrian Somers #include <netinet/in_systm.h>
37eaa4df37SBrian Somers #include <netinet/ip.h>
381fa665f5SBrian Somers #include <sys/un.h>
397a6f8720SBrian Somers 
407a6f8720SBrian Somers #include <errno.h>
417a6f8720SBrian Somers #include <fcntl.h>
4247723d29SBrian Somers #include <paths.h>
437a6f8720SBrian Somers #include <stdio.h>
446f384573SBrian Somers #include <stdlib.h>
457a6f8720SBrian Somers #include <string.h>
467a6f8720SBrian Somers #include <sys/ioctl.h>
4796c9bb21SBrian Somers #include <sys/uio.h>
4854cd8e13SBrian Somers #include <sys/wait.h>
497a6f8720SBrian Somers #include <termios.h>
507a6f8720SBrian Somers #include <unistd.h>
517a6f8720SBrian Somers 
525d9e6103SBrian Somers #include "layer.h"
53c9e11a11SBrian Somers #include "defs.h"
547a6f8720SBrian Somers #include "command.h"
557a6f8720SBrian Somers #include "mbuf.h"
567a6f8720SBrian Somers #include "log.h"
577a6f8720SBrian Somers #include "id.h"
587a6f8720SBrian Somers #include "timer.h"
597a6f8720SBrian Somers #include "fsm.h"
607a6f8720SBrian Somers #include "iplist.h"
61879ed6faSBrian Somers #include "lqr.h"
62455aabc3SBrian Somers #include "hdlc.h"
637a6f8720SBrian Somers #include "throughput.h"
64eaa4df37SBrian Somers #include "slcompress.h"
657a6f8720SBrian Somers #include "ipcp.h"
665ca5389aSBrian Somers #include "filter.h"
672f786681SBrian Somers #include "descriptor.h"
687a6f8720SBrian Somers #include "route.h"
697a6f8720SBrian Somers #include "lcp.h"
707a6f8720SBrian Somers #include "ccp.h"
713b0f8d2eSBrian Somers #include "link.h"
723b0f8d2eSBrian Somers #include "mp.h"
73972a1bcfSBrian Somers #ifndef NORADIUS
74972a1bcfSBrian Somers #include "radius.h"
75972a1bcfSBrian Somers #endif
763b0f8d2eSBrian Somers #include "bundle.h"
77455aabc3SBrian Somers #include "async.h"
78455aabc3SBrian Somers #include "physical.h"
79455aabc3SBrian Somers #include "auth.h"
805d9e6103SBrian Somers #include "proto.h"
81455aabc3SBrian Somers #include "chap.h"
82455aabc3SBrian Somers #include "tun.h"
8385b542cfSBrian Somers #include "prompt.h"
843006ec67SBrian Somers #include "chat.h"
8592b09558SBrian Somers #include "cbcp.h"
863006ec67SBrian Somers #include "datalink.h"
873006ec67SBrian Somers #include "ip.h"
888fa6ebe4SBrian Somers #include "iface.h"
897a6f8720SBrian Somers 
906815097bSBrian Somers #define SCATTER_SEGMENTS 5	/* version, datalink, name, physical, device */
9196c9bb21SBrian Somers #define SOCKET_OVERHEAD	100	/* additional buffer space for large */
9296c9bb21SBrian Somers                                 /* {recv,send}msg() calls            */
9396c9bb21SBrian Somers 
9404eaa58cSBrian Somers static int bundle_RemainingIdleTime(struct bundle *);
9504eaa58cSBrian Somers static int bundle_RemainingAutoLoadTime(struct bundle *);
9604eaa58cSBrian Somers 
97455aabc3SBrian Somers static const char *PhaseNames[] = {
98455aabc3SBrian Somers   "Dead", "Establish", "Authenticate", "Network", "Terminate"
99455aabc3SBrian Somers };
100455aabc3SBrian Somers 
101455aabc3SBrian Somers const char *
102455aabc3SBrian Somers bundle_PhaseName(struct bundle *bundle)
1037a6f8720SBrian Somers {
104455aabc3SBrian Somers   return bundle->phase <= PHASE_TERMINATE ?
105455aabc3SBrian Somers     PhaseNames[bundle->phase] : "unknown";
1067a6f8720SBrian Somers }
1077a6f8720SBrian Somers 
108455aabc3SBrian Somers void
1095563ebdeSBrian Somers bundle_NewPhase(struct bundle *bundle, u_int new)
110455aabc3SBrian Somers {
111aef795ccSBrian Somers   if (new == bundle->phase)
112aef795ccSBrian Somers     return;
113aef795ccSBrian Somers 
114e2ebb036SBrian Somers   if (new <= PHASE_TERMINATE)
115dd7e2610SBrian Somers     log_Printf(LogPHASE, "bundle: %s\n", PhaseNames[new]);
1167a6f8720SBrian Somers 
117455aabc3SBrian Somers   switch (new) {
118455aabc3SBrian Somers   case PHASE_DEAD:
1190f2f3eb3SBrian Somers     log_DisplayPrompts();
120455aabc3SBrian Somers     bundle->phase = new;
121455aabc3SBrian Somers     break;
122455aabc3SBrian Somers 
123455aabc3SBrian Somers   case PHASE_ESTABLISH:
124455aabc3SBrian Somers     bundle->phase = new;
125455aabc3SBrian Somers     break;
126455aabc3SBrian Somers 
127455aabc3SBrian Somers   case PHASE_AUTHENTICATE:
128455aabc3SBrian Somers     bundle->phase = new;
1290f2f3eb3SBrian Somers     log_DisplayPrompts();
130455aabc3SBrian Somers     break;
131455aabc3SBrian Somers 
132455aabc3SBrian Somers   case PHASE_NETWORK:
133dd7e2610SBrian Somers     fsm_Up(&bundle->ncp.ipcp.fsm);
134dd7e2610SBrian Somers     fsm_Open(&bundle->ncp.ipcp.fsm);
135673903ecSBrian Somers     bundle->phase = new;
1360f2f3eb3SBrian Somers     log_DisplayPrompts();
137673903ecSBrian Somers     break;
138455aabc3SBrian Somers 
139455aabc3SBrian Somers   case PHASE_TERMINATE:
140455aabc3SBrian Somers     bundle->phase = new;
141673903ecSBrian Somers     mp_Down(&bundle->ncp.mp);
1420f2f3eb3SBrian Somers     log_DisplayPrompts();
143455aabc3SBrian Somers     break;
1447a6f8720SBrian Somers   }
1457a6f8720SBrian Somers }
1467a6f8720SBrian Somers 
1476d666775SBrian Somers static void
1486d666775SBrian Somers bundle_LayerStart(void *v, struct fsm *fp)
1497a6f8720SBrian Somers {
1503006ec67SBrian Somers   /* The given FSM is about to start up ! */
1517a6f8720SBrian Somers }
1527a6f8720SBrian Somers 
1535cf4388bSBrian Somers 
1545cf4388bSBrian Somers static void
1555cf4388bSBrian Somers bundle_Notify(struct bundle *bundle, char c)
1565cf4388bSBrian Somers {
1575cf4388bSBrian Somers   if (bundle->notify.fd != -1) {
1585cf4388bSBrian Somers     if (write(bundle->notify.fd, &c, 1) == 1)
159dd7e2610SBrian Somers       log_Printf(LogPHASE, "Parent notified of success.\n");
1605cf4388bSBrian Somers     else
161dd7e2610SBrian Somers       log_Printf(LogPHASE, "Failed to notify parent of success.\n");
1625cf4388bSBrian Somers     close(bundle->notify.fd);
1635cf4388bSBrian Somers     bundle->notify.fd = -1;
1645cf4388bSBrian Somers   }
1655cf4388bSBrian Somers }
1663b0f8d2eSBrian Somers 
1676d666775SBrian Somers static void
1686f8e9f0aSBrian Somers bundle_ClearQueues(void *v)
1696f8e9f0aSBrian Somers {
1706f8e9f0aSBrian Somers   struct bundle *bundle = (struct bundle *)v;
1716f8e9f0aSBrian Somers   struct datalink *dl;
1726f8e9f0aSBrian Somers 
1736f8e9f0aSBrian Somers   log_Printf(LogPHASE, "Clearing choked output queue\n");
1746f8e9f0aSBrian Somers   timer_Stop(&bundle->choked.timer);
1756f8e9f0aSBrian Somers 
1766f8e9f0aSBrian Somers   /*
1776f8e9f0aSBrian Somers    * Emergency time:
1786f8e9f0aSBrian Somers    *
1796f8e9f0aSBrian Somers    * We've had a full queue for PACKET_DEL_SECS seconds without being
1806f8e9f0aSBrian Somers    * able to get rid of any of the packets.  We've probably given up
1816f8e9f0aSBrian Somers    * on the redials at this point, and the queued data has almost
1826f8e9f0aSBrian Somers    * definitely been timed out by the layer above.  As this is preventing
1836f8e9f0aSBrian Somers    * us from reading the TUN_NAME device (we don't want to buffer stuff
1846f8e9f0aSBrian Somers    * indefinitely), we may as well nuke this data and start with a clean
1856f8e9f0aSBrian Somers    * slate !
1866f8e9f0aSBrian Somers    *
1876f8e9f0aSBrian Somers    * Unfortunately, this has the side effect of shafting any compression
1886f8e9f0aSBrian Somers    * dictionaries in use (causing the relevant RESET_REQ/RESET_ACK).
1896f8e9f0aSBrian Somers    */
1906f8e9f0aSBrian Somers 
1915a72b6edSBrian Somers   ip_DeleteQueue(&bundle->ncp.ipcp);
1926f8e9f0aSBrian Somers   mp_DeleteQueue(&bundle->ncp.mp);
1936f8e9f0aSBrian Somers   for (dl = bundle->links; dl; dl = dl->next)
1946f8e9f0aSBrian Somers     physical_DeleteQueue(dl->physical);
1956f8e9f0aSBrian Somers }
1966f8e9f0aSBrian Somers 
1976f8e9f0aSBrian Somers static void
19804eaa58cSBrian Somers bundle_AutoLoadTimeout(void *v)
19904eaa58cSBrian Somers {
20004eaa58cSBrian Somers   struct bundle *bundle = (struct bundle *)v;
20104eaa58cSBrian Somers 
20204eaa58cSBrian Somers   if (bundle->autoload.comingup) {
20304eaa58cSBrian Somers     log_Printf(LogPHASE, "autoload: Another link is required\n");
20404eaa58cSBrian Somers     /* bundle_Open() stops the timer */
205ba23f397SBrian Somers     bundle_Open(bundle, NULL, PHYS_AUTO, 0);
20604eaa58cSBrian Somers   } else {
20704eaa58cSBrian Somers     struct datalink *dl, *last;
20804eaa58cSBrian Somers 
20904eaa58cSBrian Somers     timer_Stop(&bundle->autoload.timer);
21004eaa58cSBrian Somers     for (last = NULL, dl = bundle->links; dl; dl = dl->next)
21181358fa3SBrian Somers       if (dl->physical->type == PHYS_AUTO && dl->state == DATALINK_OPEN)
21204eaa58cSBrian Somers         last = dl;
21304eaa58cSBrian Somers 
21404eaa58cSBrian Somers     if (last)
2159c81b87dSBrian Somers       datalink_Close(last, CLOSE_STAYDOWN);
21604eaa58cSBrian Somers   }
21704eaa58cSBrian Somers }
21804eaa58cSBrian Somers 
21904eaa58cSBrian Somers static void
22004eaa58cSBrian Somers bundle_StartAutoLoadTimer(struct bundle *bundle, int up)
22104eaa58cSBrian Somers {
22204eaa58cSBrian Somers   struct datalink *dl;
22304eaa58cSBrian Somers 
22404eaa58cSBrian Somers   timer_Stop(&bundle->autoload.timer);
225ec5e7f36SBrian Somers   bundle->autoload.comingup = up ? 1 : 0;
22604eaa58cSBrian Somers 
22704eaa58cSBrian Somers   if (bundle->CleaningUp || bundle->phase != PHASE_NETWORK) {
22804eaa58cSBrian Somers     dl = NULL;
22904eaa58cSBrian Somers     bundle->autoload.running = 0;
23004eaa58cSBrian Somers   } else if (up) {
23104eaa58cSBrian Somers     for (dl = bundle->links; dl; dl = dl->next)
23281358fa3SBrian Somers       if (dl->state == DATALINK_CLOSED && dl->physical->type == PHYS_AUTO) {
23304eaa58cSBrian Somers         if (bundle->cfg.autoload.max.timeout) {
23404eaa58cSBrian Somers           bundle->autoload.timer.func = bundle_AutoLoadTimeout;
23504eaa58cSBrian Somers           bundle->autoload.timer.name = "autoload up";
23604eaa58cSBrian Somers           bundle->autoload.timer.load =
23704eaa58cSBrian Somers             bundle->cfg.autoload.max.timeout * SECTICKS;
23804eaa58cSBrian Somers           bundle->autoload.timer.arg = bundle;
23904eaa58cSBrian Somers           timer_Start(&bundle->autoload.timer);
24004eaa58cSBrian Somers           bundle->autoload.done = time(NULL) + bundle->cfg.autoload.max.timeout;
24104eaa58cSBrian Somers         } else
24204eaa58cSBrian Somers           bundle_AutoLoadTimeout(bundle);
24304eaa58cSBrian Somers         break;
24404eaa58cSBrian Somers       }
24504eaa58cSBrian Somers     bundle->autoload.running = (dl || bundle->cfg.autoload.min.timeout) ? 1 : 0;
24604eaa58cSBrian Somers   } else {
24704eaa58cSBrian Somers     int nlinks;
24804eaa58cSBrian Somers     struct datalink *adl;
24904eaa58cSBrian Somers 
25004eaa58cSBrian Somers     for (nlinks = 0, adl = NULL, dl = bundle->links; dl; dl = dl->next)
25104eaa58cSBrian Somers       if (dl->state == DATALINK_OPEN) {
25281358fa3SBrian Somers         if (dl->physical->type == PHYS_AUTO)
25304eaa58cSBrian Somers           adl = dl;
25404eaa58cSBrian Somers         if (++nlinks > 1 && adl) {
25504eaa58cSBrian Somers           if (bundle->cfg.autoload.min.timeout) {
25604eaa58cSBrian Somers             bundle->autoload.timer.func = bundle_AutoLoadTimeout;
25704eaa58cSBrian Somers             bundle->autoload.timer.name = "autoload down";
25804eaa58cSBrian Somers             bundle->autoload.timer.load =
25904eaa58cSBrian Somers               bundle->cfg.autoload.min.timeout * SECTICKS;
26004eaa58cSBrian Somers             bundle->autoload.timer.arg = bundle;
26104eaa58cSBrian Somers             timer_Start(&bundle->autoload.timer);
26204eaa58cSBrian Somers             bundle->autoload.done =
26304eaa58cSBrian Somers               time(NULL) + bundle->cfg.autoload.min.timeout;
26404eaa58cSBrian Somers           }
26504eaa58cSBrian Somers           break;
26604eaa58cSBrian Somers         }
26704eaa58cSBrian Somers       }
26804eaa58cSBrian Somers 
26904eaa58cSBrian Somers     bundle->autoload.running = 1;
27004eaa58cSBrian Somers   }
27104eaa58cSBrian Somers }
27204eaa58cSBrian Somers 
27304eaa58cSBrian Somers static void
27404eaa58cSBrian Somers bundle_StopAutoLoadTimer(struct bundle *bundle)
27504eaa58cSBrian Somers {
27604eaa58cSBrian Somers   timer_Stop(&bundle->autoload.timer);
27704eaa58cSBrian Somers   bundle->autoload.done = 0;
27804eaa58cSBrian Somers }
27904eaa58cSBrian Somers 
28004eaa58cSBrian Somers static int
28104eaa58cSBrian Somers bundle_RemainingAutoLoadTime(struct bundle *bundle)
28204eaa58cSBrian Somers {
28304eaa58cSBrian Somers   if (bundle->autoload.done)
28404eaa58cSBrian Somers     return bundle->autoload.done - time(NULL);
28504eaa58cSBrian Somers   return -1;
28604eaa58cSBrian Somers }
28704eaa58cSBrian Somers 
288ff0f9439SBrian Somers static void
289ff0f9439SBrian Somers bundle_LinkAdded(struct bundle *bundle, struct datalink *dl)
290ff0f9439SBrian Somers {
291ff0f9439SBrian Somers   bundle->phys_type.all |= dl->physical->type;
292ff0f9439SBrian Somers   if (dl->state == DATALINK_OPEN)
293ff0f9439SBrian Somers     bundle->phys_type.open |= dl->physical->type;
294ff0f9439SBrian Somers 
295ff0f9439SBrian Somers   /* Note: We only re-add links that are DATALINK_OPEN */
296ff0f9439SBrian Somers   if (dl->physical->type == PHYS_AUTO &&
297ff0f9439SBrian Somers       bundle->autoload.timer.state == TIMER_STOPPED &&
298ff0f9439SBrian Somers       dl->state != DATALINK_OPEN &&
299ff0f9439SBrian Somers       bundle->phase == PHASE_NETWORK)
300ff0f9439SBrian Somers     bundle->autoload.running = 1;
301ff0f9439SBrian Somers 
302ff0f9439SBrian Somers   if ((bundle->phys_type.open & (PHYS_DEDICATED|PHYS_DDIAL))
303ff0f9439SBrian Somers       != bundle->phys_type.open && bundle->idle.timer.state == TIMER_STOPPED)
304ff0f9439SBrian Somers     /* We may need to start our idle timer */
305ff0f9439SBrian Somers     bundle_StartIdleTimer(bundle);
306ff0f9439SBrian Somers }
307ff0f9439SBrian Somers 
30892b09558SBrian Somers void
309ff0f9439SBrian Somers bundle_LinksRemoved(struct bundle *bundle)
310ff0f9439SBrian Somers {
311ff0f9439SBrian Somers   struct datalink *dl;
312ff0f9439SBrian Somers 
313ff0f9439SBrian Somers   bundle->phys_type.all = bundle->phys_type.open = 0;
314ff0f9439SBrian Somers   for (dl = bundle->links; dl; dl = dl->next)
315ff0f9439SBrian Somers     bundle_LinkAdded(bundle, dl);
316ff0f9439SBrian Somers 
317ff0f9439SBrian Somers   if ((bundle->phys_type.open & (PHYS_DEDICATED|PHYS_DDIAL))
318ff0f9439SBrian Somers       == bundle->phys_type.open)
319ff0f9439SBrian Somers     bundle_StopIdleTimer(bundle);
320ff0f9439SBrian Somers }
32104eaa58cSBrian Somers 
32204eaa58cSBrian Somers static void
3236f384573SBrian Somers bundle_LayerUp(void *v, struct fsm *fp)
3247a6f8720SBrian Somers {
3253006ec67SBrian Somers   /*
3263006ec67SBrian Somers    * The given fsm is now up
327ff0f9439SBrian Somers    * If it's an LCP, adjust our phys_mode.open value.
32849052c95SBrian Somers    * If it's an LCP set our mtu (if we're multilink, add up the link
32904eaa58cSBrian Somers    * speeds and set the MRRU) and start our autoload timer.
330565e35e5SBrian Somers    * If it's an NCP, tell our -background parent to go away.
3313b0f8d2eSBrian Somers    * If it's the first NCP, start the idle timer.
3323006ec67SBrian Somers    */
3336f384573SBrian Somers   struct bundle *bundle = (struct bundle *)v;
3346d666775SBrian Somers 
3355563ebdeSBrian Somers   if (fp->proto == PROTO_LCP) {
336ff0f9439SBrian Somers     struct physical *p = link2physical(fp->link);
337ff0f9439SBrian Somers 
338ff0f9439SBrian Somers     bundle_LinkAdded(bundle, p->dl);
3393b0f8d2eSBrian Somers     if (bundle->ncp.mp.active) {
3403b0f8d2eSBrian Somers       struct datalink *dl;
3415563ebdeSBrian Somers 
3428fa6ebe4SBrian Somers       bundle->ifSpeed = 0;
343faefde08SBrian Somers       for (dl = bundle->links; dl; dl = dl->next)
344eeab6bf5SBrian Somers         if (dl->state == DATALINK_OPEN)
3455d9e6103SBrian Somers           bundle->ifSpeed += physical_GetSpeed(dl->physical);
346faefde08SBrian Somers       tun_configure(bundle, bundle->ncp.mp.peer_mrru);
34704eaa58cSBrian Somers       bundle->autoload.running = 1;
348faefde08SBrian Somers     } else {
3495d9e6103SBrian Somers       bundle->ifSpeed = physical_GetSpeed(p);
350faefde08SBrian Somers       tun_configure(bundle, fsm2lcp(fp)->his_mru);
351faefde08SBrian Somers     }
3523b0f8d2eSBrian Somers   } else if (fp->proto == PROTO_IPCP) {
353ab886ad0SBrian Somers     bundle_StartIdleTimer(bundle);
3545cf4388bSBrian Somers     bundle_Notify(bundle, EX_NORMAL);
3557a6f8720SBrian Somers   }
356ab886ad0SBrian Somers }
3577a6f8720SBrian Somers 
3586d666775SBrian Somers static void
3596d666775SBrian Somers bundle_LayerDown(void *v, struct fsm *fp)
3606d666775SBrian Somers {
3616d666775SBrian Somers   /*
3626d666775SBrian Somers    * The given FSM has been told to come down.
363ab886ad0SBrian Somers    * If it's our last NCP, stop the idle timer.
364ff0f9439SBrian Somers    * If it's an LCP, adjust our phys_type.open value and any timers.
36586b1f0d7SBrian Somers    * If it's an LCP and we're in multilink mode, adjust our tun
36686b1f0d7SBrian Somers    * speed and make sure our minimum sequence number is adjusted.
3676d666775SBrian Somers    */
368ab886ad0SBrian Somers 
369ab886ad0SBrian Somers   struct bundle *bundle = (struct bundle *)v;
370ab886ad0SBrian Somers 
371078c562eSBrian Somers   if (fp->proto == PROTO_IPCP)
372ab886ad0SBrian Somers     bundle_StopIdleTimer(bundle);
373ff0f9439SBrian Somers   else if (fp->proto == PROTO_LCP) {
374ff0f9439SBrian Somers     bundle_LinksRemoved(bundle);  /* adjust timers & phys_type values */
375ff0f9439SBrian Somers     if (bundle->ncp.mp.active) {
3763b0f8d2eSBrian Somers       struct datalink *dl;
37786b1f0d7SBrian Somers       struct datalink *lost;
3783b0f8d2eSBrian Somers 
3798fa6ebe4SBrian Somers       bundle->ifSpeed = 0;
38086b1f0d7SBrian Somers       lost = NULL;
381faefde08SBrian Somers       for (dl = bundle->links; dl; dl = dl->next)
38286b1f0d7SBrian Somers         if (fp == &dl->physical->link.lcp.fsm)
38386b1f0d7SBrian Somers           lost = dl;
38486b1f0d7SBrian Somers         else if (dl->state == DATALINK_OPEN)
3855d9e6103SBrian Somers           bundle->ifSpeed += physical_GetSpeed(dl->physical);
38686b1f0d7SBrian Somers 
3878fa6ebe4SBrian Somers       if (bundle->ifSpeed)
388faefde08SBrian Somers         /* Don't configure down to a speed of 0 */
389faefde08SBrian Somers         tun_configure(bundle, bundle->ncp.mp.link.lcp.his_mru);
39086b1f0d7SBrian Somers 
39186b1f0d7SBrian Somers       if (lost)
39286b1f0d7SBrian Somers         mp_LinkLost(&bundle->ncp.mp, lost);
39386b1f0d7SBrian Somers       else
394a33b2ef7SBrian Somers         log_Printf(LogALERT, "Oops, lost an unrecognised datalink (%s) !\n",
39586b1f0d7SBrian Somers                    fp->link->name);
3963b0f8d2eSBrian Somers     }
3976d666775SBrian Somers   }
398ff0f9439SBrian Somers }
3996d666775SBrian Somers 
4006d666775SBrian Somers static void
4016d666775SBrian Somers bundle_LayerFinish(void *v, struct fsm *fp)
4026d666775SBrian Somers {
4036d666775SBrian Somers   /* The given fsm is now down (fp cannot be NULL)
4046d666775SBrian Somers    *
405dd7e2610SBrian Somers    * If it's the last LCP, fsm_Down all NCPs
406dd7e2610SBrian Somers    * If it's the last NCP, fsm_Close all LCPs
4076d666775SBrian Somers    */
4086d666775SBrian Somers 
4096d666775SBrian Somers   struct bundle *bundle = (struct bundle *)v;
4106d666775SBrian Somers   struct datalink *dl;
4116d666775SBrian Somers 
4123b0f8d2eSBrian Somers   if (fp->proto == PROTO_IPCP) {
41326afeaa2SBrian Somers     if (bundle_Phase(bundle) != PHASE_DEAD)
41425092092SBrian Somers       bundle_NewPhase(bundle, PHASE_TERMINATE);
4156d666775SBrian Somers     for (dl = bundle->links; dl; dl = dl->next)
4169c81b87dSBrian Somers       datalink_Close(dl, CLOSE_NORMAL);
41709206a6fSBrian Somers     fsm2initial(fp);
4183b0f8d2eSBrian Somers   } else if (fp->proto == PROTO_LCP) {
4193b0f8d2eSBrian Somers     int others_active;
420a611cad6SBrian Somers 
4213b0f8d2eSBrian Somers     others_active = 0;
4223b0f8d2eSBrian Somers     for (dl = bundle->links; dl; dl = dl->next)
4233b0f8d2eSBrian Somers       if (fp != &dl->physical->link.lcp.fsm &&
4243b0f8d2eSBrian Somers           dl->state != DATALINK_CLOSED && dl->state != DATALINK_HANGUP)
4253b0f8d2eSBrian Somers         others_active++;
4263b0f8d2eSBrian Somers 
42709206a6fSBrian Somers     if (!others_active)
42809206a6fSBrian Somers       fsm2initial(&bundle->ncp.ipcp.fsm);
4293b0f8d2eSBrian Somers   }
4303b0f8d2eSBrian Somers }
4316d666775SBrian Somers 
4327a6f8720SBrian Somers int
4337a6f8720SBrian Somers bundle_LinkIsUp(const struct bundle *bundle)
4347a6f8720SBrian Somers {
4355828db6dSBrian Somers   return bundle->ncp.ipcp.fsm.state == ST_OPENED;
4367a6f8720SBrian Somers }
4377a6f8720SBrian Somers 
4387a6f8720SBrian Somers void
4399c81b87dSBrian Somers bundle_Close(struct bundle *bundle, const char *name, int how)
4407a6f8720SBrian Somers {
441455aabc3SBrian Somers   /*
4423006ec67SBrian Somers    * Please close the given datalink.
443dd7e2610SBrian Somers    * If name == NULL or name is the last datalink, fsm_Close all NCPs
4446f384573SBrian Somers    * (except our MP)
4453b0f8d2eSBrian Somers    * If it isn't the last datalink, just Close that datalink.
446455aabc3SBrian Somers    */
4477a6f8720SBrian Somers 
4483b0f8d2eSBrian Somers   struct datalink *dl, *this_dl;
4493b0f8d2eSBrian Somers   int others_active;
4503006ec67SBrian Somers 
4513b0f8d2eSBrian Somers   others_active = 0;
4523b0f8d2eSBrian Somers   this_dl = NULL;
4533b0f8d2eSBrian Somers 
4543b0f8d2eSBrian Somers   for (dl = bundle->links; dl; dl = dl->next) {
4553b0f8d2eSBrian Somers     if (name && !strcasecmp(name, dl->name))
4563b0f8d2eSBrian Somers       this_dl = dl;
4573b0f8d2eSBrian Somers     if (name == NULL || this_dl == dl) {
4589c81b87dSBrian Somers       switch (how) {
4599c81b87dSBrian Somers         case CLOSE_LCP:
4609c81b87dSBrian Somers           datalink_DontHangup(dl);
4619c81b87dSBrian Somers           /* fall through */
4629c81b87dSBrian Somers         case CLOSE_STAYDOWN:
4633006ec67SBrian Somers           datalink_StayDown(dl);
4649c81b87dSBrian Somers           break;
4659c81b87dSBrian Somers       }
4663b0f8d2eSBrian Somers     } else if (dl->state != DATALINK_CLOSED && dl->state != DATALINK_HANGUP)
4673b0f8d2eSBrian Somers       others_active++;
4683b0f8d2eSBrian Somers   }
4693b0f8d2eSBrian Somers 
4703b0f8d2eSBrian Somers   if (name && this_dl == NULL) {
471dd7e2610SBrian Somers     log_Printf(LogWARN, "%s: Invalid datalink name\n", name);
4723b0f8d2eSBrian Somers     return;
4733b0f8d2eSBrian Somers   }
4743b0f8d2eSBrian Somers 
4753b0f8d2eSBrian Somers   if (!others_active) {
47604eaa58cSBrian Somers     bundle_StopIdleTimer(bundle);
47704eaa58cSBrian Somers     bundle_StopAutoLoadTimer(bundle);
4783b0f8d2eSBrian Somers     if (bundle->ncp.ipcp.fsm.state > ST_CLOSED ||
4793b0f8d2eSBrian Somers         bundle->ncp.ipcp.fsm.state == ST_STARTING)
480dd7e2610SBrian Somers       fsm_Close(&bundle->ncp.ipcp.fsm);
4813b0f8d2eSBrian Somers     else {
48209206a6fSBrian Somers       fsm2initial(&bundle->ncp.ipcp.fsm);
483d345321bSBrian Somers       for (dl = bundle->links; dl; dl = dl->next)
4849c81b87dSBrian Somers         datalink_Close(dl, how);
4857a6f8720SBrian Somers     }
4863b0f8d2eSBrian Somers   } else if (this_dl && this_dl->state != DATALINK_CLOSED &&
4873b0f8d2eSBrian Somers              this_dl->state != DATALINK_HANGUP)
4889c81b87dSBrian Somers     datalink_Close(this_dl, how);
489d2fd8d77SBrian Somers }
4907a6f8720SBrian Somers 
4911bc9b5baSBrian Somers void
492899011c4SBrian Somers bundle_Down(struct bundle *bundle, int how)
4931bc9b5baSBrian Somers {
4941bc9b5baSBrian Somers   struct datalink *dl;
4951bc9b5baSBrian Somers 
4961bc9b5baSBrian Somers   for (dl = bundle->links; dl; dl = dl->next)
497899011c4SBrian Somers     datalink_Down(dl, how);
4981bc9b5baSBrian Somers }
4991bc9b5baSBrian Somers 
5002f786681SBrian Somers static int
5012f786681SBrian Somers bundle_UpdateSet(struct descriptor *d, fd_set *r, fd_set *w, fd_set *e, int *n)
5022f786681SBrian Somers {
5032f786681SBrian Somers   struct bundle *bundle = descriptor2bundle(d);
5042f786681SBrian Somers   struct datalink *dl;
50504eaa58cSBrian Somers   int result, want, queued, nlinks;
5062f786681SBrian Somers 
5072f786681SBrian Somers   result = 0;
5082f786681SBrian Somers 
509078c562eSBrian Somers   /* If there are aren't many packets queued, look for some more. */
51004eaa58cSBrian Somers   for (nlinks = 0, dl = bundle->links; dl; dl = dl->next)
51104eaa58cSBrian Somers     nlinks++;
51204eaa58cSBrian Somers 
51304eaa58cSBrian Somers   if (nlinks) {
5145a72b6edSBrian Somers     queued = r ? bundle_FillQueues(bundle) : ip_QueueLen(&bundle->ncp.ipcp);
51504eaa58cSBrian Somers     if (bundle->autoload.running) {
51604eaa58cSBrian Somers       if (queued < bundle->cfg.autoload.max.packets) {
51704eaa58cSBrian Somers         if (queued > bundle->cfg.autoload.min.packets)
51804eaa58cSBrian Somers           bundle_StopAutoLoadTimer(bundle);
51904eaa58cSBrian Somers         else if (bundle->autoload.timer.state != TIMER_RUNNING ||
52004eaa58cSBrian Somers                  bundle->autoload.comingup)
52104eaa58cSBrian Somers           bundle_StartAutoLoadTimer(bundle, 0);
522ec5e7f36SBrian Somers       } else if ((bundle_Phase(bundle) == PHASE_NETWORK || queued) &&
523ec5e7f36SBrian Somers                  (bundle->autoload.timer.state != TIMER_RUNNING ||
524f4007327SBrian Somers                   !bundle->autoload.comingup))
52504eaa58cSBrian Somers         bundle_StartAutoLoadTimer(bundle, 1);
52604eaa58cSBrian Somers     }
52704eaa58cSBrian Somers 
528ff0f9439SBrian Somers     if (r && (bundle->phase == PHASE_NETWORK ||
529ff0f9439SBrian Somers               bundle->phys_type.all & PHYS_AUTO)) {
53004eaa58cSBrian Somers       /* enough surplus so that we can tell if we're getting swamped */
53104eaa58cSBrian Somers       want = bundle->cfg.autoload.max.packets + nlinks * 2;
53204eaa58cSBrian Somers       /* but at least 20 packets ! */
53304eaa58cSBrian Somers       if (want < 20)
53404eaa58cSBrian Somers         want = 20;
53504eaa58cSBrian Somers       if (queued < want) {
53604eaa58cSBrian Somers         /* Not enough - select() for more */
5376f8e9f0aSBrian Somers         if (bundle->choked.timer.state == TIMER_RUNNING)
5386f8e9f0aSBrian Somers           timer_Stop(&bundle->choked.timer);	/* Not needed any more */
53904eaa58cSBrian Somers         FD_SET(bundle->dev.fd, r);
540faefde08SBrian Somers         if (*n < bundle->dev.fd + 1)
541faefde08SBrian Somers           *n = bundle->dev.fd + 1;
5421384bd27SBrian Somers         log_Printf(LogTIMER, "%s: fdset(r) %d\n", TUN_NAME, bundle->dev.fd);
543078c562eSBrian Somers         result++;
5446f8e9f0aSBrian Somers       } else if (bundle->choked.timer.state == TIMER_STOPPED) {
5456f8e9f0aSBrian Somers         bundle->choked.timer.func = bundle_ClearQueues;
5466f8e9f0aSBrian Somers         bundle->choked.timer.name = "output choke";
5476f8e9f0aSBrian Somers         bundle->choked.timer.load = bundle->cfg.choked.timeout * SECTICKS;
5486f8e9f0aSBrian Somers         bundle->choked.timer.arg = bundle;
5496f8e9f0aSBrian Somers         timer_Start(&bundle->choked.timer);
550078c562eSBrian Somers       }
55104eaa58cSBrian Somers     }
55204eaa58cSBrian Somers   }
553078c562eSBrian Somers 
554f0cdd9c0SBrian Somers #ifndef NORADIUS
555f0cdd9c0SBrian Somers   result += descriptor_UpdateSet(&bundle->radius.desc, r, w, e, n);
556f0cdd9c0SBrian Somers #endif
557f0cdd9c0SBrian Somers 
55871555108SBrian Somers   /* Which links need a select() ? */
55971555108SBrian Somers   for (dl = bundle->links; dl; dl = dl->next)
56071555108SBrian Somers     result += descriptor_UpdateSet(&dl->desc, r, w, e, n);
56171555108SBrian Somers 
562ea722969SBrian Somers   /*
563ea722969SBrian Somers    * This *MUST* be called after the datalink UpdateSet()s as it
56404eaa58cSBrian Somers    * might be ``holding'' one of the datalinks (death-row) and
56504eaa58cSBrian Somers    * wants to be able to de-select() it from the descriptor set.
566ea722969SBrian Somers    */
5670f2f3eb3SBrian Somers   result += descriptor_UpdateSet(&bundle->ncp.mp.server.desc, r, w, e, n);
568ea722969SBrian Somers 
5692f786681SBrian Somers   return result;
5702f786681SBrian Somers }
5712f786681SBrian Somers 
5722f786681SBrian Somers static int
5732f786681SBrian Somers bundle_IsSet(struct descriptor *d, const fd_set *fdset)
5742f786681SBrian Somers {
5752f786681SBrian Somers   struct bundle *bundle = descriptor2bundle(d);
5762f786681SBrian Somers   struct datalink *dl;
5772f786681SBrian Somers 
5782f786681SBrian Somers   for (dl = bundle->links; dl; dl = dl->next)
5792f786681SBrian Somers     if (descriptor_IsSet(&dl->desc, fdset))
5802f786681SBrian Somers       return 1;
5812f786681SBrian Somers 
582f0cdd9c0SBrian Somers #ifndef NORADIUS
583f0cdd9c0SBrian Somers   if (descriptor_IsSet(&bundle->radius.desc, fdset))
584f0cdd9c0SBrian Somers     return 1;
585f0cdd9c0SBrian Somers #endif
586f0cdd9c0SBrian Somers 
587332b9de0SBrian Somers   if (descriptor_IsSet(&bundle->ncp.mp.server.desc, fdset))
588332b9de0SBrian Somers     return 1;
589332b9de0SBrian Somers 
590faefde08SBrian Somers   return FD_ISSET(bundle->dev.fd, fdset);
5912f786681SBrian Somers }
5922f786681SBrian Somers 
5932f786681SBrian Somers static void
5942f786681SBrian Somers bundle_DescriptorRead(struct descriptor *d, struct bundle *bundle,
5952f786681SBrian Somers                       const fd_set *fdset)
5962f786681SBrian Somers {
5972f786681SBrian Somers   struct datalink *dl;
5982f786681SBrian Somers 
599ea722969SBrian Somers   if (descriptor_IsSet(&bundle->ncp.mp.server.desc, fdset))
600ea722969SBrian Somers     descriptor_Read(&bundle->ncp.mp.server.desc, bundle, fdset);
601ea722969SBrian Somers 
6022f786681SBrian Somers   for (dl = bundle->links; dl; dl = dl->next)
6032f786681SBrian Somers     if (descriptor_IsSet(&dl->desc, fdset))
6042f786681SBrian Somers       descriptor_Read(&dl->desc, bundle, fdset);
605b6217683SBrian Somers 
606f0cdd9c0SBrian Somers #ifndef NORADIUS
607f0cdd9c0SBrian Somers   if (descriptor_IsSet(&bundle->radius.desc, fdset))
608f0cdd9c0SBrian Somers     descriptor_Read(&bundle->radius.desc, bundle, fdset);
609f0cdd9c0SBrian Somers #endif
610f0cdd9c0SBrian Somers 
611faefde08SBrian Somers   if (FD_ISSET(bundle->dev.fd, fdset)) {
612078c562eSBrian Somers     struct tun_data tun;
613078c562eSBrian Somers     int n, pri;
614078c562eSBrian Somers 
615078c562eSBrian Somers     /* something to read from tun */
616faefde08SBrian Somers     n = read(bundle->dev.fd, &tun, sizeof tun);
617078c562eSBrian Somers     if (n < 0) {
618a33b2ef7SBrian Somers       log_Printf(LogWARN, "read from %s: %s\n", TUN_NAME, strerror(errno));
619078c562eSBrian Somers       return;
620078c562eSBrian Somers     }
621078c562eSBrian Somers     n -= sizeof tun - sizeof tun.data;
622078c562eSBrian Somers     if (n <= 0) {
623a33b2ef7SBrian Somers       log_Printf(LogERROR, "read from %s: Only %d bytes read ?\n", TUN_NAME, n);
624078c562eSBrian Somers       return;
625078c562eSBrian Somers     }
626078c562eSBrian Somers     if (!tun_check_header(tun, AF_INET))
627078c562eSBrian Somers       return;
628078c562eSBrian Somers 
629078c562eSBrian Somers     if (((struct ip *)tun.data)->ip_dst.s_addr ==
630078c562eSBrian Somers         bundle->ncp.ipcp.my_ip.s_addr) {
631078c562eSBrian Somers       /* we've been asked to send something addressed *to* us :( */
632078c562eSBrian Somers       if (Enabled(bundle, OPT_LOOPBACK)) {
633078c562eSBrian Somers         pri = PacketCheck(bundle, tun.data, n, &bundle->filter.in);
634078c562eSBrian Somers         if (pri >= 0) {
6355d9e6103SBrian Somers           n += sizeof tun - sizeof tun.data;
6365d9e6103SBrian Somers           write(bundle->dev.fd, &tun, n);
637078c562eSBrian Somers           log_Printf(LogDEBUG, "Looped back packet addressed to myself\n");
638078c562eSBrian Somers         }
639078c562eSBrian Somers         return;
640078c562eSBrian Somers       } else
641078c562eSBrian Somers         log_Printf(LogDEBUG, "Oops - forwarding packet addressed to myself\n");
642078c562eSBrian Somers     }
643078c562eSBrian Somers 
644078c562eSBrian Somers     /*
645078c562eSBrian Somers      * Process on-demand dialup. Output packets are queued within tunnel
646078c562eSBrian Somers      * device until IPCP is opened.
647078c562eSBrian Somers      */
648078c562eSBrian Somers 
649078c562eSBrian Somers     if (bundle_Phase(bundle) == PHASE_DEAD) {
650078c562eSBrian Somers       /*
651078c562eSBrian Somers        * Note, we must be in AUTO mode :-/ otherwise our interface should
652078c562eSBrian Somers        * *not* be UP and we can't receive data
653078c562eSBrian Somers        */
654078c562eSBrian Somers       if ((pri = PacketCheck(bundle, tun.data, n, &bundle->filter.dial)) >= 0)
655ba23f397SBrian Somers         bundle_Open(bundle, NULL, PHYS_AUTO, 0);
656078c562eSBrian Somers       else
657078c562eSBrian Somers         /*
658078c562eSBrian Somers          * Drop the packet.  If we were to queue it, we'd just end up with
659078c562eSBrian Somers          * a pile of timed-out data in our output queue by the time we get
660078c562eSBrian Somers          * around to actually dialing.  We'd also prematurely reach the
661078c562eSBrian Somers          * threshold at which we stop select()ing to read() the tun
662078c562eSBrian Somers          * device - breaking auto-dial.
663078c562eSBrian Somers          */
664078c562eSBrian Somers         return;
665078c562eSBrian Somers     }
666078c562eSBrian Somers 
667078c562eSBrian Somers     pri = PacketCheck(bundle, tun.data, n, &bundle->filter.out);
6685d9e6103SBrian Somers     if (pri >= 0)
6695a72b6edSBrian Somers       ip_Enqueue(&bundle->ncp.ipcp, pri, tun.data, n);
670078c562eSBrian Somers   }
671078c562eSBrian Somers }
6722f786681SBrian Somers 
6731af29a6eSBrian Somers static int
6742f786681SBrian Somers bundle_DescriptorWrite(struct descriptor *d, struct bundle *bundle,
6752f786681SBrian Somers                        const fd_set *fdset)
6762f786681SBrian Somers {
6772f786681SBrian Somers   struct datalink *dl;
6781af29a6eSBrian Somers   int result = 0;
6792f786681SBrian Somers 
680ea722969SBrian Somers   /* This is not actually necessary as struct mpserver doesn't Write() */
681ea722969SBrian Somers   if (descriptor_IsSet(&bundle->ncp.mp.server.desc, fdset))
682ea722969SBrian Somers     descriptor_Write(&bundle->ncp.mp.server.desc, bundle, fdset);
683ea722969SBrian Somers 
6842f786681SBrian Somers   for (dl = bundle->links; dl; dl = dl->next)
6852f786681SBrian Somers     if (descriptor_IsSet(&dl->desc, fdset))
6861af29a6eSBrian Somers       result += descriptor_Write(&dl->desc, bundle, fdset);
6871af29a6eSBrian Somers 
6881af29a6eSBrian Somers   return result;
6892f786681SBrian Somers }
6902f786681SBrian Somers 
691da66dd13SBrian Somers void
6921384bd27SBrian Somers bundle_LockTun(struct bundle *bundle)
6931384bd27SBrian Somers {
6941384bd27SBrian Somers   FILE *lockfile;
6951384bd27SBrian Somers   char pidfile[MAXPATHLEN];
6961384bd27SBrian Somers 
6971384bd27SBrian Somers   snprintf(pidfile, sizeof pidfile, "%stun%d.pid", _PATH_VARRUN, bundle->unit);
6981384bd27SBrian Somers   lockfile = ID0fopen(pidfile, "w");
6991384bd27SBrian Somers   if (lockfile != NULL) {
7001384bd27SBrian Somers     fprintf(lockfile, "%d\n", (int)getpid());
7011384bd27SBrian Somers     fclose(lockfile);
7021384bd27SBrian Somers   }
7031384bd27SBrian Somers #ifndef RELEASE_CRUNCH
7041384bd27SBrian Somers   else
7051384bd27SBrian Somers     log_Printf(LogERROR, "Warning: Can't create %s: %s\n",
7061384bd27SBrian Somers                pidfile, strerror(errno));
7071384bd27SBrian Somers #endif
7081384bd27SBrian Somers }
7091384bd27SBrian Somers 
7101384bd27SBrian Somers static void
7111384bd27SBrian Somers bundle_UnlockTun(struct bundle *bundle)
7121384bd27SBrian Somers {
7131384bd27SBrian Somers   char pidfile[MAXPATHLEN];
7141384bd27SBrian Somers 
7151384bd27SBrian Somers   snprintf(pidfile, sizeof pidfile, "%stun%d.pid", _PATH_VARRUN, bundle->unit);
7161384bd27SBrian Somers   ID0unlink(pidfile);
7171384bd27SBrian Somers }
7187a6f8720SBrian Somers 
7197a6f8720SBrian Somers struct bundle *
7208e7b8599SBrian Somers bundle_Create(const char *prefix, int type, const char **argv)
7217a6f8720SBrian Somers {
7227a6f8720SBrian Somers   static struct bundle bundle;		/* there can be only one */
7234e5196e9SBrian Somers   int enoentcount, err;
7244e5196e9SBrian Somers   const char *ifname;
7250f203c7eSBrian Somers #ifdef TUNSIFMODE
7260f203c7eSBrian Somers   int iff;
7270f203c7eSBrian Somers #endif
7287a6f8720SBrian Somers 
7298fa6ebe4SBrian Somers   if (bundle.iface != NULL) {	/* Already allocated ! */
730a33b2ef7SBrian Somers     log_Printf(LogALERT, "bundle_Create:  There's only one BUNDLE !\n");
7317a6f8720SBrian Somers     return NULL;
7327a6f8720SBrian Somers   }
7337a6f8720SBrian Somers 
7347a6f8720SBrian Somers   err = ENOENT;
7357a6f8720SBrian Somers   enoentcount = 0;
736107d62e7SBrian Somers   for (bundle.unit = 0; ; bundle.unit++) {
737faefde08SBrian Somers     snprintf(bundle.dev.Name, sizeof bundle.dev.Name, "%s%d",
738faefde08SBrian Somers              prefix, bundle.unit);
739faefde08SBrian Somers     bundle.dev.fd = ID0open(bundle.dev.Name, O_RDWR);
740faefde08SBrian Somers     if (bundle.dev.fd >= 0)
7417a6f8720SBrian Somers       break;
742107d62e7SBrian Somers     else if (errno == ENXIO) {
7437a6f8720SBrian Somers       err = errno;
744107d62e7SBrian Somers       break;
7457a6f8720SBrian Somers     } else if (errno == ENOENT) {
7467a6f8720SBrian Somers       if (++enoentcount > 2)
747107d62e7SBrian Somers 	break;
7487a6f8720SBrian Somers     } else
7497a6f8720SBrian Somers       err = errno;
7507a6f8720SBrian Somers   }
7517a6f8720SBrian Somers 
752faefde08SBrian Somers   if (bundle.dev.fd < 0) {
753dd7e2610SBrian Somers     log_Printf(LogWARN, "No available tunnel devices found (%s).\n",
75485b542cfSBrian Somers               strerror(err));
7557a6f8720SBrian Somers     return NULL;
7567a6f8720SBrian Somers   }
7577a6f8720SBrian Somers 
758dd7e2610SBrian Somers   log_SetTun(bundle.unit);
7598e7b8599SBrian Somers   bundle.argv = argv;
7600f781a72SBrian Somers   bundle.argv0 = argv[0];
7610f781a72SBrian Somers   bundle.argv1 = argv[1];
7627a6f8720SBrian Somers 
7638fa6ebe4SBrian Somers   ifname = strrchr(bundle.dev.Name, '/');
7648fa6ebe4SBrian Somers   if (ifname == NULL)
7658fa6ebe4SBrian Somers     ifname = bundle.dev.Name;
7667a6f8720SBrian Somers   else
7678fa6ebe4SBrian Somers     ifname++;
7688fa6ebe4SBrian Somers 
7698fa6ebe4SBrian Somers   bundle.iface = iface_Create(ifname);
7708fa6ebe4SBrian Somers   if (bundle.iface == NULL) {
7718fa6ebe4SBrian Somers     close(bundle.dev.fd);
7728fa6ebe4SBrian Somers     return NULL;
7738fa6ebe4SBrian Somers   }
7747a6f8720SBrian Somers 
7750f203c7eSBrian Somers #ifdef TUNSIFMODE
7760f203c7eSBrian Somers   /* Make sure we're POINTOPOINT */
7770f203c7eSBrian Somers   iff = IFF_POINTOPOINT;
7780f203c7eSBrian Somers   if (ID0ioctl(bundle.dev.fd, TUNSIFMODE, &iff) < 0)
7790f203c7eSBrian Somers     log_Printf(LogERROR, "bundle_Create: ioctl(TUNSIFMODE): %s\n",
7800f203c7eSBrian Somers 	       strerror(errno));
7810f203c7eSBrian Somers #endif
7820f203c7eSBrian Somers 
7834e5196e9SBrian Somers   if (!iface_SetFlags(bundle.iface, IFF_UP)) {
7848fa6ebe4SBrian Somers     iface_Destroy(bundle.iface);
7858fa6ebe4SBrian Somers     bundle.iface = NULL;
786faefde08SBrian Somers     close(bundle.dev.fd);
7877a6f8720SBrian Somers     return NULL;
7887a6f8720SBrian Somers   }
7897a6f8720SBrian Somers 
7908fa6ebe4SBrian Somers   log_Printf(LogPHASE, "Using interface: %s\n", ifname);
7917a6f8720SBrian Somers 
7928fa6ebe4SBrian Somers   bundle.ifSpeed = 0;
793820de6ebSBrian Somers   bundle.routing_seq = 0;
794a0cbd833SBrian Somers   bundle.phase = PHASE_DEAD;
795a0cbd833SBrian Somers   bundle.CleaningUp = 0;
796615ad4f9SBrian Somers   bundle.AliasEnabled = 0;
7977a6f8720SBrian Somers 
7986d666775SBrian Somers   bundle.fsm.LayerStart = bundle_LayerStart;
7996f384573SBrian Somers   bundle.fsm.LayerUp = bundle_LayerUp;
8006d666775SBrian Somers   bundle.fsm.LayerDown = bundle_LayerDown;
8016d666775SBrian Somers   bundle.fsm.LayerFinish = bundle_LayerFinish;
8026d666775SBrian Somers   bundle.fsm.object = &bundle;
8037a6f8720SBrian Somers 
804ab886ad0SBrian Somers   bundle.cfg.idle_timeout = NCP_IDLE_TIMEOUT;
8051342caedSBrian Somers   *bundle.cfg.auth.name = '\0';
8061342caedSBrian Somers   *bundle.cfg.auth.key = '\0';
807610b185fSBrian Somers   bundle.cfg.opt = OPT_SROUTES | OPT_IDCHECK | OPT_LOOPBACK |
808610b185fSBrian Somers                    OPT_THROUGHPUT | OPT_UTMP;
80949052c95SBrian Somers   *bundle.cfg.label = '\0';
81049052c95SBrian Somers   bundle.cfg.mtu = DEF_MTU;
81104eaa58cSBrian Somers   bundle.cfg.autoload.max.packets = 0;
81204eaa58cSBrian Somers   bundle.cfg.autoload.max.timeout = 0;
81304eaa58cSBrian Somers   bundle.cfg.autoload.min.packets = 0;
81404eaa58cSBrian Somers   bundle.cfg.autoload.min.timeout = 0;
8156f8e9f0aSBrian Somers   bundle.cfg.choked.timeout = CHOKED_TIMEOUT;
816ff0f9439SBrian Somers   bundle.phys_type.all = type;
817ff0f9439SBrian Somers   bundle.phys_type.open = 0;
818ab886ad0SBrian Somers 
8196f384573SBrian Somers   bundle.links = datalink_Create("deflink", &bundle, type);
8203006ec67SBrian Somers   if (bundle.links == NULL) {
821a33b2ef7SBrian Somers     log_Printf(LogALERT, "Cannot create data link: %s\n", strerror(errno));
8228fa6ebe4SBrian Somers     iface_Destroy(bundle.iface);
8238fa6ebe4SBrian Somers     bundle.iface = NULL;
824faefde08SBrian Somers     close(bundle.dev.fd);
8252289f246SBrian Somers     return NULL;
8262289f246SBrian Somers   }
8272289f246SBrian Somers 
8282f786681SBrian Somers   bundle.desc.type = BUNDLE_DESCRIPTOR;
8292f786681SBrian Somers   bundle.desc.UpdateSet = bundle_UpdateSet;
8302f786681SBrian Somers   bundle.desc.IsSet = bundle_IsSet;
8312f786681SBrian Somers   bundle.desc.Read = bundle_DescriptorRead;
8322f786681SBrian Somers   bundle.desc.Write = bundle_DescriptorWrite;
8332f786681SBrian Somers 
83449052c95SBrian Somers   mp_Init(&bundle.ncp.mp, &bundle);
83549052c95SBrian Somers 
83649052c95SBrian Somers   /* Send over the first physical link by default */
8375828db6dSBrian Somers   ipcp_Init(&bundle.ncp.ipcp, &bundle, &bundle.links->physical->link,
8385828db6dSBrian Somers             &bundle.fsm);
8396d666775SBrian Somers 
8405ca5389aSBrian Somers   memset(&bundle.filter, '\0', sizeof bundle.filter);
8415ca5389aSBrian Somers   bundle.filter.in.fragok = bundle.filter.in.logok = 1;
8425ca5389aSBrian Somers   bundle.filter.in.name = "IN";
8435ca5389aSBrian Somers   bundle.filter.out.fragok = bundle.filter.out.logok = 1;
8445ca5389aSBrian Somers   bundle.filter.out.name = "OUT";
8455ca5389aSBrian Somers   bundle.filter.dial.name = "DIAL";
8468390b576SBrian Somers   bundle.filter.dial.logok = 1;
8475ca5389aSBrian Somers   bundle.filter.alive.name = "ALIVE";
8485ca5389aSBrian Somers   bundle.filter.alive.logok = 1;
84993ee0ff2SBrian Somers   memset(&bundle.idle.timer, '\0', sizeof bundle.idle.timer);
85093ee0ff2SBrian Somers   bundle.idle.done = 0;
8515cf4388bSBrian Somers   bundle.notify.fd = -1;
85204eaa58cSBrian Somers   memset(&bundle.autoload.timer, '\0', sizeof bundle.autoload.timer);
85304eaa58cSBrian Somers   bundle.autoload.done = 0;
85404eaa58cSBrian Somers   bundle.autoload.running = 0;
8556f8e9f0aSBrian Somers   memset(&bundle.choked.timer, '\0', sizeof bundle.choked.timer);
856972a1bcfSBrian Somers #ifndef NORADIUS
857972a1bcfSBrian Somers   radius_Init(&bundle.radius);
858972a1bcfSBrian Somers #endif
85993ee0ff2SBrian Somers 
8606d666775SBrian Somers   /* Clean out any leftover crud */
8618fa6ebe4SBrian Somers   iface_Clear(bundle.iface, IFACE_CLEAR_ALL);
8626d666775SBrian Somers 
8631384bd27SBrian Somers   bundle_LockTun(&bundle);
8641384bd27SBrian Somers 
8657a6f8720SBrian Somers   return &bundle;
8667a6f8720SBrian Somers }
8677a6f8720SBrian Somers 
86868a0f0ccSBrian Somers static void
86968a0f0ccSBrian Somers bundle_DownInterface(struct bundle *bundle)
87068a0f0ccSBrian Somers {
871dd7e2610SBrian Somers   route_IfDelete(bundle, 1);
8724e5196e9SBrian Somers   iface_ClearFlags(bundle->iface, IFF_UP);
87368a0f0ccSBrian Somers }
87468a0f0ccSBrian Somers 
87568a0f0ccSBrian Somers void
87668a0f0ccSBrian Somers bundle_Destroy(struct bundle *bundle)
87768a0f0ccSBrian Somers {
8783006ec67SBrian Somers   struct datalink *dl;
879b6217683SBrian Somers 
880ea722969SBrian Somers   /*
88104eaa58cSBrian Somers    * Clean up the interface.  We don't need to timer_Stop()s, mp_Down(),
882ea722969SBrian Somers    * ipcp_CleanInterface() and bundle_DownInterface() unless we're getting
883ea722969SBrian Somers    * out under exceptional conditions such as a descriptor exception.
884ea722969SBrian Somers    */
88504eaa58cSBrian Somers   timer_Stop(&bundle->idle.timer);
8866f8e9f0aSBrian Somers   timer_Stop(&bundle->choked.timer);
88704eaa58cSBrian Somers   timer_Stop(&bundle->autoload.timer);
88866f634b6SBrian Somers   mp_Down(&bundle->ncp.mp);
889dd7e2610SBrian Somers   ipcp_CleanInterface(&bundle->ncp.ipcp);
89068a0f0ccSBrian Somers   bundle_DownInterface(bundle);
8913006ec67SBrian Somers 
892972a1bcfSBrian Somers #ifndef NORADIUS
893972a1bcfSBrian Somers   /* Tell the radius server the bad news */
894972a1bcfSBrian Somers   radius_Destroy(&bundle->radius);
895972a1bcfSBrian Somers #endif
896972a1bcfSBrian Somers 
897ea722969SBrian Somers   /* Again, these are all DATALINK_CLOSED unless we're abending */
8983006ec67SBrian Somers   dl = bundle->links;
8993006ec67SBrian Somers   while (dl)
9003006ec67SBrian Somers     dl = datalink_Destroy(dl);
9013006ec67SBrian Somers 
9021384bd27SBrian Somers   close(bundle->dev.fd);
9031384bd27SBrian Somers   bundle_UnlockTun(bundle);
9041384bd27SBrian Somers 
905ea722969SBrian Somers   /* In case we never made PHASE_NETWORK */
9065cf4388bSBrian Somers   bundle_Notify(bundle, EX_ERRDEAD);
907b6217683SBrian Somers 
9088fa6ebe4SBrian Somers   iface_Destroy(bundle->iface);
9098fa6ebe4SBrian Somers   bundle->iface = NULL;
91068a0f0ccSBrian Somers }
91168a0f0ccSBrian Somers 
9127a6f8720SBrian Somers struct rtmsg {
9137a6f8720SBrian Somers   struct rt_msghdr m_rtm;
9147a6f8720SBrian Somers   char m_space[64];
9157a6f8720SBrian Somers };
9167a6f8720SBrian Somers 
917610b185fSBrian Somers int
918820de6ebSBrian Somers bundle_SetRoute(struct bundle *bundle, int cmd, struct in_addr dst,
9192062443fSBrian Somers                 struct in_addr gateway, struct in_addr mask, int bang, int ssh)
9207a6f8720SBrian Somers {
9217a6f8720SBrian Somers   struct rtmsg rtmes;
9227a6f8720SBrian Somers   int s, nb, wb;
9237a6f8720SBrian Somers   char *cp;
9247a6f8720SBrian Somers   const char *cmdstr;
9257a6f8720SBrian Somers   struct sockaddr_in rtdata;
926610b185fSBrian Somers   int result = 1;
9277a6f8720SBrian Somers 
9287a6f8720SBrian Somers   if (bang)
9297a6f8720SBrian Somers     cmdstr = (cmd == RTM_ADD ? "Add!" : "Delete!");
9307a6f8720SBrian Somers   else
9317a6f8720SBrian Somers     cmdstr = (cmd == RTM_ADD ? "Add" : "Delete");
9327a6f8720SBrian Somers   s = ID0socket(PF_ROUTE, SOCK_RAW, 0);
9337a6f8720SBrian Somers   if (s < 0) {
934dd7e2610SBrian Somers     log_Printf(LogERROR, "bundle_SetRoute: socket(): %s\n", strerror(errno));
935610b185fSBrian Somers     return result;
9367a6f8720SBrian Somers   }
9377a6f8720SBrian Somers   memset(&rtmes, '\0', sizeof rtmes);
9387a6f8720SBrian Somers   rtmes.m_rtm.rtm_version = RTM_VERSION;
9397a6f8720SBrian Somers   rtmes.m_rtm.rtm_type = cmd;
9407a6f8720SBrian Somers   rtmes.m_rtm.rtm_addrs = RTA_DST;
941820de6ebSBrian Somers   rtmes.m_rtm.rtm_seq = ++bundle->routing_seq;
9427a6f8720SBrian Somers   rtmes.m_rtm.rtm_pid = getpid();
9437a6f8720SBrian Somers   rtmes.m_rtm.rtm_flags = RTF_UP | RTF_GATEWAY | RTF_STATIC;
9447a6f8720SBrian Somers 
9453afe5ccbSBrian Somers   if (cmd == RTM_ADD || cmd == RTM_CHANGE) {
9463afe5ccbSBrian Somers     if (bundle->ncp.ipcp.cfg.sendpipe > 0) {
9473afe5ccbSBrian Somers       rtmes.m_rtm.rtm_rmx.rmx_sendpipe = bundle->ncp.ipcp.cfg.sendpipe;
9483afe5ccbSBrian Somers       rtmes.m_rtm.rtm_inits |= RTV_SPIPE;
9493afe5ccbSBrian Somers     }
9503afe5ccbSBrian Somers     if (bundle->ncp.ipcp.cfg.recvpipe > 0) {
9513afe5ccbSBrian Somers       rtmes.m_rtm.rtm_rmx.rmx_recvpipe = bundle->ncp.ipcp.cfg.recvpipe;
9523afe5ccbSBrian Somers       rtmes.m_rtm.rtm_inits |= RTV_RPIPE;
9533afe5ccbSBrian Somers     }
9543afe5ccbSBrian Somers   }
9553afe5ccbSBrian Somers 
9567a6f8720SBrian Somers   memset(&rtdata, '\0', sizeof rtdata);
95750e5c17dSBrian Somers   rtdata.sin_len = sizeof rtdata;
9587a6f8720SBrian Somers   rtdata.sin_family = AF_INET;
9597a6f8720SBrian Somers   rtdata.sin_port = 0;
9607a6f8720SBrian Somers   rtdata.sin_addr = dst;
9617a6f8720SBrian Somers 
9627a6f8720SBrian Somers   cp = rtmes.m_space;
96350e5c17dSBrian Somers   memcpy(cp, &rtdata, rtdata.sin_len);
96450e5c17dSBrian Somers   cp += rtdata.sin_len;
965e43ebac1SBrian Somers   if (cmd == RTM_ADD) {
9667a6f8720SBrian Somers     if (gateway.s_addr == INADDR_ANY) {
9670aa8aa17SBrian Somers       if (!ssh)
9688fa6ebe4SBrian Somers         log_Printf(LogERROR, "bundle_SetRoute: Cannot add a route with"
9698fa6ebe4SBrian Somers                    " destination 0.0.0.0\n");
9708fa6ebe4SBrian Somers       close(s);
9718fa6ebe4SBrian Somers       return result;
9727a6f8720SBrian Somers     } else {
9737a6f8720SBrian Somers       rtdata.sin_addr = gateway;
97450e5c17dSBrian Somers       memcpy(cp, &rtdata, rtdata.sin_len);
97550e5c17dSBrian Somers       cp += rtdata.sin_len;
9767a6f8720SBrian Somers       rtmes.m_rtm.rtm_addrs |= RTA_GATEWAY;
9777a6f8720SBrian Somers     }
978e43ebac1SBrian Somers   }
9797a6f8720SBrian Somers 
9807a6f8720SBrian Somers   if (dst.s_addr == INADDR_ANY)
9817a6f8720SBrian Somers     mask.s_addr = INADDR_ANY;
9827a6f8720SBrian Somers 
9837a6f8720SBrian Somers   if (cmd == RTM_ADD || dst.s_addr == INADDR_ANY) {
9847a6f8720SBrian Somers     rtdata.sin_addr = mask;
98550e5c17dSBrian Somers     memcpy(cp, &rtdata, rtdata.sin_len);
98650e5c17dSBrian Somers     cp += rtdata.sin_len;
9877a6f8720SBrian Somers     rtmes.m_rtm.rtm_addrs |= RTA_NETMASK;
9887a6f8720SBrian Somers   }
9897a6f8720SBrian Somers 
9907a6f8720SBrian Somers   nb = cp - (char *) &rtmes;
9917a6f8720SBrian Somers   rtmes.m_rtm.rtm_msglen = nb;
9927a6f8720SBrian Somers   wb = ID0write(s, &rtmes, nb);
9937a6f8720SBrian Somers   if (wb < 0) {
994dd7e2610SBrian Somers     log_Printf(LogTCPIP, "bundle_SetRoute failure:\n");
995dd7e2610SBrian Somers     log_Printf(LogTCPIP, "bundle_SetRoute:  Cmd = %s\n", cmdstr);
996dd7e2610SBrian Somers     log_Printf(LogTCPIP, "bundle_SetRoute:  Dst = %s\n", inet_ntoa(dst));
997dd7e2610SBrian Somers     log_Printf(LogTCPIP, "bundle_SetRoute:  Gateway = %s\n", inet_ntoa(gateway));
998dd7e2610SBrian Somers     log_Printf(LogTCPIP, "bundle_SetRoute:  Mask = %s\n", inet_ntoa(mask));
9997a6f8720SBrian Somers failed:
10007a6f8720SBrian Somers     if (cmd == RTM_ADD && (rtmes.m_rtm.rtm_errno == EEXIST ||
1001e43ebac1SBrian Somers                            (rtmes.m_rtm.rtm_errno == 0 && errno == EEXIST))) {
1002610b185fSBrian Somers       if (!bang) {
1003dd7e2610SBrian Somers         log_Printf(LogWARN, "Add route failed: %s already exists\n",
10043afe5ccbSBrian Somers 		  dst.s_addr == 0 ? "default" : inet_ntoa(dst));
1005610b185fSBrian Somers         result = 0;	/* Don't add to our dynamic list */
1006610b185fSBrian Somers       } else {
10077a6f8720SBrian Somers         rtmes.m_rtm.rtm_type = cmd = RTM_CHANGE;
10087a6f8720SBrian Somers         if ((wb = ID0write(s, &rtmes, nb)) < 0)
10097a6f8720SBrian Somers           goto failed;
10107a6f8720SBrian Somers       }
1011e43ebac1SBrian Somers     } else if (cmd == RTM_DELETE &&
10127a6f8720SBrian Somers              (rtmes.m_rtm.rtm_errno == ESRCH ||
10137a6f8720SBrian Somers               (rtmes.m_rtm.rtm_errno == 0 && errno == ESRCH))) {
10147a6f8720SBrian Somers       if (!bang)
1015dd7e2610SBrian Somers         log_Printf(LogWARN, "Del route failed: %s: Non-existent\n",
10167a6f8720SBrian Somers                   inet_ntoa(dst));
10172062443fSBrian Somers     } else if (rtmes.m_rtm.rtm_errno == 0) {
10182062443fSBrian Somers       if (!ssh || errno != ENETUNREACH)
1019dd7e2610SBrian Somers         log_Printf(LogWARN, "%s route failed: %s: errno: %s\n", cmdstr,
10207a6f8720SBrian Somers                    inet_ntoa(dst), strerror(errno));
10212062443fSBrian Somers     } else
1022dd7e2610SBrian Somers       log_Printf(LogWARN, "%s route failed: %s: %s\n",
10237a6f8720SBrian Somers 		 cmdstr, inet_ntoa(dst), strerror(rtmes.m_rtm.rtm_errno));
10247a6f8720SBrian Somers   }
1025dd7e2610SBrian Somers   log_Printf(LogDEBUG, "wrote %d: cmd = %s, dst = %x, gateway = %x\n",
1026fe3125a0SBrian Somers             wb, cmdstr, (unsigned)dst.s_addr, (unsigned)gateway.s_addr);
10277a6f8720SBrian Somers   close(s);
1028610b185fSBrian Somers 
1029610b185fSBrian Somers   return result;
10307a6f8720SBrian Somers }
103183d1af55SBrian Somers 
103283d1af55SBrian Somers void
10333006ec67SBrian Somers bundle_LinkClosed(struct bundle *bundle, struct datalink *dl)
10343006ec67SBrian Somers {
10353006ec67SBrian Somers   /*
10363006ec67SBrian Somers    * Our datalink has closed.
1037ea722969SBrian Somers    * CleanDatalinks() (called from DoLoop()) will remove closed
103881358fa3SBrian Somers    * BACKGROUND and DIRECT links.
10393b0f8d2eSBrian Somers    * If it's the last data link, enter phase DEAD.
1040ea722969SBrian Somers    *
1041ea722969SBrian Somers    * NOTE: dl may not be in our list (bundle_SendDatalink()) !
10423006ec67SBrian Somers    */
10435b8b8060SBrian Somers 
10443b0f8d2eSBrian Somers   struct datalink *odl;
10453b0f8d2eSBrian Somers   int other_links;
10465b8b8060SBrian Somers 
1047bf1d3ff6SBrian Somers   log_SetTtyCommandMode(dl);
1048bf1d3ff6SBrian Somers 
10493b0f8d2eSBrian Somers   other_links = 0;
10503b0f8d2eSBrian Somers   for (odl = bundle->links; odl; odl = odl->next)
10513b0f8d2eSBrian Somers     if (odl != dl && odl->state != DATALINK_CLOSED)
10523b0f8d2eSBrian Somers       other_links++;
10533b0f8d2eSBrian Somers 
10543b0f8d2eSBrian Somers   if (!other_links) {
105581358fa3SBrian Somers     if (dl->physical->type != PHYS_AUTO)	/* Not in -auto mode */
105603704096SBrian Somers       bundle_DownInterface(bundle);
105709206a6fSBrian Somers     fsm2initial(&bundle->ncp.ipcp.fsm);
10585563ebdeSBrian Somers     bundle_NewPhase(bundle, PHASE_DEAD);
10590f2f3eb3SBrian Somers     bundle_StopIdleTimer(bundle);
106004eaa58cSBrian Somers     bundle_StopAutoLoadTimer(bundle);
106104eaa58cSBrian Somers     bundle->autoload.running = 0;
106204eaa58cSBrian Somers   } else
106304eaa58cSBrian Somers     bundle->autoload.running = 1;
1064455aabc3SBrian Somers }
1065455aabc3SBrian Somers 
1066455aabc3SBrian Somers void
1067ba23f397SBrian Somers bundle_Open(struct bundle *bundle, const char *name, int mask, int force)
10683006ec67SBrian Somers {
10693006ec67SBrian Somers   /*
10703006ec67SBrian Somers    * Please open the given datalink, or all if name == NULL
10713006ec67SBrian Somers    */
10723006ec67SBrian Somers   struct datalink *dl;
10733006ec67SBrian Somers 
107404eaa58cSBrian Somers   timer_Stop(&bundle->autoload.timer);
10753006ec67SBrian Somers   for (dl = bundle->links; dl; dl = dl->next)
10763006ec67SBrian Somers     if (name == NULL || !strcasecmp(dl->name, name)) {
1077ba23f397SBrian Somers       if ((mask & dl->physical->type) &&
1078ba23f397SBrian Somers           (dl->state == DATALINK_CLOSED ||
1079ba23f397SBrian Somers            (force && dl->state == DATALINK_OPENING &&
1080c11e57a3SBrian Somers             dl->dial.timer.state == TIMER_RUNNING))) {
1081c11e57a3SBrian Somers         if (force)	/* Ignore redial timeout ? */
1082c11e57a3SBrian Somers           timer_Stop(&dl->dial.timer);
1083565e35e5SBrian Somers         datalink_Up(dl, 1, 1);
108481358fa3SBrian Somers         if (mask == PHYS_AUTO)
108581358fa3SBrian Somers           /* Only one AUTO link at a time (see the AutoLoad timer) */
108604eaa58cSBrian Somers           break;
108704eaa58cSBrian Somers       }
10883006ec67SBrian Somers       if (name != NULL)
10893006ec67SBrian Somers         break;
10903006ec67SBrian Somers     }
10913006ec67SBrian Somers }
10923006ec67SBrian Somers 
10933006ec67SBrian Somers struct datalink *
10943006ec67SBrian Somers bundle2datalink(struct bundle *bundle, const char *name)
10953006ec67SBrian Somers {
10963006ec67SBrian Somers   struct datalink *dl;
10973006ec67SBrian Somers 
10983006ec67SBrian Somers   if (name != NULL) {
10993006ec67SBrian Somers     for (dl = bundle->links; dl; dl = dl->next)
11003006ec67SBrian Somers       if (!strcasecmp(dl->name, name))
11013006ec67SBrian Somers         return dl;
11023006ec67SBrian Somers   } else if (bundle->links && !bundle->links->next)
11033006ec67SBrian Somers     return bundle->links;
11043006ec67SBrian Somers 
11053006ec67SBrian Somers   return NULL;
11063006ec67SBrian Somers }
11073006ec67SBrian Somers 
11083006ec67SBrian Somers int
11093006ec67SBrian Somers bundle_FillQueues(struct bundle *bundle)
11103006ec67SBrian Somers {
11113b0f8d2eSBrian Somers   int total;
11123b0f8d2eSBrian Somers 
11131bc9b5baSBrian Somers   if (bundle->ncp.mp.active)
11143b0f8d2eSBrian Somers     total = mp_FillQueues(bundle);
11151bc9b5baSBrian Somers   else {
11161bc9b5baSBrian Somers     struct datalink *dl;
11171bc9b5baSBrian Somers     int add;
11181bc9b5baSBrian Somers 
11191bc9b5baSBrian Somers     for (total = 0, dl = bundle->links; dl; dl = dl->next)
11201bc9b5baSBrian Somers       if (dl->state == DATALINK_OPEN) {
11211bc9b5baSBrian Somers         add = link_QueueLen(&dl->physical->link);
11221bc9b5baSBrian Somers         if (add == 0 && dl->physical->out == NULL)
11235d9e6103SBrian Somers           add = ip_PushPacket(&dl->physical->link, bundle);
11241bc9b5baSBrian Somers         total += add;
11251bc9b5baSBrian Somers       }
11263006ec67SBrian Somers   }
11273006ec67SBrian Somers 
11285a72b6edSBrian Somers   return total + ip_QueueLen(&bundle->ncp.ipcp);
11293006ec67SBrian Somers }
1130aef795ccSBrian Somers 
1131aef795ccSBrian Somers int
1132aef795ccSBrian Somers bundle_ShowLinks(struct cmdargs const *arg)
1133aef795ccSBrian Somers {
1134aef795ccSBrian Somers   struct datalink *dl;
1135aef795ccSBrian Somers 
11369c53a7b1SBrian Somers   for (dl = arg->bundle->links; dl; dl = dl->next) {
1137d4156d00SBrian Somers     prompt_Printf(arg->prompt, "Name: %s [%s, %s]",
1138d4156d00SBrian Somers                   dl->name, mode2Nam(dl->physical->type), datalink_State(dl));
1139eeab6bf5SBrian Somers     if (dl->physical->link.throughput.rolling && dl->state == DATALINK_OPEN)
11405d9e6103SBrian Somers       prompt_Printf(arg->prompt, " weight %d, %Ld bytes/sec",
1141eeab6bf5SBrian Somers                     dl->mp.weight,
11429c53a7b1SBrian Somers                     dl->physical->link.throughput.OctetsPerSecond);
11439c53a7b1SBrian Somers     prompt_Printf(arg->prompt, "\n");
11449c53a7b1SBrian Somers   }
1145aef795ccSBrian Somers 
1146aef795ccSBrian Somers   return 0;
1147aef795ccSBrian Somers }
1148ab886ad0SBrian Somers 
11491342caedSBrian Somers static const char *
11501342caedSBrian Somers optval(struct bundle *bundle, int bit)
11511342caedSBrian Somers {
11521342caedSBrian Somers   return (bundle->cfg.opt & bit) ? "enabled" : "disabled";
11531342caedSBrian Somers }
11541342caedSBrian Somers 
1155c08717dfSBrian Somers int
1156c08717dfSBrian Somers bundle_ShowStatus(struct cmdargs const *arg)
1157c08717dfSBrian Somers {
1158c08717dfSBrian Somers   int remaining;
1159c08717dfSBrian Somers 
1160c08717dfSBrian Somers   prompt_Printf(arg->prompt, "Phase %s\n", bundle_PhaseName(arg->bundle));
11610f781a72SBrian Somers   prompt_Printf(arg->prompt, " Title:         %s\n", arg->bundle->argv[0]);
1162faefde08SBrian Somers   prompt_Printf(arg->prompt, " Device:        %s\n", arg->bundle->dev.Name);
1163faefde08SBrian Somers   prompt_Printf(arg->prompt, " Interface:     %s @ %lubps\n",
11648fa6ebe4SBrian Somers                 arg->bundle->iface->name, arg->bundle->ifSpeed);
1165c08717dfSBrian Somers 
1166c08717dfSBrian Somers   prompt_Printf(arg->prompt, "\nDefaults:\n");
1167643f4904SBrian Somers   prompt_Printf(arg->prompt, " Label:         %s\n", arg->bundle->cfg.label);
1168610b185fSBrian Somers   prompt_Printf(arg->prompt, " Auth name:     %s\n",
1169610b185fSBrian Somers                 arg->bundle->cfg.auth.name);
117004eaa58cSBrian Somers   prompt_Printf(arg->prompt, " Auto Load:     Up after %ds of >= %d packets\n",
117104eaa58cSBrian Somers                 arg->bundle->cfg.autoload.max.timeout,
117204eaa58cSBrian Somers                 arg->bundle->cfg.autoload.max.packets);
117304eaa58cSBrian Somers   prompt_Printf(arg->prompt, "                Down after %ds of <= %d"
117404eaa58cSBrian Somers                 " packets\n", arg->bundle->cfg.autoload.min.timeout,
117504eaa58cSBrian Somers                 arg->bundle->cfg.autoload.min.packets);
117604eaa58cSBrian Somers   if (arg->bundle->autoload.timer.state == TIMER_RUNNING)
117704eaa58cSBrian Somers     prompt_Printf(arg->prompt, "                %ds remaining 'till "
117804eaa58cSBrian Somers                   "a link comes %s\n",
117904eaa58cSBrian Somers                   bundle_RemainingAutoLoadTime(arg->bundle),
118004eaa58cSBrian Somers                   arg->bundle->autoload.comingup ? "up" : "down");
118104eaa58cSBrian Somers   else
118204eaa58cSBrian Somers     prompt_Printf(arg->prompt, "                %srunning with %d"
118304eaa58cSBrian Somers                   " packets queued\n", arg->bundle->autoload.running ?
11845a72b6edSBrian Somers                   "" : "not ", ip_QueueLen(&arg->bundle->ncp.ipcp));
118504eaa58cSBrian Somers 
11866f8e9f0aSBrian Somers   prompt_Printf(arg->prompt, " Choked Timer:  %ds\n",
11876f8e9f0aSBrian Somers                 arg->bundle->cfg.choked.timeout);
1188972a1bcfSBrian Somers 
1189972a1bcfSBrian Somers #ifndef NORADIUS
1190972a1bcfSBrian Somers   radius_Show(&arg->bundle->radius, arg->prompt);
1191972a1bcfSBrian Somers #endif
1192972a1bcfSBrian Somers 
1193c08717dfSBrian Somers   prompt_Printf(arg->prompt, " Idle Timer:    ");
1194c08717dfSBrian Somers   if (arg->bundle->cfg.idle_timeout) {
1195c08717dfSBrian Somers     prompt_Printf(arg->prompt, "%ds", arg->bundle->cfg.idle_timeout);
1196c08717dfSBrian Somers     remaining = bundle_RemainingIdleTime(arg->bundle);
1197c08717dfSBrian Somers     if (remaining != -1)
1198c08717dfSBrian Somers       prompt_Printf(arg->prompt, " (%ds remaining)", remaining);
1199c08717dfSBrian Somers     prompt_Printf(arg->prompt, "\n");
1200c08717dfSBrian Somers   } else
1201c08717dfSBrian Somers     prompt_Printf(arg->prompt, "disabled\n");
1202ce828a6eSBrian Somers   prompt_Printf(arg->prompt, " MTU:           ");
1203ce828a6eSBrian Somers   if (arg->bundle->cfg.mtu)
1204ce828a6eSBrian Somers     prompt_Printf(arg->prompt, "%d\n", arg->bundle->cfg.mtu);
1205ce828a6eSBrian Somers   else
1206ce828a6eSBrian Somers     prompt_Printf(arg->prompt, "unspecified\n");
1207c08717dfSBrian Somers 
12083afe5ccbSBrian Somers   prompt_Printf(arg->prompt, " sendpipe:      ");
12093afe5ccbSBrian Somers   if (arg->bundle->ncp.ipcp.cfg.sendpipe > 0)
12103afe5ccbSBrian Somers     prompt_Printf(arg->prompt, "%ld\n", arg->bundle->ncp.ipcp.cfg.sendpipe);
12113afe5ccbSBrian Somers   else
12123afe5ccbSBrian Somers     prompt_Printf(arg->prompt, "unspecified\n");
12133afe5ccbSBrian Somers   prompt_Printf(arg->prompt, " recvpipe:      ");
12143afe5ccbSBrian Somers   if (arg->bundle->ncp.ipcp.cfg.recvpipe > 0)
12153afe5ccbSBrian Somers     prompt_Printf(arg->prompt, "%ld\n", arg->bundle->ncp.ipcp.cfg.recvpipe);
12163afe5ccbSBrian Somers   else
12173afe5ccbSBrian Somers     prompt_Printf(arg->prompt, "unspecified\n");
12183afe5ccbSBrian Somers 
1219610b185fSBrian Somers   prompt_Printf(arg->prompt, " Sticky Routes: %s\n",
1220610b185fSBrian Somers                 optval(arg->bundle, OPT_SROUTES));
12211342caedSBrian Somers   prompt_Printf(arg->prompt, " ID check:      %s\n",
12221342caedSBrian Somers                 optval(arg->bundle, OPT_IDCHECK));
12231342caedSBrian Somers   prompt_Printf(arg->prompt, " Loopback:      %s\n",
12241342caedSBrian Somers                 optval(arg->bundle, OPT_LOOPBACK));
12251342caedSBrian Somers   prompt_Printf(arg->prompt, " PasswdAuth:    %s\n",
12261342caedSBrian Somers                 optval(arg->bundle, OPT_PASSWDAUTH));
12271342caedSBrian Somers   prompt_Printf(arg->prompt, " Proxy:         %s\n",
12281342caedSBrian Somers                 optval(arg->bundle, OPT_PROXY));
12293afe5ccbSBrian Somers   prompt_Printf(arg->prompt, " Proxyall:      %s\n",
12303afe5ccbSBrian Somers                 optval(arg->bundle, OPT_PROXYALL));
12311342caedSBrian Somers   prompt_Printf(arg->prompt, " Throughput:    %s\n",
12321342caedSBrian Somers                 optval(arg->bundle, OPT_THROUGHPUT));
1233610b185fSBrian Somers   prompt_Printf(arg->prompt, " Utmp Logging:  %s\n",
12341342caedSBrian Somers                 optval(arg->bundle, OPT_UTMP));
12358fa6ebe4SBrian Somers   prompt_Printf(arg->prompt, " Iface-Alias:   %s\n",
12368fa6ebe4SBrian Somers                 optval(arg->bundle, OPT_IFACEALIAS));
12371342caedSBrian Somers 
1238c08717dfSBrian Somers   return 0;
1239c08717dfSBrian Somers }
1240c08717dfSBrian Somers 
1241ab886ad0SBrian Somers static void
1242ab886ad0SBrian Somers bundle_IdleTimeout(void *v)
1243ab886ad0SBrian Somers {
1244ab886ad0SBrian Somers   struct bundle *bundle = (struct bundle *)v;
1245ab886ad0SBrian Somers 
1246dd7e2610SBrian Somers   log_Printf(LogPHASE, "Idle timer expired.\n");
124704eaa58cSBrian Somers   bundle_StopIdleTimer(bundle);
12489c81b87dSBrian Somers   bundle_Close(bundle, NULL, CLOSE_STAYDOWN);
1249ab886ad0SBrian Somers }
1250ab886ad0SBrian Somers 
1251ab886ad0SBrian Somers /*
1252ab886ad0SBrian Somers  *  Start Idle timer. If timeout is reached, we call bundle_Close() to
1253ab886ad0SBrian Somers  *  close LCP and link.
1254ab886ad0SBrian Somers  */
1255ab886ad0SBrian Somers void
1256ab886ad0SBrian Somers bundle_StartIdleTimer(struct bundle *bundle)
1257ab886ad0SBrian Somers {
1258dd7e2610SBrian Somers   timer_Stop(&bundle->idle.timer);
1259ff0f9439SBrian Somers   if ((bundle->phys_type.open & (PHYS_DEDICATED|PHYS_DDIAL)) !=
1260ff0f9439SBrian Somers       bundle->phys_type.open && bundle->cfg.idle_timeout) {
126193ee0ff2SBrian Somers     bundle->idle.timer.func = bundle_IdleTimeout;
12623b0f8d2eSBrian Somers     bundle->idle.timer.name = "idle";
126393ee0ff2SBrian Somers     bundle->idle.timer.load = bundle->cfg.idle_timeout * SECTICKS;
126493ee0ff2SBrian Somers     bundle->idle.timer.arg = bundle;
1265dd7e2610SBrian Somers     timer_Start(&bundle->idle.timer);
126693ee0ff2SBrian Somers     bundle->idle.done = time(NULL) + bundle->cfg.idle_timeout;
1267ab886ad0SBrian Somers   }
1268ab886ad0SBrian Somers }
1269ab886ad0SBrian Somers 
1270ab886ad0SBrian Somers void
1271ab886ad0SBrian Somers bundle_SetIdleTimer(struct bundle *bundle, int value)
1272ab886ad0SBrian Somers {
1273ab886ad0SBrian Somers   bundle->cfg.idle_timeout = value;
1274ab886ad0SBrian Somers   if (bundle_LinkIsUp(bundle))
1275ab886ad0SBrian Somers     bundle_StartIdleTimer(bundle);
1276ab886ad0SBrian Somers }
1277ab886ad0SBrian Somers 
1278ab886ad0SBrian Somers void
1279ab886ad0SBrian Somers bundle_StopIdleTimer(struct bundle *bundle)
1280ab886ad0SBrian Somers {
1281dd7e2610SBrian Somers   timer_Stop(&bundle->idle.timer);
12824a632c80SBrian Somers   bundle->idle.done = 0;
1283ab886ad0SBrian Somers }
1284ab886ad0SBrian Somers 
128504eaa58cSBrian Somers static int
1286ab886ad0SBrian Somers bundle_RemainingIdleTime(struct bundle *bundle)
1287ab886ad0SBrian Somers {
128893ee0ff2SBrian Somers   if (bundle->idle.done)
128993ee0ff2SBrian Somers     return bundle->idle.done - time(NULL);
1290ab886ad0SBrian Somers   return -1;
1291ab886ad0SBrian Somers }
12923b0f8d2eSBrian Somers 
12933b0f8d2eSBrian Somers int
12943b0f8d2eSBrian Somers bundle_IsDead(struct bundle *bundle)
12953b0f8d2eSBrian Somers {
12963b0f8d2eSBrian Somers   return !bundle->links || (bundle->phase == PHASE_DEAD && bundle->CleaningUp);
12973b0f8d2eSBrian Somers }
1298b6217683SBrian Somers 
129904eaa58cSBrian Somers static struct datalink *
130004eaa58cSBrian Somers bundle_DatalinkLinkout(struct bundle *bundle, struct datalink *dl)
1301cd7bd93aSBrian Somers {
1302cd7bd93aSBrian Somers   struct datalink **dlp;
1303cd7bd93aSBrian Somers 
1304cd7bd93aSBrian Somers   for (dlp = &bundle->links; *dlp; dlp = &(*dlp)->next)
1305cd7bd93aSBrian Somers     if (*dlp == dl) {
130604eaa58cSBrian Somers       *dlp = dl->next;
130704eaa58cSBrian Somers       dl->next = NULL;
130804eaa58cSBrian Somers       bundle_LinksRemoved(bundle);
130904eaa58cSBrian Somers       return dl;
1310cd7bd93aSBrian Somers     }
131104eaa58cSBrian Somers 
131204eaa58cSBrian Somers   return NULL;
131304eaa58cSBrian Somers }
131404eaa58cSBrian Somers 
131504eaa58cSBrian Somers static void
131604eaa58cSBrian Somers bundle_DatalinkLinkin(struct bundle *bundle, struct datalink *dl)
131704eaa58cSBrian Somers {
131804eaa58cSBrian Somers   struct datalink **dlp = &bundle->links;
131904eaa58cSBrian Somers 
132004eaa58cSBrian Somers   while (*dlp)
132104eaa58cSBrian Somers     dlp = &(*dlp)->next;
132204eaa58cSBrian Somers 
132304eaa58cSBrian Somers   *dlp = dl;
132404eaa58cSBrian Somers   dl->next = NULL;
132504eaa58cSBrian Somers 
132604eaa58cSBrian Somers   bundle_LinkAdded(bundle, dl);
1327565e35e5SBrian Somers }
1328565e35e5SBrian Somers 
1329565e35e5SBrian Somers void
1330565e35e5SBrian Somers bundle_CleanDatalinks(struct bundle *bundle)
1331565e35e5SBrian Somers {
1332565e35e5SBrian Somers   struct datalink **dlp = &bundle->links;
133304eaa58cSBrian Somers   int found = 0;
1334565e35e5SBrian Somers 
1335565e35e5SBrian Somers   while (*dlp)
1336565e35e5SBrian Somers     if ((*dlp)->state == DATALINK_CLOSED &&
133781358fa3SBrian Somers         (*dlp)->physical->type & (PHYS_DIRECT|PHYS_BACKGROUND)) {
1338565e35e5SBrian Somers       *dlp = datalink_Destroy(*dlp);
133904eaa58cSBrian Somers       found++;
134004eaa58cSBrian Somers     } else
1341565e35e5SBrian Somers       dlp = &(*dlp)->next;
134204eaa58cSBrian Somers 
134304eaa58cSBrian Somers   if (found)
134404eaa58cSBrian Somers     bundle_LinksRemoved(bundle);
134504eaa58cSBrian Somers }
134604eaa58cSBrian Somers 
134704eaa58cSBrian Somers int
134804eaa58cSBrian Somers bundle_DatalinkClone(struct bundle *bundle, struct datalink *dl,
134904eaa58cSBrian Somers                      const char *name)
135004eaa58cSBrian Somers {
135104eaa58cSBrian Somers   if (bundle2datalink(bundle, name)) {
135204eaa58cSBrian Somers     log_Printf(LogWARN, "Clone: %s: name already exists\n", name);
135304eaa58cSBrian Somers     return 0;
135404eaa58cSBrian Somers   }
135504eaa58cSBrian Somers 
135604eaa58cSBrian Somers   bundle_DatalinkLinkin(bundle, datalink_Clone(dl, name));
135704eaa58cSBrian Somers   return 1;
135804eaa58cSBrian Somers }
135904eaa58cSBrian Somers 
136004eaa58cSBrian Somers void
136104eaa58cSBrian Somers bundle_DatalinkRemove(struct bundle *bundle, struct datalink *dl)
136204eaa58cSBrian Somers {
136304eaa58cSBrian Somers   dl = bundle_DatalinkLinkout(bundle, dl);
136404eaa58cSBrian Somers   if (dl)
136504eaa58cSBrian Somers     datalink_Destroy(dl);
1366cd7bd93aSBrian Somers }
136749052c95SBrian Somers 
136849052c95SBrian Somers void
136949052c95SBrian Somers bundle_SetLabel(struct bundle *bundle, const char *label)
137049052c95SBrian Somers {
137149052c95SBrian Somers   if (label)
137249052c95SBrian Somers     strncpy(bundle->cfg.label, label, sizeof bundle->cfg.label - 1);
137349052c95SBrian Somers   else
137449052c95SBrian Somers     *bundle->cfg.label = '\0';
137549052c95SBrian Somers }
137649052c95SBrian Somers 
137749052c95SBrian Somers const char *
137849052c95SBrian Somers bundle_GetLabel(struct bundle *bundle)
137949052c95SBrian Somers {
138049052c95SBrian Somers   return *bundle->cfg.label ? bundle->cfg.label : NULL;
138149052c95SBrian Somers }
13821fa665f5SBrian Somers 
13831fa665f5SBrian Somers void
138496c9bb21SBrian Somers bundle_ReceiveDatalink(struct bundle *bundle, int s, struct sockaddr_un *sun)
13851fa665f5SBrian Somers {
138696c9bb21SBrian Somers   char cmsgbuf[sizeof(struct cmsghdr) + sizeof(int)];
138796c9bb21SBrian Somers   struct cmsghdr *cmsg = (struct cmsghdr *)cmsgbuf;
138896c9bb21SBrian Somers   struct msghdr msg;
138996c9bb21SBrian Somers   struct iovec iov[SCATTER_SEGMENTS];
1390b7c5748eSBrian Somers   struct datalink *dl;
139196c9bb21SBrian Somers   int niov, link_fd, expect, f;
139285fd273aSBrian Somers   pid_t pid;
13936f384573SBrian Somers 
1394dd7e2610SBrian Somers   log_Printf(LogPHASE, "Receiving datalink\n");
13956f384573SBrian Somers 
139696c9bb21SBrian Somers   /* Create our scatter/gather array */
139796c9bb21SBrian Somers   niov = 1;
139896c9bb21SBrian Somers   iov[0].iov_len = strlen(Version) + 1;
139996c9bb21SBrian Somers   iov[0].iov_base = (char *)malloc(iov[0].iov_len);
140085fd273aSBrian Somers   if (datalink2iov(NULL, iov, &niov, sizeof iov / sizeof *iov, 0) == -1) {
140154cd8e13SBrian Somers     close(s);
14026f384573SBrian Somers     return;
140354cd8e13SBrian Somers   }
14046f384573SBrian Somers 
140585fd273aSBrian Somers   pid = getpid();
140685fd273aSBrian Somers   write(s, &pid, sizeof pid);
140785fd273aSBrian Somers 
140896c9bb21SBrian Somers   for (f = expect = 0; f < niov; f++)
140996c9bb21SBrian Somers     expect += iov[f].iov_len;
141096c9bb21SBrian Somers 
141196c9bb21SBrian Somers   /* Set up our message */
141296c9bb21SBrian Somers   cmsg->cmsg_len = sizeof cmsgbuf;
141396c9bb21SBrian Somers   cmsg->cmsg_level = SOL_SOCKET;
141454cd8e13SBrian Somers   cmsg->cmsg_type = 0;
141596c9bb21SBrian Somers 
141696c9bb21SBrian Somers   memset(&msg, '\0', sizeof msg);
141796c9bb21SBrian Somers   msg.msg_name = (caddr_t)sun;
141896c9bb21SBrian Somers   msg.msg_namelen = sizeof *sun;
141996c9bb21SBrian Somers   msg.msg_iov = iov;
142096c9bb21SBrian Somers   msg.msg_iovlen = niov;
142196c9bb21SBrian Somers   msg.msg_control = cmsgbuf;
142296c9bb21SBrian Somers   msg.msg_controllen = sizeof cmsgbuf;
142396c9bb21SBrian Somers 
142496c9bb21SBrian Somers   log_Printf(LogDEBUG, "Expecting %d scatter/gather bytes\n", expect);
142596c9bb21SBrian Somers   f = expect + 100;
142696c9bb21SBrian Somers   setsockopt(s, SOL_SOCKET, SO_RCVBUF, &f, sizeof f);
142796c9bb21SBrian Somers   if ((f = recvmsg(s, &msg, MSG_WAITALL)) != expect) {
142896c9bb21SBrian Somers     if (f == -1)
142996c9bb21SBrian Somers       log_Printf(LogERROR, "Failed recvmsg: %s\n", strerror(errno));
143096c9bb21SBrian Somers     else
143196c9bb21SBrian Somers       log_Printf(LogERROR, "Failed recvmsg: Got %d, not %d\n", f, expect);
143296c9bb21SBrian Somers     while (niov--)
143396c9bb21SBrian Somers       free(iov[niov].iov_base);
143454cd8e13SBrian Somers     close(s);
143596c9bb21SBrian Somers     return;
143696c9bb21SBrian Somers   }
143796c9bb21SBrian Somers 
1438c0d9a877SBrian Somers   write(s, "!", 1);	/* ACK */
1439ad5b0e8bSBrian Somers   close(s);
1440c0d9a877SBrian Somers 
1441ad5b0e8bSBrian Somers   if (cmsg->cmsg_type != SCM_RIGHTS) {
1442ad5b0e8bSBrian Somers     log_Printf(LogERROR, "Recvmsg: no descriptor received !\n");
1443ad5b0e8bSBrian Somers     while (niov--)
1444ad5b0e8bSBrian Somers       free(iov[niov].iov_base);
1445ad5b0e8bSBrian Somers     return;
144654cd8e13SBrian Somers   }
144754cd8e13SBrian Somers 
1448ad5b0e8bSBrian Somers   /* We've successfully received an open file descriptor through our socket */
1449ad5b0e8bSBrian Somers   log_Printf(LogDEBUG, "Receiving device descriptor\n");
1450ad5b0e8bSBrian Somers   link_fd = *(int *)CMSG_DATA(cmsg);
1451ad5b0e8bSBrian Somers 
145296c9bb21SBrian Somers   if (strncmp(Version, iov[0].iov_base, iov[0].iov_len)) {
145396c9bb21SBrian Somers     log_Printf(LogWARN, "Cannot receive datalink, incorrect version"
145496c9bb21SBrian Somers                " (\"%.*s\", not \"%s\")\n", (int)iov[0].iov_len,
14557d81ddf5SBrian Somers                (char *)iov[0].iov_base, Version);
145696c9bb21SBrian Somers     close(link_fd);
145796c9bb21SBrian Somers     while (niov--)
145896c9bb21SBrian Somers       free(iov[niov].iov_base);
145996c9bb21SBrian Somers     return;
146096c9bb21SBrian Somers   }
146196c9bb21SBrian Somers 
146296c9bb21SBrian Somers   niov = 1;
1463b7c5748eSBrian Somers   dl = iov2datalink(bundle, iov, &niov, sizeof iov / sizeof *iov, link_fd);
1464b7c5748eSBrian Somers   if (dl) {
146504eaa58cSBrian Somers     bundle_DatalinkLinkin(bundle, dl);
1466b7c5748eSBrian Somers     datalink_AuthOk(dl);
146796c9bb21SBrian Somers   } else
146896c9bb21SBrian Somers     close(link_fd);
146996c9bb21SBrian Somers 
147096c9bb21SBrian Somers   free(iov[0].iov_base);
14711fa665f5SBrian Somers }
14721fa665f5SBrian Somers 
14731fa665f5SBrian Somers void
147496c9bb21SBrian Somers bundle_SendDatalink(struct datalink *dl, int s, struct sockaddr_un *sun)
14751fa665f5SBrian Somers {
1476c0d9a877SBrian Somers   char cmsgbuf[sizeof(struct cmsghdr) + sizeof(int)], ack;
147796c9bb21SBrian Somers   struct cmsghdr *cmsg = (struct cmsghdr *)cmsgbuf;
147896c9bb21SBrian Somers   struct msghdr msg;
147996c9bb21SBrian Somers   struct iovec iov[SCATTER_SEGMENTS];
14801384bd27SBrian Somers   int niov, link_fd, f, expect, newsid;
148185fd273aSBrian Somers   pid_t newpid;
14826f384573SBrian Somers 
1483dd7e2610SBrian Somers   log_Printf(LogPHASE, "Transmitting datalink %s\n", dl->name);
14846f384573SBrian Somers 
148504eaa58cSBrian Somers   bundle_LinkClosed(dl->bundle, dl);
14860f2f3eb3SBrian Somers   bundle_DatalinkLinkout(dl->bundle, dl);
1487ea722969SBrian Somers 
148896c9bb21SBrian Somers   /* Build our scatter/gather array */
148996c9bb21SBrian Somers   iov[0].iov_len = strlen(Version) + 1;
149096c9bb21SBrian Somers   iov[0].iov_base = strdup(Version);
149196c9bb21SBrian Somers   niov = 1;
14926f384573SBrian Somers 
149385fd273aSBrian Somers   read(s, &newpid, sizeof newpid);
149485fd273aSBrian Somers   link_fd = datalink2iov(dl, iov, &niov, sizeof iov / sizeof *iov, newpid);
14956f384573SBrian Somers 
14966f384573SBrian Somers   if (link_fd != -1) {
149796c9bb21SBrian Somers     memset(&msg, '\0', sizeof msg);
149854cd8e13SBrian Somers 
149996c9bb21SBrian Somers     msg.msg_name = (caddr_t)sun;
150096c9bb21SBrian Somers     msg.msg_namelen = sizeof *sun;
150196c9bb21SBrian Somers     msg.msg_iov = iov;
150296c9bb21SBrian Somers     msg.msg_iovlen = niov;
150354cd8e13SBrian Somers 
150454cd8e13SBrian Somers     cmsg->cmsg_len = sizeof cmsgbuf;
150554cd8e13SBrian Somers     cmsg->cmsg_level = SOL_SOCKET;
150654cd8e13SBrian Somers     cmsg->cmsg_type = SCM_RIGHTS;
150754cd8e13SBrian Somers     *(int *)CMSG_DATA(cmsg) = link_fd;
150896c9bb21SBrian Somers     msg.msg_control = cmsgbuf;
150996c9bb21SBrian Somers     msg.msg_controllen = sizeof cmsgbuf;
151047723d29SBrian Somers 
151196c9bb21SBrian Somers     for (f = expect = 0; f < niov; f++)
151296c9bb21SBrian Somers       expect += iov[f].iov_len;
151347723d29SBrian Somers 
151496c9bb21SBrian Somers     log_Printf(LogDEBUG, "Sending %d bytes in scatter/gather array\n", expect);
151547723d29SBrian Somers 
151696c9bb21SBrian Somers     f = expect + SOCKET_OVERHEAD;
151796c9bb21SBrian Somers     setsockopt(s, SOL_SOCKET, SO_SNDBUF, &f, sizeof f);
151896c9bb21SBrian Somers     if (sendmsg(s, &msg, 0) == -1)
151996c9bb21SBrian Somers       log_Printf(LogERROR, "Failed sendmsg: %s\n", strerror(errno));
1520c0d9a877SBrian Somers     /* We must get the ACK before closing the descriptor ! */
1521c0d9a877SBrian Somers     read(s, &ack, 1);
152254cd8e13SBrian Somers 
15231384bd27SBrian Somers     newsid = tcgetpgrp(link_fd) == getpgrp();
152496c9bb21SBrian Somers     close(link_fd);
15251384bd27SBrian Somers     if (newsid)
15261384bd27SBrian Somers       bundle_setsid(dl->bundle, 1);
152747723d29SBrian Somers   }
152885fd273aSBrian Somers   close(s);
152996c9bb21SBrian Somers 
153096c9bb21SBrian Somers   while (niov--)
153196c9bb21SBrian Somers     free(iov[niov].iov_base);
15321fa665f5SBrian Somers }
1533dd0645c5SBrian Somers 
1534dd0645c5SBrian Somers int
153558d55334SBrian Somers bundle_RenameDatalink(struct bundle *bundle, struct datalink *ndl,
153658d55334SBrian Somers                       const char *name)
153758d55334SBrian Somers {
153858d55334SBrian Somers   struct datalink *dl;
153958d55334SBrian Somers 
154058d55334SBrian Somers   if (!strcasecmp(ndl->name, name))
154158d55334SBrian Somers     return 1;
154258d55334SBrian Somers 
154358d55334SBrian Somers   for (dl = bundle->links; dl; dl = dl->next)
154458d55334SBrian Somers     if (!strcasecmp(dl->name, name))
154558d55334SBrian Somers       return 0;
154658d55334SBrian Somers 
154758d55334SBrian Somers   datalink_Rename(ndl, name);
154858d55334SBrian Somers   return 1;
154958d55334SBrian Somers }
155058d55334SBrian Somers 
155158d55334SBrian Somers int
1552dd0645c5SBrian Somers bundle_SetMode(struct bundle *bundle, struct datalink *dl, int mode)
1553dd0645c5SBrian Somers {
1554dd0645c5SBrian Somers   int omode;
1555dd0645c5SBrian Somers 
1556dd0645c5SBrian Somers   omode = dl->physical->type;
1557dd0645c5SBrian Somers   if (omode == mode)
1558dd0645c5SBrian Somers     return 1;
1559dd0645c5SBrian Somers 
1560ff0f9439SBrian Somers   if (mode == PHYS_AUTO && !(bundle->phys_type.all & PHYS_AUTO))
1561ff0f9439SBrian Somers     /* First auto link */
1562dd0645c5SBrian Somers     if (bundle->ncp.ipcp.peer_ip.s_addr == INADDR_ANY) {
1563ff0f9439SBrian Somers       log_Printf(LogWARN, "You must `set ifaddr' or `open' before"
1564ff0f9439SBrian Somers                  " changing mode to %s\n", mode2Nam(mode));
1565dd0645c5SBrian Somers       return 0;
1566dd0645c5SBrian Somers     }
1567dd0645c5SBrian Somers 
1568dd0645c5SBrian Somers   if (!datalink_SetMode(dl, mode))
1569dd0645c5SBrian Somers     return 0;
1570dd0645c5SBrian Somers 
1571ff0f9439SBrian Somers   if (mode == PHYS_AUTO && !(bundle->phys_type.all & PHYS_AUTO) &&
1572ff0f9439SBrian Somers       bundle->phase != PHASE_NETWORK)
1573ff0f9439SBrian Somers     /* First auto link, we need an interface */
1574dd0645c5SBrian Somers     ipcp_InterfaceUp(&bundle->ncp.ipcp);
1575dd0645c5SBrian Somers 
157604eaa58cSBrian Somers   /* Regenerate phys_type and adjust autoload & idle timers */
157704eaa58cSBrian Somers   bundle_LinksRemoved(bundle);
1578dd0645c5SBrian Somers 
1579dd0645c5SBrian Somers   return 1;
1580dd0645c5SBrian Somers }
15811384bd27SBrian Somers 
15821384bd27SBrian Somers void
15831384bd27SBrian Somers bundle_setsid(struct bundle *bundle, int holdsession)
15841384bd27SBrian Somers {
15851384bd27SBrian Somers   /*
15861384bd27SBrian Somers    * Lose the current session.  This means getting rid of our pid
15871384bd27SBrian Somers    * too so that the tty device will really go away, and any getty
15881384bd27SBrian Somers    * etc will be allowed to restart.
15891384bd27SBrian Somers    */
15901384bd27SBrian Somers   pid_t pid, orig;
15911384bd27SBrian Somers   int fds[2];
15921384bd27SBrian Somers   char done;
15931384bd27SBrian Somers   struct datalink *dl;
15941384bd27SBrian Somers 
15951384bd27SBrian Somers   orig = getpid();
15961384bd27SBrian Somers   if (pipe(fds) == -1) {
15971384bd27SBrian Somers     log_Printf(LogERROR, "pipe: %s\n", strerror(errno));
15981384bd27SBrian Somers     return;
15991384bd27SBrian Somers   }
16001384bd27SBrian Somers   switch ((pid = fork())) {
16011384bd27SBrian Somers     case -1:
16021384bd27SBrian Somers       log_Printf(LogERROR, "fork: %s\n", strerror(errno));
16031384bd27SBrian Somers       close(fds[0]);
16041384bd27SBrian Somers       close(fds[1]);
16051384bd27SBrian Somers       return;
16061384bd27SBrian Somers     case 0:
16071384bd27SBrian Somers       close(fds[1]);
16084be0e57dSBrian Somers       read(fds[0], &done, 1);		/* uu_locks are mine ! */
16094be0e57dSBrian Somers       close(fds[0]);
16101384bd27SBrian Somers       if (pipe(fds) == -1) {
16111384bd27SBrian Somers         log_Printf(LogERROR, "pipe(2): %s\n", strerror(errno));
16121384bd27SBrian Somers         return;
16131384bd27SBrian Somers       }
16141384bd27SBrian Somers       switch ((pid = fork())) {
16151384bd27SBrian Somers         case -1:
1616a33b2ef7SBrian Somers           log_Printf(LogERROR, "fork(2): %s\n", strerror(errno));
16171384bd27SBrian Somers           close(fds[0]);
16181384bd27SBrian Somers           close(fds[1]);
16191384bd27SBrian Somers           return;
16201384bd27SBrian Somers         case 0:
16211384bd27SBrian Somers           close(fds[1]);
16224be0e57dSBrian Somers           bundle_LockTun(bundle);	/* update pid */
16234be0e57dSBrian Somers           read(fds[0], &done, 1);	/* uu_locks are mine ! */
16244be0e57dSBrian Somers           close(fds[0]);
16251384bd27SBrian Somers           setsid();
16261384bd27SBrian Somers           log_Printf(LogPHASE, "%d -> %d: %s session control\n",
16271384bd27SBrian Somers                      (int)orig, (int)getpid(),
16281384bd27SBrian Somers                      holdsession ? "Passed" : "Dropped");
16297e778f13SBrian Somers           timer_InitService(0);		/* Start the Timer Service */
16301384bd27SBrian Somers           break;
16311384bd27SBrian Somers         default:
16324be0e57dSBrian Somers           close(fds[0]);
16335d9e6103SBrian Somers           /* Give away all our physical locks (to the final process) */
16341384bd27SBrian Somers           for (dl = bundle->links; dl; dl = dl->next)
16351384bd27SBrian Somers             if (dl->state != DATALINK_CLOSED)
16365d9e6103SBrian Somers               physical_ChangedPid(dl->physical, pid);
16374be0e57dSBrian Somers           write(fds[1], "!", 1);	/* done */
16384be0e57dSBrian Somers           close(fds[1]);
16391384bd27SBrian Somers           exit(0);
16401384bd27SBrian Somers           break;
16411384bd27SBrian Somers       }
16421384bd27SBrian Somers       break;
16431384bd27SBrian Somers     default:
16444be0e57dSBrian Somers       close(fds[0]);
16455d9e6103SBrian Somers       /* Give away all our physical locks (to the intermediate process) */
16461384bd27SBrian Somers       for (dl = bundle->links; dl; dl = dl->next)
16471384bd27SBrian Somers         if (dl->state != DATALINK_CLOSED)
16485d9e6103SBrian Somers           physical_ChangedPid(dl->physical, pid);
16494be0e57dSBrian Somers       write(fds[1], "!", 1);	/* done */
16504be0e57dSBrian Somers       close(fds[1]);
16511384bd27SBrian Somers       if (holdsession) {
16521384bd27SBrian Somers         int fd, status;
16531384bd27SBrian Somers 
16541384bd27SBrian Somers         timer_TermService();
16551384bd27SBrian Somers         signal(SIGPIPE, SIG_DFL);
16561384bd27SBrian Somers         signal(SIGALRM, SIG_DFL);
16571384bd27SBrian Somers         signal(SIGHUP, SIG_DFL);
16581384bd27SBrian Somers         signal(SIGTERM, SIG_DFL);
16591384bd27SBrian Somers         signal(SIGINT, SIG_DFL);
16601384bd27SBrian Somers         signal(SIGQUIT, SIG_DFL);
16611384bd27SBrian Somers         for (fd = getdtablesize(); fd >= 0; fd--)
16621384bd27SBrian Somers           close(fd);
16631384bd27SBrian Somers         setuid(geteuid());
16641384bd27SBrian Somers         /*
16651384bd27SBrian Somers          * Reap the intermediate process.  As we're not exiting but the
16661384bd27SBrian Somers          * intermediate is, we don't want it to become defunct.
16671384bd27SBrian Somers          */
16681384bd27SBrian Somers         waitpid(pid, &status, 0);
16698e7b8599SBrian Somers         /* Tweak our process arguments.... */
16708e7b8599SBrian Somers         bundle->argv[0] = "session owner";
16718e7b8599SBrian Somers         bundle->argv[1] = NULL;
16721384bd27SBrian Somers         /*
16731384bd27SBrian Somers          * Hang around for a HUP.  This should happen as soon as the
16741384bd27SBrian Somers          * ppp that we passed our ctty descriptor to closes it.
16751384bd27SBrian Somers          * NOTE: If this process dies, the passed descriptor becomes
16761384bd27SBrian Somers          *       invalid and will give a select() error by setting one
16771384bd27SBrian Somers          *       of the error fds, aborting the other ppp.  We don't
16781384bd27SBrian Somers          *       want that to happen !
16791384bd27SBrian Somers          */
16801384bd27SBrian Somers         pause();
16811384bd27SBrian Somers       }
16821384bd27SBrian Somers       exit(0);
16831384bd27SBrian Somers       break;
16841384bd27SBrian Somers   }
16851384bd27SBrian Somers }
16869b5f8ffdSBrian Somers 
16879b5f8ffdSBrian Somers int
16889b5f8ffdSBrian Somers bundle_HighestState(struct bundle *bundle)
16899b5f8ffdSBrian Somers {
16909b5f8ffdSBrian Somers   struct datalink *dl;
16919b5f8ffdSBrian Somers   int result = DATALINK_CLOSED;
16929b5f8ffdSBrian Somers 
16939b5f8ffdSBrian Somers   for (dl = bundle->links; dl; dl = dl->next)
16949b5f8ffdSBrian Somers     if (result < dl->state)
16959b5f8ffdSBrian Somers       result = dl->state;
16969b5f8ffdSBrian Somers 
16979b5f8ffdSBrian Somers   return result;
16989b5f8ffdSBrian Somers }
1699991c2a7bSBrian Somers 
1700991c2a7bSBrian Somers int
1701991c2a7bSBrian Somers bundle_Exception(struct bundle *bundle, int fd)
1702991c2a7bSBrian Somers {
1703991c2a7bSBrian Somers   struct datalink *dl;
1704991c2a7bSBrian Somers 
1705991c2a7bSBrian Somers   for (dl = bundle->links; dl; dl = dl->next)
1706991c2a7bSBrian Somers     if (dl->physical->fd == fd) {
1707991c2a7bSBrian Somers       datalink_Down(dl, CLOSE_NORMAL);
1708991c2a7bSBrian Somers       return 1;
1709991c2a7bSBrian Somers     }
1710991c2a7bSBrian Somers 
1711991c2a7bSBrian Somers   return 0;
1712991c2a7bSBrian Somers }
17131d1fc017SBrian Somers 
17141d1fc017SBrian Somers void
17151d1fc017SBrian Somers bundle_AdjustFilters(struct bundle *bundle, struct in_addr *my_ip,
17161d1fc017SBrian Somers                      struct in_addr *peer_ip)
17171d1fc017SBrian Somers {
17181d1fc017SBrian Somers   filter_AdjustAddr(&bundle->filter.in, my_ip, peer_ip);
17191d1fc017SBrian Somers   filter_AdjustAddr(&bundle->filter.out, my_ip, peer_ip);
17201d1fc017SBrian Somers   filter_AdjustAddr(&bundle->filter.dial, my_ip, peer_ip);
17211d1fc017SBrian Somers   filter_AdjustAddr(&bundle->filter.alive, my_ip, peer_ip);
17221d1fc017SBrian Somers }
1723