2 * Copyright (c) 1980, 1986, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * @(#)raw_usrreq.c 8.1 (Berkeley) 6/10/93
30 * $FreeBSD: src/sys/net/raw_usrreq.c,v 1.18 1999/08/28 00:48:28 peter Exp $
33 #include <sys/param.h>
34 #include <sys/systm.h>
38 #include <sys/protosw.h>
39 #include <sys/socket.h>
40 #include <sys/socketvar.h>
42 #include <sys/socketvar2.h>
43 #include <sys/msgport2.h>
45 #include <net/raw_cb.h>
48 static struct lwkt_token raw_token
= LWKT_TOKEN_INITIALIZER(raw_token
);
51 * Initialize raw connection block q.
56 LIST_INIT(&rawcb_list
);
59 /************************************************************************
60 * RAW PROTOCOL INTERFACE *
61 ************************************************************************/
64 * Raw protocol input routine. Find the socket associated with the packet(s)
65 * and move them over. If nothing exists for this packet, drop it. This
66 * routine is indirect called via rts_input() and will be serialized on
69 * Most other raw protocol interface functions are also serialized XXX.
72 raw_input(struct mbuf
*m0
, const struct sockproto
*proto
,
73 const struct sockaddr
*src
, const struct sockaddr
*dst
,
74 const struct rawcb
*skip
)
80 lwkt_gettoken(&raw_token
);
83 LIST_FOREACH(rp
, &rawcb_list
, list
) {
86 if (rp
->rcb_proto
.sp_family
!= proto
->sp_family
)
88 if (rp
->rcb_proto
.sp_protocol
&&
89 rp
->rcb_proto
.sp_protocol
!= proto
->sp_protocol
)
92 * We assume the lower level routines have
93 * placed the address in a canonical format
94 * suitable for a structure comparison.
96 * Note that if the lengths are not the same
97 * the comparison will fail at the first byte.
99 if (rp
->rcb_laddr
&& !sa_equal(rp
->rcb_laddr
, dst
))
101 if (rp
->rcb_faddr
&& !sa_equal(rp
->rcb_faddr
, src
))
106 n
= m_copypacket(m
, M_NOWAIT
);
108 lwkt_gettoken(&last
->so_rcv
.ssb_token
);
109 if (ssb_appendaddr(&last
->so_rcv
, src
, n
,
111 /* should notify about lost packet */
116 lwkt_reltoken(&last
->so_rcv
.ssb_token
);
119 last
= rp
->rcb_socket
;
122 lwkt_gettoken(&last
->so_rcv
.ssb_token
);
123 if (ssb_appendaddr(&last
->so_rcv
, src
, m
, NULL
) == 0)
127 lwkt_reltoken(&last
->so_rcv
.ssb_token
);
131 lwkt_reltoken(&raw_token
);
135 * nm_cmd, nm_arg, nm_extra
138 raw_ctlinput(netmsg_t msg
)
142 if (msg
->ctlinput
.nm_cmd
< 0 || msg
->ctlinput
.nm_cmd
> PRC_NCMDS
)
144 lwkt_replymsg(&msg
->lmsg
, error
);
148 * NOTE: (so) is referenced from soabort*() and netmsg_pru_abort()
149 * will sofree() it when we return.
152 raw_uabort(netmsg_t msg
)
154 struct rawcb
*rp
= sotorawcb(msg
->base
.nm_so
);
159 soisdisconnected(msg
->base
.nm_so
);
164 lwkt_replymsg(&msg
->lmsg
, error
);
167 /* pru_accept is EOPNOTSUPP */
170 raw_uattach(netmsg_t msg
)
172 struct socket
*so
= msg
->base
.nm_so
;
173 int proto
= msg
->attach
.nm_proto
;
174 struct pru_attach_info
*ai
= msg
->attach
.nm_ai
;
180 error
= priv_check_cred(ai
->p_ucred
, PRIV_ROOT
, NULL_CRED_OKAY
);
182 error
= raw_attach(so
, proto
, ai
->sb_rlimit
);
186 lwkt_replymsg(&msg
->lmsg
, error
);
190 raw_ubind(netmsg_t msg
)
192 lwkt_replymsg(&msg
->lmsg
, EINVAL
);
196 raw_uconnect(netmsg_t msg
)
198 lwkt_replymsg(&msg
->lmsg
, EINVAL
);
201 /* pru_connect2 is EOPNOTSUPP */
202 /* pru_control is EOPNOTSUPP */
205 raw_udetach(netmsg_t msg
)
207 struct rawcb
*rp
= sotorawcb(msg
->base
.nm_so
);
216 lwkt_replymsg(&msg
->lmsg
, error
);
220 raw_udisconnect(netmsg_t msg
)
222 struct socket
*so
= msg
->base
.nm_so
;
229 } else if (rp
->rcb_faddr
== NULL
) {
234 soisdisconnected(so
);
238 lwkt_replymsg(&msg
->lmsg
, error
);
241 /* pru_listen is EOPNOTSUPP */
244 raw_upeeraddr(netmsg_t msg
)
246 struct rawcb
*rp
= sotorawcb(msg
->base
.nm_so
);
251 } else if (rp
->rcb_faddr
== NULL
) {
254 *msg
->peeraddr
.nm_nam
= dup_sockaddr(rp
->rcb_faddr
);
257 lwkt_replymsg(&msg
->lmsg
, error
);
260 /* pru_rcvd is EOPNOTSUPP */
261 /* pru_rcvoob is EOPNOTSUPP */
264 raw_usend(netmsg_t msg
)
266 struct socket
*so
= msg
->base
.nm_so
;
267 struct mbuf
*m
= msg
->send
.nm_m
;
268 struct mbuf
*control
= msg
->send
.nm_control
;
269 struct rawcb
*rp
= sotorawcb(so
);
270 struct pr_output_info oi
;
271 int flags
= msg
->send
.nm_flags
;
279 if (flags
& PRUS_OOB
) {
284 if (control
&& control
->m_len
) {
288 if (msg
->send
.nm_addr
) {
293 rp
->rcb_faddr
= msg
->send
.nm_addr
;
294 } else if (rp
->rcb_faddr
== NULL
) {
298 oi
.p_pid
= msg
->send
.nm_td
->td_proc
->p_pid
;
299 error
= (*so
->so_proto
->pr_output
)(m
, so
, &oi
);
301 if (msg
->send
.nm_addr
)
302 rp
->rcb_faddr
= NULL
;
306 lwkt_replymsg(&msg
->lmsg
, error
);
309 /* pru_sense is null */
312 raw_ushutdown(netmsg_t msg
)
314 struct rawcb
*rp
= sotorawcb(msg
->base
.nm_so
);
318 socantsendmore(msg
->base
.nm_so
);
323 lwkt_replymsg(&msg
->lmsg
, error
);
327 raw_usockaddr(netmsg_t msg
)
329 struct rawcb
*rp
= sotorawcb(msg
->base
.nm_so
);
334 } else if (rp
->rcb_laddr
== NULL
) {
337 *msg
->sockaddr
.nm_nam
= dup_sockaddr(rp
->rcb_laddr
);
340 lwkt_replymsg(&msg
->lmsg
, error
);
343 struct pr_usrreqs raw_usrreqs
= {
344 .pru_abort
= raw_uabort
,
345 .pru_accept
= pr_generic_notsupp
,
346 .pru_attach
= raw_uattach
,
347 .pru_bind
= raw_ubind
,
348 .pru_connect
= raw_uconnect
,
349 .pru_connect2
= pr_generic_notsupp
,
350 .pru_control
= pr_generic_notsupp
,
351 .pru_detach
= raw_udetach
,
352 .pru_disconnect
= raw_udisconnect
,
353 .pru_listen
= pr_generic_notsupp
,
354 .pru_peeraddr
= raw_upeeraddr
,
355 .pru_rcvd
= pr_generic_notsupp
,
356 .pru_rcvoob
= pr_generic_notsupp
,
357 .pru_send
= raw_usend
,
358 .pru_sense
= pru_sense_null
,
359 .pru_shutdown
= raw_ushutdown
,
360 .pru_sockaddr
= raw_usockaddr
,
361 .pru_sosend
= sosend
,
362 .pru_soreceive
= soreceive