]>
git.saurik.com Git - apple/xnu.git/blob - bsd/kern/sys_socket.c
c276ed03614de11c7b7b1d38337b492f12ae3e27
2 * Copyright (c) 2000-2002 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * Copyright (c) 1982, 1986, 1990, 1993
24 * The Regents of the University of California. All rights reserved.
26 * Redistribution and use in source and binary forms, with or without
27 * modification, are permitted provided that the following conditions
29 * 1. Redistributions of source code must retain the above copyright
30 * notice, this list of conditions and the following disclaimer.
31 * 2. Redistributions in binary form must reproduce the above copyright
32 * notice, this list of conditions and the following disclaimer in the
33 * documentation and/or other materials provided with the distribution.
34 * 3. All advertising materials mentioning features or use of this software
35 * must display the following acknowledgement:
36 * This product includes software developed by the University of
37 * California, Berkeley and its contributors.
38 * 4. Neither the name of the University nor the names of its contributors
39 * may be used to endorse or promote products derived from this software
40 * without specific prior written permission.
42 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
43 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
44 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
45 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
46 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
47 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
48 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
49 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
50 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
51 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
54 * @(#)sys_socket.c 8.1 (Berkeley) 6/10/93
57 #include <sys/param.h>
58 #include <sys/systm.h>
60 #include <sys/protosw.h>
61 #include <sys/socket.h>
62 #include <sys/socketvar.h>
63 #include <sys/filio.h> /* XXX */
64 #include <sys/sockio.h>
67 #include <sys/filedesc.h>
70 #include <net/route.h>
72 int soo_read
__P((struct file
*fp
, struct uio
*uio
,
73 struct ucred
*cred
, int flags
, struct proc
*p
));
74 int soo_write
__P((struct file
*fp
, struct uio
*uio
,
75 struct ucred
*cred
, int flags
, struct proc
*p
));
76 int soo_close
__P((struct file
*fp
, struct proc
*p
));
78 int soo_select
__P((struct file
*fp
, int which
, void * wql
, struct proc
*p
));
80 struct fileops socketops
=
81 { soo_read
, soo_write
, soo_ioctl
, soo_select
, soo_close
};
85 soo_read(fp
, uio
, cred
, flags
, p
)
95 int (*fsoreceive
) __P((struct socket
*so
,
96 struct sockaddr
**paddr
,
97 struct uio
*uio
, struct mbuf
**mp0
,
98 struct mbuf
**controlp
, int *flagsp
));
101 thread_funnel_switch(KERNEL_FUNNEL
, NETWORK_FUNNEL
);
103 if ((so
= (struct socket
*)fp
->f_data
) == NULL
) {
104 /* This is not a valid open file descriptor */
105 thread_funnel_switch(NETWORK_FUNNEL
, KERNEL_FUNNEL
);
109 fsoreceive
= so
->so_proto
->pr_usrreqs
->pru_soreceive
;
110 if (fsoreceive
!= soreceive
)
111 { kp
= sotokextcb(so
);
113 { if (kp
->e_soif
&& kp
->e_soif
->sf_soreceive
)
114 (*kp
->e_soif
->sf_soreceive
)(so
, 0, &uio
,
121 stat
= (*fsoreceive
)(so
, 0, uio
, 0, 0, 0);
122 thread_funnel_switch(NETWORK_FUNNEL
, KERNEL_FUNNEL
);
128 soo_write(fp
, uio
, cred
, flags
, p
)
136 int (*fsosend
) __P((struct socket
*so
, struct sockaddr
*addr
,
137 struct uio
*uio
, struct mbuf
*top
,
138 struct mbuf
*control
, int flags
));
142 thread_funnel_switch(KERNEL_FUNNEL
, NETWORK_FUNNEL
);
144 if ((so
= (struct socket
*)fp
->f_data
) == NULL
) {
145 /* This is not a valid open file descriptor */
146 thread_funnel_switch(NETWORK_FUNNEL
, KERNEL_FUNNEL
);
150 fsosend
= so
->so_proto
->pr_usrreqs
->pru_sosend
;
151 if (fsosend
!= sosend
)
152 { kp
= sotokextcb(so
);
154 { if (kp
->e_soif
&& kp
->e_soif
->sf_sosend
)
155 (*kp
->e_soif
->sf_sosend
)(so
, 0, &uio
,
161 stat
= (*fsosend
)(so
, 0, uio
, 0, 0, 0);
162 thread_funnel_switch(NETWORK_FUNNEL
, KERNEL_FUNNEL
);
164 /* Generation of SIGPIPE can be controlled per socket */
165 if (stat
== EPIPE
&& uio
->uio_procp
&& !(so
->so_flags
& SOF_NOSIGPIPE
))
166 psignal(uio
->uio_procp
, SIGPIPE
);
172 soo_ioctl(fp
, cmd
, data
, p
)
175 register caddr_t data
;
178 register struct socket
*so
;
183 thread_funnel_switch(KERNEL_FUNNEL
, NETWORK_FUNNEL
);
185 if ((so
= (struct socket
*)fp
->f_data
) == NULL
) {
186 /* This is not a valid open file descriptor */
187 thread_funnel_switch(NETWORK_FUNNEL
, KERNEL_FUNNEL
);
192 sopt
.sopt_level
= cmd
;
193 sopt
.sopt_name
= (int)data
;
197 { if (kp
->e_soif
&& kp
->e_soif
->sf_socontrol
)
198 (*kp
->e_soif
->sf_socontrol
)(so
, &sopt
, kp
);
206 so
->so_state
|= SS_NBIO
;
208 so
->so_state
&= ~SS_NBIO
;
210 thread_funnel_switch(NETWORK_FUNNEL
, KERNEL_FUNNEL
);
215 so
->so_state
|= SS_ASYNC
;
216 so
->so_rcv
.sb_flags
|= SB_ASYNC
;
217 so
->so_snd
.sb_flags
|= SB_ASYNC
;
219 so
->so_state
&= ~SS_ASYNC
;
220 so
->so_rcv
.sb_flags
&= ~SB_ASYNC
;
221 so
->so_snd
.sb_flags
&= ~SB_ASYNC
;
223 thread_funnel_switch(NETWORK_FUNNEL
, KERNEL_FUNNEL
);
227 *(int *)data
= so
->so_rcv
.sb_cc
;
228 thread_funnel_switch(NETWORK_FUNNEL
, KERNEL_FUNNEL
);
232 so
->so_pgid
= *(int *)data
;
233 thread_funnel_switch(NETWORK_FUNNEL
, KERNEL_FUNNEL
);
237 *(int *)data
= so
->so_pgid
;
238 thread_funnel_switch(NETWORK_FUNNEL
, KERNEL_FUNNEL
);
242 *(int *)data
= (so
->so_state
&SS_RCVATMARK
) != 0;
243 thread_funnel_switch(NETWORK_FUNNEL
, KERNEL_FUNNEL
);
248 * Set socket level options here and then call protocol
251 struct socket
*cloned_so
= NULL
;
252 int cloned_fd
= *(int *)data
;
254 /* let's make sure it's either -1 or a valid file descriptor */
255 if (cloned_fd
!= -1) {
256 struct file
*cloned_fp
;
257 error
= getsock(p
->p_fd
, cloned_fd
, &cloned_fp
);
259 thread_funnel_switch(NETWORK_FUNNEL
, KERNEL_FUNNEL
);
263 cloned_so
= (struct socket
*)cloned_fp
->f_data
;
266 /* Always set socket non-blocking for OT */
267 fp
->f_flag
|= FNONBLOCK
;
268 so
->so_state
|= SS_NBIO
;
269 so
->so_options
|= SO_DONTTRUNC
| SO_WANTMORE
;
270 so
->so_flags
|= SOF_NOSIGPIPE
;
272 if (cloned_so
&& so
!= cloned_so
) {
274 so
->so_options
|= cloned_so
->so_options
& ~SO_ACCEPTCONN
;
277 if (so
->so_options
& SO_LINGER
)
278 so
->so_linger
= cloned_so
->so_linger
;
280 /* SO_SNDBUF, SO_RCVBUF */
281 if (cloned_so
->so_snd
.sb_hiwat
> 0) {
282 if (sbreserve(&so
->so_snd
, cloned_so
->so_snd
.sb_hiwat
) == 0) {
284 thread_funnel_switch(NETWORK_FUNNEL
, KERNEL_FUNNEL
);
288 if (cloned_so
->so_rcv
.sb_hiwat
> 0) {
289 if (sbreserve(&so
->so_rcv
, cloned_so
->so_rcv
.sb_hiwat
) == 0) {
291 thread_funnel_switch(NETWORK_FUNNEL
, KERNEL_FUNNEL
);
296 /* SO_SNDLOWAT, SO_RCVLOWAT */
297 so
->so_snd
.sb_lowat
=
298 (cloned_so
->so_snd
.sb_lowat
> so
->so_snd
.sb_hiwat
) ?
299 so
->so_snd
.sb_hiwat
: cloned_so
->so_snd
.sb_lowat
;
300 so
->so_rcv
.sb_lowat
=
301 (cloned_so
->so_rcv
.sb_lowat
> so
->so_rcv
.sb_hiwat
) ?
302 so
->so_rcv
.sb_hiwat
: cloned_so
->so_rcv
.sb_lowat
;
304 /* SO_SNDTIMEO, SO_RCVTIMEO */
305 so
->so_snd
.sb_timeo
= cloned_so
->so_snd
.sb_timeo
;
306 so
->so_rcv
.sb_timeo
= cloned_so
->so_rcv
.sb_timeo
;
309 error
= (*so
->so_proto
->pr_usrreqs
->pru_control
)(so
, cmd
, data
, 0, p
);
310 /* Just ignore protocols that do not understand it */
311 if (error
== EOPNOTSUPP
)
314 thread_funnel_switch(NETWORK_FUNNEL
, KERNEL_FUNNEL
);
319 * Interface/routing/protocol specific ioctls:
320 * interface and routing ioctls should have a
321 * different entry since a socket's unnecessary
323 if (IOCGROUP(cmd
) == 'i')
324 error
= ifioctl(so
, cmd
, data
, p
);
326 if (IOCGROUP(cmd
) == 'r')
327 error
= rtioctl(cmd
, data
, p
);
329 error
= (*so
->so_proto
->pr_usrreqs
->pru_control
)(so
, cmd
, data
, 0, p
);
331 thread_funnel_switch(NETWORK_FUNNEL
, KERNEL_FUNNEL
);
336 soo_select(fp
, which
, wql
, p
)
342 register struct socket
*so
= (struct socket
*)fp
->f_data
;
343 register int s
= splnet();
350 so
->so_rcv
.sb_flags
|= SB_SEL
;
351 if (soreadable(so
)) {
354 so
->so_rcv
.sb_flags
&= ~SB_SEL
;
357 selrecord(p
, &so
->so_rcv
.sb_sel
, wql
);
361 so
->so_snd
.sb_flags
|= SB_SEL
;
362 if (sowriteable(so
)) {
365 so
->so_snd
.sb_flags
&= ~SB_SEL
;
368 selrecord(p
, &so
->so_snd
.sb_sel
, wql
);
372 so
->so_rcv
.sb_flags
|= SB_SEL
;
373 if (so
->so_oobmark
|| (so
->so_state
& SS_RCVATMARK
)) {
376 so
->so_rcv
.sb_flags
&= ~SB_SEL
;
379 selrecord(p
, &so
->so_rcv
.sb_sel
, wql
);
390 register struct socket
*so
;
391 register struct stat
*ub
;
396 * DANGER: by the time we get the network funnel the socket
397 * may have been closed
399 thread_funnel_switch(KERNEL_FUNNEL
, NETWORK_FUNNEL
);
400 bzero((caddr_t
)ub
, sizeof (*ub
));
401 ub
->st_mode
= S_IFSOCK
;
402 stat
= (*so
->so_proto
->pr_usrreqs
->pru_sense
)(so
, ub
);
403 thread_funnel_switch(NETWORK_FUNNEL
, KERNEL_FUNNEL
);
415 thread_funnel_switch(KERNEL_FUNNEL
, NETWORK_FUNNEL
);
418 error
= soclose((struct socket
*)fp
->f_data
);
420 thread_funnel_switch(NETWORK_FUNNEL
, KERNEL_FUNNEL
);