devfs - Let devfs assume degenerate knotes when a device goes away
[dragonfly.git] / sys / net / raw_usrreq.c
1 /*
2  * Copyright (c) 1980, 1986, 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_usrreq.c        8.1 (Berkeley) 6/10/93
34  * $FreeBSD: src/sys/net/raw_usrreq.c,v 1.18 1999/08/28 00:48:28 peter Exp $
35  * $DragonFly: src/sys/net/raw_usrreq.c,v 1.14 2007/06/24 20:00:00 dillon Exp $
36  */
37
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/mbuf.h>
41 #include <sys/proc.h>
42 #include <sys/priv.h>
43 #include <sys/protosw.h>
44 #include <sys/socket.h>
45 #include <sys/socketvar.h>
46
47 #include <sys/socketvar2.h>
48
49 #include <net/raw_cb.h>
50
51
52 static struct lwkt_token raw_token = LWKT_TOKEN_MP_INITIALIZER(raw_token);
53
54 /*
55  * Initialize raw connection block q.
56  */
57 void
58 raw_init(void)
59 {
60         LIST_INIT(&rawcb_list);
61 }
62
63 /************************************************************************
64  *                       RAW PROTOCOL INTERFACE                         *
65  ************************************************************************/
66
67 /*
68  * Raw protocol input routine.  Find the socket associated with the packet(s)
69  * and move them over.  If nothing exists for this packet, drop it.  This
70  * routine is indirect called via rts_input() and will be serialized on
71  * cpu 0.
72  *
73  * Most other raw protocol interface functions are also serialized XXX.
74  */
75 void
76 raw_input(struct mbuf *m0, const struct sockproto *proto,
77           const struct sockaddr *src, const struct sockaddr *dst,
78           const struct rawcb *skip)
79 {
80         struct rawcb *rp;
81         struct mbuf *m = m0;
82         struct socket *last;
83
84         lwkt_gettoken(&raw_token);
85
86         last = NULL;
87         LIST_FOREACH(rp, &rawcb_list, list) {
88                 if (rp == skip)
89                         continue;
90                 if (rp->rcb_proto.sp_family != proto->sp_family)
91                         continue;
92                 if (rp->rcb_proto.sp_protocol  &&
93                     rp->rcb_proto.sp_protocol != proto->sp_protocol)
94                         continue;
95                 /*
96                  * We assume the lower level routines have
97                  * placed the address in a canonical format
98                  * suitable for a structure comparison.
99                  *
100                  * Note that if the lengths are not the same
101                  * the comparison will fail at the first byte.
102                  */
103                 if (rp->rcb_laddr && !sa_equal(rp->rcb_laddr, dst))
104                         continue;
105                 if (rp->rcb_faddr && !sa_equal(rp->rcb_faddr, src))
106                         continue;
107                 if (last) {
108                         struct mbuf *n;
109
110                         n = m_copypacket(m, MB_DONTWAIT);
111                         if (n != NULL) {
112                                 if (ssb_appendaddr(&last->so_rcv, src, n,
113                                                  NULL) == 0) {
114                                         /* should notify about lost packet */
115                                         m_freem(n);
116                                 } else {
117                                         sorwakeup(last);
118                                 }
119                         }
120                 }
121                 last = rp->rcb_socket;
122         }
123         if (last) {
124                 if (ssb_appendaddr(&last->so_rcv, src, m, NULL) == 0)
125                         m_freem(m);
126                 else
127                         sorwakeup(last);
128         } else {
129                 m_freem(m);
130         }
131         lwkt_reltoken(&raw_token);
132 }
133
134 /*ARGSUSED*/
135 void
136 raw_ctlinput(int cmd, struct sockaddr *arg, void *dummy)
137 {
138
139         if (cmd < 0 || cmd > PRC_NCMDS)
140                 return;
141         /* INCOMPLETE */
142 }
143
144 /*
145  * NOTE: (so) is referenced from soabort*() and netmsg_pru_abort()
146  *       will sofree() it when we return.
147  */
148 static int
149 raw_uabort(struct socket *so)
150 {
151         struct rawcb *rp = sotorawcb(so);
152
153         if (rp == NULL)
154                 return EINVAL;
155         raw_disconnect(rp);
156         soisdisconnected(so);
157         return 0;
158 }
159
160 /* pru_accept is EOPNOTSUPP */
161
162 static int
163 raw_uattach(struct socket *so, int proto, struct pru_attach_info *ai)
164 {
165         struct rawcb *rp = sotorawcb(so);
166         int error;
167
168         if (rp == NULL)
169                 return EINVAL;
170         if ((error = priv_check_cred(ai->p_ucred, PRIV_ROOT, NULL_CRED_OKAY)) != 0)
171                 return error;
172         return raw_attach(so, proto, ai->sb_rlimit);
173 }
174
175 static int
176 raw_ubind(struct socket *so, struct sockaddr *nam, struct thread *td)
177 {
178         return EINVAL;
179 }
180
181 static int
182 raw_uconnect(struct socket *so, struct sockaddr *nam, struct thread *td)
183 {
184         return EINVAL;
185 }
186
187 /* pru_connect2 is EOPNOTSUPP */
188 /* pru_control is EOPNOTSUPP */
189
190 static int
191 raw_udetach(struct socket *so)
192 {
193         struct rawcb *rp = sotorawcb(so);
194
195         if (rp == NULL)
196                 return EINVAL;
197
198         raw_detach(rp);
199         return 0;
200 }
201
202 static int
203 raw_udisconnect(struct socket *so)
204 {
205         struct rawcb *rp = sotorawcb(so);
206
207         if (rp == NULL)
208                 return EINVAL;
209         if (rp->rcb_faddr == NULL) {
210                 return ENOTCONN;
211         }
212         soreference(so);
213         raw_disconnect(rp);
214         soisdisconnected(so);
215         sofree(so);
216
217         return 0;
218 }
219
220 /* pru_listen is EOPNOTSUPP */
221
222 static int
223 raw_upeeraddr(struct socket *so, struct sockaddr **nam)
224 {
225         struct rawcb *rp = sotorawcb(so);
226
227         if (rp == NULL)
228                 return EINVAL;
229         if (rp->rcb_faddr == NULL) {
230                 return ENOTCONN;
231         }
232         *nam = dup_sockaddr(rp->rcb_faddr);
233         return 0;
234 }
235
236 /* pru_rcvd is EOPNOTSUPP */
237 /* pru_rcvoob is EOPNOTSUPP */
238
239 static int
240 raw_usend(struct socket *so, int flags, struct mbuf *m,
241           struct sockaddr *nam, struct mbuf *control, struct thread *td)
242 {
243         int error;
244         struct rawcb *rp = sotorawcb(so);
245         struct pr_output_info oi;
246
247         if (rp == NULL) {
248                 error = EINVAL;
249                 goto release;
250         }
251
252         if (flags & PRUS_OOB) {
253                 error = EOPNOTSUPP;
254                 goto release;
255         }
256
257         if (control && control->m_len) {
258                 error = EOPNOTSUPP;
259                 goto release;
260         }
261         if (nam) {
262                 if (rp->rcb_faddr) {
263                         error = EISCONN;
264                         goto release;
265                 }
266                 rp->rcb_faddr = nam;
267         } else if (rp->rcb_faddr == NULL) {
268                 error = ENOTCONN;
269                 goto release;
270         }
271         oi.p_pid = td->td_proc->p_pid;
272         error = (*so->so_proto->pr_output)(m, so, &oi);
273         m = NULL;
274         if (nam)
275                 rp->rcb_faddr = NULL;
276 release:
277         if (m != NULL)
278                 m_freem(m);
279         return (error);
280 }
281
282 /* pru_sense is null */
283
284 static int
285 raw_ushutdown(struct socket *so)
286 {
287         struct rawcb *rp = sotorawcb(so);
288
289         if (rp == NULL)
290                 return EINVAL;
291         socantsendmore(so);
292         return 0;
293 }
294
295 static int
296 raw_usockaddr(struct socket *so, struct sockaddr **nam)
297 {
298         struct rawcb *rp = sotorawcb(so);
299
300         if (rp == NULL)
301                 return EINVAL;
302         if (rp->rcb_laddr == NULL)
303                 return EINVAL;
304         *nam = dup_sockaddr(rp->rcb_laddr);
305         return 0;
306 }
307
308 struct pr_usrreqs raw_usrreqs = {
309         .pru_abort = raw_uabort,
310         .pru_accept = pru_accept_notsupp,
311         .pru_attach = raw_uattach,
312         .pru_bind = raw_ubind,
313         .pru_connect = raw_uconnect,
314         .pru_connect2 = pru_connect2_notsupp,
315         .pru_control = pru_control_notsupp,
316         .pru_detach = raw_udetach, 
317         .pru_disconnect = raw_udisconnect,
318         .pru_listen = pru_listen_notsupp,
319         .pru_peeraddr = raw_upeeraddr,
320         .pru_rcvd = pru_rcvd_notsupp,
321         .pru_rcvoob = pru_rcvoob_notsupp,
322         .pru_send = raw_usend,
323         .pru_sense = pru_sense_null,
324         .pru_shutdown = raw_ushutdown,
325         .pru_sockaddr = raw_usockaddr,
326         .pru_sosend = sosend,
327         .pru_soreceive = soreceive
328 };