Another update. Clarify that a shared spinlock can be acquired while holding
[dragonfly.git] / share / man / man9 / uio.9
1 .\"
2 .\" Copyright (c) 1997 Joerg Wunsch
3 .\"
4 .\" All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\"
15 .\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
16 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 .\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
19 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 .\"
26 .\" $FreeBSD: src/share/man/man9/uio.9,v 1.5.2.4 2001/12/17 11:30:19 ru Exp $
27 .\" $DragonFly: src/share/man/man9/uio.9,v 1.4 2006/02/17 19:37:10 swildner Exp $
28 .\"
29 .Dd February 2, 1997
30 .Os
31 .Dt UIO 9
32 .Sh NAME
33 .Nm uio ,
34 .Nm uiomove
35 .Nd device driver I/O routines
36 .Sh SYNOPSIS
37 .In sys/types.h
38 .In sys/uio.h
39 .Pp
40 .Bd -literal
41 struct uio {
42         struct  iovec *uio_iov;
43         int     uio_iovcnt;
44         off_t   uio_offset;
45         int     uio_resid;
46         enum    uio_seg uio_segflg;
47         enum    uio_rw uio_rw;
48         struct  proc *uio_procp;
49 };
50 .Ed
51 .Ft int
52 .Fn uiomove "caddr_t buf" "int howmuch" "struct uio *uiop"
53 .Sh DESCRIPTION
54 The function
55 .Fn uiomove
56 is used to handle transfer of data between buffers and I/O vectors
57 that might possibly also cross the user/kernel space boundary.
58 .Pp
59 As a result of any
60 .Xr read 2 ,
61 .Xr write 2 ,
62 .Xr readv 2 ,
63 or
64 .Xr writev 2
65 system call that is being passed to a character-device driver, the
66 appropriate driver
67 .Va d_read
68 or
69 .Va d_write
70 entry will be called with a pointer to a
71 .Vt "struct uio"
72 being passed.
73 The transfer request is encoded in this structure.
74 The driver itself should use
75 .Fn uiomove
76 to get at the data in this structure.
77 .Pp
78 The fields in the
79 .Vt uio
80 structure are:
81 .Bl -tag -width ".Va uio_iovcnt"
82 .It Va uio_iov
83 The array of I/O vectors to be processed.
84 In the case of scatter/gather
85 I/O, this will be more than one vector.
86 .It Va uio_iovcnt
87 The number of I/O vectors present.
88 .It Va uio_offset
89 The offset into the device.
90 .It Va uio_resid
91 The number of bytes to process.
92 .It Va uio_segflg
93 One of the following flags:
94 .Bl -tag -width ".Dv UIO_USERSPACE"
95 .It Dv UIO_USERSPACE
96 The I/O vector points into a process's address space.
97 .It Dv UIO_SYSSPACE
98 The I/O vector points into the kernel address space.
99 .It Dv UIO_NOCOPY
100 Don't copy, already in object.
101 .El
102 .It Va uio_rw
103 The direction of the desired transfer, either
104 .Dv UIO_READ ,
105 or
106 .Dv UIO_WRITE .
107 .It Va uio_td
108 The pointer to a
109 .Vt "struct thread"
110 for the associated thread; used if
111 .Va uio_segflg
112 indicates that the transfer is to be made from/to a process's address
113 space.
114 .El
115 .Sh RETURN VALUES
116 .Fn uiomove
117 can return
118 .Er EFAULT
119 from the invoked
120 .Xr copyin 9
121 or
122 .Xr copyout 9
123 in case the transfer was to/from a process's address space.
124 .Sh EXAMPLES
125 The idea is that the driver maintains a private buffer for its data,
126 and processes the request in chunks of maximal the size of this
127 buffer.
128 Note that the buffer handling below is very simplified and
129 won't work (the buffer pointer is not being advanced in case of a
130 partial read), it's just here to demonstrate the
131 .Nm
132 handling.
133 .Bd -literal
134 /* MIN() can be found there: */
135 #include <sys/param.h>
136
137 #define BUFSIZE 512
138 static char buffer[BUFSIZE];
139
140 static int data_available;      /* amount of data that can be read */
141
142 static int
143 fooread(dev_t dev, struct uio *uio, int flag)
144 {
145         int rv, amnt;
146
147         while (uio->uio_resid > 0) {
148                 if (data_available > 0) {
149                         amnt = MIN(uio->uio_resid, data_available);
150                         if ((rv = uiomove((caddr_t)buffer, amnt, uio))
151                             != 0)
152                                 goto error;
153                         data_available -= amnt;
154                 } else {
155                         tsleep(...);    /* wait for a better time */
156                 }
157         }
158         return 0;
159 error:
160         /* do error cleanup here */
161         return rv;
162 }
163 .Ed
164 .Sh SEE ALSO
165 .Xr read 2 ,
166 .Xr readv 2 ,
167 .Xr write 2 ,
168 .Xr writev 2 ,
169 .Xr copyin 9 ,
170 .Xr copyout 9 ,
171 .Xr sleep 9
172 .Sh HISTORY
173 The
174 .Nm
175 mechanism appeared in some early version of
176 .Ux .
177 .Sh AUTHORS
178 This man page was written by
179 .An J\(:org Wunsch .