if_faith.c revision 1.59 1 1.59 msaitoh /* $NetBSD: if_faith.c,v 1.59 2018/06/26 06:48:02 msaitoh Exp $ */
2 1.19 itojun /* $KAME: if_faith.c,v 1.21 2001/02/20 07:59:26 itojun Exp $ */
3 1.6 itojun
4 1.2 itojun /*
5 1.2 itojun * Copyright (c) 1982, 1986, 1993
6 1.2 itojun * The Regents of the University of California. All rights reserved.
7 1.2 itojun *
8 1.2 itojun * Redistribution and use in source and binary forms, with or without
9 1.2 itojun * modification, are permitted provided that the following conditions
10 1.2 itojun * are met:
11 1.2 itojun * 1. Redistributions of source code must retain the above copyright
12 1.2 itojun * notice, this list of conditions and the following disclaimer.
13 1.2 itojun * 2. Redistributions in binary form must reproduce the above copyright
14 1.2 itojun * notice, this list of conditions and the following disclaimer in the
15 1.2 itojun * documentation and/or other materials provided with the distribution.
16 1.26 agc * 3. Neither the name of the University nor the names of its contributors
17 1.2 itojun * may be used to endorse or promote products derived from this software
18 1.2 itojun * without specific prior written permission.
19 1.2 itojun *
20 1.2 itojun * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 1.2 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 1.2 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 1.2 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 1.2 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 1.2 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 1.2 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 1.2 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 1.2 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 1.2 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 1.2 itojun * SUCH DAMAGE.
31 1.2 itojun */
32 1.2 itojun /*
33 1.19 itojun * derived from
34 1.2 itojun * @(#)if_loop.c 8.1 (Berkeley) 6/10/93
35 1.2 itojun * Id: if_loop.c,v 1.22 1996/06/19 16:24:10 wollman Exp
36 1.2 itojun */
37 1.2 itojun
38 1.2 itojun /*
39 1.34 rpaulo * IPv6-to-IPv4 TCP relay capturing interface
40 1.2 itojun */
41 1.22 lukem
42 1.22 lukem #include <sys/cdefs.h>
43 1.59 msaitoh __KERNEL_RCSID(0, "$NetBSD: if_faith.c,v 1.59 2018/06/26 06:48:02 msaitoh Exp $");
44 1.22 lukem
45 1.54 christos #ifdef _KERNEL_OPT
46 1.2 itojun #include "opt_inet.h"
47 1.54 christos #endif
48 1.2 itojun
49 1.24 thorpej #include <sys/param.h>
50 1.2 itojun #include <sys/systm.h>
51 1.2 itojun #include <sys/kernel.h>
52 1.2 itojun #include <sys/mbuf.h>
53 1.2 itojun #include <sys/socket.h>
54 1.2 itojun #include <sys/errno.h>
55 1.2 itojun #include <sys/ioctl.h>
56 1.2 itojun #include <sys/time.h>
57 1.12 thorpej #include <sys/queue.h>
58 1.54 christos #include <sys/device.h>
59 1.54 christos #include <sys/module.h>
60 1.54 christos #include <sys/atomic.h>
61 1.12 thorpej
62 1.40 ad #include <sys/cpu.h>
63 1.2 itojun
64 1.2 itojun #include <net/if.h>
65 1.2 itojun #include <net/if_types.h>
66 1.2 itojun #include <net/netisr.h>
67 1.2 itojun #include <net/route.h>
68 1.2 itojun #include <net/bpf.h>
69 1.19 itojun #include <net/if_faith.h>
70 1.2 itojun
71 1.2 itojun #ifdef INET
72 1.2 itojun #include <netinet/in.h>
73 1.2 itojun #include <netinet/in_systm.h>
74 1.2 itojun #include <netinet/in_var.h>
75 1.2 itojun #include <netinet/ip.h>
76 1.2 itojun #endif
77 1.2 itojun
78 1.2 itojun #ifdef INET6
79 1.2 itojun #ifndef INET
80 1.2 itojun #include <netinet/in.h>
81 1.2 itojun #endif
82 1.2 itojun #include <netinet6/in6_var.h>
83 1.10 itojun #include <netinet/ip6.h>
84 1.19 itojun #include <netinet6/ip6_var.h>
85 1.2 itojun #endif
86 1.2 itojun
87 1.51 christos #include "ioconf.h"
88 1.51 christos
89 1.39 christos static int faithioctl(struct ifnet *, u_long, void *);
90 1.38 dyoung static int faithoutput(struct ifnet *, struct mbuf *,
91 1.52 ozaki const struct sockaddr *, const struct rtentry *);
92 1.44 dyoung static void faithrtrequest(int, struct rtentry *,
93 1.44 dyoung const struct rt_addrinfo *);
94 1.2 itojun
95 1.32 thorpej static int faith_clone_create(struct if_clone *, int);
96 1.32 thorpej static int faith_clone_destroy(struct ifnet *);
97 1.12 thorpej
98 1.32 thorpej static struct if_clone faith_cloner =
99 1.12 thorpej IF_CLONE_INITIALIZER("faith", faith_clone_create, faith_clone_destroy);
100 1.2 itojun
101 1.2 itojun #define FAITHMTU 1500
102 1.2 itojun
103 1.54 christos static u_int faith_count;
104 1.54 christos
105 1.2 itojun /* ARGSUSED */
106 1.2 itojun void
107 1.37 christos faithattach(int count)
108 1.2 itojun {
109 1.2 itojun
110 1.54 christos /*
111 1.54 christos * Nothing to do here, initialization is handled by the
112 1.54 christos * module initialization code in faithinit() below).
113 1.54 christos */
114 1.54 christos }
115 1.54 christos
116 1.54 christos static void
117 1.54 christos faithinit(void)
118 1.54 christos {
119 1.12 thorpej if_clone_attach(&faith_cloner);
120 1.12 thorpej }
121 1.12 thorpej
122 1.32 thorpej static int
123 1.54 christos faithdetach(void)
124 1.54 christos {
125 1.54 christos int error = 0;
126 1.54 christos
127 1.54 christos if (faith_count != 0)
128 1.54 christos error = EBUSY;
129 1.54 christos
130 1.54 christos if (error == 0)
131 1.54 christos if_clone_detach(&faith_cloner);
132 1.54 christos
133 1.54 christos return error;
134 1.54 christos }
135 1.54 christos
136 1.54 christos static int
137 1.32 thorpej faith_clone_create(struct if_clone *ifc, int unit)
138 1.12 thorpej {
139 1.35 peter struct ifnet *ifp;
140 1.56 msaitoh int rv;
141 1.12 thorpej
142 1.43 christos ifp = if_alloc(IFT_FAITH);
143 1.12 thorpej
144 1.42 christos if_initname(ifp, ifc->ifc_name, unit);
145 1.12 thorpej
146 1.35 peter ifp->if_mtu = FAITHMTU;
147 1.12 thorpej /* Change to BROADCAST experimentaly to announce its prefix. */
148 1.35 peter ifp->if_flags = /* IFF_LOOPBACK */ IFF_BROADCAST | IFF_MULTICAST;
149 1.35 peter ifp->if_ioctl = faithioctl;
150 1.35 peter ifp->if_output = faithoutput;
151 1.35 peter ifp->if_type = IFT_FAITH;
152 1.35 peter ifp->if_hdrlen = 0;
153 1.35 peter ifp->if_addrlen = 0;
154 1.35 peter ifp->if_dlt = DLT_NULL;
155 1.56 msaitoh rv = if_attach(ifp);
156 1.56 msaitoh if (rv != 0) {
157 1.56 msaitoh if_free(ifp);
158 1.56 msaitoh return rv;
159 1.56 msaitoh }
160 1.35 peter if_alloc_sadl(ifp);
161 1.47 joerg bpf_attach(ifp, DLT_NULL, sizeof(u_int));
162 1.54 christos atomic_inc_uint(&faith_count);
163 1.12 thorpej return (0);
164 1.12 thorpej }
165 1.12 thorpej
166 1.30 peter int
167 1.32 thorpej faith_clone_destroy(struct ifnet *ifp)
168 1.12 thorpej {
169 1.12 thorpej
170 1.47 joerg bpf_detach(ifp);
171 1.12 thorpej if_detach(ifp);
172 1.50 ozaki if_free(ifp);
173 1.30 peter
174 1.54 christos atomic_dec_uint(&faith_count);
175 1.30 peter return (0);
176 1.2 itojun }
177 1.2 itojun
178 1.38 dyoung static int
179 1.38 dyoung faithoutput(struct ifnet *ifp, struct mbuf *m, const struct sockaddr *dst,
180 1.52 ozaki const struct rtentry *rt)
181 1.2 itojun {
182 1.48 rmind pktqueue_t *pktq;
183 1.48 rmind size_t pktlen;
184 1.48 rmind int s, error;
185 1.38 dyoung uint32_t af;
186 1.2 itojun
187 1.2 itojun if ((m->m_flags & M_PKTHDR) == 0)
188 1.2 itojun panic("faithoutput no HDR");
189 1.38 dyoung af = dst->sa_family;
190 1.2 itojun /* BPF write needs to be handled specially */
191 1.38 dyoung if (af == AF_UNSPEC) {
192 1.38 dyoung af = *(mtod(m, int *));
193 1.38 dyoung m_adj(m, sizeof(int));
194 1.2 itojun }
195 1.2 itojun
196 1.59 msaitoh bpf_mtap_af(ifp, af, m, BPF_D_OUT);
197 1.2 itojun
198 1.2 itojun if (rt && rt->rt_flags & (RTF_REJECT|RTF_BLACKHOLE)) {
199 1.2 itojun m_freem(m);
200 1.2 itojun return (rt->rt_flags & RTF_BLACKHOLE ? 0 :
201 1.2 itojun rt->rt_flags & RTF_HOST ? EHOSTUNREACH : ENETUNREACH);
202 1.2 itojun }
203 1.48 rmind pktlen = m->m_pkthdr.len;
204 1.2 itojun ifp->if_opackets++;
205 1.48 rmind ifp->if_obytes += pktlen;
206 1.38 dyoung switch (af) {
207 1.7 itojun #ifdef INET
208 1.7 itojun case AF_INET:
209 1.48 rmind pktq = ip_pktq;
210 1.7 itojun break;
211 1.7 itojun #endif
212 1.2 itojun #ifdef INET6
213 1.2 itojun case AF_INET6:
214 1.48 rmind pktq = ip6_pktq;
215 1.2 itojun break;
216 1.2 itojun #endif
217 1.2 itojun default:
218 1.2 itojun m_freem(m);
219 1.2 itojun return EAFNOSUPPORT;
220 1.2 itojun }
221 1.2 itojun
222 1.2 itojun /* XXX do we need more sanity checks? */
223 1.48 rmind KASSERT(pktq != NULL);
224 1.53 ozaki m_set_rcvif(m, ifp);
225 1.2 itojun
226 1.18 thorpej s = splnet();
227 1.48 rmind if (__predict_true(pktq_enqueue(pktq, m, 0))) {
228 1.48 rmind ifp->if_ipackets++;
229 1.48 rmind ifp->if_ibytes += pktlen;
230 1.48 rmind error = 0;
231 1.48 rmind } else {
232 1.2 itojun m_freem(m);
233 1.48 rmind error = ENOBUFS;
234 1.2 itojun }
235 1.2 itojun splx(s);
236 1.48 rmind
237 1.48 rmind return error;
238 1.2 itojun }
239 1.2 itojun
240 1.2 itojun /* ARGSUSED */
241 1.2 itojun static void
242 1.37 christos faithrtrequest(int cmd, struct rtentry *rt,
243 1.44 dyoung const struct rt_addrinfo *info)
244 1.2 itojun {
245 1.25 itojun if (rt)
246 1.2 itojun rt->rt_rmx.rmx_mtu = rt->rt_ifp->if_mtu; /* for ISO */
247 1.2 itojun }
248 1.2 itojun
249 1.2 itojun /*
250 1.2 itojun * Process an ioctl request.
251 1.2 itojun */
252 1.2 itojun /* ARGSUSED */
253 1.2 itojun static int
254 1.39 christos faithioctl(struct ifnet *ifp, u_long cmd, void *data)
255 1.2 itojun {
256 1.11 augustss struct ifaddr *ifa;
257 1.11 augustss struct ifreq *ifr = (struct ifreq *)data;
258 1.11 augustss int error = 0;
259 1.2 itojun
260 1.2 itojun switch (cmd) {
261 1.2 itojun
262 1.45 dyoung case SIOCINITIFADDR:
263 1.2 itojun ifa = (struct ifaddr *)data;
264 1.2 itojun ifa->ifa_rtrequest = faithrtrequest;
265 1.57 ozaki ifp->if_flags |= IFF_UP | IFF_RUNNING;
266 1.2 itojun /*
267 1.2 itojun * Everything else is done at a higher level.
268 1.2 itojun */
269 1.2 itojun break;
270 1.2 itojun
271 1.2 itojun case SIOCADDMULTI:
272 1.2 itojun case SIOCDELMULTI:
273 1.2 itojun if (ifr == 0) {
274 1.2 itojun error = EAFNOSUPPORT; /* XXX */
275 1.2 itojun break;
276 1.2 itojun }
277 1.2 itojun switch (ifr->ifr_addr.sa_family) {
278 1.7 itojun #ifdef INET
279 1.7 itojun case AF_INET:
280 1.7 itojun break;
281 1.7 itojun #endif
282 1.2 itojun #ifdef INET6
283 1.2 itojun case AF_INET6:
284 1.2 itojun break;
285 1.2 itojun #endif
286 1.2 itojun
287 1.2 itojun default:
288 1.2 itojun error = EAFNOSUPPORT;
289 1.2 itojun break;
290 1.2 itojun }
291 1.2 itojun break;
292 1.2 itojun
293 1.45 dyoung default:
294 1.41 dyoung if ((error = ifioctl_common(ifp, cmd, data)) == ENETRESET)
295 1.41 dyoung error = 0;
296 1.2 itojun break;
297 1.2 itojun }
298 1.2 itojun return (error);
299 1.19 itojun }
300 1.19 itojun
301 1.33 christos #ifdef INET6
302 1.19 itojun /*
303 1.19 itojun * XXX could be slow
304 1.19 itojun * XXX could be layer violation to call sys/net from sys/netinet6
305 1.19 itojun */
306 1.19 itojun int
307 1.32 thorpej faithprefix(struct in6_addr *in6)
308 1.19 itojun {
309 1.19 itojun struct rtentry *rt;
310 1.19 itojun struct sockaddr_in6 sin6;
311 1.19 itojun int ret;
312 1.19 itojun
313 1.19 itojun if (ip6_keepfaith == 0)
314 1.19 itojun return 0;
315 1.19 itojun
316 1.21 thorpej memset(&sin6, 0, sizeof(sin6));
317 1.19 itojun sin6.sin6_family = AF_INET6;
318 1.19 itojun sin6.sin6_len = sizeof(struct sockaddr_in6);
319 1.19 itojun sin6.sin6_addr = *in6;
320 1.19 itojun rt = rtalloc1((struct sockaddr *)&sin6, 0);
321 1.19 itojun if (rt && rt->rt_ifp && rt->rt_ifp->if_type == IFT_FAITH &&
322 1.19 itojun (rt->rt_ifp->if_flags & IFF_UP) != 0)
323 1.19 itojun ret = 1;
324 1.19 itojun else
325 1.19 itojun ret = 0;
326 1.19 itojun if (rt)
327 1.55 ozaki rt_unref(rt);
328 1.19 itojun return ret;
329 1.2 itojun }
330 1.33 christos #endif
331 1.54 christos
332 1.54 christos /*
333 1.54 christos * Module infrastructure
334 1.54 christos */
335 1.54 christos #include "if_module.h"
336 1.54 christos
337 1.54 christos IF_MODULE(MODULE_CLASS_DRIVER, faith, "")
338