Enable TCP wrappers in sshd.
[dragonfly.git] / sys / i386 / i386 / uio_machdep.c
1 /*
2  * Copyright (c) 2004 Alan L. Cox <alc@cs.rice.edu>
3  * Copyright (c) 1982, 1986, 1991, 1993
4  *      The Regents of the University of California.  All rights reserved.
5  * (c) UNIX System Laboratories, Inc.
6  * All or some portions of this file are derived from material licensed
7  * to the University of California by American Telephone and Telegraph
8  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
9  * the permission of UNIX System Laboratories, Inc.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 4. Neither the name of the University nor the names of its contributors
20  *    may be used to endorse or promote products derived from this software
21  *    without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  *
35  * @(#)kern_subr.c      8.3 (Berkeley) 1/21/94
36  * $FreeBSD: src/sys/i386/i386/uio_machdep.c,v 1.1 2004/03/21 20:28:36 alc Exp $
37  * $DragonFly: src/sys/i386/i386/Attic/uio_machdep.c,v 1.8 2005/03/02 18:42:08 hmp Exp $
38  */
39
40 #include <sys/param.h>
41 #include <sys/kernel.h>
42 #include <sys/lock.h>
43 #include <sys/proc.h>
44 #include <sys/sfbuf.h>
45 #include <sys/systm.h>
46 #include <sys/uio.h>
47 #include <sys/thread2.h>
48
49 #include <vm/vm.h>
50 #include <vm/vm_page.h>
51
52 /*
53  * Implement uiomove(9) from physical memory using sf_bufs to reduce
54  * the creation and destruction of ephemeral mappings.
55  */
56 int
57 uiomove_fromphys(vm_page_t *ma, vm_offset_t offset, int n, struct uio *uio)
58 {
59         struct sf_buf *sf;
60         struct thread *td = curthread;
61         struct iovec *iov;
62         void *cp;
63         vm_offset_t page_offset;
64         vm_page_t m;
65         size_t cnt;
66         int error = 0;
67         int save = 0;
68
69         KASSERT(uio->uio_rw == UIO_READ || uio->uio_rw == UIO_WRITE,
70             ("uiomove_fromphys: mode"));
71         KASSERT(uio->uio_segflg != UIO_USERSPACE || uio->uio_td == curthread,
72             ("uiomove_fromphys proc"));
73
74         crit_enter();
75         save = td->td_flags & TDF_DEADLKTREAT;
76         td->td_flags |= TDF_DEADLKTREAT;
77         crit_exit();
78
79         while (n > 0 && uio->uio_resid) {
80                 iov = uio->uio_iov;
81                 cnt = iov->iov_len;
82                 if (cnt == 0) {
83                         uio->uio_iov++;
84                         uio->uio_iovcnt--;
85                         continue;
86                 }
87                 if (cnt > n)
88                         cnt = n;
89                 page_offset = offset & PAGE_MASK;
90                 cnt = min(cnt, PAGE_SIZE - page_offset);
91                 m = ma[offset >> PAGE_SHIFT];
92                 sf = sf_buf_alloc(m, SFB_CPUPRIVATE);
93                 cp = (char *)sf_buf_kva(sf) + page_offset;
94                 switch (uio->uio_segflg) {
95                 case UIO_USERSPACE:
96                         /*
97                          * note: removed uioyield (it was the wrong place to
98                          * put it).
99                          */
100                         if (uio->uio_rw == UIO_READ)
101                                 error = copyout(cp, iov->iov_base, cnt);
102                         else
103                                 error = copyin(iov->iov_base, cp, cnt);
104                         if (error) {
105                                 sf_buf_free(sf);
106                                 goto out;
107                         }
108                         break;
109                 case UIO_SYSSPACE:
110                         if (uio->uio_rw == UIO_READ)
111                                 bcopy(cp, iov->iov_base, cnt);
112                         else
113                                 bcopy(iov->iov_base, cp, cnt);
114                         break;
115                 case UIO_NOCOPY:
116                         break;
117                 }
118                 sf_buf_free(sf);
119                 iov->iov_base = (char *)iov->iov_base + cnt;
120                 iov->iov_len -= cnt;
121                 uio->uio_resid -= cnt;
122                 uio->uio_offset += cnt;
123                 offset += cnt;
124                 n -= cnt;
125         }
126 out:
127         if (save == 0) {
128                 crit_enter();
129                 td->td_flags &= ~TDF_DEADLKTREAT;
130                 crit_exit();
131         }
132         return (error);
133 }