]>
Commit | Line | Data |
---|---|---|
1c79356b A |
1 | /* |
2 | * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. | |
3 | * | |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
6 | * The contents of this file constitute Original Code as defined in and | |
7 | * are subject to the Apple Public Source License Version 1.1 (the | |
8 | * "License"). You may not use this file except in compliance with the | |
9 | * License. Please obtain a copy of the License at | |
10 | * http://www.apple.com/publicsource and read it before using this file. | |
11 | * | |
12 | * This Original Code and all software distributed under the License are | |
13 | * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
14 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
15 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
16 | * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the | |
17 | * License for the specific language governing rights and limitations | |
18 | * under the License. | |
19 | * | |
20 | * @APPLE_LICENSE_HEADER_END@ | |
21 | */ | |
22 | /* | |
23 | * Copyright (c) 1982, 1986, 1988, 1993 | |
24 | * The Regents of the University of California. All rights reserved. | |
25 | * | |
26 | * Redistribution and use in source and binary forms, with or without | |
27 | * modification, are permitted provided that the following conditions | |
28 | * are met: | |
29 | * 1. Redistributions of source code must retain the above copyright | |
30 | * notice, this list of conditions and the following disclaimer. | |
31 | * 2. Redistributions in binary form must reproduce the above copyright | |
32 | * notice, this list of conditions and the following disclaimer in the | |
33 | * documentation and/or other materials provided with the distribution. | |
34 | * 3. All advertising materials mentioning features or use of this software | |
35 | * must display the following acknowledgement: | |
36 | * This product includes software developed by the University of | |
37 | * California, Berkeley and its contributors. | |
38 | * 4. Neither the name of the University nor the names of its contributors | |
39 | * may be used to endorse or promote products derived from this software | |
40 | * without specific prior written permission. | |
41 | * | |
42 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
43 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
44 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
45 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
46 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
47 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
48 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
49 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
50 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
51 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
52 | * SUCH DAMAGE. | |
53 | * | |
9bccf70c | 54 | * $FreeBSD: src/sys/netinet/ip_divert.c,v 1.42.2.4 2001/07/29 19:32:40 ume Exp $ |
1c79356b A |
55 | */ |
56 | ||
1c79356b A |
57 | |
58 | #ifndef INET | |
59 | #error "IPDIVERT requires INET." | |
60 | #endif | |
61 | ||
62 | #include <sys/param.h> | |
9bccf70c | 63 | #include <sys/kernel.h> |
1c79356b A |
64 | #include <sys/malloc.h> |
65 | #include <sys/mbuf.h> | |
66 | #include <sys/socket.h> | |
67 | #include <sys/protosw.h> | |
68 | #include <sys/socketvar.h> | |
9bccf70c | 69 | #include <sys/sysctl.h> |
1c79356b A |
70 | #include <sys/systm.h> |
71 | #include <sys/proc.h> | |
72 | ||
1c79356b A |
73 | |
74 | #include <net/if.h> | |
75 | #include <net/route.h> | |
76 | ||
77 | #include <netinet/in.h> | |
78 | #include <netinet/in_systm.h> | |
79 | #include <netinet/ip.h> | |
80 | #include <netinet/in_pcb.h> | |
81 | #include <netinet/in_var.h> | |
82 | #include <netinet/ip_var.h> | |
83 | ||
84 | /* | |
85 | * Divert sockets | |
86 | */ | |
87 | ||
88 | /* | |
89 | * Allocate enough space to hold a full IP packet | |
90 | */ | |
91 | #define DIVSNDQ (65536 + 100) | |
92 | #define DIVRCVQ (65536 + 100) | |
93 | ||
1c79356b | 94 | /* |
9bccf70c A |
95 | * A 16 bit cookie is passed to and from the user process. |
96 | * The user process can send it back to help the caller know | |
97 | * something about where the packet originally came from. | |
1c79356b | 98 | * |
9bccf70c | 99 | * In the case of ipfw, then the cookie is the rule that sent |
1c79356b A |
100 | * us here. On reinjection is is the rule after which processing |
101 | * should continue. Leaving it the same will make processing start | |
102 | * at the rule number after that which sent it here. Setting it to | |
103 | * 0 will restart processing at the beginning. | |
9bccf70c A |
104 | * |
105 | * For divert_packet(), ip_divert_cookie is an input value only. | |
106 | * For div_output(), ip_divert_cookie is an output value only. | |
1c79356b A |
107 | */ |
108 | u_int16_t ip_divert_cookie; | |
109 | ||
110 | /* Internal variables */ | |
1c79356b A |
111 | static struct inpcbhead divcb; |
112 | static struct inpcbinfo divcbinfo; | |
113 | ||
114 | static u_long div_sendspace = DIVSNDQ; /* XXX sysctl ? */ | |
115 | static u_long div_recvspace = DIVRCVQ; /* XXX sysctl ? */ | |
116 | ||
117 | /* Optimization: have this preinitialized */ | |
118 | static struct sockaddr_in divsrc = { sizeof(divsrc), AF_INET }; | |
119 | ||
120 | /* Internal functions */ | |
1c79356b A |
121 | static int div_output(struct socket *so, |
122 | struct mbuf *m, struct sockaddr *addr, struct mbuf *control); | |
123 | ||
124 | /* | |
125 | * Initialize divert connection block queue. | |
126 | */ | |
127 | void | |
128 | div_init(void) | |
129 | { | |
130 | LIST_INIT(&divcb); | |
131 | divcbinfo.listhead = &divcb; | |
132 | /* | |
133 | * XXX We don't use the hash list for divert IP, but it's easier | |
134 | * to allocate a one entry hash list than it is to check all | |
135 | * over the place for hashbase == NULL. | |
136 | */ | |
137 | divcbinfo.hashbase = hashinit(1, M_PCB, &divcbinfo.hashmask); | |
138 | divcbinfo.porthashbase = hashinit(1, M_PCB, &divcbinfo.porthashmask); | |
139 | divcbinfo.ipi_zone = (void *) zinit(sizeof(struct inpcb),(maxsockets * sizeof(struct inpcb)), | |
140 | 4096, "divzone"); | |
141 | ||
142 | /* | |
143 | * ### LD 08/03: init IP forwarding at this point [ipfw is not a module yet] | |
144 | */ | |
145 | #if !IPFIREWALL_KEXT | |
146 | ip_fw_init(); | |
147 | #endif | |
148 | } | |
149 | ||
150 | /* | |
9bccf70c A |
151 | * IPPROTO_DIVERT is not a real IP protocol; don't allow any packets |
152 | * with that protocol number to enter the system from the outside. | |
1c79356b A |
153 | */ |
154 | void | |
9bccf70c A |
155 | div_input(struct mbuf *m, int off) |
156 | { | |
157 | ipstat.ips_noproto++; | |
158 | m_freem(m); | |
159 | } | |
160 | ||
161 | /* | |
162 | * Divert a packet by passing it up to the divert socket at port 'port'. | |
163 | * | |
164 | * Setup generic address and protocol structures for div_input routine, | |
165 | * then pass them along with mbuf chain. | |
166 | */ | |
167 | void | |
168 | divert_packet(struct mbuf *m, int incoming, int port) | |
1c79356b A |
169 | { |
170 | struct ip *ip; | |
171 | struct inpcb *inp; | |
172 | struct socket *sa; | |
9bccf70c | 173 | u_int16_t nport; |
1c79356b A |
174 | |
175 | /* Sanity check */ | |
9bccf70c A |
176 | KASSERT(port != 0, ("%s: port=0", __FUNCTION__)); |
177 | ||
178 | /* Record and reset divert cookie */ | |
179 | divsrc.sin_port = ip_divert_cookie; | |
180 | ip_divert_cookie = 0; | |
1c79356b A |
181 | |
182 | /* Assure header */ | |
183 | if (m->m_len < sizeof(struct ip) && | |
184 | (m = m_pullup(m, sizeof(struct ip))) == 0) { | |
185 | return; | |
186 | } | |
187 | ip = mtod(m, struct ip *); | |
188 | ||
1c79356b | 189 | /* |
9bccf70c | 190 | * Record receive interface address, if any. |
1c79356b A |
191 | * But only for incoming packets. |
192 | */ | |
193 | divsrc.sin_addr.s_addr = 0; | |
9bccf70c | 194 | if (incoming) { |
1c79356b A |
195 | struct ifaddr *ifa; |
196 | ||
1c79356b | 197 | /* Sanity check */ |
9bccf70c | 198 | KASSERT((m->m_flags & M_PKTHDR), ("%s: !PKTHDR", __FUNCTION__)); |
1c79356b A |
199 | |
200 | /* Find IP address for receive interface */ | |
9bccf70c | 201 | TAILQ_FOREACH(ifa, &m->m_pkthdr.rcvif->if_addrhead, ifa_link) { |
1c79356b A |
202 | if (ifa->ifa_addr == NULL) |
203 | continue; | |
204 | if (ifa->ifa_addr->sa_family != AF_INET) | |
205 | continue; | |
206 | divsrc.sin_addr = | |
207 | ((struct sockaddr_in *) ifa->ifa_addr)->sin_addr; | |
208 | break; | |
209 | } | |
210 | } | |
211 | /* | |
212 | * Record the incoming interface name whenever we have one. | |
213 | */ | |
214 | bzero(&divsrc.sin_zero, sizeof(divsrc.sin_zero)); | |
215 | if (m->m_pkthdr.rcvif) { | |
216 | /* | |
217 | * Hide the actual interface name in there in the | |
218 | * sin_zero array. XXX This needs to be moved to a | |
219 | * different sockaddr type for divert, e.g. | |
220 | * sockaddr_div with multiple fields like | |
221 | * sockaddr_dl. Presently we have only 7 bytes | |
222 | * but that will do for now as most interfaces | |
223 | * are 4 or less + 2 or less bytes for unit. | |
224 | * There is probably a faster way of doing this, | |
225 | * possibly taking it from the sockaddr_dl on the iface. | |
226 | * This solves the problem of a P2P link and a LAN interface | |
227 | * having the same address, which can result in the wrong | |
228 | * interface being assigned to the packet when fed back | |
229 | * into the divert socket. Theoretically if the daemon saves | |
230 | * and re-uses the sockaddr_in as suggested in the man pages, | |
231 | * this iface name will come along for the ride. | |
232 | * (see div_output for the other half of this.) | |
233 | */ | |
234 | snprintf(divsrc.sin_zero, sizeof(divsrc.sin_zero), | |
235 | "%s%d", m->m_pkthdr.rcvif->if_name, | |
236 | m->m_pkthdr.rcvif->if_unit); | |
237 | } | |
238 | ||
239 | /* Put packet on socket queue, if any */ | |
240 | sa = NULL; | |
9bccf70c A |
241 | nport = htons((u_int16_t)port); |
242 | LIST_FOREACH(inp, &divcb, inp_list) { | |
243 | if (inp->inp_lport == nport) | |
1c79356b A |
244 | sa = inp->inp_socket; |
245 | } | |
1c79356b A |
246 | if (sa) { |
247 | if (sbappendaddr(&sa->so_rcv, (struct sockaddr *)&divsrc, | |
248 | m, (struct mbuf *)0) == 0) | |
249 | m_freem(m); | |
250 | else | |
251 | sorwakeup(sa); | |
252 | } else { | |
253 | m_freem(m); | |
254 | ipstat.ips_noproto++; | |
255 | ipstat.ips_delivered--; | |
256 | } | |
257 | } | |
258 | ||
259 | /* | |
260 | * Deliver packet back into the IP processing machinery. | |
261 | * | |
262 | * If no address specified, or address is 0.0.0.0, send to ip_output(); | |
263 | * otherwise, send to ip_input() and mark as having been received on | |
264 | * the interface with that address. | |
265 | */ | |
266 | static int | |
267 | div_output(so, m, addr, control) | |
268 | struct socket *so; | |
269 | register struct mbuf *m; | |
270 | struct sockaddr *addr; | |
271 | struct mbuf *control; | |
272 | { | |
273 | register struct inpcb *const inp = sotoinpcb(so); | |
274 | register struct ip *const ip = mtod(m, struct ip *); | |
275 | struct sockaddr_in *sin = (struct sockaddr_in *)addr; | |
276 | int error = 0; | |
277 | ||
278 | if (control) | |
279 | m_freem(control); /* XXX */ | |
280 | ||
281 | /* Loopback avoidance and state recovery */ | |
282 | if (sin) { | |
283 | int len = 0; | |
284 | char *c = sin->sin_zero; | |
285 | ||
286 | ip_divert_cookie = sin->sin_port; | |
287 | ||
288 | /* | |
289 | * Find receive interface with the given name or IP address. | |
290 | * The name is user supplied data so don't trust it's size or | |
291 | * that it is zero terminated. The name has priority. | |
292 | * We are presently assuming that the sockaddr_in | |
293 | * has not been replaced by a sockaddr_div, so we limit it | |
294 | * to 16 bytes in total. the name is stuffed (if it exists) | |
295 | * in the sin_zero[] field. | |
296 | */ | |
297 | while (*c++ && (len++ < sizeof(sin->sin_zero))); | |
298 | if ((len > 0) && (len < sizeof(sin->sin_zero))) | |
299 | m->m_pkthdr.rcvif = ifunit(sin->sin_zero); | |
300 | } else { | |
301 | ip_divert_cookie = 0; | |
302 | } | |
303 | ||
304 | /* Reinject packet into the system as incoming or outgoing */ | |
305 | if (!sin || sin->sin_addr.s_addr == 0) { | |
306 | /* | |
307 | * Don't allow both user specified and setsockopt options, | |
308 | * and don't allow packet length sizes that will crash | |
309 | */ | |
310 | if (((ip->ip_hl != (sizeof (*ip) >> 2)) && inp->inp_options) || | |
311 | ((u_short)ntohs(ip->ip_len) > m->m_pkthdr.len)) { | |
312 | error = EINVAL; | |
313 | goto cantsend; | |
314 | } | |
315 | ||
316 | /* Convert fields to host order for ip_output() */ | |
317 | NTOHS(ip->ip_len); | |
318 | NTOHS(ip->ip_off); | |
319 | ||
320 | /* Send packet to output processing */ | |
321 | ipstat.ips_rawout++; /* XXX */ | |
322 | error = ip_output(m, inp->inp_options, &inp->inp_route, | |
323 | (so->so_options & SO_DONTROUTE) | | |
9bccf70c A |
324 | IP_ALLOWBROADCAST | IP_RAWOUTPUT, |
325 | inp->inp_moptions); | |
1c79356b A |
326 | } else { |
327 | struct ifaddr *ifa; | |
328 | ||
329 | /* If no luck with the name above. check by IP address. */ | |
330 | if (m->m_pkthdr.rcvif == NULL) { | |
331 | /* | |
332 | * Make sure there are no distractions | |
333 | * for ifa_ifwithaddr. Clear the port and the ifname. | |
334 | * Maybe zap all 8 bytes at once using a 64bit write? | |
335 | */ | |
336 | bzero(sin->sin_zero, sizeof(sin->sin_zero)); | |
337 | /* *((u_int64_t *)sin->sin_zero) = 0; */ /* XXX ?? */ | |
338 | sin->sin_port = 0; | |
339 | if (!(ifa = ifa_ifwithaddr((struct sockaddr *) sin))) { | |
340 | error = EADDRNOTAVAIL; | |
341 | goto cantsend; | |
342 | } | |
343 | m->m_pkthdr.rcvif = ifa->ifa_ifp; | |
344 | } | |
345 | ||
346 | /* Send packet to input processing */ | |
347 | ip_input(m); | |
348 | } | |
349 | ||
350 | /* paranoid: Reset for next time (and other packets) */ | |
351 | /* almost definitly already done in the ipfw filter but.. */ | |
352 | ip_divert_cookie = 0; | |
353 | return error; | |
354 | ||
355 | cantsend: | |
1c79356b | 356 | m_freem(m); |
9bccf70c | 357 | ip_divert_cookie = 0; |
1c79356b A |
358 | return error; |
359 | } | |
360 | ||
361 | static int | |
362 | div_attach(struct socket *so, int proto, struct proc *p) | |
363 | { | |
364 | struct inpcb *inp; | |
365 | int error, s; | |
366 | ||
367 | inp = sotoinpcb(so); | |
368 | if (inp) | |
369 | panic("div_attach"); | |
370 | if (p && (error = suser(p->p_ucred, &p->p_acflag)) != 0) | |
371 | return error; | |
372 | ||
9bccf70c A |
373 | error = soreserve(so, div_sendspace, div_recvspace); |
374 | if (error) | |
375 | return error; | |
1c79356b A |
376 | s = splnet(); |
377 | error = in_pcballoc(so, &divcbinfo, p); | |
378 | splx(s); | |
1c79356b A |
379 | if (error) |
380 | return error; | |
381 | inp = (struct inpcb *)so->so_pcb; | |
382 | inp->inp_ip_p = proto; | |
9bccf70c A |
383 | inp->inp_vflag |= INP_IPV4; |
384 | inp->inp_flags |= INP_HDRINCL; | |
1c79356b A |
385 | /* The socket is always "connected" because |
386 | we always know "where" to send the packet */ | |
387 | so->so_state |= SS_ISCONNECTED; | |
1c79356b A |
388 | return 0; |
389 | } | |
390 | ||
391 | static int | |
392 | div_detach(struct socket *so) | |
393 | { | |
394 | struct inpcb *inp; | |
395 | ||
396 | inp = sotoinpcb(so); | |
397 | if (inp == 0) | |
398 | panic("div_detach"); | |
399 | in_pcbdetach(inp); | |
400 | return 0; | |
401 | } | |
402 | ||
403 | static int | |
404 | div_abort(struct socket *so) | |
405 | { | |
406 | soisdisconnected(so); | |
407 | return div_detach(so); | |
408 | } | |
409 | ||
410 | static int | |
411 | div_disconnect(struct socket *so) | |
412 | { | |
413 | if ((so->so_state & SS_ISCONNECTED) == 0) | |
414 | return ENOTCONN; | |
415 | return div_abort(so); | |
416 | } | |
417 | ||
418 | static int | |
419 | div_bind(struct socket *so, struct sockaddr *nam, struct proc *p) | |
420 | { | |
421 | struct inpcb *inp; | |
422 | int s; | |
423 | int error; | |
424 | ||
425 | s = splnet(); | |
426 | inp = sotoinpcb(so); | |
9bccf70c A |
427 | /* in_pcbbind assumes that the socket is a sockaddr_in |
428 | * and in_pcbbind requires a valid address. Since divert | |
429 | * sockets don't we need to make sure the address is | |
430 | * filled in properly. | |
431 | * XXX -- divert should not be abusing in_pcbind | |
432 | * and should probably have its own family. | |
433 | */ | |
434 | if (nam->sa_family != AF_INET) { | |
435 | error = EAFNOSUPPORT; | |
436 | } else { | |
437 | ((struct sockaddr_in *)nam)->sin_addr.s_addr = INADDR_ANY; | |
438 | error = in_pcbbind(inp, nam, p); | |
439 | } | |
1c79356b | 440 | splx(s); |
9bccf70c | 441 | return error; |
1c79356b A |
442 | } |
443 | ||
444 | static int | |
445 | div_shutdown(struct socket *so) | |
446 | { | |
447 | socantsendmore(so); | |
448 | return 0; | |
449 | } | |
450 | ||
451 | static int | |
452 | div_send(struct socket *so, int flags, struct mbuf *m, struct sockaddr *nam, | |
453 | struct mbuf *control, struct proc *p) | |
454 | { | |
455 | /* Packet must have a header (but that's about it) */ | |
9bccf70c | 456 | if (m->m_len < sizeof (struct ip) && |
1c79356b A |
457 | (m = m_pullup(m, sizeof (struct ip))) == 0) { |
458 | ipstat.ips_toosmall++; | |
459 | m_freem(m); | |
460 | return EINVAL; | |
461 | } | |
462 | ||
463 | /* Send packet */ | |
464 | return div_output(so, m, nam, control); | |
465 | } | |
466 | ||
9bccf70c A |
467 | static int |
468 | div_pcblist SYSCTL_HANDLER_ARGS | |
469 | { | |
470 | int error, i, n, s; | |
471 | struct inpcb *inp, **inp_list; | |
472 | inp_gen_t gencnt; | |
473 | struct xinpgen xig; | |
474 | ||
475 | /* | |
476 | * The process of preparing the TCB list is too time-consuming and | |
477 | * resource-intensive to repeat twice on every request. | |
478 | */ | |
479 | if (req->oldptr == 0) { | |
480 | n = divcbinfo.ipi_count; | |
481 | req->oldidx = 2 * (sizeof xig) | |
482 | + (n + n/8) * sizeof(struct xinpcb); | |
483 | return 0; | |
484 | } | |
485 | ||
486 | if (req->newptr != 0) | |
487 | return EPERM; | |
488 | ||
489 | /* | |
490 | * OK, now we're committed to doing something. | |
491 | */ | |
492 | s = splnet(); | |
493 | gencnt = divcbinfo.ipi_gencnt; | |
494 | n = divcbinfo.ipi_count; | |
495 | splx(s); | |
496 | ||
497 | xig.xig_len = sizeof xig; | |
498 | xig.xig_count = n; | |
499 | xig.xig_gen = gencnt; | |
500 | xig.xig_sogen = so_gencnt; | |
501 | error = SYSCTL_OUT(req, &xig, sizeof xig); | |
502 | if (error) | |
503 | return error; | |
504 | ||
505 | inp_list = _MALLOC(n * sizeof *inp_list, M_TEMP, M_WAITOK); | |
506 | if (inp_list == 0) | |
507 | return ENOMEM; | |
508 | ||
509 | s = splnet(); | |
510 | for (inp = LIST_FIRST(divcbinfo.listhead), i = 0; inp && i < n; | |
511 | inp = LIST_NEXT(inp, inp_list)) { | |
512 | #ifdef __APPLE__ | |
513 | if (inp->inp_gencnt <= gencnt) | |
514 | #else | |
515 | if (inp->inp_gencnt <= gencnt && !prison_xinpcb(req->p, inp)) | |
516 | #endif | |
517 | inp_list[i++] = inp; | |
518 | } | |
519 | splx(s); | |
520 | n = i; | |
521 | ||
522 | error = 0; | |
523 | for (i = 0; i < n; i++) { | |
524 | inp = inp_list[i]; | |
525 | if (inp->inp_gencnt <= gencnt) { | |
526 | struct xinpcb xi; | |
527 | xi.xi_len = sizeof xi; | |
528 | /* XXX should avoid extra copy */ | |
529 | bcopy(inp, &xi.xi_inp, sizeof *inp); | |
530 | if (inp->inp_socket) | |
531 | sotoxsocket(inp->inp_socket, &xi.xi_socket); | |
532 | error = SYSCTL_OUT(req, &xi, sizeof xi); | |
533 | } | |
534 | } | |
535 | if (!error) { | |
536 | /* | |
537 | * Give the user an updated idea of our state. | |
538 | * If the generation differs from what we told | |
539 | * her before, she knows that something happened | |
540 | * while we were processing this request, and it | |
541 | * might be necessary to retry. | |
542 | */ | |
543 | s = splnet(); | |
544 | xig.xig_gen = divcbinfo.ipi_gencnt; | |
545 | xig.xig_sogen = so_gencnt; | |
546 | xig.xig_count = divcbinfo.ipi_count; | |
547 | splx(s); | |
548 | error = SYSCTL_OUT(req, &xig, sizeof xig); | |
549 | } | |
550 | FREE(inp_list, M_TEMP); | |
551 | return error; | |
552 | } | |
553 | ||
554 | #warning Fix SYSCTL net_inet_divert | |
555 | #if 0 | |
556 | SYSCTL_DECL(_net_inet_divert); | |
557 | SYSCTL_PROC(_net_inet_divert, OID_AUTO, pcblist, CTLFLAG_RD, 0, 0, | |
558 | div_pcblist, "S,xinpcb", "List of active divert sockets"); | |
559 | #endif | |
560 | ||
1c79356b A |
561 | struct pr_usrreqs div_usrreqs = { |
562 | div_abort, pru_accept_notsupp, div_attach, div_bind, | |
563 | pru_connect_notsupp, pru_connect2_notsupp, in_control, div_detach, | |
564 | div_disconnect, pru_listen_notsupp, in_setpeeraddr, pru_rcvd_notsupp, | |
565 | pru_rcvoob_notsupp, div_send, pru_sense_null, div_shutdown, | |
566 | in_setsockaddr, sosend, soreceive, sopoll | |
567 | }; |