diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-01-15 23:56:25 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-01-15 23:56:25 +0000 |
commit | bc968974d4689a0484942cde873ee7204634184f (patch) | |
tree | deb32b77e6821cebd39f3625771581dcebe36367 /sbin | |
parent | cb1bb5b559eca734d02ba1da6bb874fe96f3c8f3 (diff) |
Add "giftunnel" keyword, obsoleting gifconfig(8).
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/ifconfig/ifconfig.8 | 11 | ||||
-rw-r--r-- | sbin/ifconfig/ifconfig.c | 128 |
2 files changed, 136 insertions, 3 deletions
diff --git a/sbin/ifconfig/ifconfig.8 b/sbin/ifconfig/ifconfig.8 index ab016671500..1d2a053c4fd 100644 --- a/sbin/ifconfig/ifconfig.8 +++ b/sbin/ifconfig/ifconfig.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ifconfig.8,v 1.36 2000/01/15 20:11:14 angelos Exp $ +.\" $OpenBSD: ifconfig.8,v 1.37 2000/01/15 23:56:24 angelos Exp $ .\" $NetBSD: ifconfig.8,v 1.11 1996/01/04 21:27:29 pk Exp $ .\" $FreeBSD: ifconfig.8,v 1.16 1998/02/01 07:03:29 steve Exp $ .\" @@ -239,6 +239,15 @@ part of the SA have to be set to zero). Only one SA may be bound to an interface at a time. SAs may not be bound to the .Dq enc0 interface. +.It Cm giftunnel +Set the source and destination tunnel addresses on a +.Xr gif 4 +interface. Packets routed to this interface will be encapsulated in +IPv4 or IPv6, depending on the source and destination address +families. Both addresses must be of the same family. This flag +obsoletes the old +.Nm gifconfig +command. .It Cm ipdst This is used to specify an Internet host who is willing to receive ip packets encapsulating NS packets bound for a remote network. diff --git a/sbin/ifconfig/ifconfig.c b/sbin/ifconfig/ifconfig.c index 79d813ea3c0..0242f8a71a4 100644 --- a/sbin/ifconfig/ifconfig.c +++ b/sbin/ifconfig/ifconfig.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ifconfig.c,v 1.27 2000/01/09 05:56:58 angelos Exp $ */ +/* $OpenBSD: ifconfig.c,v 1.28 2000/01/15 23:56:24 angelos Exp $ */ /* $NetBSD: ifconfig.c,v 1.40 1997/10/01 02:19:43 enami Exp $ */ /* @@ -81,7 +81,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)ifconfig.c 8.2 (Berkeley) 2/16/94"; #else -static char rcsid[] = "$OpenBSD: ifconfig.c,v 1.27 2000/01/09 05:56:58 angelos Exp $"; +static char rcsid[] = "$OpenBSD: ifconfig.c,v 1.28 2000/01/15 23:56:24 angelos Exp $"; #endif #endif /* not lint */ @@ -165,6 +165,7 @@ void setsnpaoffset __P((char *)); void setipxframetype __P((char *, int)); void setatrange __P((char *, int)); void setatphase __P((char *, int)); +void gifsettunnel __P((char *, char *)); void dstsa __P((char *)); void srcsa __P((char *)); void clearsa __P((char *)); @@ -202,6 +203,7 @@ int actions; /* Actions performed */ #define A_MEDIAINST 0x0008 /* instance or inst command */ #define NEXTARG 0xffffff +#define NEXTARG2 0xfffffe struct cmd { char *c_name; @@ -249,6 +251,7 @@ struct cmd { { "snap", ETHERTYPE_SNAP, 0, setipxframetype }, { "EtherII", ETHERTYPE_II, 0, setipxframetype }, #endif /* INET_ONLY */ + { "giftunnel", NEXTARG2, 0, gifsettunnel } , { "dstsa", NEXTARG, 0, dstsa } , { "srcsa", NEXTARG, 0, srcsa } , { "clearsa", NEXTARG, 0, clearsa } , @@ -428,6 +431,14 @@ main(argc, argv) p->c_name); (*p->c_func)(argv[1]); argc--, argv++; + } else if (p->c_parameter == NEXTARG2) { + if ((argv[1] == NULL) || + (argv[2] == NULL)) + errx(1, "'%s' requires 2 arguments", + p->c_name); + (*p->c_func)(argv[1], argv[2]); + argc -= 2; + argv += 2; } else (*p->c_func)(*argv, p->c_parameter); actions |= p->c_action; @@ -643,6 +654,68 @@ setifaddr(addr, param) (*afp->af_getaddr)(addr, (doalias >= 0 ? ADDR : RIDADDR)); } +void +gifsettunnel(src, dst) + char *src; + char *dst; +{ + struct addrinfo *srcres, *dstres; + struct ifaliasreq addreq; + int ecode; + +#ifdef INET6 + struct in6_aliasreq in6_addreq; +#endif /* INET6 */ + + if ((ecode = getaddrinfo(src, NULL, NULL, &srcres)) != 0) + errx(1, "error in parsing address string: %s", + gai_strerror(ecode)); + + if ((ecode = getaddrinfo(dst, NULL, NULL, &dstres)) != 0) + errx(1, "error in parsing address string: %s", + gai_strerror(ecode)); + + if (srcres->ai_addr->sa_family != dstres->ai_addr->sa_family) + errx(1, + "source and destination address families do not match"); + + switch (srcres->ai_addr->sa_family) + { + case AF_INET: + bzero(&addreq, sizeof(addreq)); + strncpy(addreq.ifra_name, name, IFNAMSIZ); + bcopy(srcres->ai_addr, &addreq.ifra_addr, + srcres->ai_addr->sa_len); + bcopy(dstres->ai_addr, &addreq.ifra_dstaddr, + dstres->ai_addr->sa_len); + + if (ioctl(s, SIOCSIFPHYADDR, (struct ifreq *) &addreq) < 0) + warn("SIOCSIFPHYADDR"); + break; + +#ifdef INET6 + case AF_INET6: + bzero(&in6_addreq, sizeof(in6_addreq)); + strncpy(in6_addreq.ifra_name, name, IFNAMSIZ); + bcopy(srcres->ai_addr, &in6_addreq.ifra_addr, + srcres->ai_addr->sa_len); + bcopy(dstres->ai_addr, &in6_addreq.ifra_dstaddr, + dstres->ai_addr->sa_len); + + if (ioctl(s, SIOCSIFPHYADDR_IN6, + (struct ifreq *) &in6_addreq) < 0) + warn("SIOCSIFPHYADDR"); + break; +#endif /* INET6 */ + + default: + warn("address family not supported"); + } + + freeaddrinfo(srcres); + freeaddrinfo(dstres); +} + static void handlesa(cmd, sa) int cmd; @@ -1172,6 +1245,53 @@ print_media_word(ifmw, print_type, as_syntax) "\020\1UP\2BROADCAST\3DEBUG\4LOOPBACK\5POINTOPOINT\6NOTRAILERS\7RUNNING\10NOARP\ \11PROMISC\12ALLMULTI\13OACTIVE\14SIMPLEX\15LINK0\16LINK1\17LINK2\20MULTICAST" +static void +phys_status(force) + int force; +{ + char psrcaddr[NI_MAXHOST]; + char pdstaddr[NI_MAXHOST]; + u_long srccmd, dstcmd; + struct ifreq *ifrp; + char *ver = ""; + +#ifdef INET6 + struct in6_ifreq in6_ifr; +#endif /* INET6 */ + + force = 0; /*fool gcc*/ + psrcaddr[0] = pdstaddr[0] = '\0'; + +#ifdef INET6 + bzero(&in6_ifr, sizeof(in6_ifr)); + strncpy(in6_ifr.ifr_name, name, IFNAMSIZ); + srccmd = SIOCGIFPSRCADDR_IN6; + dstcmd = SIOCGIFPDSTADDR_IN6; + ifrp = (struct ifreq *) &in6_ifr; +#else /* INET6 */ + ifrp = ifr; + srccmd = SIOCGIFPSRCADDR; + dstcmd = SIOCGIFPDSTADDR; +#endif /* INET6 */ + + if (0 <= ioctl(s, srccmd, (caddr_t)ifrp)) { + getnameinfo(&ifrp->ifr_addr, ifrp->ifr_addr.sa_len, + psrcaddr, NI_MAXHOST, 0, 0, NI_NUMERICHOST); +#ifdef INET6 + if (ifrp->ifr_addr.sa_family == AF_INET6) + ver = "6"; +#endif /* INET6 */ + + if (0 <= ioctl(s, dstcmd, (caddr_t)ifrp)) + getnameinfo(&ifrp->ifr_addr, ifrp->ifr_addr.sa_len, + pdstaddr, NI_MAXHOST, 0, 0, + NI_NUMERICHOST); + + printf("\tphysical address inet%s %s --> %s\n", ver, + psrcaddr, pdstaddr); + } +} + /* * Print the status of the interface. If an address family was * specified, show it and it only; otherwise, show them all. @@ -1269,8 +1389,11 @@ status(link) (*p->af_status)(0); } } + + phys_status(0); } + void in_status(force) int force; @@ -2006,6 +2129,7 @@ usage() "\t[ dstsa address/spi/protocol ]\n" "\t[ srcsa address/spi/protocol ]\n" "\t[ clearsa address/spi/protocol ]\n" + "\t[ giftunnel srcaddress dstaddress ]\n" "\t[ arp | -arp ]\n" "\t[ -802.2 | -802.3 | -802.2tr | -snap | -EtherII ]\n" "\t[ link0 | -link0 ] [ link1 | -link1 ] [ link2 | -link2 ]\n" |