5c35c984abb969a98e45b878c268728060dc0862
[dragonfly.git] / sys / netinet / raw_ip.c
1 /*
2  * Copyright (c) 1982, 1986, 1988, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *      @(#)raw_ip.c    8.7 (Berkeley) 5/15/95
34  * $FreeBSD: src/sys/netinet/raw_ip.c,v 1.64.2.16 2003/08/24 08:24:38 hsu Exp $
35  * $DragonFly: src/sys/netinet/raw_ip.c,v 1.6 2003/08/24 23:07:08 hsu Exp $
36  */
37
38 #include "opt_inet6.h"
39 #include "opt_ipsec.h"
40 #include "opt_random_ip_id.h"
41
42 #include <sys/param.h>
43 #include <sys/systm.h>
44 #include <sys/kernel.h>
45 #include <sys/malloc.h>
46 #include <sys/mbuf.h>
47 #include <sys/proc.h>
48 #include <sys/protosw.h>
49 #include <sys/socket.h>
50 #include <sys/socketvar.h>
51 #include <sys/sysctl.h>
52
53 #include <vm/vm_zone.h>
54
55 #include <net/if.h>
56 #include <net/route.h>
57
58 #define _IP_VHL
59 #include <netinet/in.h>
60 #include <netinet/in_systm.h>
61 #include <netinet/ip.h>
62 #include <netinet/in_pcb.h>
63 #include <netinet/in_var.h>
64 #include <netinet/ip_var.h>
65
66 #include <net/ip_mroute/ip_mroute.h>
67 #include <net/ipfw/ip_fw.h>
68 #include <net/dummynet/ip_dummynet.h>
69
70 #ifdef FAST_IPSEC
71 #include <netipsec/ipsec.h>
72 #endif /*FAST_IPSEC*/
73
74 #ifdef IPSEC
75 #include <netinet6/ipsec.h>
76 #endif /*IPSEC*/
77
78 struct  inpcbhead ripcb;
79 struct  inpcbinfo ripcbinfo;
80
81 /* control hooks for ipfw and dummynet */
82 ip_fw_ctl_t *ip_fw_ctl_ptr;
83 ip_dn_ctl_t *ip_dn_ctl_ptr;
84
85 /*
86  * hooks for multicast routing. They all default to NULL,
87  * so leave them not initialized and rely on BSS being set to 0.
88  */
89
90 /* The socket used to communicate with the multicast routing daemon.  */
91 struct socket  *ip_mrouter;
92
93 /* The various mrouter and rsvp functions */
94 int (*ip_mrouter_set)(struct socket *, struct sockopt *);
95 int (*ip_mrouter_get)(struct socket *, struct sockopt *);
96 int (*ip_mrouter_done)(void);
97 int (*ip_mforward)(struct ip *, struct ifnet *, struct mbuf *,
98                 struct ip_moptions *);
99 int (*mrt_ioctl)(int, caddr_t);
100 int (*legal_vif_num)(int);
101 u_long (*ip_mcast_src)(int);
102
103 void (*rsvp_input_p)(struct mbuf *m, int off, int proto);
104 int (*ip_rsvp_vif)(struct socket *, struct sockopt *);
105 void (*ip_rsvp_force_done)(struct socket *);
106
107 /*
108  * Nominal space allocated to a raw ip socket.
109  */
110 #define RIPSNDQ         8192
111 #define RIPRCVQ         8192
112
113 /*
114  * Raw interface to IP protocol.
115  */
116
117 /*
118  * Initialize raw connection block queue.
119  */
120 void
121 rip_init(void)
122 {
123         LIST_INIT(&ripcb);
124         ripcbinfo.listhead = &ripcb;
125         /*
126          * XXX We don't use the hash list for raw IP, but it's easier
127          * to allocate a one entry hash list than it is to check all
128          * over the place for hashbase == NULL.
129          */
130         ripcbinfo.hashbase = hashinit(1, M_PCB, &ripcbinfo.hashmask);
131         ripcbinfo.porthashbase = hashinit(1, M_PCB, &ripcbinfo.porthashmask);
132         ripcbinfo.ipi_zone = zinit("ripcb", sizeof(struct inpcb),
133                                    maxsockets, ZONE_INTERRUPT, 0);
134 }
135
136 /*
137  * XXX ripsrc is modified in rip_input, so we must be fix this
138  * when we want to make this code smp-friendly.
139  */
140 static struct   sockaddr_in ripsrc = { sizeof(ripsrc), AF_INET };
141
142 /*
143  * Setup generic address and protocol structures
144  * for raw_input routine, then pass them along with
145  * mbuf chain.
146  */
147 void
148 rip_input(struct mbuf *m, int off, int proto)
149 {
150         struct ip *ip = mtod(m, struct ip *);
151         struct inpcb *inp;
152         struct inpcb *last = NULL;
153         struct mbuf *opts = NULL;
154
155         ripsrc.sin_addr = ip->ip_src;
156         LIST_FOREACH(inp, &ripcb, inp_list) {
157 #ifdef INET6
158                 if ((inp->inp_vflag & INP_IPV4) == 0)
159                         continue;
160 #endif
161                 if (inp->inp_ip_p && inp->inp_ip_p != proto)
162                         continue;
163                 if (inp->inp_laddr.s_addr != INADDR_ANY &&
164                     inp->inp_laddr.s_addr != ip->ip_dst.s_addr)
165                         continue;
166                 if (inp->inp_faddr.s_addr != INADDR_ANY &&
167                     inp->inp_faddr.s_addr != ip->ip_src.s_addr)
168                         continue;
169                 if (last) {
170                         struct mbuf *n = m_copypacket(m, M_DONTWAIT);
171
172 #ifdef IPSEC
173                         /* check AH/ESP integrity. */
174                         if (n && ipsec4_in_reject_so(n, last->inp_socket)) {
175                                 m_freem(n);
176                                 ipsecstat.in_polvio++;
177                                 /* do not inject data to pcb */
178                         } else
179 #endif /*IPSEC*/
180 #ifdef FAST_IPSEC
181                         /* check AH/ESP integrity. */
182                         if (ipsec4_in_reject(n, last)) {
183                                 m_freem(n);
184                                 /* do not inject data to pcb */
185                         } else
186 #endif /*FAST_IPSEC*/
187                         if (n) {
188                                 if (last->inp_flags & INP_CONTROLOPTS ||
189                                     last->inp_socket->so_options & SO_TIMESTAMP)
190                                     ip_savecontrol(last, &opts, ip, n);
191                                 if (sbappendaddr(&last->inp_socket->so_rcv,
192                                     (struct sockaddr *)&ripsrc, n,
193                                     opts) == 0) {
194                                         /* should notify about lost packet */
195                                         m_freem(n);
196                                         if (opts)
197                                             m_freem(opts);
198                                 } else
199                                         sorwakeup(last->inp_socket);
200                                 opts = 0;
201                         }
202                 }
203                 last = inp;
204         }
205 #ifdef IPSEC
206         /* check AH/ESP integrity. */
207         if (last && ipsec4_in_reject_so(m, last->inp_socket)) {
208                 m_freem(m);
209                 ipsecstat.in_polvio++;
210                 ipstat.ips_delivered--;
211                 /* do not inject data to pcb */
212         } else
213 #endif /*IPSEC*/
214 #ifdef FAST_IPSEC
215         /* check AH/ESP integrity. */
216         if (last && ipsec4_in_reject(m, last)) {
217                 m_freem(m);
218                 ipstat.ips_delivered--;
219                 /* do not inject data to pcb */
220         } else
221 #endif /*FAST_IPSEC*/
222         if (last) {
223                 if (last->inp_flags & INP_CONTROLOPTS ||
224                     last->inp_socket->so_options & SO_TIMESTAMP)
225                         ip_savecontrol(last, &opts, ip, m);
226                 if (sbappendaddr(&last->inp_socket->so_rcv,
227                     (struct sockaddr *)&ripsrc, m, opts) == 0) {
228                         m_freem(m);
229                         if (opts)
230                             m_freem(opts);
231                 } else
232                         sorwakeup(last->inp_socket);
233         } else {
234                 m_freem(m);
235                 ipstat.ips_noproto++;
236                 ipstat.ips_delivered--;
237         }
238 }
239
240 /*
241  * Generate IP header and pass packet to ip_output.
242  * Tack on options user may have setup with control call.
243  */
244 int
245 rip_output(struct mbuf *m, struct socket *so, u_long dst)
246 {
247         struct ip *ip;
248         struct inpcb *inp = sotoinpcb(so);
249         int flags = (so->so_options & SO_DONTROUTE) | IP_ALLOWBROADCAST;
250
251         /*
252          * If the user handed us a complete IP packet, use it.
253          * Otherwise, allocate an mbuf for a header and fill it in.
254          */
255         if ((inp->inp_flags & INP_HDRINCL) == 0) {
256                 if (m->m_pkthdr.len + sizeof(struct ip) > IP_MAXPACKET) {
257                         m_freem(m);
258                         return(EMSGSIZE);
259                 }
260                 M_PREPEND(m, sizeof(struct ip), M_WAIT);
261                 ip = mtod(m, struct ip *);
262                 ip->ip_tos = inp->inp_ip_tos;
263                 ip->ip_off = 0;
264                 ip->ip_p = inp->inp_ip_p;
265                 ip->ip_len = m->m_pkthdr.len;
266                 ip->ip_src = inp->inp_laddr;
267                 ip->ip_dst.s_addr = dst;
268                 ip->ip_ttl = inp->inp_ip_ttl;
269         } else {
270                 if (m->m_pkthdr.len > IP_MAXPACKET) {
271                         m_freem(m);
272                         return(EMSGSIZE);
273                 }
274                 ip = mtod(m, struct ip *);
275                 /* don't allow both user specified and setsockopt options,
276                    and don't allow packet length sizes that will crash */
277                 if (((IP_VHL_HL(ip->ip_vhl) != (sizeof (*ip) >> 2))
278                      && inp->inp_options)
279                     || (ip->ip_len > m->m_pkthdr.len)
280                     || (ip->ip_len < (IP_VHL_HL(ip->ip_vhl) << 2))) {
281                         m_freem(m);
282                         return EINVAL;
283                 }
284                 if (ip->ip_id == 0)
285 #ifdef RANDOM_IP_ID
286                         ip->ip_id = ip_randomid();
287 #else
288                         ip->ip_id = htons(ip_id++);
289 #endif
290                 /* XXX prevent ip_output from overwriting header fields */
291                 flags |= IP_RAWOUTPUT;
292                 ipstat.ips_rawout++;
293         }
294
295         return (ip_output(m, inp->inp_options, &inp->inp_route, flags,
296                           inp->inp_moptions, inp));
297 }
298
299 /*
300  * Raw IP socket option processing.
301  */
302 int
303 rip_ctloutput(struct socket *so, struct sockopt *sopt)
304 {
305         struct  inpcb *inp = sotoinpcb(so);
306         int     error, optval;
307
308         if (sopt->sopt_level != IPPROTO_IP)
309                 return (EINVAL);
310
311         error = 0;
312
313         switch (sopt->sopt_dir) {
314         case SOPT_GET:
315                 switch (sopt->sopt_name) {
316                 case IP_HDRINCL:
317                         optval = inp->inp_flags & INP_HDRINCL;
318                         error = sooptcopyout(sopt, &optval, sizeof optval);
319                         break;
320
321                 case IP_FW_ADD: /* ADD actually returns the body... */
322                 case IP_FW_GET:
323                         if (IPFW_LOADED)
324                                 error = ip_fw_ctl_ptr(sopt);
325                         else
326                                 error = ENOPROTOOPT;
327                         break;
328
329                 case IP_DUMMYNET_GET:
330                         if (DUMMYNET_LOADED)
331                                 error = ip_dn_ctl_ptr(sopt);
332                         else
333                                 error = ENOPROTOOPT;
334                         break ;
335
336                 case MRT_INIT:
337                 case MRT_DONE:
338                 case MRT_ADD_VIF:
339                 case MRT_DEL_VIF:
340                 case MRT_ADD_MFC:
341                 case MRT_DEL_MFC:
342                 case MRT_VERSION:
343                 case MRT_ASSERT:
344                 case MRT_API_SUPPORT:
345                 case MRT_API_CONFIG:
346                 case MRT_ADD_BW_UPCALL:
347                 case MRT_DEL_BW_UPCALL:
348                         error = ip_mrouter_get ? ip_mrouter_get(so, sopt) :
349                                 EOPNOTSUPP;
350                         break;
351
352                 default:
353                         error = ip_ctloutput(so, sopt);
354                         break;
355                 }
356                 break;
357
358         case SOPT_SET:
359                 switch (sopt->sopt_name) {
360                 case IP_HDRINCL:
361                         error = sooptcopyin(sopt, &optval, sizeof optval,
362                                             sizeof optval);
363                         if (error)
364                                 break;
365                         if (optval)
366                                 inp->inp_flags |= INP_HDRINCL;
367                         else
368                                 inp->inp_flags &= ~INP_HDRINCL;
369                         break;
370
371                 case IP_FW_ADD:
372                 case IP_FW_DEL:
373                 case IP_FW_FLUSH:
374                 case IP_FW_ZERO:
375                 case IP_FW_RESETLOG:
376                         if (IPFW_LOADED)
377                                 error = ip_fw_ctl_ptr(sopt);
378                         else
379                                 error = ENOPROTOOPT;
380                         break;
381
382                 case IP_DUMMYNET_CONFIGURE:
383                 case IP_DUMMYNET_DEL:
384                 case IP_DUMMYNET_FLUSH:
385                         if (DUMMYNET_LOADED)
386                                 error = ip_dn_ctl_ptr(sopt);
387                         else
388                                 error = ENOPROTOOPT ;
389                         break ;
390
391                 case IP_RSVP_ON:
392                         error = ip_rsvp_init(so);
393                         break;
394
395                 case IP_RSVP_OFF:
396                         error = ip_rsvp_done();
397                         break;
398
399                 case IP_RSVP_VIF_ON:
400                 case IP_RSVP_VIF_OFF:
401                         error = ip_rsvp_vif ?
402                                 ip_rsvp_vif(so, sopt) : EINVAL;
403                         break;
404
405                 case MRT_INIT:
406                 case MRT_DONE:
407                 case MRT_ADD_VIF:
408                 case MRT_DEL_VIF:
409                 case MRT_ADD_MFC:
410                 case MRT_DEL_MFC:
411                 case MRT_VERSION:
412                 case MRT_ASSERT:
413                 case MRT_API_SUPPORT:
414                 case MRT_API_CONFIG:
415                 case MRT_ADD_BW_UPCALL:
416                 case MRT_DEL_BW_UPCALL:
417                         error = ip_mrouter_set ? ip_mrouter_set(so, sopt) :
418                                         EOPNOTSUPP;
419                         break;
420
421                 default:
422                         error = ip_ctloutput(so, sopt);
423                         break;
424                 }
425                 break;
426         }
427
428         return (error);
429 }
430
431 /*
432  * This function exists solely to receive the PRC_IFDOWN messages which
433  * are sent by if_down().  It looks for an ifaddr whose ifa_addr is sa,
434  * and calls in_ifadown() to remove all routes corresponding to that address.
435  * It also receives the PRC_IFUP messages from if_up() and reinstalls the
436  * interface routes.
437  */
438 void
439 rip_ctlinput(int cmd, struct sockaddr *sa, void *vip)
440 {
441         struct in_ifaddr *ia;
442         struct ifnet *ifp;
443         int err;
444         int flags;
445
446         switch (cmd) {
447         case PRC_IFDOWN:
448                 TAILQ_FOREACH(ia, &in_ifaddrhead, ia_link) {
449                         if (ia->ia_ifa.ifa_addr == sa
450                             && (ia->ia_flags & IFA_ROUTE)) {
451                                 /*
452                                  * in_ifscrub kills the interface route.
453                                  */
454                                 in_ifscrub(ia->ia_ifp, ia);
455                                 /*
456                                  * in_ifadown gets rid of all the rest of
457                                  * the routes.  This is not quite the right
458                                  * thing to do, but at least if we are running
459                                  * a routing process they will come back.
460                                  */
461                                 in_ifadown(&ia->ia_ifa, 0);
462                                 break;
463                         }
464                 }
465                 break;
466
467         case PRC_IFUP:
468                 TAILQ_FOREACH(ia, &in_ifaddrhead, ia_link) {
469                         if (ia->ia_ifa.ifa_addr == sa)
470                                 break;
471                 }
472                 if (ia == 0 || (ia->ia_flags & IFA_ROUTE))
473                         return;
474                 flags = RTF_UP;
475                 ifp = ia->ia_ifa.ifa_ifp;
476
477                 if ((ifp->if_flags & IFF_LOOPBACK)
478                     || (ifp->if_flags & IFF_POINTOPOINT))
479                         flags |= RTF_HOST;
480
481                 err = rtinit(&ia->ia_ifa, RTM_ADD, flags);
482                 if (err == 0)
483                         ia->ia_flags |= IFA_ROUTE;
484                 break;
485         }
486 }
487
488 u_long  rip_sendspace = RIPSNDQ;
489 u_long  rip_recvspace = RIPRCVQ;
490
491 SYSCTL_INT(_net_inet_raw, OID_AUTO, maxdgram, CTLFLAG_RW,
492     &rip_sendspace, 0, "Maximum outgoing raw IP datagram size");
493 SYSCTL_INT(_net_inet_raw, OID_AUTO, recvspace, CTLFLAG_RW,
494     &rip_recvspace, 0, "Maximum incoming raw IP datagram size");
495
496 static int
497 rip_attach(struct socket *so, int proto, struct thread *td)
498 {
499         struct inpcb *inp;
500         int error, s;
501
502         inp = sotoinpcb(so);
503         if (inp)
504                 panic("rip_attach");
505         if ((error = suser(td)) != 0)
506                 return error;
507
508         error = soreserve(so, rip_sendspace, rip_recvspace);
509         if (error)
510                 return error;
511         s = splnet();
512         error = in_pcballoc(so, &ripcbinfo, td);
513         splx(s);
514         if (error)
515                 return error;
516         inp = (struct inpcb *)so->so_pcb;
517         inp->inp_vflag |= INP_IPV4;
518         inp->inp_ip_p = proto;
519         inp->inp_ip_ttl = ip_defttl;
520         return 0;
521 }
522
523 static int
524 rip_detach(struct socket *so)
525 {
526         struct inpcb *inp;
527
528         inp = sotoinpcb(so);
529         if (inp == 0)
530                 panic("rip_detach");
531         if (so == ip_mrouter && ip_mrouter_done)
532                 ip_mrouter_done();
533         if (ip_rsvp_force_done)
534                 ip_rsvp_force_done(so);
535         if (so == ip_rsvpd)
536                 ip_rsvp_done();
537         in_pcbdetach(inp);
538         return 0;
539 }
540
541 static int
542 rip_abort(struct socket *so)
543 {
544         soisdisconnected(so);
545         if (so->so_state & SS_NOFDREF)
546                 return rip_detach(so);
547         return 0;
548 }
549
550 static int
551 rip_disconnect(struct socket *so)
552 {
553         if ((so->so_state & SS_ISCONNECTED) == 0)
554                 return ENOTCONN;
555         return rip_abort(so);
556 }
557
558 static int
559 rip_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
560 {
561         struct inpcb *inp = sotoinpcb(so);
562         struct sockaddr_in *addr = (struct sockaddr_in *)nam;
563
564         if (nam->sa_len != sizeof(*addr))
565                 return EINVAL;
566
567         if (TAILQ_EMPTY(&ifnet) || ((addr->sin_family != AF_INET) &&
568                                     (addr->sin_family != AF_IMPLINK)) ||
569             (addr->sin_addr.s_addr != INADDR_ANY &&
570              ifa_ifwithaddr((struct sockaddr *)addr) == 0))
571                 return EADDRNOTAVAIL;
572         inp->inp_laddr = addr->sin_addr;
573         return 0;
574 }
575
576 static int
577 rip_connect(struct socket *so, struct sockaddr *nam, struct thread *td)
578 {
579         struct inpcb *inp = sotoinpcb(so);
580         struct sockaddr_in *addr = (struct sockaddr_in *)nam;
581
582         if (nam->sa_len != sizeof(*addr))
583                 return EINVAL;
584         if (TAILQ_EMPTY(&ifnet))
585                 return EADDRNOTAVAIL;
586         if ((addr->sin_family != AF_INET) &&
587             (addr->sin_family != AF_IMPLINK))
588                 return EAFNOSUPPORT;
589         inp->inp_faddr = addr->sin_addr;
590         soisconnected(so);
591         return 0;
592 }
593
594 static int
595 rip_shutdown(struct socket *so)
596 {
597         socantsendmore(so);
598         return 0;
599 }
600
601 static int
602 rip_send(struct socket *so, int flags, struct mbuf *m, struct sockaddr *nam,
603          struct mbuf *control, struct thread *td)
604 {
605         struct inpcb *inp = sotoinpcb(so);
606         u_long dst;
607
608         if (so->so_state & SS_ISCONNECTED) {
609                 if (nam) {
610                         m_freem(m);
611                         return EISCONN;
612                 }
613                 dst = inp->inp_faddr.s_addr;
614         } else {
615                 if (nam == NULL) {
616                         m_freem(m);
617                         return ENOTCONN;
618                 }
619                 dst = ((struct sockaddr_in *)nam)->sin_addr.s_addr;
620         }
621         return rip_output(m, so, dst);
622 }
623
624 static int
625 rip_pcblist(SYSCTL_HANDLER_ARGS)
626 {
627         int error, i, n, s;
628         struct inpcb *inp, **inp_list;
629         inp_gen_t gencnt;
630         struct xinpgen xig;
631
632         /*
633          * The process of preparing the TCB list is too time-consuming and
634          * resource-intensive to repeat twice on every request.
635          */
636         if (req->oldptr == 0) {
637                 n = ripcbinfo.ipi_count;
638                 req->oldidx = 2 * (sizeof xig)
639                         + (n + n/8) * sizeof(struct xinpcb);
640                 return 0;
641         }
642
643         if (req->newptr != 0)
644                 return EPERM;
645
646         /*
647          * OK, now we're committed to doing something.
648          */
649         s = splnet();
650         gencnt = ripcbinfo.ipi_gencnt;
651         n = ripcbinfo.ipi_count;
652         splx(s);
653
654         xig.xig_len = sizeof xig;
655         xig.xig_count = n;
656         xig.xig_gen = gencnt;
657         xig.xig_sogen = so_gencnt;
658         error = SYSCTL_OUT(req, &xig, sizeof xig);
659         if (error)
660                 return error;
661
662         inp_list = malloc(n * sizeof *inp_list, M_TEMP, M_WAITOK);
663         if (inp_list == 0)
664                 return ENOMEM;
665         
666         s = splnet();
667         for (inp = LIST_FIRST(ripcbinfo.listhead), i = 0; inp && i < n;
668              inp = LIST_NEXT(inp, inp_list)) {
669                 if (inp->inp_gencnt <= gencnt)
670                         inp_list[i++] = inp;
671         }
672         splx(s);
673         n = i;
674
675         error = 0;
676         for (i = 0; i < n; i++) {
677                 inp = inp_list[i];
678                 if (inp->inp_gencnt <= gencnt) {
679                         struct xinpcb xi;
680                         xi.xi_len = sizeof xi;
681                         /* XXX should avoid extra copy */
682                         bcopy(inp, &xi.xi_inp, sizeof *inp);
683                         if (inp->inp_socket)
684                                 sotoxsocket(inp->inp_socket, &xi.xi_socket);
685                         error = SYSCTL_OUT(req, &xi, sizeof xi);
686                 }
687         }
688         if (!error) {
689                 /*
690                  * Give the user an updated idea of our state.
691                  * If the generation differs from what we told
692                  * her before, she knows that something happened
693                  * while we were processing this request, and it
694                  * might be necessary to retry.
695                  */
696                 s = splnet();
697                 xig.xig_gen = ripcbinfo.ipi_gencnt;
698                 xig.xig_sogen = so_gencnt;
699                 xig.xig_count = ripcbinfo.ipi_count;
700                 splx(s);
701                 error = SYSCTL_OUT(req, &xig, sizeof xig);
702         }
703         free(inp_list, M_TEMP);
704         return error;
705 }
706
707 SYSCTL_PROC(_net_inet_raw, OID_AUTO/*XXX*/, pcblist, CTLFLAG_RD, 0, 0,
708             rip_pcblist, "S,xinpcb", "List of active raw IP sockets");
709
710 struct pr_usrreqs rip_usrreqs = {
711         rip_abort, pru_accept_notsupp, rip_attach, rip_bind, rip_connect,
712         pru_connect2_notsupp, in_control, rip_detach, rip_disconnect,
713         pru_listen_notsupp, in_setpeeraddr, pru_rcvd_notsupp,
714         pru_rcvoob_notsupp, rip_send, pru_sense_null, rip_shutdown,
715         in_setsockaddr, sosend, soreceive, sopoll
716 };