route: Suppress duplicated rtmsgs generated by rtlookup() in rt_setgate()
[dragonfly.git] / sys / net / rtsock.c
1 /*
2  * Copyright (c) 2004, 2005 The DragonFly Project.  All rights reserved.
3  *
4  * This code is derived from software contributed to The DragonFly Project
5  * by Jeffrey M. Hsu.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. Neither the name of The DragonFly Project nor the names of its
16  *    contributors may be used to endorse or promote products derived
17  *    from this software without specific, prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
22  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
23  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
25  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
27  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
29  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  */
32
33 /*
34  * Copyright (c) 1988, 1991, 1993
35  *      The Regents of the University of California.  All rights reserved.
36  *
37  * Redistribution and use in source and binary forms, with or without
38  * modification, are permitted provided that the following conditions
39  * are met:
40  * 1. Redistributions of source code must retain the above copyright
41  *    notice, this list of conditions and the following disclaimer.
42  * 2. Redistributions in binary form must reproduce the above copyright
43  *    notice, this list of conditions and the following disclaimer in the
44  *    documentation and/or other materials provided with the distribution.
45  * 3. All advertising materials mentioning features or use of this software
46  *    must display the following acknowledgement:
47  *      This product includes software developed by the University of
48  *      California, Berkeley and its contributors.
49  * 4. Neither the name of the University nor the names of its contributors
50  *    may be used to endorse or promote products derived from this software
51  *    without specific prior written permission.
52  *
53  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
54  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
55  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
56  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
57  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
58  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
59  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
60  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
61  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
62  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
63  * SUCH DAMAGE.
64  *
65  *      @(#)rtsock.c    8.7 (Berkeley) 10/12/95
66  * $FreeBSD: src/sys/net/rtsock.c,v 1.44.2.11 2002/12/04 14:05:41 ru Exp $
67  * $DragonFly: src/sys/net/rtsock.c,v 1.45 2008/10/27 02:56:30 sephe Exp $
68  */
69
70 #include "opt_sctp.h"
71
72 #include <sys/param.h>
73 #include <sys/systm.h>
74 #include <sys/kernel.h>
75 #include <sys/sysctl.h>
76 #include <sys/proc.h>
77 #include <sys/priv.h>
78 #include <sys/malloc.h>
79 #include <sys/mbuf.h>
80 #include <sys/protosw.h>
81 #include <sys/socket.h>
82 #include <sys/socketvar.h>
83 #include <sys/domain.h>
84 #include <sys/thread2.h>
85
86 #include <net/if.h>
87 #include <net/route.h>
88 #include <net/raw_cb.h>
89 #include <net/netmsg2.h>
90
91 #ifdef SCTP
92 extern void sctp_add_ip_address(struct ifaddr *ifa);
93 extern void sctp_delete_ip_address(struct ifaddr *ifa);
94 #endif /* SCTP */
95
96 MALLOC_DEFINE(M_RTABLE, "routetbl", "routing tables");
97
98 static struct route_cb {
99         int     ip_count;
100         int     ip6_count;
101         int     ipx_count;
102         int     ns_count;
103         int     any_count;
104 } route_cb;
105
106 static const struct sockaddr route_src = { 2, PF_ROUTE, };
107
108 struct walkarg {
109         int     w_tmemsize;
110         int     w_op, w_arg;
111         void    *w_tmem;
112         struct sysctl_req *w_req;
113 };
114
115 static struct mbuf *
116                 rt_msg_mbuf (int, struct rt_addrinfo *);
117 static void     rt_msg_buffer (int, struct rt_addrinfo *, void *buf, int len);
118 static int      rt_msgsize (int type, struct rt_addrinfo *rtinfo);
119 static int      rt_xaddrs (char *, char *, struct rt_addrinfo *);
120 static int      sysctl_dumpentry (struct radix_node *rn, void *vw);
121 static int      sysctl_iflist (int af, struct walkarg *w);
122 static int      route_output(struct mbuf *, struct socket *, ...);
123 static void     rt_setmetrics (u_long, struct rt_metrics *,
124                                struct rt_metrics *);
125
126 /*
127  * It really doesn't make any sense at all for this code to share much
128  * with raw_usrreq.c, since its functionality is so restricted.  XXX
129  */
130 static int
131 rts_abort(struct socket *so)
132 {
133         int error;
134
135         crit_enter();
136         error = raw_usrreqs.pru_abort(so);
137         crit_exit();
138         return error;
139 }
140
141 /* pru_accept is EOPNOTSUPP */
142
143 static int
144 rts_attach(struct socket *so, int proto, struct pru_attach_info *ai)
145 {
146         struct rawcb *rp;
147         int error;
148
149         if (sotorawcb(so) != NULL)
150                 return EISCONN; /* XXX panic? */
151
152         rp = kmalloc(sizeof *rp, M_PCB, M_WAITOK | M_ZERO);
153
154         /*
155          * The critical section is necessary to block protocols from sending
156          * error notifications (like RTM_REDIRECT or RTM_LOSING) while
157          * this PCB is extant but incompletely initialized.
158          * Probably we should try to do more of this work beforehand and
159          * eliminate the critical section.
160          */
161         crit_enter();
162         so->so_pcb = rp;
163         error = raw_attach(so, proto, ai->sb_rlimit);
164         rp = sotorawcb(so);
165         if (error) {
166                 crit_exit();
167                 kfree(rp, M_PCB);
168                 return error;
169         }
170         switch(rp->rcb_proto.sp_protocol) {
171         case AF_INET:
172                 route_cb.ip_count++;
173                 break;
174         case AF_INET6:
175                 route_cb.ip6_count++;
176                 break;
177         case AF_IPX:
178                 route_cb.ipx_count++;
179                 break;
180         case AF_NS:
181                 route_cb.ns_count++;
182                 break;
183         }
184         rp->rcb_faddr = &route_src;
185         route_cb.any_count++;
186         soisconnected(so);
187         so->so_options |= SO_USELOOPBACK;
188         crit_exit();
189         return 0;
190 }
191
192 static int
193 rts_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
194 {
195         int error;
196
197         crit_enter();
198         error = raw_usrreqs.pru_bind(so, nam, td); /* xxx just EINVAL */
199         crit_exit();
200         return error;
201 }
202
203 static int
204 rts_connect(struct socket *so, struct sockaddr *nam, struct thread *td)
205 {
206         int error;
207
208         crit_enter();
209         error = raw_usrreqs.pru_connect(so, nam, td); /* XXX just EINVAL */
210         crit_exit();
211         return error;
212 }
213
214 /* pru_connect2 is EOPNOTSUPP */
215 /* pru_control is EOPNOTSUPP */
216
217 static int
218 rts_detach(struct socket *so)
219 {
220         struct rawcb *rp = sotorawcb(so);
221         int error;
222
223         crit_enter();
224         if (rp != NULL) {
225                 switch(rp->rcb_proto.sp_protocol) {
226                 case AF_INET:
227                         route_cb.ip_count--;
228                         break;
229                 case AF_INET6:
230                         route_cb.ip6_count--;
231                         break;
232                 case AF_IPX:
233                         route_cb.ipx_count--;
234                         break;
235                 case AF_NS:
236                         route_cb.ns_count--;
237                         break;
238                 }
239                 route_cb.any_count--;
240         }
241         error = raw_usrreqs.pru_detach(so);
242         crit_exit();
243         return error;
244 }
245
246 static int
247 rts_disconnect(struct socket *so)
248 {
249         int error;
250
251         crit_enter();
252         error = raw_usrreqs.pru_disconnect(so);
253         crit_exit();
254         return error;
255 }
256
257 /* pru_listen is EOPNOTSUPP */
258
259 static int
260 rts_peeraddr(struct socket *so, struct sockaddr **nam)
261 {
262         int error;
263
264         crit_enter();
265         error = raw_usrreqs.pru_peeraddr(so, nam);
266         crit_exit();
267         return error;
268 }
269
270 /* pru_rcvd is EOPNOTSUPP */
271 /* pru_rcvoob is EOPNOTSUPP */
272
273 static int
274 rts_send(struct socket *so, int flags, struct mbuf *m, struct sockaddr *nam,
275          struct mbuf *control, struct thread *td)
276 {
277         int error;
278
279         crit_enter();
280         error = raw_usrreqs.pru_send(so, flags, m, nam, control, td);
281         crit_exit();
282         return error;
283 }
284
285 /* pru_sense is null */
286
287 static int
288 rts_shutdown(struct socket *so)
289 {
290         int error;
291
292         crit_enter();
293         error = raw_usrreqs.pru_shutdown(so);
294         crit_exit();
295         return error;
296 }
297
298 static int
299 rts_sockaddr(struct socket *so, struct sockaddr **nam)
300 {
301         int error;
302
303         crit_enter();
304         error = raw_usrreqs.pru_sockaddr(so, nam);
305         crit_exit();
306         return error;
307 }
308
309 static struct pr_usrreqs route_usrreqs = {
310         .pru_abort = rts_abort,
311         .pru_accept = pru_accept_notsupp,
312         .pru_attach = rts_attach,
313         .pru_bind = rts_bind,
314         .pru_connect = rts_connect,
315         .pru_connect2 = pru_connect2_notsupp,
316         .pru_control = pru_control_notsupp,
317         .pru_detach = rts_detach,
318         .pru_disconnect = rts_disconnect,
319         .pru_listen = pru_listen_notsupp,
320         .pru_peeraddr = rts_peeraddr,
321         .pru_rcvd = pru_rcvd_notsupp,
322         .pru_rcvoob = pru_rcvoob_notsupp,
323         .pru_send = rts_send,
324         .pru_sense = pru_sense_null,
325         .pru_shutdown = rts_shutdown,
326         .pru_sockaddr = rts_sockaddr,
327         .pru_sosend = sosend,
328         .pru_soreceive = soreceive,
329         .pru_sopoll = sopoll
330 };
331
332 static __inline sa_family_t
333 familyof(struct sockaddr *sa)
334 {
335         return (sa != NULL ? sa->sa_family : 0);
336 }
337
338 /*
339  * Routing socket input function.  The packet must be serialized onto cpu 0.
340  * We use the cpu0_soport() netisr processing loop to handle it.
341  *
342  * This looks messy but it means that anyone, including interrupt code,
343  * can send a message to the routing socket.
344  */
345 static void
346 rts_input_handler(struct netmsg *msg)
347 {
348         static const struct sockaddr route_dst = { 2, PF_ROUTE, };
349         struct sockproto route_proto;
350         struct netmsg_packet *pmsg;
351         struct mbuf *m;
352         sa_family_t family;
353         struct rawcb *skip;
354
355         pmsg = (void *)msg;
356         family = pmsg->nm_netmsg.nm_lmsg.u.ms_result;
357         route_proto.sp_family = PF_ROUTE;
358         route_proto.sp_protocol = family;
359
360         m = pmsg->nm_packet;
361         M_ASSERTPKTHDR(m);
362
363         skip = m->m_pkthdr.header;
364         m->m_pkthdr.header = NULL;
365
366         raw_input(m, &route_proto, &route_src, &route_dst, skip);
367 }
368
369 static void
370 rts_input_skip(struct mbuf *m, sa_family_t family, struct rawcb *skip)
371 {
372         struct netmsg_packet *pmsg;
373         lwkt_port_t port;
374
375         M_ASSERTPKTHDR(m);
376
377         port = cpu0_soport(NULL, NULL, NULL, 0);
378         pmsg = &m->m_hdr.mh_netmsg;
379         netmsg_init(&pmsg->nm_netmsg, &netisr_apanic_rport, 
380                     0, rts_input_handler);
381         pmsg->nm_packet = m;
382         pmsg->nm_netmsg.nm_lmsg.u.ms_result = family;
383         m->m_pkthdr.header = skip; /* XXX steal field in pkthdr */
384         lwkt_sendmsg(port, &pmsg->nm_netmsg.nm_lmsg);
385 }
386
387 static __inline void
388 rts_input(struct mbuf *m, sa_family_t family)
389 {
390         rts_input_skip(m, family, NULL);
391 }
392
393 static void *
394 reallocbuf(void *ptr, size_t len, size_t olen)
395 {
396         void *newptr;
397
398         newptr = kmalloc(len, M_RTABLE, M_INTWAIT | M_NULLOK);
399         if (newptr == NULL)
400                 return NULL;
401         bcopy(ptr, newptr, olen);
402         kfree(ptr, M_RTABLE);
403         return (newptr);
404 }
405
406 /*
407  * Internal helper routine for route_output().
408  */
409 static int
410 fillrtmsg(struct rt_msghdr **prtm, struct rtentry *rt,
411           struct rt_addrinfo *rtinfo)
412 {
413         int msglen;
414         struct rt_msghdr *rtm = *prtm;
415
416         /* Fill in rt_addrinfo for call to rt_msg_buffer(). */
417         rtinfo->rti_dst = rt_key(rt);
418         rtinfo->rti_gateway = rt->rt_gateway;
419         rtinfo->rti_netmask = rt_mask(rt);              /* might be NULL */
420         rtinfo->rti_genmask = rt->rt_genmask;           /* might be NULL */
421         if (rtm->rtm_addrs & (RTA_IFP | RTA_IFA)) {
422                 if (rt->rt_ifp != NULL) {
423                         rtinfo->rti_ifpaddr =
424                             TAILQ_FIRST(&rt->rt_ifp->if_addrheads[mycpuid])
425                             ->ifa->ifa_addr;
426                         rtinfo->rti_ifaaddr = rt->rt_ifa->ifa_addr;
427                         if (rt->rt_ifp->if_flags & IFF_POINTOPOINT)
428                                 rtinfo->rti_bcastaddr = rt->rt_ifa->ifa_dstaddr;
429                         rtm->rtm_index = rt->rt_ifp->if_index;
430                 } else {
431                         rtinfo->rti_ifpaddr = NULL;
432                         rtinfo->rti_ifaaddr = NULL;
433                 }
434         } else if (rt->rt_ifp != NULL) {
435                 rtm->rtm_index = rt->rt_ifp->if_index;
436         }
437
438         msglen = rt_msgsize(rtm->rtm_type, rtinfo);
439         if (rtm->rtm_msglen < msglen) {
440                 rtm = reallocbuf(rtm, msglen, rtm->rtm_msglen);
441                 if (rtm == NULL)
442                         return (ENOBUFS);
443                 *prtm = rtm;
444         }
445         rt_msg_buffer(rtm->rtm_type, rtinfo, rtm, msglen);
446
447         rtm->rtm_flags = rt->rt_flags;
448         rtm->rtm_rmx = rt->rt_rmx;
449         rtm->rtm_addrs = rtinfo->rti_addrs;
450
451         return (0);
452 }
453
454 static void route_output_add_callback(int, int, struct rt_addrinfo *,
455                                         struct rtentry *, void *);
456 static void route_output_delete_callback(int, int, struct rt_addrinfo *,
457                                         struct rtentry *, void *);
458 static int route_output_get_callback(int, struct rt_addrinfo *,
459                                      struct rtentry *, void *);
460 static int route_output_change_callback(int, struct rt_addrinfo *,
461                                         struct rtentry *, void *);
462 static int route_output_lock_callback(int, struct rt_addrinfo *,
463                                       struct rtentry *, void *);
464
465 /*ARGSUSED*/
466 static int
467 route_output(struct mbuf *m, struct socket *so, ...)
468 {
469         struct rt_msghdr *rtm = NULL;
470         struct rawcb *rp = NULL;
471         struct pr_output_info *oi;
472         struct rt_addrinfo rtinfo;
473         int len, error = 0;
474         __va_list ap;
475
476         M_ASSERTPKTHDR(m);
477
478         __va_start(ap, so);
479         oi = __va_arg(ap, struct pr_output_info *);
480         __va_end(ap);
481
482 #define gotoerr(e) { error = e; goto flush;}
483
484         if (m == NULL ||
485             (m->m_len < sizeof(long) &&
486              (m = m_pullup(m, sizeof(long))) == NULL))
487                 return (ENOBUFS);
488         len = m->m_pkthdr.len;
489         if (len < sizeof(struct rt_msghdr) ||
490             len != mtod(m, struct rt_msghdr *)->rtm_msglen) {
491                 rtinfo.rti_dst = NULL;
492                 gotoerr(EINVAL);
493         }
494         rtm = kmalloc(len, M_RTABLE, M_INTWAIT | M_NULLOK);
495         if (rtm == NULL) {
496                 rtinfo.rti_dst = NULL;
497                 gotoerr(ENOBUFS);
498         }
499         m_copydata(m, 0, len, (caddr_t)rtm);
500         if (rtm->rtm_version != RTM_VERSION) {
501                 rtinfo.rti_dst = NULL;
502                 gotoerr(EPROTONOSUPPORT);
503         }
504         rtm->rtm_pid = oi->p_pid;
505         bzero(&rtinfo, sizeof(struct rt_addrinfo));
506         rtinfo.rti_addrs = rtm->rtm_addrs;
507         if (rt_xaddrs((char *)(rtm + 1), (char *)rtm + len, &rtinfo) != 0) {
508                 rtinfo.rti_dst = NULL;
509                 gotoerr(EINVAL);
510         }
511         rtinfo.rti_flags = rtm->rtm_flags;
512         if (rtinfo.rti_dst == NULL || rtinfo.rti_dst->sa_family >= AF_MAX ||
513             (rtinfo.rti_gateway && rtinfo.rti_gateway->sa_family >= AF_MAX))
514                 gotoerr(EINVAL);
515
516         if (rtinfo.rti_genmask != NULL) {
517                 struct radix_node *n;
518
519 #define clen(s) (*(u_char *)(s))
520                 n = rn_addmask((char *)rtinfo.rti_genmask, TRUE, 1);
521                 if (n != NULL &&
522                     rtinfo.rti_genmask->sa_len >= clen(n->rn_key) &&
523                     bcmp((char *)rtinfo.rti_genmask + 1,
524                          (char *)n->rn_key + 1, clen(n->rn_key) - 1) == 0)
525                         rtinfo.rti_genmask = (struct sockaddr *)n->rn_key;
526                 else
527                         gotoerr(ENOBUFS);
528         }
529
530         /*
531          * Verify that the caller has the appropriate privilege; RTM_GET
532          * is the only operation the non-superuser is allowed.
533          */
534         if (rtm->rtm_type != RTM_GET &&
535             priv_check_cred(so->so_cred, PRIV_ROOT, 0) != 0)
536                 gotoerr(EPERM);
537
538         switch (rtm->rtm_type) {
539         case RTM_ADD:
540                 if (rtinfo.rti_gateway == NULL) {
541                         error = EINVAL;
542                 } else {
543                         error = rtrequest1_global(RTM_ADD, &rtinfo, 
544                                           route_output_add_callback, rtm);
545                 }
546                 break;
547         case RTM_DELETE:
548                 /*
549                  * note: &rtm passed as argument so 'rtm' can be replaced.
550                  */
551                 error = rtrequest1_global(RTM_DELETE, &rtinfo,
552                                           route_output_delete_callback, &rtm);
553                 break;
554         case RTM_GET:
555                 /*
556                  * note: &rtm passed as argument so 'rtm' can be replaced.
557                  */
558                 error = rtsearch_global(RTM_GET, &rtinfo,
559                                         route_output_get_callback, &rtm,
560                                         RTS_NOEXACTMATCH);
561                 break;
562         case RTM_CHANGE:
563                 error = rtsearch_global(RTM_CHANGE, &rtinfo,
564                                         route_output_change_callback, rtm,
565                                         RTS_EXACTMATCH);
566                 break;
567         case RTM_LOCK:
568                 error = rtsearch_global(RTM_LOCK, &rtinfo,
569                                         route_output_lock_callback, rtm,
570                                         RTS_EXACTMATCH);
571                 break;
572         default:
573                 error = EOPNOTSUPP;
574                 break;
575         }
576
577 flush:
578         if (rtm != NULL) {
579                 if (error != 0)
580                         rtm->rtm_errno = error;
581                 else
582                         rtm->rtm_flags |= RTF_DONE;
583         }
584
585         /*
586          * Check to see if we don't want our own messages.
587          */
588         if (!(so->so_options & SO_USELOOPBACK)) {
589                 if (route_cb.any_count <= 1) {
590                         if (rtm != NULL)
591                                 kfree(rtm, M_RTABLE);
592                         m_freem(m);
593                         return (error);
594                 }
595                 /* There is another listener, so construct message */
596                 rp = sotorawcb(so);
597         }
598         if (rtm != NULL) {
599                 m_copyback(m, 0, rtm->rtm_msglen, (caddr_t)rtm);
600                 if (m->m_pkthdr.len < rtm->rtm_msglen) {
601                         m_freem(m);
602                         m = NULL;
603                 } else if (m->m_pkthdr.len > rtm->rtm_msglen)
604                         m_adj(m, rtm->rtm_msglen - m->m_pkthdr.len);
605                 kfree(rtm, M_RTABLE);
606         }
607         if (m != NULL)
608                 rts_input_skip(m, familyof(rtinfo.rti_dst), rp);
609         return (error);
610 }
611
612 static void
613 route_output_add_callback(int cmd, int error, struct rt_addrinfo *rtinfo,
614                           struct rtentry *rt, void *arg)
615 {
616         struct rt_msghdr *rtm = arg;
617
618         if (error == 0 && rt != NULL) {
619                 rt_setmetrics(rtm->rtm_inits, &rtm->rtm_rmx,
620                     &rt->rt_rmx);
621                 rt->rt_rmx.rmx_locks &= ~(rtm->rtm_inits);
622                 rt->rt_rmx.rmx_locks |=
623                     (rtm->rtm_inits & rtm->rtm_rmx.rmx_locks);
624                 rt->rt_genmask = rtinfo->rti_genmask;
625                 rtm->rtm_index = rt->rt_ifp->if_index;
626         }
627 }
628
629 static void
630 route_output_delete_callback(int cmd, int error, struct rt_addrinfo *rtinfo,
631                           struct rtentry *rt, void *arg)
632 {
633         struct rt_msghdr **rtm = arg;
634
635         if (error == 0 && rt) {
636                 ++rt->rt_refcnt;
637                 if (fillrtmsg(rtm, rt, rtinfo) != 0) {
638                         error = ENOBUFS;
639                         /* XXX no way to return the error */
640                 }
641                 --rt->rt_refcnt;
642         }
643 }
644
645 static int
646 route_output_get_callback(int cmd, struct rt_addrinfo *rtinfo,
647                           struct rtentry *rt, void *arg)
648 {
649         struct rt_msghdr **rtm = arg;
650         int error, found = 0;
651
652         if (((rtinfo->rti_flags ^ rt->rt_flags) & RTF_HOST) == 0)
653                 found = 1;
654
655         error = fillrtmsg(rtm, rt, rtinfo);
656         if (!error && found) {
657                 /* Got the exact match, we could return now! */
658                 error = EJUSTRETURN;
659         }
660         return error;
661 }
662
663 static int
664 route_output_change_callback(int cmd, struct rt_addrinfo *rtinfo,
665                              struct rtentry *rt, void *arg)
666 {
667         struct rt_msghdr *rtm = arg;
668         struct ifaddr *ifa;
669         int error = 0;
670
671         /*
672          * new gateway could require new ifaddr, ifp;
673          * flags may also be different; ifp may be specified
674          * by ll sockaddr when protocol address is ambiguous
675          */
676         if (((rt->rt_flags & RTF_GATEWAY) && rtinfo->rti_gateway != NULL) ||
677             rtinfo->rti_ifpaddr != NULL ||
678             (rtinfo->rti_ifaaddr != NULL &&
679              !sa_equal(rtinfo->rti_ifaaddr, rt->rt_ifa->ifa_addr))) {
680                 error = rt_getifa(rtinfo);
681                 if (error != 0)
682                         goto done;
683         }
684         if (rtinfo->rti_gateway != NULL) {
685                 error = rt_setgate(rt, rt_key(rt), rtinfo->rti_gateway,
686                                    RTL_REPORTMSG);
687                 if (error != 0)
688                         goto done;
689         }
690         if ((ifa = rtinfo->rti_ifa) != NULL) {
691                 struct ifaddr *oifa = rt->rt_ifa;
692
693                 if (oifa != ifa) {
694                         if (oifa && oifa->ifa_rtrequest)
695                                 oifa->ifa_rtrequest(RTM_DELETE, rt, rtinfo);
696                         IFAFREE(rt->rt_ifa);
697                         IFAREF(ifa);
698                         rt->rt_ifa = ifa;
699                         rt->rt_ifp = rtinfo->rti_ifp;
700                 }
701         }
702         rt_setmetrics(rtm->rtm_inits, &rtm->rtm_rmx, &rt->rt_rmx);
703         if (rt->rt_ifa && rt->rt_ifa->ifa_rtrequest)
704                 rt->rt_ifa->ifa_rtrequest(RTM_ADD, rt, rtinfo);
705         if (rtinfo->rti_genmask != NULL)
706                 rt->rt_genmask = rtinfo->rti_genmask;
707         rtm->rtm_index = rt->rt_ifp->if_index;
708 done:
709         return error;
710 }
711
712 static int
713 route_output_lock_callback(int cmd, struct rt_addrinfo *rtinfo,
714                            struct rtentry *rt, void *arg)
715 {
716         struct rt_msghdr *rtm = arg;
717
718         rt->rt_rmx.rmx_locks &= ~(rtm->rtm_inits);
719         rt->rt_rmx.rmx_locks |=
720                 (rtm->rtm_inits & rtm->rtm_rmx.rmx_locks);
721         return 0;
722 }
723
724 static void
725 rt_setmetrics(u_long which, struct rt_metrics *in, struct rt_metrics *out)
726 {
727 #define setmetric(flag, elt) if (which & (flag)) out->elt = in->elt;
728         setmetric(RTV_RPIPE, rmx_recvpipe);
729         setmetric(RTV_SPIPE, rmx_sendpipe);
730         setmetric(RTV_SSTHRESH, rmx_ssthresh);
731         setmetric(RTV_RTT, rmx_rtt);
732         setmetric(RTV_RTTVAR, rmx_rttvar);
733         setmetric(RTV_HOPCOUNT, rmx_hopcount);
734         setmetric(RTV_MTU, rmx_mtu);
735         setmetric(RTV_EXPIRE, rmx_expire);
736 #undef setmetric
737 }
738
739 #define ROUNDUP(a) \
740         ((a) > 0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) : sizeof(long))
741
742 /*
743  * Extract the addresses of the passed sockaddrs.
744  * Do a little sanity checking so as to avoid bad memory references.
745  * This data is derived straight from userland.
746  */
747 static int
748 rt_xaddrs(char *cp, char *cplim, struct rt_addrinfo *rtinfo)
749 {
750         struct sockaddr *sa;
751         int i;
752
753         for (i = 0; (i < RTAX_MAX) && (cp < cplim); i++) {
754                 if ((rtinfo->rti_addrs & (1 << i)) == 0)
755                         continue;
756                 sa = (struct sockaddr *)cp;
757                 /*
758                  * It won't fit.
759                  */
760                 if ((cp + sa->sa_len) > cplim) {
761                         return (EINVAL);
762                 }
763
764                 /*
765                  * There are no more...  Quit now.
766                  * If there are more bits, they are in error.
767                  * I've seen this.  route(1) can evidently generate these. 
768                  * This causes kernel to core dump.
769                  * For compatibility, if we see this, point to a safe address.
770                  */
771                 if (sa->sa_len == 0) {
772                         static struct sockaddr sa_zero = {
773                                 sizeof sa_zero, AF_INET,
774                         };
775
776                         rtinfo->rti_info[i] = &sa_zero;
777                         kprintf("rtsock: received more addr bits than sockaddrs.\n");
778                         return (0); /* should be EINVAL but for compat */
779                 }
780
781                 /* Accept the sockaddr. */
782                 rtinfo->rti_info[i] = sa;
783                 cp += ROUNDUP(sa->sa_len);
784         }
785         return (0);
786 }
787
788 static int
789 rt_msghdrsize(int type)
790 {
791         switch (type) {
792         case RTM_DELADDR:
793         case RTM_NEWADDR:
794                 return sizeof(struct ifa_msghdr);
795         case RTM_DELMADDR:
796         case RTM_NEWMADDR:
797                 return sizeof(struct ifma_msghdr);
798         case RTM_IFINFO:
799                 return sizeof(struct if_msghdr);
800         case RTM_IFANNOUNCE:
801         case RTM_IEEE80211:
802                 return sizeof(struct if_announcemsghdr);
803         default:
804                 return sizeof(struct rt_msghdr);
805         }
806 }
807
808 static int
809 rt_msgsize(int type, struct rt_addrinfo *rtinfo)
810 {
811         int len, i;
812
813         len = rt_msghdrsize(type);
814         for (i = 0; i < RTAX_MAX; i++) {
815                 if (rtinfo->rti_info[i] != NULL)
816                         len += ROUNDUP(rtinfo->rti_info[i]->sa_len);
817         }
818         len = ALIGN(len);
819         return len;
820 }
821
822 /*
823  * Build a routing message in a buffer.
824  * Copy the addresses in the rtinfo->rti_info[] sockaddr array
825  * to the end of the buffer after the message header.
826  *
827  * Set the rtinfo->rti_addrs bitmask of addresses present in rtinfo->rti_info[].
828  * This side-effect can be avoided if we reorder the addrs bitmask field in all
829  * the route messages to line up so we can set it here instead of back in the
830  * calling routine.
831  */
832 static void
833 rt_msg_buffer(int type, struct rt_addrinfo *rtinfo, void *buf, int msglen)
834 {
835         struct rt_msghdr *rtm;
836         char *cp;
837         int dlen, i;
838
839         rtm = (struct rt_msghdr *) buf;
840         rtm->rtm_version = RTM_VERSION;
841         rtm->rtm_type = type;
842         rtm->rtm_msglen = msglen;
843
844         cp = (char *)buf + rt_msghdrsize(type);
845         rtinfo->rti_addrs = 0;
846         for (i = 0; i < RTAX_MAX; i++) {
847                 struct sockaddr *sa;
848
849                 if ((sa = rtinfo->rti_info[i]) == NULL)
850                         continue;
851                 rtinfo->rti_addrs |= (1 << i);
852                 dlen = ROUNDUP(sa->sa_len);
853                 bcopy(sa, cp, dlen);
854                 cp += dlen;
855         }
856 }
857
858 /*
859  * Build a routing message in a mbuf chain.
860  * Copy the addresses in the rtinfo->rti_info[] sockaddr array
861  * to the end of the mbuf after the message header.
862  *
863  * Set the rtinfo->rti_addrs bitmask of addresses present in rtinfo->rti_info[].
864  * This side-effect can be avoided if we reorder the addrs bitmask field in all
865  * the route messages to line up so we can set it here instead of back in the
866  * calling routine.
867  */
868 static struct mbuf *
869 rt_msg_mbuf(int type, struct rt_addrinfo *rtinfo)
870 {
871         struct mbuf *m;
872         struct rt_msghdr *rtm;
873         int hlen, len;
874         int i;
875
876         hlen = rt_msghdrsize(type);
877         KASSERT(hlen <= MCLBYTES, ("rt_msg_mbuf: hlen %d doesn't fit", hlen));
878
879         m = m_getl(hlen, MB_DONTWAIT, MT_DATA, M_PKTHDR, NULL);
880         if (m == NULL)
881                 return (NULL);
882         mbuftrackid(m, 32);
883         m->m_pkthdr.len = m->m_len = hlen;
884         m->m_pkthdr.rcvif = NULL;
885         rtinfo->rti_addrs = 0;
886         len = hlen;
887         for (i = 0; i < RTAX_MAX; i++) {
888                 struct sockaddr *sa;
889                 int dlen;
890
891                 if ((sa = rtinfo->rti_info[i]) == NULL)
892                         continue;
893                 rtinfo->rti_addrs |= (1 << i);
894                 dlen = ROUNDUP(sa->sa_len);
895                 m_copyback(m, len, dlen, (caddr_t)sa); /* can grow mbuf chain */
896                 len += dlen;
897         }
898         if (m->m_pkthdr.len != len) { /* one of the m_copyback() calls failed */
899                 m_freem(m);
900                 return (NULL);
901         }
902         rtm = mtod(m, struct rt_msghdr *);
903         bzero(rtm, hlen);
904         rtm->rtm_msglen = len;
905         rtm->rtm_version = RTM_VERSION;
906         rtm->rtm_type = type;
907         return (m);
908 }
909
910 /*
911  * This routine is called to generate a message from the routing
912  * socket indicating that a redirect has occurred, a routing lookup
913  * has failed, or that a protocol has detected timeouts to a particular
914  * destination.
915  */
916 void
917 rt_missmsg(int type, struct rt_addrinfo *rtinfo, int flags, int error)
918 {
919         struct sockaddr *dst = rtinfo->rti_info[RTAX_DST];
920         struct rt_msghdr *rtm;
921         struct mbuf *m;
922
923         if (route_cb.any_count == 0)
924                 return;
925         m = rt_msg_mbuf(type, rtinfo);
926         if (m == NULL)
927                 return;
928         rtm = mtod(m, struct rt_msghdr *);
929         rtm->rtm_flags = RTF_DONE | flags;
930         rtm->rtm_errno = error;
931         rtm->rtm_addrs = rtinfo->rti_addrs;
932         rts_input(m, familyof(dst));
933 }
934
935 void
936 rt_dstmsg(int type, struct sockaddr *dst, int error)
937 {
938         struct rt_msghdr *rtm;
939         struct rt_addrinfo addrs;
940         struct mbuf *m;
941
942         if (route_cb.any_count == 0)
943                 return;
944         bzero(&addrs, sizeof(struct rt_addrinfo));
945         addrs.rti_info[RTAX_DST] = dst;
946         m = rt_msg_mbuf(type, &addrs);
947         if (m == NULL)
948                 return;
949         rtm = mtod(m, struct rt_msghdr *);
950         rtm->rtm_flags = RTF_DONE;
951         rtm->rtm_errno = error;
952         rtm->rtm_addrs = addrs.rti_addrs;
953         rts_input(m, familyof(dst));
954 }
955
956 /*
957  * This routine is called to generate a message from the routing
958  * socket indicating that the status of a network interface has changed.
959  */
960 void
961 rt_ifmsg(struct ifnet *ifp)
962 {
963         struct if_msghdr *ifm;
964         struct mbuf *m;
965         struct rt_addrinfo rtinfo;
966
967         if (route_cb.any_count == 0)
968                 return;
969         bzero(&rtinfo, sizeof(struct rt_addrinfo));
970         m = rt_msg_mbuf(RTM_IFINFO, &rtinfo);
971         if (m == NULL)
972                 return;
973         ifm = mtod(m, struct if_msghdr *);
974         ifm->ifm_index = ifp->if_index;
975         ifm->ifm_flags = ifp->if_flags;
976         ifm->ifm_data = ifp->if_data;
977         ifm->ifm_addrs = 0;
978         rts_input(m, 0);
979 }
980
981 static void
982 rt_ifamsg(int cmd, struct ifaddr *ifa)
983 {
984         struct ifa_msghdr *ifam;
985         struct rt_addrinfo rtinfo;
986         struct mbuf *m;
987         struct ifnet *ifp = ifa->ifa_ifp;
988
989         bzero(&rtinfo, sizeof(struct rt_addrinfo));
990         rtinfo.rti_ifaaddr = ifa->ifa_addr;
991         rtinfo.rti_ifpaddr =
992                 TAILQ_FIRST(&ifp->if_addrheads[mycpuid])->ifa->ifa_addr;
993         rtinfo.rti_netmask = ifa->ifa_netmask;
994         rtinfo.rti_bcastaddr = ifa->ifa_dstaddr;
995
996         m = rt_msg_mbuf(cmd, &rtinfo);
997         if (m == NULL)
998                 return;
999
1000         ifam = mtod(m, struct ifa_msghdr *);
1001         ifam->ifam_index = ifp->if_index;
1002         ifam->ifam_metric = ifa->ifa_metric;
1003         ifam->ifam_flags = ifa->ifa_flags;
1004         ifam->ifam_addrs = rtinfo.rti_addrs;
1005
1006         rts_input(m, familyof(ifa->ifa_addr));
1007 }
1008
1009 void
1010 rt_rtmsg(int cmd, struct rtentry *rt, struct ifnet *ifp, int error)
1011 {
1012         struct rt_msghdr *rtm;
1013         struct rt_addrinfo rtinfo;
1014         struct mbuf *m;
1015         struct sockaddr *dst;
1016
1017         if (rt == NULL)
1018                 return;
1019
1020         bzero(&rtinfo, sizeof(struct rt_addrinfo));
1021         rtinfo.rti_dst = dst = rt_key(rt);
1022         rtinfo.rti_gateway = rt->rt_gateway;
1023         rtinfo.rti_netmask = rt_mask(rt);
1024         if (ifp != NULL) {
1025                 rtinfo.rti_ifpaddr =
1026                 TAILQ_FIRST(&ifp->if_addrheads[mycpuid])->ifa->ifa_addr;
1027         }
1028         rtinfo.rti_ifaaddr = rt->rt_ifa->ifa_addr;
1029
1030         m = rt_msg_mbuf(cmd, &rtinfo);
1031         if (m == NULL)
1032                 return;
1033
1034         rtm = mtod(m, struct rt_msghdr *);
1035         if (ifp != NULL)
1036                 rtm->rtm_index = ifp->if_index;
1037         rtm->rtm_flags |= rt->rt_flags;
1038         rtm->rtm_errno = error;
1039         rtm->rtm_addrs = rtinfo.rti_addrs;
1040
1041         rts_input(m, familyof(dst));
1042 }
1043
1044 /*
1045  * This is called to generate messages from the routing socket
1046  * indicating a network interface has had addresses associated with it.
1047  * if we ever reverse the logic and replace messages TO the routing
1048  * socket indicate a request to configure interfaces, then it will
1049  * be unnecessary as the routing socket will automatically generate
1050  * copies of it.
1051  */
1052 void
1053 rt_newaddrmsg(int cmd, struct ifaddr *ifa, int error, struct rtentry *rt)
1054 {
1055 #ifdef SCTP
1056         /*
1057          * notify the SCTP stack
1058          * this will only get called when an address is added/deleted
1059          * XXX pass the ifaddr struct instead if ifa->ifa_addr...
1060          */
1061         if (cmd == RTM_ADD)
1062                 sctp_add_ip_address(ifa);
1063         else if (cmd == RTM_DELETE)
1064                 sctp_delete_ip_address(ifa);
1065 #endif /* SCTP */
1066
1067         if (route_cb.any_count == 0)
1068                 return;
1069
1070         if (cmd == RTM_ADD) {
1071                 rt_ifamsg(RTM_NEWADDR, ifa);
1072                 rt_rtmsg(RTM_ADD, rt, ifa->ifa_ifp, error);
1073         } else {
1074                 KASSERT((cmd == RTM_DELETE), ("unknown cmd %d", cmd));
1075                 rt_rtmsg(RTM_DELETE, rt, ifa->ifa_ifp, error);
1076                 rt_ifamsg(RTM_DELADDR, ifa);
1077         }
1078 }
1079
1080 /*
1081  * This is the analogue to the rt_newaddrmsg which performs the same
1082  * function but for multicast group memberhips.  This is easier since
1083  * there is no route state to worry about.
1084  */
1085 void
1086 rt_newmaddrmsg(int cmd, struct ifmultiaddr *ifma)
1087 {
1088         struct rt_addrinfo rtinfo;
1089         struct mbuf *m = NULL;
1090         struct ifnet *ifp = ifma->ifma_ifp;
1091         struct ifma_msghdr *ifmam;
1092
1093         if (route_cb.any_count == 0)
1094                 return;
1095
1096         bzero(&rtinfo, sizeof(struct rt_addrinfo));
1097         rtinfo.rti_ifaaddr = ifma->ifma_addr;
1098         if (ifp != NULL && !TAILQ_EMPTY(&ifp->if_addrheads[mycpuid])) {
1099                 rtinfo.rti_ifpaddr =
1100                 TAILQ_FIRST(&ifp->if_addrheads[mycpuid])->ifa->ifa_addr;
1101         }
1102         /*
1103          * If a link-layer address is present, present it as a ``gateway''
1104          * (similarly to how ARP entries, e.g., are presented).
1105          */
1106         rtinfo.rti_gateway = ifma->ifma_lladdr;
1107
1108         m = rt_msg_mbuf(cmd, &rtinfo);
1109         if (m == NULL)
1110                 return;
1111
1112         ifmam = mtod(m, struct ifma_msghdr *);
1113         ifmam->ifmam_index = ifp->if_index;
1114         ifmam->ifmam_addrs = rtinfo.rti_addrs;
1115
1116         rts_input(m, familyof(ifma->ifma_addr));
1117 }
1118
1119 static struct mbuf *
1120 rt_makeifannouncemsg(struct ifnet *ifp, int type, int what,
1121                      struct rt_addrinfo *info)
1122 {
1123         struct if_announcemsghdr *ifan;
1124         struct mbuf *m;
1125
1126         if (route_cb.any_count == 0)
1127                 return NULL;
1128
1129         bzero(info, sizeof(*info));
1130         m = rt_msg_mbuf(type, info);
1131         if (m == NULL)
1132                 return NULL;
1133
1134         ifan = mtod(m, struct if_announcemsghdr *);
1135         ifan->ifan_index = ifp->if_index;
1136         strlcpy(ifan->ifan_name, ifp->if_xname, sizeof ifan->ifan_name);
1137         ifan->ifan_what = what;
1138         return m;
1139 }
1140
1141 /*
1142  * This is called to generate routing socket messages indicating
1143  * IEEE80211 wireless events.
1144  * XXX we piggyback on the RTM_IFANNOUNCE msg format in a clumsy way.
1145  */
1146 void
1147 rt_ieee80211msg(struct ifnet *ifp, int what, void *data, size_t data_len)
1148 {
1149         struct rt_addrinfo info;
1150         struct mbuf *m;
1151
1152         m = rt_makeifannouncemsg(ifp, RTM_IEEE80211, what, &info);
1153         if (m == NULL)
1154                 return;
1155
1156         /*
1157          * Append the ieee80211 data.  Try to stick it in the
1158          * mbuf containing the ifannounce msg; otherwise allocate
1159          * a new mbuf and append.
1160          *
1161          * NB: we assume m is a single mbuf.
1162          */
1163         if (data_len > M_TRAILINGSPACE(m)) {
1164                 struct mbuf *n = m_get(MB_DONTWAIT, MT_DATA);
1165                 if (n == NULL) {
1166                         m_freem(m);
1167                         return;
1168                 }
1169                 bcopy(data, mtod(n, void *), data_len);
1170                 n->m_len = data_len;
1171                 m->m_next = n;
1172         } else if (data_len > 0) {
1173                 bcopy(data, mtod(m, u_int8_t *) + m->m_len, data_len);
1174                 m->m_len += data_len;
1175         }
1176         mbuftrackid(m, 33);
1177         if (m->m_flags & M_PKTHDR)
1178                 m->m_pkthdr.len += data_len;
1179         mtod(m, struct if_announcemsghdr *)->ifan_msglen += data_len;
1180         rts_input(m, 0);
1181 }
1182
1183 /*
1184  * This is called to generate routing socket messages indicating
1185  * network interface arrival and departure.
1186  */
1187 void
1188 rt_ifannouncemsg(struct ifnet *ifp, int what)
1189 {
1190         struct rt_addrinfo addrinfo;
1191         struct mbuf *m;
1192
1193         m = rt_makeifannouncemsg(ifp, RTM_IFANNOUNCE, what, &addrinfo);
1194         if (m != NULL)
1195                 rts_input(m, 0);
1196 }
1197
1198 static int
1199 resizewalkarg(struct walkarg *w, int len)
1200 {
1201         void *newptr;
1202
1203         newptr = kmalloc(len, M_RTABLE, M_INTWAIT | M_NULLOK);
1204         if (newptr == NULL)
1205                 return (ENOMEM);
1206         if (w->w_tmem != NULL)
1207                 kfree(w->w_tmem, M_RTABLE);
1208         w->w_tmem = newptr;
1209         w->w_tmemsize = len;
1210         return (0);
1211 }
1212
1213 /*
1214  * This is used in dumping the kernel table via sysctl().
1215  */
1216 int
1217 sysctl_dumpentry(struct radix_node *rn, void *vw)
1218 {
1219         struct walkarg *w = vw;
1220         struct rtentry *rt = (struct rtentry *)rn;
1221         struct rt_addrinfo rtinfo;
1222         int error, msglen;
1223
1224         if (w->w_op == NET_RT_FLAGS && !(rt->rt_flags & w->w_arg))
1225                 return 0;
1226
1227         bzero(&rtinfo, sizeof(struct rt_addrinfo));
1228         rtinfo.rti_dst = rt_key(rt);
1229         rtinfo.rti_gateway = rt->rt_gateway;
1230         rtinfo.rti_netmask = rt_mask(rt);
1231         rtinfo.rti_genmask = rt->rt_genmask;
1232         if (rt->rt_ifp != NULL) {
1233                 rtinfo.rti_ifpaddr =
1234                 TAILQ_FIRST(&rt->rt_ifp->if_addrheads[mycpuid])->ifa->ifa_addr;
1235                 rtinfo.rti_ifaaddr = rt->rt_ifa->ifa_addr;
1236                 if (rt->rt_ifp->if_flags & IFF_POINTOPOINT)
1237                         rtinfo.rti_bcastaddr = rt->rt_ifa->ifa_dstaddr;
1238         }
1239         msglen = rt_msgsize(RTM_GET, &rtinfo);
1240         if (w->w_tmemsize < msglen && resizewalkarg(w, msglen) != 0)
1241                 return (ENOMEM);
1242         rt_msg_buffer(RTM_GET, &rtinfo, w->w_tmem, msglen);
1243         if (w->w_req != NULL) {
1244                 struct rt_msghdr *rtm = w->w_tmem;
1245
1246                 rtm->rtm_flags = rt->rt_flags;
1247                 rtm->rtm_use = rt->rt_use;
1248                 rtm->rtm_rmx = rt->rt_rmx;
1249                 rtm->rtm_index = rt->rt_ifp->if_index;
1250                 rtm->rtm_errno = rtm->rtm_pid = rtm->rtm_seq = 0;
1251                 rtm->rtm_addrs = rtinfo.rti_addrs;
1252                 error = SYSCTL_OUT(w->w_req, rtm, msglen);
1253                 return (error);
1254         }
1255         return (0);
1256 }
1257
1258 static int
1259 sysctl_iflist(int af, struct walkarg *w)
1260 {
1261         struct ifnet *ifp;
1262         struct rt_addrinfo rtinfo;
1263         int msglen, error;
1264
1265         bzero(&rtinfo, sizeof(struct rt_addrinfo));
1266         TAILQ_FOREACH(ifp, &ifnet, if_link) {
1267                 struct ifaddr_container *ifac;
1268                 struct ifaddr *ifa;
1269
1270                 if (w->w_arg && w->w_arg != ifp->if_index)
1271                         continue;
1272                 ifac = TAILQ_FIRST(&ifp->if_addrheads[mycpuid]);
1273                 ifa = ifac->ifa;
1274                 rtinfo.rti_ifpaddr = ifa->ifa_addr;
1275                 msglen = rt_msgsize(RTM_IFINFO, &rtinfo);
1276                 if (w->w_tmemsize < msglen && resizewalkarg(w, msglen) != 0)
1277                         return (ENOMEM);
1278                 rt_msg_buffer(RTM_IFINFO, &rtinfo, w->w_tmem, msglen);
1279                 rtinfo.rti_ifpaddr = NULL;
1280                 if (w->w_req != NULL && w->w_tmem != NULL) {
1281                         struct if_msghdr *ifm = w->w_tmem;
1282
1283                         ifm->ifm_index = ifp->if_index;
1284                         ifm->ifm_flags = ifp->if_flags;
1285                         ifm->ifm_data = ifp->if_data;
1286                         ifm->ifm_addrs = rtinfo.rti_addrs;
1287                         error = SYSCTL_OUT(w->w_req, ifm, msglen);
1288                         if (error)
1289                                 return (error);
1290                 }
1291                 while ((ifac = TAILQ_NEXT(ifac, ifa_link)) != NULL) {
1292                         ifa = ifac->ifa;
1293
1294                         if (af && af != ifa->ifa_addr->sa_family)
1295                                 continue;
1296                         if (curproc->p_ucred->cr_prison &&
1297                             prison_if(curproc->p_ucred, ifa->ifa_addr))
1298                                 continue;
1299                         rtinfo.rti_ifaaddr = ifa->ifa_addr;
1300                         rtinfo.rti_netmask = ifa->ifa_netmask;
1301                         rtinfo.rti_bcastaddr = ifa->ifa_dstaddr;
1302                         msglen = rt_msgsize(RTM_NEWADDR, &rtinfo);
1303                         if (w->w_tmemsize < msglen &&
1304                             resizewalkarg(w, msglen) != 0)
1305                                 return (ENOMEM);
1306                         rt_msg_buffer(RTM_NEWADDR, &rtinfo, w->w_tmem, msglen);
1307                         if (w->w_req != NULL) {
1308                                 struct ifa_msghdr *ifam = w->w_tmem;
1309
1310                                 ifam->ifam_index = ifa->ifa_ifp->if_index;
1311                                 ifam->ifam_flags = ifa->ifa_flags;
1312                                 ifam->ifam_metric = ifa->ifa_metric;
1313                                 ifam->ifam_addrs = rtinfo.rti_addrs;
1314                                 error = SYSCTL_OUT(w->w_req, w->w_tmem, msglen);
1315                                 if (error)
1316                                         return (error);
1317                         }
1318                 }
1319                 rtinfo.rti_netmask = NULL;
1320                 rtinfo.rti_ifaaddr = NULL;
1321                 rtinfo.rti_bcastaddr = NULL;
1322         }
1323         return (0);
1324 }
1325
1326 static int
1327 sysctl_rtsock(SYSCTL_HANDLER_ARGS)
1328 {
1329         int     *name = (int *)arg1;
1330         u_int   namelen = arg2;
1331         struct radix_node_head *rnh;
1332         int     i, error = EINVAL;
1333         int     origcpu;
1334         u_char  af;
1335         struct  walkarg w;
1336
1337         name ++;
1338         namelen--;
1339         if (req->newptr)
1340                 return (EPERM);
1341         if (namelen != 3 && namelen != 4)
1342                 return (EINVAL);
1343         af = name[0];
1344         bzero(&w, sizeof w);
1345         w.w_op = name[1];
1346         w.w_arg = name[2];
1347         w.w_req = req;
1348
1349         /*
1350          * Optional third argument specifies cpu, used primarily for
1351          * debugging the route table.
1352          */
1353         if (namelen == 4) {
1354                 if (name[3] < 0 || name[3] >= ncpus)
1355                         return (EINVAL);
1356                 origcpu = mycpuid;
1357                 lwkt_migratecpu(name[3]);
1358         } else {
1359                 origcpu = -1;
1360         }
1361         crit_enter();
1362         switch (w.w_op) {
1363         case NET_RT_DUMP:
1364         case NET_RT_FLAGS:
1365                 for (i = 1; i <= AF_MAX; i++)
1366                         if ((rnh = rt_tables[mycpuid][i]) &&
1367                             (af == 0 || af == i) &&
1368                             (error = rnh->rnh_walktree(rnh,
1369                                                        sysctl_dumpentry, &w)))
1370                                 break;
1371                 break;
1372
1373         case NET_RT_IFLIST:
1374                 error = sysctl_iflist(af, &w);
1375         }
1376         crit_exit();
1377         if (w.w_tmem != NULL)
1378                 kfree(w.w_tmem, M_RTABLE);
1379         if (origcpu >= 0)
1380                 lwkt_migratecpu(origcpu);
1381         return (error);
1382 }
1383
1384 SYSCTL_NODE(_net, PF_ROUTE, routetable, CTLFLAG_RD, sysctl_rtsock, "");
1385
1386 /*
1387  * Definitions of protocols supported in the ROUTE domain.
1388  */
1389
1390 static struct domain routedomain;               /* or at least forward */
1391
1392 static struct protosw routesw[] = {
1393 { SOCK_RAW,     &routedomain,   0,              PR_ATOMIC|PR_ADDR,
1394   0,            route_output,   raw_ctlinput,   0,
1395   cpu0_soport,  cpu0_ctlport,
1396   raw_init,     0,              0,              0,
1397   &route_usrreqs
1398 }
1399 };
1400
1401 static struct domain routedomain = {
1402         PF_ROUTE, "route", NULL, NULL, NULL,
1403         routesw, &routesw[(sizeof routesw)/(sizeof routesw[0])],
1404 };
1405
1406 DOMAIN_SET(route);
1407