atkbdc - Do not attach PS2 controller via legacy ISA bus, if FADT says so.
[dragonfly.git] / sys / net / rtsock.c
blobf95856943315b4f6441ae0d6c551d6a308026c9b
1 /*
2 * Copyright (c) 2004, 2005 The DragonFly Project. All rights reserved.
4 * This code is derived from software contributed to The DragonFly Project
5 * by Jeffrey M. Hsu.
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.
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.
34 * Copyright (c) 1988, 1991, 1993
35 * The Regents of the University of California. All rights reserved.
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. Neither the name of the University nor the names of its contributors
46 * may be used to endorse or promote products derived from this software
47 * without specific prior written permission.
49 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
50 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
51 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
52 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
53 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
54 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
55 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
56 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
57 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
58 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
59 * SUCH DAMAGE.
61 * @(#)rtsock.c 8.7 (Berkeley) 10/12/95
62 * $FreeBSD: src/sys/net/rtsock.c,v 1.44.2.11 2002/12/04 14:05:41 ru Exp $
65 #include <sys/param.h>
66 #include <sys/systm.h>
67 #include <sys/kernel.h>
68 #include <sys/sysctl.h>
69 #include <sys/proc.h>
70 #include <sys/priv.h>
71 #include <sys/malloc.h>
72 #include <sys/mbuf.h>
73 #include <sys/protosw.h>
74 #include <sys/socket.h>
75 #include <sys/socketvar.h>
76 #include <sys/domain.h>
78 #include <sys/thread2.h>
79 #include <sys/socketvar2.h>
81 #include <net/if.h>
82 #include <net/route.h>
83 #include <net/raw_cb.h>
84 #include <net/netmsg2.h>
85 #include <net/netisr2.h>
87 MALLOC_DEFINE(M_RTABLE, "routetbl", "routing tables");
89 static struct route_cb {
90 int ip_count;
91 int ip6_count;
92 int ns_count;
93 int any_count;
94 } route_cb;
96 static const struct sockaddr route_src = { 2, PF_ROUTE, };
98 struct walkarg {
99 int w_tmemsize;
100 int w_op, w_arg;
101 void *w_tmem;
102 struct sysctl_req *w_req;
105 #ifndef RTTABLE_DUMP_MSGCNT_MAX
106 /* Should be large enough for dupkeys */
107 #define RTTABLE_DUMP_MSGCNT_MAX 64
108 #endif
110 struct rttable_walkarg {
111 int w_op;
112 int w_arg;
113 int w_bufsz;
114 void *w_buf;
116 int w_buflen;
118 const char *w_key;
119 const char *w_mask;
121 struct sockaddr_storage w_key0;
122 struct sockaddr_storage w_mask0;
125 struct netmsg_rttable_walk {
126 struct netmsg_base base;
127 int af;
128 struct rttable_walkarg *w;
131 static struct mbuf *
132 rt_msg_mbuf (int, struct rt_addrinfo *);
133 static void rt_msg_buffer (int, struct rt_addrinfo *, void *buf, int len);
134 static int rt_msgsize(int type, const struct rt_addrinfo *rtinfo);
135 static int rt_xaddrs (char *, char *, struct rt_addrinfo *);
136 static int sysctl_rttable(int af, struct sysctl_req *req, int op, int arg);
137 static int sysctl_iflist (int af, struct walkarg *w);
138 static int route_output(struct mbuf *, struct socket *, ...);
139 static void rt_setmetrics (u_long, struct rt_metrics *,
140 struct rt_metrics *);
143 * It really doesn't make any sense at all for this code to share much
144 * with raw_usrreq.c, since its functionality is so restricted. XXX
146 static void
147 rts_abort(netmsg_t msg)
149 crit_enter();
150 raw_usrreqs.pru_abort(msg);
151 /* msg invalid now */
152 crit_exit();
155 /* pru_accept is EOPNOTSUPP */
157 static void
158 rts_attach(netmsg_t msg)
160 struct socket *so = msg->base.nm_so;
161 struct pru_attach_info *ai = msg->attach.nm_ai;
162 struct rawcb *rp;
163 int proto = msg->attach.nm_proto;
164 int error;
166 crit_enter();
167 if (sotorawcb(so) != NULL) {
168 error = EISCONN;
169 goto done;
172 rp = kmalloc(sizeof *rp, M_PCB, M_WAITOK | M_ZERO);
175 * The critical section is necessary to block protocols from sending
176 * error notifications (like RTM_REDIRECT or RTM_LOSING) while
177 * this PCB is extant but incompletely initialized.
178 * Probably we should try to do more of this work beforehand and
179 * eliminate the critical section.
181 so->so_pcb = rp;
182 soreference(so); /* so_pcb assignment */
183 error = raw_attach(so, proto, ai->sb_rlimit);
184 rp = sotorawcb(so);
185 if (error) {
186 kfree(rp, M_PCB);
187 goto done;
189 switch(rp->rcb_proto.sp_protocol) {
190 case AF_INET:
191 route_cb.ip_count++;
192 break;
193 case AF_INET6:
194 route_cb.ip6_count++;
195 break;
197 rp->rcb_faddr = &route_src;
198 route_cb.any_count++;
199 soisconnected(so);
200 so->so_options |= SO_USELOOPBACK;
201 error = 0;
202 done:
203 crit_exit();
204 lwkt_replymsg(&msg->lmsg, error);
207 static void
208 rts_bind(netmsg_t msg)
210 crit_enter();
211 raw_usrreqs.pru_bind(msg); /* xxx just EINVAL */
212 /* msg invalid now */
213 crit_exit();
216 static void
217 rts_connect(netmsg_t msg)
219 crit_enter();
220 raw_usrreqs.pru_connect(msg); /* XXX just EINVAL */
221 /* msg invalid now */
222 crit_exit();
225 /* pru_connect2 is EOPNOTSUPP */
226 /* pru_control is EOPNOTSUPP */
228 static void
229 rts_detach(netmsg_t msg)
231 struct socket *so = msg->base.nm_so;
232 struct rawcb *rp = sotorawcb(so);
234 crit_enter();
235 if (rp != NULL) {
236 switch(rp->rcb_proto.sp_protocol) {
237 case AF_INET:
238 route_cb.ip_count--;
239 break;
240 case AF_INET6:
241 route_cb.ip6_count--;
242 break;
244 route_cb.any_count--;
246 raw_usrreqs.pru_detach(msg);
247 /* msg invalid now */
248 crit_exit();
251 static void
252 rts_disconnect(netmsg_t msg)
254 crit_enter();
255 raw_usrreqs.pru_disconnect(msg);
256 /* msg invalid now */
257 crit_exit();
260 /* pru_listen is EOPNOTSUPP */
262 static void
263 rts_peeraddr(netmsg_t msg)
265 crit_enter();
266 raw_usrreqs.pru_peeraddr(msg);
267 /* msg invalid now */
268 crit_exit();
271 /* pru_rcvd is EOPNOTSUPP */
272 /* pru_rcvoob is EOPNOTSUPP */
274 static void
275 rts_send(netmsg_t msg)
277 crit_enter();
278 raw_usrreqs.pru_send(msg);
279 /* msg invalid now */
280 crit_exit();
283 /* pru_sense is null */
285 static void
286 rts_shutdown(netmsg_t msg)
288 crit_enter();
289 raw_usrreqs.pru_shutdown(msg);
290 /* msg invalid now */
291 crit_exit();
294 static void
295 rts_sockaddr(netmsg_t msg)
297 crit_enter();
298 raw_usrreqs.pru_sockaddr(msg);
299 /* msg invalid now */
300 crit_exit();
303 static struct pr_usrreqs route_usrreqs = {
304 .pru_abort = rts_abort,
305 .pru_accept = pr_generic_notsupp,
306 .pru_attach = rts_attach,
307 .pru_bind = rts_bind,
308 .pru_connect = rts_connect,
309 .pru_connect2 = pr_generic_notsupp,
310 .pru_control = pr_generic_notsupp,
311 .pru_detach = rts_detach,
312 .pru_disconnect = rts_disconnect,
313 .pru_listen = pr_generic_notsupp,
314 .pru_peeraddr = rts_peeraddr,
315 .pru_rcvd = pr_generic_notsupp,
316 .pru_rcvoob = pr_generic_notsupp,
317 .pru_send = rts_send,
318 .pru_sense = pru_sense_null,
319 .pru_shutdown = rts_shutdown,
320 .pru_sockaddr = rts_sockaddr,
321 .pru_sosend = sosend,
322 .pru_soreceive = soreceive
325 static __inline sa_family_t
326 familyof(struct sockaddr *sa)
328 return (sa != NULL ? sa->sa_family : 0);
332 * Routing socket input function. The packet must be serialized onto cpu 0.
333 * We use the cpu0_soport() netisr processing loop to handle it.
335 * This looks messy but it means that anyone, including interrupt code,
336 * can send a message to the routing socket.
338 static void
339 rts_input_handler(netmsg_t msg)
341 static const struct sockaddr route_dst = { 2, PF_ROUTE, };
342 struct sockproto route_proto;
343 struct netmsg_packet *pmsg = &msg->packet;
344 struct mbuf *m;
345 sa_family_t family;
346 struct rawcb *skip;
348 family = pmsg->base.lmsg.u.ms_result;
349 route_proto.sp_family = PF_ROUTE;
350 route_proto.sp_protocol = family;
352 m = pmsg->nm_packet;
353 M_ASSERTPKTHDR(m);
355 skip = m->m_pkthdr.header;
356 m->m_pkthdr.header = NULL;
358 raw_input(m, &route_proto, &route_src, &route_dst, skip);
361 static void
362 rts_input_skip(struct mbuf *m, sa_family_t family, struct rawcb *skip)
364 struct netmsg_packet *pmsg;
365 lwkt_port_t port;
367 M_ASSERTPKTHDR(m);
369 port = netisr_cpuport(0); /* XXX same as for routing socket */
370 pmsg = &m->m_hdr.mh_netmsg;
371 netmsg_init(&pmsg->base, NULL, &netisr_apanic_rport,
372 0, rts_input_handler);
373 pmsg->nm_packet = m;
374 pmsg->base.lmsg.u.ms_result = family;
375 m->m_pkthdr.header = skip; /* XXX steal field in pkthdr */
376 lwkt_sendmsg(port, &pmsg->base.lmsg);
379 static __inline void
380 rts_input(struct mbuf *m, sa_family_t family)
382 rts_input_skip(m, family, NULL);
385 static void *
386 reallocbuf_nofree(void *ptr, size_t len, size_t olen)
388 void *newptr;
390 newptr = kmalloc(len, M_RTABLE, M_INTWAIT | M_NULLOK);
391 if (newptr == NULL)
392 return NULL;
393 bcopy(ptr, newptr, olen);
394 return (newptr);
398 * Internal helper routine for route_output().
400 static int
401 _fillrtmsg(struct rt_msghdr **prtm, struct rtentry *rt,
402 struct rt_addrinfo *rtinfo)
404 int msglen;
405 struct rt_msghdr *rtm = *prtm;
407 /* Fill in rt_addrinfo for call to rt_msg_buffer(). */
408 rtinfo->rti_dst = rt_key(rt);
409 rtinfo->rti_gateway = rt->rt_gateway;
410 rtinfo->rti_netmask = rt_mask(rt); /* might be NULL */
411 rtinfo->rti_genmask = rt->rt_genmask; /* might be NULL */
412 if (rtm->rtm_addrs & (RTA_IFP | RTA_IFA)) {
413 if (rt->rt_ifp != NULL) {
414 rtinfo->rti_ifpaddr =
415 TAILQ_FIRST(&rt->rt_ifp->if_addrheads[mycpuid])
416 ->ifa->ifa_addr;
417 rtinfo->rti_ifaaddr = rt->rt_ifa->ifa_addr;
418 if (rt->rt_ifp->if_flags & IFF_POINTOPOINT)
419 rtinfo->rti_bcastaddr = rt->rt_ifa->ifa_dstaddr;
420 rtm->rtm_index = rt->rt_ifp->if_index;
421 } else {
422 rtinfo->rti_ifpaddr = NULL;
423 rtinfo->rti_ifaaddr = NULL;
425 } else if (rt->rt_ifp != NULL) {
426 rtm->rtm_index = rt->rt_ifp->if_index;
429 msglen = rt_msgsize(rtm->rtm_type, rtinfo);
430 if (rtm->rtm_msglen < msglen) {
431 /* NOTE: Caller will free the old rtm accordingly */
432 rtm = reallocbuf_nofree(rtm, msglen, rtm->rtm_msglen);
433 if (rtm == NULL)
434 return (ENOBUFS);
435 *prtm = rtm;
437 rt_msg_buffer(rtm->rtm_type, rtinfo, rtm, msglen);
439 rtm->rtm_flags = rt->rt_flags;
440 rtm->rtm_rmx = rt->rt_rmx;
441 rtm->rtm_addrs = rtinfo->rti_addrs;
443 return (0);
446 struct rtm_arg {
447 struct rt_msghdr *bak_rtm;
448 struct rt_msghdr *new_rtm;
451 static int
452 fillrtmsg(struct rtm_arg *arg, struct rtentry *rt,
453 struct rt_addrinfo *rtinfo)
455 struct rt_msghdr *rtm = arg->new_rtm;
456 int error;
458 error = _fillrtmsg(&rtm, rt, rtinfo);
459 if (!error) {
460 if (arg->new_rtm != rtm) {
462 * _fillrtmsg() just allocated a new rtm;
463 * if the previously allocated rtm is not
464 * the backing rtm, it should be freed.
466 if (arg->new_rtm != arg->bak_rtm)
467 kfree(arg->new_rtm, M_RTABLE);
468 arg->new_rtm = rtm;
471 return error;
474 static void route_output_add_callback(int, int, struct rt_addrinfo *,
475 struct rtentry *, void *);
476 static void route_output_delete_callback(int, int, struct rt_addrinfo *,
477 struct rtentry *, void *);
478 static int route_output_get_callback(int, struct rt_addrinfo *,
479 struct rtentry *, void *, int);
480 static int route_output_change_callback(int, struct rt_addrinfo *,
481 struct rtentry *, void *, int);
482 static int route_output_lock_callback(int, struct rt_addrinfo *,
483 struct rtentry *, void *, int);
485 /*ARGSUSED*/
486 static int
487 route_output(struct mbuf *m, struct socket *so, ...)
489 struct rtm_arg arg;
490 struct rt_msghdr *rtm = NULL;
491 struct rawcb *rp = NULL;
492 struct pr_output_info *oi;
493 struct rt_addrinfo rtinfo;
494 sa_family_t family;
495 int len, error = 0;
496 __va_list ap;
498 M_ASSERTPKTHDR(m);
500 __va_start(ap, so);
501 oi = __va_arg(ap, struct pr_output_info *);
502 __va_end(ap);
504 family = familyof(NULL);
506 #define gotoerr(e) { error = e; goto flush;}
508 if (m == NULL ||
509 (m->m_len < sizeof(long) &&
510 (m = m_pullup(m, sizeof(long))) == NULL))
511 return (ENOBUFS);
512 len = m->m_pkthdr.len;
513 if (len < sizeof(struct rt_msghdr) ||
514 len != mtod(m, struct rt_msghdr *)->rtm_msglen)
515 gotoerr(EINVAL);
517 rtm = kmalloc(len, M_RTABLE, M_INTWAIT | M_NULLOK);
518 if (rtm == NULL)
519 gotoerr(ENOBUFS);
521 m_copydata(m, 0, len, (caddr_t)rtm);
522 if (rtm->rtm_version != RTM_VERSION)
523 gotoerr(EPROTONOSUPPORT);
525 rtm->rtm_pid = oi->p_pid;
526 bzero(&rtinfo, sizeof(struct rt_addrinfo));
527 rtinfo.rti_addrs = rtm->rtm_addrs;
528 if (rt_xaddrs((char *)(rtm + 1), (char *)rtm + len, &rtinfo) != 0)
529 gotoerr(EINVAL);
531 rtinfo.rti_flags = rtm->rtm_flags;
532 if (rtinfo.rti_dst == NULL || rtinfo.rti_dst->sa_family >= AF_MAX ||
533 (rtinfo.rti_gateway && rtinfo.rti_gateway->sa_family >= AF_MAX))
534 gotoerr(EINVAL);
536 family = familyof(rtinfo.rti_dst);
539 * Verify that the caller has the appropriate privilege; RTM_GET
540 * is the only operation the non-superuser is allowed.
542 if (rtm->rtm_type != RTM_GET &&
543 priv_check_cred(so->so_cred, PRIV_ROOT, 0) != 0)
544 gotoerr(EPERM);
546 if (rtinfo.rti_genmask != NULL) {
547 error = rtmask_add_global(rtinfo.rti_genmask,
548 rtm->rtm_type != RTM_GET ?
549 RTREQ_PRIO_HIGH : RTREQ_PRIO_NORM);
550 if (error)
551 goto flush;
554 switch (rtm->rtm_type) {
555 case RTM_ADD:
556 if (rtinfo.rti_gateway == NULL) {
557 error = EINVAL;
558 } else {
559 error = rtrequest1_global(RTM_ADD, &rtinfo,
560 route_output_add_callback, rtm, RTREQ_PRIO_HIGH);
562 break;
563 case RTM_DELETE:
565 * Backing rtm (bak_rtm) could _not_ be freed during
566 * rtrequest1_global or rtsearch_global, even if the
567 * callback reallocates the rtm due to its size changes,
568 * since rtinfo points to the backing rtm's memory area.
569 * After rtrequest1_global or rtsearch_global returns,
570 * it is safe to free the backing rtm, since rtinfo will
571 * not be used anymore.
573 * new_rtm will be used to save the new rtm allocated
574 * by rtrequest1_global or rtsearch_global.
576 arg.bak_rtm = rtm;
577 arg.new_rtm = rtm;
578 error = rtrequest1_global(RTM_DELETE, &rtinfo,
579 route_output_delete_callback, &arg, RTREQ_PRIO_HIGH);
580 rtm = arg.new_rtm;
581 if (rtm != arg.bak_rtm)
582 kfree(arg.bak_rtm, M_RTABLE);
583 break;
584 case RTM_GET:
585 /* See the comment in RTM_DELETE */
586 arg.bak_rtm = rtm;
587 arg.new_rtm = rtm;
588 error = rtsearch_global(RTM_GET, &rtinfo,
589 route_output_get_callback, &arg, RTS_NOEXACTMATCH,
590 RTREQ_PRIO_NORM);
591 rtm = arg.new_rtm;
592 if (rtm != arg.bak_rtm)
593 kfree(arg.bak_rtm, M_RTABLE);
594 break;
595 case RTM_CHANGE:
596 error = rtsearch_global(RTM_CHANGE, &rtinfo,
597 route_output_change_callback, rtm, RTS_EXACTMATCH,
598 RTREQ_PRIO_HIGH);
599 break;
600 case RTM_LOCK:
601 error = rtsearch_global(RTM_LOCK, &rtinfo,
602 route_output_lock_callback, rtm, RTS_EXACTMATCH,
603 RTREQ_PRIO_HIGH);
604 break;
605 default:
606 error = EOPNOTSUPP;
607 break;
609 flush:
610 if (rtm != NULL) {
611 if (error != 0)
612 rtm->rtm_errno = error;
613 else
614 rtm->rtm_flags |= RTF_DONE;
618 * Check to see if we don't want our own messages.
620 if (!(so->so_options & SO_USELOOPBACK)) {
621 if (route_cb.any_count <= 1) {
622 if (rtm != NULL)
623 kfree(rtm, M_RTABLE);
624 m_freem(m);
625 return (error);
627 /* There is another listener, so construct message */
628 rp = sotorawcb(so);
630 if (rtm != NULL) {
631 m_copyback(m, 0, rtm->rtm_msglen, (caddr_t)rtm);
632 if (m->m_pkthdr.len < rtm->rtm_msglen) {
633 m_freem(m);
634 m = NULL;
635 } else if (m->m_pkthdr.len > rtm->rtm_msglen)
636 m_adj(m, rtm->rtm_msglen - m->m_pkthdr.len);
637 kfree(rtm, M_RTABLE);
639 if (m != NULL)
640 rts_input_skip(m, family, rp);
641 return (error);
644 static void
645 route_output_add_callback(int cmd, int error, struct rt_addrinfo *rtinfo,
646 struct rtentry *rt, void *arg)
648 struct rt_msghdr *rtm = arg;
650 if (error == 0 && rt != NULL) {
651 rt_setmetrics(rtm->rtm_inits, &rtm->rtm_rmx,
652 &rt->rt_rmx);
653 rt->rt_rmx.rmx_locks &= ~(rtm->rtm_inits);
654 rt->rt_rmx.rmx_locks |=
655 (rtm->rtm_inits & rtm->rtm_rmx.rmx_locks);
656 if (rtinfo->rti_genmask != NULL) {
657 rt->rt_genmask = rtmask_purelookup(rtinfo->rti_genmask);
658 if (rt->rt_genmask == NULL) {
660 * This should not happen, since we
661 * have already installed genmask
662 * on each CPU before we reach here.
664 panic("genmask is gone!?");
666 } else {
667 rt->rt_genmask = NULL;
669 rtm->rtm_index = rt->rt_ifp->if_index;
673 static void
674 route_output_delete_callback(int cmd, int error, struct rt_addrinfo *rtinfo,
675 struct rtentry *rt, void *arg)
677 if (error == 0 && rt) {
678 ++rt->rt_refcnt;
679 if (fillrtmsg(arg, rt, rtinfo) != 0) {
680 error = ENOBUFS;
681 /* XXX no way to return the error */
683 --rt->rt_refcnt;
685 if (rt && rt->rt_refcnt == 0) {
686 ++rt->rt_refcnt;
687 rtfree(rt);
691 static int
692 route_output_get_callback(int cmd, struct rt_addrinfo *rtinfo,
693 struct rtentry *rt, void *arg, int found_cnt)
695 int error, found = 0;
697 if (((rtinfo->rti_flags ^ rt->rt_flags) & RTF_HOST) == 0)
698 found = 1;
700 error = fillrtmsg(arg, rt, rtinfo);
701 if (!error && found) {
702 /* Got the exact match, we could return now! */
703 error = EJUSTRETURN;
705 return error;
708 static int
709 route_output_change_callback(int cmd, struct rt_addrinfo *rtinfo,
710 struct rtentry *rt, void *arg, int found_cnt)
712 struct rt_msghdr *rtm = arg;
713 struct ifaddr *ifa;
714 int error = 0;
717 * new gateway could require new ifaddr, ifp;
718 * flags may also be different; ifp may be specified
719 * by ll sockaddr when protocol address is ambiguous
721 if (((rt->rt_flags & RTF_GATEWAY) && rtinfo->rti_gateway != NULL) ||
722 rtinfo->rti_ifpaddr != NULL ||
723 (rtinfo->rti_ifaaddr != NULL &&
724 !sa_equal(rtinfo->rti_ifaaddr, rt->rt_ifa->ifa_addr))) {
725 error = rt_getifa(rtinfo);
726 if (error != 0)
727 goto done;
729 if (rtinfo->rti_gateway != NULL) {
731 * We only need to generate rtmsg upon the
732 * first route to be changed.
734 error = rt_setgate(rt, rt_key(rt), rtinfo->rti_gateway,
735 found_cnt == 1 ? RTL_REPORTMSG : RTL_DONTREPORT);
736 if (error != 0)
737 goto done;
739 if ((ifa = rtinfo->rti_ifa) != NULL) {
740 struct ifaddr *oifa = rt->rt_ifa;
742 if (oifa != ifa) {
743 if (oifa && oifa->ifa_rtrequest)
744 oifa->ifa_rtrequest(RTM_DELETE, rt);
745 IFAFREE(rt->rt_ifa);
746 IFAREF(ifa);
747 rt->rt_ifa = ifa;
748 rt->rt_ifp = rtinfo->rti_ifp;
751 rt_setmetrics(rtm->rtm_inits, &rtm->rtm_rmx, &rt->rt_rmx);
752 if (rt->rt_ifa && rt->rt_ifa->ifa_rtrequest)
753 rt->rt_ifa->ifa_rtrequest(RTM_ADD, rt);
754 if (rtinfo->rti_genmask != NULL) {
755 rt->rt_genmask = rtmask_purelookup(rtinfo->rti_genmask);
756 if (rt->rt_genmask == NULL) {
758 * This should not happen, since we
759 * have already installed genmask
760 * on each CPU before we reach here.
762 panic("genmask is gone!?");
765 rtm->rtm_index = rt->rt_ifp->if_index;
766 done:
767 return error;
770 static int
771 route_output_lock_callback(int cmd, struct rt_addrinfo *rtinfo,
772 struct rtentry *rt, void *arg,
773 int found_cnt __unused)
775 struct rt_msghdr *rtm = arg;
777 rt->rt_rmx.rmx_locks &= ~(rtm->rtm_inits);
778 rt->rt_rmx.rmx_locks |=
779 (rtm->rtm_inits & rtm->rtm_rmx.rmx_locks);
780 return 0;
783 static void
784 rt_setmetrics(u_long which, struct rt_metrics *in, struct rt_metrics *out)
786 #define setmetric(flag, elt) if (which & (flag)) out->elt = in->elt;
787 setmetric(RTV_RPIPE, rmx_recvpipe);
788 setmetric(RTV_SPIPE, rmx_sendpipe);
789 setmetric(RTV_SSTHRESH, rmx_ssthresh);
790 setmetric(RTV_RTT, rmx_rtt);
791 setmetric(RTV_RTTVAR, rmx_rttvar);
792 setmetric(RTV_HOPCOUNT, rmx_hopcount);
793 setmetric(RTV_MTU, rmx_mtu);
794 setmetric(RTV_EXPIRE, rmx_expire);
795 setmetric(RTV_MSL, rmx_msl);
796 setmetric(RTV_IWMAXSEGS, rmx_iwmaxsegs);
797 setmetric(RTV_IWCAPSEGS, rmx_iwcapsegs);
798 #undef setmetric
802 * Extract the addresses of the passed sockaddrs.
803 * Do a little sanity checking so as to avoid bad memory references.
804 * This data is derived straight from userland.
806 static int
807 rt_xaddrs(char *cp, char *cplim, struct rt_addrinfo *rtinfo)
809 struct sockaddr *sa;
810 int i;
812 for (i = 0; (i < RTAX_MAX) && (cp < cplim); i++) {
813 if ((rtinfo->rti_addrs & (1 << i)) == 0)
814 continue;
815 sa = (struct sockaddr *)cp;
817 * It won't fit.
819 if ((cp + sa->sa_len) > cplim) {
820 return (EINVAL);
824 * There are no more... Quit now.
825 * If there are more bits, they are in error.
826 * I've seen this. route(1) can evidently generate these.
827 * This causes kernel to core dump.
828 * For compatibility, if we see this, point to a safe address.
830 if (sa->sa_len == 0) {
831 static struct sockaddr sa_zero = {
832 sizeof sa_zero, AF_INET,
835 rtinfo->rti_info[i] = &sa_zero;
836 kprintf("rtsock: received more addr bits than sockaddrs.\n");
837 return (0); /* should be EINVAL but for compat */
840 /* Accept the sockaddr. */
841 rtinfo->rti_info[i] = sa;
842 cp += RT_ROUNDUP(sa->sa_len);
844 return (0);
847 static int
848 rt_msghdrsize(int type)
850 switch (type) {
851 case RTM_DELADDR:
852 case RTM_NEWADDR:
853 return sizeof(struct ifa_msghdr);
854 case RTM_DELMADDR:
855 case RTM_NEWMADDR:
856 return sizeof(struct ifma_msghdr);
857 case RTM_IFINFO:
858 return sizeof(struct if_msghdr);
859 case RTM_IFANNOUNCE:
860 case RTM_IEEE80211:
861 return sizeof(struct if_announcemsghdr);
862 default:
863 return sizeof(struct rt_msghdr);
867 static int
868 rt_msgsize(int type, const struct rt_addrinfo *rtinfo)
870 int len, i;
872 len = rt_msghdrsize(type);
873 for (i = 0; i < RTAX_MAX; i++) {
874 if (rtinfo->rti_info[i] != NULL)
875 len += RT_ROUNDUP(rtinfo->rti_info[i]->sa_len);
877 len = ALIGN(len);
878 return len;
882 * Build a routing message in a buffer.
883 * Copy the addresses in the rtinfo->rti_info[] sockaddr array
884 * to the end of the buffer after the message header.
886 * Set the rtinfo->rti_addrs bitmask of addresses present in rtinfo->rti_info[].
887 * This side-effect can be avoided if we reorder the addrs bitmask field in all
888 * the route messages to line up so we can set it here instead of back in the
889 * calling routine.
891 static void
892 rt_msg_buffer(int type, struct rt_addrinfo *rtinfo, void *buf, int msglen)
894 struct rt_msghdr *rtm;
895 char *cp;
896 int dlen, i;
898 rtm = (struct rt_msghdr *) buf;
899 rtm->rtm_version = RTM_VERSION;
900 rtm->rtm_type = type;
901 rtm->rtm_msglen = msglen;
903 cp = (char *)buf + rt_msghdrsize(type);
904 rtinfo->rti_addrs = 0;
905 for (i = 0; i < RTAX_MAX; i++) {
906 struct sockaddr *sa;
908 if ((sa = rtinfo->rti_info[i]) == NULL)
909 continue;
910 rtinfo->rti_addrs |= (1 << i);
911 dlen = RT_ROUNDUP(sa->sa_len);
912 bcopy(sa, cp, dlen);
913 cp += dlen;
918 * Build a routing message in a mbuf chain.
919 * Copy the addresses in the rtinfo->rti_info[] sockaddr array
920 * to the end of the mbuf after the message header.
922 * Set the rtinfo->rti_addrs bitmask of addresses present in rtinfo->rti_info[].
923 * This side-effect can be avoided if we reorder the addrs bitmask field in all
924 * the route messages to line up so we can set it here instead of back in the
925 * calling routine.
927 static struct mbuf *
928 rt_msg_mbuf(int type, struct rt_addrinfo *rtinfo)
930 struct mbuf *m;
931 struct rt_msghdr *rtm;
932 int hlen, len;
933 int i;
935 hlen = rt_msghdrsize(type);
936 KASSERT(hlen <= MCLBYTES, ("rt_msg_mbuf: hlen %d doesn't fit", hlen));
938 m = m_getl(hlen, M_NOWAIT, MT_DATA, M_PKTHDR, NULL);
939 if (m == NULL)
940 return (NULL);
941 mbuftrackid(m, 32);
942 m->m_pkthdr.len = m->m_len = hlen;
943 m->m_pkthdr.rcvif = NULL;
944 rtinfo->rti_addrs = 0;
945 len = hlen;
946 for (i = 0; i < RTAX_MAX; i++) {
947 struct sockaddr *sa;
948 int dlen;
950 if ((sa = rtinfo->rti_info[i]) == NULL)
951 continue;
952 rtinfo->rti_addrs |= (1 << i);
953 dlen = RT_ROUNDUP(sa->sa_len);
954 m_copyback(m, len, dlen, (caddr_t)sa); /* can grow mbuf chain */
955 len += dlen;
957 if (m->m_pkthdr.len != len) { /* one of the m_copyback() calls failed */
958 m_freem(m);
959 return (NULL);
961 rtm = mtod(m, struct rt_msghdr *);
962 bzero(rtm, hlen);
963 rtm->rtm_msglen = len;
964 rtm->rtm_version = RTM_VERSION;
965 rtm->rtm_type = type;
966 return (m);
970 * This routine is called to generate a message from the routing
971 * socket indicating that a redirect has occurred, a routing lookup
972 * has failed, or that a protocol has detected timeouts to a particular
973 * destination.
975 void
976 rt_missmsg(int type, struct rt_addrinfo *rtinfo, int flags, int error)
978 struct sockaddr *dst = rtinfo->rti_info[RTAX_DST];
979 struct rt_msghdr *rtm;
980 struct mbuf *m;
982 if (route_cb.any_count == 0)
983 return;
984 m = rt_msg_mbuf(type, rtinfo);
985 if (m == NULL)
986 return;
987 rtm = mtod(m, struct rt_msghdr *);
988 rtm->rtm_flags = RTF_DONE | flags;
989 rtm->rtm_errno = error;
990 rtm->rtm_addrs = rtinfo->rti_addrs;
991 rts_input(m, familyof(dst));
994 void
995 rt_dstmsg(int type, struct sockaddr *dst, int error)
997 struct rt_msghdr *rtm;
998 struct rt_addrinfo addrs;
999 struct mbuf *m;
1001 if (route_cb.any_count == 0)
1002 return;
1003 bzero(&addrs, sizeof(struct rt_addrinfo));
1004 addrs.rti_info[RTAX_DST] = dst;
1005 m = rt_msg_mbuf(type, &addrs);
1006 if (m == NULL)
1007 return;
1008 rtm = mtod(m, struct rt_msghdr *);
1009 rtm->rtm_flags = RTF_DONE;
1010 rtm->rtm_errno = error;
1011 rtm->rtm_addrs = addrs.rti_addrs;
1012 rts_input(m, familyof(dst));
1016 * This routine is called to generate a message from the routing
1017 * socket indicating that the status of a network interface has changed.
1019 void
1020 rt_ifmsg(struct ifnet *ifp)
1022 struct if_msghdr *ifm;
1023 struct mbuf *m;
1024 struct rt_addrinfo rtinfo;
1026 if (route_cb.any_count == 0)
1027 return;
1028 bzero(&rtinfo, sizeof(struct rt_addrinfo));
1029 m = rt_msg_mbuf(RTM_IFINFO, &rtinfo);
1030 if (m == NULL)
1031 return;
1032 ifm = mtod(m, struct if_msghdr *);
1033 ifm->ifm_index = ifp->if_index;
1034 ifm->ifm_flags = ifp->if_flags;
1035 ifm->ifm_data = ifp->if_data;
1036 ifm->ifm_addrs = 0;
1037 rts_input(m, 0);
1040 static void
1041 rt_ifamsg(int cmd, struct ifaddr *ifa)
1043 struct ifa_msghdr *ifam;
1044 struct rt_addrinfo rtinfo;
1045 struct mbuf *m;
1046 struct ifnet *ifp = ifa->ifa_ifp;
1048 bzero(&rtinfo, sizeof(struct rt_addrinfo));
1049 rtinfo.rti_ifaaddr = ifa->ifa_addr;
1050 rtinfo.rti_ifpaddr =
1051 TAILQ_FIRST(&ifp->if_addrheads[mycpuid])->ifa->ifa_addr;
1052 rtinfo.rti_netmask = ifa->ifa_netmask;
1053 rtinfo.rti_bcastaddr = ifa->ifa_dstaddr;
1055 m = rt_msg_mbuf(cmd, &rtinfo);
1056 if (m == NULL)
1057 return;
1059 ifam = mtod(m, struct ifa_msghdr *);
1060 ifam->ifam_index = ifp->if_index;
1061 ifam->ifam_metric = ifa->ifa_metric;
1062 ifam->ifam_flags = ifa->ifa_flags;
1063 ifam->ifam_addrs = rtinfo.rti_addrs;
1065 rts_input(m, familyof(ifa->ifa_addr));
1068 void
1069 rt_rtmsg(int cmd, struct rtentry *rt, struct ifnet *ifp, int error)
1071 struct rt_msghdr *rtm;
1072 struct rt_addrinfo rtinfo;
1073 struct mbuf *m;
1074 struct sockaddr *dst;
1076 if (rt == NULL)
1077 return;
1079 bzero(&rtinfo, sizeof(struct rt_addrinfo));
1080 rtinfo.rti_dst = dst = rt_key(rt);
1081 rtinfo.rti_gateway = rt->rt_gateway;
1082 rtinfo.rti_netmask = rt_mask(rt);
1083 if (ifp != NULL) {
1084 rtinfo.rti_ifpaddr =
1085 TAILQ_FIRST(&ifp->if_addrheads[mycpuid])->ifa->ifa_addr;
1087 rtinfo.rti_ifaaddr = rt->rt_ifa->ifa_addr;
1089 m = rt_msg_mbuf(cmd, &rtinfo);
1090 if (m == NULL)
1091 return;
1093 rtm = mtod(m, struct rt_msghdr *);
1094 if (ifp != NULL)
1095 rtm->rtm_index = ifp->if_index;
1096 rtm->rtm_flags |= rt->rt_flags;
1097 rtm->rtm_errno = error;
1098 rtm->rtm_addrs = rtinfo.rti_addrs;
1100 rts_input(m, familyof(dst));
1104 * This is called to generate messages from the routing socket
1105 * indicating a network interface has had addresses associated with it.
1106 * if we ever reverse the logic and replace messages TO the routing
1107 * socket indicate a request to configure interfaces, then it will
1108 * be unnecessary as the routing socket will automatically generate
1109 * copies of it.
1111 void
1112 rt_newaddrmsg(int cmd, struct ifaddr *ifa, int error, struct rtentry *rt)
1114 if (route_cb.any_count == 0)
1115 return;
1117 if (cmd == RTM_ADD) {
1118 rt_ifamsg(RTM_NEWADDR, ifa);
1119 rt_rtmsg(RTM_ADD, rt, ifa->ifa_ifp, error);
1120 } else {
1121 KASSERT((cmd == RTM_DELETE), ("unknown cmd %d", cmd));
1122 rt_rtmsg(RTM_DELETE, rt, ifa->ifa_ifp, error);
1123 rt_ifamsg(RTM_DELADDR, ifa);
1128 * This is the analogue to the rt_newaddrmsg which performs the same
1129 * function but for multicast group memberhips. This is easier since
1130 * there is no route state to worry about.
1132 void
1133 rt_newmaddrmsg(int cmd, struct ifmultiaddr *ifma)
1135 struct rt_addrinfo rtinfo;
1136 struct mbuf *m = NULL;
1137 struct ifnet *ifp = ifma->ifma_ifp;
1138 struct ifma_msghdr *ifmam;
1140 if (route_cb.any_count == 0)
1141 return;
1143 bzero(&rtinfo, sizeof(struct rt_addrinfo));
1144 rtinfo.rti_ifaaddr = ifma->ifma_addr;
1145 if (ifp != NULL && !TAILQ_EMPTY(&ifp->if_addrheads[mycpuid])) {
1146 rtinfo.rti_ifpaddr =
1147 TAILQ_FIRST(&ifp->if_addrheads[mycpuid])->ifa->ifa_addr;
1150 * If a link-layer address is present, present it as a ``gateway''
1151 * (similarly to how ARP entries, e.g., are presented).
1153 rtinfo.rti_gateway = ifma->ifma_lladdr;
1155 m = rt_msg_mbuf(cmd, &rtinfo);
1156 if (m == NULL)
1157 return;
1159 ifmam = mtod(m, struct ifma_msghdr *);
1160 ifmam->ifmam_index = ifp->if_index;
1161 ifmam->ifmam_addrs = rtinfo.rti_addrs;
1163 rts_input(m, familyof(ifma->ifma_addr));
1166 static struct mbuf *
1167 rt_makeifannouncemsg(struct ifnet *ifp, int type, int what,
1168 struct rt_addrinfo *info)
1170 struct if_announcemsghdr *ifan;
1171 struct mbuf *m;
1173 if (route_cb.any_count == 0)
1174 return NULL;
1176 bzero(info, sizeof(*info));
1177 m = rt_msg_mbuf(type, info);
1178 if (m == NULL)
1179 return NULL;
1181 ifan = mtod(m, struct if_announcemsghdr *);
1182 ifan->ifan_index = ifp->if_index;
1183 strlcpy(ifan->ifan_name, ifp->if_xname, sizeof ifan->ifan_name);
1184 ifan->ifan_what = what;
1185 return m;
1189 * This is called to generate routing socket messages indicating
1190 * IEEE80211 wireless events.
1191 * XXX we piggyback on the RTM_IFANNOUNCE msg format in a clumsy way.
1193 void
1194 rt_ieee80211msg(struct ifnet *ifp, int what, void *data, size_t data_len)
1196 struct rt_addrinfo info;
1197 struct mbuf *m;
1199 m = rt_makeifannouncemsg(ifp, RTM_IEEE80211, what, &info);
1200 if (m == NULL)
1201 return;
1204 * Append the ieee80211 data. Try to stick it in the
1205 * mbuf containing the ifannounce msg; otherwise allocate
1206 * a new mbuf and append.
1208 * NB: we assume m is a single mbuf.
1210 if (data_len > M_TRAILINGSPACE(m)) {
1211 /* XXX use m_getb(data_len, M_NOWAIT, MT_DATA, 0); */
1212 struct mbuf *n = m_get(M_NOWAIT, MT_DATA);
1213 if (n == NULL) {
1214 m_freem(m);
1215 return;
1217 KKASSERT(data_len <= M_TRAILINGSPACE(n));
1218 bcopy(data, mtod(n, void *), data_len);
1219 n->m_len = data_len;
1220 m->m_next = n;
1221 } else if (data_len > 0) {
1222 bcopy(data, mtod(m, u_int8_t *) + m->m_len, data_len);
1223 m->m_len += data_len;
1225 mbuftrackid(m, 33);
1226 if (m->m_flags & M_PKTHDR)
1227 m->m_pkthdr.len += data_len;
1228 mtod(m, struct if_announcemsghdr *)->ifan_msglen += data_len;
1229 rts_input(m, 0);
1233 * This is called to generate routing socket messages indicating
1234 * network interface arrival and departure.
1236 void
1237 rt_ifannouncemsg(struct ifnet *ifp, int what)
1239 struct rt_addrinfo addrinfo;
1240 struct mbuf *m;
1242 m = rt_makeifannouncemsg(ifp, RTM_IFANNOUNCE, what, &addrinfo);
1243 if (m != NULL)
1244 rts_input(m, 0);
1247 static int
1248 resizewalkarg(struct walkarg *w, int len)
1250 void *newptr;
1252 newptr = kmalloc(len, M_RTABLE, M_INTWAIT | M_NULLOK);
1253 if (newptr == NULL)
1254 return (ENOMEM);
1255 if (w->w_tmem != NULL)
1256 kfree(w->w_tmem, M_RTABLE);
1257 w->w_tmem = newptr;
1258 w->w_tmemsize = len;
1259 return (0);
1262 static void
1263 ifnet_compute_stats(struct ifnet *ifp)
1265 IFNET_STAT_GET(ifp, ipackets, ifp->if_ipackets);
1266 IFNET_STAT_GET(ifp, ierrors, ifp->if_ierrors);
1267 IFNET_STAT_GET(ifp, opackets, ifp->if_opackets);
1268 IFNET_STAT_GET(ifp, collisions, ifp->if_collisions);
1269 IFNET_STAT_GET(ifp, ibytes, ifp->if_ibytes);
1270 IFNET_STAT_GET(ifp, obytes, ifp->if_obytes);
1271 IFNET_STAT_GET(ifp, imcasts, ifp->if_imcasts);
1272 IFNET_STAT_GET(ifp, omcasts, ifp->if_omcasts);
1273 IFNET_STAT_GET(ifp, iqdrops, ifp->if_iqdrops);
1274 IFNET_STAT_GET(ifp, noproto, ifp->if_noproto);
1275 IFNET_STAT_GET(ifp, oqdrops, ifp->if_oqdrops);
1278 static int
1279 sysctl_iflist(int af, struct walkarg *w)
1281 struct ifnet *ifp;
1282 struct rt_addrinfo rtinfo;
1283 int msglen, error;
1285 bzero(&rtinfo, sizeof(struct rt_addrinfo));
1287 ifnet_lock();
1288 TAILQ_FOREACH(ifp, &ifnetlist, if_link) {
1289 struct ifaddr_container *ifac, *ifac_mark;
1290 struct ifaddr_marker mark;
1291 struct ifaddrhead *head;
1292 struct ifaddr *ifa;
1294 if (w->w_arg && w->w_arg != ifp->if_index)
1295 continue;
1296 head = &ifp->if_addrheads[mycpuid];
1298 * There is no need to reference the first ifaddr
1299 * even if the following resizewalkarg() blocks,
1300 * since the first ifaddr will not be destroyed
1301 * when the ifnet lock is held.
1303 ifac = TAILQ_FIRST(head);
1304 ifa = ifac->ifa;
1305 rtinfo.rti_ifpaddr = ifa->ifa_addr;
1306 msglen = rt_msgsize(RTM_IFINFO, &rtinfo);
1307 if (w->w_tmemsize < msglen && resizewalkarg(w, msglen) != 0) {
1308 ifnet_unlock();
1309 return (ENOMEM);
1311 rt_msg_buffer(RTM_IFINFO, &rtinfo, w->w_tmem, msglen);
1312 rtinfo.rti_ifpaddr = NULL;
1313 if (w->w_req != NULL && w->w_tmem != NULL) {
1314 struct if_msghdr *ifm = w->w_tmem;
1316 ifm->ifm_index = ifp->if_index;
1317 ifm->ifm_flags = ifp->if_flags;
1318 ifnet_compute_stats(ifp);
1319 ifm->ifm_data = ifp->if_data;
1320 ifm->ifm_addrs = rtinfo.rti_addrs;
1321 error = SYSCTL_OUT(w->w_req, ifm, msglen);
1322 if (error) {
1323 ifnet_unlock();
1324 return (error);
1328 * Add a marker, since SYSCTL_OUT() could block and during
1329 * that period the list could be changed.
1331 ifa_marker_init(&mark, ifp);
1332 ifac_mark = &mark.ifac;
1333 TAILQ_INSERT_AFTER(head, ifac, ifac_mark, ifa_link);
1334 while ((ifac = TAILQ_NEXT(ifac_mark, ifa_link)) != NULL) {
1335 TAILQ_REMOVE(head, ifac_mark, ifa_link);
1336 TAILQ_INSERT_AFTER(head, ifac, ifac_mark, ifa_link);
1338 ifa = ifac->ifa;
1340 /* Ignore marker */
1341 if (ifa->ifa_addr->sa_family == AF_UNSPEC)
1342 continue;
1344 if (af && af != ifa->ifa_addr->sa_family)
1345 continue;
1346 if (curproc->p_ucred->cr_prison &&
1347 prison_if(curproc->p_ucred, ifa->ifa_addr))
1348 continue;
1349 rtinfo.rti_ifaaddr = ifa->ifa_addr;
1350 rtinfo.rti_netmask = ifa->ifa_netmask;
1351 rtinfo.rti_bcastaddr = ifa->ifa_dstaddr;
1352 msglen = rt_msgsize(RTM_NEWADDR, &rtinfo);
1354 * Keep a reference on this ifaddr, so that it will
1355 * not be destroyed if the following resizewalkarg()
1356 * blocks.
1358 IFAREF(ifa);
1359 if (w->w_tmemsize < msglen &&
1360 resizewalkarg(w, msglen) != 0) {
1361 IFAFREE(ifa);
1362 TAILQ_REMOVE(head, ifac_mark, ifa_link);
1363 ifnet_unlock();
1364 return (ENOMEM);
1366 rt_msg_buffer(RTM_NEWADDR, &rtinfo, w->w_tmem, msglen);
1367 if (w->w_req != NULL) {
1368 struct ifa_msghdr *ifam = w->w_tmem;
1370 ifam->ifam_index = ifa->ifa_ifp->if_index;
1371 ifam->ifam_flags = ifa->ifa_flags;
1372 ifam->ifam_metric = ifa->ifa_metric;
1373 ifam->ifam_addrs = rtinfo.rti_addrs;
1374 error = SYSCTL_OUT(w->w_req, w->w_tmem, msglen);
1375 if (error) {
1376 IFAFREE(ifa);
1377 TAILQ_REMOVE(head, ifac_mark, ifa_link);
1378 ifnet_unlock();
1379 return (error);
1382 IFAFREE(ifa);
1384 TAILQ_REMOVE(head, ifac_mark, ifa_link);
1385 rtinfo.rti_netmask = NULL;
1386 rtinfo.rti_ifaaddr = NULL;
1387 rtinfo.rti_bcastaddr = NULL;
1389 ifnet_unlock();
1390 return (0);
1393 static int
1394 rttable_walkarg_create(struct rttable_walkarg *w, int op, int arg)
1396 struct rt_addrinfo rtinfo;
1397 struct sockaddr_storage ss;
1398 int i, msglen;
1400 memset(w, 0, sizeof(*w));
1401 w->w_op = op;
1402 w->w_arg = arg;
1404 memset(&ss, 0, sizeof(ss));
1405 ss.ss_len = sizeof(ss);
1407 memset(&rtinfo, 0, sizeof(rtinfo));
1408 for (i = 0; i < RTAX_MAX; ++i)
1409 rtinfo.rti_info[i] = (struct sockaddr *)&ss;
1410 msglen = rt_msgsize(RTM_GET, &rtinfo);
1412 w->w_bufsz = msglen * RTTABLE_DUMP_MSGCNT_MAX;
1413 w->w_buf = kmalloc(w->w_bufsz, M_TEMP, M_WAITOK | M_NULLOK);
1414 if (w->w_buf == NULL)
1415 return ENOMEM;
1416 return 0;
1419 static void
1420 rttable_walkarg_destroy(struct rttable_walkarg *w)
1422 kfree(w->w_buf, M_TEMP);
1425 static void
1426 rttable_entry_rtinfo(struct rt_addrinfo *rtinfo, struct radix_node *rn)
1428 struct rtentry *rt = (struct rtentry *)rn;
1430 bzero(rtinfo, sizeof(*rtinfo));
1431 rtinfo->rti_dst = rt_key(rt);
1432 rtinfo->rti_gateway = rt->rt_gateway;
1433 rtinfo->rti_netmask = rt_mask(rt);
1434 rtinfo->rti_genmask = rt->rt_genmask;
1435 if (rt->rt_ifp != NULL) {
1436 rtinfo->rti_ifpaddr =
1437 TAILQ_FIRST(&rt->rt_ifp->if_addrheads[mycpuid])->ifa->ifa_addr;
1438 rtinfo->rti_ifaaddr = rt->rt_ifa->ifa_addr;
1439 if (rt->rt_ifp->if_flags & IFF_POINTOPOINT)
1440 rtinfo->rti_bcastaddr = rt->rt_ifa->ifa_dstaddr;
1444 static int
1445 rttable_walk_entry(struct radix_node *rn, void *xw)
1447 struct rttable_walkarg *w = xw;
1448 struct rtentry *rt = (struct rtentry *)rn;
1449 struct rt_addrinfo rtinfo;
1450 struct rt_msghdr *rtm;
1451 boolean_t save = FALSE;
1452 int msglen, w_bufleft;
1453 void *ptr;
1455 rttable_entry_rtinfo(&rtinfo, rn);
1456 msglen = rt_msgsize(RTM_GET, &rtinfo);
1458 w_bufleft = w->w_bufsz - w->w_buflen;
1460 if (rn->rn_dupedkey != NULL) {
1461 struct radix_node *rn1 = rn;
1462 int total_msglen = msglen;
1465 * Make sure that we have enough space left for all
1466 * dupedkeys, since rn_walktree_at always starts
1467 * from the first dupedkey.
1469 while ((rn1 = rn1->rn_dupedkey) != NULL) {
1470 struct rt_addrinfo rtinfo1;
1471 int msglen1;
1473 if (rn1->rn_flags & RNF_ROOT)
1474 continue;
1476 rttable_entry_rtinfo(&rtinfo1, rn1);
1477 msglen1 = rt_msgsize(RTM_GET, &rtinfo1);
1478 total_msglen += msglen1;
1481 if (total_msglen > w_bufleft) {
1482 if (total_msglen > w->w_bufsz) {
1483 static int logged = 0;
1485 if (!logged) {
1486 kprintf("buffer is too small for "
1487 "all dupedkeys, increase "
1488 "RTTABLE_DUMP_MSGCNT_MAX\n");
1489 logged = 1;
1491 return ENOMEM;
1493 save = TRUE;
1495 } else if (msglen > w_bufleft) {
1496 save = TRUE;
1499 if (save) {
1501 * Not enough buffer left; remember the position
1502 * to start from upon next round.
1504 KASSERT(msglen <= w->w_bufsz, ("msg too long %d", msglen));
1506 KASSERT(rtinfo.rti_dst->sa_len <= sizeof(w->w_key0),
1507 ("key too long %d", rtinfo.rti_dst->sa_len));
1508 memset(&w->w_key0, 0, sizeof(w->w_key0));
1509 memcpy(&w->w_key0, rtinfo.rti_dst, rtinfo.rti_dst->sa_len);
1510 w->w_key = (const char *)&w->w_key0;
1512 if (rtinfo.rti_netmask != NULL) {
1513 KASSERT(
1514 rtinfo.rti_netmask->sa_len <= sizeof(w->w_mask0),
1515 ("mask too long %d", rtinfo.rti_netmask->sa_len));
1516 memset(&w->w_mask0, 0, sizeof(w->w_mask0));
1517 memcpy(&w->w_mask0, rtinfo.rti_netmask,
1518 rtinfo.rti_netmask->sa_len);
1519 w->w_mask = (const char *)&w->w_mask0;
1520 } else {
1521 w->w_mask = NULL;
1523 return EJUSTRETURN;
1526 if (w->w_op == NET_RT_FLAGS && !(rt->rt_flags & w->w_arg))
1527 return 0;
1529 ptr = ((uint8_t *)w->w_buf) + w->w_buflen;
1530 rt_msg_buffer(RTM_GET, &rtinfo, ptr, msglen);
1532 rtm = (struct rt_msghdr *)ptr;
1533 rtm->rtm_flags = rt->rt_flags;
1534 rtm->rtm_use = rt->rt_use;
1535 rtm->rtm_rmx = rt->rt_rmx;
1536 rtm->rtm_index = rt->rt_ifp->if_index;
1537 rtm->rtm_errno = rtm->rtm_pid = rtm->rtm_seq = 0;
1538 rtm->rtm_addrs = rtinfo.rti_addrs;
1540 w->w_buflen += msglen;
1542 return 0;
1545 static void
1546 rttable_walk_dispatch(netmsg_t msg)
1548 struct netmsg_rttable_walk *nmsg = (struct netmsg_rttable_walk *)msg;
1549 struct radix_node_head *rnh = rt_tables[mycpuid][nmsg->af];
1550 struct rttable_walkarg *w = nmsg->w;
1551 int error;
1553 error = rnh->rnh_walktree_at(rnh, w->w_key, w->w_mask,
1554 rttable_walk_entry, w);
1555 lwkt_replymsg(&nmsg->base.lmsg, error);
1558 static int
1559 sysctl_rttable(int af, struct sysctl_req *req, int op, int arg)
1561 struct rttable_walkarg w;
1562 int error, i;
1564 error = rttable_walkarg_create(&w, op, arg);
1565 if (error)
1566 return error;
1568 error = EINVAL;
1569 for (i = 1; i <= AF_MAX; i++) {
1570 if (rt_tables[mycpuid][i] != NULL && (af == 0 || af == i)) {
1571 w.w_key = NULL;
1572 w.w_mask = NULL;
1573 for (;;) {
1574 struct netmsg_rttable_walk nmsg;
1576 netmsg_init(&nmsg.base, NULL,
1577 &curthread->td_msgport, 0,
1578 rttable_walk_dispatch);
1579 nmsg.af = i;
1580 nmsg.w = &w;
1582 w.w_buflen = 0;
1584 error = lwkt_domsg(netisr_cpuport(mycpuid),
1585 &nmsg.base.lmsg, 0);
1586 if (error && error != EJUSTRETURN)
1587 goto done;
1589 if (req != NULL && w.w_buflen > 0) {
1590 int error1;
1592 error1 = SYSCTL_OUT(req, w.w_buf,
1593 w.w_buflen);
1594 if (error1) {
1595 error = error1;
1596 goto done;
1599 if (error == 0) /* done */
1600 break;
1604 done:
1605 rttable_walkarg_destroy(&w);
1606 return error;
1609 static int
1610 sysctl_rtsock(SYSCTL_HANDLER_ARGS)
1612 int *name = (int *)arg1;
1613 u_int namelen = arg2;
1614 int error = EINVAL;
1615 int origcpu, cpu;
1616 u_char af;
1617 struct walkarg w;
1619 name ++;
1620 namelen--;
1621 if (req->newptr)
1622 return (EPERM);
1623 if (namelen != 3 && namelen != 4)
1624 return (EINVAL);
1625 af = name[0];
1626 bzero(&w, sizeof w);
1627 w.w_op = name[1];
1628 w.w_arg = name[2];
1629 w.w_req = req;
1632 * Optional third argument specifies cpu, used primarily for
1633 * debugging the route table.
1635 if (namelen == 4) {
1636 if (name[3] < 0 || name[3] >= netisr_ncpus)
1637 return (EINVAL);
1638 cpu = name[3];
1639 } else {
1641 * Target cpu is not specified, use cpu0 then, so that
1642 * the result set will be relatively stable.
1644 cpu = 0;
1646 origcpu = mycpuid;
1647 lwkt_migratecpu(cpu);
1649 switch (w.w_op) {
1650 case NET_RT_DUMP:
1651 case NET_RT_FLAGS:
1652 error = sysctl_rttable(af, w.w_req, w.w_op, w.w_arg);
1653 break;
1655 case NET_RT_IFLIST:
1656 error = sysctl_iflist(af, &w);
1657 break;
1659 if (w.w_tmem != NULL)
1660 kfree(w.w_tmem, M_RTABLE);
1662 lwkt_migratecpu(origcpu);
1663 return (error);
1666 SYSCTL_NODE(_net, PF_ROUTE, routetable, CTLFLAG_RD, sysctl_rtsock, "");
1669 * Definitions of protocols supported in the ROUTE domain.
1672 static struct domain routedomain; /* or at least forward */
1674 static struct protosw routesw[] = {
1676 .pr_type = SOCK_RAW,
1677 .pr_domain = &routedomain,
1678 .pr_protocol = 0,
1679 .pr_flags = PR_ATOMIC|PR_ADDR,
1680 .pr_input = NULL,
1681 .pr_output = route_output,
1682 .pr_ctlinput = raw_ctlinput,
1683 .pr_ctloutput = NULL,
1684 .pr_ctlport = cpu0_ctlport,
1686 .pr_init = raw_init,
1687 .pr_usrreqs = &route_usrreqs
1691 static struct domain routedomain = {
1692 .dom_family = AF_ROUTE,
1693 .dom_name = "route",
1694 .dom_init = NULL,
1695 .dom_externalize = NULL,
1696 .dom_dispose = NULL,
1697 .dom_protosw = routesw,
1698 .dom_protoswNPROTOSW = &routesw[(sizeof routesw)/(sizeof routesw[0])],
1699 .dom_next = SLIST_ENTRY_INITIALIZER,
1700 .dom_rtattach = NULL,
1701 .dom_rtoffset = 0,
1702 .dom_maxrtkey = 0,
1703 .dom_ifattach = NULL,
1704 .dom_ifdetach = NULL
1707 DOMAIN_SET(route);