]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/kern/sys_socket.c
There are a number of ways an application can check if there are
[FreeBSD/FreeBSD.git] / sys / kern / sys_socket.c
1 /*-
2  * Copyright (c) 1982, 1986, 1990, 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  * 4. 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.
16  *
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
27  * SUCH DAMAGE.
28  *
29  *      @(#)sys_socket.c        8.1 (Berkeley) 6/10/93
30  */
31
32 #include <sys/cdefs.h>
33 __FBSDID("$FreeBSD$");
34
35 #include <sys/param.h>
36 #include <sys/systm.h>
37 #include <sys/file.h>
38 #include <sys/filedesc.h>
39 #include <sys/proc.h>
40 #include <sys/protosw.h>
41 #include <sys/sigio.h>
42 #include <sys/signal.h>
43 #include <sys/signalvar.h>
44 #include <sys/socket.h>
45 #include <sys/socketvar.h>
46 #include <sys/filio.h>                  /* XXX */
47 #include <sys/sockio.h>
48 #include <sys/stat.h>
49 #include <sys/uio.h>
50 #include <sys/ucred.h>
51 #include <sys/vimage.h>
52
53 #include <net/if.h>
54 #include <net/route.h>
55
56 #include <security/mac/mac_framework.h>
57
58 struct fileops  socketops = {
59         .fo_read = soo_read,
60         .fo_write = soo_write,
61         .fo_truncate = soo_truncate,
62         .fo_ioctl = soo_ioctl,
63         .fo_poll = soo_poll,
64         .fo_kqfilter = soo_kqfilter,
65         .fo_stat = soo_stat,
66         .fo_close = soo_close,
67         .fo_flags = DFLAG_PASSABLE
68 };
69
70 /* ARGSUSED */
71 int
72 soo_read(struct file *fp, struct uio *uio, struct ucred *active_cred,
73     int flags, struct thread *td)
74 {
75         struct socket *so = fp->f_data;
76         int error;
77
78 #ifdef MAC
79         error = mac_socket_check_receive(active_cred, so);
80         if (error)
81                 return (error);
82 #endif
83         CURVNET_SET(so->so_vnet);
84         error = soreceive(so, 0, uio, 0, 0, 0);
85         CURVNET_RESTORE();
86         return (error);
87 }
88
89 /* ARGSUSED */
90 int
91 soo_write(struct file *fp, struct uio *uio, struct ucred *active_cred,
92     int flags, struct thread *td)
93 {
94         struct socket *so = fp->f_data;
95         int error;
96
97 #ifdef MAC
98         error = mac_socket_check_send(active_cred, so);
99         if (error)
100                 return (error);
101 #endif
102         error = sosend(so, 0, uio, 0, 0, 0, uio->uio_td);
103         if (error == EPIPE && (so->so_options & SO_NOSIGPIPE) == 0) {
104                 PROC_LOCK(uio->uio_td->td_proc);
105                 psignal(uio->uio_td->td_proc, SIGPIPE);
106                 PROC_UNLOCK(uio->uio_td->td_proc);
107         }
108         return (error);
109 }
110
111 int
112 soo_truncate(struct file *fp, off_t length, struct ucred *active_cred,
113     struct thread *td)
114 {
115
116         return (EINVAL);
117 }
118
119 int
120 soo_ioctl(struct file *fp, u_long cmd, void *data, struct ucred *active_cred,
121     struct thread *td)
122 {
123         struct socket *so = fp->f_data;
124         int error = 0;
125
126         CURVNET_SET(so->so_vnet);
127         switch (cmd) {
128         case FIONBIO:
129                 SOCK_LOCK(so);
130                 if (*(int *)data)
131                         so->so_state |= SS_NBIO;
132                 else
133                         so->so_state &= ~SS_NBIO;
134                 SOCK_UNLOCK(so);
135                 break;
136
137         case FIOASYNC:
138                 /*
139                  * XXXRW: This code separately acquires SOCK_LOCK(so) and
140                  * SOCKBUF_LOCK(&so->so_rcv) even though they are the same
141                  * mutex to avoid introducing the assumption that they are
142                  * the same.
143                  */
144                 if (*(int *)data) {
145                         SOCK_LOCK(so);
146                         so->so_state |= SS_ASYNC;
147                         SOCK_UNLOCK(so);
148                         SOCKBUF_LOCK(&so->so_rcv);
149                         so->so_rcv.sb_flags |= SB_ASYNC;
150                         SOCKBUF_UNLOCK(&so->so_rcv);
151                         SOCKBUF_LOCK(&so->so_snd);
152                         so->so_snd.sb_flags |= SB_ASYNC;
153                         SOCKBUF_UNLOCK(&so->so_snd);
154                 } else {
155                         SOCK_LOCK(so);
156                         so->so_state &= ~SS_ASYNC;
157                         SOCK_UNLOCK(so);
158                         SOCKBUF_LOCK(&so->so_rcv);
159                         so->so_rcv.sb_flags &= ~SB_ASYNC;
160                         SOCKBUF_UNLOCK(&so->so_rcv);
161                         SOCKBUF_LOCK(&so->so_snd);
162                         so->so_snd.sb_flags &= ~SB_ASYNC;
163                         SOCKBUF_UNLOCK(&so->so_snd);
164                 }
165                 break;
166
167         case FIONREAD:
168                 /* Unlocked read. */
169                 *(int *)data = so->so_rcv.sb_cc;
170                 break;
171
172         case FIONWRITE:
173                 /* Unlocked read. */
174                 *(int *)data = so->so_snd.sb_cc;
175                 break;
176
177         case FIOSETOWN:
178                 error = fsetown(*(int *)data, &so->so_sigio);
179                 break;
180
181         case FIOGETOWN:
182                 *(int *)data = fgetown(&so->so_sigio);
183                 break;
184
185         case SIOCSPGRP:
186                 error = fsetown(-(*(int *)data), &so->so_sigio);
187                 break;
188
189         case SIOCGPGRP:
190                 *(int *)data = -fgetown(&so->so_sigio);
191                 break;
192
193         case SIOCATMARK:
194                 /* Unlocked read. */
195                 *(int *)data = (so->so_rcv.sb_state & SBS_RCVATMARK) != 0;
196                 break;
197         default:
198                 /*
199                  * Interface/routing/protocol specific ioctls: interface and
200                  * routing ioctls should have a different entry since a
201                  * socket is unnecessary.
202                  */
203                 if (IOCGROUP(cmd) == 'i')
204                         error = ifioctl(so, cmd, data, td);
205                 else if (IOCGROUP(cmd) == 'r')
206                         error = rtioctl_fib(cmd, data, so->so_fibnum);
207                 else
208                         error = ((*so->so_proto->pr_usrreqs->pru_control)
209                             (so, cmd, data, 0, td));
210                 break;
211         }
212         CURVNET_RESTORE();
213         return (error);
214 }
215
216 int
217 soo_poll(struct file *fp, int events, struct ucred *active_cred,
218     struct thread *td)
219 {
220         struct socket *so = fp->f_data;
221 #ifdef MAC
222         int error;
223
224         error = mac_socket_check_poll(active_cred, so);
225         if (error)
226                 return (error);
227 #endif
228         return (sopoll(so, events, fp->f_cred, td));
229 }
230
231 int
232 soo_stat(struct file *fp, struct stat *ub, struct ucred *active_cred,
233     struct thread *td)
234 {
235         struct socket *so = fp->f_data;
236 #ifdef MAC
237         int error;
238 #endif
239
240         bzero((caddr_t)ub, sizeof (*ub));
241         ub->st_mode = S_IFSOCK;
242 #ifdef MAC
243         error = mac_socket_check_stat(active_cred, so);
244         if (error)
245                 return (error);
246 #endif
247         /*
248          * If SBS_CANTRCVMORE is set, but there's still data left in the
249          * receive buffer, the socket is still readable.
250          */
251         SOCKBUF_LOCK(&so->so_rcv);
252         if ((so->so_rcv.sb_state & SBS_CANTRCVMORE) == 0 ||
253             so->so_rcv.sb_cc != 0)
254                 ub->st_mode |= S_IRUSR | S_IRGRP | S_IROTH;
255         ub->st_size = so->so_rcv.sb_cc - so->so_rcv.sb_ctl;
256         SOCKBUF_UNLOCK(&so->so_rcv);
257         /* Unlocked read. */
258         if ((so->so_snd.sb_state & SBS_CANTSENDMORE) == 0)
259                 ub->st_mode |= S_IWUSR | S_IWGRP | S_IWOTH;
260         ub->st_uid = so->so_cred->cr_uid;
261         ub->st_gid = so->so_cred->cr_gid;
262         return (*so->so_proto->pr_usrreqs->pru_sense)(so, ub);
263 }
264
265 /*
266  * API socket close on file pointer.  We call soclose() to close the socket
267  * (including initiating closing protocols).  soclose() will sorele() the
268  * file reference but the actual socket will not go away until the socket's
269  * ref count hits 0.
270  */
271 /* ARGSUSED */
272 int
273 soo_close(struct file *fp, struct thread *td)
274 {
275         int error = 0;
276         struct socket *so;
277
278         so = fp->f_data;
279         fp->f_ops = &badfileops;
280         fp->f_data = NULL;
281
282         if (so)
283                 error = soclose(so);
284         return (error);
285 }