if_gif.c revision 1.17 1 1.17 martin /* $NetBSD: if_gif.c,v 1.17 2000/11/19 18:48:45 martin Exp $ */
2 1.16 itojun /* $KAME: if_gif.c,v 1.34 2000/10/07 03:58:53 itojun Exp $ */
3 1.3 itojun
4 1.2 itojun /*
5 1.2 itojun * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 1.2 itojun * All rights reserved.
7 1.9 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.2 itojun * 3. Neither the name of the project 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.9 itojun *
20 1.2 itojun * THIS SOFTWARE IS PROVIDED BY THE PROJECT 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 PROJECT 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.2 itojun #include "opt_inet.h"
34 1.2 itojun
35 1.2 itojun #include <sys/param.h>
36 1.2 itojun #include <sys/systm.h>
37 1.2 itojun #include <sys/kernel.h>
38 1.2 itojun #include <sys/mbuf.h>
39 1.2 itojun #include <sys/socket.h>
40 1.2 itojun #include <sys/sockio.h>
41 1.2 itojun #include <sys/errno.h>
42 1.2 itojun #include <sys/ioctl.h>
43 1.2 itojun #include <sys/time.h>
44 1.2 itojun #include <sys/syslog.h>
45 1.17 martin #include <sys/proc.h>
46 1.9 itojun #include <sys/protosw.h>
47 1.2 itojun #include <machine/cpu.h>
48 1.2 itojun
49 1.2 itojun #include <net/if.h>
50 1.2 itojun #include <net/if_types.h>
51 1.2 itojun #include <net/netisr.h>
52 1.2 itojun #include <net/route.h>
53 1.2 itojun #include <net/bpf.h>
54 1.2 itojun
55 1.2 itojun #include <netinet/in.h>
56 1.2 itojun #include <netinet/in_systm.h>
57 1.15 itojun #include <netinet/ip.h>
58 1.15 itojun #ifdef INET
59 1.2 itojun #include <netinet/in_var.h>
60 1.2 itojun #include <netinet/in_gif.h>
61 1.2 itojun #endif /* INET */
62 1.2 itojun
63 1.2 itojun #ifdef INET6
64 1.2 itojun #ifndef INET
65 1.2 itojun #include <netinet/in.h>
66 1.2 itojun #endif
67 1.2 itojun #include <netinet6/in6_var.h>
68 1.2 itojun #include <netinet/ip6.h>
69 1.2 itojun #include <netinet6/ip6_var.h>
70 1.2 itojun #include <netinet6/in6_gif.h>
71 1.9 itojun #include <netinet6/ip6protosw.h>
72 1.2 itojun #endif /* INET6 */
73 1.2 itojun
74 1.9 itojun #include <netinet/ip_encap.h>
75 1.2 itojun #include <net/if_gif.h>
76 1.2 itojun
77 1.2 itojun #include "gif.h"
78 1.2 itojun #include "bpfilter.h"
79 1.2 itojun
80 1.4 itojun #include <net/net_osdep.h>
81 1.4 itojun
82 1.2 itojun #if NGIF > 0
83 1.2 itojun
84 1.4 itojun void gifattach __P((int));
85 1.9 itojun static int gif_encapcheck __P((const struct mbuf *, int, int, void *));
86 1.9 itojun #ifdef INET
87 1.9 itojun extern struct protosw in_gif_protosw;
88 1.9 itojun #endif
89 1.9 itojun #ifdef INET6
90 1.9 itojun extern struct ip6protosw in6_gif_protosw;
91 1.9 itojun #endif
92 1.2 itojun
93 1.2 itojun /*
94 1.2 itojun * gif global variable definitions
95 1.2 itojun */
96 1.12 thorpej LIST_HEAD(, gif_softc) gif_softc_list;
97 1.12 thorpej
98 1.12 thorpej int gif_clone_create __P((struct if_clone *, int));
99 1.12 thorpej void gif_clone_destroy __P((struct ifnet *));
100 1.12 thorpej
101 1.12 thorpej struct if_clone gif_cloner =
102 1.12 thorpej IF_CLONE_INITIALIZER("gif", gif_clone_create, gif_clone_destroy);
103 1.12 thorpej
104 1.12 thorpej void gif_delete_tunnel __P((struct gif_softc *));
105 1.9 itojun
106 1.9 itojun #ifndef MAX_GIF_NEST
107 1.9 itojun /*
108 1.9 itojun * This macro controls the upper limitation on nesting of gif tunnels.
109 1.9 itojun * Since, setting a large value to this macro with a careless configuration
110 1.9 itojun * may introduce system crash, we don't allow any nestings by default.
111 1.9 itojun * If you need to configure nested gif tunnels, you can define this macro
112 1.9 itojun * in your kernel configuration file. However, if you do so, please be
113 1.9 itojun * careful to configure the tunnels so that it won't make a loop.
114 1.9 itojun */
115 1.9 itojun #define MAX_GIF_NEST 1
116 1.9 itojun #endif
117 1.9 itojun static int max_gif_nesting = MAX_GIF_NEST;
118 1.2 itojun
119 1.12 thorpej /* ARGSUSED */
120 1.2 itojun void
121 1.12 thorpej gifattach(count)
122 1.12 thorpej int count;
123 1.12 thorpej {
124 1.12 thorpej
125 1.12 thorpej LIST_INIT(&gif_softc_list);
126 1.12 thorpej if_clone_attach(&gif_cloner);
127 1.12 thorpej }
128 1.12 thorpej
129 1.12 thorpej int
130 1.12 thorpej gif_clone_create(ifc, unit)
131 1.12 thorpej struct if_clone *ifc;
132 1.12 thorpej int unit;
133 1.2 itojun {
134 1.12 thorpej struct gif_softc *sc;
135 1.12 thorpej
136 1.12 thorpej sc = malloc(sizeof(struct gif_softc), M_DEVBUF, M_WAIT);
137 1.12 thorpej bzero(sc, sizeof(struct gif_softc));
138 1.2 itojun
139 1.12 thorpej sprintf(sc->gif_if.if_xname, "%s%d", ifc->ifc_name, unit);
140 1.9 itojun
141 1.12 thorpej sc->encap_cookie4 = sc->encap_cookie6 = NULL;
142 1.9 itojun #ifdef INET
143 1.12 thorpej sc->encap_cookie4 = encap_attach_func(AF_INET, -1,
144 1.12 thorpej gif_encapcheck, &in_gif_protosw, sc);
145 1.12 thorpej if (sc->encap_cookie4 == NULL) {
146 1.12 thorpej printf("%s: unable to attach encap4\n", if_name(&sc->gif_if));
147 1.13 thorpej free(sc, M_DEVBUF);
148 1.12 thorpej return (EIO); /* XXX */
149 1.12 thorpej }
150 1.9 itojun #endif
151 1.9 itojun #ifdef INET6
152 1.12 thorpej sc->encap_cookie6 = encap_attach_func(AF_INET6, -1,
153 1.12 thorpej gif_encapcheck, (struct protosw *)&in6_gif_protosw, sc);
154 1.12 thorpej if (sc->encap_cookie6 == NULL) {
155 1.12 thorpej if (sc->encap_cookie4) {
156 1.12 thorpej encap_detach(sc->encap_cookie4);
157 1.12 thorpej sc->encap_cookie4 = NULL;
158 1.9 itojun }
159 1.12 thorpej printf("%s: unable to attach encap6\n", if_name(&sc->gif_if));
160 1.13 thorpej free(sc, M_DEVBUF);
161 1.12 thorpej return (EIO); /* XXX */
162 1.12 thorpej }
163 1.9 itojun #endif
164 1.9 itojun
165 1.12 thorpej sc->gif_if.if_mtu = GIF_MTU;
166 1.12 thorpej sc->gif_if.if_flags = IFF_POINTOPOINT | IFF_MULTICAST;
167 1.12 thorpej sc->gif_if.if_ioctl = gif_ioctl;
168 1.12 thorpej sc->gif_if.if_output = gif_output;
169 1.12 thorpej sc->gif_if.if_type = IFT_GIF;
170 1.12 thorpej if_attach(&sc->gif_if);
171 1.2 itojun #if NBPFILTER > 0
172 1.9 itojun #ifdef HAVE_OLD_BPF
173 1.12 thorpej bpfattach(&sc->gif_if, DLT_NULL, sizeof(u_int));
174 1.9 itojun #else
175 1.12 thorpej bpfattach(&sc->gif_if.if_bpf, &sc->gif_if, DLT_NULL, sizeof(u_int));
176 1.2 itojun #endif
177 1.9 itojun #endif
178 1.12 thorpej LIST_INSERT_HEAD(&gif_softc_list, sc, gif_list);
179 1.12 thorpej return (0);
180 1.12 thorpej }
181 1.12 thorpej
182 1.12 thorpej void
183 1.12 thorpej gif_clone_destroy(ifp)
184 1.12 thorpej struct ifnet *ifp;
185 1.12 thorpej {
186 1.12 thorpej struct gif_softc *sc = (void *) ifp;
187 1.12 thorpej
188 1.12 thorpej gif_delete_tunnel(sc);
189 1.12 thorpej LIST_REMOVE(sc, gif_list);
190 1.12 thorpej #ifdef INET6
191 1.12 thorpej encap_detach(sc->encap_cookie6);
192 1.12 thorpej #endif
193 1.12 thorpej #ifdef INET
194 1.12 thorpej encap_detach(sc->encap_cookie4);
195 1.12 thorpej #endif
196 1.12 thorpej
197 1.12 thorpej #if NBPFILTER > 0
198 1.12 thorpej bpfdetach(ifp);
199 1.12 thorpej #endif
200 1.12 thorpej if_detach(ifp);
201 1.12 thorpej
202 1.12 thorpej free(sc, M_DEVBUF);
203 1.9 itojun }
204 1.9 itojun
205 1.9 itojun static int
206 1.9 itojun gif_encapcheck(m, off, proto, arg)
207 1.9 itojun const struct mbuf *m;
208 1.9 itojun int off;
209 1.9 itojun int proto;
210 1.9 itojun void *arg;
211 1.9 itojun {
212 1.9 itojun struct ip ip;
213 1.9 itojun struct gif_softc *sc;
214 1.9 itojun
215 1.9 itojun sc = (struct gif_softc *)arg;
216 1.9 itojun if (sc == NULL)
217 1.9 itojun return 0;
218 1.9 itojun
219 1.9 itojun if ((sc->gif_if.if_flags & IFF_UP) == 0)
220 1.9 itojun return 0;
221 1.9 itojun
222 1.9 itojun /* no physical address */
223 1.9 itojun if (!sc->gif_psrc || !sc->gif_pdst)
224 1.9 itojun return 0;
225 1.9 itojun
226 1.9 itojun switch (proto) {
227 1.9 itojun #ifdef INET
228 1.9 itojun case IPPROTO_IPV4:
229 1.9 itojun break;
230 1.9 itojun #endif
231 1.9 itojun #ifdef INET6
232 1.9 itojun case IPPROTO_IPV6:
233 1.9 itojun break;
234 1.9 itojun #endif
235 1.9 itojun default:
236 1.9 itojun return 0;
237 1.9 itojun }
238 1.9 itojun
239 1.9 itojun /* LINTED const cast */
240 1.9 itojun m_copydata((struct mbuf *)m, 0, sizeof(ip), (caddr_t)&ip);
241 1.9 itojun
242 1.9 itojun switch (ip.ip_v) {
243 1.9 itojun #ifdef INET
244 1.9 itojun case 4:
245 1.9 itojun if (sc->gif_psrc->sa_family != AF_INET ||
246 1.9 itojun sc->gif_pdst->sa_family != AF_INET)
247 1.9 itojun return 0;
248 1.9 itojun return gif_encapcheck4(m, off, proto, arg);
249 1.9 itojun #endif
250 1.9 itojun #ifdef INET6
251 1.9 itojun case 6:
252 1.9 itojun if (sc->gif_psrc->sa_family != AF_INET6 ||
253 1.9 itojun sc->gif_pdst->sa_family != AF_INET6)
254 1.9 itojun return 0;
255 1.9 itojun return gif_encapcheck6(m, off, proto, arg);
256 1.9 itojun #endif
257 1.9 itojun default:
258 1.9 itojun return 0;
259 1.2 itojun }
260 1.2 itojun }
261 1.2 itojun
262 1.2 itojun int
263 1.2 itojun gif_output(ifp, m, dst, rt)
264 1.2 itojun struct ifnet *ifp;
265 1.2 itojun struct mbuf *m;
266 1.2 itojun struct sockaddr *dst;
267 1.2 itojun struct rtentry *rt; /* added in net2 */
268 1.2 itojun {
269 1.9 itojun register struct gif_softc *sc = (struct gif_softc*)ifp;
270 1.2 itojun int error = 0;
271 1.2 itojun static int called = 0; /* XXX: MUTEX */
272 1.2 itojun
273 1.2 itojun /*
274 1.2 itojun * gif may cause infinite recursion calls when misconfigured.
275 1.2 itojun * We'll prevent this by introducing upper limit.
276 1.2 itojun * XXX: this mechanism may introduce another problem about
277 1.2 itojun * mutual exclusion of the variable CALLED, especially if we
278 1.2 itojun * use kernel thread.
279 1.2 itojun */
280 1.9 itojun if (++called > max_gif_nesting) {
281 1.2 itojun log(LOG_NOTICE,
282 1.2 itojun "gif_output: recursively called too many times(%d)\n",
283 1.2 itojun called);
284 1.2 itojun m_freem(m);
285 1.2 itojun error = EIO; /* is there better errno? */
286 1.2 itojun goto end;
287 1.2 itojun }
288 1.2 itojun
289 1.2 itojun ifp->if_lastchange = time;
290 1.2 itojun m->m_flags &= ~(M_BCAST|M_MCAST);
291 1.2 itojun if (!(ifp->if_flags & IFF_UP) ||
292 1.2 itojun sc->gif_psrc == NULL || sc->gif_pdst == NULL) {
293 1.2 itojun m_freem(m);
294 1.2 itojun error = ENETDOWN;
295 1.2 itojun goto end;
296 1.2 itojun }
297 1.2 itojun
298 1.2 itojun #if NBPFILTER > 0
299 1.2 itojun if (ifp->if_bpf) {
300 1.2 itojun /*
301 1.2 itojun * We need to prepend the address family as
302 1.2 itojun * a four byte field. Cons up a dummy header
303 1.2 itojun * to pacify bpf. This is safe because bpf
304 1.2 itojun * will only read from the mbuf (i.e., it won't
305 1.2 itojun * try to free it or keep a pointer a to it).
306 1.2 itojun */
307 1.2 itojun struct mbuf m0;
308 1.2 itojun u_int af = dst->sa_family;
309 1.2 itojun
310 1.2 itojun m0.m_next = m;
311 1.2 itojun m0.m_len = 4;
312 1.2 itojun m0.m_data = (char *)⁡
313 1.2 itojun
314 1.9 itojun #ifdef HAVE_OLD_BPF
315 1.9 itojun bpf_mtap(ifp, &m0);
316 1.9 itojun #else
317 1.2 itojun bpf_mtap(ifp->if_bpf, &m0);
318 1.9 itojun #endif
319 1.2 itojun }
320 1.2 itojun #endif
321 1.2 itojun ifp->if_opackets++;
322 1.2 itojun ifp->if_obytes += m->m_pkthdr.len;
323 1.9 itojun
324 1.9 itojun /* XXX should we check if our outer source is legal? */
325 1.2 itojun
326 1.2 itojun switch (sc->gif_psrc->sa_family) {
327 1.2 itojun #ifdef INET
328 1.2 itojun case AF_INET:
329 1.2 itojun error = in_gif_output(ifp, dst->sa_family, m, rt);
330 1.2 itojun break;
331 1.2 itojun #endif
332 1.2 itojun #ifdef INET6
333 1.2 itojun case AF_INET6:
334 1.2 itojun error = in6_gif_output(ifp, dst->sa_family, m, rt);
335 1.2 itojun break;
336 1.2 itojun #endif
337 1.2 itojun default:
338 1.2 itojun m_freem(m);
339 1.2 itojun error = ENETDOWN;
340 1.2 itojun }
341 1.2 itojun
342 1.2 itojun end:
343 1.2 itojun called = 0; /* reset recursion counter */
344 1.2 itojun if (error) ifp->if_oerrors++;
345 1.2 itojun return error;
346 1.2 itojun }
347 1.2 itojun
348 1.2 itojun void
349 1.2 itojun gif_input(m, af, gifp)
350 1.2 itojun struct mbuf *m;
351 1.2 itojun int af;
352 1.2 itojun struct ifnet *gifp;
353 1.2 itojun {
354 1.2 itojun int s, isr;
355 1.9 itojun register struct ifqueue *ifq = 0;
356 1.2 itojun
357 1.2 itojun if (gifp == NULL) {
358 1.2 itojun /* just in case */
359 1.2 itojun m_freem(m);
360 1.2 itojun return;
361 1.2 itojun }
362 1.2 itojun
363 1.10 itojun m->m_pkthdr.rcvif = gifp;
364 1.2 itojun
365 1.2 itojun #if NBPFILTER > 0
366 1.2 itojun if (gifp->if_bpf) {
367 1.2 itojun /*
368 1.2 itojun * We need to prepend the address family as
369 1.2 itojun * a four byte field. Cons up a dummy header
370 1.2 itojun * to pacify bpf. This is safe because bpf
371 1.2 itojun * will only read from the mbuf (i.e., it won't
372 1.2 itojun * try to free it or keep a pointer a to it).
373 1.2 itojun */
374 1.2 itojun struct mbuf m0;
375 1.2 itojun u_int af = AF_INET6;
376 1.2 itojun
377 1.2 itojun m0.m_next = m;
378 1.2 itojun m0.m_len = 4;
379 1.2 itojun m0.m_data = (char *)⁡
380 1.2 itojun
381 1.9 itojun #ifdef HAVE_OLD_BPF
382 1.9 itojun bpf_mtap(gifp, &m0);
383 1.9 itojun #else
384 1.2 itojun bpf_mtap(gifp->if_bpf, &m0);
385 1.9 itojun #endif
386 1.2 itojun }
387 1.2 itojun #endif /*NBPFILTER > 0*/
388 1.2 itojun
389 1.2 itojun /*
390 1.2 itojun * Put the packet to the network layer input queue according to the
391 1.2 itojun * specified address family.
392 1.2 itojun * Note: older versions of gif_input directly called network layer
393 1.2 itojun * input functions, e.g. ip6_input, here. We changed the policy to
394 1.2 itojun * prevent too many recursive calls of such input functions, which
395 1.2 itojun * might cause kernel panic. But the change may introduce another
396 1.2 itojun * problem; if the input queue is full, packets are discarded.
397 1.2 itojun * We believed it rarely occurs and changed the policy. If we find
398 1.2 itojun * it occurs more times than we thought, we may change the policy
399 1.2 itojun * again.
400 1.2 itojun */
401 1.2 itojun switch (af) {
402 1.2 itojun #ifdef INET
403 1.2 itojun case AF_INET:
404 1.2 itojun ifq = &ipintrq;
405 1.2 itojun isr = NETISR_IP;
406 1.2 itojun break;
407 1.2 itojun #endif
408 1.2 itojun #ifdef INET6
409 1.2 itojun case AF_INET6:
410 1.2 itojun ifq = &ip6intrq;
411 1.2 itojun isr = NETISR_IPV6;
412 1.2 itojun break;
413 1.2 itojun #endif
414 1.2 itojun default:
415 1.2 itojun m_freem(m);
416 1.2 itojun return;
417 1.2 itojun }
418 1.2 itojun
419 1.2 itojun s = splimp();
420 1.2 itojun if (IF_QFULL(ifq)) {
421 1.2 itojun IF_DROP(ifq); /* update statistics */
422 1.2 itojun m_freem(m);
423 1.2 itojun splx(s);
424 1.2 itojun return;
425 1.2 itojun }
426 1.2 itojun IF_ENQUEUE(ifq, m);
427 1.2 itojun /* we need schednetisr since the address family may change */
428 1.2 itojun schednetisr(isr);
429 1.2 itojun gifp->if_ipackets++;
430 1.2 itojun gifp->if_ibytes += m->m_pkthdr.len;
431 1.2 itojun splx(s);
432 1.2 itojun
433 1.2 itojun return;
434 1.2 itojun }
435 1.2 itojun
436 1.9 itojun /* XXX how should we handle IPv6 scope on SIOC[GS]IFPHYADDR? */
437 1.2 itojun int
438 1.2 itojun gif_ioctl(ifp, cmd, data)
439 1.2 itojun struct ifnet *ifp;
440 1.2 itojun u_long cmd;
441 1.2 itojun caddr_t data;
442 1.2 itojun {
443 1.17 martin struct proc *p = curproc; /* XXX */
444 1.2 itojun struct gif_softc *sc = (struct gif_softc*)ifp;
445 1.2 itojun struct ifreq *ifr = (struct ifreq*)data;
446 1.2 itojun int error = 0, size;
447 1.9 itojun struct sockaddr *dst, *src;
448 1.9 itojun struct sockaddr *sa;
449 1.9 itojun struct gif_softc *sc2;
450 1.2 itojun
451 1.2 itojun switch (cmd) {
452 1.2 itojun case SIOCSIFADDR:
453 1.2 itojun break;
454 1.2 itojun
455 1.2 itojun case SIOCSIFDSTADDR:
456 1.2 itojun break;
457 1.2 itojun
458 1.2 itojun case SIOCADDMULTI:
459 1.2 itojun case SIOCDELMULTI:
460 1.17 martin if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
461 1.17 martin break;
462 1.2 itojun switch (ifr->ifr_addr.sa_family) {
463 1.2 itojun #ifdef INET
464 1.2 itojun case AF_INET: /* IP supports Multicast */
465 1.2 itojun break;
466 1.2 itojun #endif /* INET */
467 1.2 itojun #ifdef INET6
468 1.2 itojun case AF_INET6: /* IP6 supports Multicast */
469 1.2 itojun break;
470 1.2 itojun #endif /* INET6 */
471 1.2 itojun default: /* Other protocols doesn't support Multicast */
472 1.2 itojun error = EAFNOSUPPORT;
473 1.2 itojun break;
474 1.2 itojun }
475 1.2 itojun break;
476 1.2 itojun
477 1.2 itojun #ifdef SIOCSIFMTU /* xxx */
478 1.2 itojun case SIOCGIFMTU:
479 1.2 itojun break;
480 1.11 itojun
481 1.2 itojun case SIOCSIFMTU:
482 1.2 itojun {
483 1.2 itojun u_long mtu;
484 1.17 martin if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
485 1.17 martin break;
486 1.2 itojun mtu = ifr->ifr_mtu;
487 1.2 itojun if (mtu < GIF_MTU_MIN || mtu > GIF_MTU_MAX) {
488 1.2 itojun return (EINVAL);
489 1.2 itojun }
490 1.2 itojun ifp->if_mtu = mtu;
491 1.2 itojun }
492 1.2 itojun break;
493 1.2 itojun #endif /* SIOCSIFMTU */
494 1.2 itojun
495 1.2 itojun case SIOCSIFPHYADDR:
496 1.2 itojun #ifdef INET6
497 1.2 itojun case SIOCSIFPHYADDR_IN6:
498 1.2 itojun #endif /* INET6 */
499 1.17 martin if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
500 1.17 martin break;
501 1.11 itojun switch (cmd) {
502 1.15 itojun #ifdef INET
503 1.11 itojun case SIOCSIFPHYADDR:
504 1.11 itojun src = (struct sockaddr *)
505 1.11 itojun &(((struct in_aliasreq *)data)->ifra_addr);
506 1.11 itojun dst = (struct sockaddr *)
507 1.11 itojun &(((struct in_aliasreq *)data)->ifra_dstaddr);
508 1.16 itojun if (src->sa_len != sizeof(struct sockaddr_in) ||
509 1.16 itojun dst->sa_len != sizeof(struct sockaddr_in))
510 1.16 itojun return EINVAL;
511 1.16 itojun if (src->sa_family != AF_INET ||
512 1.16 itojun dst->sa_family != AF_INET)
513 1.16 itojun return EAFNOSUPPORT;
514 1.11 itojun break;
515 1.15 itojun #endif
516 1.11 itojun #ifdef INET6
517 1.11 itojun case SIOCSIFPHYADDR_IN6:
518 1.11 itojun src = (struct sockaddr *)
519 1.11 itojun &(((struct in6_aliasreq *)data)->ifra_addr);
520 1.11 itojun dst = (struct sockaddr *)
521 1.11 itojun &(((struct in6_aliasreq *)data)->ifra_dstaddr);
522 1.16 itojun if (src->sa_len != sizeof(struct sockaddr_in6) ||
523 1.16 itojun dst->sa_len != sizeof(struct sockaddr_in6))
524 1.16 itojun return EINVAL;
525 1.16 itojun if (src->sa_family != AF_INET6 ||
526 1.16 itojun dst->sa_family != AF_INET6)
527 1.16 itojun return EAFNOSUPPORT;
528 1.11 itojun break;
529 1.11 itojun #endif
530 1.11 itojun }
531 1.11 itojun
532 1.12 thorpej for (sc2 = LIST_FIRST(&gif_softc_list); sc2 != NULL;
533 1.12 thorpej sc2 = LIST_NEXT(sc2, gif_list)) {
534 1.9 itojun if (sc2 == sc)
535 1.9 itojun continue;
536 1.9 itojun if (!sc2->gif_pdst || !sc2->gif_psrc)
537 1.9 itojun continue;
538 1.10 itojun if (sc2->gif_pdst->sa_family != dst->sa_family ||
539 1.10 itojun sc2->gif_pdst->sa_len != dst->sa_len ||
540 1.10 itojun sc2->gif_psrc->sa_family != src->sa_family ||
541 1.10 itojun sc2->gif_psrc->sa_len != src->sa_len)
542 1.10 itojun continue;
543 1.10 itojun
544 1.10 itojun /* can't configure same pair of address onto two gifs */
545 1.10 itojun if (bcmp(sc2->gif_pdst, dst, dst->sa_len) == 0 &&
546 1.9 itojun bcmp(sc2->gif_psrc, src, src->sa_len) == 0) {
547 1.9 itojun error = EADDRNOTAVAIL;
548 1.9 itojun goto bad;
549 1.9 itojun }
550 1.10 itojun
551 1.10 itojun /* can't configure multiple multi-dest interfaces */
552 1.10 itojun #define multidest(x) \
553 1.10 itojun (((struct sockaddr_in *)(x))->sin_addr.s_addr == INADDR_ANY)
554 1.10 itojun #ifdef INET6
555 1.10 itojun #define multidest6(x) \
556 1.10 itojun (IN6_IS_ADDR_UNSPECIFIED(&((struct sockaddr_in6 *)(x))->sin6_addr))
557 1.10 itojun #endif
558 1.10 itojun if (dst->sa_family == AF_INET &&
559 1.10 itojun multidest(dst) && multidest(sc2->gif_pdst)) {
560 1.10 itojun error = EADDRNOTAVAIL;
561 1.10 itojun goto bad;
562 1.10 itojun }
563 1.10 itojun #ifdef INET6
564 1.10 itojun if (dst->sa_family == AF_INET6 &&
565 1.10 itojun multidest6(dst) && multidest6(sc2->gif_pdst)) {
566 1.10 itojun error = EADDRNOTAVAIL;
567 1.10 itojun goto bad;
568 1.10 itojun }
569 1.10 itojun #endif
570 1.9 itojun }
571 1.9 itojun
572 1.9 itojun if (src->sa_family != dst->sa_family ||
573 1.9 itojun src->sa_len != dst->sa_len) {
574 1.9 itojun error = EINVAL;
575 1.9 itojun break;
576 1.9 itojun }
577 1.9 itojun switch (src->sa_family) {
578 1.2 itojun #ifdef INET
579 1.2 itojun case AF_INET:
580 1.2 itojun size = sizeof(struct sockaddr_in);
581 1.2 itojun break;
582 1.9 itojun #endif
583 1.2 itojun #ifdef INET6
584 1.2 itojun case AF_INET6:
585 1.2 itojun size = sizeof(struct sockaddr_in6);
586 1.2 itojun break;
587 1.9 itojun #endif
588 1.2 itojun default:
589 1.9 itojun error = EAFNOSUPPORT;
590 1.2 itojun goto bad;
591 1.9 itojun }
592 1.9 itojun if (src->sa_len != size) {
593 1.9 itojun error = EINVAL;
594 1.2 itojun break;
595 1.2 itojun }
596 1.9 itojun
597 1.9 itojun if (sc->gif_psrc)
598 1.2 itojun free((caddr_t)sc->gif_psrc, M_IFADDR);
599 1.2 itojun sa = (struct sockaddr *)malloc(size, M_IFADDR, M_WAITOK);
600 1.2 itojun bcopy((caddr_t)src, (caddr_t)sa, size);
601 1.2 itojun sc->gif_psrc = sa;
602 1.9 itojun
603 1.9 itojun if (sc->gif_pdst)
604 1.9 itojun free((caddr_t)sc->gif_pdst, M_IFADDR);
605 1.2 itojun sa = (struct sockaddr *)malloc(size, M_IFADDR, M_WAITOK);
606 1.2 itojun bcopy((caddr_t)dst, (caddr_t)sa, size);
607 1.2 itojun sc->gif_pdst = sa;
608 1.9 itojun
609 1.7 itojun ifp->if_flags |= IFF_UP;
610 1.2 itojun if_up(ifp); /* send up RTM_IFINFO */
611 1.2 itojun
612 1.9 itojun error = 0;
613 1.9 itojun break;
614 1.9 itojun
615 1.9 itojun #ifdef SIOCDIFPHYADDR
616 1.9 itojun case SIOCDIFPHYADDR:
617 1.17 martin if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
618 1.17 martin break;
619 1.12 thorpej gif_delete_tunnel(sc);
620 1.2 itojun break;
621 1.9 itojun #endif
622 1.2 itojun
623 1.2 itojun case SIOCGIFPSRCADDR:
624 1.2 itojun #ifdef INET6
625 1.2 itojun case SIOCGIFPSRCADDR_IN6:
626 1.2 itojun #endif /* INET6 */
627 1.2 itojun if (sc->gif_psrc == NULL) {
628 1.2 itojun error = EADDRNOTAVAIL;
629 1.2 itojun goto bad;
630 1.2 itojun }
631 1.2 itojun src = sc->gif_psrc;
632 1.16 itojun switch (cmd) {
633 1.2 itojun #ifdef INET
634 1.16 itojun case SIOCGIFPSRCADDR:
635 1.2 itojun dst = &ifr->ifr_addr;
636 1.16 itojun size = sizeof(ifr->ifr_addr);
637 1.2 itojun break;
638 1.2 itojun #endif /* INET */
639 1.2 itojun #ifdef INET6
640 1.16 itojun case SIOCGIFPSRCADDR_IN6:
641 1.2 itojun dst = (struct sockaddr *)
642 1.2 itojun &(((struct in6_ifreq *)data)->ifr_addr);
643 1.16 itojun size = sizeof(((struct in6_ifreq *)data)->ifr_addr);
644 1.2 itojun break;
645 1.2 itojun #endif /* INET6 */
646 1.2 itojun default:
647 1.2 itojun error = EADDRNOTAVAIL;
648 1.2 itojun goto bad;
649 1.2 itojun }
650 1.16 itojun if (src->sa_len > size)
651 1.16 itojun return EINVAL;
652 1.16 itojun bcopy((caddr_t)src, (caddr_t)dst, src->sa_len);
653 1.2 itojun break;
654 1.2 itojun
655 1.2 itojun case SIOCGIFPDSTADDR:
656 1.2 itojun #ifdef INET6
657 1.2 itojun case SIOCGIFPDSTADDR_IN6:
658 1.2 itojun #endif /* INET6 */
659 1.2 itojun if (sc->gif_pdst == NULL) {
660 1.2 itojun error = EADDRNOTAVAIL;
661 1.2 itojun goto bad;
662 1.2 itojun }
663 1.2 itojun src = sc->gif_pdst;
664 1.16 itojun switch (cmd) {
665 1.2 itojun #ifdef INET
666 1.16 itojun case SIOCGIFPDSTADDR:
667 1.2 itojun dst = &ifr->ifr_addr;
668 1.16 itojun size = sizeof(ifr->ifr_addr);
669 1.2 itojun break;
670 1.2 itojun #endif /* INET */
671 1.2 itojun #ifdef INET6
672 1.16 itojun case SIOCGIFPDSTADDR_IN6:
673 1.2 itojun dst = (struct sockaddr *)
674 1.2 itojun &(((struct in6_ifreq *)data)->ifr_addr);
675 1.16 itojun size = sizeof(((struct in6_ifreq *)data)->ifr_addr);
676 1.2 itojun break;
677 1.2 itojun #endif /* INET6 */
678 1.2 itojun default:
679 1.2 itojun error = EADDRNOTAVAIL;
680 1.2 itojun goto bad;
681 1.2 itojun }
682 1.16 itojun if (src->sa_len > size)
683 1.16 itojun return EINVAL;
684 1.16 itojun bcopy((caddr_t)src, (caddr_t)dst, src->sa_len);
685 1.2 itojun break;
686 1.2 itojun
687 1.2 itojun case SIOCSIFFLAGS:
688 1.9 itojun /* if_ioctl() takes care of it */
689 1.2 itojun break;
690 1.2 itojun
691 1.2 itojun default:
692 1.2 itojun error = EINVAL;
693 1.2 itojun break;
694 1.2 itojun }
695 1.2 itojun bad:
696 1.2 itojun return error;
697 1.12 thorpej }
698 1.12 thorpej
699 1.12 thorpej void
700 1.12 thorpej gif_delete_tunnel(sc)
701 1.12 thorpej struct gif_softc *sc;
702 1.12 thorpej {
703 1.12 thorpej int s;
704 1.12 thorpej
705 1.12 thorpej s = splsoftnet();
706 1.12 thorpej
707 1.12 thorpej if (sc->gif_psrc) {
708 1.12 thorpej free((caddr_t)sc->gif_psrc, M_IFADDR);
709 1.12 thorpej sc->gif_psrc = NULL;
710 1.12 thorpej }
711 1.12 thorpej if (sc->gif_pdst) {
712 1.12 thorpej free((caddr_t)sc->gif_pdst, M_IFADDR);
713 1.12 thorpej sc->gif_pdst = NULL;
714 1.12 thorpej }
715 1.12 thorpej /* change the IFF_UP flag as well? */
716 1.12 thorpej
717 1.12 thorpej splx(s);
718 1.2 itojun }
719 1.2 itojun #endif /*NGIF > 0*/
720