raw_ip.c revision 1.38 1 1.38 mycroft /* $NetBSD: raw_ip.c,v 1.38 1997/11/16 20:58:18 mycroft Exp $ */
2 1.14 cgd
3 1.1 cgd /*
4 1.13 mycroft * Copyright (c) 1982, 1986, 1988, 1993
5 1.13 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.1 cgd * 3. All advertising materials mentioning features or use of this software
16 1.1 cgd * must display the following acknowledgement:
17 1.1 cgd * This product includes software developed by the University of
18 1.1 cgd * California, Berkeley and its contributors.
19 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
20 1.1 cgd * may be used to endorse or promote products derived from this software
21 1.1 cgd * without specific prior written permission.
22 1.1 cgd *
23 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 cgd * SUCH DAMAGE.
34 1.1 cgd *
35 1.14 cgd * @(#)raw_ip.c 8.2 (Berkeley) 1/4/94
36 1.1 cgd */
37 1.1 cgd
38 1.7 mycroft #include <sys/param.h>
39 1.7 mycroft #include <sys/malloc.h>
40 1.7 mycroft #include <sys/mbuf.h>
41 1.7 mycroft #include <sys/socket.h>
42 1.7 mycroft #include <sys/protosw.h>
43 1.7 mycroft #include <sys/socketvar.h>
44 1.7 mycroft #include <sys/errno.h>
45 1.13 mycroft #include <sys/systm.h>
46 1.26 mycroft #include <sys/proc.h>
47 1.1 cgd
48 1.7 mycroft #include <net/if.h>
49 1.7 mycroft #include <net/route.h>
50 1.1 cgd
51 1.7 mycroft #include <netinet/in.h>
52 1.7 mycroft #include <netinet/in_systm.h>
53 1.7 mycroft #include <netinet/ip.h>
54 1.7 mycroft #include <netinet/ip_var.h>
55 1.13 mycroft #include <netinet/ip_mroute.h>
56 1.7 mycroft #include <netinet/in_pcb.h>
57 1.24 christos #include <netinet/in_var.h>
58 1.24 christos
59 1.24 christos #include <machine/stdarg.h>
60 1.13 mycroft
61 1.20 mycroft struct inpcbtable rawcbtable;
62 1.30 pk
63 1.30 pk int rip_bind __P((struct inpcb *, struct mbuf *));
64 1.30 pk int rip_connect __P((struct inpcb *, struct mbuf *));
65 1.30 pk void rip_disconnect __P((struct inpcb *));
66 1.13 mycroft
67 1.13 mycroft /*
68 1.13 mycroft * Nominal space allocated to a raw ip socket.
69 1.13 mycroft */
70 1.13 mycroft #define RIPSNDQ 8192
71 1.13 mycroft #define RIPRCVQ 8192
72 1.1 cgd
73 1.1 cgd /*
74 1.1 cgd * Raw interface to IP protocol.
75 1.1 cgd */
76 1.13 mycroft
77 1.13 mycroft /*
78 1.13 mycroft * Initialize raw connection block q.
79 1.13 mycroft */
80 1.13 mycroft void
81 1.13 mycroft rip_init()
82 1.13 mycroft {
83 1.13 mycroft
84 1.33 mycroft in_pcbinit(&rawcbtable, 1, 1);
85 1.13 mycroft }
86 1.13 mycroft
87 1.1 cgd /*
88 1.1 cgd * Setup generic address and protocol structures
89 1.1 cgd * for raw_input routine, then pass them along with
90 1.1 cgd * mbuf chain.
91 1.1 cgd */
92 1.9 mycroft void
93 1.24 christos #if __STDC__
94 1.24 christos rip_input(struct mbuf *m, ...)
95 1.24 christos #else
96 1.24 christos rip_input(m, va_alist)
97 1.1 cgd struct mbuf *m;
98 1.24 christos va_dcl
99 1.24 christos #endif
100 1.1 cgd {
101 1.1 cgd register struct ip *ip = mtod(m, struct ip *);
102 1.13 mycroft register struct inpcb *inp;
103 1.36 thorpej struct inpcb *last = 0;
104 1.36 thorpej struct mbuf *opts = 0;
105 1.32 mycroft struct sockaddr_in ripsrc;
106 1.1 cgd
107 1.32 mycroft ripsrc.sin_family = AF_INET;
108 1.32 mycroft ripsrc.sin_len = sizeof(struct sockaddr_in);
109 1.1 cgd ripsrc.sin_addr = ip->ip_src;
110 1.34 mycroft ripsrc.sin_port = 0;
111 1.34 mycroft bzero((caddr_t)ripsrc.sin_zero, sizeof(ripsrc.sin_zero));
112 1.32 mycroft
113 1.21 cgd for (inp = rawcbtable.inpt_queue.cqh_first;
114 1.21 cgd inp != (struct inpcb *)&rawcbtable.inpt_queue;
115 1.21 cgd inp = inp->inp_queue.cqe_next) {
116 1.13 mycroft if (inp->inp_ip.ip_p && inp->inp_ip.ip_p != ip->ip_p)
117 1.13 mycroft continue;
118 1.32 mycroft if (!in_nullhost(inp->inp_laddr) &&
119 1.32 mycroft !in_hosteq(inp->inp_laddr, ip->ip_dst))
120 1.13 mycroft continue;
121 1.32 mycroft if (!in_nullhost(inp->inp_faddr) &&
122 1.32 mycroft !in_hosteq(inp->inp_faddr, ip->ip_src))
123 1.13 mycroft continue;
124 1.13 mycroft if (last) {
125 1.13 mycroft struct mbuf *n;
126 1.24 christos if ((n = m_copy(m, 0, (int)M_COPYALL)) != NULL) {
127 1.36 thorpej if (last->inp_flags & INP_CONTROLOPTS ||
128 1.36 thorpej last->inp_socket->so_options & SO_TIMESTAMP)
129 1.36 thorpej ip_savecontrol(last, &opts, ip, n);
130 1.36 thorpej if (sbappendaddr(&last->inp_socket->so_rcv,
131 1.36 thorpej sintosa(&ripsrc), n, opts) == 0) {
132 1.13 mycroft /* should notify about lost packet */
133 1.13 mycroft m_freem(n);
134 1.36 thorpej if (opts)
135 1.36 thorpej m_freem(opts);
136 1.36 thorpej } else
137 1.36 thorpej sorwakeup(last->inp_socket);
138 1.13 mycroft }
139 1.13 mycroft }
140 1.36 thorpej last = inp;
141 1.13 mycroft }
142 1.13 mycroft if (last) {
143 1.36 thorpej if (last->inp_flags & INP_CONTROLOPTS ||
144 1.36 thorpej last->inp_socket->so_options & SO_TIMESTAMP)
145 1.36 thorpej ip_savecontrol(last, &opts, ip, m);
146 1.36 thorpej if (sbappendaddr(&last->inp_socket->so_rcv,
147 1.36 thorpej sintosa(&ripsrc), m, opts) == 0) {
148 1.13 mycroft m_freem(m);
149 1.36 thorpej if (opts)
150 1.36 thorpej m_freem(opts);
151 1.36 thorpej } else
152 1.36 thorpej sorwakeup(last->inp_socket);
153 1.13 mycroft } else {
154 1.13 mycroft m_freem(m);
155 1.1 cgd ipstat.ips_noproto++;
156 1.1 cgd ipstat.ips_delivered--;
157 1.1 cgd }
158 1.1 cgd }
159 1.1 cgd
160 1.1 cgd /*
161 1.1 cgd * Generate IP header and pass packet to ip_output.
162 1.1 cgd * Tack on options user may have setup with control call.
163 1.1 cgd */
164 1.9 mycroft int
165 1.24 christos #if __STDC__
166 1.24 christos rip_output(struct mbuf *m, ...)
167 1.24 christos #else
168 1.24 christos rip_output(m, va_alist)
169 1.24 christos struct mbuf *m;
170 1.24 christos va_dcl
171 1.24 christos #endif
172 1.24 christos {
173 1.27 mycroft register struct inpcb *inp;
174 1.1 cgd register struct ip *ip;
175 1.10 mycroft struct mbuf *opts;
176 1.24 christos int flags;
177 1.24 christos va_list ap;
178 1.24 christos
179 1.24 christos va_start(ap, m);
180 1.27 mycroft inp = va_arg(ap, struct inpcb *);
181 1.24 christos va_end(ap);
182 1.24 christos
183 1.27 mycroft flags =
184 1.37 matt (inp->inp_socket->so_options & SO_DONTROUTE) | IP_ALLOWBROADCAST
185 1.37 matt | IP_RETURNMTU;
186 1.1 cgd
187 1.1 cgd /*
188 1.1 cgd * If the user handed us a complete IP packet, use it.
189 1.1 cgd * Otherwise, allocate an mbuf for a header and fill it in.
190 1.1 cgd */
191 1.13 mycroft if ((inp->inp_flags & INP_HDRINCL) == 0) {
192 1.35 thorpej if ((m->m_pkthdr.len + sizeof(struct ip)) > IP_MAXPACKET) {
193 1.35 thorpej m_freem(m);
194 1.35 thorpej return (EMSGSIZE);
195 1.35 thorpej }
196 1.1 cgd M_PREPEND(m, sizeof(struct ip), M_WAIT);
197 1.1 cgd ip = mtod(m, struct ip *);
198 1.1 cgd ip->ip_tos = 0;
199 1.1 cgd ip->ip_off = 0;
200 1.13 mycroft ip->ip_p = inp->inp_ip.ip_p;
201 1.1 cgd ip->ip_len = m->m_pkthdr.len;
202 1.13 mycroft ip->ip_src = inp->inp_laddr;
203 1.27 mycroft ip->ip_dst = inp->inp_faddr;
204 1.1 cgd ip->ip_ttl = MAXTTL;
205 1.13 mycroft opts = inp->inp_options;
206 1.13 mycroft } else {
207 1.35 thorpej if (m->m_pkthdr.len > IP_MAXPACKET) {
208 1.35 thorpej m_freem(m);
209 1.35 thorpej return (EMSGSIZE);
210 1.35 thorpej }
211 1.13 mycroft ip = mtod(m, struct ip *);
212 1.38 mycroft if (m->m_pkthdr.len != ip->ip_len) {
213 1.38 mycroft m_freem(m);
214 1.38 mycroft return (EINVAL);
215 1.38 mycroft }
216 1.13 mycroft if (ip->ip_id == 0)
217 1.13 mycroft ip->ip_id = htons(ip_id++);
218 1.13 mycroft opts = NULL;
219 1.13 mycroft /* XXX prevent ip_output from overwriting header fields */
220 1.13 mycroft flags |= IP_RAWOUTPUT;
221 1.13 mycroft ipstat.ips_rawout++;
222 1.1 cgd }
223 1.37 matt return (ip_output(m, opts, &inp->inp_route, flags, inp->inp_moptions, &inp->inp_errormtu));
224 1.1 cgd }
225 1.1 cgd
226 1.1 cgd /*
227 1.1 cgd * Raw IP socket option processing.
228 1.1 cgd */
229 1.9 mycroft int
230 1.1 cgd rip_ctloutput(op, so, level, optname, m)
231 1.1 cgd int op;
232 1.1 cgd struct socket *so;
233 1.1 cgd int level, optname;
234 1.1 cgd struct mbuf **m;
235 1.1 cgd {
236 1.13 mycroft register struct inpcb *inp = sotoinpcb(so);
237 1.31 mycroft int error = 0;
238 1.1 cgd
239 1.15 mycroft if (level != IPPROTO_IP) {
240 1.31 mycroft error = ENOPROTOOPT;
241 1.31 mycroft if (op == PRCO_SETOPT && *m != 0)
242 1.31 mycroft (void) m_free(*m);
243 1.31 mycroft } else switch (op) {
244 1.31 mycroft
245 1.31 mycroft case PRCO_SETOPT:
246 1.31 mycroft switch (optname) {
247 1.31 mycroft case IP_HDRINCL:
248 1.31 mycroft if (*m == 0 || (*m)->m_len < sizeof (int))
249 1.31 mycroft error = EINVAL;
250 1.31 mycroft else {
251 1.13 mycroft if (*mtod(*m, int *))
252 1.13 mycroft inp->inp_flags |= INP_HDRINCL;
253 1.13 mycroft else
254 1.13 mycroft inp->inp_flags &= ~INP_HDRINCL;
255 1.13 mycroft }
256 1.31 mycroft if (*m != 0)
257 1.31 mycroft (void) m_free(*m);
258 1.31 mycroft break;
259 1.31 mycroft
260 1.31 mycroft #ifdef MROUTING
261 1.31 mycroft case MRT_INIT:
262 1.31 mycroft case MRT_DONE:
263 1.31 mycroft case MRT_ADD_VIF:
264 1.31 mycroft case MRT_DEL_VIF:
265 1.31 mycroft case MRT_ADD_MFC:
266 1.31 mycroft case MRT_DEL_MFC:
267 1.31 mycroft case MRT_ASSERT:
268 1.31 mycroft error = ip_mrouter_set(so, optname, m);
269 1.31 mycroft break;
270 1.31 mycroft #endif
271 1.31 mycroft
272 1.31 mycroft default:
273 1.31 mycroft error = ip_ctloutput(op, so, level, optname, m);
274 1.31 mycroft break;
275 1.13 mycroft }
276 1.13 mycroft break;
277 1.1 cgd
278 1.31 mycroft case PRCO_GETOPT:
279 1.31 mycroft switch (optname) {
280 1.31 mycroft case IP_HDRINCL:
281 1.31 mycroft *m = m_get(M_WAIT, M_SOOPTS);
282 1.31 mycroft (*m)->m_len = sizeof (int);
283 1.31 mycroft *mtod(*m, int *) = inp->inp_flags & INP_HDRINCL ? 1 : 0;
284 1.31 mycroft break;
285 1.31 mycroft
286 1.6 hpeyerl #ifdef MROUTING
287 1.31 mycroft case MRT_VERSION:
288 1.31 mycroft case MRT_ASSERT:
289 1.31 mycroft error = ip_mrouter_get(so, optname, m);
290 1.18 mycroft break;
291 1.31 mycroft #endif
292 1.31 mycroft
293 1.18 mycroft default:
294 1.31 mycroft error = ip_ctloutput(op, so, level, optname, m);
295 1.18 mycroft break;
296 1.18 mycroft }
297 1.31 mycroft break;
298 1.1 cgd }
299 1.31 mycroft return (error);
300 1.1 cgd }
301 1.1 cgd
302 1.27 mycroft int
303 1.29 mycroft rip_bind(inp, nam)
304 1.29 mycroft struct inpcb *inp;
305 1.29 mycroft struct mbuf *nam;
306 1.29 mycroft {
307 1.29 mycroft struct sockaddr_in *addr = mtod(nam, struct sockaddr_in *);
308 1.29 mycroft
309 1.29 mycroft if (nam->m_len != sizeof(*addr))
310 1.29 mycroft return (EINVAL);
311 1.29 mycroft if (ifnet.tqh_first == 0)
312 1.29 mycroft return (EADDRNOTAVAIL);
313 1.29 mycroft if (addr->sin_family != AF_INET &&
314 1.29 mycroft addr->sin_family != AF_IMPLINK)
315 1.29 mycroft return (EAFNOSUPPORT);
316 1.32 mycroft if (!in_nullhost(addr->sin_addr) &&
317 1.29 mycroft ifa_ifwithaddr(sintosa(addr)) == 0)
318 1.29 mycroft return (EADDRNOTAVAIL);
319 1.29 mycroft inp->inp_laddr = addr->sin_addr;
320 1.29 mycroft return (0);
321 1.29 mycroft }
322 1.29 mycroft
323 1.29 mycroft int
324 1.27 mycroft rip_connect(inp, nam)
325 1.27 mycroft struct inpcb *inp;
326 1.27 mycroft struct mbuf *nam;
327 1.27 mycroft {
328 1.27 mycroft struct sockaddr_in *addr = mtod(nam, struct sockaddr_in *);
329 1.27 mycroft
330 1.27 mycroft if (nam->m_len != sizeof(*addr))
331 1.27 mycroft return (EINVAL);
332 1.27 mycroft if (ifnet.tqh_first == 0)
333 1.27 mycroft return (EADDRNOTAVAIL);
334 1.27 mycroft if (addr->sin_family != AF_INET &&
335 1.27 mycroft addr->sin_family != AF_IMPLINK)
336 1.27 mycroft return (EAFNOSUPPORT);
337 1.27 mycroft inp->inp_faddr = addr->sin_addr;
338 1.27 mycroft return (0);
339 1.27 mycroft }
340 1.27 mycroft
341 1.27 mycroft void
342 1.27 mycroft rip_disconnect(inp)
343 1.27 mycroft struct inpcb *inp;
344 1.27 mycroft {
345 1.27 mycroft
346 1.32 mycroft inp->inp_faddr = zeroin_addr;
347 1.27 mycroft }
348 1.27 mycroft
349 1.13 mycroft u_long rip_sendspace = RIPSNDQ;
350 1.13 mycroft u_long rip_recvspace = RIPRCVQ;
351 1.13 mycroft
352 1.1 cgd /*ARGSUSED*/
353 1.9 mycroft int
354 1.26 mycroft rip_usrreq(so, req, m, nam, control, p)
355 1.1 cgd register struct socket *so;
356 1.1 cgd int req;
357 1.2 cgd struct mbuf *m, *nam, *control;
358 1.26 mycroft struct proc *p;
359 1.1 cgd {
360 1.27 mycroft register struct inpcb *inp;
361 1.27 mycroft int s;
362 1.1 cgd register int error = 0;
363 1.13 mycroft #ifdef MROUTING
364 1.6 hpeyerl extern struct socket *ip_mrouter;
365 1.6 hpeyerl #endif
366 1.27 mycroft
367 1.22 pk if (req == PRU_CONTROL)
368 1.22 pk return (in_control(so, (long)m, (caddr_t)nam,
369 1.26 mycroft (struct ifnet *)control, p));
370 1.22 pk
371 1.27 mycroft s = splsoftnet();
372 1.27 mycroft inp = sotoinpcb(so);
373 1.28 mycroft #ifdef DIAGNOSTIC
374 1.28 mycroft if (req != PRU_SEND && req != PRU_SENDOOB && control)
375 1.28 mycroft panic("rip_usrreq: unexpected control mbuf");
376 1.28 mycroft #endif
377 1.27 mycroft if (inp == 0 && req != PRU_ATTACH) {
378 1.22 pk error = EINVAL;
379 1.22 pk goto release;
380 1.22 pk }
381 1.22 pk
382 1.1 cgd switch (req) {
383 1.1 cgd
384 1.1 cgd case PRU_ATTACH:
385 1.27 mycroft if (inp != 0) {
386 1.27 mycroft error = EISCONN;
387 1.27 mycroft break;
388 1.27 mycroft }
389 1.26 mycroft if (p == 0 || (error = suser(p->p_ucred, &p->p_acflag))) {
390 1.13 mycroft error = EACCES;
391 1.13 mycroft break;
392 1.13 mycroft }
393 1.27 mycroft if (so->so_snd.sb_hiwat == 0 || so->so_rcv.sb_hiwat == 0) {
394 1.27 mycroft error = soreserve(so, rip_sendspace, rip_recvspace);
395 1.27 mycroft if (error)
396 1.27 mycroft break;
397 1.27 mycroft }
398 1.27 mycroft error = in_pcballoc(so, &rawcbtable);
399 1.27 mycroft if (error)
400 1.13 mycroft break;
401 1.27 mycroft inp = sotoinpcb(so);
402 1.17 cgd inp->inp_ip.ip_p = (long)nam;
403 1.1 cgd break;
404 1.1 cgd
405 1.1 cgd case PRU_DETACH:
406 1.13 mycroft #ifdef MROUTING
407 1.6 hpeyerl if (so == ip_mrouter)
408 1.6 hpeyerl ip_mrouter_done();
409 1.6 hpeyerl #endif
410 1.13 mycroft in_pcbdetach(inp);
411 1.1 cgd break;
412 1.1 cgd
413 1.1 cgd case PRU_BIND:
414 1.29 mycroft error = rip_bind(inp, nam);
415 1.27 mycroft break;
416 1.27 mycroft
417 1.27 mycroft case PRU_LISTEN:
418 1.27 mycroft error = EOPNOTSUPP;
419 1.27 mycroft break;
420 1.27 mycroft
421 1.27 mycroft case PRU_CONNECT:
422 1.27 mycroft error = rip_connect(inp, nam);
423 1.27 mycroft if (error)
424 1.13 mycroft break;
425 1.1 cgd soisconnected(so);
426 1.13 mycroft break;
427 1.13 mycroft
428 1.13 mycroft case PRU_CONNECT2:
429 1.13 mycroft error = EOPNOTSUPP;
430 1.13 mycroft break;
431 1.13 mycroft
432 1.27 mycroft case PRU_DISCONNECT:
433 1.27 mycroft soisdisconnected(so);
434 1.27 mycroft rip_disconnect(inp);
435 1.27 mycroft break;
436 1.27 mycroft
437 1.13 mycroft /*
438 1.13 mycroft * Mark the connection as being incapable of further input.
439 1.13 mycroft */
440 1.13 mycroft case PRU_SHUTDOWN:
441 1.13 mycroft socantsendmore(so);
442 1.13 mycroft break;
443 1.13 mycroft
444 1.27 mycroft case PRU_RCVD:
445 1.27 mycroft error = EOPNOTSUPP;
446 1.27 mycroft break;
447 1.27 mycroft
448 1.13 mycroft /*
449 1.13 mycroft * Ship a packet out. The appropriate raw output
450 1.13 mycroft * routine handles any massaging necessary.
451 1.13 mycroft */
452 1.13 mycroft case PRU_SEND:
453 1.28 mycroft if (control && control->m_len) {
454 1.28 mycroft m_freem(control);
455 1.28 mycroft m_freem(m);
456 1.28 mycroft error = EINVAL;
457 1.28 mycroft break;
458 1.28 mycroft }
459 1.28 mycroft {
460 1.27 mycroft if (nam) {
461 1.27 mycroft if ((so->so_state & SS_ISCONNECTED) != 0) {
462 1.13 mycroft error = EISCONN;
463 1.28 mycroft goto die;
464 1.13 mycroft }
465 1.27 mycroft error = rip_connect(inp, nam);
466 1.27 mycroft if (error) {
467 1.28 mycroft die:
468 1.27 mycroft m_freem(m);
469 1.27 mycroft break;
470 1.27 mycroft }
471 1.13 mycroft } else {
472 1.27 mycroft if ((so->so_state & SS_ISCONNECTED) == 0) {
473 1.13 mycroft error = ENOTCONN;
474 1.28 mycroft goto die;
475 1.13 mycroft }
476 1.13 mycroft }
477 1.27 mycroft error = rip_output(m, inp);
478 1.27 mycroft if (nam)
479 1.27 mycroft rip_disconnect(inp);
480 1.28 mycroft }
481 1.13 mycroft break;
482 1.13 mycroft
483 1.13 mycroft case PRU_SENSE:
484 1.13 mycroft /*
485 1.13 mycroft * stat: don't bother with a blocksize.
486 1.13 mycroft */
487 1.27 mycroft splx(s);
488 1.1 cgd return (0);
489 1.13 mycroft
490 1.13 mycroft case PRU_RCVOOB:
491 1.27 mycroft error = EOPNOTSUPP;
492 1.27 mycroft break;
493 1.27 mycroft
494 1.13 mycroft case PRU_SENDOOB:
495 1.28 mycroft m_freem(control);
496 1.27 mycroft m_freem(m);
497 1.13 mycroft error = EOPNOTSUPP;
498 1.13 mycroft break;
499 1.13 mycroft
500 1.13 mycroft case PRU_SOCKADDR:
501 1.13 mycroft in_setsockaddr(inp, nam);
502 1.13 mycroft break;
503 1.13 mycroft
504 1.13 mycroft case PRU_PEERADDR:
505 1.13 mycroft in_setpeeraddr(inp, nam);
506 1.13 mycroft break;
507 1.13 mycroft
508 1.13 mycroft default:
509 1.13 mycroft panic("rip_usrreq");
510 1.1 cgd }
511 1.27 mycroft
512 1.22 pk release:
513 1.27 mycroft splx(s);
514 1.1 cgd return (error);
515 1.1 cgd }
516