sys_generic.c revision 1.34 1 1.34 mycroft /* $NetBSD: sys_generic.c,v 1.34 1997/10/15 17:04:14 mycroft Exp $ */
2 1.15 cgd
3 1.15 cgd /*
4 1.15 cgd * Copyright (c) 1982, 1986, 1989, 1993
5 1.15 cgd * The Regents of the University of California. All rights reserved.
6 1.15 cgd * (c) UNIX System Laboratories, Inc.
7 1.15 cgd * All or some portions of this file are derived from material licensed
8 1.15 cgd * to the University of California by American Telephone and Telegraph
9 1.15 cgd * Co. or Unix System Laboratories, Inc. and are reproduced herein with
10 1.15 cgd * the permission of UNIX System Laboratories, Inc.
11 1.15 cgd *
12 1.15 cgd * Redistribution and use in source and binary forms, with or without
13 1.15 cgd * modification, are permitted provided that the following conditions
14 1.15 cgd * are met:
15 1.15 cgd * 1. Redistributions of source code must retain the above copyright
16 1.15 cgd * notice, this list of conditions and the following disclaimer.
17 1.15 cgd * 2. Redistributions in binary form must reproduce the above copyright
18 1.15 cgd * notice, this list of conditions and the following disclaimer in the
19 1.15 cgd * documentation and/or other materials provided with the distribution.
20 1.15 cgd * 3. All advertising materials mentioning features or use of this software
21 1.15 cgd * must display the following acknowledgement:
22 1.15 cgd * This product includes software developed by the University of
23 1.15 cgd * California, Berkeley and its contributors.
24 1.15 cgd * 4. Neither the name of the University nor the names of its contributors
25 1.15 cgd * may be used to endorse or promote products derived from this software
26 1.15 cgd * without specific prior written permission.
27 1.15 cgd *
28 1.15 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 1.15 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 1.15 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 1.15 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 1.15 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 1.15 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 1.15 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 1.15 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 1.15 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 1.15 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 1.15 cgd * SUCH DAMAGE.
39 1.15 cgd *
40 1.15 cgd * @(#)sys_generic.c 8.5 (Berkeley) 1/21/94
41 1.15 cgd */
42 1.15 cgd
43 1.15 cgd #include <sys/param.h>
44 1.15 cgd #include <sys/systm.h>
45 1.15 cgd #include <sys/filedesc.h>
46 1.15 cgd #include <sys/ioctl.h>
47 1.15 cgd #include <sys/file.h>
48 1.15 cgd #include <sys/proc.h>
49 1.15 cgd #include <sys/socketvar.h>
50 1.22 christos #include <sys/signalvar.h>
51 1.15 cgd #include <sys/uio.h>
52 1.15 cgd #include <sys/kernel.h>
53 1.15 cgd #include <sys/stat.h>
54 1.15 cgd #include <sys/malloc.h>
55 1.28 mycroft #include <sys/poll.h>
56 1.15 cgd #ifdef KTRACE
57 1.15 cgd #include <sys/ktrace.h>
58 1.15 cgd #endif
59 1.15 cgd
60 1.16 cgd #include <sys/mount.h>
61 1.16 cgd #include <sys/syscallargs.h>
62 1.22 christos
63 1.25 mycroft int selscan __P((struct proc *, fd_mask *, fd_mask *, int, register_t *));
64 1.28 mycroft int pollscan __P((struct proc *, struct pollfd *, int, register_t *));
65 1.22 christos
66 1.15 cgd /*
67 1.15 cgd * Read system call.
68 1.15 cgd */
69 1.15 cgd /* ARGSUSED */
70 1.22 christos int
71 1.21 mycroft sys_read(p, v, retval)
72 1.15 cgd struct proc *p;
73 1.20 thorpej void *v;
74 1.20 thorpej register_t *retval;
75 1.20 thorpej {
76 1.21 mycroft register struct sys_read_args /* {
77 1.16 cgd syscallarg(int) fd;
78 1.31 cgd syscallarg(void *) buf;
79 1.31 cgd syscallarg(size_t) nbyte;
80 1.20 thorpej } */ *uap = v;
81 1.34 mycroft int fd = SCARG(uap, fd);
82 1.15 cgd register struct file *fp;
83 1.15 cgd register struct filedesc *fdp = p->p_fd;
84 1.15 cgd struct uio auio;
85 1.15 cgd struct iovec aiov;
86 1.15 cgd long cnt, error = 0;
87 1.15 cgd #ifdef KTRACE
88 1.15 cgd struct iovec ktriov;
89 1.15 cgd #endif
90 1.15 cgd
91 1.34 mycroft if ((u_int)fd >= fdp->fd_nfiles ||
92 1.34 mycroft (fp = fdp->fd_ofiles[fd]) == NULL ||
93 1.15 cgd (fp->f_flag & FREAD) == 0)
94 1.15 cgd return (EBADF);
95 1.16 cgd aiov.iov_base = (caddr_t)SCARG(uap, buf);
96 1.16 cgd aiov.iov_len = SCARG(uap, nbyte);
97 1.15 cgd auio.uio_iov = &aiov;
98 1.15 cgd auio.uio_iovcnt = 1;
99 1.16 cgd auio.uio_resid = SCARG(uap, nbyte);
100 1.15 cgd auio.uio_rw = UIO_READ;
101 1.15 cgd auio.uio_segflg = UIO_USERSPACE;
102 1.15 cgd auio.uio_procp = p;
103 1.15 cgd if (auio.uio_resid < 0)
104 1.15 cgd return EINVAL;
105 1.15 cgd #ifdef KTRACE
106 1.15 cgd /*
107 1.15 cgd * if tracing, save a copy of iovec
108 1.15 cgd */
109 1.15 cgd if (KTRPOINT(p, KTR_GENIO))
110 1.15 cgd ktriov = aiov;
111 1.15 cgd #endif
112 1.16 cgd cnt = SCARG(uap, nbyte);
113 1.22 christos error = (*fp->f_ops->fo_read)(fp, &auio, fp->f_cred);
114 1.22 christos if (error)
115 1.15 cgd if (auio.uio_resid != cnt && (error == ERESTART ||
116 1.15 cgd error == EINTR || error == EWOULDBLOCK))
117 1.15 cgd error = 0;
118 1.15 cgd cnt -= auio.uio_resid;
119 1.15 cgd #ifdef KTRACE
120 1.15 cgd if (KTRPOINT(p, KTR_GENIO) && error == 0)
121 1.34 mycroft ktrgenio(p->p_tracep, fd, UIO_READ, &ktriov, cnt, error);
122 1.15 cgd #endif
123 1.15 cgd *retval = cnt;
124 1.15 cgd return (error);
125 1.15 cgd }
126 1.15 cgd
127 1.15 cgd /*
128 1.15 cgd * Scatter read system call.
129 1.15 cgd */
130 1.22 christos int
131 1.21 mycroft sys_readv(p, v, retval)
132 1.15 cgd struct proc *p;
133 1.20 thorpej void *v;
134 1.20 thorpej register_t *retval;
135 1.20 thorpej {
136 1.21 mycroft register struct sys_readv_args /* {
137 1.16 cgd syscallarg(int) fd;
138 1.31 cgd syscallarg(const struct iovec *) iovp;
139 1.34 mycroft syscallarg(int) iovcnt;
140 1.20 thorpej } */ *uap = v;
141 1.34 mycroft int fd = SCARG(uap, fd);
142 1.34 mycroft int iovcnt = SCARG(uap, iovcnt);
143 1.15 cgd register struct file *fp;
144 1.15 cgd register struct filedesc *fdp = p->p_fd;
145 1.15 cgd struct uio auio;
146 1.15 cgd register struct iovec *iov;
147 1.15 cgd struct iovec *needfree;
148 1.15 cgd struct iovec aiov[UIO_SMALLIOV];
149 1.15 cgd long i, cnt, error = 0;
150 1.15 cgd u_int iovlen;
151 1.15 cgd #ifdef KTRACE
152 1.15 cgd struct iovec *ktriov = NULL;
153 1.15 cgd #endif
154 1.15 cgd
155 1.34 mycroft if ((u_int)fd >= fdp->fd_nfiles ||
156 1.34 mycroft (fp = fdp->fd_ofiles[fd]) == NULL ||
157 1.15 cgd (fp->f_flag & FREAD) == 0)
158 1.15 cgd return (EBADF);
159 1.15 cgd /* note: can't use iovlen until iovcnt is validated */
160 1.34 mycroft iovlen = iovcnt * sizeof (struct iovec);
161 1.34 mycroft if ((u_int)iovcnt > UIO_SMALLIOV) {
162 1.34 mycroft if ((u_int)iovcnt > UIO_MAXIOV)
163 1.15 cgd return (EINVAL);
164 1.15 cgd MALLOC(iov, struct iovec *, iovlen, M_IOV, M_WAITOK);
165 1.15 cgd needfree = iov;
166 1.15 cgd } else {
167 1.15 cgd iov = aiov;
168 1.15 cgd needfree = NULL;
169 1.15 cgd }
170 1.15 cgd auio.uio_iov = iov;
171 1.34 mycroft auio.uio_iovcnt = iovcnt;
172 1.15 cgd auio.uio_rw = UIO_READ;
173 1.15 cgd auio.uio_segflg = UIO_USERSPACE;
174 1.15 cgd auio.uio_procp = p;
175 1.31 cgd error = copyin(SCARG(uap, iovp), iov, iovlen);
176 1.22 christos if (error)
177 1.15 cgd goto done;
178 1.15 cgd auio.uio_resid = 0;
179 1.34 mycroft for (i = 0; i < iovcnt; i++) {
180 1.22 christos #if 0
181 1.22 christos /* Cannot happen iov_len is unsigned */
182 1.15 cgd if (iov->iov_len < 0) {
183 1.15 cgd error = EINVAL;
184 1.15 cgd goto done;
185 1.15 cgd }
186 1.22 christos #endif
187 1.15 cgd auio.uio_resid += iov->iov_len;
188 1.15 cgd if (auio.uio_resid < 0) {
189 1.15 cgd error = EINVAL;
190 1.15 cgd goto done;
191 1.15 cgd }
192 1.15 cgd iov++;
193 1.15 cgd }
194 1.15 cgd #ifdef KTRACE
195 1.15 cgd /*
196 1.15 cgd * if tracing, save a copy of iovec
197 1.15 cgd */
198 1.15 cgd if (KTRPOINT(p, KTR_GENIO)) {
199 1.15 cgd MALLOC(ktriov, struct iovec *, iovlen, M_TEMP, M_WAITOK);
200 1.15 cgd bcopy((caddr_t)auio.uio_iov, (caddr_t)ktriov, iovlen);
201 1.15 cgd }
202 1.15 cgd #endif
203 1.15 cgd cnt = auio.uio_resid;
204 1.22 christos error = (*fp->f_ops->fo_read)(fp, &auio, fp->f_cred);
205 1.22 christos if (error)
206 1.15 cgd if (auio.uio_resid != cnt && (error == ERESTART ||
207 1.15 cgd error == EINTR || error == EWOULDBLOCK))
208 1.15 cgd error = 0;
209 1.15 cgd cnt -= auio.uio_resid;
210 1.15 cgd #ifdef KTRACE
211 1.34 mycroft if (KTRPOINT(p, KTR_GENIO))
212 1.34 mycroft if (error == 0) {
213 1.34 mycroft ktrgenio(p->p_tracep, fd, UIO_READ, ktriov, cnt,
214 1.34 mycroft error);
215 1.15 cgd FREE(ktriov, M_TEMP);
216 1.15 cgd }
217 1.15 cgd #endif
218 1.15 cgd *retval = cnt;
219 1.15 cgd done:
220 1.15 cgd if (needfree)
221 1.15 cgd FREE(needfree, M_IOV);
222 1.15 cgd return (error);
223 1.15 cgd }
224 1.15 cgd
225 1.15 cgd /*
226 1.15 cgd * Write system call
227 1.15 cgd */
228 1.22 christos int
229 1.21 mycroft sys_write(p, v, retval)
230 1.15 cgd struct proc *p;
231 1.20 thorpej void *v;
232 1.20 thorpej register_t *retval;
233 1.20 thorpej {
234 1.21 mycroft register struct sys_write_args /* {
235 1.16 cgd syscallarg(int) fd;
236 1.31 cgd syscallarg(const void *) buf;
237 1.31 cgd syscallarg(size_t) nbyte;
238 1.20 thorpej } */ *uap = v;
239 1.34 mycroft int fd = SCARG(uap, fd);
240 1.15 cgd register struct file *fp;
241 1.15 cgd register struct filedesc *fdp = p->p_fd;
242 1.15 cgd struct uio auio;
243 1.15 cgd struct iovec aiov;
244 1.15 cgd long cnt, error = 0;
245 1.15 cgd #ifdef KTRACE
246 1.15 cgd struct iovec ktriov;
247 1.15 cgd #endif
248 1.15 cgd
249 1.34 mycroft if ((u_int)fd >= fdp->fd_nfiles ||
250 1.34 mycroft (fp = fdp->fd_ofiles[fd]) == NULL ||
251 1.15 cgd (fp->f_flag & FWRITE) == 0)
252 1.15 cgd return (EBADF);
253 1.31 cgd aiov.iov_base = (char *)SCARG(uap, buf); /* XXX kills const */
254 1.16 cgd aiov.iov_len = SCARG(uap, nbyte);
255 1.15 cgd auio.uio_iov = &aiov;
256 1.15 cgd auio.uio_iovcnt = 1;
257 1.16 cgd auio.uio_resid = SCARG(uap, nbyte);
258 1.15 cgd auio.uio_rw = UIO_WRITE;
259 1.15 cgd auio.uio_segflg = UIO_USERSPACE;
260 1.15 cgd auio.uio_procp = p;
261 1.15 cgd if (auio.uio_resid < 0)
262 1.15 cgd return EINVAL;
263 1.15 cgd #ifdef KTRACE
264 1.15 cgd /*
265 1.15 cgd * if tracing, save a copy of iovec
266 1.15 cgd */
267 1.15 cgd if (KTRPOINT(p, KTR_GENIO))
268 1.15 cgd ktriov = aiov;
269 1.15 cgd #endif
270 1.16 cgd cnt = SCARG(uap, nbyte);
271 1.22 christos error = (*fp->f_ops->fo_write)(fp, &auio, fp->f_cred);
272 1.22 christos if (error) {
273 1.15 cgd if (auio.uio_resid != cnt && (error == ERESTART ||
274 1.15 cgd error == EINTR || error == EWOULDBLOCK))
275 1.15 cgd error = 0;
276 1.15 cgd if (error == EPIPE)
277 1.15 cgd psignal(p, SIGPIPE);
278 1.15 cgd }
279 1.15 cgd cnt -= auio.uio_resid;
280 1.15 cgd #ifdef KTRACE
281 1.15 cgd if (KTRPOINT(p, KTR_GENIO) && error == 0)
282 1.34 mycroft ktrgenio(p->p_tracep, fd, UIO_WRITE, &ktriov, cnt, error);
283 1.15 cgd #endif
284 1.15 cgd *retval = cnt;
285 1.15 cgd return (error);
286 1.15 cgd }
287 1.15 cgd
288 1.15 cgd /*
289 1.15 cgd * Gather write system call
290 1.15 cgd */
291 1.22 christos int
292 1.21 mycroft sys_writev(p, v, retval)
293 1.15 cgd struct proc *p;
294 1.20 thorpej void *v;
295 1.20 thorpej register_t *retval;
296 1.20 thorpej {
297 1.21 mycroft register struct sys_writev_args /* {
298 1.16 cgd syscallarg(int) fd;
299 1.31 cgd syscallarg(const struct iovec *) iovp;
300 1.16 cgd syscallarg(u_int) iovcnt;
301 1.20 thorpej } */ *uap = v;
302 1.34 mycroft int fd = SCARG(uap, fd);
303 1.34 mycroft int iovcnt = SCARG(uap, iovcnt);
304 1.15 cgd register struct file *fp;
305 1.15 cgd register struct filedesc *fdp = p->p_fd;
306 1.15 cgd struct uio auio;
307 1.15 cgd register struct iovec *iov;
308 1.15 cgd struct iovec *needfree;
309 1.15 cgd struct iovec aiov[UIO_SMALLIOV];
310 1.15 cgd long i, cnt, error = 0;
311 1.15 cgd u_int iovlen;
312 1.15 cgd #ifdef KTRACE
313 1.15 cgd struct iovec *ktriov = NULL;
314 1.15 cgd #endif
315 1.15 cgd
316 1.34 mycroft if ((u_int)fd >= fdp->fd_nfiles ||
317 1.34 mycroft (fp = fdp->fd_ofiles[fd]) == NULL ||
318 1.15 cgd (fp->f_flag & FWRITE) == 0)
319 1.15 cgd return (EBADF);
320 1.15 cgd /* note: can't use iovlen until iovcnt is validated */
321 1.34 mycroft iovlen = iovcnt * sizeof (struct iovec);
322 1.34 mycroft if ((u_int)iovcnt > UIO_SMALLIOV) {
323 1.34 mycroft if ((u_int)iovcnt > UIO_MAXIOV)
324 1.15 cgd return (EINVAL);
325 1.15 cgd MALLOC(iov, struct iovec *, iovlen, M_IOV, M_WAITOK);
326 1.15 cgd needfree = iov;
327 1.15 cgd } else {
328 1.15 cgd iov = aiov;
329 1.15 cgd needfree = NULL;
330 1.15 cgd }
331 1.15 cgd auio.uio_iov = iov;
332 1.34 mycroft auio.uio_iovcnt = iovcnt;
333 1.15 cgd auio.uio_rw = UIO_WRITE;
334 1.15 cgd auio.uio_segflg = UIO_USERSPACE;
335 1.15 cgd auio.uio_procp = p;
336 1.31 cgd error = copyin(SCARG(uap, iovp), iov, iovlen);
337 1.22 christos if (error)
338 1.15 cgd goto done;
339 1.15 cgd auio.uio_resid = 0;
340 1.34 mycroft for (i = 0; i < iovcnt; i++) {
341 1.22 christos #if 0
342 1.22 christos /* Cannot happen iov_len is unsigned */
343 1.15 cgd if (iov->iov_len < 0) {
344 1.15 cgd error = EINVAL;
345 1.15 cgd goto done;
346 1.15 cgd }
347 1.22 christos #endif
348 1.15 cgd auio.uio_resid += iov->iov_len;
349 1.15 cgd if (auio.uio_resid < 0) {
350 1.15 cgd error = EINVAL;
351 1.15 cgd goto done;
352 1.15 cgd }
353 1.15 cgd iov++;
354 1.15 cgd }
355 1.15 cgd #ifdef KTRACE
356 1.15 cgd /*
357 1.15 cgd * if tracing, save a copy of iovec
358 1.15 cgd */
359 1.15 cgd if (KTRPOINT(p, KTR_GENIO)) {
360 1.15 cgd MALLOC(ktriov, struct iovec *, iovlen, M_TEMP, M_WAITOK);
361 1.15 cgd bcopy((caddr_t)auio.uio_iov, (caddr_t)ktriov, iovlen);
362 1.15 cgd }
363 1.15 cgd #endif
364 1.15 cgd cnt = auio.uio_resid;
365 1.22 christos error = (*fp->f_ops->fo_write)(fp, &auio, fp->f_cred);
366 1.22 christos if (error) {
367 1.15 cgd if (auio.uio_resid != cnt && (error == ERESTART ||
368 1.15 cgd error == EINTR || error == EWOULDBLOCK))
369 1.15 cgd error = 0;
370 1.15 cgd if (error == EPIPE)
371 1.15 cgd psignal(p, SIGPIPE);
372 1.15 cgd }
373 1.15 cgd cnt -= auio.uio_resid;
374 1.15 cgd #ifdef KTRACE
375 1.34 mycroft if (KTRPOINT(p, KTR_GENIO))
376 1.34 mycroft if (error == 0) {
377 1.34 mycroft ktrgenio(p->p_tracep, fd, UIO_WRITE, ktriov, cnt,
378 1.34 mycroft error);
379 1.15 cgd FREE(ktriov, M_TEMP);
380 1.15 cgd }
381 1.15 cgd #endif
382 1.15 cgd *retval = cnt;
383 1.15 cgd done:
384 1.15 cgd if (needfree)
385 1.15 cgd FREE(needfree, M_IOV);
386 1.15 cgd return (error);
387 1.15 cgd }
388 1.15 cgd
389 1.15 cgd /*
390 1.15 cgd * Ioctl system call
391 1.15 cgd */
392 1.15 cgd /* ARGSUSED */
393 1.22 christos int
394 1.21 mycroft sys_ioctl(p, v, retval)
395 1.15 cgd struct proc *p;
396 1.20 thorpej void *v;
397 1.20 thorpej register_t *retval;
398 1.20 thorpej {
399 1.21 mycroft register struct sys_ioctl_args /* {
400 1.16 cgd syscallarg(int) fd;
401 1.17 cgd syscallarg(u_long) com;
402 1.16 cgd syscallarg(caddr_t) data;
403 1.20 thorpej } */ *uap = v;
404 1.15 cgd register struct file *fp;
405 1.15 cgd register struct filedesc *fdp;
406 1.17 cgd register u_long com;
407 1.17 cgd register int error;
408 1.15 cgd register u_int size;
409 1.15 cgd caddr_t data, memp;
410 1.15 cgd int tmp;
411 1.15 cgd #define STK_PARAMS 128
412 1.15 cgd char stkbuf[STK_PARAMS];
413 1.15 cgd
414 1.15 cgd fdp = p->p_fd;
415 1.16 cgd if ((u_int)SCARG(uap, fd) >= fdp->fd_nfiles ||
416 1.16 cgd (fp = fdp->fd_ofiles[SCARG(uap, fd)]) == NULL)
417 1.15 cgd return (EBADF);
418 1.15 cgd
419 1.15 cgd if ((fp->f_flag & (FREAD | FWRITE)) == 0)
420 1.15 cgd return (EBADF);
421 1.15 cgd
422 1.16 cgd switch (com = SCARG(uap, com)) {
423 1.15 cgd case FIONCLEX:
424 1.16 cgd fdp->fd_ofileflags[SCARG(uap, fd)] &= ~UF_EXCLOSE;
425 1.15 cgd return (0);
426 1.15 cgd case FIOCLEX:
427 1.16 cgd fdp->fd_ofileflags[SCARG(uap, fd)] |= UF_EXCLOSE;
428 1.15 cgd return (0);
429 1.15 cgd }
430 1.15 cgd
431 1.15 cgd /*
432 1.15 cgd * Interpret high order word to find amount of data to be
433 1.15 cgd * copied to/from the user's address space.
434 1.15 cgd */
435 1.15 cgd size = IOCPARM_LEN(com);
436 1.15 cgd if (size > IOCPARM_MAX)
437 1.15 cgd return (ENOTTY);
438 1.15 cgd memp = NULL;
439 1.15 cgd if (size > sizeof (stkbuf)) {
440 1.15 cgd memp = (caddr_t)malloc((u_long)size, M_IOCTLOPS, M_WAITOK);
441 1.15 cgd data = memp;
442 1.15 cgd } else
443 1.15 cgd data = stkbuf;
444 1.15 cgd if (com&IOC_IN) {
445 1.15 cgd if (size) {
446 1.31 cgd error = copyin(SCARG(uap, data), data, size);
447 1.15 cgd if (error) {
448 1.15 cgd if (memp)
449 1.15 cgd free(memp, M_IOCTLOPS);
450 1.15 cgd return (error);
451 1.15 cgd }
452 1.15 cgd } else
453 1.16 cgd *(caddr_t *)data = SCARG(uap, data);
454 1.15 cgd } else if ((com&IOC_OUT) && size)
455 1.15 cgd /*
456 1.15 cgd * Zero the buffer so the user always
457 1.15 cgd * gets back something deterministic.
458 1.15 cgd */
459 1.15 cgd bzero(data, size);
460 1.15 cgd else if (com&IOC_VOID)
461 1.16 cgd *(caddr_t *)data = SCARG(uap, data);
462 1.15 cgd
463 1.15 cgd switch (com) {
464 1.15 cgd
465 1.15 cgd case FIONBIO:
466 1.22 christos if ((tmp = *(int *)data) != 0)
467 1.15 cgd fp->f_flag |= FNONBLOCK;
468 1.15 cgd else
469 1.15 cgd fp->f_flag &= ~FNONBLOCK;
470 1.15 cgd error = (*fp->f_ops->fo_ioctl)(fp, FIONBIO, (caddr_t)&tmp, p);
471 1.15 cgd break;
472 1.15 cgd
473 1.15 cgd case FIOASYNC:
474 1.22 christos if ((tmp = *(int *)data) != 0)
475 1.15 cgd fp->f_flag |= FASYNC;
476 1.15 cgd else
477 1.15 cgd fp->f_flag &= ~FASYNC;
478 1.15 cgd error = (*fp->f_ops->fo_ioctl)(fp, FIOASYNC, (caddr_t)&tmp, p);
479 1.15 cgd break;
480 1.15 cgd
481 1.15 cgd case FIOSETOWN:
482 1.15 cgd tmp = *(int *)data;
483 1.15 cgd if (fp->f_type == DTYPE_SOCKET) {
484 1.15 cgd ((struct socket *)fp->f_data)->so_pgid = tmp;
485 1.15 cgd error = 0;
486 1.15 cgd break;
487 1.15 cgd }
488 1.15 cgd if (tmp <= 0) {
489 1.15 cgd tmp = -tmp;
490 1.15 cgd } else {
491 1.15 cgd struct proc *p1 = pfind(tmp);
492 1.15 cgd if (p1 == 0) {
493 1.15 cgd error = ESRCH;
494 1.15 cgd break;
495 1.15 cgd }
496 1.15 cgd tmp = p1->p_pgrp->pg_id;
497 1.15 cgd }
498 1.15 cgd error = (*fp->f_ops->fo_ioctl)
499 1.24 cgd (fp, TIOCSPGRP, (caddr_t)&tmp, p);
500 1.15 cgd break;
501 1.15 cgd
502 1.15 cgd case FIOGETOWN:
503 1.15 cgd if (fp->f_type == DTYPE_SOCKET) {
504 1.15 cgd error = 0;
505 1.15 cgd *(int *)data = ((struct socket *)fp->f_data)->so_pgid;
506 1.15 cgd break;
507 1.15 cgd }
508 1.17 cgd error = (*fp->f_ops->fo_ioctl)(fp, TIOCGPGRP, data, p);
509 1.15 cgd *(int *)data = -*(int *)data;
510 1.15 cgd break;
511 1.15 cgd
512 1.15 cgd default:
513 1.15 cgd error = (*fp->f_ops->fo_ioctl)(fp, com, data, p);
514 1.15 cgd /*
515 1.15 cgd * Copy any data to user, size was
516 1.15 cgd * already set and checked above.
517 1.15 cgd */
518 1.15 cgd if (error == 0 && (com&IOC_OUT) && size)
519 1.31 cgd error = copyout(data, SCARG(uap, data), size);
520 1.15 cgd break;
521 1.15 cgd }
522 1.15 cgd if (memp)
523 1.15 cgd free(memp, M_IOCTLOPS);
524 1.15 cgd return (error);
525 1.15 cgd }
526 1.15 cgd
527 1.15 cgd int selwait, nselcoll;
528 1.15 cgd
529 1.15 cgd /*
530 1.15 cgd * Select system call.
531 1.15 cgd */
532 1.22 christos int
533 1.21 mycroft sys_select(p, v, retval)
534 1.15 cgd register struct proc *p;
535 1.20 thorpej void *v;
536 1.20 thorpej register_t *retval;
537 1.20 thorpej {
538 1.21 mycroft register struct sys_select_args /* {
539 1.16 cgd syscallarg(u_int) nd;
540 1.16 cgd syscallarg(fd_set *) in;
541 1.16 cgd syscallarg(fd_set *) ou;
542 1.16 cgd syscallarg(fd_set *) ex;
543 1.16 cgd syscallarg(struct timeval *) tv;
544 1.20 thorpej } */ *uap = v;
545 1.25 mycroft caddr_t bits;
546 1.26 cgd char smallbits[howmany(FD_SETSIZE, NFDBITS) * sizeof(fd_mask) * 6];
547 1.15 cgd struct timeval atv;
548 1.15 cgd int s, ncoll, error = 0, timo;
549 1.27 mycroft size_t ni;
550 1.15 cgd
551 1.16 cgd if (SCARG(uap, nd) > p->p_fd->fd_nfiles) {
552 1.16 cgd /* forgiving; slightly wrong */
553 1.16 cgd SCARG(uap, nd) = p->p_fd->fd_nfiles;
554 1.16 cgd }
555 1.16 cgd ni = howmany(SCARG(uap, nd), NFDBITS) * sizeof(fd_mask);
556 1.27 mycroft if (ni * 6 > sizeof(smallbits))
557 1.25 mycroft bits = malloc(ni * 6, M_TEMP, M_WAITOK);
558 1.25 mycroft else
559 1.26 cgd bits = smallbits;
560 1.15 cgd
561 1.15 cgd #define getbits(name, x) \
562 1.25 mycroft if (SCARG(uap, name)) { \
563 1.31 cgd error = copyin(SCARG(uap, name), bits + ni * x, ni); \
564 1.25 mycroft if (error) \
565 1.25 mycroft goto done; \
566 1.25 mycroft } else \
567 1.25 mycroft bzero(bits + ni * x, ni);
568 1.15 cgd getbits(in, 0);
569 1.15 cgd getbits(ou, 1);
570 1.15 cgd getbits(ex, 2);
571 1.15 cgd #undef getbits
572 1.15 cgd
573 1.16 cgd if (SCARG(uap, tv)) {
574 1.31 cgd error = copyin(SCARG(uap, tv), (caddr_t)&atv,
575 1.15 cgd sizeof (atv));
576 1.15 cgd if (error)
577 1.15 cgd goto done;
578 1.15 cgd if (itimerfix(&atv)) {
579 1.15 cgd error = EINVAL;
580 1.15 cgd goto done;
581 1.15 cgd }
582 1.15 cgd s = splclock();
583 1.19 mycroft timeradd(&atv, &time, &atv);
584 1.15 cgd timo = hzto(&atv);
585 1.15 cgd /*
586 1.15 cgd * Avoid inadvertently sleeping forever.
587 1.15 cgd */
588 1.15 cgd if (timo == 0)
589 1.15 cgd timo = 1;
590 1.15 cgd splx(s);
591 1.15 cgd } else
592 1.15 cgd timo = 0;
593 1.15 cgd retry:
594 1.15 cgd ncoll = nselcoll;
595 1.15 cgd p->p_flag |= P_SELECT;
596 1.25 mycroft error = selscan(p, (fd_mask *)(bits + ni * 0),
597 1.25 mycroft (fd_mask *)(bits + ni * 3), SCARG(uap, nd), retval);
598 1.15 cgd if (error || *retval)
599 1.15 cgd goto done;
600 1.15 cgd s = splhigh();
601 1.27 mycroft if (timo && timercmp(&time, &atv, >=)) {
602 1.15 cgd splx(s);
603 1.15 cgd goto done;
604 1.15 cgd }
605 1.15 cgd if ((p->p_flag & P_SELECT) == 0 || nselcoll != ncoll) {
606 1.15 cgd splx(s);
607 1.15 cgd goto retry;
608 1.15 cgd }
609 1.15 cgd p->p_flag &= ~P_SELECT;
610 1.15 cgd error = tsleep((caddr_t)&selwait, PSOCK | PCATCH, "select", timo);
611 1.15 cgd splx(s);
612 1.15 cgd if (error == 0)
613 1.15 cgd goto retry;
614 1.15 cgd done:
615 1.15 cgd p->p_flag &= ~P_SELECT;
616 1.15 cgd /* select is not restarted after signals... */
617 1.15 cgd if (error == ERESTART)
618 1.15 cgd error = EINTR;
619 1.15 cgd if (error == EWOULDBLOCK)
620 1.15 cgd error = 0;
621 1.27 mycroft if (error == 0) {
622 1.15 cgd #define putbits(name, x) \
623 1.27 mycroft if (SCARG(uap, name)) { \
624 1.31 cgd error = copyout(bits + ni * x, SCARG(uap, name), ni); \
625 1.27 mycroft if (error) \
626 1.27 mycroft goto out; \
627 1.27 mycroft }
628 1.25 mycroft putbits(in, 3);
629 1.25 mycroft putbits(ou, 4);
630 1.25 mycroft putbits(ex, 5);
631 1.15 cgd #undef putbits
632 1.15 cgd }
633 1.27 mycroft out:
634 1.27 mycroft if (ni * 6 > sizeof(smallbits))
635 1.25 mycroft free(bits, M_TEMP);
636 1.15 cgd return (error);
637 1.15 cgd }
638 1.15 cgd
639 1.22 christos int
640 1.25 mycroft selscan(p, ibitp, obitp, nfd, retval)
641 1.15 cgd struct proc *p;
642 1.25 mycroft fd_mask *ibitp, *obitp;
643 1.16 cgd int nfd;
644 1.16 cgd register_t *retval;
645 1.15 cgd {
646 1.15 cgd register struct filedesc *fdp = p->p_fd;
647 1.15 cgd register int msk, i, j, fd;
648 1.25 mycroft register fd_mask ibits, obits;
649 1.15 cgd struct file *fp;
650 1.15 cgd int n = 0;
651 1.28 mycroft static int flag[3] = { POLLRDNORM | POLLHUP | POLLERR,
652 1.28 mycroft POLLWRNORM | POLLHUP | POLLERR,
653 1.28 mycroft POLLRDBAND };
654 1.15 cgd
655 1.15 cgd for (msk = 0; msk < 3; msk++) {
656 1.15 cgd for (i = 0; i < nfd; i += NFDBITS) {
657 1.25 mycroft ibits = *ibitp++;
658 1.25 mycroft obits = 0;
659 1.25 mycroft while ((j = ffs(ibits)) && (fd = i + --j) < nfd) {
660 1.25 mycroft ibits &= ~(1 << j);
661 1.15 cgd fp = fdp->fd_ofiles[fd];
662 1.15 cgd if (fp == NULL)
663 1.15 cgd return (EBADF);
664 1.28 mycroft if ((*fp->f_ops->fo_poll)(fp, flag[msk], p)) {
665 1.25 mycroft obits |= (1 << j);
666 1.15 cgd n++;
667 1.15 cgd }
668 1.15 cgd }
669 1.25 mycroft *obitp++ = obits;
670 1.15 cgd }
671 1.15 cgd }
672 1.15 cgd *retval = n;
673 1.15 cgd return (0);
674 1.15 cgd }
675 1.15 cgd
676 1.28 mycroft /*
677 1.28 mycroft * Poll system call.
678 1.28 mycroft */
679 1.28 mycroft int
680 1.28 mycroft sys_poll(p, v, retval)
681 1.28 mycroft register struct proc *p;
682 1.28 mycroft void *v;
683 1.28 mycroft register_t *retval;
684 1.28 mycroft {
685 1.28 mycroft register struct sys_poll_args /* {
686 1.28 mycroft syscallarg(struct pollfd *) fds;
687 1.29 mycroft syscallarg(u_int) nfds;
688 1.28 mycroft syscallarg(int) timeout;
689 1.28 mycroft } */ *uap = v;
690 1.28 mycroft caddr_t bits;
691 1.28 mycroft char smallbits[32 * sizeof(struct pollfd)];
692 1.28 mycroft struct timeval atv;
693 1.28 mycroft int s, ncoll, error = 0, timo;
694 1.28 mycroft size_t ni;
695 1.28 mycroft
696 1.28 mycroft if (SCARG(uap, nfds) > p->p_fd->fd_nfiles) {
697 1.28 mycroft /* forgiving; slightly wrong */
698 1.28 mycroft SCARG(uap, nfds) = p->p_fd->fd_nfiles;
699 1.28 mycroft }
700 1.28 mycroft ni = SCARG(uap, nfds) * sizeof(struct pollfd);
701 1.28 mycroft if (ni > sizeof(smallbits))
702 1.28 mycroft bits = malloc(ni, M_TEMP, M_WAITOK);
703 1.28 mycroft else
704 1.28 mycroft bits = smallbits;
705 1.28 mycroft
706 1.31 cgd error = copyin(SCARG(uap, fds), bits, ni);
707 1.28 mycroft if (error)
708 1.28 mycroft goto done;
709 1.28 mycroft
710 1.30 mycroft if (SCARG(uap, timeout) != INFTIM) {
711 1.28 mycroft atv.tv_sec = SCARG(uap, timeout) / 1000;
712 1.28 mycroft atv.tv_usec = (SCARG(uap, timeout) % 1000) * 1000;
713 1.28 mycroft if (itimerfix(&atv)) {
714 1.28 mycroft error = EINVAL;
715 1.28 mycroft goto done;
716 1.28 mycroft }
717 1.28 mycroft s = splclock();
718 1.28 mycroft timeradd(&atv, &time, &atv);
719 1.28 mycroft timo = hzto(&atv);
720 1.28 mycroft /*
721 1.28 mycroft * Avoid inadvertently sleeping forever.
722 1.28 mycroft */
723 1.28 mycroft if (timo == 0)
724 1.28 mycroft timo = 1;
725 1.28 mycroft splx(s);
726 1.28 mycroft } else
727 1.28 mycroft timo = 0;
728 1.28 mycroft retry:
729 1.28 mycroft ncoll = nselcoll;
730 1.28 mycroft p->p_flag |= P_SELECT;
731 1.28 mycroft error = pollscan(p, (struct pollfd *)bits, SCARG(uap, nfds), retval);
732 1.28 mycroft if (error || *retval)
733 1.28 mycroft goto done;
734 1.28 mycroft s = splhigh();
735 1.28 mycroft if (timo && timercmp(&time, &atv, >=)) {
736 1.28 mycroft splx(s);
737 1.28 mycroft goto done;
738 1.28 mycroft }
739 1.28 mycroft if ((p->p_flag & P_SELECT) == 0 || nselcoll != ncoll) {
740 1.28 mycroft splx(s);
741 1.28 mycroft goto retry;
742 1.28 mycroft }
743 1.28 mycroft p->p_flag &= ~P_SELECT;
744 1.28 mycroft error = tsleep((caddr_t)&selwait, PSOCK | PCATCH, "select", timo);
745 1.28 mycroft splx(s);
746 1.28 mycroft if (error == 0)
747 1.28 mycroft goto retry;
748 1.28 mycroft done:
749 1.28 mycroft p->p_flag &= ~P_SELECT;
750 1.28 mycroft /* poll is not restarted after signals... */
751 1.28 mycroft if (error == ERESTART)
752 1.28 mycroft error = EINTR;
753 1.28 mycroft if (error == EWOULDBLOCK)
754 1.28 mycroft error = 0;
755 1.28 mycroft if (error == 0) {
756 1.31 cgd error = copyout(bits, SCARG(uap, fds), ni);
757 1.28 mycroft if (error)
758 1.28 mycroft goto out;
759 1.28 mycroft }
760 1.28 mycroft out:
761 1.28 mycroft if (ni > sizeof(smallbits))
762 1.28 mycroft free(bits, M_TEMP);
763 1.28 mycroft return (error);
764 1.28 mycroft }
765 1.28 mycroft
766 1.28 mycroft int
767 1.28 mycroft pollscan(p, fds, nfd, retval)
768 1.28 mycroft struct proc *p;
769 1.28 mycroft struct pollfd *fds;
770 1.28 mycroft int nfd;
771 1.28 mycroft register_t *retval;
772 1.28 mycroft {
773 1.28 mycroft register struct filedesc *fdp = p->p_fd;
774 1.28 mycroft int i;
775 1.28 mycroft struct file *fp;
776 1.28 mycroft int n = 0;
777 1.28 mycroft
778 1.28 mycroft for (i = 0; i < nfd; i++, fds++) {
779 1.33 mrg if ((u_int)fds->fd >= fdp->fd_nfiles) {
780 1.28 mycroft fds->revents = POLLNVAL;
781 1.28 mycroft n++;
782 1.28 mycroft } else {
783 1.32 mrg fp = fdp->fd_ofiles[fds->fd];
784 1.32 mrg if (fp == 0) {
785 1.32 mrg fds->revents = POLLNVAL;
786 1.28 mycroft n++;
787 1.32 mrg } else {
788 1.32 mrg fds->revents = (*fp->f_ops->fo_poll)(fp,
789 1.32 mrg fds->events | POLLERR | POLLHUP, p);
790 1.32 mrg if (fds->revents != 0)
791 1.32 mrg n++;
792 1.32 mrg }
793 1.28 mycroft }
794 1.28 mycroft }
795 1.28 mycroft *retval = n;
796 1.28 mycroft return (0);
797 1.28 mycroft }
798 1.28 mycroft
799 1.15 cgd /*ARGSUSED*/
800 1.22 christos int
801 1.28 mycroft seltrue(dev, events, p)
802 1.15 cgd dev_t dev;
803 1.28 mycroft int events;
804 1.15 cgd struct proc *p;
805 1.15 cgd {
806 1.15 cgd
807 1.28 mycroft return (events & (POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM));
808 1.15 cgd }
809 1.15 cgd
810 1.15 cgd /*
811 1.15 cgd * Record a select request.
812 1.15 cgd */
813 1.15 cgd void
814 1.15 cgd selrecord(selector, sip)
815 1.15 cgd struct proc *selector;
816 1.15 cgd struct selinfo *sip;
817 1.15 cgd {
818 1.15 cgd struct proc *p;
819 1.15 cgd pid_t mypid;
820 1.15 cgd
821 1.15 cgd mypid = selector->p_pid;
822 1.15 cgd if (sip->si_pid == mypid)
823 1.15 cgd return;
824 1.15 cgd if (sip->si_pid && (p = pfind(sip->si_pid)) &&
825 1.15 cgd p->p_wchan == (caddr_t)&selwait)
826 1.15 cgd sip->si_flags |= SI_COLL;
827 1.15 cgd else
828 1.15 cgd sip->si_pid = mypid;
829 1.15 cgd }
830 1.15 cgd
831 1.15 cgd /*
832 1.15 cgd * Do a wakeup when a selectable event occurs.
833 1.15 cgd */
834 1.15 cgd void
835 1.15 cgd selwakeup(sip)
836 1.15 cgd register struct selinfo *sip;
837 1.15 cgd {
838 1.15 cgd register struct proc *p;
839 1.15 cgd int s;
840 1.15 cgd
841 1.15 cgd if (sip->si_pid == 0)
842 1.15 cgd return;
843 1.15 cgd if (sip->si_flags & SI_COLL) {
844 1.15 cgd nselcoll++;
845 1.15 cgd sip->si_flags &= ~SI_COLL;
846 1.15 cgd wakeup((caddr_t)&selwait);
847 1.15 cgd }
848 1.15 cgd p = pfind(sip->si_pid);
849 1.15 cgd sip->si_pid = 0;
850 1.15 cgd if (p != NULL) {
851 1.15 cgd s = splhigh();
852 1.15 cgd if (p->p_wchan == (caddr_t)&selwait) {
853 1.15 cgd if (p->p_stat == SSLEEP)
854 1.15 cgd setrunnable(p);
855 1.15 cgd else
856 1.15 cgd unsleep(p);
857 1.15 cgd } else if (p->p_flag & P_SELECT)
858 1.15 cgd p->p_flag &= ~P_SELECT;
859 1.15 cgd splx(s);
860 1.15 cgd }
861 1.15 cgd }
862