sys_aio.c revision 1.5.2.11 1 1.5.2.11 ad /* $NetBSD: sys_aio.c,v 1.5.2.11 2007/11/01 21:58:22 ad Exp $ */
2 1.5.2.2 ad
3 1.5.2.2 ad /*
4 1.5.2.2 ad * Copyright (c) 2007, Mindaugas Rasiukevicius <rmind at NetBSD org>
5 1.5.2.2 ad *
6 1.5.2.2 ad * Redistribution and use in source and binary forms, with or without
7 1.5.2.2 ad * modification, are permitted provided that the following conditions
8 1.5.2.2 ad * are met:
9 1.5.2.2 ad * 1. Redistributions of source code must retain the above copyright
10 1.5.2.2 ad * notice, this list of conditions and the following disclaimer.
11 1.5.2.2 ad * 2. Redistributions in binary form must reproduce the above copyright
12 1.5.2.2 ad * notice, this list of conditions and the following disclaimer in the
13 1.5.2.2 ad * documentation and/or other materials provided with the distribution.
14 1.5.2.2 ad *
15 1.5.2.2 ad * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 1.5.2.2 ad * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
17 1.5.2.2 ad * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18 1.5.2.2 ad * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
19 1.5.2.2 ad * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 1.5.2.2 ad * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 1.5.2.2 ad * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 1.5.2.2 ad * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 1.5.2.2 ad * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 1.5.2.2 ad * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 1.5.2.2 ad * POSSIBILITY OF SUCH DAMAGE.
26 1.5.2.2 ad */
27 1.5.2.2 ad
28 1.5.2.2 ad /*
29 1.5.2.2 ad * TODO:
30 1.5.2.2 ad * 1. Additional work for VCHR and maybe VBLK devices.
31 1.5.2.2 ad * 2. Consider making the job-finding O(n) per one file descriptor.
32 1.5.2.2 ad */
33 1.5.2.2 ad
34 1.5.2.2 ad #include <sys/cdefs.h>
35 1.5.2.11 ad __KERNEL_RCSID(0, "$NetBSD: sys_aio.c,v 1.5.2.11 2007/11/01 21:58:22 ad Exp $");
36 1.5.2.2 ad
37 1.5.2.3 ad #include "opt_ddb.h"
38 1.5.2.2 ad
39 1.5.2.3 ad #include <sys/param.h>
40 1.5.2.2 ad #include <sys/condvar.h>
41 1.5.2.2 ad #include <sys/file.h>
42 1.5.2.2 ad #include <sys/filedesc.h>
43 1.5.2.2 ad #include <sys/kernel.h>
44 1.5.2.2 ad #include <sys/kmem.h>
45 1.5.2.2 ad #include <sys/lwp.h>
46 1.5.2.2 ad #include <sys/mutex.h>
47 1.5.2.2 ad #include <sys/pool.h>
48 1.5.2.2 ad #include <sys/proc.h>
49 1.5.2.2 ad #include <sys/queue.h>
50 1.5.2.2 ad #include <sys/signal.h>
51 1.5.2.2 ad #include <sys/signalvar.h>
52 1.5.2.2 ad #include <sys/syscallargs.h>
53 1.5.2.2 ad #include <sys/sysctl.h>
54 1.5.2.2 ad #include <sys/systm.h>
55 1.5.2.2 ad #include <sys/types.h>
56 1.5.2.2 ad #include <sys/vnode.h>
57 1.5.2.2 ad
58 1.5.2.2 ad #include <uvm/uvm_extern.h>
59 1.5.2.2 ad
60 1.5.2.2 ad /*
61 1.5.2.2 ad * System-wide limits and counter of AIO operations.
62 1.5.2.2 ad * XXXSMP: We should spin-lock it, or modify atomically.
63 1.5.2.2 ad */
64 1.5.2.3 ad static u_int aio_listio_max = AIO_LISTIO_MAX;
65 1.5.2.3 ad static u_int aio_max = AIO_MAX;
66 1.5.2.3 ad static u_int aio_jobs_count;
67 1.5.2.2 ad
68 1.5.2.3 ad static struct pool aio_job_pool;
69 1.5.2.3 ad static struct pool aio_lio_pool;
70 1.5.2.2 ad
71 1.5.2.2 ad /* Prototypes */
72 1.5.2.2 ad void aio_worker(void *);
73 1.5.2.2 ad static void aio_process(struct aio_job *);
74 1.5.2.2 ad static void aio_sendsig(struct proc *, struct sigevent *);
75 1.5.2.2 ad static int aio_enqueue_job(int, void *, struct lio_req *);
76 1.5.2.2 ad
77 1.5.2.2 ad /*
78 1.5.2.3 ad * Initialize the AIO system.
79 1.5.2.3 ad */
80 1.5.2.3 ad void
81 1.5.2.3 ad aio_sysinit(void)
82 1.5.2.3 ad {
83 1.5.2.3 ad
84 1.5.2.3 ad pool_init(&aio_job_pool, sizeof(struct aio_job), 0, 0, 0,
85 1.5.2.3 ad "aio_jobs_pool", &pool_allocator_nointr, IPL_NONE);
86 1.5.2.3 ad pool_init(&aio_lio_pool, sizeof(struct lio_req), 0, 0, 0,
87 1.5.2.3 ad "aio_lio_pool", &pool_allocator_nointr, IPL_NONE);
88 1.5.2.3 ad }
89 1.5.2.3 ad
90 1.5.2.3 ad /*
91 1.5.2.2 ad * Initialize Asynchronous I/O data structures for the process.
92 1.5.2.2 ad */
93 1.5.2.2 ad int
94 1.5.2.2 ad aio_init(struct proc *p)
95 1.5.2.2 ad {
96 1.5.2.2 ad struct aioproc *aio;
97 1.5.2.2 ad struct lwp *l;
98 1.5.2.11 ad int error;
99 1.5.2.2 ad bool inmem;
100 1.5.2.2 ad vaddr_t uaddr;
101 1.5.2.2 ad
102 1.5.2.2 ad /* Allocate and initialize AIO structure */
103 1.5.2.2 ad aio = kmem_zalloc(sizeof(struct aioproc), KM_NOSLEEP);
104 1.5.2.2 ad if (aio == NULL)
105 1.5.2.2 ad return EAGAIN;
106 1.5.2.2 ad
107 1.5.2.3 ad /* Initialize queue and their synchronization structures */
108 1.5.2.2 ad mutex_init(&aio->aio_mtx, MUTEX_DEFAULT, IPL_NONE);
109 1.5.2.2 ad cv_init(&aio->aio_worker_cv, "aiowork");
110 1.5.2.2 ad cv_init(&aio->done_cv, "aiodone");
111 1.5.2.2 ad TAILQ_INIT(&aio->jobs_queue);
112 1.5.2.2 ad
113 1.5.2.2 ad /*
114 1.5.2.2 ad * Create an AIO worker thread.
115 1.5.2.2 ad * XXX: Currently, AIO thread is not protected against user's actions.
116 1.5.2.2 ad */
117 1.5.2.2 ad inmem = uvm_uarea_alloc(&uaddr);
118 1.5.2.2 ad if (uaddr == 0) {
119 1.5.2.3 ad aio_exit(p, aio);
120 1.5.2.2 ad return EAGAIN;
121 1.5.2.2 ad }
122 1.5.2.11 ad error = lwp_create(curlwp, p, uaddr, inmem, 0, NULL, 0, aio_worker,
123 1.5.2.11 ad NULL, &l, curlwp->l_class);
124 1.5.2.11 ad if (error != 0) {
125 1.5.2.10 ad uvm_uarea_free(uaddr, curcpu());
126 1.5.2.3 ad aio_exit(p, aio);
127 1.5.2.11 ad return error;
128 1.5.2.2 ad }
129 1.5.2.2 ad
130 1.5.2.3 ad /* Recheck if we are really first */
131 1.5.2.3 ad mutex_enter(&p->p_mutex);
132 1.5.2.3 ad if (p->p_aio) {
133 1.5.2.3 ad mutex_exit(&p->p_mutex);
134 1.5.2.3 ad aio_exit(p, aio);
135 1.5.2.3 ad lwp_exit(l);
136 1.5.2.3 ad return 0;
137 1.5.2.3 ad }
138 1.5.2.3 ad p->p_aio = aio;
139 1.5.2.3 ad mutex_exit(&p->p_mutex);
140 1.5.2.3 ad
141 1.5.2.2 ad /* Complete the initialization of thread, and run it */
142 1.5.2.2 ad mutex_enter(&p->p_smutex);
143 1.5.2.2 ad aio->aio_worker = l;
144 1.5.2.2 ad p->p_nrlwps++;
145 1.5.2.2 ad lwp_lock(l);
146 1.5.2.2 ad l->l_stat = LSRUN;
147 1.5.2.11 ad l->l_priority = PRI_KERNEL - 1;
148 1.5.2.2 ad sched_enqueue(l, false);
149 1.5.2.2 ad lwp_unlock(l);
150 1.5.2.2 ad mutex_exit(&p->p_smutex);
151 1.5.2.2 ad
152 1.5.2.2 ad return 0;
153 1.5.2.2 ad }
154 1.5.2.2 ad
155 1.5.2.2 ad /*
156 1.5.2.2 ad * Exit of Asynchronous I/O subsystem of process.
157 1.5.2.2 ad */
158 1.5.2.2 ad void
159 1.5.2.3 ad aio_exit(struct proc *p, struct aioproc *aio)
160 1.5.2.2 ad {
161 1.5.2.2 ad struct aio_job *a_job;
162 1.5.2.2 ad
163 1.5.2.3 ad if (aio == NULL)
164 1.5.2.2 ad return;
165 1.5.2.2 ad
166 1.5.2.2 ad /* Free AIO queue */
167 1.5.2.2 ad while (!TAILQ_EMPTY(&aio->jobs_queue)) {
168 1.5.2.2 ad a_job = TAILQ_FIRST(&aio->jobs_queue);
169 1.5.2.2 ad TAILQ_REMOVE(&aio->jobs_queue, a_job, list);
170 1.5.2.3 ad pool_put(&aio_job_pool, a_job);
171 1.5.2.2 ad aio_jobs_count--; /* XXXSMP */
172 1.5.2.2 ad }
173 1.5.2.2 ad
174 1.5.2.2 ad /* Destroy and free the entire AIO data structure */
175 1.5.2.2 ad cv_destroy(&aio->aio_worker_cv);
176 1.5.2.2 ad cv_destroy(&aio->done_cv);
177 1.5.2.2 ad mutex_destroy(&aio->aio_mtx);
178 1.5.2.2 ad kmem_free(aio, sizeof(struct aioproc));
179 1.5.2.2 ad }
180 1.5.2.2 ad
181 1.5.2.2 ad /*
182 1.5.2.2 ad * AIO worker thread and processor.
183 1.5.2.2 ad */
184 1.5.2.2 ad void
185 1.5.2.2 ad aio_worker(void *arg)
186 1.5.2.2 ad {
187 1.5.2.2 ad struct proc *p = curlwp->l_proc;
188 1.5.2.2 ad struct aioproc *aio = p->p_aio;
189 1.5.2.2 ad struct aio_job *a_job;
190 1.5.2.2 ad struct lio_req *lio;
191 1.5.2.2 ad sigset_t oss, nss;
192 1.5.2.3 ad int error, refcnt;
193 1.5.2.2 ad
194 1.5.2.2 ad /*
195 1.5.2.2 ad * Make an empty signal mask, so it
196 1.5.2.2 ad * handles only SIGKILL and SIGSTOP.
197 1.5.2.2 ad */
198 1.5.2.2 ad sigfillset(&nss);
199 1.5.2.2 ad mutex_enter(&p->p_smutex);
200 1.5.2.2 ad error = sigprocmask1(curlwp, SIG_SETMASK, &nss, &oss);
201 1.5.2.2 ad mutex_exit(&p->p_smutex);
202 1.5.2.3 ad KASSERT(error == 0);
203 1.5.2.2 ad
204 1.5.2.2 ad for (;;) {
205 1.5.2.2 ad /*
206 1.5.2.2 ad * Loop for each job in the queue. If there
207 1.5.2.3 ad * are no jobs then sleep.
208 1.5.2.2 ad */
209 1.5.2.2 ad mutex_enter(&aio->aio_mtx);
210 1.5.2.2 ad while ((a_job = TAILQ_FIRST(&aio->jobs_queue)) == NULL) {
211 1.5.2.2 ad if (cv_wait_sig(&aio->aio_worker_cv, &aio->aio_mtx)) {
212 1.5.2.2 ad /*
213 1.5.2.3 ad * Thread was interrupted - check for
214 1.5.2.3 ad * pending exit or suspend.
215 1.5.2.2 ad */
216 1.5.2.3 ad mutex_exit(&aio->aio_mtx);
217 1.5.2.3 ad lwp_userret(curlwp);
218 1.5.2.3 ad mutex_enter(&aio->aio_mtx);
219 1.5.2.2 ad }
220 1.5.2.2 ad }
221 1.5.2.2 ad
222 1.5.2.2 ad /* Take the job from the queue */
223 1.5.2.2 ad aio->curjob = a_job;
224 1.5.2.2 ad TAILQ_REMOVE(&aio->jobs_queue, a_job, list);
225 1.5.2.2 ad
226 1.5.2.2 ad aio_jobs_count--; /* XXXSMP */
227 1.5.2.2 ad aio->jobs_count--;
228 1.5.2.2 ad
229 1.5.2.2 ad mutex_exit(&aio->aio_mtx);
230 1.5.2.2 ad
231 1.5.2.2 ad /* Process an AIO operation */
232 1.5.2.2 ad aio_process(a_job);
233 1.5.2.2 ad
234 1.5.2.2 ad /* Copy data structure back to the user-space */
235 1.5.2.2 ad (void)copyout(&a_job->aiocbp, a_job->aiocb_uptr,
236 1.5.2.2 ad sizeof(struct aiocb));
237 1.5.2.2 ad
238 1.5.2.2 ad mutex_enter(&aio->aio_mtx);
239 1.5.2.2 ad aio->curjob = NULL;
240 1.5.2.3 ad
241 1.5.2.2 ad /* Decrease a reference counter, if there is a LIO structure */
242 1.5.2.2 ad lio = a_job->lio;
243 1.5.2.3 ad refcnt = (lio != NULL ? --lio->refcnt : -1);
244 1.5.2.3 ad
245 1.5.2.2 ad /* Notify all suspenders */
246 1.5.2.2 ad cv_broadcast(&aio->done_cv);
247 1.5.2.2 ad mutex_exit(&aio->aio_mtx);
248 1.5.2.2 ad
249 1.5.2.2 ad /* Send a signal, if any */
250 1.5.2.2 ad aio_sendsig(p, &a_job->aiocbp.aio_sigevent);
251 1.5.2.2 ad
252 1.5.2.2 ad /* Destroy the LIO structure */
253 1.5.2.3 ad if (refcnt == 0) {
254 1.5.2.2 ad aio_sendsig(p, &lio->sig);
255 1.5.2.3 ad pool_put(&aio_lio_pool, lio);
256 1.5.2.2 ad }
257 1.5.2.2 ad
258 1.5.2.2 ad /* Destroy the the job */
259 1.5.2.3 ad pool_put(&aio_job_pool, a_job);
260 1.5.2.2 ad }
261 1.5.2.2 ad
262 1.5.2.3 ad /* NOTREACHED */
263 1.5.2.2 ad }
264 1.5.2.2 ad
265 1.5.2.2 ad static void
266 1.5.2.2 ad aio_process(struct aio_job *a_job)
267 1.5.2.2 ad {
268 1.5.2.2 ad struct proc *p = curlwp->l_proc;
269 1.5.2.2 ad struct aiocb *aiocbp = &a_job->aiocbp;
270 1.5.2.2 ad struct file *fp;
271 1.5.2.2 ad struct filedesc *fdp = p->p_fd;
272 1.5.2.2 ad int fd = aiocbp->aio_fildes;
273 1.5.2.2 ad int error = 0;
274 1.5.2.2 ad
275 1.5.2.2 ad KASSERT(fdp != NULL);
276 1.5.2.2 ad KASSERT(a_job->aio_op != 0);
277 1.5.2.2 ad
278 1.5.2.3 ad if ((a_job->aio_op & (AIO_READ | AIO_WRITE)) != 0) {
279 1.5.2.2 ad struct iovec aiov;
280 1.5.2.2 ad struct uio auio;
281 1.5.2.2 ad
282 1.5.2.2 ad if (aiocbp->aio_nbytes > SSIZE_MAX) {
283 1.5.2.2 ad error = EINVAL;
284 1.5.2.2 ad goto done;
285 1.5.2.2 ad }
286 1.5.2.2 ad
287 1.5.2.2 ad fp = fd_getfile(fdp, fd);
288 1.5.2.2 ad if (fp == NULL) {
289 1.5.2.2 ad error = EBADF;
290 1.5.2.2 ad goto done;
291 1.5.2.2 ad }
292 1.5.2.2 ad
293 1.5.2.2 ad aiov.iov_base = (void *)(uintptr_t)aiocbp->aio_buf;
294 1.5.2.2 ad aiov.iov_len = aiocbp->aio_nbytes;
295 1.5.2.2 ad auio.uio_iov = &aiov;
296 1.5.2.2 ad auio.uio_iovcnt = 1;
297 1.5.2.2 ad auio.uio_resid = aiocbp->aio_nbytes;
298 1.5.2.2 ad auio.uio_vmspace = p->p_vmspace;
299 1.5.2.2 ad
300 1.5.2.2 ad FILE_USE(fp);
301 1.5.2.2 ad if (a_job->aio_op & AIO_READ) {
302 1.5.2.2 ad /*
303 1.5.2.2 ad * Perform a Read operation
304 1.5.2.2 ad */
305 1.5.2.2 ad KASSERT((a_job->aio_op & AIO_WRITE) == 0);
306 1.5.2.2 ad
307 1.5.2.2 ad if ((fp->f_flag & FREAD) == 0) {
308 1.5.2.2 ad FILE_UNUSE(fp, curlwp);
309 1.5.2.2 ad error = EBADF;
310 1.5.2.2 ad goto done;
311 1.5.2.2 ad }
312 1.5.2.2 ad auio.uio_rw = UIO_READ;
313 1.5.2.2 ad error = (*fp->f_ops->fo_read)(fp, &aiocbp->aio_offset,
314 1.5.2.2 ad &auio, fp->f_cred, FOF_UPDATE_OFFSET);
315 1.5.2.2 ad } else {
316 1.5.2.2 ad /*
317 1.5.2.2 ad * Perform a Write operation
318 1.5.2.2 ad */
319 1.5.2.2 ad KASSERT(a_job->aio_op & AIO_WRITE);
320 1.5.2.2 ad
321 1.5.2.2 ad if ((fp->f_flag & FWRITE) == 0) {
322 1.5.2.2 ad FILE_UNUSE(fp, curlwp);
323 1.5.2.2 ad error = EBADF;
324 1.5.2.2 ad goto done;
325 1.5.2.2 ad }
326 1.5.2.2 ad auio.uio_rw = UIO_WRITE;
327 1.5.2.2 ad error = (*fp->f_ops->fo_write)(fp, &aiocbp->aio_offset,
328 1.5.2.2 ad &auio, fp->f_cred, FOF_UPDATE_OFFSET);
329 1.5.2.2 ad }
330 1.5.2.2 ad FILE_UNUSE(fp, curlwp);
331 1.5.2.2 ad
332 1.5.2.2 ad /* Store the result value */
333 1.5.2.2 ad a_job->aiocbp.aio_nbytes -= auio.uio_resid;
334 1.5.2.2 ad a_job->aiocbp._retval = (error == 0) ?
335 1.5.2.2 ad a_job->aiocbp.aio_nbytes : -1;
336 1.5.2.2 ad
337 1.5.2.3 ad } else if ((a_job->aio_op & (AIO_SYNC | AIO_DSYNC)) != 0) {
338 1.5.2.2 ad /*
339 1.5.2.2 ad * Perform a file Sync operation
340 1.5.2.2 ad */
341 1.5.2.2 ad struct vnode *vp;
342 1.5.2.2 ad
343 1.5.2.2 ad if ((error = getvnode(fdp, fd, &fp)) != 0)
344 1.5.2.2 ad goto done;
345 1.5.2.2 ad
346 1.5.2.2 ad if ((fp->f_flag & FWRITE) == 0) {
347 1.5.2.2 ad FILE_UNUSE(fp, curlwp);
348 1.5.2.2 ad error = EBADF;
349 1.5.2.2 ad goto done;
350 1.5.2.2 ad }
351 1.5.2.2 ad
352 1.5.2.2 ad vp = (struct vnode *)fp->f_data;
353 1.5.2.2 ad vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
354 1.5.2.2 ad if (a_job->aio_op & AIO_DSYNC) {
355 1.5.2.2 ad error = VOP_FSYNC(vp, fp->f_cred,
356 1.5.2.2 ad FSYNC_WAIT | FSYNC_DATAONLY, 0, 0, curlwp);
357 1.5.2.2 ad } else if (a_job->aio_op & AIO_SYNC) {
358 1.5.2.2 ad error = VOP_FSYNC(vp, fp->f_cred,
359 1.5.2.2 ad FSYNC_WAIT, 0, 0, curlwp);
360 1.5.2.6 ad if (error == 0 && bioopsp != NULL &&
361 1.5.2.2 ad vp->v_mount &&
362 1.5.2.2 ad (vp->v_mount->mnt_flag & MNT_SOFTDEP))
363 1.5.2.7 ad bioopsp->io_fsync(vp, 0);
364 1.5.2.2 ad }
365 1.5.2.2 ad VOP_UNLOCK(vp, 0);
366 1.5.2.2 ad FILE_UNUSE(fp, curlwp);
367 1.5.2.2 ad
368 1.5.2.2 ad /* Store the result value */
369 1.5.2.2 ad a_job->aiocbp._retval = (error == 0) ? 0 : -1;
370 1.5.2.2 ad
371 1.5.2.2 ad } else
372 1.5.2.2 ad panic("aio_process: invalid operation code\n");
373 1.5.2.2 ad
374 1.5.2.2 ad done:
375 1.5.2.2 ad /* Job is done, set the error, if any */
376 1.5.2.2 ad a_job->aiocbp._errno = error;
377 1.5.2.2 ad a_job->aiocbp._state = JOB_DONE;
378 1.5.2.2 ad }
379 1.5.2.2 ad
380 1.5.2.2 ad /*
381 1.5.2.2 ad * Send AIO signal.
382 1.5.2.2 ad */
383 1.5.2.2 ad static void
384 1.5.2.2 ad aio_sendsig(struct proc *p, struct sigevent *sig)
385 1.5.2.2 ad {
386 1.5.2.2 ad ksiginfo_t ksi;
387 1.5.2.2 ad
388 1.5.2.2 ad if (sig->sigev_signo == 0 || sig->sigev_notify == SIGEV_NONE)
389 1.5.2.2 ad return;
390 1.5.2.2 ad
391 1.5.2.2 ad KSI_INIT(&ksi);
392 1.5.2.2 ad ksi.ksi_signo = sig->sigev_signo;
393 1.5.2.2 ad ksi.ksi_code = SI_ASYNCIO;
394 1.5.2.2 ad ksi.ksi_value = sig->sigev_value;
395 1.5.2.2 ad mutex_enter(&proclist_mutex);
396 1.5.2.2 ad kpsignal(p, &ksi, NULL);
397 1.5.2.2 ad mutex_exit(&proclist_mutex);
398 1.5.2.2 ad }
399 1.5.2.2 ad
400 1.5.2.2 ad /*
401 1.5.2.2 ad * Enqueue the job.
402 1.5.2.2 ad */
403 1.5.2.2 ad static int
404 1.5.2.2 ad aio_enqueue_job(int op, void *aiocb_uptr, struct lio_req *lio)
405 1.5.2.2 ad {
406 1.5.2.2 ad struct proc *p = curlwp->l_proc;
407 1.5.2.2 ad struct aioproc *aio;
408 1.5.2.2 ad struct aio_job *a_job;
409 1.5.2.2 ad struct aiocb aiocbp;
410 1.5.2.2 ad struct sigevent *sig;
411 1.5.2.2 ad int error;
412 1.5.2.2 ad
413 1.5.2.2 ad /* Check for the limit */
414 1.5.2.2 ad if (aio_jobs_count + 1 > aio_max) /* XXXSMP */
415 1.5.2.2 ad return EAGAIN;
416 1.5.2.2 ad
417 1.5.2.2 ad /* Get the data structure from user-space */
418 1.5.2.2 ad error = copyin(aiocb_uptr, &aiocbp, sizeof(struct aiocb));
419 1.5.2.2 ad if (error)
420 1.5.2.2 ad return error;
421 1.5.2.2 ad
422 1.5.2.2 ad /* Check if signal is set, and validate it */
423 1.5.2.2 ad sig = &aiocbp.aio_sigevent;
424 1.5.2.2 ad if (sig->sigev_signo < 0 || sig->sigev_signo >= NSIG ||
425 1.5.2.2 ad sig->sigev_notify < SIGEV_NONE || sig->sigev_notify > SIGEV_SA)
426 1.5.2.2 ad return EINVAL;
427 1.5.2.2 ad
428 1.5.2.2 ad /* Buffer and byte count */
429 1.5.2.2 ad if (((AIO_SYNC | AIO_DSYNC) & op) == 0)
430 1.5.2.2 ad if (aiocbp.aio_buf == NULL || aiocbp.aio_nbytes > SSIZE_MAX)
431 1.5.2.2 ad return EINVAL;
432 1.5.2.2 ad
433 1.5.2.2 ad /* Check the opcode, if LIO_NOP - simply ignore */
434 1.5.2.2 ad if (op == AIO_LIO) {
435 1.5.2.2 ad KASSERT(lio != NULL);
436 1.5.2.2 ad if (aiocbp.aio_lio_opcode == LIO_WRITE)
437 1.5.2.2 ad op = AIO_WRITE;
438 1.5.2.2 ad else if (aiocbp.aio_lio_opcode == LIO_READ)
439 1.5.2.2 ad op = AIO_READ;
440 1.5.2.2 ad else
441 1.5.2.2 ad return (aiocbp.aio_lio_opcode == LIO_NOP) ? 0 : EINVAL;
442 1.5.2.2 ad } else {
443 1.5.2.2 ad KASSERT(lio == NULL);
444 1.5.2.2 ad }
445 1.5.2.2 ad
446 1.5.2.2 ad /*
447 1.5.2.2 ad * Look for already existing job. If found - the job is in-progress.
448 1.5.2.2 ad * According to POSIX this is invalid, so return the error.
449 1.5.2.2 ad */
450 1.5.2.2 ad aio = p->p_aio;
451 1.5.2.2 ad if (aio) {
452 1.5.2.2 ad mutex_enter(&aio->aio_mtx);
453 1.5.2.2 ad if (aio->curjob) {
454 1.5.2.2 ad a_job = aio->curjob;
455 1.5.2.2 ad if (a_job->aiocb_uptr == aiocb_uptr) {
456 1.5.2.2 ad mutex_exit(&aio->aio_mtx);
457 1.5.2.2 ad return EINVAL;
458 1.5.2.2 ad }
459 1.5.2.2 ad }
460 1.5.2.2 ad TAILQ_FOREACH(a_job, &aio->jobs_queue, list) {
461 1.5.2.2 ad if (a_job->aiocb_uptr != aiocb_uptr)
462 1.5.2.2 ad continue;
463 1.5.2.2 ad mutex_exit(&aio->aio_mtx);
464 1.5.2.2 ad return EINVAL;
465 1.5.2.2 ad }
466 1.5.2.2 ad mutex_exit(&aio->aio_mtx);
467 1.5.2.2 ad }
468 1.5.2.2 ad
469 1.5.2.2 ad /*
470 1.5.2.2 ad * Check if AIO structure is initialized, if not - initialize it.
471 1.5.2.2 ad * In LIO case, we did that already. We will recheck this with
472 1.5.2.2 ad * the lock in aio_init().
473 1.5.2.2 ad */
474 1.5.2.2 ad if (lio == NULL && p->p_aio == NULL)
475 1.5.2.2 ad if (aio_init(p))
476 1.5.2.2 ad return EAGAIN;
477 1.5.2.2 ad aio = p->p_aio;
478 1.5.2.2 ad
479 1.5.2.2 ad /*
480 1.5.2.2 ad * Set the state with errno, and copy data
481 1.5.2.2 ad * structure back to the user-space.
482 1.5.2.2 ad */
483 1.5.2.2 ad aiocbp._state = JOB_WIP;
484 1.5.2.2 ad aiocbp._errno = EINPROGRESS;
485 1.5.2.2 ad aiocbp._retval = -1;
486 1.5.2.2 ad error = copyout(&aiocbp, aiocb_uptr, sizeof(struct aiocb));
487 1.5.2.2 ad if (error)
488 1.5.2.2 ad return error;
489 1.5.2.2 ad
490 1.5.2.2 ad /* Allocate and initialize a new AIO job */
491 1.5.2.3 ad a_job = pool_get(&aio_job_pool, PR_WAITOK);
492 1.5.2.2 ad memset(a_job, 0, sizeof(struct aio_job));
493 1.5.2.2 ad
494 1.5.2.2 ad /*
495 1.5.2.2 ad * Set the data.
496 1.5.2.2 ad * Store the user-space pointer for searching. Since we
497 1.5.2.2 ad * are storing only per proc pointers - it is safe.
498 1.5.2.2 ad */
499 1.5.2.2 ad memcpy(&a_job->aiocbp, &aiocbp, sizeof(struct aiocb));
500 1.5.2.2 ad a_job->aiocb_uptr = aiocb_uptr;
501 1.5.2.2 ad a_job->aio_op |= op;
502 1.5.2.2 ad a_job->lio = lio;
503 1.5.2.2 ad
504 1.5.2.2 ad /*
505 1.5.2.2 ad * Add the job to the queue, update the counters, and
506 1.5.2.2 ad * notify the AIO worker thread to handle the job.
507 1.5.2.2 ad */
508 1.5.2.2 ad mutex_enter(&aio->aio_mtx);
509 1.5.2.2 ad
510 1.5.2.2 ad /* Fail, if the limit was reached */
511 1.5.2.2 ad if (aio->jobs_count >= aio_listio_max) {
512 1.5.2.2 ad mutex_exit(&aio->aio_mtx);
513 1.5.2.3 ad pool_put(&aio_job_pool, a_job);
514 1.5.2.2 ad return EAGAIN;
515 1.5.2.2 ad }
516 1.5.2.2 ad
517 1.5.2.2 ad TAILQ_INSERT_TAIL(&aio->jobs_queue, a_job, list);
518 1.5.2.2 ad aio_jobs_count++; /* XXXSMP */
519 1.5.2.2 ad aio->jobs_count++;
520 1.5.2.2 ad if (lio)
521 1.5.2.2 ad lio->refcnt++;
522 1.5.2.2 ad cv_signal(&aio->aio_worker_cv);
523 1.5.2.2 ad
524 1.5.2.2 ad mutex_exit(&aio->aio_mtx);
525 1.5.2.2 ad
526 1.5.2.2 ad /*
527 1.5.2.2 ad * One would handle the errors only with aio_error() function.
528 1.5.2.2 ad * This way is appropriate according to POSIX.
529 1.5.2.2 ad */
530 1.5.2.2 ad return 0;
531 1.5.2.2 ad }
532 1.5.2.2 ad
533 1.5.2.2 ad /*
534 1.5.2.2 ad * Syscall functions.
535 1.5.2.2 ad */
536 1.5.2.2 ad
537 1.5.2.2 ad int
538 1.5.2.2 ad sys_aio_cancel(struct lwp *l, void *v, register_t *retval)
539 1.5.2.2 ad {
540 1.5.2.2 ad struct sys_aio_cancel_args /* {
541 1.5.2.2 ad syscallarg(int) fildes;
542 1.5.2.2 ad syscallarg(struct aiocb *) aiocbp;
543 1.5.2.2 ad } */ *uap = v;
544 1.5.2.2 ad struct proc *p = l->l_proc;
545 1.5.2.2 ad struct aioproc *aio;
546 1.5.2.2 ad struct aio_job *a_job;
547 1.5.2.2 ad struct aiocb *aiocbp_ptr;
548 1.5.2.2 ad struct lio_req *lio;
549 1.5.2.2 ad struct filedesc *fdp = p->p_fd;
550 1.5.2.2 ad unsigned int cn, errcnt, fildes;
551 1.5.2.2 ad
552 1.5.2.2 ad TAILQ_HEAD(, aio_job) tmp_jobs_list;
553 1.5.2.2 ad
554 1.5.2.2 ad /* Check for invalid file descriptor */
555 1.5.2.2 ad fildes = (unsigned int)SCARG(uap, fildes);
556 1.5.2.2 ad if (fildes >= fdp->fd_nfiles || fdp->fd_ofiles[fildes] == NULL)
557 1.5.2.2 ad return EBADF;
558 1.5.2.2 ad
559 1.5.2.2 ad /* Check if AIO structure is initialized */
560 1.5.2.2 ad if (p->p_aio == NULL) {
561 1.5.2.2 ad *retval = AIO_NOTCANCELED;
562 1.5.2.2 ad return 0;
563 1.5.2.2 ad }
564 1.5.2.2 ad
565 1.5.2.2 ad aio = p->p_aio;
566 1.5.2.2 ad aiocbp_ptr = (struct aiocb *)SCARG(uap, aiocbp);
567 1.5.2.2 ad
568 1.5.2.2 ad mutex_enter(&aio->aio_mtx);
569 1.5.2.2 ad
570 1.5.2.2 ad /* Cancel the jobs, and remove them from the queue */
571 1.5.2.2 ad cn = 0;
572 1.5.2.2 ad TAILQ_INIT(&tmp_jobs_list);
573 1.5.2.2 ad TAILQ_FOREACH(a_job, &aio->jobs_queue, list) {
574 1.5.2.2 ad if (aiocbp_ptr) {
575 1.5.2.2 ad if (aiocbp_ptr != a_job->aiocb_uptr)
576 1.5.2.2 ad continue;
577 1.5.2.2 ad if (fildes != a_job->aiocbp.aio_fildes) {
578 1.5.2.2 ad mutex_exit(&aio->aio_mtx);
579 1.5.2.2 ad return EBADF;
580 1.5.2.2 ad }
581 1.5.2.2 ad } else if (a_job->aiocbp.aio_fildes != fildes)
582 1.5.2.2 ad continue;
583 1.5.2.2 ad
584 1.5.2.2 ad TAILQ_REMOVE(&aio->jobs_queue, a_job, list);
585 1.5.2.2 ad TAILQ_INSERT_TAIL(&tmp_jobs_list, a_job, list);
586 1.5.2.2 ad
587 1.5.2.2 ad /* Decrease the counters */
588 1.5.2.2 ad aio_jobs_count--; /* XXXSMP */
589 1.5.2.2 ad aio->jobs_count--;
590 1.5.2.2 ad lio = a_job->lio;
591 1.5.2.3 ad if (lio != NULL && --lio->refcnt != 0)
592 1.5.2.3 ad a_job->lio = NULL;
593 1.5.2.2 ad
594 1.5.2.2 ad cn++;
595 1.5.2.2 ad if (aiocbp_ptr)
596 1.5.2.2 ad break;
597 1.5.2.2 ad }
598 1.5.2.2 ad
599 1.5.2.2 ad /* There are canceled jobs */
600 1.5.2.2 ad if (cn)
601 1.5.2.2 ad *retval = AIO_CANCELED;
602 1.5.2.2 ad
603 1.5.2.2 ad /* We cannot cancel current job */
604 1.5.2.2 ad a_job = aio->curjob;
605 1.5.2.2 ad if (a_job && ((a_job->aiocbp.aio_fildes == fildes) ||
606 1.5.2.2 ad (a_job->aiocb_uptr == aiocbp_ptr)))
607 1.5.2.2 ad *retval = AIO_NOTCANCELED;
608 1.5.2.2 ad
609 1.5.2.2 ad mutex_exit(&aio->aio_mtx);
610 1.5.2.2 ad
611 1.5.2.2 ad /* Free the jobs after the lock */
612 1.5.2.2 ad errcnt = 0;
613 1.5.2.2 ad while (!TAILQ_EMPTY(&tmp_jobs_list)) {
614 1.5.2.2 ad a_job = TAILQ_FIRST(&tmp_jobs_list);
615 1.5.2.2 ad TAILQ_REMOVE(&tmp_jobs_list, a_job, list);
616 1.5.2.2 ad /* Set the errno and copy structures back to the user-space */
617 1.5.2.2 ad a_job->aiocbp._errno = ECANCELED;
618 1.5.2.2 ad a_job->aiocbp._state = JOB_DONE;
619 1.5.2.2 ad if (copyout(&a_job->aiocbp, a_job->aiocb_uptr,
620 1.5.2.2 ad sizeof(struct aiocb)))
621 1.5.2.2 ad errcnt++;
622 1.5.2.2 ad /* Send a signal if any */
623 1.5.2.2 ad aio_sendsig(p, &a_job->aiocbp.aio_sigevent);
624 1.5.2.4 ad if (a_job->lio) {
625 1.5.2.4 ad lio = a_job->lio;
626 1.5.2.4 ad aio_sendsig(p, &lio->sig);
627 1.5.2.4 ad pool_put(&aio_lio_pool, lio);
628 1.5.2.4 ad }
629 1.5.2.3 ad pool_put(&aio_job_pool, a_job);
630 1.5.2.2 ad }
631 1.5.2.2 ad
632 1.5.2.2 ad if (errcnt)
633 1.5.2.2 ad return EFAULT;
634 1.5.2.2 ad
635 1.5.2.2 ad /* Set a correct return value */
636 1.5.2.2 ad if (*retval == 0)
637 1.5.2.2 ad *retval = AIO_ALLDONE;
638 1.5.2.2 ad
639 1.5.2.2 ad return 0;
640 1.5.2.2 ad }
641 1.5.2.2 ad
642 1.5.2.2 ad int
643 1.5.2.2 ad sys_aio_error(struct lwp *l, void *v, register_t *retval)
644 1.5.2.2 ad {
645 1.5.2.2 ad struct sys_aio_error_args /* {
646 1.5.2.2 ad syscallarg(const struct aiocb *) aiocbp;
647 1.5.2.2 ad } */ *uap = v;
648 1.5.2.2 ad struct proc *p = l->l_proc;
649 1.5.2.2 ad struct aioproc *aio = p->p_aio;
650 1.5.2.2 ad struct aiocb aiocbp;
651 1.5.2.2 ad int error;
652 1.5.2.2 ad
653 1.5.2.2 ad if (aio == NULL)
654 1.5.2.2 ad return EINVAL;
655 1.5.2.2 ad
656 1.5.2.2 ad error = copyin(SCARG(uap, aiocbp), &aiocbp, sizeof(struct aiocb));
657 1.5.2.2 ad if (error)
658 1.5.2.2 ad return error;
659 1.5.2.2 ad
660 1.5.2.2 ad if (aiocbp._state == JOB_NONE)
661 1.5.2.2 ad return EINVAL;
662 1.5.2.2 ad
663 1.5.2.2 ad *retval = aiocbp._errno;
664 1.5.2.2 ad
665 1.5.2.2 ad return 0;
666 1.5.2.2 ad }
667 1.5.2.2 ad
668 1.5.2.2 ad int
669 1.5.2.2 ad sys_aio_fsync(struct lwp *l, void *v, register_t *retval)
670 1.5.2.2 ad {
671 1.5.2.2 ad struct sys_aio_fsync_args /* {
672 1.5.2.2 ad syscallarg(int) op;
673 1.5.2.2 ad syscallarg(struct aiocb *) aiocbp;
674 1.5.2.2 ad } */ *uap = v;
675 1.5.2.2 ad int op = SCARG(uap, op);
676 1.5.2.2 ad
677 1.5.2.2 ad if ((op != O_DSYNC) && (op != O_SYNC))
678 1.5.2.2 ad return EINVAL;
679 1.5.2.2 ad
680 1.5.2.2 ad op = O_DSYNC ? AIO_DSYNC : AIO_SYNC;
681 1.5.2.2 ad
682 1.5.2.2 ad return aio_enqueue_job(op, SCARG(uap, aiocbp), NULL);
683 1.5.2.2 ad }
684 1.5.2.2 ad
685 1.5.2.2 ad int
686 1.5.2.2 ad sys_aio_read(struct lwp *l, void *v, register_t *retval)
687 1.5.2.2 ad {
688 1.5.2.2 ad struct sys_aio_read_args /* {
689 1.5.2.2 ad syscallarg(struct aiocb *) aiocbp;
690 1.5.2.2 ad } */ *uap = v;
691 1.5.2.2 ad
692 1.5.2.2 ad return aio_enqueue_job(AIO_READ, SCARG(uap, aiocbp), NULL);
693 1.5.2.2 ad }
694 1.5.2.2 ad
695 1.5.2.2 ad int
696 1.5.2.2 ad sys_aio_return(struct lwp *l, void *v, register_t *retval)
697 1.5.2.2 ad {
698 1.5.2.2 ad struct sys_aio_return_args /* {
699 1.5.2.2 ad syscallarg(struct aiocb *) aiocbp;
700 1.5.2.2 ad } */ *uap = v;
701 1.5.2.2 ad struct proc *p = l->l_proc;
702 1.5.2.2 ad struct aioproc *aio = p->p_aio;
703 1.5.2.2 ad struct aiocb aiocbp;
704 1.5.2.2 ad int error;
705 1.5.2.2 ad
706 1.5.2.2 ad if (aio == NULL)
707 1.5.2.2 ad return EINVAL;
708 1.5.2.2 ad
709 1.5.2.2 ad error = copyin(SCARG(uap, aiocbp), &aiocbp, sizeof(struct aiocb));
710 1.5.2.2 ad if (error)
711 1.5.2.2 ad return error;
712 1.5.2.2 ad
713 1.5.2.2 ad if (aiocbp._errno == EINPROGRESS || aiocbp._state != JOB_DONE)
714 1.5.2.2 ad return EINVAL;
715 1.5.2.2 ad
716 1.5.2.2 ad *retval = aiocbp._retval;
717 1.5.2.2 ad
718 1.5.2.2 ad /* Reset the internal variables */
719 1.5.2.2 ad aiocbp._errno = 0;
720 1.5.2.2 ad aiocbp._retval = -1;
721 1.5.2.2 ad aiocbp._state = JOB_NONE;
722 1.5.2.2 ad error = copyout(&aiocbp, SCARG(uap, aiocbp), sizeof(struct aiocb));
723 1.5.2.2 ad
724 1.5.2.2 ad return error;
725 1.5.2.2 ad }
726 1.5.2.2 ad
727 1.5.2.2 ad int
728 1.5.2.2 ad sys_aio_suspend(struct lwp *l, void *v, register_t *retval)
729 1.5.2.2 ad {
730 1.5.2.2 ad struct sys_aio_suspend_args /* {
731 1.5.2.2 ad syscallarg(const struct aiocb *const[]) list;
732 1.5.2.2 ad syscallarg(int) nent;
733 1.5.2.2 ad syscallarg(const struct timespec *) timeout;
734 1.5.2.2 ad } */ *uap = v;
735 1.5.2.2 ad struct proc *p = l->l_proc;
736 1.5.2.2 ad struct aioproc *aio;
737 1.5.2.2 ad struct aio_job *a_job;
738 1.5.2.2 ad struct aiocb **aiocbp_list;
739 1.5.2.2 ad struct timespec ts;
740 1.5.2.2 ad int i, error, nent, timo;
741 1.5.2.2 ad
742 1.5.2.2 ad if (p->p_aio == NULL)
743 1.5.2.2 ad return EAGAIN;
744 1.5.2.2 ad aio = p->p_aio;
745 1.5.2.2 ad
746 1.5.2.2 ad nent = SCARG(uap, nent);
747 1.5.2.2 ad if (nent <= 0 || nent > aio_listio_max)
748 1.5.2.2 ad return EAGAIN;
749 1.5.2.2 ad
750 1.5.2.2 ad if (SCARG(uap, timeout)) {
751 1.5.2.2 ad /* Convert timespec to ticks */
752 1.5.2.2 ad error = copyin(SCARG(uap, timeout), &ts,
753 1.5.2.2 ad sizeof(struct timespec));
754 1.5.2.2 ad if (error)
755 1.5.2.2 ad return error;
756 1.5.2.2 ad timo = mstohz((ts.tv_sec * 1000) + (ts.tv_nsec / 1000000));
757 1.5.2.2 ad if (timo == 0 && ts.tv_sec == 0 && ts.tv_nsec > 0)
758 1.5.2.2 ad timo = 1;
759 1.5.2.2 ad if (timo <= 0)
760 1.5.2.2 ad return EAGAIN;
761 1.5.2.2 ad } else
762 1.5.2.2 ad timo = 0;
763 1.5.2.2 ad
764 1.5.2.2 ad /* Get the list from user-space */
765 1.5.2.2 ad aiocbp_list = kmem_zalloc(nent * sizeof(struct aio_job), KM_SLEEP);
766 1.5.2.2 ad error = copyin(SCARG(uap, list), aiocbp_list,
767 1.5.2.2 ad nent * sizeof(struct aiocb));
768 1.5.2.2 ad if (error) {
769 1.5.2.2 ad kmem_free(aiocbp_list, nent * sizeof(struct aio_job));
770 1.5.2.2 ad return error;
771 1.5.2.2 ad }
772 1.5.2.2 ad
773 1.5.2.2 ad mutex_enter(&aio->aio_mtx);
774 1.5.2.2 ad for (;;) {
775 1.5.2.2 ad
776 1.5.2.2 ad for (i = 0; i < nent; i++) {
777 1.5.2.2 ad
778 1.5.2.2 ad /* Skip NULL entries */
779 1.5.2.2 ad if (aiocbp_list[i] == NULL)
780 1.5.2.2 ad continue;
781 1.5.2.2 ad
782 1.5.2.2 ad /* Skip current job */
783 1.5.2.2 ad if (aio->curjob) {
784 1.5.2.2 ad a_job = aio->curjob;
785 1.5.2.2 ad if (a_job->aiocb_uptr == aiocbp_list[i])
786 1.5.2.2 ad continue;
787 1.5.2.2 ad }
788 1.5.2.2 ad
789 1.5.2.2 ad /* Look for a job in the queue */
790 1.5.2.2 ad TAILQ_FOREACH(a_job, &aio->jobs_queue, list)
791 1.5.2.2 ad if (a_job->aiocb_uptr == aiocbp_list[i])
792 1.5.2.2 ad break;
793 1.5.2.2 ad
794 1.5.2.2 ad if (a_job == NULL) {
795 1.5.2.2 ad struct aiocb aiocbp;
796 1.5.2.2 ad
797 1.5.2.2 ad mutex_exit(&aio->aio_mtx);
798 1.5.2.2 ad
799 1.5.2.2 ad error = copyin(aiocbp_list[i], &aiocbp,
800 1.5.2.2 ad sizeof(struct aiocb));
801 1.5.2.2 ad if (error == 0 && aiocbp._state != JOB_DONE) {
802 1.5.2.2 ad mutex_enter(&aio->aio_mtx);
803 1.5.2.2 ad continue;
804 1.5.2.2 ad }
805 1.5.2.2 ad
806 1.5.2.2 ad kmem_free(aiocbp_list,
807 1.5.2.2 ad nent * sizeof(struct aio_job));
808 1.5.2.2 ad return error;
809 1.5.2.2 ad }
810 1.5.2.2 ad }
811 1.5.2.2 ad
812 1.5.2.2 ad /* Wait for a signal or when timeout occurs */
813 1.5.2.2 ad error = cv_timedwait_sig(&aio->done_cv, &aio->aio_mtx, timo);
814 1.5.2.2 ad if (error) {
815 1.5.2.2 ad if (error == EWOULDBLOCK)
816 1.5.2.2 ad error = EAGAIN;
817 1.5.2.2 ad break;
818 1.5.2.2 ad }
819 1.5.2.2 ad }
820 1.5.2.2 ad mutex_exit(&aio->aio_mtx);
821 1.5.2.2 ad
822 1.5.2.2 ad kmem_free(aiocbp_list, nent * sizeof(struct aio_job));
823 1.5.2.2 ad return error;
824 1.5.2.2 ad }
825 1.5.2.2 ad
826 1.5.2.2 ad int
827 1.5.2.2 ad sys_aio_write(struct lwp *l, void *v, register_t *retval)
828 1.5.2.2 ad {
829 1.5.2.2 ad struct sys_aio_write_args /* {
830 1.5.2.2 ad syscallarg(struct aiocb *) aiocbp;
831 1.5.2.2 ad } */ *uap = v;
832 1.5.2.2 ad
833 1.5.2.2 ad return aio_enqueue_job(AIO_WRITE, SCARG(uap, aiocbp), NULL);
834 1.5.2.2 ad }
835 1.5.2.2 ad
836 1.5.2.2 ad int
837 1.5.2.2 ad sys_lio_listio(struct lwp *l, void *v, register_t *retval)
838 1.5.2.2 ad {
839 1.5.2.2 ad struct sys_lio_listio_args /* {
840 1.5.2.2 ad syscallarg(int) mode;
841 1.5.2.2 ad syscallarg(struct aiocb *const[]) list;
842 1.5.2.2 ad syscallarg(int) nent;
843 1.5.2.2 ad syscallarg(struct sigevent *) sig;
844 1.5.2.2 ad } */ *uap = v;
845 1.5.2.2 ad struct proc *p = l->l_proc;
846 1.5.2.2 ad struct aioproc *aio;
847 1.5.2.2 ad struct aiocb **aiocbp_list;
848 1.5.2.2 ad struct lio_req *lio;
849 1.5.2.2 ad int i, error, errcnt, mode, nent;
850 1.5.2.2 ad
851 1.5.2.2 ad mode = SCARG(uap, mode);
852 1.5.2.2 ad nent = SCARG(uap, nent);
853 1.5.2.2 ad
854 1.5.2.2 ad /* Check for the limits, and invalid values */
855 1.5.2.2 ad if (nent < 1 || nent > aio_listio_max)
856 1.5.2.2 ad return EINVAL;
857 1.5.2.2 ad if (aio_jobs_count + nent > aio_max) /* XXXSMP */
858 1.5.2.2 ad return EAGAIN;
859 1.5.2.2 ad
860 1.5.2.2 ad /* Check if AIO structure is initialized, if not - initialize it */
861 1.5.2.2 ad if (p->p_aio == NULL)
862 1.5.2.2 ad if (aio_init(p))
863 1.5.2.2 ad return EAGAIN;
864 1.5.2.2 ad aio = p->p_aio;
865 1.5.2.2 ad
866 1.5.2.2 ad /* Create a LIO structure */
867 1.5.2.3 ad lio = pool_get(&aio_lio_pool, PR_WAITOK);
868 1.5.2.3 ad lio->refcnt = 1;
869 1.5.2.3 ad error = 0;
870 1.5.2.3 ad
871 1.5.2.3 ad switch (mode) {
872 1.5.2.3 ad case LIO_WAIT:
873 1.5.2.2 ad memset(&lio->sig, 0, sizeof(struct sigevent));
874 1.5.2.3 ad break;
875 1.5.2.3 ad case LIO_NOWAIT:
876 1.5.2.3 ad /* Check for signal, validate it */
877 1.5.2.3 ad if (SCARG(uap, sig)) {
878 1.5.2.3 ad struct sigevent *sig = &lio->sig;
879 1.5.2.3 ad
880 1.5.2.3 ad error = copyin(SCARG(uap, sig), &lio->sig,
881 1.5.2.3 ad sizeof(struct sigevent));
882 1.5.2.3 ad if (error == 0 &&
883 1.5.2.3 ad (sig->sigev_signo < 0 ||
884 1.5.2.3 ad sig->sigev_signo >= NSIG ||
885 1.5.2.3 ad sig->sigev_notify < SIGEV_NONE ||
886 1.5.2.3 ad sig->sigev_notify > SIGEV_SA))
887 1.5.2.3 ad error = EINVAL;
888 1.5.2.3 ad } else
889 1.5.2.3 ad memset(&lio->sig, 0, sizeof(struct sigevent));
890 1.5.2.3 ad break;
891 1.5.2.3 ad default:
892 1.5.2.3 ad error = EINVAL;
893 1.5.2.3 ad break;
894 1.5.2.3 ad }
895 1.5.2.3 ad
896 1.5.2.3 ad if (error != 0) {
897 1.5.2.3 ad pool_put(&aio_lio_pool, lio);
898 1.5.2.3 ad return error;
899 1.5.2.3 ad }
900 1.5.2.2 ad
901 1.5.2.2 ad /* Get the list from user-space */
902 1.5.2.2 ad aiocbp_list = kmem_zalloc(nent * sizeof(struct aio_job), KM_SLEEP);
903 1.5.2.2 ad error = copyin(SCARG(uap, list), aiocbp_list,
904 1.5.2.2 ad nent * sizeof(struct aiocb));
905 1.5.2.3 ad if (error) {
906 1.5.2.3 ad mutex_enter(&aio->aio_mtx);
907 1.5.2.2 ad goto err;
908 1.5.2.3 ad }
909 1.5.2.2 ad
910 1.5.2.2 ad /* Enqueue all jobs */
911 1.5.2.2 ad errcnt = 0;
912 1.5.2.2 ad for (i = 0; i < nent; i++) {
913 1.5.2.2 ad error = aio_enqueue_job(AIO_LIO, aiocbp_list[i], lio);
914 1.5.2.2 ad /*
915 1.5.2.2 ad * According to POSIX, in such error case it may
916 1.5.2.2 ad * fail with other I/O operations initiated.
917 1.5.2.2 ad */
918 1.5.2.2 ad if (error)
919 1.5.2.2 ad errcnt++;
920 1.5.2.2 ad }
921 1.5.2.2 ad
922 1.5.2.3 ad mutex_enter(&aio->aio_mtx);
923 1.5.2.3 ad
924 1.5.2.2 ad /* Return an error, if any */
925 1.5.2.2 ad if (errcnt) {
926 1.5.2.2 ad error = EIO;
927 1.5.2.2 ad goto err;
928 1.5.2.2 ad }
929 1.5.2.2 ad
930 1.5.2.2 ad if (mode == LIO_WAIT) {
931 1.5.2.2 ad /*
932 1.5.2.2 ad * Wait for AIO completion. In such case,
933 1.5.2.2 ad * the LIO structure will be freed here.
934 1.5.2.2 ad */
935 1.5.2.3 ad while (lio->refcnt > 1 && error == 0)
936 1.5.2.2 ad error = cv_wait_sig(&aio->done_cv, &aio->aio_mtx);
937 1.5.2.2 ad if (error)
938 1.5.2.2 ad error = EINTR;
939 1.5.2.2 ad }
940 1.5.2.2 ad
941 1.5.2.2 ad err:
942 1.5.2.3 ad if (--lio->refcnt != 0)
943 1.5.2.3 ad lio = NULL;
944 1.5.2.3 ad mutex_exit(&aio->aio_mtx);
945 1.5.2.3 ad if (lio != NULL) {
946 1.5.2.3 ad aio_sendsig(p, &lio->sig);
947 1.5.2.3 ad pool_put(&aio_lio_pool, lio);
948 1.5.2.2 ad }
949 1.5.2.3 ad kmem_free(aiocbp_list, nent * sizeof(struct aio_job));
950 1.5.2.2 ad return error;
951 1.5.2.2 ad }
952 1.5.2.2 ad
953 1.5.2.2 ad /*
954 1.5.2.2 ad * SysCtl
955 1.5.2.2 ad */
956 1.5.2.2 ad
957 1.5.2.2 ad static int
958 1.5.2.2 ad sysctl_aio_listio_max(SYSCTLFN_ARGS)
959 1.5.2.2 ad {
960 1.5.2.2 ad struct sysctlnode node;
961 1.5.2.2 ad int error, newsize;
962 1.5.2.2 ad
963 1.5.2.2 ad node = *rnode;
964 1.5.2.2 ad node.sysctl_data = &newsize;
965 1.5.2.2 ad
966 1.5.2.2 ad newsize = aio_listio_max;
967 1.5.2.2 ad error = sysctl_lookup(SYSCTLFN_CALL(&node));
968 1.5.2.2 ad if (error || newp == NULL)
969 1.5.2.2 ad return error;
970 1.5.2.2 ad
971 1.5.2.2 ad /* XXXSMP */
972 1.5.2.2 ad if (newsize < 1 || newsize > aio_max)
973 1.5.2.2 ad return EINVAL;
974 1.5.2.2 ad aio_listio_max = newsize;
975 1.5.2.2 ad
976 1.5.2.2 ad return 0;
977 1.5.2.2 ad }
978 1.5.2.2 ad
979 1.5.2.2 ad static int
980 1.5.2.2 ad sysctl_aio_max(SYSCTLFN_ARGS)
981 1.5.2.2 ad {
982 1.5.2.2 ad struct sysctlnode node;
983 1.5.2.2 ad int error, newsize;
984 1.5.2.2 ad
985 1.5.2.2 ad node = *rnode;
986 1.5.2.2 ad node.sysctl_data = &newsize;
987 1.5.2.2 ad
988 1.5.2.2 ad newsize = aio_max;
989 1.5.2.2 ad error = sysctl_lookup(SYSCTLFN_CALL(&node));
990 1.5.2.2 ad if (error || newp == NULL)
991 1.5.2.2 ad return error;
992 1.5.2.2 ad
993 1.5.2.2 ad /* XXXSMP */
994 1.5.2.2 ad if (newsize < 1 || newsize < aio_listio_max)
995 1.5.2.2 ad return EINVAL;
996 1.5.2.2 ad aio_max = newsize;
997 1.5.2.2 ad
998 1.5.2.2 ad return 0;
999 1.5.2.2 ad }
1000 1.5.2.2 ad
1001 1.5.2.2 ad SYSCTL_SETUP(sysctl_aio_setup, "sysctl aio setup")
1002 1.5.2.2 ad {
1003 1.5.2.2 ad
1004 1.5.2.2 ad sysctl_createv(clog, 0, NULL, NULL,
1005 1.5.2.2 ad CTLFLAG_PERMANENT,
1006 1.5.2.2 ad CTLTYPE_NODE, "kern", NULL,
1007 1.5.2.2 ad NULL, 0, NULL, 0,
1008 1.5.2.2 ad CTL_KERN, CTL_EOL);
1009 1.5.2.2 ad sysctl_createv(clog, 0, NULL, NULL,
1010 1.5.2.2 ad CTLFLAG_PERMANENT | CTLFLAG_IMMEDIATE,
1011 1.5.2.2 ad CTLTYPE_INT, "posix_aio",
1012 1.5.2.2 ad SYSCTL_DESCR("Version of IEEE Std 1003.1 and its "
1013 1.5.2.2 ad "Asynchronous I/O option to which the "
1014 1.5.2.2 ad "system attempts to conform"),
1015 1.5.2.2 ad NULL, _POSIX_ASYNCHRONOUS_IO, NULL, 0,
1016 1.5.2.2 ad CTL_KERN, CTL_CREATE, CTL_EOL);
1017 1.5.2.2 ad sysctl_createv(clog, 0, NULL, NULL,
1018 1.5.2.2 ad CTLFLAG_PERMANENT | CTLFLAG_READWRITE,
1019 1.5.2.2 ad CTLTYPE_INT, "aio_listio_max",
1020 1.5.2.2 ad SYSCTL_DESCR("Maximum number of asynchronous I/O "
1021 1.5.2.2 ad "operations in a single list I/O call"),
1022 1.5.2.2 ad sysctl_aio_listio_max, 0, &aio_listio_max, 0,
1023 1.5.2.2 ad CTL_KERN, CTL_CREATE, CTL_EOL);
1024 1.5.2.2 ad sysctl_createv(clog, 0, NULL, NULL,
1025 1.5.2.2 ad CTLFLAG_PERMANENT | CTLFLAG_READWRITE,
1026 1.5.2.2 ad CTLTYPE_INT, "aio_max",
1027 1.5.2.2 ad SYSCTL_DESCR("Maximum number of asynchronous I/O "
1028 1.5.2.2 ad "operations"),
1029 1.5.2.2 ad sysctl_aio_max, 0, &aio_max, 0,
1030 1.5.2.2 ad CTL_KERN, CTL_CREATE, CTL_EOL);
1031 1.5.2.2 ad }
1032 1.5.2.2 ad
1033 1.5.2.2 ad /*
1034 1.5.2.2 ad * Debugging
1035 1.5.2.2 ad */
1036 1.5.2.2 ad #if defined(DDB)
1037 1.5.2.2 ad void
1038 1.5.2.2 ad aio_print_jobs(void (*pr)(const char *, ...))
1039 1.5.2.2 ad {
1040 1.5.2.2 ad struct proc *p = (curlwp == NULL ? NULL : curlwp->l_proc);
1041 1.5.2.2 ad struct aioproc *aio;
1042 1.5.2.2 ad struct aio_job *a_job;
1043 1.5.2.2 ad struct aiocb *aiocbp;
1044 1.5.2.2 ad
1045 1.5.2.2 ad if (p == NULL) {
1046 1.5.2.2 ad (*pr)("AIO: We are not in the processes right now.\n");
1047 1.5.2.2 ad return;
1048 1.5.2.2 ad }
1049 1.5.2.2 ad
1050 1.5.2.2 ad aio = p->p_aio;
1051 1.5.2.2 ad if (aio == NULL) {
1052 1.5.2.2 ad (*pr)("AIO data is not initialized (PID = %d).\n", p->p_pid);
1053 1.5.2.2 ad return;
1054 1.5.2.2 ad }
1055 1.5.2.2 ad
1056 1.5.2.2 ad (*pr)("AIO: PID = %d\n", p->p_pid);
1057 1.5.2.2 ad (*pr)("AIO: Global count of the jobs = %u\n", aio_jobs_count);
1058 1.5.2.2 ad (*pr)("AIO: Count of the jobs = %u\n", aio->jobs_count);
1059 1.5.2.2 ad
1060 1.5.2.2 ad if (aio->curjob) {
1061 1.5.2.2 ad a_job = aio->curjob;
1062 1.5.2.2 ad (*pr)("\nAIO current job:\n");
1063 1.5.2.2 ad (*pr)(" opcode = %d, errno = %d, state = %d, aiocb_ptr = %p\n",
1064 1.5.2.2 ad a_job->aio_op, a_job->aiocbp._errno,
1065 1.5.2.2 ad a_job->aiocbp._state, a_job->aiocb_uptr);
1066 1.5.2.2 ad aiocbp = &a_job->aiocbp;
1067 1.5.2.2 ad (*pr)(" fd = %d, offset = %u, buf = %p, nbytes = %u\n",
1068 1.5.2.2 ad aiocbp->aio_fildes, aiocbp->aio_offset,
1069 1.5.2.2 ad aiocbp->aio_buf, aiocbp->aio_nbytes);
1070 1.5.2.2 ad }
1071 1.5.2.2 ad
1072 1.5.2.2 ad (*pr)("\nAIO queue:\n");
1073 1.5.2.2 ad TAILQ_FOREACH(a_job, &aio->jobs_queue, list) {
1074 1.5.2.2 ad (*pr)(" opcode = %d, errno = %d, state = %d, aiocb_ptr = %p\n",
1075 1.5.2.2 ad a_job->aio_op, a_job->aiocbp._errno,
1076 1.5.2.2 ad a_job->aiocbp._state, a_job->aiocb_uptr);
1077 1.5.2.2 ad aiocbp = &a_job->aiocbp;
1078 1.5.2.2 ad (*pr)(" fd = %d, offset = %u, buf = %p, nbytes = %u\n",
1079 1.5.2.2 ad aiocbp->aio_fildes, aiocbp->aio_offset,
1080 1.5.2.2 ad aiocbp->aio_buf, aiocbp->aio_nbytes);
1081 1.5.2.2 ad }
1082 1.5.2.2 ad }
1083 1.5.2.2 ad #endif /* defined(DDB) */
1084