uipc_syscalls.c revision 1.193 1 1.193 christos /* $NetBSD: uipc_syscalls.c,v 1.193 2018/05/03 21:43:33 christos Exp $ */
2 1.129 ad
3 1.129 ad /*-
4 1.136 ad * Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
5 1.129 ad * All rights reserved.
6 1.129 ad *
7 1.136 ad * This code is derived from software contributed to The NetBSD Foundation
8 1.136 ad * by Andrew Doran.
9 1.136 ad *
10 1.129 ad * Redistribution and use in source and binary forms, with or without
11 1.129 ad * modification, are permitted provided that the following conditions
12 1.129 ad * are met:
13 1.129 ad * 1. Redistributions of source code must retain the above copyright
14 1.129 ad * notice, this list of conditions and the following disclaimer.
15 1.129 ad * 2. Redistributions in binary form must reproduce the above copyright
16 1.129 ad * notice, this list of conditions and the following disclaimer in the
17 1.129 ad * documentation and/or other materials provided with the distribution.
18 1.129 ad *
19 1.129 ad * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.129 ad * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.129 ad * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.129 ad * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.129 ad * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.129 ad * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.129 ad * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.129 ad * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.129 ad * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.129 ad * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.129 ad * POSSIBILITY OF SUCH DAMAGE.
30 1.129 ad */
31 1.8 cgd
32 1.1 cgd /*
33 1.7 mycroft * Copyright (c) 1982, 1986, 1989, 1990, 1993
34 1.7 mycroft * The Regents of the University of California. All rights reserved.
35 1.1 cgd *
36 1.1 cgd * Redistribution and use in source and binary forms, with or without
37 1.1 cgd * modification, are permitted provided that the following conditions
38 1.1 cgd * are met:
39 1.1 cgd * 1. Redistributions of source code must retain the above copyright
40 1.1 cgd * notice, this list of conditions and the following disclaimer.
41 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
42 1.1 cgd * notice, this list of conditions and the following disclaimer in the
43 1.1 cgd * documentation and/or other materials provided with the distribution.
44 1.82 agc * 3. Neither the name of the University nor the names of its contributors
45 1.1 cgd * may be used to endorse or promote products derived from this software
46 1.1 cgd * without specific prior written permission.
47 1.1 cgd *
48 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58 1.1 cgd * SUCH DAMAGE.
59 1.1 cgd *
60 1.29 fvdl * @(#)uipc_syscalls.c 8.6 (Berkeley) 2/14/95
61 1.1 cgd */
62 1.67 lukem
63 1.67 lukem #include <sys/cdefs.h>
64 1.193 christos __KERNEL_RCSID(0, "$NetBSD: uipc_syscalls.c,v 1.193 2018/05/03 21:43:33 christos Exp $");
65 1.31 thorpej
66 1.180 pooka #ifdef _KERNEL_OPT
67 1.68 jdolecek #include "opt_pipe.h"
68 1.180 pooka #endif
69 1.55 jdolecek
70 1.6 mycroft #include <sys/param.h>
71 1.9 cgd #include <sys/systm.h>
72 1.6 mycroft #include <sys/filedesc.h>
73 1.6 mycroft #include <sys/proc.h>
74 1.6 mycroft #include <sys/file.h>
75 1.6 mycroft #include <sys/buf.h>
76 1.6 mycroft #include <sys/mbuf.h>
77 1.6 mycroft #include <sys/protosw.h>
78 1.6 mycroft #include <sys/socket.h>
79 1.6 mycroft #include <sys/socketvar.h>
80 1.18 christos #include <sys/signalvar.h>
81 1.18 christos #include <sys/un.h>
82 1.6 mycroft #include <sys/ktrace.h>
83 1.71 jdolecek #include <sys/event.h>
84 1.153 christos #include <sys/atomic.h>
85 1.139 elad #include <sys/kauth.h>
86 1.1 cgd
87 1.9 cgd #include <sys/mount.h>
88 1.9 cgd #include <sys/syscallargs.h>
89 1.9 cgd
90 1.1 cgd /*
91 1.1 cgd * System call interface to the socket abstraction.
92 1.1 cgd */
93 1.89 christos extern const struct fileops socketops;
94 1.1 cgd
95 1.175 rtr static int sockargs_sb(struct sockaddr_big *, const void *, socklen_t);
96 1.175 rtr
97 1.7 mycroft int
98 1.167 rmind sys___socket30(struct lwp *l, const struct sys___socket30_args *uap,
99 1.167 rmind register_t *retval)
100 1.15 thorpej {
101 1.125 dsl /* {
102 1.57 lukem syscallarg(int) domain;
103 1.57 lukem syscallarg(int) type;
104 1.57 lukem syscallarg(int) protocol;
105 1.125 dsl } */
106 1.167 rmind int fd, error;
107 1.1 cgd
108 1.120 dyoung error = fsocreate(SCARG(uap, domain), NULL, SCARG(uap, type),
109 1.169 rmind SCARG(uap, protocol), &fd);
110 1.167 rmind if (error == 0) {
111 1.1 cgd *retval = fd;
112 1.167 rmind }
113 1.120 dyoung return error;
114 1.1 cgd }
115 1.1 cgd
116 1.7 mycroft int
117 1.125 dsl sys_bind(struct lwp *l, const struct sys_bind_args *uap, register_t *retval)
118 1.15 thorpej {
119 1.125 dsl /* {
120 1.57 lukem syscallarg(int) s;
121 1.57 lukem syscallarg(const struct sockaddr *) name;
122 1.57 lukem syscallarg(unsigned int) namelen;
123 1.125 dsl } */
124 1.111 dsl int error;
125 1.175 rtr struct sockaddr_big sb;
126 1.111 dsl
127 1.175 rtr error = sockargs_sb(&sb, SCARG(uap, name), SCARG(uap, namelen));
128 1.111 dsl if (error)
129 1.111 dsl return error;
130 1.111 dsl
131 1.175 rtr return do_sys_bind(l, SCARG(uap, s), (struct sockaddr *)&sb);
132 1.111 dsl }
133 1.111 dsl
134 1.111 dsl int
135 1.175 rtr do_sys_bind(struct lwp *l, int fd, struct sockaddr *nam)
136 1.111 dsl {
137 1.128 ad struct socket *so;
138 1.57 lukem int error;
139 1.1 cgd
140 1.175 rtr if ((error = fd_getsock(fd, &so)) != 0)
141 1.175 rtr return error;
142 1.128 ad error = sobind(so, nam, l);
143 1.128 ad fd_putfile(fd);
144 1.111 dsl return error;
145 1.1 cgd }
146 1.1 cgd
147 1.7 mycroft int
148 1.125 dsl sys_listen(struct lwp *l, const struct sys_listen_args *uap, register_t *retval)
149 1.15 thorpej {
150 1.125 dsl /* {
151 1.57 lukem syscallarg(int) s;
152 1.57 lukem syscallarg(int) backlog;
153 1.125 dsl } */
154 1.128 ad struct socket *so;
155 1.57 lukem int error;
156 1.1 cgd
157 1.128 ad if ((error = fd_getsock(SCARG(uap, s), &so)) != 0)
158 1.1 cgd return (error);
159 1.128 ad error = solisten(so, SCARG(uap, backlog), l);
160 1.128 ad fd_putfile(SCARG(uap, s));
161 1.111 dsl return error;
162 1.1 cgd }
163 1.1 cgd
164 1.7 mycroft int
165 1.176 rtr do_sys_accept(struct lwp *l, int sock, struct sockaddr *name,
166 1.167 rmind register_t *new_sock, const sigset_t *mask, int flags, int clrflags)
167 1.15 thorpej {
168 1.128 ad file_t *fp, *fp2;
169 1.129 ad int error, fd;
170 1.128 ad struct socket *so, *so2;
171 1.138 dsl short wakeup_state = 0;
172 1.1 cgd
173 1.128 ad if ((fp = fd_getfile(sock)) == NULL)
174 1.167 rmind return EBADF;
175 1.132 rmind if (fp->f_type != DTYPE_SOCKET) {
176 1.132 rmind fd_putfile(sock);
177 1.167 rmind return ENOTSOCK;
178 1.132 rmind }
179 1.132 rmind if ((error = fd_allocfile(&fp2, &fd)) != 0) {
180 1.132 rmind fd_putfile(sock);
181 1.167 rmind return error;
182 1.132 rmind }
183 1.128 ad *new_sock = fd;
184 1.173 matt so = fp->f_socket;
185 1.129 ad solock(so);
186 1.144 christos
187 1.144 christos if (__predict_false(mask))
188 1.144 christos sigsuspendsetup(l, mask);
189 1.144 christos
190 1.44 darrenr if (!(so->so_proto->pr_flags & PR_LISTEN)) {
191 1.128 ad error = EOPNOTSUPP;
192 1.128 ad goto bad;
193 1.44 darrenr }
194 1.1 cgd if ((so->so_options & SO_ACCEPTCONN) == 0) {
195 1.128 ad error = EINVAL;
196 1.128 ad goto bad;
197 1.1 cgd }
198 1.149 christos if ((so->so_state & SS_NBIO) && so->so_qlen == 0) {
199 1.128 ad error = EWOULDBLOCK;
200 1.128 ad goto bad;
201 1.1 cgd }
202 1.1 cgd while (so->so_qlen == 0 && so->so_error == 0) {
203 1.1 cgd if (so->so_state & SS_CANTRCVMORE) {
204 1.1 cgd so->so_error = ECONNABORTED;
205 1.1 cgd break;
206 1.1 cgd }
207 1.138 dsl if (wakeup_state & SS_RESTARTSYS) {
208 1.138 dsl error = ERESTART;
209 1.138 dsl goto bad;
210 1.138 dsl }
211 1.135 yamt error = sowait(so, true, 0);
212 1.18 christos if (error) {
213 1.128 ad goto bad;
214 1.1 cgd }
215 1.138 dsl wakeup_state = so->so_state;
216 1.1 cgd }
217 1.1 cgd if (so->so_error) {
218 1.1 cgd error = so->so_error;
219 1.1 cgd so->so_error = 0;
220 1.128 ad goto bad;
221 1.1 cgd }
222 1.71 jdolecek /* connection has been removed from the listen queue */
223 1.129 ad KNOTE(&so->so_rcv.sb_sel.sel_klist, NOTE_SUBMIT);
224 1.128 ad so2 = TAILQ_FIRST(&so->so_q);
225 1.128 ad if (soqremque(so2, 1) == 0)
226 1.1 cgd panic("accept");
227 1.128 ad fp2->f_type = DTYPE_SOCKET;
228 1.144 christos fp2->f_flag = (fp->f_flag & ~clrflags) |
229 1.151 christos ((flags & SOCK_NONBLOCK) ? FNONBLOCK : 0)|
230 1.151 christos ((flags & SOCK_NOSIGPIPE) ? FNOSIGPIPE : 0);
231 1.128 ad fp2->f_ops = &socketops;
232 1.173 matt fp2->f_socket = so2;
233 1.164 christos if (fp2->f_flag & FNONBLOCK)
234 1.160 christos so2->so_state |= SS_NBIO;
235 1.164 christos else
236 1.164 christos so2->so_state &= ~SS_NBIO;
237 1.176 rtr error = soaccept(so2, name);
238 1.139 elad so2->so_cred = kauth_cred_dup(so->so_cred);
239 1.129 ad sounlock(so);
240 1.49 mycroft if (error) {
241 1.113 dsl /* an error occurred, free the file descriptor and mbuf */
242 1.128 ad mutex_enter(&fp2->f_lock);
243 1.128 ad fp2->f_count++;
244 1.128 ad mutex_exit(&fp2->f_lock);
245 1.128 ad closef(fp2);
246 1.128 ad fd_abort(curproc, NULL, fd);
247 1.99 christos } else {
248 1.144 christos fd_set_exclose(l, fd, (flags & SOCK_CLOEXEC) != 0);
249 1.128 ad fd_affix(curproc, fp2, fd);
250 1.49 mycroft }
251 1.129 ad fd_putfile(sock);
252 1.144 christos if (__predict_false(mask))
253 1.144 christos sigsuspendteardown(l);
254 1.167 rmind return error;
255 1.128 ad bad:
256 1.167 rmind sounlock(so);
257 1.129 ad fd_putfile(sock);
258 1.167 rmind fd_abort(curproc, fp2, fd);
259 1.144 christos if (__predict_false(mask))
260 1.144 christos sigsuspendteardown(l);
261 1.167 rmind return error;
262 1.1 cgd }
263 1.1 cgd
264 1.113 dsl int
265 1.125 dsl sys_accept(struct lwp *l, const struct sys_accept_args *uap, register_t *retval)
266 1.113 dsl {
267 1.125 dsl /* {
268 1.113 dsl syscallarg(int) s;
269 1.113 dsl syscallarg(struct sockaddr *) name;
270 1.113 dsl syscallarg(unsigned int *) anamelen;
271 1.125 dsl } */
272 1.128 ad int error, fd;
273 1.182 msaitoh struct sockaddr_big name;
274 1.113 dsl
275 1.176 rtr name.sb_len = UCHAR_MAX;
276 1.176 rtr error = do_sys_accept(l, SCARG(uap, s), (struct sockaddr *)&name,
277 1.176 rtr retval, NULL, 0, 0);
278 1.144 christos if (error != 0)
279 1.144 christos return error;
280 1.176 rtr error = copyout_sockname_sb(SCARG(uap, name), SCARG(uap, anamelen),
281 1.176 rtr MSG_LENUSRSPACE, &name);
282 1.144 christos if (error != 0) {
283 1.144 christos fd = (int)*retval;
284 1.144 christos if (fd_getfile(fd) != NULL)
285 1.144 christos (void)fd_close(fd);
286 1.144 christos }
287 1.144 christos return error;
288 1.144 christos }
289 1.144 christos
290 1.144 christos int
291 1.144 christos sys_paccept(struct lwp *l, const struct sys_paccept_args *uap,
292 1.144 christos register_t *retval)
293 1.144 christos {
294 1.144 christos /* {
295 1.144 christos syscallarg(int) s;
296 1.144 christos syscallarg(struct sockaddr *) name;
297 1.144 christos syscallarg(unsigned int *) anamelen;
298 1.144 christos syscallarg(const sigset_t *) mask;
299 1.144 christos syscallarg(int) flags;
300 1.144 christos } */
301 1.144 christos int error, fd;
302 1.176 rtr struct sockaddr_big name;
303 1.144 christos sigset_t *mask, amask;
304 1.144 christos
305 1.144 christos if (SCARG(uap, mask) != NULL) {
306 1.144 christos error = copyin(SCARG(uap, mask), &amask, sizeof(amask));
307 1.144 christos if (error)
308 1.144 christos return error;
309 1.144 christos mask = &amask;
310 1.144 christos } else
311 1.144 christos mask = NULL;
312 1.144 christos
313 1.176 rtr name.sb_len = UCHAR_MAX;
314 1.176 rtr error = do_sys_accept(l, SCARG(uap, s), (struct sockaddr *)&name,
315 1.176 rtr retval, mask, SCARG(uap, flags), FNONBLOCK);
316 1.113 dsl if (error != 0)
317 1.113 dsl return error;
318 1.176 rtr error = copyout_sockname_sb(SCARG(uap, name), SCARG(uap, anamelen),
319 1.176 rtr MSG_LENUSRSPACE, &name);
320 1.128 ad if (error != 0) {
321 1.128 ad fd = (int)*retval;
322 1.128 ad if (fd_getfile(fd) != NULL)
323 1.128 ad (void)fd_close(fd);
324 1.128 ad }
325 1.113 dsl return error;
326 1.113 dsl }
327 1.113 dsl
328 1.7 mycroft int
329 1.167 rmind sys_connect(struct lwp *l, const struct sys_connect_args *uap,
330 1.167 rmind register_t *retval)
331 1.15 thorpej {
332 1.125 dsl /* {
333 1.57 lukem syscallarg(int) s;
334 1.57 lukem syscallarg(const struct sockaddr *) name;
335 1.57 lukem syscallarg(unsigned int) namelen;
336 1.125 dsl } */
337 1.111 dsl int error;
338 1.177 rtr struct sockaddr_big sbig;
339 1.111 dsl
340 1.177 rtr error = sockargs_sb(&sbig, SCARG(uap, name), SCARG(uap, namelen));
341 1.111 dsl if (error)
342 1.111 dsl return error;
343 1.177 rtr return do_sys_connect(l, SCARG(uap, s), (struct sockaddr *)&sbig);
344 1.111 dsl }
345 1.111 dsl
346 1.111 dsl int
347 1.177 rtr do_sys_connect(struct lwp *l, int fd, struct sockaddr *nam)
348 1.111 dsl {
349 1.57 lukem struct socket *so;
350 1.111 dsl int error;
351 1.87 ragge int interrupted = 0;
352 1.1 cgd
353 1.128 ad if ((error = fd_getsock(fd, &so)) != 0) {
354 1.1 cgd return (error);
355 1.111 dsl }
356 1.129 ad solock(so);
357 1.136 ad if ((so->so_state & SS_ISCONNECTING) != 0) {
358 1.62 jdolecek error = EALREADY;
359 1.62 jdolecek goto out;
360 1.62 jdolecek }
361 1.111 dsl
362 1.95 christos error = soconnect(so, nam, l);
363 1.1 cgd if (error)
364 1.1 cgd goto bad;
365 1.150 christos if ((so->so_state & (SS_NBIO|SS_ISCONNECTING)) ==
366 1.150 christos (SS_NBIO|SS_ISCONNECTING)) {
367 1.62 jdolecek error = EINPROGRESS;
368 1.62 jdolecek goto out;
369 1.1 cgd }
370 1.136 ad while ((so->so_state & SS_ISCONNECTING) != 0 && so->so_error == 0) {
371 1.135 yamt error = sowait(so, true, 0);
372 1.137 dsl if (__predict_false((so->so_state & SS_ISABORTING) != 0)) {
373 1.136 ad error = EPIPE;
374 1.136 ad interrupted = 1;
375 1.136 ad break;
376 1.136 ad }
377 1.87 ragge if (error) {
378 1.87 ragge if (error == EINTR || error == ERESTART)
379 1.87 ragge interrupted = 1;
380 1.1 cgd break;
381 1.87 ragge }
382 1.18 christos }
383 1.1 cgd if (error == 0) {
384 1.1 cgd error = so->so_error;
385 1.1 cgd so->so_error = 0;
386 1.1 cgd }
387 1.57 lukem bad:
388 1.87 ragge if (!interrupted)
389 1.87 ragge so->so_state &= ~SS_ISCONNECTING;
390 1.1 cgd if (error == ERESTART)
391 1.1 cgd error = EINTR;
392 1.62 jdolecek out:
393 1.167 rmind sounlock(so);
394 1.167 rmind fd_putfile(fd);
395 1.167 rmind return error;
396 1.1 cgd }
397 1.1 cgd
398 1.148 christos static int
399 1.148 christos makesocket(struct lwp *l, file_t **fp, int *fd, int flags, int type,
400 1.148 christos int domain, int proto, struct socket *soo)
401 1.148 christos {
402 1.167 rmind struct socket *so;
403 1.148 christos int error;
404 1.148 christos
405 1.167 rmind if ((error = socreate(domain, &so, type, proto, l, soo)) != 0) {
406 1.148 christos return error;
407 1.167 rmind }
408 1.168 rmind if (flags & SOCK_NONBLOCK) {
409 1.168 rmind so->so_state |= SS_NBIO;
410 1.168 rmind }
411 1.148 christos
412 1.148 christos if ((error = fd_allocfile(fp, fd)) != 0) {
413 1.148 christos soclose(so);
414 1.148 christos return error;
415 1.148 christos }
416 1.148 christos fd_set_exclose(l, *fd, (flags & SOCK_CLOEXEC) != 0);
417 1.151 christos (*fp)->f_flag = FREAD|FWRITE|
418 1.151 christos ((flags & SOCK_NONBLOCK) ? FNONBLOCK : 0)|
419 1.151 christos ((flags & SOCK_NOSIGPIPE) ? FNOSIGPIPE : 0);
420 1.148 christos (*fp)->f_type = DTYPE_SOCKET;
421 1.148 christos (*fp)->f_ops = &socketops;
422 1.173 matt (*fp)->f_socket = so;
423 1.148 christos return 0;
424 1.148 christos }
425 1.148 christos
426 1.7 mycroft int
427 1.148 christos sys_socketpair(struct lwp *l, const struct sys_socketpair_args *uap,
428 1.148 christos register_t *retval)
429 1.15 thorpej {
430 1.125 dsl /* {
431 1.57 lukem syscallarg(int) domain;
432 1.57 lukem syscallarg(int) type;
433 1.57 lukem syscallarg(int) protocol;
434 1.57 lukem syscallarg(int *) rsv;
435 1.125 dsl } */
436 1.128 ad file_t *fp1, *fp2;
437 1.57 lukem struct socket *so1, *so2;
438 1.57 lukem int fd, error, sv[2];
439 1.167 rmind proc_t *p = curproc;
440 1.144 christos int flags = SCARG(uap, type) & SOCK_FLAGS_MASK;
441 1.144 christos int type = SCARG(uap, type) & ~SOCK_FLAGS_MASK;
442 1.148 christos int domain = SCARG(uap, domain);
443 1.148 christos int proto = SCARG(uap, protocol);
444 1.1 cgd
445 1.148 christos error = makesocket(l, &fp1, &fd, flags, type, domain, proto, NULL);
446 1.18 christos if (error)
447 1.148 christos return error;
448 1.173 matt so1 = fp1->f_socket;
449 1.148 christos sv[0] = fd;
450 1.148 christos
451 1.148 christos error = makesocket(l, &fp2, &fd, flags, type, domain, proto, so1);
452 1.18 christos if (error)
453 1.148 christos goto out;
454 1.173 matt so2 = fp2->f_socket;
455 1.1 cgd sv[1] = fd;
456 1.148 christos
457 1.129 ad solock(so1);
458 1.129 ad error = soconnect2(so1, so2);
459 1.148 christos if (error == 0 && type == SOCK_DGRAM) {
460 1.1 cgd /*
461 1.1 cgd * Datagram socket connection is asymmetric.
462 1.1 cgd */
463 1.129 ad error = soconnect2(so2, so1);
464 1.129 ad }
465 1.129 ad sounlock(so1);
466 1.148 christos
467 1.129 ad if (error == 0)
468 1.148 christos error = copyout(sv, SCARG(uap, rsv), sizeof(sv));
469 1.129 ad if (error == 0) {
470 1.129 ad fd_affix(p, fp2, sv[1]);
471 1.129 ad fd_affix(p, fp1, sv[0]);
472 1.148 christos return 0;
473 1.1 cgd }
474 1.128 ad fd_abort(p, fp2, sv[1]);
475 1.148 christos (void)soclose(so2);
476 1.148 christos out:
477 1.128 ad fd_abort(p, fp1, sv[0]);
478 1.1 cgd (void)soclose(so1);
479 1.148 christos return error;
480 1.1 cgd }
481 1.1 cgd
482 1.7 mycroft int
483 1.167 rmind sys_sendto(struct lwp *l, const struct sys_sendto_args *uap,
484 1.167 rmind register_t *retval)
485 1.15 thorpej {
486 1.125 dsl /* {
487 1.57 lukem syscallarg(int) s;
488 1.57 lukem syscallarg(const void *) buf;
489 1.57 lukem syscallarg(size_t) len;
490 1.57 lukem syscallarg(int) flags;
491 1.57 lukem syscallarg(const struct sockaddr *) to;
492 1.57 lukem syscallarg(unsigned int) tolen;
493 1.125 dsl } */
494 1.57 lukem struct msghdr msg;
495 1.57 lukem struct iovec aiov;
496 1.1 cgd
497 1.91 christos msg.msg_name = __UNCONST(SCARG(uap, to)); /* XXXUNCONST kills const */
498 1.9 cgd msg.msg_namelen = SCARG(uap, tolen);
499 1.1 cgd msg.msg_iov = &aiov;
500 1.1 cgd msg.msg_iovlen = 1;
501 1.121 christos msg.msg_control = NULL;
502 1.1 cgd msg.msg_flags = 0;
503 1.91 christos aiov.iov_base = __UNCONST(SCARG(uap, buf)); /* XXXUNCONST kills const */
504 1.9 cgd aiov.iov_len = SCARG(uap, len);
505 1.183 martin return do_sys_sendmsg(l, SCARG(uap, s), &msg, SCARG(uap, flags),
506 1.193 christos retval);
507 1.1 cgd }
508 1.1 cgd
509 1.7 mycroft int
510 1.167 rmind sys_sendmsg(struct lwp *l, const struct sys_sendmsg_args *uap,
511 1.167 rmind register_t *retval)
512 1.15 thorpej {
513 1.125 dsl /* {
514 1.57 lukem syscallarg(int) s;
515 1.57 lukem syscallarg(const struct msghdr *) msg;
516 1.57 lukem syscallarg(int) flags;
517 1.125 dsl } */
518 1.57 lukem struct msghdr msg;
519 1.57 lukem int error;
520 1.1 cgd
521 1.110 dsl error = copyin(SCARG(uap, msg), &msg, sizeof(msg));
522 1.18 christos if (error)
523 1.1 cgd return (error);
524 1.111 dsl
525 1.111 dsl msg.msg_flags = MSG_IOVUSRSPACE;
526 1.183 martin return do_sys_sendmsg(l, SCARG(uap, s), &msg, SCARG(uap, flags),
527 1.193 christos retval);
528 1.1 cgd }
529 1.1 cgd
530 1.186 christos int
531 1.155 christos do_sys_sendmsg_so(struct lwp *l, int s, struct socket *so, file_t *fp,
532 1.193 christos struct msghdr *mp, int flags, register_t *retsize)
533 1.1 cgd {
534 1.155 christos
535 1.141 rmind struct iovec aiov[UIO_SMALLIOV], *iov = aiov, *tiov, *ktriov = NULL;
536 1.178 rtr struct sockaddr *sa = NULL;
537 1.57 lukem struct mbuf *to, *control;
538 1.141 rmind struct uio auio;
539 1.141 rmind size_t len, iovsz;
540 1.141 rmind int i, error;
541 1.90 perry
542 1.193 christos ktrkuser("msghdr", mp, sizeof(*mp));
543 1.117 dsl
544 1.141 rmind /* If the caller passed us stuff in mbufs, we must free them. */
545 1.141 rmind to = (mp->msg_flags & MSG_NAMEMBUF) ? mp->msg_name : NULL;
546 1.141 rmind control = (mp->msg_flags & MSG_CONTROLMBUF) ? mp->msg_control : NULL;
547 1.141 rmind iovsz = mp->msg_iovlen * sizeof(struct iovec);
548 1.111 dsl
549 1.111 dsl if (mp->msg_flags & MSG_IOVUSRSPACE) {
550 1.111 dsl if ((unsigned int)mp->msg_iovlen > UIO_SMALLIOV) {
551 1.111 dsl if ((unsigned int)mp->msg_iovlen > IOV_MAX) {
552 1.111 dsl error = EMSGSIZE;
553 1.111 dsl goto bad;
554 1.111 dsl }
555 1.141 rmind iov = kmem_alloc(iovsz, KM_SLEEP);
556 1.111 dsl }
557 1.111 dsl if (mp->msg_iovlen != 0) {
558 1.141 rmind error = copyin(mp->msg_iov, iov, iovsz);
559 1.111 dsl if (error)
560 1.111 dsl goto bad;
561 1.111 dsl }
562 1.181 christos auio.uio_iov = iov;
563 1.181 christos } else
564 1.181 christos auio.uio_iov = mp->msg_iov;
565 1.111 dsl
566 1.1 cgd auio.uio_iovcnt = mp->msg_iovlen;
567 1.1 cgd auio.uio_rw = UIO_WRITE;
568 1.1 cgd auio.uio_offset = 0; /* XXX */
569 1.1 cgd auio.uio_resid = 0;
570 1.97 yamt KASSERT(l == curlwp);
571 1.97 yamt auio.uio_vmspace = l->l_proc->p_vmspace;
572 1.111 dsl
573 1.181 christos tiov = auio.uio_iov;
574 1.181 christos for (i = 0; i < auio.uio_iovcnt; i++, tiov++) {
575 1.33 thorpej /*
576 1.33 thorpej * Writes return ssize_t because -1 is returned on error.
577 1.33 thorpej * Therefore, we must restrict the length to SSIZE_MAX to
578 1.33 thorpej * avoid garbage return values.
579 1.33 thorpej */
580 1.111 dsl auio.uio_resid += tiov->iov_len;
581 1.111 dsl if (tiov->iov_len > SSIZE_MAX || auio.uio_resid > SSIZE_MAX) {
582 1.43 thorpej error = EINVAL;
583 1.111 dsl goto bad;
584 1.43 thorpej }
585 1.1 cgd }
586 1.111 dsl
587 1.112 enami if (mp->msg_name && to == NULL) {
588 1.63 jdolecek error = sockargs(&to, mp->msg_name, mp->msg_namelen,
589 1.192 christos UIO_USERSPACE, MT_SONAME);
590 1.63 jdolecek if (error)
591 1.111 dsl goto bad;
592 1.111 dsl }
593 1.111 dsl
594 1.1 cgd if (mp->msg_control) {
595 1.104 elad if (mp->msg_controllen < CMSG_ALIGN(sizeof(struct cmsghdr))) {
596 1.1 cgd error = EINVAL;
597 1.1 cgd goto bad;
598 1.1 cgd }
599 1.112 enami if (control == NULL) {
600 1.111 dsl error = sockargs(&control, mp->msg_control,
601 1.192 christos mp->msg_controllen, UIO_USERSPACE, MT_CONTROL);
602 1.111 dsl if (error)
603 1.111 dsl goto bad;
604 1.111 dsl }
605 1.111 dsl }
606 1.111 dsl
607 1.158 mlelstv if (ktrpoint(KTR_GENIO) && iovsz > 0) {
608 1.141 rmind ktriov = kmem_alloc(iovsz, KM_SLEEP);
609 1.141 rmind memcpy(ktriov, auio.uio_iov, iovsz);
610 1.1 cgd }
611 1.111 dsl
612 1.111 dsl if (mp->msg_name)
613 1.111 dsl MCLAIM(to, so->so_mowner);
614 1.111 dsl if (mp->msg_control)
615 1.111 dsl MCLAIM(control, so->so_mowner);
616 1.111 dsl
617 1.178 rtr if (to) {
618 1.178 rtr sa = mtod(to, struct sockaddr *);
619 1.178 rtr }
620 1.178 rtr
621 1.1 cgd len = auio.uio_resid;
622 1.178 rtr error = (*so->so_send)(so, sa, &auio, NULL, control, flags, l);
623 1.111 dsl /* Protocol is responsible for freeing 'control' */
624 1.111 dsl control = NULL;
625 1.111 dsl
626 1.18 christos if (error) {
627 1.1 cgd if (auio.uio_resid != len && (error == ERESTART ||
628 1.1 cgd error == EINTR || error == EWOULDBLOCK))
629 1.1 cgd error = 0;
630 1.151 christos if (error == EPIPE && (fp->f_flag & FNOSIGPIPE) == 0 &&
631 1.151 christos (flags & MSG_NOSIGNAL) == 0) {
632 1.130 ad mutex_enter(proc_lock);
633 1.111 dsl psignal(l->l_proc, SIGPIPE);
634 1.130 ad mutex_exit(proc_lock);
635 1.106 ad }
636 1.1 cgd }
637 1.1 cgd if (error == 0)
638 1.1 cgd *retsize = len - auio.uio_resid;
639 1.111 dsl
640 1.119 rmind bad:
641 1.157 mlelstv if (ktriov != NULL) {
642 1.116 ad ktrgeniov(s, UIO_WRITE, ktriov, *retsize, error);
643 1.157 mlelstv kmem_free(ktriov, iovsz);
644 1.1 cgd }
645 1.111 dsl
646 1.167 rmind if (iov != aiov)
647 1.167 rmind kmem_free(iov, iovsz);
648 1.1 cgd if (to)
649 1.1 cgd m_freem(to);
650 1.121 christos if (control)
651 1.111 dsl m_freem(control);
652 1.111 dsl
653 1.167 rmind return error;
654 1.1 cgd }
655 1.1 cgd
656 1.7 mycroft int
657 1.155 christos do_sys_sendmsg(struct lwp *l, int s, struct msghdr *mp, int flags,
658 1.193 christos register_t *retsize)
659 1.155 christos {
660 1.155 christos int error;
661 1.155 christos struct socket *so;
662 1.155 christos file_t *fp;
663 1.155 christos
664 1.179 maxv if ((error = fd_getsock1(s, &so, &fp)) != 0) {
665 1.179 maxv /* We have to free msg_name and msg_control ourselves */
666 1.179 maxv if (mp->msg_flags & MSG_NAMEMBUF)
667 1.179 maxv m_freem(mp->msg_name);
668 1.179 maxv if (mp->msg_flags & MSG_CONTROLMBUF)
669 1.179 maxv m_freem(mp->msg_control);
670 1.155 christos return error;
671 1.179 maxv }
672 1.193 christos error = do_sys_sendmsg_so(l, s, so, fp, mp, flags, retsize);
673 1.179 maxv /* msg_name and msg_control freed */
674 1.155 christos fd_putfile(s);
675 1.155 christos return error;
676 1.155 christos }
677 1.155 christos
678 1.155 christos int
679 1.167 rmind sys_recvfrom(struct lwp *l, const struct sys_recvfrom_args *uap,
680 1.167 rmind register_t *retval)
681 1.15 thorpej {
682 1.125 dsl /* {
683 1.57 lukem syscallarg(int) s;
684 1.57 lukem syscallarg(void *) buf;
685 1.57 lukem syscallarg(size_t) len;
686 1.57 lukem syscallarg(int) flags;
687 1.57 lukem syscallarg(struct sockaddr *) from;
688 1.57 lukem syscallarg(unsigned int *) fromlenaddr;
689 1.125 dsl } */
690 1.57 lukem struct msghdr msg;
691 1.57 lukem struct iovec aiov;
692 1.57 lukem int error;
693 1.113 dsl struct mbuf *from;
694 1.1 cgd
695 1.121 christos msg.msg_name = NULL;
696 1.1 cgd msg.msg_iov = &aiov;
697 1.1 cgd msg.msg_iovlen = 1;
698 1.9 cgd aiov.iov_base = SCARG(uap, buf);
699 1.9 cgd aiov.iov_len = SCARG(uap, len);
700 1.113 dsl msg.msg_control = NULL;
701 1.113 dsl msg.msg_flags = SCARG(uap, flags) & MSG_USERFLAGS;
702 1.113 dsl
703 1.193 christos error = do_sys_recvmsg(l, SCARG(uap, s), &msg, &from, NULL, retval);
704 1.113 dsl if (error != 0)
705 1.113 dsl return error;
706 1.113 dsl
707 1.113 dsl error = copyout_sockname(SCARG(uap, from), SCARG(uap, fromlenaddr),
708 1.113 dsl MSG_LENUSRSPACE, from);
709 1.113 dsl if (from != NULL)
710 1.113 dsl m_free(from);
711 1.113 dsl return error;
712 1.1 cgd }
713 1.1 cgd
714 1.7 mycroft int
715 1.167 rmind sys_recvmsg(struct lwp *l, const struct sys_recvmsg_args *uap,
716 1.167 rmind register_t *retval)
717 1.15 thorpej {
718 1.125 dsl /* {
719 1.57 lukem syscallarg(int) s;
720 1.57 lukem syscallarg(struct msghdr *) msg;
721 1.57 lukem syscallarg(int) flags;
722 1.125 dsl } */
723 1.81 fvdl struct msghdr msg;
724 1.57 lukem int error;
725 1.113 dsl struct mbuf *from, *control;
726 1.1 cgd
727 1.110 dsl error = copyin(SCARG(uap, msg), &msg, sizeof(msg));
728 1.18 christos if (error)
729 1.167 rmind return error;
730 1.113 dsl
731 1.113 dsl msg.msg_flags = (SCARG(uap, flags) & MSG_USERFLAGS) | MSG_IOVUSRSPACE;
732 1.113 dsl
733 1.193 christos error = do_sys_recvmsg(l, SCARG(uap, s), &msg, &from,
734 1.113 dsl msg.msg_control != NULL ? &control : NULL, retval);
735 1.113 dsl if (error != 0)
736 1.113 dsl return error;
737 1.113 dsl
738 1.113 dsl if (msg.msg_control != NULL)
739 1.113 dsl error = copyout_msg_control(l, &msg, control);
740 1.113 dsl
741 1.113 dsl if (error == 0)
742 1.113 dsl error = copyout_sockname(msg.msg_name, &msg.msg_namelen, 0,
743 1.113 dsl from);
744 1.113 dsl if (from != NULL)
745 1.113 dsl m_free(from);
746 1.117 dsl if (error == 0) {
747 1.193 christos ktrkuser("msghdr", &msg, sizeof(msg));
748 1.110 dsl error = copyout(&msg, SCARG(uap, msg), sizeof(msg));
749 1.117 dsl }
750 1.113 dsl
751 1.167 rmind return error;
752 1.1 cgd }
753 1.1 cgd
754 1.155 christos int
755 1.155 christos sys_sendmmsg(struct lwp *l, const struct sys_sendmmsg_args *uap,
756 1.155 christos register_t *retval)
757 1.155 christos {
758 1.155 christos /* {
759 1.155 christos syscallarg(int) s;
760 1.155 christos syscallarg(struct mmsghdr *) mmsg;
761 1.155 christos syscallarg(unsigned int) vlen;
762 1.155 christos syscallarg(unsigned int) flags;
763 1.155 christos } */
764 1.155 christos struct mmsghdr mmsg;
765 1.155 christos struct socket *so;
766 1.155 christos file_t *fp;
767 1.155 christos struct msghdr *msg = &mmsg.msg_hdr;
768 1.155 christos int error, s;
769 1.155 christos unsigned int vlen, flags, dg;
770 1.155 christos
771 1.155 christos s = SCARG(uap, s);
772 1.155 christos if ((error = fd_getsock1(s, &so, &fp)) != 0)
773 1.155 christos return error;
774 1.155 christos
775 1.155 christos vlen = SCARG(uap, vlen);
776 1.155 christos if (vlen > 1024)
777 1.155 christos vlen = 1024;
778 1.155 christos
779 1.155 christos flags = (SCARG(uap, flags) & MSG_USERFLAGS) | MSG_IOVUSRSPACE;
780 1.155 christos
781 1.155 christos for (dg = 0; dg < vlen;) {
782 1.155 christos error = copyin(SCARG(uap, mmsg) + dg, &mmsg, sizeof(mmsg));
783 1.155 christos if (error)
784 1.155 christos break;
785 1.155 christos
786 1.155 christos msg->msg_flags = flags;
787 1.155 christos
788 1.193 christos error = do_sys_sendmsg_so(l, s, so, fp, msg, flags, retval);
789 1.155 christos if (error)
790 1.155 christos break;
791 1.155 christos
792 1.193 christos ktrkuser("msghdr", msg, sizeof(*msg));
793 1.155 christos mmsg.msg_len = *retval;
794 1.155 christos error = copyout(&mmsg, SCARG(uap, mmsg) + dg, sizeof(mmsg));
795 1.155 christos if (error)
796 1.155 christos break;
797 1.155 christos dg++;
798 1.155 christos
799 1.155 christos }
800 1.155 christos
801 1.155 christos *retval = dg;
802 1.155 christos if (error)
803 1.155 christos so->so_error = error;
804 1.155 christos
805 1.155 christos fd_putfile(s);
806 1.155 christos
807 1.155 christos /*
808 1.155 christos * If we succeeded at least once, return 0, hopefully so->so_error
809 1.155 christos * will catch it next time.
810 1.155 christos */
811 1.155 christos if (dg)
812 1.155 christos return 0;
813 1.155 christos return error;
814 1.155 christos }
815 1.155 christos
816 1.92 martin /*
817 1.113 dsl * Adjust for a truncated SCM_RIGHTS control message.
818 1.113 dsl * This means closing any file descriptors that aren't present
819 1.113 dsl * in the returned buffer.
820 1.113 dsl * m is the mbuf holding the (already externalized) SCM_RIGHTS message.
821 1.92 martin */
822 1.93 martin static void
823 1.128 ad free_rights(struct mbuf *m)
824 1.92 martin {
825 1.159 riastrad struct cmsghdr *cm;
826 1.92 martin int *fdv;
827 1.159 riastrad unsigned int nfds, i;
828 1.92 martin
829 1.159 riastrad KASSERT(sizeof(*cm) <= m->m_len);
830 1.159 riastrad cm = mtod(m, struct cmsghdr *);
831 1.159 riastrad
832 1.159 riastrad KASSERT(CMSG_ALIGN(sizeof(*cm)) <= cm->cmsg_len);
833 1.159 riastrad KASSERT(cm->cmsg_len <= m->m_len);
834 1.159 riastrad nfds = (cm->cmsg_len - CMSG_ALIGN(sizeof(*cm))) / sizeof(int);
835 1.159 riastrad fdv = (int *)CMSG_DATA(cm);
836 1.159 riastrad
837 1.159 riastrad for (i = 0; i < nfds; i++)
838 1.128 ad if (fd_getfile(fdv[i]) != NULL)
839 1.128 ad (void)fd_close(fdv[i]);
840 1.113 dsl }
841 1.113 dsl
842 1.113 dsl void
843 1.113 dsl free_control_mbuf(struct lwp *l, struct mbuf *control, struct mbuf *uncopied)
844 1.113 dsl {
845 1.113 dsl struct mbuf *next;
846 1.114 dsl struct cmsghdr *cmsg;
847 1.113 dsl bool do_free_rights = false;
848 1.113 dsl
849 1.113 dsl while (control != NULL) {
850 1.114 dsl cmsg = mtod(control, struct cmsghdr *);
851 1.113 dsl if (control == uncopied)
852 1.113 dsl do_free_rights = true;
853 1.114 dsl if (do_free_rights && cmsg->cmsg_level == SOL_SOCKET
854 1.114 dsl && cmsg->cmsg_type == SCM_RIGHTS)
855 1.128 ad free_rights(control);
856 1.113 dsl next = control->m_next;
857 1.113 dsl m_free(control);
858 1.113 dsl control = next;
859 1.113 dsl }
860 1.113 dsl }
861 1.113 dsl
862 1.113 dsl /* Copy socket control/CMSG data to user buffer, frees the mbuf */
863 1.113 dsl int
864 1.113 dsl copyout_msg_control(struct lwp *l, struct msghdr *mp, struct mbuf *control)
865 1.113 dsl {
866 1.113 dsl int i, len, error = 0;
867 1.114 dsl struct cmsghdr *cmsg;
868 1.113 dsl struct mbuf *m;
869 1.113 dsl char *q;
870 1.113 dsl
871 1.113 dsl len = mp->msg_controllen;
872 1.113 dsl if (len <= 0 || control == 0) {
873 1.113 dsl mp->msg_controllen = 0;
874 1.113 dsl free_control_mbuf(l, control, control);
875 1.113 dsl return 0;
876 1.113 dsl }
877 1.113 dsl
878 1.113 dsl q = (char *)mp->msg_control;
879 1.113 dsl
880 1.113 dsl for (m = control; m != NULL; ) {
881 1.114 dsl cmsg = mtod(m, struct cmsghdr *);
882 1.113 dsl i = m->m_len;
883 1.113 dsl if (len < i) {
884 1.113 dsl mp->msg_flags |= MSG_CTRUNC;
885 1.114 dsl if (cmsg->cmsg_level == SOL_SOCKET
886 1.114 dsl && cmsg->cmsg_type == SCM_RIGHTS)
887 1.113 dsl /* Do not truncate me ... */
888 1.113 dsl break;
889 1.113 dsl i = len;
890 1.113 dsl }
891 1.113 dsl error = copyout(mtod(m, void *), q, i);
892 1.193 christos ktrkuser(mbuftypes[MT_CONTROL], cmsg, cmsg->cmsg_len);
893 1.113 dsl if (error != 0) {
894 1.113 dsl /* We must free all the SCM_RIGHTS */
895 1.113 dsl m = control;
896 1.113 dsl break;
897 1.113 dsl }
898 1.113 dsl m = m->m_next;
899 1.113 dsl if (m)
900 1.113 dsl i = ALIGN(i);
901 1.113 dsl q += i;
902 1.113 dsl len -= i;
903 1.113 dsl if (len <= 0)
904 1.113 dsl break;
905 1.113 dsl }
906 1.113 dsl
907 1.113 dsl free_control_mbuf(l, control, m);
908 1.113 dsl
909 1.113 dsl mp->msg_controllen = q - (char *)mp->msg_control;
910 1.113 dsl return error;
911 1.92 martin }
912 1.92 martin
913 1.186 christos int
914 1.155 christos do_sys_recvmsg_so(struct lwp *l, int s, struct socket *so, struct msghdr *mp,
915 1.193 christos struct mbuf **from, struct mbuf **control, register_t *retsize)
916 1.1 cgd {
917 1.156 njoly struct iovec aiov[UIO_SMALLIOV], *iov = aiov, *tiov, *ktriov = NULL;
918 1.57 lukem struct uio auio;
919 1.141 rmind size_t len, iovsz;
920 1.141 rmind int i, error;
921 1.57 lukem
922 1.193 christos ktrkuser("msghdr", mp, sizeof(*mp));
923 1.117 dsl
924 1.113 dsl *from = NULL;
925 1.113 dsl if (control != NULL)
926 1.113 dsl *control = NULL;
927 1.90 perry
928 1.141 rmind iovsz = mp->msg_iovlen * sizeof(struct iovec);
929 1.141 rmind
930 1.113 dsl if (mp->msg_flags & MSG_IOVUSRSPACE) {
931 1.113 dsl if ((unsigned int)mp->msg_iovlen > UIO_SMALLIOV) {
932 1.113 dsl if ((unsigned int)mp->msg_iovlen > IOV_MAX) {
933 1.113 dsl error = EMSGSIZE;
934 1.113 dsl goto out;
935 1.113 dsl }
936 1.141 rmind iov = kmem_alloc(iovsz, KM_SLEEP);
937 1.113 dsl }
938 1.113 dsl if (mp->msg_iovlen != 0) {
939 1.141 rmind error = copyin(mp->msg_iov, iov, iovsz);
940 1.113 dsl if (error)
941 1.113 dsl goto out;
942 1.113 dsl }
943 1.113 dsl auio.uio_iov = iov;
944 1.113 dsl } else
945 1.113 dsl auio.uio_iov = mp->msg_iov;
946 1.1 cgd auio.uio_iovcnt = mp->msg_iovlen;
947 1.1 cgd auio.uio_rw = UIO_READ;
948 1.1 cgd auio.uio_offset = 0; /* XXX */
949 1.1 cgd auio.uio_resid = 0;
950 1.97 yamt KASSERT(l == curlwp);
951 1.97 yamt auio.uio_vmspace = l->l_proc->p_vmspace;
952 1.113 dsl
953 1.113 dsl tiov = auio.uio_iov;
954 1.181 christos for (i = 0; i < auio.uio_iovcnt; i++, tiov++) {
955 1.33 thorpej /*
956 1.33 thorpej * Reads return ssize_t because -1 is returned on error.
957 1.33 thorpej * Therefore we must restrict the length to SSIZE_MAX to
958 1.33 thorpej * avoid garbage return values.
959 1.33 thorpej */
960 1.113 dsl auio.uio_resid += tiov->iov_len;
961 1.113 dsl if (tiov->iov_len > SSIZE_MAX || auio.uio_resid > SSIZE_MAX) {
962 1.43 thorpej error = EINVAL;
963 1.113 dsl goto out;
964 1.43 thorpej }
965 1.1 cgd }
966 1.1 cgd
967 1.158 mlelstv if (ktrpoint(KTR_GENIO) && iovsz > 0) {
968 1.141 rmind ktriov = kmem_alloc(iovsz, KM_SLEEP);
969 1.141 rmind memcpy(ktriov, auio.uio_iov, iovsz);
970 1.1 cgd }
971 1.113 dsl
972 1.1 cgd len = auio.uio_resid;
973 1.115 dsl mp->msg_flags &= MSG_USERFLAGS;
974 1.113 dsl error = (*so->so_receive)(so, from, &auio, NULL, control,
975 1.129 ad &mp->msg_flags);
976 1.191 maxv KASSERT(*from == NULL || (*from)->m_next == NULL);
977 1.113 dsl len -= auio.uio_resid;
978 1.113 dsl *retsize = len;
979 1.113 dsl if (error != 0 && len != 0
980 1.113 dsl && (error == ERESTART || error == EINTR || error == EWOULDBLOCK))
981 1.113 dsl /* Some data transferred */
982 1.113 dsl error = 0;
983 1.116 ad
984 1.157 mlelstv if (ktriov != NULL) {
985 1.116 ad ktrgeniov(s, UIO_READ, ktriov, len, error);
986 1.157 mlelstv kmem_free(ktriov, iovsz);
987 1.1 cgd }
988 1.116 ad
989 1.113 dsl if (error != 0) {
990 1.113 dsl m_freem(*from);
991 1.113 dsl *from = NULL;
992 1.113 dsl if (control != NULL) {
993 1.113 dsl free_control_mbuf(l, *control, *control);
994 1.113 dsl *control = NULL;
995 1.1 cgd }
996 1.1 cgd }
997 1.43 thorpej out:
998 1.113 dsl if (iov != aiov)
999 1.141 rmind kmem_free(iov, iovsz);
1000 1.167 rmind return error;
1001 1.155 christos }
1002 1.155 christos
1003 1.155 christos
1004 1.155 christos int
1005 1.183 martin do_sys_recvmsg(struct lwp *l, int s, struct msghdr *mp,
1006 1.183 martin struct mbuf **from, struct mbuf **control, register_t *retsize)
1007 1.155 christos {
1008 1.155 christos int error;
1009 1.155 christos struct socket *so;
1010 1.155 christos
1011 1.155 christos if ((error = fd_getsock(s, &so)) != 0)
1012 1.155 christos return error;
1013 1.193 christos error = do_sys_recvmsg_so(l, s, so, mp, from, control, retsize);
1014 1.128 ad fd_putfile(s);
1015 1.155 christos return error;
1016 1.1 cgd }
1017 1.1 cgd
1018 1.155 christos int
1019 1.155 christos sys_recvmmsg(struct lwp *l, const struct sys_recvmmsg_args *uap,
1020 1.155 christos register_t *retval)
1021 1.155 christos {
1022 1.155 christos /* {
1023 1.155 christos syscallarg(int) s;
1024 1.155 christos syscallarg(struct mmsghdr *) mmsg;
1025 1.155 christos syscallarg(unsigned int) vlen;
1026 1.155 christos syscallarg(unsigned int) flags;
1027 1.155 christos syscallarg(struct timespec *) timeout;
1028 1.155 christos } */
1029 1.155 christos struct mmsghdr mmsg;
1030 1.155 christos struct socket *so;
1031 1.155 christos struct msghdr *msg = &mmsg.msg_hdr;
1032 1.155 christos int error, s;
1033 1.155 christos struct mbuf *from, *control;
1034 1.155 christos struct timespec ts, now;
1035 1.155 christos unsigned int vlen, flags, dg;
1036 1.155 christos
1037 1.155 christos if (SCARG(uap, timeout)) {
1038 1.155 christos if ((error = copyin(SCARG(uap, timeout), &ts, sizeof(ts))) != 0)
1039 1.155 christos return error;
1040 1.155 christos getnanotime(&now);
1041 1.155 christos timespecadd(&now, &ts, &ts);
1042 1.155 christos }
1043 1.155 christos
1044 1.155 christos s = SCARG(uap, s);
1045 1.155 christos if ((error = fd_getsock(s, &so)) != 0)
1046 1.155 christos return error;
1047 1.155 christos
1048 1.155 christos vlen = SCARG(uap, vlen);
1049 1.155 christos if (vlen > 1024)
1050 1.155 christos vlen = 1024;
1051 1.155 christos
1052 1.155 christos from = NULL;
1053 1.155 christos flags = (SCARG(uap, flags) & MSG_USERFLAGS) | MSG_IOVUSRSPACE;
1054 1.155 christos
1055 1.155 christos for (dg = 0; dg < vlen;) {
1056 1.155 christos error = copyin(SCARG(uap, mmsg) + dg, &mmsg, sizeof(mmsg));
1057 1.155 christos if (error)
1058 1.155 christos break;
1059 1.155 christos
1060 1.155 christos msg->msg_flags = flags & ~MSG_WAITFORONE;
1061 1.155 christos
1062 1.155 christos if (from != NULL) {
1063 1.155 christos m_free(from);
1064 1.155 christos from = NULL;
1065 1.155 christos }
1066 1.155 christos
1067 1.193 christos error = do_sys_recvmsg_so(l, s, so, msg, &from,
1068 1.155 christos msg->msg_control != NULL ? &control : NULL, retval);
1069 1.166 seanb if (error) {
1070 1.166 seanb if (error == EAGAIN && dg > 0)
1071 1.166 seanb error = 0;
1072 1.155 christos break;
1073 1.166 seanb }
1074 1.155 christos
1075 1.155 christos if (msg->msg_control != NULL)
1076 1.155 christos error = copyout_msg_control(l, msg, control);
1077 1.155 christos if (error)
1078 1.155 christos break;
1079 1.155 christos
1080 1.155 christos error = copyout_sockname(msg->msg_name, &msg->msg_namelen, 0,
1081 1.155 christos from);
1082 1.155 christos if (error)
1083 1.155 christos break;
1084 1.155 christos
1085 1.155 christos ktrkuser("msghdr", msg, sizeof *msg);
1086 1.155 christos mmsg.msg_len = *retval;
1087 1.155 christos
1088 1.155 christos error = copyout(&mmsg, SCARG(uap, mmsg) + dg, sizeof(mmsg));
1089 1.155 christos if (error)
1090 1.155 christos break;
1091 1.155 christos
1092 1.155 christos dg++;
1093 1.155 christos if (msg->msg_flags & MSG_OOB)
1094 1.155 christos break;
1095 1.155 christos
1096 1.155 christos if (SCARG(uap, timeout)) {
1097 1.155 christos getnanotime(&now);
1098 1.155 christos timespecsub(&now, &ts, &now);
1099 1.155 christos if (now.tv_sec > 0)
1100 1.155 christos break;
1101 1.155 christos }
1102 1.155 christos
1103 1.155 christos if (flags & MSG_WAITFORONE)
1104 1.155 christos flags |= MSG_DONTWAIT;
1105 1.155 christos
1106 1.155 christos }
1107 1.155 christos
1108 1.155 christos if (from != NULL)
1109 1.155 christos m_free(from);
1110 1.155 christos
1111 1.155 christos *retval = dg;
1112 1.155 christos if (error)
1113 1.155 christos so->so_error = error;
1114 1.155 christos
1115 1.155 christos fd_putfile(s);
1116 1.155 christos
1117 1.155 christos /*
1118 1.155 christos * If we succeeded at least once, return 0, hopefully so->so_error
1119 1.155 christos * will catch it next time.
1120 1.155 christos */
1121 1.155 christos if (dg)
1122 1.155 christos return 0;
1123 1.155 christos
1124 1.155 christos return error;
1125 1.155 christos }
1126 1.113 dsl
1127 1.7 mycroft int
1128 1.167 rmind sys_shutdown(struct lwp *l, const struct sys_shutdown_args *uap,
1129 1.167 rmind register_t *retval)
1130 1.15 thorpej {
1131 1.125 dsl /* {
1132 1.57 lukem syscallarg(int) s;
1133 1.57 lukem syscallarg(int) how;
1134 1.125 dsl } */
1135 1.128 ad struct socket *so;
1136 1.57 lukem int error;
1137 1.1 cgd
1138 1.128 ad if ((error = fd_getsock(SCARG(uap, s), &so)) != 0)
1139 1.167 rmind return error;
1140 1.129 ad solock(so);
1141 1.128 ad error = soshutdown(so, SCARG(uap, how));
1142 1.129 ad sounlock(so);
1143 1.128 ad fd_putfile(SCARG(uap, s));
1144 1.167 rmind return error;
1145 1.1 cgd }
1146 1.1 cgd
1147 1.7 mycroft int
1148 1.167 rmind sys_setsockopt(struct lwp *l, const struct sys_setsockopt_args *uap,
1149 1.167 rmind register_t *retval)
1150 1.15 thorpej {
1151 1.125 dsl /* {
1152 1.57 lukem syscallarg(int) s;
1153 1.57 lukem syscallarg(int) level;
1154 1.57 lukem syscallarg(int) name;
1155 1.57 lukem syscallarg(const void *) val;
1156 1.57 lukem syscallarg(unsigned int) valsize;
1157 1.125 dsl } */
1158 1.134 plunky struct sockopt sopt;
1159 1.76 matt struct socket *so;
1160 1.151 christos file_t *fp;
1161 1.57 lukem int error;
1162 1.75 thorpej unsigned int len;
1163 1.1 cgd
1164 1.134 plunky len = SCARG(uap, valsize);
1165 1.134 plunky if (len > 0 && SCARG(uap, val) == NULL)
1166 1.167 rmind return EINVAL;
1167 1.134 plunky
1168 1.134 plunky if (len > MCLBYTES)
1169 1.167 rmind return EINVAL;
1170 1.134 plunky
1171 1.151 christos if ((error = fd_getsock1(SCARG(uap, s), &so, &fp)) != 0)
1172 1.1 cgd return (error);
1173 1.134 plunky
1174 1.134 plunky sockopt_init(&sopt, SCARG(uap, level), SCARG(uap, name), len);
1175 1.134 plunky
1176 1.134 plunky if (len > 0) {
1177 1.134 plunky error = copyin(SCARG(uap, val), sopt.sopt_data, len);
1178 1.134 plunky if (error)
1179 1.43 thorpej goto out;
1180 1.1 cgd }
1181 1.134 plunky
1182 1.134 plunky error = sosetopt(so, &sopt);
1183 1.151 christos if (so->so_options & SO_NOSIGPIPE)
1184 1.152 christos atomic_or_uint(&fp->f_flag, FNOSIGPIPE);
1185 1.151 christos else
1186 1.152 christos atomic_and_uint(&fp->f_flag, ~FNOSIGPIPE);
1187 1.134 plunky
1188 1.43 thorpej out:
1189 1.134 plunky sockopt_destroy(&sopt);
1190 1.167 rmind fd_putfile(SCARG(uap, s));
1191 1.167 rmind return error;
1192 1.1 cgd }
1193 1.1 cgd
1194 1.7 mycroft int
1195 1.167 rmind sys_getsockopt(struct lwp *l, const struct sys_getsockopt_args *uap,
1196 1.167 rmind register_t *retval)
1197 1.15 thorpej {
1198 1.125 dsl /* {
1199 1.57 lukem syscallarg(int) s;
1200 1.57 lukem syscallarg(int) level;
1201 1.57 lukem syscallarg(int) name;
1202 1.57 lukem syscallarg(void *) val;
1203 1.57 lukem syscallarg(unsigned int *) avalsize;
1204 1.125 dsl } */
1205 1.134 plunky struct sockopt sopt;
1206 1.128 ad struct socket *so;
1207 1.151 christos file_t *fp;
1208 1.134 plunky unsigned int valsize, len;
1209 1.57 lukem int error;
1210 1.1 cgd
1211 1.134 plunky if (SCARG(uap, val) != NULL) {
1212 1.134 plunky error = copyin(SCARG(uap, avalsize), &valsize, sizeof(valsize));
1213 1.134 plunky if (error)
1214 1.167 rmind return error;
1215 1.134 plunky } else
1216 1.134 plunky valsize = 0;
1217 1.134 plunky
1218 1.151 christos if ((error = fd_getsock1(SCARG(uap, s), &so, &fp)) != 0)
1219 1.1 cgd return (error);
1220 1.134 plunky
1221 1.189 christos if (valsize > MCLBYTES)
1222 1.189 christos return EINVAL;
1223 1.189 christos
1224 1.189 christos sockopt_init(&sopt, SCARG(uap, level), SCARG(uap, name), valsize);
1225 1.134 plunky
1226 1.151 christos if (fp->f_flag & FNOSIGPIPE)
1227 1.154 christos so->so_options |= SO_NOSIGPIPE;
1228 1.151 christos else
1229 1.154 christos so->so_options &= ~SO_NOSIGPIPE;
1230 1.134 plunky error = sogetopt(so, &sopt);
1231 1.134 plunky if (error)
1232 1.134 plunky goto out;
1233 1.134 plunky
1234 1.134 plunky if (valsize > 0) {
1235 1.190 christos len = min(valsize, sopt.sopt_retsize);
1236 1.134 plunky error = copyout(sopt.sopt_data, SCARG(uap, val), len);
1237 1.134 plunky if (error)
1238 1.134 plunky goto out;
1239 1.134 plunky
1240 1.134 plunky error = copyout(&len, SCARG(uap, avalsize), sizeof(len));
1241 1.18 christos if (error)
1242 1.43 thorpej goto out;
1243 1.1 cgd }
1244 1.134 plunky
1245 1.43 thorpej out:
1246 1.134 plunky sockopt_destroy(&sopt);
1247 1.167 rmind fd_putfile(SCARG(uap, s));
1248 1.167 rmind return error;
1249 1.1 cgd }
1250 1.1 cgd
1251 1.68 jdolecek #ifdef PIPE_SOCKETPAIR
1252 1.167 rmind
1253 1.7 mycroft int
1254 1.188 kamil pipe1(struct lwp *l, int *fildes, int flags)
1255 1.1 cgd {
1256 1.128 ad file_t *rf, *wf;
1257 1.57 lukem struct socket *rso, *wso;
1258 1.57 lukem int fd, error;
1259 1.128 ad proc_t *p;
1260 1.1 cgd
1261 1.151 christos if (flags & ~(O_CLOEXEC|O_NONBLOCK|O_NOSIGPIPE))
1262 1.145 christos return EINVAL;
1263 1.128 ad p = curproc;
1264 1.129 ad if ((error = socreate(AF_LOCAL, &rso, SOCK_STREAM, 0, l, NULL)) != 0)
1265 1.167 rmind return error;
1266 1.129 ad if ((error = socreate(AF_LOCAL, &wso, SOCK_STREAM, 0, l, rso)) != 0)
1267 1.1 cgd goto free1;
1268 1.58 manu /* remember this socket pair implements a pipe */
1269 1.58 manu wso->so_state |= SS_ISAPIPE;
1270 1.58 manu rso->so_state |= SS_ISAPIPE;
1271 1.128 ad if ((error = fd_allocfile(&rf, &fd)) != 0)
1272 1.1 cgd goto free2;
1273 1.188 kamil fildes[0] = fd;
1274 1.142 christos rf->f_flag = FREAD | flags;
1275 1.1 cgd rf->f_type = DTYPE_SOCKET;
1276 1.1 cgd rf->f_ops = &socketops;
1277 1.173 matt rf->f_socket = rso;
1278 1.128 ad if ((error = fd_allocfile(&wf, &fd)) != 0)
1279 1.1 cgd goto free3;
1280 1.142 christos wf->f_flag = FWRITE | flags;
1281 1.1 cgd wf->f_type = DTYPE_SOCKET;
1282 1.1 cgd wf->f_ops = &socketops;
1283 1.173 matt wf->f_socket = wso;
1284 1.188 kamil fildes[1] = fd;
1285 1.129 ad solock(wso);
1286 1.172 rtr error = unp_connect2(wso, rso);
1287 1.129 ad sounlock(wso);
1288 1.129 ad if (error != 0)
1289 1.1 cgd goto free4;
1290 1.188 kamil fd_affix(p, wf, fildes[1]);
1291 1.188 kamil fd_affix(p, rf, fildes[0]);
1292 1.1 cgd return (0);
1293 1.57 lukem free4:
1294 1.188 kamil fd_abort(p, wf, fildes[1]);
1295 1.57 lukem free3:
1296 1.188 kamil fd_abort(p, rf, fildes[0]);
1297 1.57 lukem free2:
1298 1.1 cgd (void)soclose(wso);
1299 1.57 lukem free1:
1300 1.1 cgd (void)soclose(rso);
1301 1.167 rmind return error;
1302 1.1 cgd }
1303 1.68 jdolecek #endif /* PIPE_SOCKETPAIR */
1304 1.1 cgd
1305 1.1 cgd /*
1306 1.171 rtr * Get peer socket name.
1307 1.1 cgd */
1308 1.7 mycroft int
1309 1.176 rtr do_sys_getpeername(int fd, struct sockaddr *nam)
1310 1.15 thorpej {
1311 1.57 lukem struct socket *so;
1312 1.57 lukem int error;
1313 1.1 cgd
1314 1.128 ad if ((error = fd_getsock(fd, &so)) != 0)
1315 1.113 dsl return error;
1316 1.113 dsl
1317 1.129 ad solock(so);
1318 1.171 rtr if ((so->so_state & SS_ISCONNECTED) == 0)
1319 1.113 dsl error = ENOTCONN;
1320 1.171 rtr else {
1321 1.176 rtr error = (*so->so_proto->pr_usrreqs->pr_peeraddr)(so, nam);
1322 1.113 dsl }
1323 1.167 rmind sounlock(so);
1324 1.167 rmind fd_putfile(fd);
1325 1.113 dsl return error;
1326 1.113 dsl }
1327 1.113 dsl
1328 1.171 rtr /*
1329 1.171 rtr * Get local socket name.
1330 1.171 rtr */
1331 1.171 rtr int
1332 1.176 rtr do_sys_getsockname(int fd, struct sockaddr *nam)
1333 1.171 rtr {
1334 1.171 rtr struct socket *so;
1335 1.171 rtr int error;
1336 1.171 rtr
1337 1.171 rtr if ((error = fd_getsock(fd, &so)) != 0)
1338 1.171 rtr return error;
1339 1.171 rtr
1340 1.171 rtr solock(so);
1341 1.176 rtr error = (*so->so_proto->pr_usrreqs->pr_sockaddr)(so, nam);
1342 1.171 rtr sounlock(so);
1343 1.171 rtr fd_putfile(fd);
1344 1.171 rtr return error;
1345 1.171 rtr }
1346 1.171 rtr
1347 1.113 dsl int
1348 1.176 rtr copyout_sockname_sb(struct sockaddr *asa, unsigned int *alen, int flags,
1349 1.176 rtr struct sockaddr_big *addr)
1350 1.176 rtr {
1351 1.187 christos unsigned int len;
1352 1.176 rtr int error;
1353 1.176 rtr
1354 1.176 rtr if (asa == NULL)
1355 1.176 rtr /* Assume application not interested */
1356 1.176 rtr return 0;
1357 1.176 rtr
1358 1.176 rtr if (flags & MSG_LENUSRSPACE) {
1359 1.176 rtr error = copyin(alen, &len, sizeof(len));
1360 1.176 rtr if (error)
1361 1.176 rtr return error;
1362 1.176 rtr } else
1363 1.176 rtr len = *alen;
1364 1.176 rtr
1365 1.176 rtr if (addr == NULL) {
1366 1.176 rtr len = 0;
1367 1.176 rtr error = 0;
1368 1.176 rtr } else {
1369 1.176 rtr if (len > addr->sb_len)
1370 1.176 rtr len = addr->sb_len;
1371 1.176 rtr /* XXX addr isn't an mbuf... */
1372 1.176 rtr ktrkuser(mbuftypes[MT_SONAME], addr, len);
1373 1.176 rtr error = copyout(addr, asa, len);
1374 1.176 rtr }
1375 1.176 rtr
1376 1.176 rtr if (error == 0) {
1377 1.176 rtr if (flags & MSG_LENUSRSPACE)
1378 1.176 rtr error = copyout(&len, alen, sizeof(len));
1379 1.176 rtr else
1380 1.176 rtr *alen = len;
1381 1.176 rtr }
1382 1.176 rtr
1383 1.176 rtr return error;
1384 1.176 rtr }
1385 1.176 rtr
1386 1.176 rtr int
1387 1.113 dsl copyout_sockname(struct sockaddr *asa, unsigned int *alen, int flags,
1388 1.113 dsl struct mbuf *addr)
1389 1.113 dsl {
1390 1.113 dsl int len;
1391 1.113 dsl int error;
1392 1.113 dsl
1393 1.113 dsl if (asa == NULL)
1394 1.113 dsl /* Assume application not interested */
1395 1.113 dsl return 0;
1396 1.113 dsl
1397 1.113 dsl if (flags & MSG_LENUSRSPACE) {
1398 1.113 dsl error = copyin(alen, &len, sizeof(len));
1399 1.113 dsl if (error)
1400 1.113 dsl return error;
1401 1.113 dsl } else
1402 1.113 dsl len = *alen;
1403 1.118 dsl if (len < 0)
1404 1.113 dsl return EINVAL;
1405 1.113 dsl
1406 1.113 dsl if (addr == NULL) {
1407 1.113 dsl len = 0;
1408 1.113 dsl error = 0;
1409 1.113 dsl } else {
1410 1.113 dsl if (len > addr->m_len)
1411 1.113 dsl len = addr->m_len;
1412 1.113 dsl /* Maybe this ought to copy a chain ? */
1413 1.161 christos ktrkuser(mbuftypes[MT_SONAME], mtod(addr, void *), len);
1414 1.113 dsl error = copyout(mtod(addr, void *), asa, len);
1415 1.113 dsl }
1416 1.113 dsl
1417 1.113 dsl if (error == 0) {
1418 1.113 dsl if (flags & MSG_LENUSRSPACE)
1419 1.113 dsl error = copyout(&len, alen, sizeof(len));
1420 1.113 dsl else
1421 1.113 dsl *alen = len;
1422 1.113 dsl }
1423 1.113 dsl
1424 1.113 dsl return error;
1425 1.113 dsl }
1426 1.113 dsl
1427 1.113 dsl /*
1428 1.113 dsl * Get socket name.
1429 1.113 dsl */
1430 1.113 dsl int
1431 1.167 rmind sys_getsockname(struct lwp *l, const struct sys_getsockname_args *uap,
1432 1.167 rmind register_t *retval)
1433 1.113 dsl {
1434 1.125 dsl /* {
1435 1.113 dsl syscallarg(int) fdes;
1436 1.113 dsl syscallarg(struct sockaddr *) asa;
1437 1.113 dsl syscallarg(unsigned int *) alen;
1438 1.125 dsl } */
1439 1.176 rtr struct sockaddr_big sbig;
1440 1.176 rtr int error;
1441 1.113 dsl
1442 1.176 rtr sbig.sb_len = UCHAR_MAX;
1443 1.176 rtr error = do_sys_getsockname(SCARG(uap, fdes), (struct sockaddr *)&sbig);
1444 1.113 dsl if (error != 0)
1445 1.113 dsl return error;
1446 1.113 dsl
1447 1.176 rtr error = copyout_sockname_sb(SCARG(uap, asa), SCARG(uap, alen),
1448 1.176 rtr MSG_LENUSRSPACE, &sbig);
1449 1.113 dsl return error;
1450 1.1 cgd }
1451 1.1 cgd
1452 1.1 cgd /*
1453 1.1 cgd * Get name of peer for connected socket.
1454 1.1 cgd */
1455 1.7 mycroft int
1456 1.167 rmind sys_getpeername(struct lwp *l, const struct sys_getpeername_args *uap,
1457 1.167 rmind register_t *retval)
1458 1.15 thorpej {
1459 1.125 dsl /* {
1460 1.57 lukem syscallarg(int) fdes;
1461 1.57 lukem syscallarg(struct sockaddr *) asa;
1462 1.57 lukem syscallarg(unsigned int *) alen;
1463 1.125 dsl } */
1464 1.176 rtr struct sockaddr_big sbig;
1465 1.176 rtr int error;
1466 1.1 cgd
1467 1.176 rtr sbig.sb_len = UCHAR_MAX;
1468 1.176 rtr error = do_sys_getpeername(SCARG(uap, fdes), (struct sockaddr *)&sbig);
1469 1.113 dsl if (error != 0)
1470 1.113 dsl return error;
1471 1.113 dsl
1472 1.176 rtr error = copyout_sockname_sb(SCARG(uap, asa), SCARG(uap, alen),
1473 1.176 rtr MSG_LENUSRSPACE, &sbig);
1474 1.113 dsl return error;
1475 1.1 cgd }
1476 1.1 cgd
1477 1.175 rtr static int
1478 1.175 rtr sockargs_sb(struct sockaddr_big *sb, const void *name, socklen_t buflen)
1479 1.175 rtr {
1480 1.175 rtr int error;
1481 1.175 rtr
1482 1.175 rtr /*
1483 1.175 rtr * We can't allow socket names > UCHAR_MAX in length, since that
1484 1.175 rtr * will overflow sb_len. Further no reasonable buflen is <=
1485 1.175 rtr * offsetof(sockaddr_big, sb_data) since it shall be at least
1486 1.175 rtr * the size of the preamble sb_len and sb_family members.
1487 1.175 rtr */
1488 1.175 rtr if (buflen > UCHAR_MAX ||
1489 1.175 rtr buflen <= offsetof(struct sockaddr_big, sb_data))
1490 1.175 rtr return EINVAL;
1491 1.175 rtr
1492 1.175 rtr error = copyin(name, (void *)sb, buflen);
1493 1.175 rtr if (error)
1494 1.175 rtr return error;
1495 1.175 rtr
1496 1.184 christos ktrkuser(mbuftypes[MT_SONAME], sb, buflen);
1497 1.175 rtr #if BYTE_ORDER != BIG_ENDIAN
1498 1.175 rtr /*
1499 1.175 rtr * 4.3BSD compat thing - need to stay, since bind(2),
1500 1.175 rtr * connect(2), sendto(2) were not versioned for COMPAT_43.
1501 1.175 rtr */
1502 1.175 rtr if (sb->sb_family == 0 && sb->sb_len < AF_MAX)
1503 1.175 rtr sb->sb_family = sb->sb_len;
1504 1.175 rtr #endif
1505 1.175 rtr sb->sb_len = buflen;
1506 1.175 rtr return 0;
1507 1.175 rtr }
1508 1.175 rtr
1509 1.24 thorpej /*
1510 1.24 thorpej * XXX In a perfect world, we wouldn't pass around socket control
1511 1.24 thorpej * XXX arguments in mbufs, and this could go away.
1512 1.24 thorpej */
1513 1.7 mycroft int
1514 1.192 christos sockargs(struct mbuf **mp, const void *bf, size_t buflen, enum uio_seg seg,
1515 1.192 christos int type)
1516 1.1 cgd {
1517 1.57 lukem struct mbuf *m;
1518 1.57 lukem int error;
1519 1.1 cgd
1520 1.24 thorpej /*
1521 1.25 thorpej * We can't allow socket names > UCHAR_MAX in length, since that
1522 1.64 matt * will overflow sa_len. Control data more than a page size in
1523 1.64 matt * length is just too much.
1524 1.24 thorpej */
1525 1.64 matt if (buflen > (type == MT_SONAME ? UCHAR_MAX : PAGE_SIZE))
1526 1.167 rmind return EINVAL;
1527 1.24 thorpej
1528 1.174 rtr /*
1529 1.174 rtr * length must greater than sizeof(sa_family) + sizeof(sa_len)
1530 1.174 rtr */
1531 1.174 rtr if (type == MT_SONAME && buflen <= 2)
1532 1.174 rtr return EINVAL;
1533 1.174 rtr
1534 1.24 thorpej /* Allocate an mbuf to hold the arguments. */
1535 1.24 thorpej m = m_get(M_WAIT, type);
1536 1.76 matt /* can't claim. don't who to assign it to. */
1537 1.64 matt if (buflen > MLEN) {
1538 1.24 thorpej /*
1539 1.24 thorpej * Won't fit into a regular mbuf, so we allocate just
1540 1.24 thorpej * enough external storage to hold the argument.
1541 1.24 thorpej */
1542 1.24 thorpej MEXTMALLOC(m, buflen, M_WAITOK);
1543 1.1 cgd }
1544 1.1 cgd m->m_len = buflen;
1545 1.192 christos if (seg == UIO_USERSPACE) {
1546 1.192 christos error = copyin(bf, mtod(m, void *), buflen);
1547 1.192 christos if (error) {
1548 1.192 christos (void)m_free(m);
1549 1.192 christos return error;
1550 1.192 christos }
1551 1.192 christos } else {
1552 1.192 christos memcpy(mtod(m, void *), bf, buflen);
1553 1.1 cgd }
1554 1.1 cgd *mp = m;
1555 1.193 christos switch (type) {
1556 1.193 christos case MT_SONAME:
1557 1.193 christos ktrkuser(mbuftypes[type], mtod(m, void *), buflen);
1558 1.193 christos
1559 1.193 christos struct sockaddr *sa = mtod(m, struct sockaddr *);
1560 1.65 jdolecek #if BYTE_ORDER != BIG_ENDIAN
1561 1.65 jdolecek /*
1562 1.65 jdolecek * 4.3BSD compat thing - need to stay, since bind(2),
1563 1.65 jdolecek * connect(2), sendto(2) were not versioned for COMPAT_43.
1564 1.65 jdolecek */
1565 1.1 cgd if (sa->sa_family == 0 && sa->sa_len < AF_MAX)
1566 1.1 cgd sa->sa_family = sa->sa_len;
1567 1.1 cgd #endif
1568 1.1 cgd sa->sa_len = buflen;
1569 1.193 christos return 0;
1570 1.193 christos case MT_CONTROL:
1571 1.193 christos if (!KTRPOINT(curproc, KTR_USER))
1572 1.193 christos return 0;
1573 1.193 christos
1574 1.193 christos struct msghdr mhdr;
1575 1.193 christos mhdr.msg_control = mtod(m, void *);
1576 1.193 christos mhdr.msg_controllen = buflen;
1577 1.193 christos for (struct cmsghdr *cmsg = CMSG_FIRSTHDR(&mhdr); cmsg;
1578 1.193 christos cmsg = CMSG_NXTHDR(&mhdr, cmsg)) {
1579 1.193 christos ktrkuser(mbuftypes[type], cmsg, cmsg->cmsg_len);
1580 1.193 christos }
1581 1.193 christos return 0;
1582 1.193 christos default:
1583 1.193 christos return EINVAL;
1584 1.1 cgd }
1585 1.1 cgd }
1586