]>
Commit | Line | Data |
---|---|---|
1c79356b A |
1 | /* |
2 | * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. | |
3 | * | |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
ff6e181a A |
6 | * This file contains Original Code and/or Modifications of Original Code |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. Please obtain a copy of the License at | |
10 | * http://www.opensource.apple.com/apsl/ and read it before using this | |
11 | * file. | |
1c79356b | 12 | * |
ff6e181a A |
13 | * The Original Code and all software distributed under the License are |
14 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
1c79356b A |
15 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
16 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
ff6e181a A |
17 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. |
18 | * Please see the License for the specific language governing rights and | |
19 | * limitations under the License. | |
1c79356b A |
20 | * |
21 | * @APPLE_LICENSE_HEADER_END@ | |
22 | */ | |
23 | /* | |
24 | * Copyright (c) 1980, 1986, 1993 | |
25 | * The Regents of the University of California. All rights reserved. | |
26 | * | |
27 | * Redistribution and use in source and binary forms, with or without | |
28 | * modification, are permitted provided that the following conditions | |
29 | * are met: | |
30 | * 1. Redistributions of source code must retain the above copyright | |
31 | * notice, this list of conditions and the following disclaimer. | |
32 | * 2. Redistributions in binary form must reproduce the above copyright | |
33 | * notice, this list of conditions and the following disclaimer in the | |
34 | * documentation and/or other materials provided with the distribution. | |
35 | * 3. All advertising materials mentioning features or use of this software | |
36 | * must display the following acknowledgement: | |
37 | * This product includes software developed by the University of | |
38 | * California, Berkeley and its contributors. | |
39 | * 4. Neither the name of the University nor the names of its contributors | |
40 | * may be used to endorse or promote products derived from this software | |
41 | * without specific prior written permission. | |
42 | * | |
43 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
44 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
45 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
46 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
47 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
48 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
49 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
50 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
51 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
52 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
53 | * SUCH DAMAGE. | |
54 | * | |
55 | * @(#)raw_cb.c 8.1 (Berkeley) 6/10/93 | |
56 | */ | |
57 | ||
58 | #include <sys/param.h> | |
59 | #include <sys/malloc.h> | |
60 | #include <sys/socket.h> | |
61 | #include <sys/socketvar.h> | |
62 | #include <sys/domain.h> | |
63 | #include <sys/protosw.h> | |
91447636 | 64 | #include <kern/locks.h> |
1c79356b A |
65 | |
66 | #include <net/raw_cb.h> | |
67 | ||
68 | /* | |
69 | * Routines to manage the raw protocol control blocks. | |
70 | * | |
71 | * TODO: | |
72 | * hash lookups by protocol family/protocol + address family | |
73 | * take care of unique address problems per AF? | |
74 | * redo address binding to allow wildcards | |
75 | */ | |
76 | ||
77 | struct rawcb_list_head rawcb_list; | |
78 | ||
79 | static u_long raw_sendspace = RAWSNDQ; | |
80 | static u_long raw_recvspace = RAWRCVQ; | |
91447636 | 81 | extern lck_mtx_t *raw_mtx; /*### global raw cb mutex for now */ |
1c79356b A |
82 | |
83 | /* | |
84 | * Allocate a control block and a nominal amount | |
85 | * of buffer space for the socket. | |
86 | */ | |
87 | int | |
88 | raw_attach(so, proto) | |
89 | register struct socket *so; | |
90 | int proto; | |
91 | { | |
92 | register struct rawcb *rp = sotorawcb(so); | |
93 | int error; | |
94 | ||
95 | /* | |
96 | * It is assumed that raw_attach is called | |
97 | * after space has been allocated for the | |
98 | * rawcb. | |
99 | */ | |
100 | if (rp == 0) | |
101 | return (ENOBUFS); | |
102 | error = soreserve(so, raw_sendspace, raw_recvspace); | |
103 | if (error) | |
104 | return (error); | |
105 | rp->rcb_socket = so; | |
106 | rp->rcb_proto.sp_family = so->so_proto->pr_domain->dom_family; | |
107 | rp->rcb_proto.sp_protocol = proto; | |
91447636 | 108 | lck_mtx_lock(raw_mtx); |
1c79356b | 109 | LIST_INSERT_HEAD(&rawcb_list, rp, list); |
91447636 | 110 | lck_mtx_unlock(raw_mtx); |
1c79356b A |
111 | return (0); |
112 | } | |
113 | ||
114 | /* | |
115 | * Detach the raw connection block and discard | |
116 | * socket resources. | |
117 | */ | |
118 | void | |
119 | raw_detach(rp) | |
120 | register struct rawcb *rp; | |
121 | { | |
122 | struct socket *so = rp->rcb_socket; | |
123 | ||
124 | so->so_pcb = 0; | |
91447636 | 125 | so->so_flags |= SOF_PCBCLEARING; |
1c79356b | 126 | sofree(so); |
91447636 A |
127 | if (!lck_mtx_try_lock(raw_mtx)) { |
128 | socket_unlock(so, 0); | |
129 | lck_mtx_lock(raw_mtx); | |
130 | socket_lock(so, 0); | |
131 | } | |
1c79356b | 132 | LIST_REMOVE(rp, list); |
91447636 | 133 | lck_mtx_unlock(raw_mtx); |
1c79356b A |
134 | #ifdef notdef |
135 | if (rp->rcb_laddr) | |
136 | m_freem(dtom(rp->rcb_laddr)); | |
137 | rp->rcb_laddr = 0; | |
138 | #endif | |
91447636 | 139 | rp->rcb_socket = NULL; |
1c79356b A |
140 | FREE((caddr_t)(rp), M_PCB); |
141 | } | |
142 | ||
143 | /* | |
144 | * Disconnect and possibly release resources. | |
145 | */ | |
146 | void | |
147 | raw_disconnect(rp) | |
148 | struct rawcb *rp; | |
149 | { | |
150 | ||
151 | #ifdef notdef | |
152 | if (rp->rcb_faddr) | |
153 | m_freem(dtom(rp->rcb_faddr)); | |
154 | rp->rcb_faddr = 0; | |
155 | #endif | |
156 | if (rp->rcb_socket->so_state & SS_NOFDREF) | |
157 | raw_detach(rp); | |
158 | } | |
159 | ||
160 | #ifdef notdef | |
161 | #include <sys/mbuf.h> | |
162 | ||
163 | int | |
164 | raw_bind(so, nam) | |
165 | register struct socket *so; | |
166 | struct mbuf *nam; | |
167 | { | |
168 | struct sockaddr *addr = mtod(nam, struct sockaddr *); | |
169 | register struct rawcb *rp; | |
170 | ||
171 | if (ifnet == 0) | |
172 | return (EADDRNOTAVAIL); | |
173 | rp = sotorawcb(so); | |
174 | nam = m_copym(nam, 0, M_COPYALL, M_WAITOK); | |
175 | rp->rcb_laddr = mtod(nam, struct sockaddr *); | |
176 | return (0); | |
177 | } | |
178 | #endif |