rtsock_50.c revision 1.1.6.1 1 1.1.6.1 yamt /* $NetBSD: rtsock_50.c,v 1.1.6.1 2009/05/04 08:12:17 yamt Exp $ */
2 1.1.6.1 yamt
3 1.1.6.1 yamt /*
4 1.1.6.1 yamt * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5 1.1.6.1 yamt * All rights reserved.
6 1.1.6.1 yamt *
7 1.1.6.1 yamt * Redistribution and use in source and binary forms, with or without
8 1.1.6.1 yamt * modification, are permitted provided that the following conditions
9 1.1.6.1 yamt * are met:
10 1.1.6.1 yamt * 1. Redistributions of source code must retain the above copyright
11 1.1.6.1 yamt * notice, this list of conditions and the following disclaimer.
12 1.1.6.1 yamt * 2. Redistributions in binary form must reproduce the above copyright
13 1.1.6.1 yamt * notice, this list of conditions and the following disclaimer in the
14 1.1.6.1 yamt * documentation and/or other materials provided with the distribution.
15 1.1.6.1 yamt * 3. Neither the name of the project nor the names of its contributors
16 1.1.6.1 yamt * may be used to endorse or promote products derived from this software
17 1.1.6.1 yamt * without specific prior written permission.
18 1.1.6.1 yamt *
19 1.1.6.1 yamt * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20 1.1.6.1 yamt * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.1.6.1 yamt * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.1.6.1 yamt * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23 1.1.6.1 yamt * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.1.6.1 yamt * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.1.6.1 yamt * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.1.6.1 yamt * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.1.6.1 yamt * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.1.6.1 yamt * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.1.6.1 yamt * SUCH DAMAGE.
30 1.1.6.1 yamt */
31 1.1.6.1 yamt
32 1.1.6.1 yamt /*
33 1.1.6.1 yamt * Copyright (c) 1988, 1991, 1993
34 1.1.6.1 yamt * The Regents of the University of California. All rights reserved.
35 1.1.6.1 yamt *
36 1.1.6.1 yamt * Redistribution and use in source and binary forms, with or without
37 1.1.6.1 yamt * modification, are permitted provided that the following conditions
38 1.1.6.1 yamt * are met:
39 1.1.6.1 yamt * 1. Redistributions of source code must retain the above copyright
40 1.1.6.1 yamt * notice, this list of conditions and the following disclaimer.
41 1.1.6.1 yamt * 2. Redistributions in binary form must reproduce the above copyright
42 1.1.6.1 yamt * notice, this list of conditions and the following disclaimer in the
43 1.1.6.1 yamt * documentation and/or other materials provided with the distribution.
44 1.1.6.1 yamt * 3. Neither the name of the University nor the names of its contributors
45 1.1.6.1 yamt * may be used to endorse or promote products derived from this software
46 1.1.6.1 yamt * without specific prior written permission.
47 1.1.6.1 yamt *
48 1.1.6.1 yamt * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 1.1.6.1 yamt * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 1.1.6.1 yamt * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 1.1.6.1 yamt * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 1.1.6.1 yamt * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 1.1.6.1 yamt * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 1.1.6.1 yamt * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 1.1.6.1 yamt * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 1.1.6.1 yamt * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 1.1.6.1 yamt * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58 1.1.6.1 yamt * SUCH DAMAGE.
59 1.1.6.1 yamt *
60 1.1.6.1 yamt * @(#)rtsock.c 8.7 (Berkeley) 10/12/95
61 1.1.6.1 yamt */
62 1.1.6.1 yamt
63 1.1.6.1 yamt #include <sys/cdefs.h>
64 1.1.6.1 yamt __KERNEL_RCSID(0, "$NetBSD: rtsock_50.c,v 1.1.6.1 2009/05/04 08:12:17 yamt Exp $");
65 1.1.6.1 yamt
66 1.1.6.1 yamt #include "opt_inet.h"
67 1.1.6.1 yamt
68 1.1.6.1 yamt #include <sys/param.h>
69 1.1.6.1 yamt #include <sys/systm.h>
70 1.1.6.1 yamt #include <sys/proc.h>
71 1.1.6.1 yamt #include <sys/mbuf.h>
72 1.1.6.1 yamt #include <sys/socket.h>
73 1.1.6.1 yamt #include <sys/socketvar.h>
74 1.1.6.1 yamt #include <sys/domain.h>
75 1.1.6.1 yamt #include <sys/protosw.h>
76 1.1.6.1 yamt #include <sys/sysctl.h>
77 1.1.6.1 yamt #include <sys/kauth.h>
78 1.1.6.1 yamt #ifdef RTSOCK_DEBUG
79 1.1.6.1 yamt #include <netinet/in.h>
80 1.1.6.1 yamt #endif /* RTSOCK_DEBUG */
81 1.1.6.1 yamt
82 1.1.6.1 yamt #include <net/if.h>
83 1.1.6.1 yamt #include <net/route.h>
84 1.1.6.1 yamt #include <net/raw_cb.h>
85 1.1.6.1 yamt
86 1.1.6.1 yamt #include <machine/stdarg.h>
87 1.1.6.1 yamt
88 1.1.6.1 yamt #include <compat/net/if.h>
89 1.1.6.1 yamt
90 1.1.6.1 yamt void
91 1.1.6.1 yamt compat_50_rt_ifmsg(struct ifnet *ifp, struct if_msghdr *ifm)
92 1.1.6.1 yamt {
93 1.1.6.1 yamt struct if_msghdr50 oifm;
94 1.1.6.1 yamt struct mbuf *m;
95 1.1.6.1 yamt struct rt_addrinfo info;
96 1.1.6.1 yamt
97 1.1.6.1 yamt if (route_cb.any_count == 0)
98 1.1.6.1 yamt return;
99 1.1.6.1 yamt (void)memset(&info, 0, sizeof(info));
100 1.1.6.1 yamt (void)memset(&oifm, 0, sizeof(oifm));
101 1.1.6.1 yamt oifm.ifm_index = ifp->if_index;
102 1.1.6.1 yamt oifm.ifm_flags = ifp->if_flags;
103 1.1.6.1 yamt oifm.ifm_data.ifi_type = ifp->if_data.ifi_type;
104 1.1.6.1 yamt oifm.ifm_data.ifi_addrlen = ifp->if_data.ifi_addrlen;
105 1.1.6.1 yamt oifm.ifm_data.ifi_hdrlen = ifp->if_data.ifi_hdrlen;
106 1.1.6.1 yamt oifm.ifm_data.ifi_mtu = ifp->if_data.ifi_mtu;
107 1.1.6.1 yamt oifm.ifm_data.ifi_metric = ifp->if_data.ifi_metric;
108 1.1.6.1 yamt oifm.ifm_data.ifi_baudrate = ifp->if_data.ifi_baudrate;
109 1.1.6.1 yamt oifm.ifm_data.ifi_ipackets = ifp->if_data.ifi_ipackets;
110 1.1.6.1 yamt oifm.ifm_data.ifi_ierrors = ifp->if_data.ifi_ierrors;
111 1.1.6.1 yamt oifm.ifm_data.ifi_opackets = ifp->if_data.ifi_opackets;
112 1.1.6.1 yamt oifm.ifm_data.ifi_oerrors = ifp->if_data.ifi_oerrors;
113 1.1.6.1 yamt oifm.ifm_data.ifi_collisions = ifp->if_data.ifi_collisions;
114 1.1.6.1 yamt oifm.ifm_data.ifi_ibytes = ifp->if_data.ifi_ibytes;
115 1.1.6.1 yamt oifm.ifm_data.ifi_obytes = ifp->if_data.ifi_obytes;
116 1.1.6.1 yamt oifm.ifm_data.ifi_imcasts = ifp->if_data.ifi_imcasts;
117 1.1.6.1 yamt oifm.ifm_data.ifi_omcasts = ifp->if_data.ifi_omcasts;
118 1.1.6.1 yamt oifm.ifm_data.ifi_iqdrops = ifp->if_data.ifi_iqdrops;
119 1.1.6.1 yamt oifm.ifm_data.ifi_noproto = ifp->if_data.ifi_noproto;
120 1.1.6.1 yamt TIMESPEC_TO_TIMEVAL(&oifm.ifm_data.ifi_lastchange,
121 1.1.6.1 yamt &ifp->if_data.ifi_lastchange);
122 1.1.6.1 yamt oifm.ifm_addrs = 0;
123 1.1.6.1 yamt m = rt_msg1(RTM_OIFINFO, &info, (void *)&oifm, sizeof(oifm));
124 1.1.6.1 yamt if (m == NULL)
125 1.1.6.1 yamt return;
126 1.1.6.1 yamt route_enqueue(m, 0);
127 1.1.6.1 yamt }
128 1.1.6.1 yamt
129 1.1.6.1 yamt int
130 1.1.6.1 yamt compat_50_iflist(struct ifnet *ifp, struct rt_walkarg *w,
131 1.1.6.1 yamt struct rt_addrinfo *info, size_t len)
132 1.1.6.1 yamt {
133 1.1.6.1 yamt struct if_msghdr50 *ifm;
134 1.1.6.1 yamt int error;
135 1.1.6.1 yamt
136 1.1.6.1 yamt ifm = (struct if_msghdr50 *)w->w_tmem;
137 1.1.6.1 yamt ifm->ifm_index = ifp->if_index;
138 1.1.6.1 yamt ifm->ifm_flags = ifp->if_flags;
139 1.1.6.1 yamt ifm->ifm_data.ifi_type = ifp->if_data.ifi_type;
140 1.1.6.1 yamt ifm->ifm_data.ifi_addrlen = ifp->if_data.ifi_addrlen;
141 1.1.6.1 yamt ifm->ifm_data.ifi_hdrlen = ifp->if_data.ifi_hdrlen;
142 1.1.6.1 yamt ifm->ifm_data.ifi_mtu = ifp->if_data.ifi_mtu;
143 1.1.6.1 yamt ifm->ifm_data.ifi_metric = ifp->if_data.ifi_metric;
144 1.1.6.1 yamt ifm->ifm_data.ifi_baudrate = ifp->if_data.ifi_baudrate;
145 1.1.6.1 yamt ifm->ifm_data.ifi_ipackets = ifp->if_data.ifi_ipackets;
146 1.1.6.1 yamt ifm->ifm_data.ifi_ierrors = ifp->if_data.ifi_ierrors;
147 1.1.6.1 yamt ifm->ifm_data.ifi_opackets = ifp->if_data.ifi_opackets;
148 1.1.6.1 yamt ifm->ifm_data.ifi_oerrors = ifp->if_data.ifi_oerrors;
149 1.1.6.1 yamt ifm->ifm_data.ifi_collisions = ifp->if_data.ifi_collisions;
150 1.1.6.1 yamt ifm->ifm_data.ifi_ibytes = ifp->if_data.ifi_ibytes;
151 1.1.6.1 yamt ifm->ifm_data.ifi_obytes = ifp->if_data.ifi_obytes;
152 1.1.6.1 yamt ifm->ifm_data.ifi_imcasts = ifp->if_data.ifi_imcasts;
153 1.1.6.1 yamt ifm->ifm_data.ifi_omcasts = ifp->if_data.ifi_omcasts;
154 1.1.6.1 yamt ifm->ifm_data.ifi_iqdrops = ifp->if_data.ifi_iqdrops;
155 1.1.6.1 yamt ifm->ifm_data.ifi_noproto = ifp->if_data.ifi_noproto;
156 1.1.6.1 yamt TIMESPEC_TO_TIMEVAL(&ifm->ifm_data.ifi_lastchange,
157 1.1.6.1 yamt &ifp->if_data.ifi_lastchange);
158 1.1.6.1 yamt ifm->ifm_addrs = info->rti_addrs;
159 1.1.6.1 yamt error = copyout(ifm, w->w_where, len);
160 1.1.6.1 yamt if (error)
161 1.1.6.1 yamt return error;
162 1.1.6.1 yamt w->w_where = (char *)w->w_where + len;
163 1.1.6.1 yamt return 0;
164 1.1.6.1 yamt }
165