tunnel.c revision 1.3 1 1.3 thorpej /* $NetBSD: tunnel.c,v 1.3 2005/03/19 22:57:06 thorpej Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*
4 1.1 thorpej * Copyright (c) 1983, 1993
5 1.1 thorpej * The Regents of the University of California. All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * Redistribution and use in source and binary forms, with or without
8 1.1 thorpej * modification, are permitted provided that the following conditions
9 1.1 thorpej * are met:
10 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
11 1.1 thorpej * notice, this list of conditions and the following disclaimer.
12 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
14 1.1 thorpej * documentation and/or other materials provided with the distribution.
15 1.1 thorpej * 3. Neither the name of the University nor the names of its contributors
16 1.1 thorpej * may be used to endorse or promote products derived from this software
17 1.1 thorpej * without specific prior written permission.
18 1.1 thorpej *
19 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.1 thorpej * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.1 thorpej * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 1.1 thorpej * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.1 thorpej * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.1 thorpej * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.1 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.1 thorpej * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.1 thorpej * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.1 thorpej * SUCH DAMAGE.
30 1.1 thorpej */
31 1.1 thorpej
32 1.1 thorpej #include <sys/cdefs.h>
33 1.1 thorpej #ifndef lint
34 1.3 thorpej __RCSID("$NetBSD: tunnel.c,v 1.3 2005/03/19 22:57:06 thorpej Exp $");
35 1.1 thorpej #endif /* not lint */
36 1.1 thorpej
37 1.1 thorpej #include <sys/param.h>
38 1.1 thorpej #include <sys/ioctl.h>
39 1.1 thorpej #include <sys/socket.h>
40 1.1 thorpej
41 1.1 thorpej #include <net/if.h>
42 1.1 thorpej
43 1.1 thorpej #ifdef INET6
44 1.1 thorpej #include <netinet/in.h>
45 1.1 thorpej #endif
46 1.1 thorpej
47 1.1 thorpej #include <ctype.h>
48 1.1 thorpej #include <err.h>
49 1.1 thorpej #include <netdb.h>
50 1.1 thorpej #include <string.h>
51 1.1 thorpej #include <stdlib.h>
52 1.1 thorpej #include <stdio.h>
53 1.1 thorpej
54 1.1 thorpej #include "extern.h"
55 1.1 thorpej #include "tunnel.h"
56 1.1 thorpej
57 1.2 yamt #ifdef INET6
58 1.1 thorpej extern void in6_fillscopeid(struct sockaddr_in6 *sin6); /* XXX */
59 1.2 yamt #endif
60 1.1 thorpej
61 1.1 thorpej void
62 1.1 thorpej settunnel(const char *src, const char *dst)
63 1.1 thorpej {
64 1.1 thorpej struct addrinfo hints, *srcres, *dstres;
65 1.1 thorpej int ecode;
66 1.1 thorpej struct if_laddrreq req;
67 1.1 thorpej
68 1.1 thorpej memset(&hints, 0, sizeof(hints));
69 1.1 thorpej hints.ai_family = afp->af_af;
70 1.1 thorpej hints.ai_socktype = SOCK_DGRAM; /*dummy*/
71 1.1 thorpej
72 1.1 thorpej if ((ecode = getaddrinfo(src, NULL, &hints, &srcres)) != 0)
73 1.1 thorpej errx(EXIT_FAILURE, "error in parsing address string: %s",
74 1.1 thorpej gai_strerror(ecode));
75 1.1 thorpej
76 1.1 thorpej if ((ecode = getaddrinfo(dst, NULL, &hints, &dstres)) != 0)
77 1.1 thorpej errx(EXIT_FAILURE, "error in parsing address string: %s",
78 1.1 thorpej gai_strerror(ecode));
79 1.1 thorpej
80 1.1 thorpej if (srcres->ai_addr->sa_family != dstres->ai_addr->sa_family)
81 1.1 thorpej errx(EXIT_FAILURE,
82 1.1 thorpej "source and destination address families do not match");
83 1.1 thorpej
84 1.1 thorpej if (srcres->ai_addrlen > sizeof(req.addr) ||
85 1.1 thorpej dstres->ai_addrlen > sizeof(req.dstaddr))
86 1.1 thorpej errx(EXIT_FAILURE, "invalid sockaddr");
87 1.1 thorpej
88 1.1 thorpej memset(&req, 0, sizeof(req));
89 1.1 thorpej strncpy(req.iflr_name, name, sizeof(req.iflr_name));
90 1.1 thorpej memcpy(&req.addr, srcres->ai_addr, srcres->ai_addrlen);
91 1.1 thorpej memcpy(&req.dstaddr, dstres->ai_addr, dstres->ai_addrlen);
92 1.1 thorpej
93 1.1 thorpej #ifdef INET6
94 1.1 thorpej if (req.addr.ss_family == AF_INET6) {
95 1.1 thorpej struct sockaddr_in6 *s6, *d;
96 1.1 thorpej
97 1.1 thorpej s6 = (struct sockaddr_in6 *)&req.addr;
98 1.1 thorpej d = (struct sockaddr_in6 *)&req.dstaddr;
99 1.1 thorpej if (s6->sin6_scope_id != d->sin6_scope_id) {
100 1.1 thorpej errx(EXIT_FAILURE, "scope mismatch");
101 1.1 thorpej /* NOTREACHED */
102 1.1 thorpej }
103 1.1 thorpej #ifdef __KAME__
104 1.1 thorpej /* embed scopeid */
105 1.1 thorpej if (s6->sin6_scope_id &&
106 1.1 thorpej (IN6_IS_ADDR_LINKLOCAL(&s6->sin6_addr) ||
107 1.1 thorpej IN6_IS_ADDR_MC_LINKLOCAL(&s6->sin6_addr))) {
108 1.1 thorpej *(u_int16_t *)&s6->sin6_addr.s6_addr[2] =
109 1.1 thorpej htons(s6->sin6_scope_id);
110 1.1 thorpej }
111 1.1 thorpej if (d->sin6_scope_id &&
112 1.1 thorpej (IN6_IS_ADDR_LINKLOCAL(&d->sin6_addr) ||
113 1.1 thorpej IN6_IS_ADDR_MC_LINKLOCAL(&d->sin6_addr))) {
114 1.1 thorpej *(u_int16_t *)&d->sin6_addr.s6_addr[2] =
115 1.1 thorpej htons(d->sin6_scope_id);
116 1.1 thorpej }
117 1.1 thorpej #endif /* __KAME__ */
118 1.1 thorpej }
119 1.1 thorpej #endif /* INET6 */
120 1.1 thorpej
121 1.1 thorpej if (ioctl(s, SIOCSLIFPHYADDR, &req) == -1)
122 1.1 thorpej warn("SIOCSLIFPHYADDR");
123 1.1 thorpej
124 1.1 thorpej freeaddrinfo(srcres);
125 1.1 thorpej freeaddrinfo(dstres);
126 1.1 thorpej }
127 1.1 thorpej
128 1.1 thorpej /*ARGSUSED*/
129 1.1 thorpej void
130 1.1 thorpej deletetunnel(const char *ifname, int param)
131 1.1 thorpej {
132 1.1 thorpej
133 1.1 thorpej if (ioctl(s, SIOCDIFPHYADDR, &ifr) == -1)
134 1.1 thorpej err(EXIT_FAILURE, "SIOCDIFPHYADDR");
135 1.1 thorpej }
136 1.1 thorpej
137 1.1 thorpej void
138 1.1 thorpej tunnel_status(void)
139 1.1 thorpej {
140 1.1 thorpej char psrcaddr[NI_MAXHOST];
141 1.1 thorpej char pdstaddr[NI_MAXHOST];
142 1.1 thorpej const int niflag = NI_NUMERICHOST;
143 1.1 thorpej struct if_laddrreq req;
144 1.3 thorpej struct afswtch *lafp;
145 1.1 thorpej
146 1.1 thorpej psrcaddr[0] = pdstaddr[0] = '\0';
147 1.1 thorpej
148 1.1 thorpej memset(&req, 0, sizeof(req));
149 1.1 thorpej strncpy(req.iflr_name, name, IFNAMSIZ);
150 1.1 thorpej if (ioctl(s, SIOCGLIFPHYADDR, &req) == -1)
151 1.1 thorpej return;
152 1.3 thorpej lafp = lookup_af_bynum(req.addr.ss_family);
153 1.1 thorpej #ifdef INET6
154 1.3 thorpej if (req.addr.ss_family == AF_INET6)
155 1.1 thorpej in6_fillscopeid((struct sockaddr_in6 *)&req.addr);
156 1.1 thorpej #endif /* INET6 */
157 1.1 thorpej getnameinfo((struct sockaddr *)&req.addr, req.addr.ss_len,
158 1.1 thorpej psrcaddr, sizeof(psrcaddr), 0, 0, niflag);
159 1.1 thorpej
160 1.1 thorpej #ifdef INET6
161 1.1 thorpej if (req.dstaddr.ss_family == AF_INET6)
162 1.1 thorpej in6_fillscopeid((struct sockaddr_in6 *)&req.dstaddr);
163 1.1 thorpej #endif
164 1.1 thorpej getnameinfo((struct sockaddr *)&req.dstaddr, req.dstaddr.ss_len,
165 1.1 thorpej pdstaddr, sizeof(pdstaddr), 0, 0, niflag);
166 1.1 thorpej
167 1.3 thorpej printf("\ttunnel %s %s --> %s\n", lafp ? lafp->af_name : "???",
168 1.3 thorpej psrcaddr, pdstaddr);
169 1.1 thorpej }
170