cxgbe/t4_tom: Read the chip's DDP page sizes and save them in a
[freebsd-src.git] / sys / kern / subr_uio.c
blobb2297f3dd9bbf01dfa42e6f820c0db2604d89e21
1 /*-
2 * Copyright (c) 1982, 1986, 1991, 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.
10 * Copyright (c) 2014 The FreeBSD Foundation
12 * Portions of this software were developed by Konstantin Belousov
13 * under sponsorship from the FreeBSD Foundation.
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions
17 * are met:
18 * 1. Redistributions of source code must retain the above copyright
19 * notice, this list of conditions and the following disclaimer.
20 * 2. Redistributions in binary form must reproduce the above copyright
21 * notice, this list of conditions and the following disclaimer in the
22 * documentation and/or other materials provided with the distribution.
23 * 4. Neither the name of the University nor the names of its contributors
24 * may be used to endorse or promote products derived from this software
25 * without specific prior written permission.
27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
39 * @(#)kern_subr.c 8.3 (Berkeley) 1/21/94
42 #include <sys/cdefs.h>
43 __FBSDID("$FreeBSD$");
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/kernel.h>
48 #include <sys/limits.h>
49 #include <sys/lock.h>
50 #include <sys/mman.h>
51 #include <sys/proc.h>
52 #include <sys/resourcevar.h>
53 #include <sys/rwlock.h>
54 #include <sys/sched.h>
55 #include <sys/sysctl.h>
56 #include <sys/vnode.h>
58 #include <vm/vm.h>
59 #include <vm/vm_param.h>
60 #include <vm/vm_extern.h>
61 #include <vm/vm_page.h>
62 #include <vm/vm_pageout.h>
63 #include <vm/vm_map.h>
65 #include <machine/bus.h>
67 SYSCTL_INT(_kern, KERN_IOV_MAX, iov_max, CTLFLAG_RD, SYSCTL_NULL_INT_PTR, UIO_MAXIOV,
68 "Maximum number of elements in an I/O vector; sysconf(_SC_IOV_MAX)");
70 static int uiomove_faultflag(void *cp, int n, struct uio *uio, int nofault);
72 int
73 copyin_nofault(const void *udaddr, void *kaddr, size_t len)
75 int error, save;
77 save = vm_fault_disable_pagefaults();
78 error = copyin(udaddr, kaddr, len);
79 vm_fault_enable_pagefaults(save);
80 return (error);
83 int
84 copyout_nofault(const void *kaddr, void *udaddr, size_t len)
86 int error, save;
88 save = vm_fault_disable_pagefaults();
89 error = copyout(kaddr, udaddr, len);
90 vm_fault_enable_pagefaults(save);
91 return (error);
94 #define PHYS_PAGE_COUNT(len) (howmany(len, PAGE_SIZE) + 1)
96 int
97 physcopyin(void *src, vm_paddr_t dst, size_t len)
99 vm_page_t m[PHYS_PAGE_COUNT(len)];
100 struct iovec iov[1];
101 struct uio uio;
102 int i;
104 iov[0].iov_base = src;
105 iov[0].iov_len = len;
106 uio.uio_iov = iov;
107 uio.uio_iovcnt = 1;
108 uio.uio_offset = 0;
109 uio.uio_resid = len;
110 uio.uio_segflg = UIO_SYSSPACE;
111 uio.uio_rw = UIO_WRITE;
112 for (i = 0; i < PHYS_PAGE_COUNT(len); i++, dst += PAGE_SIZE)
113 m[i] = PHYS_TO_VM_PAGE(dst);
114 return (uiomove_fromphys(m, dst & PAGE_MASK, len, &uio));
118 physcopyout(vm_paddr_t src, void *dst, size_t len)
120 vm_page_t m[PHYS_PAGE_COUNT(len)];
121 struct iovec iov[1];
122 struct uio uio;
123 int i;
125 iov[0].iov_base = dst;
126 iov[0].iov_len = len;
127 uio.uio_iov = iov;
128 uio.uio_iovcnt = 1;
129 uio.uio_offset = 0;
130 uio.uio_resid = len;
131 uio.uio_segflg = UIO_SYSSPACE;
132 uio.uio_rw = UIO_READ;
133 for (i = 0; i < PHYS_PAGE_COUNT(len); i++, src += PAGE_SIZE)
134 m[i] = PHYS_TO_VM_PAGE(src);
135 return (uiomove_fromphys(m, src & PAGE_MASK, len, &uio));
138 #undef PHYS_PAGE_COUNT
141 physcopyin_vlist(bus_dma_segment_t *src, off_t offset, vm_paddr_t dst,
142 size_t len)
144 size_t seg_len;
145 int error;
147 error = 0;
148 while (offset >= src->ds_len) {
149 offset -= src->ds_len;
150 src++;
153 while (len > 0 && error == 0) {
154 seg_len = MIN(src->ds_len - offset, len);
155 error = physcopyin((void *)(uintptr_t)(src->ds_addr + offset),
156 dst, seg_len);
157 offset = 0;
158 src++;
159 len -= seg_len;
160 dst += seg_len;
163 return (error);
167 physcopyout_vlist(vm_paddr_t src, bus_dma_segment_t *dst, off_t offset,
168 size_t len)
170 size_t seg_len;
171 int error;
173 error = 0;
174 while (offset >= dst->ds_len) {
175 offset -= dst->ds_len;
176 dst++;
179 while (len > 0 && error == 0) {
180 seg_len = MIN(dst->ds_len - offset, len);
181 error = physcopyout(src, (void *)(uintptr_t)(dst->ds_addr +
182 offset), seg_len);
183 offset = 0;
184 dst++;
185 len -= seg_len;
186 src += seg_len;
189 return (error);
193 uiomove(void *cp, int n, struct uio *uio)
196 return (uiomove_faultflag(cp, n, uio, 0));
200 uiomove_nofault(void *cp, int n, struct uio *uio)
203 return (uiomove_faultflag(cp, n, uio, 1));
206 static int
207 uiomove_faultflag(void *cp, int n, struct uio *uio, int nofault)
209 struct thread *td;
210 struct iovec *iov;
211 size_t cnt;
212 int error, newflags, save;
214 td = curthread;
215 error = 0;
217 KASSERT(uio->uio_rw == UIO_READ || uio->uio_rw == UIO_WRITE,
218 ("uiomove: mode"));
219 KASSERT(uio->uio_segflg != UIO_USERSPACE || uio->uio_td == td,
220 ("uiomove proc"));
221 if (!nofault)
222 WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK, NULL,
223 "Calling uiomove()");
225 /* XXX does it make a sense to set TDP_DEADLKTREAT for UIO_SYSSPACE ? */
226 newflags = TDP_DEADLKTREAT;
227 if (uio->uio_segflg == UIO_USERSPACE && nofault) {
229 * Fail if a non-spurious page fault occurs.
231 newflags |= TDP_NOFAULTING | TDP_RESETSPUR;
233 save = curthread_pflags_set(newflags);
235 while (n > 0 && uio->uio_resid) {
236 iov = uio->uio_iov;
237 cnt = iov->iov_len;
238 if (cnt == 0) {
239 uio->uio_iov++;
240 uio->uio_iovcnt--;
241 continue;
243 if (cnt > n)
244 cnt = n;
246 switch (uio->uio_segflg) {
248 case UIO_USERSPACE:
249 maybe_yield();
250 if (uio->uio_rw == UIO_READ)
251 error = copyout(cp, iov->iov_base, cnt);
252 else
253 error = copyin(iov->iov_base, cp, cnt);
254 if (error)
255 goto out;
256 break;
258 case UIO_SYSSPACE:
259 if (uio->uio_rw == UIO_READ)
260 bcopy(cp, iov->iov_base, cnt);
261 else
262 bcopy(iov->iov_base, cp, cnt);
263 break;
264 case UIO_NOCOPY:
265 break;
267 iov->iov_base = (char *)iov->iov_base + cnt;
268 iov->iov_len -= cnt;
269 uio->uio_resid -= cnt;
270 uio->uio_offset += cnt;
271 cp = (char *)cp + cnt;
272 n -= cnt;
274 out:
275 curthread_pflags_restore(save);
276 return (error);
280 * Wrapper for uiomove() that validates the arguments against a known-good
281 * kernel buffer. Currently, uiomove accepts a signed (n) argument, which
282 * is almost definitely a bad thing, so we catch that here as well. We
283 * return a runtime failure, but it might be desirable to generate a runtime
284 * assertion failure instead.
287 uiomove_frombuf(void *buf, int buflen, struct uio *uio)
289 size_t offset, n;
291 if (uio->uio_offset < 0 || uio->uio_resid < 0 ||
292 (offset = uio->uio_offset) != uio->uio_offset)
293 return (EINVAL);
294 if (buflen <= 0 || offset >= buflen)
295 return (0);
296 if ((n = buflen - offset) > IOSIZE_MAX)
297 return (EINVAL);
298 return (uiomove((char *)buf + offset, n, uio));
302 * Give next character to user as result of read.
305 ureadc(int c, struct uio *uio)
307 struct iovec *iov;
308 char *iov_base;
310 WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK, NULL,
311 "Calling ureadc()");
313 again:
314 if (uio->uio_iovcnt == 0 || uio->uio_resid == 0)
315 panic("ureadc");
316 iov = uio->uio_iov;
317 if (iov->iov_len == 0) {
318 uio->uio_iovcnt--;
319 uio->uio_iov++;
320 goto again;
322 switch (uio->uio_segflg) {
324 case UIO_USERSPACE:
325 if (subyte(iov->iov_base, c) < 0)
326 return (EFAULT);
327 break;
329 case UIO_SYSSPACE:
330 iov_base = iov->iov_base;
331 *iov_base = c;
332 break;
334 case UIO_NOCOPY:
335 break;
337 iov->iov_base = (char *)iov->iov_base + 1;
338 iov->iov_len--;
339 uio->uio_resid--;
340 uio->uio_offset++;
341 return (0);
345 copyinfrom(const void * __restrict src, void * __restrict dst, size_t len,
346 int seg)
348 int error = 0;
350 switch (seg) {
351 case UIO_USERSPACE:
352 error = copyin(src, dst, len);
353 break;
354 case UIO_SYSSPACE:
355 bcopy(src, dst, len);
356 break;
357 default:
358 panic("copyinfrom: bad seg %d\n", seg);
360 return (error);
364 copyinstrfrom(const void * __restrict src, void * __restrict dst, size_t len,
365 size_t * __restrict copied, int seg)
367 int error = 0;
369 switch (seg) {
370 case UIO_USERSPACE:
371 error = copyinstr(src, dst, len, copied);
372 break;
373 case UIO_SYSSPACE:
374 error = copystr(src, dst, len, copied);
375 break;
376 default:
377 panic("copyinstrfrom: bad seg %d\n", seg);
379 return (error);
383 copyiniov(const struct iovec *iovp, u_int iovcnt, struct iovec **iov, int error)
385 u_int iovlen;
387 *iov = NULL;
388 if (iovcnt > UIO_MAXIOV)
389 return (error);
390 iovlen = iovcnt * sizeof (struct iovec);
391 *iov = malloc(iovlen, M_IOV, M_WAITOK);
392 error = copyin(iovp, *iov, iovlen);
393 if (error) {
394 free(*iov, M_IOV);
395 *iov = NULL;
397 return (error);
401 copyinuio(const struct iovec *iovp, u_int iovcnt, struct uio **uiop)
403 struct iovec *iov;
404 struct uio *uio;
405 u_int iovlen;
406 int error, i;
408 *uiop = NULL;
409 if (iovcnt > UIO_MAXIOV)
410 return (EINVAL);
411 iovlen = iovcnt * sizeof (struct iovec);
412 uio = malloc(iovlen + sizeof *uio, M_IOV, M_WAITOK);
413 iov = (struct iovec *)(uio + 1);
414 error = copyin(iovp, iov, iovlen);
415 if (error) {
416 free(uio, M_IOV);
417 return (error);
419 uio->uio_iov = iov;
420 uio->uio_iovcnt = iovcnt;
421 uio->uio_segflg = UIO_USERSPACE;
422 uio->uio_offset = -1;
423 uio->uio_resid = 0;
424 for (i = 0; i < iovcnt; i++) {
425 if (iov->iov_len > IOSIZE_MAX - uio->uio_resid) {
426 free(uio, M_IOV);
427 return (EINVAL);
429 uio->uio_resid += iov->iov_len;
430 iov++;
432 *uiop = uio;
433 return (0);
436 struct uio *
437 cloneuio(struct uio *uiop)
439 struct uio *uio;
440 int iovlen;
442 iovlen = uiop->uio_iovcnt * sizeof (struct iovec);
443 uio = malloc(iovlen + sizeof *uio, M_IOV, M_WAITOK);
444 *uio = *uiop;
445 uio->uio_iov = (struct iovec *)(uio + 1);
446 bcopy(uiop->uio_iov, uio->uio_iov, iovlen);
447 return (uio);
451 * Map some anonymous memory in user space of size sz, rounded up to the page
452 * boundary.
455 copyout_map(struct thread *td, vm_offset_t *addr, size_t sz)
457 struct vmspace *vms;
458 int error;
459 vm_size_t size;
461 vms = td->td_proc->p_vmspace;
464 * Map somewhere after heap in process memory.
466 *addr = round_page((vm_offset_t)vms->vm_daddr +
467 lim_max(td, RLIMIT_DATA));
469 /* round size up to page boundary */
470 size = (vm_size_t)round_page(sz);
472 error = vm_mmap(&vms->vm_map, addr, size, VM_PROT_READ | VM_PROT_WRITE,
473 VM_PROT_ALL, MAP_PRIVATE | MAP_ANON, OBJT_DEFAULT, NULL, 0);
475 return (error);
479 * Unmap memory in user space.
482 copyout_unmap(struct thread *td, vm_offset_t addr, size_t sz)
484 vm_map_t map;
485 vm_size_t size;
487 if (sz == 0)
488 return (0);
490 map = &td->td_proc->p_vmspace->vm_map;
491 size = (vm_size_t)round_page(sz);
493 if (vm_map_remove(map, addr, addr + size) != KERN_SUCCESS)
494 return (EINVAL);
496 return (0);
499 #ifdef NO_FUEWORD
501 * XXXKIB The temporal implementation of fue*() functions which do not
502 * handle usermode -1 properly, mixing it with the fault code. Keep
503 * this until MD code is written. Currently sparc64 and mips do not
504 * have proper implementation.
508 fueword(volatile const void *base, long *val)
510 long res;
512 res = fuword(base);
513 if (res == -1)
514 return (-1);
515 *val = res;
516 return (0);
520 fueword32(volatile const void *base, int32_t *val)
522 int32_t res;
524 res = fuword32(base);
525 if (res == -1)
526 return (-1);
527 *val = res;
528 return (0);
531 #ifdef _LP64
533 fueword64(volatile const void *base, int64_t *val)
535 int32_t res;
537 res = fuword64(base);
538 if (res == -1)
539 return (-1);
540 *val = res;
541 return (0);
543 #endif
546 casueword32(volatile uint32_t *base, uint32_t oldval, uint32_t *oldvalp,
547 uint32_t newval)
549 int32_t ov;
551 ov = casuword32(base, oldval, newval);
552 if (ov == -1)
553 return (-1);
554 *oldvalp = ov;
555 return (0);
559 casueword(volatile u_long *p, u_long oldval, u_long *oldvalp, u_long newval)
561 u_long ov;
563 ov = casuword(p, oldval, newval);
564 if (ov == -1)
565 return (-1);
566 *oldvalp = ov;
567 return (0);
569 #else /* NO_FUEWORD */
570 int32_t
571 fuword32(volatile const void *addr)
573 int rv;
574 int32_t val;
576 rv = fueword32(addr, &val);
577 return (rv == -1 ? -1 : val);
580 #ifdef _LP64
581 int64_t
582 fuword64(volatile const void *addr)
584 int rv;
585 int64_t val;
587 rv = fueword64(addr, &val);
588 return (rv == -1 ? -1 : val);
590 #endif /* _LP64 */
592 long
593 fuword(volatile const void *addr)
595 long val;
596 int rv;
598 rv = fueword(addr, &val);
599 return (rv == -1 ? -1 : val);
602 uint32_t
603 casuword32(volatile uint32_t *addr, uint32_t old, uint32_t new)
605 int rv;
606 uint32_t val;
608 rv = casueword32(addr, old, &val, new);
609 return (rv == -1 ? -1 : val);
612 u_long
613 casuword(volatile u_long *addr, u_long old, u_long new)
615 int rv;
616 u_long val;
618 rv = casueword(addr, old, &val, new);
619 return (rv == -1 ? -1 : val);
622 #endif /* NO_FUEWORD */