| Commit | Line | Data |
|---|---|---|
| 984263bc MD |
1 | /* |
| 2 | * Copyright (c) 1982, 1986, 1989, 1993 | |
| 3 | * The Regents of the University of California. All rights reserved. | |
| 4 | * (c) UNIX System Laboratories, Inc. | |
| 5 | * All or some portions of this file are derived from material licensed | |
| 6 | * to the University of California by American Telephone and Telegraph | |
| 7 | * Co. or Unix System Laboratories, Inc. and are reproduced herein with | |
| 8 | * the permission of UNIX System Laboratories, Inc. | |
| 9 | * | |
| 10 | * Redistribution and use in source and binary forms, with or without | |
| 11 | * modification, are permitted provided that the following conditions | |
| 12 | * are met: | |
| 13 | * 1. Redistributions of source code must retain the above copyright | |
| 14 | * notice, this list of conditions and the following disclaimer. | |
| 15 | * 2. Redistributions in binary form must reproduce the above copyright | |
| 16 | * notice, this list of conditions and the following disclaimer in the | |
| 17 | * documentation and/or other materials provided with the distribution. | |
| 18 | * 3. All advertising materials mentioning features or use of this software | |
| 19 | * must display the following acknowledgement: | |
| 20 | * This product includes software developed by the University of | |
| 21 | * California, Berkeley and its contributors. | |
| 22 | * 4. Neither the name of the University nor the names of its contributors | |
| 23 | * may be used to endorse or promote products derived from this software | |
| 24 | * without specific prior written permission. | |
| 25 | * | |
| 26 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
| 27 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 28 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
| 29 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
| 30 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
| 31 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
| 32 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
| 33 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
| 34 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
| 35 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
| 36 | * SUCH DAMAGE. | |
| 37 | * | |
| 38 | * @(#)sys_generic.c 8.5 (Berkeley) 1/21/94 | |
| 39 | * $FreeBSD: src/sys/kern/sys_generic.c,v 1.55.2.10 2001/03/17 10:39:32 peter Exp $ | |
| 2494f282 | 40 | * $DragonFly: src/sys/kern/sys_generic.c,v 1.49 2008/05/05 22:09:44 dillon Exp $ |
| 984263bc MD |
41 | */ |
| 42 | ||
| 43 | #include "opt_ktrace.h" | |
| 44 | ||
| 45 | #include <sys/param.h> | |
| 46 | #include <sys/systm.h> | |
| 47 | #include <sys/sysproto.h> | |
| e5857bf7 | 48 | #include <sys/event.h> |
| 984263bc MD |
49 | #include <sys/filedesc.h> |
| 50 | #include <sys/filio.h> | |
| 51 | #include <sys/fcntl.h> | |
| 52 | #include <sys/file.h> | |
| 53 | #include <sys/proc.h> | |
| 54 | #include <sys/signalvar.h> | |
| 55 | #include <sys/socketvar.h> | |
| 56 | #include <sys/uio.h> | |
| 57 | #include <sys/kernel.h> | |
| ba023347 | 58 | #include <sys/kern_syscall.h> |
| 984263bc | 59 | #include <sys/malloc.h> |
| a0c5fc96 | 60 | #include <sys/mapped_ioctl.h> |
| 984263bc | 61 | #include <sys/poll.h> |
| a0c5fc96 | 62 | #include <sys/queue.h> |
| 984263bc | 63 | #include <sys/resourcevar.h> |
| 8b5c39bb | 64 | #include <sys/socketops.h> |
| 984263bc MD |
65 | #include <sys/sysctl.h> |
| 66 | #include <sys/sysent.h> | |
| 67 | #include <sys/buf.h> | |
| 68 | #ifdef KTRACE | |
| 69 | #include <sys/ktrace.h> | |
| 70 | #endif | |
| 71 | #include <vm/vm.h> | |
| 72 | #include <vm/vm_page.h> | |
| 684a93c4 | 73 | |
| dadab5e9 | 74 | #include <sys/file2.h> |
| 684a93c4 | 75 | #include <sys/mplock2.h> |
| ac62ea3c | 76 | #include <sys/spinlock2.h> |
| 984263bc MD |
77 | |
| 78 | #include <machine/limits.h> | |
| 79 | ||
| 80 | static MALLOC_DEFINE(M_IOCTLOPS, "ioctlops", "ioctl data buffer"); | |
| a0c5fc96 | 81 | static MALLOC_DEFINE(M_IOCTLMAP, "ioctlmap", "mapped ioctl handler buffer"); |
| 984263bc MD |
82 | static MALLOC_DEFINE(M_SELECT, "select", "select() buffer"); |
| 83 | MALLOC_DEFINE(M_IOV, "iov", "large iov's"); | |
| 84 | ||
| e5857bf7 | 85 | typedef struct kfd_set { |
| 8acdf1cf | 86 | fd_mask fds_bits[2]; |
| e5857bf7 SG |
87 | } kfd_set; |
| 88 | ||
| 89 | enum select_copyin_states { | |
| 90 | COPYIN_READ, COPYIN_WRITE, COPYIN_EXCEPT, COPYIN_DONE }; | |
| 91 | ||
| 92 | struct select_kevent_copyin_args { | |
| 93 | kfd_set *read_set; | |
| 94 | kfd_set *write_set; | |
| 95 | kfd_set *except_set; | |
| 96 | int active_set; /* One of select_copyin_states */ | |
| 97 | struct lwp *lwp; /* Pointer to our lwp */ | |
| 98 | int num_fds; /* Number of file descriptors (syscall arg) */ | |
| 99 | int proc_fds; /* Processed fd's (wraps) */ | |
| 100 | int error; /* Returned to userland */ | |
| 101 | }; | |
| 102 | ||
| 7fbfbe29 SG |
103 | struct poll_kevent_copyin_args { |
| 104 | struct lwp *lwp; | |
| 105 | struct pollfd *fds; | |
| 106 | int nfds; | |
| 107 | int pfds; | |
| 108 | int error; | |
| 109 | }; | |
| 110 | ||
| 12586b82 | 111 | static struct lwkt_token mioctl_token = LWKT_TOKEN_MP_INITIALIZER(mioctl_token); |
| 3c499555 | 112 | |
| ae7cb1b5 | 113 | static int doselect(int nd, fd_set *in, fd_set *ou, fd_set *ex, |
| 8acdf1cf | 114 | struct timespec *ts, int *res); |
| 7fbfbe29 SG |
115 | static int dopoll(int nfds, struct pollfd *fds, struct timespec *ts, |
| 116 | int *res); | |
| e54488bb MD |
117 | static int dofileread(int, struct file *, struct uio *, int, size_t *); |
| 118 | static int dofilewrite(int, struct file *, struct uio *, int, size_t *); | |
| 7f83ed38 | 119 | |
| 984263bc MD |
120 | /* |
| 121 | * Read system call. | |
| f832287e MD |
122 | * |
| 123 | * MPSAFE | |
| 984263bc | 124 | */ |
| 984263bc | 125 | int |
| 753fd850 | 126 | sys_read(struct read_args *uap) |
| 984263bc | 127 | { |
| dadab5e9 | 128 | struct thread *td = curthread; |
| ba023347 DRJ |
129 | struct uio auio; |
| 130 | struct iovec aiov; | |
| 984263bc MD |
131 | int error; |
| 132 | ||
| e54488bb MD |
133 | if ((ssize_t)uap->nbyte < 0) |
| 134 | error = EINVAL; | |
| 135 | ||
| ba023347 DRJ |
136 | aiov.iov_base = uap->buf; |
| 137 | aiov.iov_len = uap->nbyte; | |
| 138 | auio.uio_iov = &aiov; | |
| 139 | auio.uio_iovcnt = 1; | |
| 140 | auio.uio_offset = -1; | |
| 141 | auio.uio_resid = uap->nbyte; | |
| 142 | auio.uio_rw = UIO_READ; | |
| 143 | auio.uio_segflg = UIO_USERSPACE; | |
| 144 | auio.uio_td = td; | |
| 145 | ||
| e54488bb | 146 | error = kern_preadv(uap->fd, &auio, 0, &uap->sysmsg_szresult); |
| 984263bc MD |
147 | return(error); |
| 148 | } | |
| 149 | ||
| 150 | /* | |
| 7f83ed38 | 151 | * Positioned (Pread) read system call |
| f832287e MD |
152 | * |
| 153 | * MPSAFE | |
| 984263bc | 154 | */ |
| 984263bc | 155 | int |
| b09fd398 | 156 | sys_extpread(struct extpread_args *uap) |
| 984263bc | 157 | { |
| dadab5e9 | 158 | struct thread *td = curthread; |
| ba023347 DRJ |
159 | struct uio auio; |
| 160 | struct iovec aiov; | |
| 984263bc | 161 | int error; |
| 9ba76b73 | 162 | int flags; |
| 984263bc | 163 | |
| e54488bb MD |
164 | if ((ssize_t)uap->nbyte < 0) |
| 165 | return(EINVAL); | |
| 166 | ||
| ba023347 DRJ |
167 | aiov.iov_base = uap->buf; |
| 168 | aiov.iov_len = uap->nbyte; | |
| 169 | auio.uio_iov = &aiov; | |
| 170 | auio.uio_iovcnt = 1; | |
| 171 | auio.uio_offset = uap->offset; | |
| 172 | auio.uio_resid = uap->nbyte; | |
| 173 | auio.uio_rw = UIO_READ; | |
| 174 | auio.uio_segflg = UIO_USERSPACE; | |
| 175 | auio.uio_td = td; | |
| 176 | ||
| 9ba76b73 MD |
177 | flags = uap->flags & O_FMASK; |
| 178 | if (uap->offset != (off_t)-1) | |
| 179 | flags |= O_FOFFSET; | |
| 180 | ||
| e54488bb | 181 | error = kern_preadv(uap->fd, &auio, flags, &uap->sysmsg_szresult); |
| 984263bc MD |
182 | return(error); |
| 183 | } | |
| 184 | ||
| 7f83ed38 MD |
185 | /* |
| 186 | * Scatter read system call. | |
| f832287e MD |
187 | * |
| 188 | * MPSAFE | |
| 7f83ed38 | 189 | */ |
| 984263bc | 190 | int |
| 753fd850 | 191 | sys_readv(struct readv_args *uap) |
| 984263bc | 192 | { |
| dadab5e9 | 193 | struct thread *td = curthread; |
| 984263bc | 194 | struct uio auio; |
| ba023347 DRJ |
195 | struct iovec aiov[UIO_SMALLIOV], *iov = NULL; |
| 196 | int error; | |
| 984263bc | 197 | |
| ba023347 | 198 | error = iovec_copyin(uap->iovp, &iov, aiov, uap->iovcnt, |
| ef5c76d7 | 199 | &auio.uio_resid); |
| ba023347 DRJ |
200 | if (error) |
| 201 | return (error); | |
| 202 | auio.uio_iov = iov; | |
| 203 | auio.uio_iovcnt = uap->iovcnt; | |
| 204 | auio.uio_offset = -1; | |
| 984263bc MD |
205 | auio.uio_rw = UIO_READ; |
| 206 | auio.uio_segflg = UIO_USERSPACE; | |
| dadab5e9 | 207 | auio.uio_td = td; |
| 984263bc | 208 | |
| e54488bb | 209 | error = kern_preadv(uap->fd, &auio, 0, &uap->sysmsg_szresult); |
| ba023347 DRJ |
210 | |
| 211 | iovec_free(&iov, aiov); | |
| 984263bc MD |
212 | return (error); |
| 213 | } | |
| 214 | ||
| 7f83ed38 MD |
215 | |
| 216 | /* | |
| 217 | * Scatter positioned read system call. | |
| f832287e MD |
218 | * |
| 219 | * MPSAFE | |
| 7f83ed38 MD |
220 | */ |
| 221 | int | |
| b09fd398 | 222 | sys_extpreadv(struct extpreadv_args *uap) |
| 7f83ed38 MD |
223 | { |
| 224 | struct thread *td = curthread; | |
| 225 | struct uio auio; | |
| 226 | struct iovec aiov[UIO_SMALLIOV], *iov = NULL; | |
| 227 | int error; | |
| 9ba76b73 | 228 | int flags; |
| 7f83ed38 MD |
229 | |
| 230 | error = iovec_copyin(uap->iovp, &iov, aiov, uap->iovcnt, | |
| ef5c76d7 | 231 | &auio.uio_resid); |
| 7f83ed38 MD |
232 | if (error) |
| 233 | return (error); | |
| 234 | auio.uio_iov = iov; | |
| 235 | auio.uio_iovcnt = uap->iovcnt; | |
| 236 | auio.uio_offset = uap->offset; | |
| 237 | auio.uio_rw = UIO_READ; | |
| 238 | auio.uio_segflg = UIO_USERSPACE; | |
| 239 | auio.uio_td = td; | |
| 240 | ||
| 9ba76b73 MD |
241 | flags = uap->flags & O_FMASK; |
| 242 | if (uap->offset != (off_t)-1) | |
| 243 | flags |= O_FOFFSET; | |
| 244 | ||
| e54488bb | 245 | error = kern_preadv(uap->fd, &auio, flags, &uap->sysmsg_szresult); |
| 7f83ed38 MD |
246 | |
| 247 | iovec_free(&iov, aiov); | |
| 248 | return(error); | |
| 249 | } | |
| 250 | ||
| f832287e MD |
251 | /* |
| 252 | * MPSAFE | |
| 253 | */ | |
| 984263bc | 254 | int |
| e54488bb | 255 | kern_preadv(int fd, struct uio *auio, int flags, size_t *res) |
| 984263bc | 256 | { |
| dadab5e9 MD |
257 | struct thread *td = curthread; |
| 258 | struct proc *p = td->td_proc; | |
| 41c20dac | 259 | struct file *fp; |
| 7f83ed38 | 260 | int error; |
| 984263bc | 261 | |
| ba023347 DRJ |
262 | KKASSERT(p); |
| 263 | ||
| 228b401d | 264 | fp = holdfp(p->p_fd, fd, FREAD); |
| ba023347 | 265 | if (fp == NULL) |
| 984263bc | 266 | return (EBADF); |
| 9ba76b73 | 267 | if (flags & O_FOFFSET && fp->f_type != DTYPE_VNODE) { |
| ba023347 | 268 | error = ESPIPE; |
| 7f83ed38 MD |
269 | } else { |
| 270 | error = dofileread(fd, fp, auio, flags, res); | |
| 984263bc | 271 | } |
| 9f87144f | 272 | fdrop(fp); |
| 7f83ed38 MD |
273 | return(error); |
| 274 | } | |
| 275 | ||
| 276 | /* | |
| 277 | * Common code for readv and preadv that reads data in | |
| 278 | * from a file using the passed in uio, offset, and flags. | |
| f832287e MD |
279 | * |
| 280 | * MPALMOSTSAFE - ktrace needs help | |
| 7f83ed38 MD |
281 | */ |
| 282 | static int | |
| e54488bb | 283 | dofileread(int fd, struct file *fp, struct uio *auio, int flags, size_t *res) |
| 7f83ed38 | 284 | { |
| 7f83ed38 | 285 | int error; |
| e54488bb | 286 | size_t len; |
| 7f83ed38 | 287 | #ifdef KTRACE |
| fc9ae81d | 288 | struct thread *td = curthread; |
| 7f83ed38 MD |
289 | struct iovec *ktriov = NULL; |
| 290 | struct uio ktruio; | |
| 291 | #endif | |
| 292 | ||
| 984263bc MD |
293 | #ifdef KTRACE |
| 294 | /* | |
| 295 | * if tracing, save a copy of iovec | |
| 296 | */ | |
| dadab5e9 | 297 | if (KTRPOINT(td, KTR_GENIO)) { |
| ba023347 DRJ |
298 | int iovlen = auio->uio_iovcnt * sizeof(struct iovec); |
| 299 | ||
| 984263bc | 300 | MALLOC(ktriov, struct iovec *, iovlen, M_TEMP, M_WAITOK); |
| ba023347 DRJ |
301 | bcopy((caddr_t)auio->uio_iov, (caddr_t)ktriov, iovlen); |
| 302 | ktruio = *auio; | |
| 984263bc MD |
303 | } |
| 304 | #endif | |
| ba023347 | 305 | len = auio->uio_resid; |
| 87de5057 | 306 | error = fo_read(fp, auio, fp->f_cred, flags); |
| ba023347 DRJ |
307 | if (error) { |
| 308 | if (auio->uio_resid != len && (error == ERESTART || | |
| 984263bc MD |
309 | error == EINTR || error == EWOULDBLOCK)) |
| 310 | error = 0; | |
| 311 | } | |
| 984263bc MD |
312 | #ifdef KTRACE |
| 313 | if (ktriov != NULL) { | |
| 314 | if (error == 0) { | |
| 315 | ktruio.uio_iov = ktriov; | |
| ba023347 | 316 | ktruio.uio_resid = len - auio->uio_resid; |
| f832287e | 317 | get_mplock(); |
| 9fb04d14 | 318 | ktrgenio(td->td_lwp, fd, UIO_READ, &ktruio, error); |
| f832287e | 319 | rel_mplock(); |
| 984263bc MD |
320 | } |
| 321 | FREE(ktriov, M_TEMP); | |
| 322 | } | |
| 323 | #endif | |
| ba023347 DRJ |
324 | if (error == 0) |
| 325 | *res = len - auio->uio_resid; | |
| 7f83ed38 MD |
326 | |
| 327 | return(error); | |
| 984263bc MD |
328 | } |
| 329 | ||
| 330 | /* | |
| 331 | * Write system call | |
| f832287e MD |
332 | * |
| 333 | * MPSAFE | |
| 984263bc | 334 | */ |
| 984263bc | 335 | int |
| 753fd850 | 336 | sys_write(struct write_args *uap) |
| 984263bc | 337 | { |
| dadab5e9 | 338 | struct thread *td = curthread; |
| ba023347 DRJ |
339 | struct uio auio; |
| 340 | struct iovec aiov; | |
| 984263bc MD |
341 | int error; |
| 342 | ||
| e54488bb MD |
343 | if ((ssize_t)uap->nbyte < 0) |
| 344 | error = EINVAL; | |
| 345 | ||
| ba023347 DRJ |
346 | aiov.iov_base = (void *)(uintptr_t)uap->buf; |
| 347 | aiov.iov_len = uap->nbyte; | |
| 348 | auio.uio_iov = &aiov; | |
| 349 | auio.uio_iovcnt = 1; | |
| 350 | auio.uio_offset = -1; | |
| 351 | auio.uio_resid = uap->nbyte; | |
| 352 | auio.uio_rw = UIO_WRITE; | |
| 353 | auio.uio_segflg = UIO_USERSPACE; | |
| 354 | auio.uio_td = td; | |
| 355 | ||
| e54488bb | 356 | error = kern_pwritev(uap->fd, &auio, 0, &uap->sysmsg_szresult); |
| dadab5e9 | 357 | |
| 984263bc MD |
358 | return(error); |
| 359 | } | |
| 360 | ||
| 361 | /* | |
| 362 | * Pwrite system call | |
| f832287e MD |
363 | * |
| 364 | * MPSAFE | |
| 984263bc | 365 | */ |
| 984263bc | 366 | int |
| b09fd398 | 367 | sys_extpwrite(struct extpwrite_args *uap) |
| 984263bc | 368 | { |
| dadab5e9 | 369 | struct thread *td = curthread; |
| ba023347 DRJ |
370 | struct uio auio; |
| 371 | struct iovec aiov; | |
| 984263bc | 372 | int error; |
| 9ba76b73 | 373 | int flags; |
| 984263bc | 374 | |
| e54488bb MD |
375 | if ((ssize_t)uap->nbyte < 0) |
| 376 | error = EINVAL; | |
| 377 | ||
| ba023347 DRJ |
378 | aiov.iov_base = (void *)(uintptr_t)uap->buf; |
| 379 | aiov.iov_len = uap->nbyte; | |
| 380 | auio.uio_iov = &aiov; | |
| 381 | auio.uio_iovcnt = 1; | |
| 382 | auio.uio_offset = uap->offset; | |
| 383 | auio.uio_resid = uap->nbyte; | |
| 384 | auio.uio_rw = UIO_WRITE; | |
| 385 | auio.uio_segflg = UIO_USERSPACE; | |
| 386 | auio.uio_td = td; | |
| 387 | ||
| 9ba76b73 MD |
388 | flags = uap->flags & O_FMASK; |
| 389 | if (uap->offset != (off_t)-1) | |
| 390 | flags |= O_FOFFSET; | |
| e54488bb | 391 | error = kern_pwritev(uap->fd, &auio, flags, &uap->sysmsg_szresult); |
| 984263bc MD |
392 | return(error); |
| 393 | } | |
| 394 | ||
| f832287e MD |
395 | /* |
| 396 | * MPSAFE | |
| 397 | */ | |
| ba023347 | 398 | int |
| 753fd850 | 399 | sys_writev(struct writev_args *uap) |
| ba023347 | 400 | { |
| dadab5e9 | 401 | struct thread *td = curthread; |
| 984263bc | 402 | struct uio auio; |
| ba023347 DRJ |
403 | struct iovec aiov[UIO_SMALLIOV], *iov = NULL; |
| 404 | int error; | |
| 984263bc | 405 | |
| ba023347 | 406 | error = iovec_copyin(uap->iovp, &iov, aiov, uap->iovcnt, |
| ef5c76d7 | 407 | &auio.uio_resid); |
| ba023347 DRJ |
408 | if (error) |
| 409 | return (error); | |
| 410 | auio.uio_iov = iov; | |
| 411 | auio.uio_iovcnt = uap->iovcnt; | |
| 412 | auio.uio_offset = -1; | |
| 984263bc MD |
413 | auio.uio_rw = UIO_WRITE; |
| 414 | auio.uio_segflg = UIO_USERSPACE; | |
| dadab5e9 | 415 | auio.uio_td = td; |
| ba023347 | 416 | |
| e54488bb | 417 | error = kern_pwritev(uap->fd, &auio, 0, &uap->sysmsg_szresult); |
| ba023347 DRJ |
418 | |
| 419 | iovec_free(&iov, aiov); | |
| 984263bc MD |
420 | return (error); |
| 421 | } | |
| 422 | ||
| 7f83ed38 | 423 | |
| 984263bc | 424 | /* |
| 7f83ed38 | 425 | * Gather positioned write system call |
| f832287e MD |
426 | * |
| 427 | * MPSAFE | |
| 984263bc | 428 | */ |
| 984263bc | 429 | int |
| b09fd398 | 430 | sys_extpwritev(struct extpwritev_args *uap) |
| 7f83ed38 MD |
431 | { |
| 432 | struct thread *td = curthread; | |
| 433 | struct uio auio; | |
| 434 | struct iovec aiov[UIO_SMALLIOV], *iov = NULL; | |
| 435 | int error; | |
| 9ba76b73 | 436 | int flags; |
| 7f83ed38 MD |
437 | |
| 438 | error = iovec_copyin(uap->iovp, &iov, aiov, uap->iovcnt, | |
| ef5c76d7 | 439 | &auio.uio_resid); |
| 7f83ed38 MD |
440 | if (error) |
| 441 | return (error); | |
| 442 | auio.uio_iov = iov; | |
| 443 | auio.uio_iovcnt = uap->iovcnt; | |
| 444 | auio.uio_offset = uap->offset; | |
| 445 | auio.uio_rw = UIO_WRITE; | |
| 446 | auio.uio_segflg = UIO_USERSPACE; | |
| 447 | auio.uio_td = td; | |
| 448 | ||
| 9ba76b73 MD |
449 | flags = uap->flags & O_FMASK; |
| 450 | if (uap->offset != (off_t)-1) | |
| 451 | flags |= O_FOFFSET; | |
| 452 | ||
| e54488bb | 453 | error = kern_pwritev(uap->fd, &auio, flags, &uap->sysmsg_szresult); |
| 7f83ed38 MD |
454 | |
| 455 | iovec_free(&iov, aiov); | |
| 456 | return(error); | |
| 457 | } | |
| 458 | ||
| f832287e MD |
459 | /* |
| 460 | * MPSAFE | |
| 461 | */ | |
| 7f83ed38 | 462 | int |
| e54488bb | 463 | kern_pwritev(int fd, struct uio *auio, int flags, size_t *res) |
| 984263bc | 464 | { |
| dadab5e9 MD |
465 | struct thread *td = curthread; |
| 466 | struct proc *p = td->td_proc; | |
| 41c20dac | 467 | struct file *fp; |
| 7f83ed38 | 468 | int error; |
| 984263bc | 469 | |
| dadab5e9 | 470 | KKASSERT(p); |
| dadab5e9 | 471 | |
| 228b401d | 472 | fp = holdfp(p->p_fd, fd, FWRITE); |
| ba023347 | 473 | if (fp == NULL) |
| 984263bc | 474 | return (EBADF); |
| 9ba76b73 | 475 | else if ((flags & O_FOFFSET) && fp->f_type != DTYPE_VNODE) { |
| ba023347 | 476 | error = ESPIPE; |
| 7f83ed38 MD |
477 | } else { |
| 478 | error = dofilewrite(fd, fp, auio, flags, res); | |
| 984263bc | 479 | } |
| 7f83ed38 | 480 | |
| 9f87144f | 481 | fdrop(fp); |
| 7f83ed38 MD |
482 | return (error); |
| 483 | } | |
| 484 | ||
| 485 | /* | |
| 486 | * Common code for writev and pwritev that writes data to | |
| 487 | * a file using the passed in uio, offset, and flags. | |
| f832287e MD |
488 | * |
| 489 | * MPALMOSTSAFE - ktrace needs help | |
| 7f83ed38 MD |
490 | */ |
| 491 | static int | |
| e54488bb | 492 | dofilewrite(int fd, struct file *fp, struct uio *auio, int flags, size_t *res) |
| 7f83ed38 MD |
493 | { |
| 494 | struct thread *td = curthread; | |
| 7278a846 | 495 | struct lwp *lp = td->td_lwp; |
| 7f83ed38 | 496 | int error; |
| e54488bb | 497 | size_t len; |
| 7f83ed38 MD |
498 | #ifdef KTRACE |
| 499 | struct iovec *ktriov = NULL; | |
| 500 | struct uio ktruio; | |
| 501 | #endif | |
| 502 | ||
| 984263bc MD |
503 | #ifdef KTRACE |
| 504 | /* | |
| 505 | * if tracing, save a copy of iovec and uio | |
| 506 | */ | |
| dadab5e9 | 507 | if (KTRPOINT(td, KTR_GENIO)) { |
| ba023347 DRJ |
508 | int iovlen = auio->uio_iovcnt * sizeof(struct iovec); |
| 509 | ||
| 984263bc | 510 | MALLOC(ktriov, struct iovec *, iovlen, M_TEMP, M_WAITOK); |
| ba023347 DRJ |
511 | bcopy((caddr_t)auio->uio_iov, (caddr_t)ktriov, iovlen); |
| 512 | ktruio = *auio; | |
| 984263bc MD |
513 | } |
| 514 | #endif | |
| ba023347 | 515 | len = auio->uio_resid; |
| 87de5057 | 516 | error = fo_write(fp, auio, fp->f_cred, flags); |
| ba023347 DRJ |
517 | if (error) { |
| 518 | if (auio->uio_resid != len && (error == ERESTART || | |
| 984263bc MD |
519 | error == EINTR || error == EWOULDBLOCK)) |
| 520 | error = 0; | |
| 7f83ed38 | 521 | /* Socket layer is responsible for issuing SIGPIPE. */ |
| f832287e MD |
522 | if (error == EPIPE) { |
| 523 | get_mplock(); | |
| 9fb04d14 | 524 | lwpsignal(lp->lwp_proc, lp, SIGPIPE); |
| f832287e MD |
525 | rel_mplock(); |
| 526 | } | |
| 984263bc | 527 | } |
| 984263bc MD |
528 | #ifdef KTRACE |
| 529 | if (ktriov != NULL) { | |
| 530 | if (error == 0) { | |
| 531 | ktruio.uio_iov = ktriov; | |
| ba023347 | 532 | ktruio.uio_resid = len - auio->uio_resid; |
| f832287e | 533 | get_mplock(); |
| 9fb04d14 | 534 | ktrgenio(lp, fd, UIO_WRITE, &ktruio, error); |
| f832287e | 535 | rel_mplock(); |
| 984263bc MD |
536 | } |
| 537 | FREE(ktriov, M_TEMP); | |
| 538 | } | |
| 539 | #endif | |
| ba023347 DRJ |
540 | if (error == 0) |
| 541 | *res = len - auio->uio_resid; | |
| 7f83ed38 MD |
542 | |
| 543 | return(error); | |
| 984263bc MD |
544 | } |
| 545 | ||
| 546 | /* | |
| 547 | * Ioctl system call | |
| 3919ced0 | 548 | * |
| 3c499555 | 549 | * MPSAFE |
| 984263bc | 550 | */ |
| 984263bc | 551 | int |
| 753fd850 | 552 | sys_ioctl(struct ioctl_args *uap) |
| 984263bc | 553 | { |
| 3919ced0 MD |
554 | int error; |
| 555 | ||
| 3919ced0 | 556 | error = mapped_ioctl(uap->fd, uap->com, uap->data, NULL, &uap->sysmsg); |
| 3919ced0 | 557 | return (error); |
| a0c5fc96 JS |
558 | } |
| 559 | ||
| 560 | struct ioctl_map_entry { | |
| 561 | const char *subsys; | |
| 562 | struct ioctl_map_range *cmd_ranges; | |
| 563 | LIST_ENTRY(ioctl_map_entry) entries; | |
| 564 | }; | |
| 565 | ||
| 25b5b94d SS |
566 | /* |
| 567 | * The true heart of all ioctl syscall handlers (native, emulation). | |
| 568 | * If map != NULL, it will be searched for a matching entry for com, | |
| 569 | * and appropriate conversions/conversion functions will be utilized. | |
| 3c499555 MD |
570 | * |
| 571 | * MPSAFE | |
| 25b5b94d | 572 | */ |
| a0c5fc96 | 573 | int |
| 87baaf0c MD |
574 | mapped_ioctl(int fd, u_long com, caddr_t uspc_data, struct ioctl_map *map, |
| 575 | struct sysmsg *msg) | |
| a0c5fc96 | 576 | { |
| dadab5e9 MD |
577 | struct thread *td = curthread; |
| 578 | struct proc *p = td->td_proc; | |
| 87de5057 | 579 | struct ucred *cred; |
| 41c20dac | 580 | struct file *fp; |
| a0c5fc96 | 581 | struct ioctl_map_range *iomc = NULL; |
| 984263bc | 582 | int error; |
| 1fd87d54 | 583 | u_int size; |
| a0c5fc96 | 584 | u_long ocom = com; |
| 984263bc MD |
585 | caddr_t data, memp; |
| 586 | int tmp; | |
| 587 | #define STK_PARAMS 128 | |
| 588 | union { | |
| 589 | char stkbuf[STK_PARAMS]; | |
| 590 | long align; | |
| 591 | } ubuf; | |
| 592 | ||
| dadab5e9 | 593 | KKASSERT(p); |
| 9910d07b | 594 | cred = td->td_ucred; |
| 984263bc | 595 | |
| 228b401d MD |
596 | fp = holdfp(p->p_fd, fd, FREAD|FWRITE); |
| 597 | if (fp == NULL) | |
| a0c5fc96 JS |
598 | return(EBADF); |
| 599 | ||
| 600 | if (map != NULL) { /* obey translation map */ | |
| 601 | u_long maskcmd; | |
| 602 | struct ioctl_map_entry *e; | |
| 603 | ||
| 604 | maskcmd = com & map->mask; | |
| 605 | ||
| 12586b82 | 606 | lwkt_gettoken(&mioctl_token); |
| a0c5fc96 JS |
607 | LIST_FOREACH(e, &map->mapping, entries) { |
| 608 | for (iomc = e->cmd_ranges; iomc->start != 0 || | |
| 25b5b94d SS |
609 | iomc->maptocmd != 0 || iomc->wrapfunc != NULL || |
| 610 | iomc->mapfunc != NULL; | |
| a0c5fc96 JS |
611 | iomc++) { |
| 612 | if (maskcmd >= iomc->start && | |
| 613 | maskcmd <= iomc->end) | |
| 614 | break; | |
| 615 | } | |
| 616 | ||
| 617 | /* Did we find a match? */ | |
| 618 | if (iomc->start != 0 || iomc->maptocmd != 0 || | |
| 25b5b94d | 619 | iomc->wrapfunc != NULL || iomc->mapfunc != NULL) |
| a0c5fc96 JS |
620 | break; |
| 621 | } | |
| 12586b82 | 622 | lwkt_reltoken(&mioctl_token); |
| a0c5fc96 JS |
623 | |
| 624 | if (iomc == NULL || | |
| 625 | (iomc->start == 0 && iomc->maptocmd == 0 | |
| 25b5b94d | 626 | && iomc->wrapfunc == NULL && iomc->mapfunc == NULL)) { |
| 6ea70f76 | 627 | kprintf("%s: 'ioctl' fd=%d, cmd=0x%lx ('%c',%d) not implemented\n", |
| a0c5fc96 JS |
628 | map->sys, fd, maskcmd, |
| 629 | (int)((maskcmd >> 8) & 0xff), | |
| 630 | (int)(maskcmd & 0xff)); | |
| 228b401d MD |
631 | error = EINVAL; |
| 632 | goto done; | |
| a0c5fc96 | 633 | } |
| 984263bc | 634 | |
| 25b5b94d SS |
635 | /* |
| 636 | * If it's a non-range one to one mapping, maptocmd should be | |
| 637 | * correct. If it's a ranged one to one mapping, we pass the | |
| 638 | * original value of com, and for a range mapped to a different | |
| 639 | * range, we always need a mapping function to translate the | |
| 640 | * ioctl to our native ioctl. Ex. 6500-65ff <-> 9500-95ff | |
| 641 | */ | |
| 642 | if (iomc->start == iomc->end && iomc->maptocmd == iomc->maptoend) { | |
| 643 | com = iomc->maptocmd; | |
| 644 | } else if (iomc->start == iomc->maptocmd && iomc->end == iomc->maptoend) { | |
| 645 | if (iomc->mapfunc != NULL) | |
| 646 | com = iomc->mapfunc(iomc->start, iomc->end, | |
| 647 | iomc->start, iomc->end, | |
| 648 | com, com); | |
| 649 | } else { | |
| 650 | if (iomc->mapfunc != NULL) { | |
| 651 | com = iomc->mapfunc(iomc->start, iomc->end, | |
| 652 | iomc->maptocmd, iomc->maptoend, | |
| 653 | com, ocom); | |
| 654 | } else { | |
| 6ea70f76 | 655 | kprintf("%s: Invalid mapping for fd=%d, cmd=%#lx ('%c',%d)\n", |
| 25b5b94d SS |
656 | map->sys, fd, maskcmd, |
| 657 | (int)((maskcmd >> 8) & 0xff), | |
| 658 | (int)(maskcmd & 0xff)); | |
| 228b401d MD |
659 | error = EINVAL; |
| 660 | goto done; | |
| 25b5b94d SS |
661 | } |
| 662 | } | |
| a0c5fc96 JS |
663 | } |
| 664 | ||
| 665 | switch (com) { | |
| 984263bc | 666 | case FIONCLEX: |
| 228b401d MD |
667 | error = fclrfdflags(p->p_fd, fd, UF_EXCLOSE); |
| 668 | goto done; | |
| 984263bc | 669 | case FIOCLEX: |
| 228b401d MD |
670 | error = fsetfdflags(p->p_fd, fd, UF_EXCLOSE); |
| 671 | goto done; | |
| 984263bc MD |
672 | } |
| 673 | ||
| 674 | /* | |
| 675 | * Interpret high order word to find amount of data to be | |
| 676 | * copied to/from the user's address space. | |
| 677 | */ | |
| 678 | size = IOCPARM_LEN(com); | |
| 228b401d MD |
679 | if (size > IOCPARM_MAX) { |
| 680 | error = ENOTTY; | |
| 681 | goto done; | |
| 682 | } | |
| 984263bc | 683 | |
| 984263bc | 684 | if (size > sizeof (ubuf.stkbuf)) { |
| efda3bd0 | 685 | memp = kmalloc(size, M_IOCTLOPS, M_WAITOK); |
| 984263bc MD |
686 | data = memp; |
| 687 | } else { | |
| d0d4a734 | 688 | memp = NULL; |
| 984263bc MD |
689 | data = ubuf.stkbuf; |
| 690 | } | |
| a0c5fc96 JS |
691 | if ((com & IOC_IN) != 0) { |
| 692 | if (size != 0) { | |
| e54488bb | 693 | error = copyin(uspc_data, data, (size_t)size); |
| 984263bc | 694 | if (error) { |
| a0c5fc96 | 695 | if (memp != NULL) |
| efda3bd0 | 696 | kfree(memp, M_IOCTLOPS); |
| 228b401d | 697 | goto done; |
| 984263bc MD |
698 | } |
| 699 | } else { | |
| a0c5fc96 | 700 | *(caddr_t *)data = uspc_data; |
| 984263bc | 701 | } |
| a0c5fc96 | 702 | } else if ((com & IOC_OUT) != 0 && size) { |
| 984263bc MD |
703 | /* |
| 704 | * Zero the buffer so the user always | |
| 705 | * gets back something deterministic. | |
| 706 | */ | |
| e54488bb | 707 | bzero(data, (size_t)size); |
| a0c5fc96 JS |
708 | } else if ((com & IOC_VOID) != 0) { |
| 709 | *(caddr_t *)data = uspc_data; | |
| 984263bc MD |
710 | } |
| 711 | ||
| 712 | switch (com) { | |
| 984263bc MD |
713 | case FIONBIO: |
| 714 | if ((tmp = *(int *)data)) | |
| 3c499555 | 715 | atomic_set_int(&fp->f_flag, FNONBLOCK); |
| 984263bc | 716 | else |
| 3c499555 | 717 | atomic_clear_int(&fp->f_flag, FNONBLOCK); |
| 9ba76b73 | 718 | error = 0; |
| 984263bc MD |
719 | break; |
| 720 | ||
| 721 | case FIOASYNC: | |
| 722 | if ((tmp = *(int *)data)) | |
| 3c499555 | 723 | atomic_set_int(&fp->f_flag, FASYNC); |
| 984263bc | 724 | else |
| 3c499555 | 725 | atomic_clear_int(&fp->f_flag, FASYNC); |
| 87baaf0c | 726 | error = fo_ioctl(fp, FIOASYNC, (caddr_t)&tmp, cred, msg); |
| 984263bc MD |
727 | break; |
| 728 | ||
| 729 | default: | |
| a0c5fc96 JS |
730 | /* |
| 731 | * If there is a override function, | |
| 732 | * call it instead of directly routing the call | |
| 733 | */ | |
| 25b5b94d | 734 | if (map != NULL && iomc->wrapfunc != NULL) |
| 87de5057 | 735 | error = iomc->wrapfunc(fp, com, ocom, data, cred); |
| a0c5fc96 | 736 | else |
| 87baaf0c | 737 | error = fo_ioctl(fp, com, data, cred, msg); |
| 984263bc MD |
738 | /* |
| 739 | * Copy any data to user, size was | |
| 740 | * already set and checked above. | |
| 741 | */ | |
| a0c5fc96 | 742 | if (error == 0 && (com & IOC_OUT) != 0 && size != 0) |
| e54488bb | 743 | error = copyout(data, uspc_data, (size_t)size); |
| 984263bc MD |
744 | break; |
| 745 | } | |
| a0c5fc96 | 746 | if (memp != NULL) |
| efda3bd0 | 747 | kfree(memp, M_IOCTLOPS); |
| 228b401d | 748 | done: |
| 9f87144f | 749 | fdrop(fp); |
| a0c5fc96 JS |
750 | return(error); |
| 751 | } | |
| 752 | ||
| 3c499555 MD |
753 | /* |
| 754 | * MPSAFE | |
| 755 | */ | |
| a0c5fc96 JS |
756 | int |
| 757 | mapped_ioctl_register_handler(struct ioctl_map_handler *he) | |
| 758 | { | |
| 759 | struct ioctl_map_entry *ne; | |
| 760 | ||
| 761 | KKASSERT(he != NULL && he->map != NULL && he->cmd_ranges != NULL && | |
| 762 | he->subsys != NULL && *he->subsys != '\0'); | |
| 763 | ||
| 3c499555 MD |
764 | ne = kmalloc(sizeof(struct ioctl_map_entry), M_IOCTLMAP, |
| 765 | M_WAITOK | M_ZERO); | |
| a0c5fc96 JS |
766 | |
| 767 | ne->subsys = he->subsys; | |
| 768 | ne->cmd_ranges = he->cmd_ranges; | |
| 769 | ||
| 12586b82 | 770 | lwkt_gettoken(&mioctl_token); |
| a0c5fc96 | 771 | LIST_INSERT_HEAD(&he->map->mapping, ne, entries); |
| 12586b82 | 772 | lwkt_reltoken(&mioctl_token); |
| a0c5fc96 JS |
773 | |
| 774 | return(0); | |
| 775 | } | |
| 776 | ||
| 3c499555 MD |
777 | /* |
| 778 | * MPSAFE | |
| 779 | */ | |
| a0c5fc96 JS |
780 | int |
| 781 | mapped_ioctl_unregister_handler(struct ioctl_map_handler *he) | |
| 782 | { | |
| 783 | struct ioctl_map_entry *ne; | |
| 3c499555 | 784 | int error = EINVAL; |
| a0c5fc96 JS |
785 | |
| 786 | KKASSERT(he != NULL && he->map != NULL && he->cmd_ranges != NULL); | |
| 787 | ||
| 12586b82 | 788 | lwkt_gettoken(&mioctl_token); |
| a0c5fc96 | 789 | LIST_FOREACH(ne, &he->map->mapping, entries) { |
| 3c499555 MD |
790 | if (ne->cmd_ranges == he->cmd_ranges) { |
| 791 | LIST_REMOVE(ne, entries); | |
| 792 | kfree(ne, M_IOCTLMAP); | |
| 793 | error = 0; | |
| 794 | break; | |
| 795 | } | |
| a0c5fc96 | 796 | } |
| 12586b82 | 797 | lwkt_reltoken(&mioctl_token); |
| 3c499555 | 798 | return(error); |
| 984263bc MD |
799 | } |
| 800 | ||
| 801 | static int nselcoll; /* Select collisions since boot */ | |
| 802 | int selwait; | |
| 803 | SYSCTL_INT(_kern, OID_AUTO, nselcoll, CTLFLAG_RD, &nselcoll, 0, ""); | |
| fe24d605 MD |
804 | static int nseldebug; |
| 805 | SYSCTL_INT(_kern, OID_AUTO, nseldebug, CTLFLAG_RW, &nseldebug, 0, ""); | |
| 984263bc MD |
806 | |
| 807 | /* | |
| 808 | * Select system call. | |
| 3919ced0 | 809 | * |
| e5857bf7 | 810 | * MPSAFE |
| 984263bc | 811 | */ |
| 984263bc | 812 | int |
| 753fd850 | 813 | sys_select(struct select_args *uap) |
| 984263bc | 814 | { |
| ae7cb1b5 | 815 | struct timeval ktv; |
| e5857bf7 | 816 | struct timespec *ktsp, kts; |
| ae7cb1b5 NT |
817 | int error; |
| 818 | ||
| 819 | /* | |
| 820 | * Get timeout if any. | |
| 821 | */ | |
| 822 | if (uap->tv != NULL) { | |
| 823 | error = copyin(uap->tv, &ktv, sizeof (ktv)); | |
| 824 | if (error) | |
| 825 | return (error); | |
| e5857bf7 SG |
826 | TIMEVAL_TO_TIMESPEC(&ktv, &kts); |
| 827 | ktsp = &kts; | |
| ae7cb1b5 | 828 | } else { |
| e5857bf7 | 829 | ktsp = NULL; |
| ae7cb1b5 NT |
830 | } |
| 831 | ||
| 832 | /* | |
| 833 | * Do real work. | |
| 834 | */ | |
| e5857bf7 | 835 | error = doselect(uap->nd, uap->in, uap->ou, uap->ex, ktsp, |
| 8acdf1cf | 836 | &uap->sysmsg_result); |
| ae7cb1b5 NT |
837 | |
| 838 | return (error); | |
| 839 | } | |
| 840 | ||
| 841 | ||
| 842 | /* | |
| 843 | * Pselect system call. | |
| 3919ced0 MD |
844 | * |
| 845 | * MPALMOSTSAFE | |
| ae7cb1b5 NT |
846 | */ |
| 847 | int | |
| 848 | sys_pselect(struct pselect_args *uap) | |
| 849 | { | |
| 850 | struct thread *td = curthread; | |
| 851 | struct lwp *lp = td->td_lwp; | |
| e5857bf7 | 852 | struct timespec *ktsp, kts; |
| ae7cb1b5 NT |
853 | sigset_t sigmask; |
| 854 | int error; | |
| 855 | ||
| 856 | /* | |
| e5857bf7 | 857 | * Get timeout if any. |
| ae7cb1b5 NT |
858 | */ |
| 859 | if (uap->ts != NULL) { | |
| 860 | error = copyin(uap->ts, &kts, sizeof (kts)); | |
| 861 | if (error) | |
| 862 | return (error); | |
| e5857bf7 | 863 | ktsp = &kts; |
| ae7cb1b5 | 864 | } else { |
| e5857bf7 | 865 | ktsp = NULL; |
| ae7cb1b5 NT |
866 | } |
| 867 | ||
| 868 | /* | |
| 869 | * Install temporary signal mask if any provided. | |
| 870 | */ | |
| 871 | if (uap->sigmask != NULL) { | |
| 872 | error = copyin(uap->sigmask, &sigmask, sizeof(sigmask)); | |
| 873 | if (error) | |
| 874 | return (error); | |
| 3919ced0 | 875 | get_mplock(); |
| ae7cb1b5 NT |
876 | lp->lwp_oldsigmask = lp->lwp_sigmask; |
| 877 | SIG_CANTMASK(sigmask); | |
| 878 | lp->lwp_sigmask = sigmask; | |
| 3919ced0 MD |
879 | } else { |
| 880 | get_mplock(); | |
| ae7cb1b5 NT |
881 | } |
| 882 | ||
| 883 | /* | |
| 884 | * Do real job. | |
| 885 | */ | |
| e5857bf7 | 886 | error = doselect(uap->nd, uap->in, uap->ou, uap->ex, ktsp, |
| 8acdf1cf | 887 | &uap->sysmsg_result); |
| ae7cb1b5 NT |
888 | |
| 889 | if (uap->sigmask != NULL) { | |
| 890 | /* doselect() responsible for turning ERESTART into EINTR */ | |
| 891 | KKASSERT(error != ERESTART); | |
| 892 | if (error == EINTR) { | |
| 893 | /* | |
| 894 | * We can't restore the previous signal mask now | |
| 895 | * because it could block the signal that interrupted | |
| 896 | * us. So make a note to restore it after executing | |
| 897 | * the handler. | |
| 898 | */ | |
| 899 | lp->lwp_flag |= LWP_OLDMASK; | |
| 900 | } else { | |
| 901 | /* | |
| 902 | * No handler to run. Restore previous mask immediately. | |
| 903 | */ | |
| 904 | lp->lwp_sigmask = lp->lwp_oldsigmask; | |
| 905 | } | |
| 906 | } | |
| 3919ced0 | 907 | rel_mplock(); |
| ae7cb1b5 NT |
908 | |
| 909 | return (error); | |
| 910 | } | |
| 911 | ||
| e5857bf7 | 912 | static int |
| 8acdf1cf | 913 | select_copyin(void *arg, struct kevent *kevp, int maxevents, int *events) |
| e5857bf7 SG |
914 | { |
| 915 | struct select_kevent_copyin_args *skap = NULL; | |
| 8acdf1cf | 916 | struct kevent *kev; |
| e5857bf7 SG |
917 | int fd; |
| 918 | kfd_set *fdp = NULL; | |
| 919 | short filter = 0; | |
| 920 | u_int fflags = 0; | |
| 921 | ||
| 922 | skap = (struct select_kevent_copyin_args *)arg; | |
| 923 | ||
| 8acdf1cf MD |
924 | if (*events == maxevents) |
| 925 | return (0); | |
| 926 | ||
| e5857bf7 SG |
927 | while (skap->active_set < COPYIN_DONE) { |
| 928 | switch (skap->active_set) { | |
| 929 | case COPYIN_READ: | |
| 8acdf1cf MD |
930 | /* |
| 931 | * Register descriptors for the read filter | |
| 932 | */ | |
| e5857bf7 SG |
933 | fdp = skap->read_set; |
| 934 | filter = EVFILT_READ; | |
| 57b24f4e | 935 | fflags = NOTE_OLDAPI; |
| 8acdf1cf MD |
936 | if (fdp) |
| 937 | break; | |
| 938 | ++skap->active_set; | |
| 939 | skap->proc_fds = 0; | |
| 940 | /* fall through */ | |
| e5857bf7 | 941 | case COPYIN_WRITE: |
| 8acdf1cf MD |
942 | /* |
| 943 | * Register descriptors for the write filter | |
| 944 | */ | |
| e5857bf7 SG |
945 | fdp = skap->write_set; |
| 946 | filter = EVFILT_WRITE; | |
| 57b24f4e | 947 | fflags = NOTE_OLDAPI; |
| 8acdf1cf MD |
948 | if (fdp) |
| 949 | break; | |
| 950 | ++skap->active_set; | |
| 951 | skap->proc_fds = 0; | |
| 952 | /* fall through */ | |
| e5857bf7 | 953 | case COPYIN_EXCEPT: |
| 8acdf1cf MD |
954 | /* |
| 955 | * Register descriptors for the exception filter | |
| 956 | */ | |
| e5857bf7 | 957 | fdp = skap->except_set; |
| 73c344d3 | 958 | filter = EVFILT_EXCEPT; |
| 57b24f4e | 959 | fflags = NOTE_OLDAPI | NOTE_OOB; |
| 8acdf1cf MD |
960 | if (fdp) |
| 961 | break; | |
| 962 | ++skap->active_set; | |
| 963 | skap->proc_fds = 0; | |
| 964 | /* fall through */ | |
| 965 | case COPYIN_DONE: | |
| 966 | /* | |
| 967 | * Nothing left to register | |
| 968 | */ | |
| 969 | return(0); | |
| 970 | /* NOT REACHED */ | |
| e5857bf7 SG |
971 | } |
| 972 | ||
| 8acdf1cf MD |
973 | while (skap->proc_fds < skap->num_fds) { |
| 974 | fd = skap->proc_fds; | |
| e5857bf7 | 975 | if (FD_ISSET(fd, fdp)) { |
| 8acdf1cf MD |
976 | kev = &kevp[*events]; |
| 977 | EV_SET(kev, fd, filter, | |
| 978 | EV_ADD|EV_ENABLE, | |
| 979 | fflags, 0, | |
| b4372719 MD |
980 | (void *)(uintptr_t) |
| 981 | skap->lwp->lwp_kqueue_serial); | |
| e5857bf7 | 982 | FD_CLR(fd, fdp); |
| 8acdf1cf | 983 | ++*events; |
| 22690e50 SG |
984 | |
| 985 | if (nseldebug) | |
| 986 | kprintf("select fd %d filter %d serial %d\n", | |
| 987 | fd, filter, skap->lwp->lwp_kqueue_serial); | |
| e5857bf7 | 988 | } |
| 8acdf1cf MD |
989 | ++skap->proc_fds; |
| 990 | if (*events == maxevents) | |
| e5857bf7 SG |
991 | return (0); |
| 992 | } | |
| e5857bf7 SG |
993 | skap->active_set++; |
| 994 | skap->proc_fds = 0; | |
| 995 | } | |
| 996 | ||
| 997 | return (0); | |
| 998 | } | |
| 999 | ||
| 1000 | static int | |
| 1001 | select_copyout(void *arg, struct kevent *kevp, int count, int *res) | |
| 1002 | { | |
| 1003 | struct select_kevent_copyin_args *skap; | |
| 1004 | struct kevent kev; | |
| 73c344d3 | 1005 | int i = 0; |
| e5857bf7 SG |
1006 | |
| 1007 | skap = (struct select_kevent_copyin_args *)arg; | |
| 1008 | ||
| e5857bf7 | 1009 | for (i = 0; i < count; ++i) { |
| 22690e50 SG |
1010 | /* |
| 1011 | * Filter out and delete spurious events | |
| 1012 | */ | |
| b4372719 MD |
1013 | if ((u_int)(uintptr_t)kevp[i].udata != |
| 1014 | skap->lwp->lwp_kqueue_serial) { | |
| 8acdf1cf | 1015 | kev = kevp[i]; |
| e5857bf7 | 1016 | kev.flags = EV_DISABLE|EV_DELETE; |
| 8acdf1cf | 1017 | kqueue_register(&skap->lwp->lwp_kqueue, &kev); |
| 22690e50 | 1018 | if (nseldebug) |
| c9a1a153 SW |
1019 | kprintf("select fd %ju mismatched serial %d\n", |
| 1020 | (uintmax_t)kevp[i].ident, | |
| 1021 | skap->lwp->lwp_kqueue_serial); | |
| 22690e50 SG |
1022 | continue; |
| 1023 | } | |
| 1024 | ||
| 1025 | /* | |
| 1026 | * Handle errors | |
| 1027 | */ | |
| 1028 | if (kevp[i].flags & EV_ERROR) { | |
| 1029 | switch(kevp[i].data) { | |
| 1030 | case EBADF: | |
| 1031 | /* | |
| 1032 | * A bad file descriptor is considered a | |
| 1033 | * fatal error for select, bail out. | |
| 1034 | */ | |
| 1035 | skap->error = EBADF; | |
| 1036 | *res = 0; | |
| 1037 | return (1); | |
| 1038 | break; | |
| 1039 | default: | |
| 1040 | /* | |
| 1041 | * Select silently swallows any unknown errors | |
| 1042 | * for descriptors in the read or write sets. | |
| 4fbb9324 SG |
1043 | * |
| 1044 | * ALWAYS filter out EOPNOTSUPP errors from | |
| 1045 | * filters (at least until all filters support | |
| 1046 | * EVFILT_EXCEPT) | |
| 22690e50 SG |
1047 | */ |
| 1048 | if (kevp[i].filter != EVFILT_READ && | |
| 4fbb9324 SG |
1049 | kevp[i].filter != EVFILT_WRITE && |
| 1050 | kevp[i].data != EOPNOTSUPP) { | |
| 22690e50 SG |
1051 | skap->error = kevp[i].data; |
| 1052 | *res = 0; | |
| 1053 | return (1); | |
| 1054 | } | |
| 1055 | break; | |
| 1056 | } | |
| 1057 | if (nseldebug) | |
| c9a1a153 SW |
1058 | kprintf("select fd %ju filter %d error %jd\n", |
| 1059 | (uintmax_t)kevp[i].ident, | |
| 1060 | kevp[i].filter, | |
| 1061 | (intmax_t)kevp[i].data); | |
| e5857bf7 SG |
1062 | continue; |
| 1063 | } | |
| 1064 | ||
| 73c344d3 SG |
1065 | switch (kevp[i].filter) { |
| 1066 | case EVFILT_READ: | |
| e5857bf7 SG |
1067 | FD_SET(kevp[i].ident, skap->read_set); |
| 1068 | break; | |
| 73c344d3 | 1069 | case EVFILT_WRITE: |
| e5857bf7 SG |
1070 | FD_SET(kevp[i].ident, skap->write_set); |
| 1071 | break; | |
| 73c344d3 | 1072 | case EVFILT_EXCEPT: |
| e5857bf7 SG |
1073 | FD_SET(kevp[i].ident, skap->except_set); |
| 1074 | break; | |
| 1075 | } | |
| 1076 | ||
| 8acdf1cf | 1077 | ++*res; |
| e5857bf7 SG |
1078 | } |
| 1079 | ||
| 1080 | return (0); | |
| 1081 | } | |
| 1082 | ||
| ae7cb1b5 | 1083 | /* |
| 8acdf1cf MD |
1084 | * Copy select bits in from userland. Allocate kernel memory if the |
| 1085 | * set is large. | |
| 1086 | */ | |
| 1087 | static int | |
| 1088 | getbits(int bytes, fd_set *in_set, kfd_set **out_set, kfd_set *tmp_set) | |
| 1089 | { | |
| 1090 | int error; | |
| 1091 | ||
| 1092 | if (in_set) { | |
| 1093 | if (bytes < sizeof(*tmp_set)) | |
| 1094 | *out_set = tmp_set; | |
| 1095 | else | |
| 1096 | *out_set = kmalloc(bytes, M_SELECT, M_WAITOK); | |
| 1097 | error = copyin(in_set, *out_set, bytes); | |
| 1098 | } else { | |
| 1099 | *out_set = NULL; | |
| 1100 | error = 0; | |
| 1101 | } | |
| 1102 | return (error); | |
| 1103 | } | |
| 1104 | ||
| 1105 | /* | |
| 1106 | * Copy returned select bits back out to userland. | |
| 1107 | */ | |
| 1108 | static int | |
| 1109 | putbits(int bytes, kfd_set *in_set, fd_set *out_set) | |
| 1110 | { | |
| 1111 | int error; | |
| 1112 | ||
| 1113 | if (in_set) { | |
| 1114 | error = copyout(in_set, out_set, bytes); | |
| 1115 | } else { | |
| 1116 | error = 0; | |
| 1117 | } | |
| 1118 | return (error); | |
| 1119 | } | |
| 1120 | ||
| 1121 | /* | |
| ae7cb1b5 NT |
1122 | * Common code for sys_select() and sys_pselect(). |
| 1123 | * | |
| e5857bf7 | 1124 | * in, out and ex are userland pointers. ts must point to validated |
| ae7cb1b5 NT |
1125 | * kernel-side timeout value or NULL for infinite timeout. res must |
| 1126 | * point to syscall return value. | |
| 1127 | */ | |
| 1128 | static int | |
| e5857bf7 | 1129 | doselect(int nd, fd_set *read, fd_set *write, fd_set *except, |
| 8acdf1cf | 1130 | struct timespec *ts, int *res) |
| ae7cb1b5 | 1131 | { |
| 41c20dac | 1132 | struct proc *p = curproc; |
| e5857bf7 SG |
1133 | struct select_kevent_copyin_args *kap, ka; |
| 1134 | int bytes, error; | |
| 8acdf1cf MD |
1135 | kfd_set read_tmp; |
| 1136 | kfd_set write_tmp; | |
| 1137 | kfd_set except_tmp; | |
| 984263bc | 1138 | |
| 8acdf1cf | 1139 | *res = 0; |
| ae7cb1b5 | 1140 | if (nd < 0) |
| 984263bc | 1141 | return (EINVAL); |
| 679058fb MD |
1142 | if (nd > p->p_fd->fd_nfiles) /* limit kmalloc */ |
| 1143 | nd = p->p_fd->fd_nfiles; | |
| 984263bc | 1144 | |
| e5857bf7 SG |
1145 | kap = &ka; |
| 1146 | kap->lwp = curthread->td_lwp; | |
| 1147 | kap->num_fds = nd; | |
| 1148 | kap->proc_fds = 0; | |
| 1149 | kap->error = 0; | |
| 8acdf1cf | 1150 | kap->active_set = COPYIN_READ; |
| e6f31a83 | 1151 | |
| 8acdf1cf MD |
1152 | /* |
| 1153 | * Calculate bytes based on the number of __fd_mask[] array entries | |
| 1154 | * multiplied by the size of __fd_mask. | |
| 1155 | */ | |
| 1156 | bytes = howmany(nd, __NFDBITS) * sizeof(__fd_mask); | |
| 984263bc | 1157 | |
| d0d4a734 MD |
1158 | /* kap->read_set = NULL; not needed */ |
| 1159 | kap->write_set = NULL; | |
| 1160 | kap->except_set = NULL; | |
| 1161 | ||
| 8acdf1cf MD |
1162 | error = getbits(bytes, read, &kap->read_set, &read_tmp); |
| 1163 | if (error == 0) | |
| 1164 | error = getbits(bytes, write, &kap->write_set, &write_tmp); | |
| 1165 | if (error == 0) | |
| 1166 | error = getbits(bytes, except, &kap->except_set, &except_tmp); | |
| e5857bf7 | 1167 | if (error) |
| 8acdf1cf MD |
1168 | goto done; |
| 1169 | ||
| 1170 | /* | |
| 1171 | * NOTE: Make sure the max events passed to kern_kevent() is | |
| 1172 | * effectively unlimited. (nd * 3) accomplishes this. | |
| 1173 | * | |
| 1174 | * (*res) continues to increment as returned events are | |
| 1175 | * loaded in. | |
| 1176 | */ | |
| 679058fb | 1177 | error = kern_kevent(&kap->lwp->lwp_kqueue, 0x7FFFFFFF, res, kap, |
| 8acdf1cf MD |
1178 | select_copyin, select_copyout, ts); |
| 1179 | if (error == 0) | |
| 1180 | error = putbits(bytes, kap->read_set, read); | |
| 1181 | if (error == 0) | |
| 1182 | error = putbits(bytes, kap->write_set, write); | |
| 1183 | if (error == 0) | |
| 1184 | error = putbits(bytes, kap->except_set, except); | |
| 984263bc | 1185 | |
| 8acdf1cf | 1186 | /* |
| 22690e50 SG |
1187 | * An error from an individual event that should be passed |
| 1188 | * back to userland (EBADF) | |
| 8acdf1cf MD |
1189 | */ |
| 1190 | if (kap->error) | |
| 1191 | error = kap->error; | |
| e5857bf7 | 1192 | |
| 8acdf1cf MD |
1193 | /* |
| 1194 | * Clean up. | |
| 1195 | */ | |
| 1196 | done: | |
| 1197 | if (kap->read_set && kap->read_set != &read_tmp) | |
| 1198 | kfree(kap->read_set, M_SELECT); | |
| 1199 | if (kap->write_set && kap->write_set != &write_tmp) | |
| 1200 | kfree(kap->write_set, M_SELECT); | |
| 1201 | if (kap->except_set && kap->except_set != &except_tmp) | |
| 1202 | kfree(kap->except_set, M_SELECT); | |
| 1203 | ||
| 22690e50 | 1204 | kap->lwp->lwp_kqueue_serial += kap->num_fds; |
| 73c344d3 | 1205 | |
| e5857bf7 | 1206 | return (error); |
| 984263bc MD |
1207 | } |
| 1208 | ||
| 1209 | /* | |
| 1210 | * Poll system call. | |
| 3919ced0 | 1211 | * |
| 7fbfbe29 | 1212 | * MPSAFE |
| 984263bc | 1213 | */ |
| 984263bc | 1214 | int |
| 753fd850 | 1215 | sys_poll(struct poll_args *uap) |
| 984263bc | 1216 | { |
| 7fbfbe29 SG |
1217 | struct timespec ts, *tsp; |
| 1218 | int error; | |
| 984263bc | 1219 | |
| ab2eb4eb | 1220 | if (uap->timeout != INFTIM) { |
| 7fbfbe29 SG |
1221 | ts.tv_sec = uap->timeout / 1000; |
| 1222 | ts.tv_nsec = (uap->timeout % 1000) * 1000 * 1000; | |
| 1223 | tsp = &ts; | |
| 984263bc | 1224 | } else { |
| 7fbfbe29 | 1225 | tsp = NULL; |
| 984263bc | 1226 | } |
| e6f31a83 | 1227 | |
| 7fbfbe29 SG |
1228 | error = dopoll(uap->nfds, uap->fds, tsp, &uap->sysmsg_result); |
| 1229 | ||
| 984263bc MD |
1230 | return (error); |
| 1231 | } | |
| 1232 | ||
| 1233 | static int | |
| 7fbfbe29 | 1234 | poll_copyin(void *arg, struct kevent *kevp, int maxevents, int *events) |
| 984263bc | 1235 | { |
| 7fbfbe29 SG |
1236 | struct poll_kevent_copyin_args *pkap; |
| 1237 | struct pollfd *pfd; | |
| 1238 | struct kevent *kev; | |
| 1239 | int kev_count; | |
| 1240 | ||
| 1241 | pkap = (struct poll_kevent_copyin_args *)arg; | |
| 1242 | ||
| 1243 | while (pkap->pfds < pkap->nfds) { | |
| 1244 | pfd = &pkap->fds[pkap->pfds]; | |
| 1245 | ||
| 1246 | /* Clear return events */ | |
| 1247 | pfd->revents = 0; | |
| 1248 | ||
| ffdd7c7c SG |
1249 | /* Do not check if fd is equal to -1 */ |
| 1250 | if (pfd->fd == -1) { | |
| 1251 | ++pkap->pfds; | |
| 1252 | continue; | |
| 1253 | } | |
| 1254 | ||
| 7fbfbe29 SG |
1255 | kev_count = 0; |
| 1256 | if (pfd->events & (POLLIN | POLLRDNORM)) | |
| 1257 | kev_count++; | |
| 1258 | if (pfd->events & (POLLOUT | POLLWRNORM)) | |
| 1259 | kev_count++; | |
| 1260 | if (pfd->events & (POLLPRI | POLLRDBAND)) | |
| 1261 | kev_count++; | |
| 1262 | ||
| 1263 | if (*events + kev_count > maxevents) | |
| 1264 | return (0); | |
| 1265 | ||
| fe24d605 MD |
1266 | /* |
| 1267 | * NOTE: A combined serial number and poll array index is | |
| 1268 | * stored in kev->udata. | |
| 1269 | */ | |
| 7fbfbe29 | 1270 | kev = &kevp[*events]; |
| fe24d605 | 1271 | if (pfd->events & (POLLIN | POLLRDNORM)) { |
| 7fbfbe29 | 1272 | EV_SET(kev++, pfd->fd, EVFILT_READ, EV_ADD|EV_ENABLE, |
| 57b24f4e | 1273 | NOTE_OLDAPI, 0, (void *)(uintptr_t) |
| b4372719 | 1274 | (pkap->lwp->lwp_kqueue_serial + pkap->pfds)); |
| fe24d605 MD |
1275 | } |
| 1276 | if (pfd->events & (POLLOUT | POLLWRNORM)) { | |
| 7fbfbe29 | 1277 | EV_SET(kev++, pfd->fd, EVFILT_WRITE, EV_ADD|EV_ENABLE, |
| 57b24f4e | 1278 | NOTE_OLDAPI, 0, (void *)(uintptr_t) |
| b4372719 | 1279 | (pkap->lwp->lwp_kqueue_serial + pkap->pfds)); |
| fe24d605 MD |
1280 | } |
| 1281 | if (pfd->events & (POLLPRI | POLLRDBAND)) { | |
| 7fbfbe29 | 1282 | EV_SET(kev++, pfd->fd, EVFILT_EXCEPT, EV_ADD|EV_ENABLE, |
| 57b24f4e | 1283 | NOTE_OLDAPI | NOTE_OOB, 0, |
| b4372719 MD |
1284 | (void *)(uintptr_t) |
| 1285 | (pkap->lwp->lwp_kqueue_serial + pkap->pfds)); | |
| fe24d605 MD |
1286 | } |
| 1287 | ||
| 1288 | if (nseldebug) { | |
| 21ae0f4c SG |
1289 | kprintf("poll index %d/%d fd %d events %08x serial %d\n", |
| 1290 | pkap->pfds, pkap->nfds-1, pfd->fd, pfd->events, | |
| 1291 | pkap->lwp->lwp_kqueue_serial); | |
| fe24d605 | 1292 | } |
| 7fbfbe29 SG |
1293 | |
| 1294 | ++pkap->pfds; | |
| 1295 | (*events) += kev_count; | |
| 1296 | } | |
| 1297 | ||
| 1298 | return (0); | |
| 1299 | } | |
| 1300 | ||
| 1301 | static int | |
| 1302 | poll_copyout(void *arg, struct kevent *kevp, int count, int *res) | |
| 1303 | { | |
| 1304 | struct poll_kevent_copyin_args *pkap; | |
| 1305 | struct pollfd *pfd; | |
| 1306 | struct kevent kev; | |
| 8c4ed426 | 1307 | int count_res; |
| 984263bc | 1308 | int i; |
| fe24d605 | 1309 | u_int pi; |
| 7fbfbe29 SG |
1310 | |
| 1311 | pkap = (struct poll_kevent_copyin_args *)arg; | |
| 1312 | ||
| 1313 | for (i = 0; i < count; ++i) { | |
| fe24d605 MD |
1314 | /* |
| 1315 | * Extract the poll array index and delete spurious events. | |
| 1316 | * We can easily tell if the serial number is incorrect | |
| 1317 | * by checking whether the extracted index is out of range. | |
| 1318 | */ | |
| b4372719 MD |
1319 | pi = (u_int)(uintptr_t)kevp[i].udata - |
| 1320 | (u_int)pkap->lwp->lwp_kqueue_serial; | |
| ffdd7c7c | 1321 | |
| fe24d605 MD |
1322 | if (pi >= pkap->nfds) { |
| 1323 | kev = kevp[i]; | |
| 1324 | kev.flags = EV_DISABLE|EV_DELETE; | |
| 1325 | kqueue_register(&pkap->lwp->lwp_kqueue, &kev); | |
| 1326 | if (nseldebug) | |
| 21ae0f4c SG |
1327 | kprintf("poll index %d out of range against serial %d\n", |
| 1328 | pi, pkap->lwp->lwp_kqueue_serial); | |
| fe24d605 MD |
1329 | continue; |
| 1330 | } | |
| 1331 | pfd = &pkap->fds[pi]; | |
| 1332 | if (kevp[i].ident == pfd->fd) { | |
| 3c2a46a7 SG |
1333 | /* |
| 1334 | * A single descriptor may generate an error against | |
| 8c4ed426 MD |
1335 | * more than one filter, make sure to set the |
| 1336 | * appropriate flags but do not increment (*res) | |
| 1337 | * more than once. | |
| 3c2a46a7 | 1338 | */ |
| 8c4ed426 | 1339 | count_res = (pfd->revents == 0); |
| fe24d605 MD |
1340 | if (kevp[i].flags & EV_ERROR) { |
| 1341 | switch(kevp[i].data) { | |
| fe24d605 MD |
1342 | case EBADF: |
| 1343 | /* Bad file descriptor */ | |
| 8c4ed426 | 1344 | if (count_res) |
| 3c2a46a7 | 1345 | ++*res; |
| fe24d605 | 1346 | pfd->revents |= POLLNVAL; |
| 7fbfbe29 | 1347 | break; |
| fe24d605 | 1348 | default: |
| 22690e50 SG |
1349 | /* |
| 1350 | * Poll silently swallows any unknown | |
| 1351 | * errors except in the case of POLLPRI | |
| 1352 | * (OOB/urgent data). | |
| 2b7d1884 SG |
1353 | * |
| 1354 | * ALWAYS filter out EOPNOTSUPP errors | |
| 1355 | * from filters, common applications | |
| 1356 | * set POLLPRI|POLLRDBAND and most | |
| 1357 | * filters do not support EVFILT_EXCEPT. | |
| 22690e50 SG |
1358 | */ |
| 1359 | if (kevp[i].filter != EVFILT_READ && | |
| 2b7d1884 SG |
1360 | kevp[i].filter != EVFILT_WRITE && |
| 1361 | kevp[i].data != EOPNOTSUPP) { | |
| 8c4ed426 | 1362 | if (count_res == 0) |
| 22690e50 SG |
1363 | ++*res; |
| 1364 | pfd->revents |= POLLERR; | |
| 1365 | } | |
| 7fbfbe29 SG |
1366 | break; |
| 1367 | } | |
| b4372719 MD |
1368 | if (nseldebug) { |
| 1369 | kprintf("poll index %d fd %d " | |
| c9a1a153 | 1370 | "filter %d error %jd\n", |
| fe24d605 | 1371 | pi, pfd->fd, |
| b4372719 | 1372 | kevp[i].filter, |
| c9a1a153 | 1373 | (intmax_t)kevp[i].data); |
| b4372719 | 1374 | } |
| fe24d605 MD |
1375 | continue; |
| 1376 | } | |
| 7fbfbe29 | 1377 | |
| fe24d605 MD |
1378 | switch (kevp[i].filter) { |
| 1379 | case EVFILT_READ: | |
| 9a5d20db MD |
1380 | #if 0 |
| 1381 | /* | |
| 1382 | * EOF on the read side can indicate a | |
| 1383 | * half-closed situation and not necessarily | |
| 1384 | * a disconnect, so depend on the user | |
| 1385 | * issuing a read() and getting 0 bytes back. | |
| 1386 | */ | |
| 1387 | if (kevp[i].flags & EV_EOF) | |
| 1388 | pfd->revents |= POLLHUP; | |
| 1389 | #endif | |
| 484efec7 SG |
1390 | if (pfd->events & POLLIN) |
| 1391 | pfd->revents |= POLLIN; | |
| 1392 | if (pfd->events & POLLRDNORM) | |
| 1393 | pfd->revents |= POLLRDNORM; | |
| fe24d605 MD |
1394 | break; |
| 1395 | case EVFILT_WRITE: | |
| 9a5d20db MD |
1396 | /* |
| 1397 | * As per the OpenGroup POLLHUP is mutually | |
| 1398 | * exclusive with the writability flags. I | |
| 1399 | * consider this a bit broken but... | |
| 1400 | * | |
| 1401 | * In this case a disconnect is implied even | |
| 1402 | * for a half-closed (write side) situation. | |
| 1403 | */ | |
| 1404 | if (kevp[i].flags & EV_EOF) { | |
| 1405 | pfd->revents |= POLLHUP; | |
| 1406 | } else { | |
| 1407 | if (pfd->events & POLLOUT) | |
| 1408 | pfd->revents |= POLLOUT; | |
| 1409 | if (pfd->events & POLLWRNORM) | |
| 1410 | pfd->revents |= POLLWRNORM; | |
| 1411 | } | |
| fe24d605 MD |
1412 | break; |
| 1413 | case EVFILT_EXCEPT: | |
| 9a5d20db MD |
1414 | /* |
| 1415 | * EV_EOF should never be tagged for this | |
| 1416 | * filter. | |
| 1417 | */ | |
| 484efec7 SG |
1418 | if (pfd->events & POLLPRI) |
| 1419 | pfd->revents |= POLLPRI; | |
| 1420 | if (pfd->events & POLLRDBAND) | |
| 1421 | pfd->revents |= POLLRDBAND; | |
| fe24d605 MD |
1422 | break; |
| 1423 | } | |
| 1424 | ||
| 1425 | if (nseldebug) { | |
| 21ae0f4c SG |
1426 | kprintf("poll index %d/%d fd %d revents %08x\n", |
| 1427 | pi, pkap->nfds, pfd->fd, pfd->revents); | |
| fe24d605 MD |
1428 | } |
| 1429 | ||
| 8c4ed426 MD |
1430 | if (count_res && pfd->revents) |
| 1431 | ++*res; | |
| fe24d605 | 1432 | } else { |
| b4372719 | 1433 | if (nseldebug) { |
| c9a1a153 SW |
1434 | kprintf("poll index %d mismatch %ju/%d\n", |
| 1435 | pi, (uintmax_t)kevp[i].ident, pfd->fd); | |
| b4372719 | 1436 | } |
| fe24d605 | 1437 | } |
| 984263bc | 1438 | } |
| 7fbfbe29 | 1439 | |
| 984263bc MD |
1440 | return (0); |
| 1441 | } | |
| 1442 | ||
| 7fbfbe29 SG |
1443 | static int |
| 1444 | dopoll(int nfds, struct pollfd *fds, struct timespec *ts, int *res) | |
| 1445 | { | |
| 7fbfbe29 SG |
1446 | struct poll_kevent_copyin_args ka; |
| 1447 | struct pollfd sfds[64]; | |
| 679058fb | 1448 | int bytes; |
| 7fbfbe29 SG |
1449 | int error; |
| 1450 | ||
| 1451 | *res = 0; | |
| 1452 | if (nfds < 0) | |
| 1453 | return (EINVAL); | |
| 679058fb MD |
1454 | |
| 1455 | /* | |
| 1456 | * This is a bit arbitrary but we need to limit internal kmallocs. | |
| 1457 | */ | |
| 1458 | if (nfds > maxfilesperproc * 2) | |
| 1459 | nfds = maxfilesperproc * 2; | |
| 1460 | bytes = sizeof(struct pollfd) * nfds; | |
| 7fbfbe29 SG |
1461 | |
| 1462 | ka.lwp = curthread->td_lwp; | |
| 1463 | ka.nfds = nfds; | |
| 1464 | ka.pfds = 0; | |
| 1465 | ka.error = 0; | |
| 1466 | ||
| 1467 | if (ka.nfds < 64) | |
| 1468 | ka.fds = sfds; | |
| 1469 | else | |
| 1470 | ka.fds = kmalloc(bytes, M_SELECT, M_WAITOK); | |
| 1471 | ||
| 679058fb | 1472 | error = copyin(fds, ka.fds, bytes); |
| 7fbfbe29 | 1473 | if (error == 0) |
| 3c2a46a7 | 1474 | error = kern_kevent(&ka.lwp->lwp_kqueue, 0x7FFFFFFF, res, &ka, |
| 7fbfbe29 SG |
1475 | poll_copyin, poll_copyout, ts); |
| 1476 | ||
| 1477 | if (error == 0) | |
| 679058fb | 1478 | error = copyout(ka.fds, fds, bytes); |
| 7fbfbe29 SG |
1479 | |
| 1480 | if (ka.fds != sfds) | |
| 1481 | kfree(ka.fds, M_SELECT); | |
| 1482 | ||
| fe24d605 MD |
1483 | ka.lwp->lwp_kqueue_serial += nfds; |
| 1484 | ||
| 7fbfbe29 SG |
1485 | return (error); |
| 1486 | } | |
| 1487 | ||
| 8b5c39bb SG |
1488 | static int |
| 1489 | socket_wait_copyin(void *arg, struct kevent *kevp, int maxevents, int *events) | |
| 1490 | { | |
| 1491 | return (0); | |
| 1492 | } | |
| 1493 | ||
| 1494 | static int | |
| 1495 | socket_wait_copyout(void *arg, struct kevent *kevp, int count, int *res) | |
| 1496 | { | |
| 1497 | ++*res; | |
| 1498 | return (0); | |
| 1499 | } | |
| 1500 | ||
| 1501 | extern struct fileops socketops; | |
| 1502 | int | |
| 1503 | socket_wait(struct socket *so, struct timespec *ts, int *res) | |
| 1504 | { | |
| ac62ea3c | 1505 | struct thread *td = curthread; |
| 8b5c39bb | 1506 | struct file *fp; |
| 8b5c39bb SG |
1507 | struct kqueue kq; |
| 1508 | struct kevent kev; | |
| ac62ea3c | 1509 | int error, fd; |
| 8b5c39bb | 1510 | |
| ac62ea3c | 1511 | if ((error = falloc(td->td_lwp, &fp, &fd)) != 0) |
| 8b5c39bb SG |
1512 | return (error); |
| 1513 | ||
| ac62ea3c SG |
1514 | fp->f_type = DTYPE_SOCKET; |
| 1515 | fp->f_flag = FREAD | FWRITE; | |
| 8b5c39bb SG |
1516 | fp->f_ops = &socketops; |
| 1517 | fp->f_data = so; | |
| ac62ea3c | 1518 | fsetfd(td->td_lwp->lwp_proc->p_fd, fp, fd); |
| 8b5c39bb | 1519 | |
| ac62ea3c SG |
1520 | kqueue_init(&kq, td->td_lwp->lwp_proc->p_fd); |
| 1521 | EV_SET(&kev, fd, EVFILT_READ, EV_ADD|EV_ENABLE, 0, 0, NULL); | |
| 8b5c39bb SG |
1522 | if ((error = kqueue_register(&kq, &kev)) != 0) { |
| 1523 | fdrop(fp); | |
| 1524 | return (error); | |
| 1525 | } | |
| 1526 | ||
| 1527 | error = kern_kevent(&kq, 1, res, NULL, socket_wait_copyin, | |
| 1528 | socket_wait_copyout, ts); | |
| ac62ea3c SG |
1529 | |
| 1530 | EV_SET(&kev, fd, EVFILT_READ, EV_DELETE, 0, 0, NULL); | |
| 1531 | kqueue_register(&kq, &kev); | |
| 1532 | fp->f_ops = &badfileops; | |
| 8b5c39bb SG |
1533 | fdrop(fp); |
| 1534 | ||
| 1535 | return (error); | |
| 1536 | } | |
| 1537 | ||
| 984263bc MD |
1538 | /* |
| 1539 | * OpenBSD poll system call. | |
| 1540 | * XXX this isn't quite a true representation.. OpenBSD uses select ops. | |
| 3919ced0 MD |
1541 | * |
| 1542 | * MPSAFE | |
| 984263bc | 1543 | */ |
| 984263bc | 1544 | int |
| 753fd850 | 1545 | sys_openbsd_poll(struct openbsd_poll_args *uap) |
| 984263bc | 1546 | { |
| 753fd850 | 1547 | return (sys_poll((struct poll_args *)uap)); |
| 984263bc MD |
1548 | } |
| 1549 | ||
| 1550 | /*ARGSUSED*/ | |
| 1551 | int | |
| b13267a5 | 1552 | seltrue(cdev_t dev, int events) |
| 984263bc | 1553 | { |
| 984263bc MD |
1554 | return (events & (POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM)); |
| 1555 | } |