summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2007-02-06 10:49:41 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2007-02-06 10:49:41 +0000
commit132be924b5dfc58c2095c55c13384e7ff4453857 (patch)
tree09cec931a15215387d365a8f587ae52cd2cc5669 /sys
parentd852f74247cb83762208d907431676d44bd2c410 (diff)
Change the behaviour of tun(4) on close.
- if the interface was auto-created by opening a /dev/tun* device it will auto-destroy on close. This is comparable to ifconfig tun0 destroy and will remove all routes and addresses associated with the interface. - if the interface was created by ifconfig(8) or hostname.if(5) the interface is persistent -- it is just marked as not running. Especially routes are no longer removed when the interface is closed. This is useful for static setups like the server side of a ssh vpn or static qemu session. This behaviour is more logic then the half done cleanup that is currently done. OK mpf@
Diffstat (limited to 'sys')
-rw-r--r--sys/net/if_tun.c41
-rw-r--r--sys/net/if_tun.h4
2 files changed, 14 insertions, 31 deletions
diff --git a/sys/net/if_tun.c b/sys/net/if_tun.c
index 6659acbde69..d57064f7f53 100644
--- a/sys/net/if_tun.c
+++ b/sys/net/if_tun.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_tun.c,v 1.82 2007/01/26 10:58:47 claudio Exp $ */
+/* $OpenBSD: if_tun.c,v 1.83 2007/02/06 10:49:40 claudio Exp $ */
/* $NetBSD: if_tun.c,v 1.24 1996/05/07 02:40:48 thorpej Exp $ */
/*
@@ -176,7 +176,7 @@ tun_create(struct if_clone *ifc, int unit, int flags)
bzero(tp, sizeof(*tp));
tp->tun_unit = unit;
- tp->tun_flags = TUN_INITED;
+ tp->tun_flags = TUN_INITED|TUN_STAYUP;
/* generate fake MAC address: 00 bd xx xx xx unit_no */
tp->arpcom.ac_enaddr[0] = 0x00;
@@ -317,6 +317,7 @@ tunopen(dev_t dev, int flag, int mode, struct proc *p)
if ((tp = tun_lookup(minor(dev))) == NULL)
return (ENXIO);
+ tp->tun_flags &= ~TUN_STAYUP;
}
if (tp->tun_flags & TUN_OPEN)
@@ -337,7 +338,7 @@ tunopen(dev_t dev, int flag, int mode, struct proc *p)
/*
* tunclose - close the device; if closing the real device, flush pending
- * output and (unless set STAYUP) bring down the interface.
+ * output and unless STAYUP bring down and destroy the interface.
*/
int
tunclose(dev_t dev, int flag, int mode, struct proc *p)
@@ -360,34 +361,16 @@ tunclose(dev_t dev, int flag, int mode, struct proc *p)
IFQ_PURGE(&ifp->if_snd);
splx(s);
- if ((ifp->if_flags & IFF_UP) && !(tp->tun_flags & TUN_STAYUP)) {
- s = splnet();
- if_down(ifp);
- if (ifp->if_flags & IFF_RUNNING) {
- /* find internet addresses and delete routes */
- struct ifaddr *ifa = NULL;
-
- TAILQ_FOREACH(ifa, &ifp->if_addrlist, ifa_list) {
-#ifdef INET
- if (ifa->ifa_addr->sa_family == AF_INET) {
- rtinit(ifa, (int)RTM_DELETE,
- (tp->tun_flags & TUN_DSTADDR)?
- RTF_HOST : 0);
- }
- /* XXX INET6 */
-#endif
- }
+ TUNDEBUG(("%s: closed\n", ifp->if_xname));
- rt_if_remove(ifp);
- ifp->if_flags &= ~IFF_RUNNING;
- }
- splx(s);
+ if (!(tp->tun_flags & TUN_STAYUP))
+ return (if_clone_destroy(ifp->if_xname));
+ else {
+ tp->tun_pgid = 0;
+ selwakeup(&tp->tun_rsel);
+ KNOTE(&tp->tun_rsel.si_note, 0);
}
- tp->tun_pgid = 0;
- selwakeup(&tp->tun_rsel);
- KNOTE(&tp->tun_rsel.si_note, 0);
- TUNDEBUG(("%s: closed\n", ifp->if_xname));
return (0);
}
@@ -554,7 +537,7 @@ tun_output(struct ifnet *ifp, struct mbuf *m0, struct sockaddr *dst,
int s, len, error;
u_int32_t *af;
- if (!(ifp->if_flags & IFF_UP)) {
+ if ((ifp->if_flags & (IFF_UP|IFF_RUNNING)) != (IFF_UP|IFF_RUNNING)) {
m_freem(m0);
return (EHOSTDOWN);
}
diff --git a/sys/net/if_tun.h b/sys/net/if_tun.h
index 4e06b14171a..eea043e2596 100644
--- a/sys/net/if_tun.h
+++ b/sys/net/if_tun.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_tun.h,v 1.14 2006/08/20 16:13:26 stevesk Exp $ */
+/* $OpenBSD: if_tun.h,v 1.15 2007/02/06 10:49:40 claudio Exp $ */
/*
* Copyright (c) 1988, Julian Onions <Julian.Onions@nexor.co.uk>
@@ -33,7 +33,7 @@
#define TUN_OPEN 0x0001
#define TUN_INITED 0x0002
-#define TUN_RCOLL 0x0004
+#define TUN_RCOLL 0x0004 /* unused */
#define TUN_IASET 0x0008
#define TUN_DSTADDR 0x0010
#define TUN_RWAIT 0x0040