]>
Commit | Line | Data |
---|---|---|
55e303ae | 1 | /* |
fe8ab488 | 2 | * Copyright (c) 2003-2014 Apple Inc. All rights reserved. |
55e303ae | 3 | * |
2d21ac55 | 4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ |
55e303ae | 5 | * |
2d21ac55 A |
6 | * This file contains Original Code and/or Modifications of Original Code |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. The rights granted to you under the License | |
10 | * may not be used to create, or enable the creation or redistribution of, | |
11 | * unlawful or unlicensed copies of an Apple operating system, or to | |
12 | * circumvent, violate, or enable the circumvention or violation of, any | |
13 | * terms of an Apple operating system software license agreement. | |
8f6c56a5 | 14 | * |
2d21ac55 A |
15 | * Please obtain a copy of the License at |
16 | * http://www.opensource.apple.com/apsl/ and read it before using this file. | |
17 | * | |
18 | * The Original Code and all software distributed under the License are | |
19 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
8f6c56a5 A |
20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
2d21ac55 A |
22 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. |
23 | * Please see the License for the specific language governing rights and | |
24 | * limitations under the License. | |
8f6c56a5 | 25 | * |
2d21ac55 | 26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ |
55e303ae A |
27 | */ |
28 | ||
29 | ||
30 | /* | |
31 | * todo: | |
32 | * 1) ramesh is looking into how to replace taking a reference on | |
33 | * the user's map (vm_map_reference()) since it is believed that | |
34 | * would not hold the process for us. | |
35 | * 2) david is looking into a way for us to set the priority of the | |
36 | * worker threads to match that of the user's thread when the | |
37 | * async IO was queued. | |
38 | */ | |
39 | ||
40 | ||
41 | /* | |
42 | * This file contains support for the POSIX 1003.1B AIO/LIO facility. | |
43 | */ | |
44 | ||
45 | #include <sys/systm.h> | |
55e303ae | 46 | #include <sys/fcntl.h> |
91447636 | 47 | #include <sys/file_internal.h> |
55e303ae A |
48 | #include <sys/filedesc.h> |
49 | #include <sys/kernel.h> | |
91447636 | 50 | #include <sys/vnode_internal.h> |
55e303ae | 51 | #include <sys/malloc.h> |
91447636 | 52 | #include <sys/mount_internal.h> |
55e303ae | 53 | #include <sys/param.h> |
91447636 | 54 | #include <sys/proc_internal.h> |
55e303ae A |
55 | #include <sys/sysctl.h> |
56 | #include <sys/unistd.h> | |
57 | #include <sys/user.h> | |
58 | ||
59 | #include <sys/aio_kern.h> | |
91447636 | 60 | #include <sys/sysproto.h> |
55e303ae A |
61 | |
62 | #include <machine/limits.h> | |
91447636 A |
63 | |
64 | #include <mach/mach_types.h> | |
65 | #include <kern/kern_types.h> | |
3e170ce0 | 66 | #include <kern/waitq.h> |
55e303ae A |
67 | #include <kern/zalloc.h> |
68 | #include <kern/task.h> | |
91447636 A |
69 | #include <kern/sched_prim.h> |
70 | ||
71 | #include <vm/vm_map.h> | |
55e303ae | 72 | |
b0d623f7 A |
73 | #include <libkern/OSAtomic.h> |
74 | ||
55e303ae A |
75 | #include <sys/kdebug.h> |
76 | #define AIO_work_queued 1 | |
77 | #define AIO_worker_wake 2 | |
78 | #define AIO_completion_sig 3 | |
79 | #define AIO_completion_cleanup_wait 4 | |
80 | #define AIO_completion_cleanup_wake 5 | |
81 | #define AIO_completion_suspend_wake 6 | |
82 | #define AIO_fsync_delay 7 | |
83 | #define AIO_cancel 10 | |
84 | #define AIO_cancel_async_workq 11 | |
85 | #define AIO_cancel_sync_workq 12 | |
86 | #define AIO_cancel_activeq 13 | |
87 | #define AIO_cancel_doneq 14 | |
88 | #define AIO_fsync 20 | |
89 | #define AIO_read 30 | |
90 | #define AIO_write 40 | |
91 | #define AIO_listio 50 | |
92 | #define AIO_error 60 | |
93 | #define AIO_error_val 61 | |
94 | #define AIO_error_activeq 62 | |
95 | #define AIO_error_workq 63 | |
96 | #define AIO_return 70 | |
97 | #define AIO_return_val 71 | |
98 | #define AIO_return_activeq 72 | |
99 | #define AIO_return_workq 73 | |
100 | #define AIO_exec 80 | |
101 | #define AIO_exit 90 | |
102 | #define AIO_exit_sleep 91 | |
103 | #define AIO_close 100 | |
104 | #define AIO_close_sleep 101 | |
105 | #define AIO_suspend 110 | |
106 | #define AIO_suspend_sleep 111 | |
107 | #define AIO_worker_thread 120 | |
108 | ||
109 | #if 0 | |
110 | #undef KERNEL_DEBUG | |
111 | #define KERNEL_DEBUG KERNEL_DEBUG_CONSTANT | |
112 | #endif | |
113 | ||
114 | /* | |
115 | * aio requests queue up on the aio_async_workq or lio_sync_workq (for | |
116 | * lio_listio LIO_WAIT). Requests then move to the per process aio_activeq | |
117 | * (proc.aio_activeq) when one of our worker threads start the IO. | |
118 | * And finally, requests move to the per process aio_doneq (proc.aio_doneq) | |
119 | * when the IO request completes. The request remains on aio_doneq until | |
120 | * user process calls aio_return or the process exits, either way that is our | |
121 | * trigger to release aio resources. | |
122 | */ | |
b0d623f7 A |
123 | typedef struct aio_workq { |
124 | TAILQ_HEAD(, aio_workq_entry) aioq_entries; | |
125 | int aioq_count; | |
126 | lck_mtx_t aioq_mtx; | |
3e170ce0 | 127 | struct waitq aioq_waitq; |
b0d623f7 A |
128 | } *aio_workq_t; |
129 | ||
130 | #define AIO_NUM_WORK_QUEUES 1 | |
55e303ae A |
131 | struct aio_anchor_cb |
132 | { | |
b0d623f7 A |
133 | volatile int32_t aio_inflight_count; /* entries that have been taken from a workq */ |
134 | volatile int32_t aio_done_count; /* entries on all done queues (proc.aio_doneq) */ | |
135 | volatile int32_t aio_total_count; /* total extant entries */ | |
136 | ||
137 | /* Hash table of queues here */ | |
138 | int aio_num_workqs; | |
139 | struct aio_workq aio_async_workqs[AIO_NUM_WORK_QUEUES]; | |
55e303ae A |
140 | }; |
141 | typedef struct aio_anchor_cb aio_anchor_cb; | |
142 | ||
b0d623f7 A |
143 | struct aio_lio_context |
144 | { | |
145 | int io_waiter; | |
146 | int io_issued; | |
147 | int io_completed; | |
148 | }; | |
149 | typedef struct aio_lio_context aio_lio_context; | |
150 | ||
55e303ae A |
151 | |
152 | /* | |
153 | * Notes on aio sleep / wake channels. | |
154 | * We currently pick a couple fields within the proc structure that will allow | |
155 | * us sleep channels that currently do not collide with any other kernel routines. | |
156 | * At this time, for binary compatibility reasons, we cannot create new proc fields. | |
157 | */ | |
b0d623f7 A |
158 | #define AIO_SUSPEND_SLEEP_CHAN p_aio_active_count |
159 | #define AIO_CLEANUP_SLEEP_CHAN p_aio_total_count | |
55e303ae | 160 | |
b0d623f7 A |
161 | #define ASSERT_AIO_FROM_PROC(aiop, theproc) \ |
162 | if ((aiop)->procp != (theproc)) { \ | |
163 | panic("AIO on a proc list that does not belong to that proc.\n"); \ | |
164 | } | |
55e303ae A |
165 | |
166 | /* | |
167 | * LOCAL PROTOTYPES | |
168 | */ | |
b0d623f7 A |
169 | static void aio_proc_lock(proc_t procp); |
170 | static void aio_proc_lock_spin(proc_t procp); | |
171 | static void aio_proc_unlock(proc_t procp); | |
172 | static lck_mtx_t* aio_proc_mutex(proc_t procp); | |
173 | static void aio_proc_move_done_locked(proc_t procp, aio_workq_entry *entryp); | |
174 | static void aio_proc_remove_done_locked(proc_t procp, aio_workq_entry *entryp); | |
175 | static int aio_get_process_count(proc_t procp ); | |
176 | static int aio_active_requests_for_process(proc_t procp ); | |
177 | static int aio_proc_active_requests_for_file(proc_t procp, int fd); | |
178 | static boolean_t is_already_queued(proc_t procp, user_addr_t aiocbp ); | |
179 | static boolean_t should_cancel(aio_workq_entry *entryp, user_addr_t aiocbp, int fd); | |
180 | ||
181 | static void aio_entry_lock(aio_workq_entry *entryp); | |
182 | static void aio_entry_lock_spin(aio_workq_entry *entryp); | |
183 | static aio_workq_t aio_entry_workq(aio_workq_entry *entryp); | |
184 | static lck_mtx_t* aio_entry_mutex(__unused aio_workq_entry *entryp); | |
185 | static void aio_workq_remove_entry_locked(aio_workq_t queue, aio_workq_entry *entryp); | |
186 | static void aio_workq_add_entry_locked(aio_workq_t queue, aio_workq_entry *entryp); | |
187 | static void aio_entry_ref_locked(aio_workq_entry *entryp); | |
188 | static void aio_entry_unref_locked(aio_workq_entry *entryp); | |
189 | static void aio_entry_ref(aio_workq_entry *entryp); | |
190 | static void aio_entry_unref(aio_workq_entry *entryp); | |
191 | static void aio_entry_update_for_cancel(aio_workq_entry *entryp, boolean_t cancelled, | |
192 | int wait_for_completion, boolean_t disable_notification); | |
193 | static int aio_entry_try_workq_remove(aio_workq_entry *entryp); | |
55e303ae | 194 | static boolean_t aio_delay_fsync_request( aio_workq_entry *entryp ); |
b0d623f7 A |
195 | static int aio_free_request(aio_workq_entry *entryp); |
196 | ||
197 | static void aio_workq_init(aio_workq_t wq); | |
198 | static void aio_workq_lock_spin(aio_workq_t wq); | |
199 | static void aio_workq_unlock(aio_workq_t wq); | |
200 | static lck_mtx_t* aio_workq_mutex(aio_workq_t wq); | |
201 | ||
202 | static void aio_work_thread( void ); | |
203 | static aio_workq_entry *aio_get_some_work( void ); | |
204 | ||
205 | static int aio_get_all_queues_count( void ); | |
206 | static int aio_queue_async_request(proc_t procp, user_addr_t aiocbp, int kindOfIO ); | |
207 | static int aio_validate( aio_workq_entry *entryp ); | |
208 | static int aio_increment_total_count(void); | |
209 | static int aio_decrement_total_count(void); | |
210 | ||
211 | static int do_aio_cancel_locked(proc_t p, int fd, user_addr_t aiocbp, int wait_for_completion, boolean_t disable_notification ); | |
212 | static void do_aio_completion( aio_workq_entry *entryp ); | |
213 | static int do_aio_fsync( aio_workq_entry *entryp ); | |
214 | static int do_aio_read( aio_workq_entry *entryp ); | |
215 | static int do_aio_write( aio_workq_entry *entryp ); | |
216 | static void do_munge_aiocb_user32_to_user( struct user32_aiocb *my_aiocbp, struct user_aiocb *the_user_aiocbp ); | |
217 | static void do_munge_aiocb_user64_to_user( struct user64_aiocb *my_aiocbp, struct user_aiocb *the_user_aiocbp ); | |
218 | static int lio_create_entry(proc_t procp, | |
219 | user_addr_t aiocbp, | |
220 | void *group_tag, | |
221 | aio_workq_entry **entrypp ); | |
222 | static aio_workq_entry *aio_create_queue_entry(proc_t procp, | |
223 | user_addr_t aiocbp, | |
224 | void *group_tag, | |
225 | int kindOfIO); | |
226 | static user_addr_t *aio_copy_in_list(proc_t procp, user_addr_t aiocblist, int nent); | |
227 | static void free_lio_context(aio_lio_context* context); | |
228 | static void aio_enqueue_work( proc_t procp, aio_workq_entry *entryp, int proc_locked); | |
229 | ||
230 | #define ASSERT_AIO_PROC_LOCK_OWNED(p) lck_mtx_assert(aio_proc_mutex((p)), LCK_MTX_ASSERT_OWNED) | |
231 | #define ASSERT_AIO_WORKQ_LOCK_OWNED(q) lck_mtx_assert(aio_workq_mutex((q)), LCK_MTX_ASSERT_OWNED) | |
232 | #define ASSERT_AIO_ENTRY_LOCK_OWNED(e) lck_mtx_assert(aio_entry_mutex((e)), LCK_MTX_ASSERT_OWNED) | |
91447636 | 233 | |
55e303ae A |
234 | /* |
235 | * EXTERNAL PROTOTYPES | |
236 | */ | |
237 | ||
238 | /* in ...bsd/kern/sys_generic.c */ | |
b0d623f7 A |
239 | extern int dofileread(vfs_context_t ctx, struct fileproc *fp, |
240 | user_addr_t bufp, user_size_t nbyte, | |
241 | off_t offset, int flags, user_ssize_t *retval ); | |
242 | extern int dofilewrite(vfs_context_t ctx, struct fileproc *fp, | |
243 | user_addr_t bufp, user_size_t nbyte, off_t offset, | |
244 | int flags, user_ssize_t *retval ); | |
245 | #if DEBUG | |
246 | static uint32_t lio_contexts_alloced = 0; | |
247 | #endif /* DEBUG */ | |
55e303ae A |
248 | |
249 | /* | |
250 | * aio external global variables. | |
251 | */ | |
b0d623f7 | 252 | extern int aio_max_requests; /* AIO_MAX - configurable */ |
55e303ae | 253 | extern int aio_max_requests_per_process; /* AIO_PROCESS_MAX - configurable */ |
b0d623f7 | 254 | extern int aio_worker_threads; /* AIO_THREAD_COUNT - configurable */ |
55e303ae A |
255 | |
256 | ||
257 | /* | |
258 | * aio static variables. | |
259 | */ | |
b0d623f7 A |
260 | static aio_anchor_cb aio_anchor; |
261 | static lck_grp_t *aio_proc_lock_grp; | |
262 | static lck_grp_t *aio_entry_lock_grp; | |
263 | static lck_grp_t *aio_queue_lock_grp; | |
264 | static lck_attr_t *aio_lock_attr; | |
265 | static lck_grp_attr_t *aio_lock_grp_attr; | |
266 | static struct zone *aio_workq_zonep; | |
267 | static lck_mtx_t aio_entry_mtx; | |
268 | static lck_mtx_t aio_proc_mtx; | |
269 | ||
270 | static void | |
271 | aio_entry_lock(__unused aio_workq_entry *entryp) | |
272 | { | |
273 | lck_mtx_lock(&aio_entry_mtx); | |
274 | } | |
275 | ||
276 | static void | |
277 | aio_entry_lock_spin(__unused aio_workq_entry *entryp) | |
278 | { | |
279 | lck_mtx_lock_spin(&aio_entry_mtx); | |
280 | } | |
281 | ||
282 | static void | |
283 | aio_entry_unlock(__unused aio_workq_entry *entryp) | |
284 | { | |
285 | lck_mtx_unlock(&aio_entry_mtx); | |
286 | } | |
287 | ||
288 | /* Hash */ | |
289 | static aio_workq_t | |
290 | aio_entry_workq(__unused aio_workq_entry *entryp) | |
291 | { | |
292 | return &aio_anchor.aio_async_workqs[0]; | |
293 | } | |
294 | ||
295 | static lck_mtx_t* | |
296 | aio_entry_mutex(__unused aio_workq_entry *entryp) | |
297 | { | |
298 | return &aio_entry_mtx; | |
299 | } | |
300 | ||
301 | static void | |
302 | aio_workq_init(aio_workq_t wq) | |
303 | { | |
304 | TAILQ_INIT(&wq->aioq_entries); | |
305 | wq->aioq_count = 0; | |
306 | lck_mtx_init(&wq->aioq_mtx, aio_queue_lock_grp, aio_lock_attr); | |
3e170ce0 | 307 | waitq_init(&wq->aioq_waitq, SYNC_POLICY_FIFO|SYNC_POLICY_DISABLE_IRQ); |
b0d623f7 A |
308 | } |
309 | ||
310 | ||
311 | /* | |
312 | * Can be passed a queue which is locked spin. | |
313 | */ | |
314 | static void | |
315 | aio_workq_remove_entry_locked(aio_workq_t queue, aio_workq_entry *entryp) | |
316 | { | |
317 | ASSERT_AIO_WORKQ_LOCK_OWNED(queue); | |
318 | ||
319 | if (entryp->aio_workq_link.tqe_prev == NULL) { | |
320 | panic("Trying to remove an entry from a work queue, but it is not on a queue\n"); | |
321 | } | |
322 | ||
323 | TAILQ_REMOVE(&queue->aioq_entries, entryp, aio_workq_link); | |
324 | queue->aioq_count--; | |
325 | entryp->aio_workq_link.tqe_prev = NULL; /* Not on a workq */ | |
326 | ||
327 | if (queue->aioq_count < 0) { | |
328 | panic("Negative count on a queue.\n"); | |
329 | } | |
330 | } | |
331 | ||
332 | static void | |
333 | aio_workq_add_entry_locked(aio_workq_t queue, aio_workq_entry *entryp) | |
334 | { | |
335 | ASSERT_AIO_WORKQ_LOCK_OWNED(queue); | |
336 | ||
337 | TAILQ_INSERT_TAIL(&queue->aioq_entries, entryp, aio_workq_link); | |
338 | if (queue->aioq_count < 0) { | |
339 | panic("Negative count on a queue.\n"); | |
340 | } | |
341 | queue->aioq_count++; | |
342 | } | |
343 | ||
344 | static void | |
345 | aio_proc_lock(proc_t procp) | |
346 | { | |
347 | lck_mtx_lock(aio_proc_mutex(procp)); | |
348 | } | |
349 | ||
350 | static void | |
351 | aio_proc_lock_spin(proc_t procp) | |
352 | { | |
353 | lck_mtx_lock_spin(aio_proc_mutex(procp)); | |
354 | } | |
355 | ||
356 | static void | |
357 | aio_proc_move_done_locked(proc_t procp, aio_workq_entry *entryp) | |
358 | { | |
359 | ASSERT_AIO_PROC_LOCK_OWNED(procp); | |
360 | ||
361 | TAILQ_REMOVE(&procp->p_aio_activeq, entryp, aio_proc_link ); | |
362 | TAILQ_INSERT_TAIL( &procp->p_aio_doneq, entryp, aio_proc_link); | |
363 | procp->p_aio_active_count--; | |
364 | OSIncrementAtomic(&aio_anchor.aio_done_count); | |
365 | } | |
366 | ||
367 | static void | |
368 | aio_proc_remove_done_locked(proc_t procp, aio_workq_entry *entryp) | |
369 | { | |
370 | TAILQ_REMOVE(&procp->p_aio_doneq, entryp, aio_proc_link); | |
371 | OSDecrementAtomic(&aio_anchor.aio_done_count); | |
372 | aio_decrement_total_count(); | |
373 | procp->p_aio_total_count--; | |
374 | } | |
375 | ||
376 | static void | |
377 | aio_proc_unlock(proc_t procp) | |
378 | { | |
379 | lck_mtx_unlock(aio_proc_mutex(procp)); | |
380 | } | |
381 | ||
382 | static lck_mtx_t* | |
383 | aio_proc_mutex(proc_t procp) | |
384 | { | |
385 | return &procp->p_mlock; | |
386 | } | |
387 | ||
388 | static void | |
389 | aio_entry_ref_locked(aio_workq_entry *entryp) | |
390 | { | |
391 | ASSERT_AIO_ENTRY_LOCK_OWNED(entryp); | |
392 | ||
393 | if (entryp->aio_refcount < 0) { | |
394 | panic("AIO workq entry with a negative refcount.\n"); | |
395 | } | |
396 | entryp->aio_refcount++; | |
397 | } | |
398 | ||
399 | ||
400 | /* Return 1 if you've freed it */ | |
401 | static void | |
402 | aio_entry_unref_locked(aio_workq_entry *entryp) | |
403 | { | |
404 | ASSERT_AIO_ENTRY_LOCK_OWNED(entryp); | |
405 | ||
406 | entryp->aio_refcount--; | |
407 | if (entryp->aio_refcount < 0) { | |
408 | panic("AIO workq entry with a negative refcount.\n"); | |
409 | } | |
410 | } | |
411 | ||
412 | static void | |
413 | aio_entry_ref(aio_workq_entry *entryp) | |
414 | { | |
415 | aio_entry_lock_spin(entryp); | |
416 | aio_entry_ref_locked(entryp); | |
417 | aio_entry_unlock(entryp); | |
418 | } | |
419 | static void | |
420 | aio_entry_unref(aio_workq_entry *entryp) | |
421 | { | |
422 | aio_entry_lock_spin(entryp); | |
423 | aio_entry_unref_locked(entryp); | |
424 | ||
425 | if ((entryp->aio_refcount == 0) && ((entryp->flags & AIO_DO_FREE) != 0)) { | |
426 | aio_entry_unlock(entryp); | |
427 | aio_free_request(entryp); | |
428 | } else { | |
429 | aio_entry_unlock(entryp); | |
430 | } | |
431 | ||
432 | return; | |
433 | } | |
434 | ||
435 | static void | |
436 | aio_entry_update_for_cancel(aio_workq_entry *entryp, boolean_t cancelled, int wait_for_completion, boolean_t disable_notification) | |
437 | { | |
438 | aio_entry_lock_spin(entryp); | |
439 | ||
440 | if (cancelled) { | |
441 | aio_entry_ref_locked(entryp); | |
442 | entryp->errorval = ECANCELED; | |
443 | entryp->returnval = -1; | |
444 | } | |
445 | ||
446 | if ( wait_for_completion ) { | |
447 | entryp->flags |= wait_for_completion; /* flag for special completion processing */ | |
448 | } | |
449 | ||
450 | if ( disable_notification ) { | |
451 | entryp->flags |= AIO_DISABLE; /* Don't want a signal */ | |
452 | } | |
453 | ||
454 | aio_entry_unlock(entryp); | |
455 | } | |
456 | ||
457 | static int | |
458 | aio_entry_try_workq_remove(aio_workq_entry *entryp) | |
459 | { | |
460 | /* Can only be cancelled if it's still on a work queue */ | |
461 | if (entryp->aio_workq_link.tqe_prev != NULL) { | |
462 | aio_workq_t queue; | |
463 | ||
464 | /* Will have to check again under the lock */ | |
465 | queue = aio_entry_workq(entryp); | |
466 | aio_workq_lock_spin(queue); | |
467 | if (entryp->aio_workq_link.tqe_prev != NULL) { | |
468 | aio_workq_remove_entry_locked(queue, entryp); | |
469 | aio_workq_unlock(queue); | |
470 | return 1; | |
471 | } else { | |
472 | aio_workq_unlock(queue); | |
473 | } | |
474 | } | |
55e303ae | 475 | |
b0d623f7 A |
476 | return 0; |
477 | } | |
478 | ||
479 | static void | |
480 | aio_workq_lock_spin(aio_workq_t wq) | |
481 | { | |
482 | lck_mtx_lock_spin(aio_workq_mutex(wq)); | |
483 | } | |
55e303ae | 484 | |
b0d623f7 A |
485 | static void |
486 | aio_workq_unlock(aio_workq_t wq) | |
487 | { | |
488 | lck_mtx_unlock(aio_workq_mutex(wq)); | |
489 | } | |
55e303ae | 490 | |
b0d623f7 A |
491 | static lck_mtx_t* |
492 | aio_workq_mutex(aio_workq_t wq) | |
493 | { | |
494 | return &wq->aioq_mtx; | |
495 | } | |
55e303ae A |
496 | |
497 | /* | |
498 | * aio_cancel - attempt to cancel one or more async IO requests currently | |
499 | * outstanding against file descriptor uap->fd. If uap->aiocbp is not | |
500 | * NULL then only one specific IO is cancelled (if possible). If uap->aiocbp | |
501 | * is NULL then all outstanding async IO request for the given file | |
502 | * descriptor are cancelled (if possible). | |
503 | */ | |
55e303ae | 504 | int |
2d21ac55 | 505 | aio_cancel(proc_t p, struct aio_cancel_args *uap, int *retval ) |
55e303ae | 506 | { |
91447636 | 507 | struct user_aiocb my_aiocb; |
55e303ae | 508 | int result; |
55e303ae A |
509 | |
510 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_cancel)) | DBG_FUNC_START, | |
511 | (int)p, (int)uap->aiocbp, 0, 0, 0 ); | |
512 | ||
513 | /* quick check to see if there are any async IO requests queued up */ | |
b0d623f7 | 514 | if (aio_get_all_queues_count() < 1) { |
2d21ac55 A |
515 | result = 0; |
516 | *retval = AIO_ALLDONE; | |
55e303ae A |
517 | goto ExitRoutine; |
518 | } | |
519 | ||
520 | *retval = -1; | |
91447636 | 521 | if ( uap->aiocbp != USER_ADDR_NULL ) { |
b0d623f7 A |
522 | if ( proc_is64bit(p) ) { |
523 | struct user64_aiocb aiocb64; | |
524 | ||
525 | result = copyin( uap->aiocbp, &aiocb64, sizeof(aiocb64) ); | |
526 | if (result == 0 ) | |
527 | do_munge_aiocb_user64_to_user(&aiocb64, &my_aiocb); | |
528 | ||
529 | } else { | |
530 | struct user32_aiocb aiocb32; | |
91447636 A |
531 | |
532 | result = copyin( uap->aiocbp, &aiocb32, sizeof(aiocb32) ); | |
533 | if ( result == 0 ) | |
b0d623f7 A |
534 | do_munge_aiocb_user32_to_user( &aiocb32, &my_aiocb ); |
535 | } | |
91447636 | 536 | |
55e303ae A |
537 | if ( result != 0 ) { |
538 | result = EAGAIN; | |
539 | goto ExitRoutine; | |
540 | } | |
541 | ||
542 | /* NOTE - POSIX standard says a mismatch between the file */ | |
543 | /* descriptor passed in and the file descriptor embedded in */ | |
544 | /* the aiocb causes unspecified results. We return EBADF in */ | |
545 | /* that situation. */ | |
546 | if ( uap->fd != my_aiocb.aio_fildes ) { | |
547 | result = EBADF; | |
548 | goto ExitRoutine; | |
549 | } | |
550 | } | |
b0d623f7 A |
551 | |
552 | aio_proc_lock(p); | |
553 | result = do_aio_cancel_locked( p, uap->fd, uap->aiocbp, 0, FALSE ); | |
554 | ASSERT_AIO_PROC_LOCK_OWNED(p); | |
555 | aio_proc_unlock(p); | |
55e303ae A |
556 | |
557 | if ( result != -1 ) { | |
558 | *retval = result; | |
559 | result = 0; | |
560 | goto ExitRoutine; | |
561 | } | |
562 | ||
563 | result = EBADF; | |
564 | ||
565 | ExitRoutine: | |
566 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_cancel)) | DBG_FUNC_END, | |
567 | (int)p, (int)uap->aiocbp, result, 0, 0 ); | |
568 | ||
569 | return( result ); | |
570 | ||
571 | } /* aio_cancel */ | |
572 | ||
573 | ||
574 | /* | |
575 | * _aio_close - internal function used to clean up async IO requests for | |
576 | * a file descriptor that is closing. | |
55e303ae A |
577 | * THIS MAY BLOCK. |
578 | */ | |
55e303ae | 579 | __private_extern__ void |
2d21ac55 | 580 | _aio_close(proc_t p, int fd ) |
55e303ae | 581 | { |
b0d623f7 | 582 | int error; |
55e303ae A |
583 | |
584 | /* quick check to see if there are any async IO requests queued up */ | |
b0d623f7 | 585 | if (aio_get_all_queues_count() < 1) { |
55e303ae | 586 | return; |
b0d623f7 | 587 | } |
55e303ae A |
588 | |
589 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_close)) | DBG_FUNC_START, | |
590 | (int)p, fd, 0, 0, 0 ); | |
591 | ||
592 | /* cancel all async IO requests on our todo queues for this file descriptor */ | |
b0d623f7 A |
593 | aio_proc_lock(p); |
594 | error = do_aio_cancel_locked( p, fd, 0, AIO_CLOSE_WAIT, FALSE ); | |
595 | ASSERT_AIO_PROC_LOCK_OWNED(p); | |
55e303ae A |
596 | if ( error == AIO_NOTCANCELED ) { |
597 | /* | |
598 | * AIO_NOTCANCELED is returned when we find an aio request for this process | |
599 | * and file descriptor on the active async IO queue. Active requests cannot | |
600 | * be cancelled so we must wait for them to complete. We will get a special | |
601 | * wake up call on our channel used to sleep for ALL active requests to | |
602 | * complete. This sleep channel (proc.AIO_CLEANUP_SLEEP_CHAN) is only used | |
603 | * when we must wait for all active aio requests. | |
604 | */ | |
605 | ||
606 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_close_sleep)) | DBG_FUNC_NONE, | |
607 | (int)p, fd, 0, 0, 0 ); | |
608 | ||
b0d623f7 | 609 | while (aio_proc_active_requests_for_file(p, fd) > 0) { |
39236c6e | 610 | msleep(&p->AIO_CLEANUP_SLEEP_CHAN, aio_proc_mutex(p), PRIBIO, "aio_close", 0 ); |
b0d623f7 A |
611 | } |
612 | ||
55e303ae | 613 | } |
39236c6e A |
614 | |
615 | aio_proc_unlock(p); | |
616 | ||
55e303ae A |
617 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_close)) | DBG_FUNC_END, |
618 | (int)p, fd, 0, 0, 0 ); | |
619 | ||
620 | return; | |
621 | ||
622 | } /* _aio_close */ | |
623 | ||
624 | ||
625 | /* | |
626 | * aio_error - return the error status associated with the async IO | |
627 | * request referred to by uap->aiocbp. The error status is the errno | |
628 | * value that would be set by the corresponding IO request (read, wrtie, | |
629 | * fdatasync, or sync). | |
630 | */ | |
55e303ae | 631 | int |
2d21ac55 | 632 | aio_error(proc_t p, struct aio_error_args *uap, int *retval ) |
55e303ae A |
633 | { |
634 | aio_workq_entry *entryp; | |
635 | int error; | |
636 | ||
637 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_error)) | DBG_FUNC_START, | |
638 | (int)p, (int)uap->aiocbp, 0, 0, 0 ); | |
639 | ||
b0d623f7 A |
640 | /* see if there are any aios to check */ |
641 | if (aio_get_all_queues_count() < 1) { | |
642 | return EINVAL; | |
55e303ae A |
643 | } |
644 | ||
b0d623f7 A |
645 | aio_proc_lock(p); |
646 | ||
55e303ae | 647 | /* look for a match on our queue of async IO requests that have completed */ |
b0d623f7 | 648 | TAILQ_FOREACH( entryp, &p->p_aio_doneq, aio_proc_link) { |
55e303ae | 649 | if ( entryp->uaiocbp == uap->aiocbp ) { |
b0d623f7 A |
650 | ASSERT_AIO_FROM_PROC(entryp, p); |
651 | ||
652 | aio_entry_lock_spin(entryp); | |
55e303ae A |
653 | *retval = entryp->errorval; |
654 | error = 0; | |
b0d623f7 | 655 | aio_entry_unlock(entryp); |
55e303ae A |
656 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_error_val)) | DBG_FUNC_NONE, |
657 | (int)p, (int)uap->aiocbp, *retval, 0, 0 ); | |
658 | goto ExitRoutine; | |
659 | } | |
660 | } | |
661 | ||
662 | /* look for a match on our queue of active async IO requests */ | |
b0d623f7 | 663 | TAILQ_FOREACH( entryp, &p->p_aio_activeq, aio_proc_link) { |
55e303ae | 664 | if ( entryp->uaiocbp == uap->aiocbp ) { |
b0d623f7 | 665 | ASSERT_AIO_FROM_PROC(entryp, p); |
55e303ae A |
666 | *retval = EINPROGRESS; |
667 | error = 0; | |
668 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_error_activeq)) | DBG_FUNC_NONE, | |
669 | (int)p, (int)uap->aiocbp, *retval, 0, 0 ); | |
670 | goto ExitRoutine; | |
671 | } | |
672 | } | |
b0d623f7 | 673 | |
55e303ae A |
674 | error = EINVAL; |
675 | ||
676 | ExitRoutine: | |
677 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_error)) | DBG_FUNC_END, | |
678 | (int)p, (int)uap->aiocbp, error, 0, 0 ); | |
b0d623f7 | 679 | aio_proc_unlock(p); |
55e303ae A |
680 | |
681 | return( error ); | |
682 | ||
683 | } /* aio_error */ | |
684 | ||
685 | ||
686 | /* | |
687 | * aio_fsync - asynchronously force all IO operations associated | |
688 | * with the file indicated by the file descriptor (uap->aiocbp->aio_fildes) and | |
689 | * queued at the time of the call to the synchronized completion state. | |
690 | * NOTE - we do not support op O_DSYNC at this point since we do not support the | |
691 | * fdatasync() call. | |
692 | */ | |
55e303ae | 693 | int |
2d21ac55 | 694 | aio_fsync(proc_t p, struct aio_fsync_args *uap, int *retval ) |
55e303ae A |
695 | { |
696 | int error; | |
697 | int fsync_kind; | |
698 | ||
699 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_fsync)) | DBG_FUNC_START, | |
700 | (int)p, (int)uap->aiocbp, uap->op, 0, 0 ); | |
701 | ||
702 | *retval = 0; | |
91447636 A |
703 | /* 0 := O_SYNC for binary backward compatibility with Panther */ |
704 | if (uap->op == O_SYNC || uap->op == 0) | |
55e303ae | 705 | fsync_kind = AIO_FSYNC; |
55e303ae A |
706 | else if ( uap->op == O_DSYNC ) |
707 | fsync_kind = AIO_DSYNC; | |
55e303ae A |
708 | else { |
709 | *retval = -1; | |
710 | error = EINVAL; | |
711 | goto ExitRoutine; | |
712 | } | |
713 | ||
714 | error = aio_queue_async_request( p, uap->aiocbp, fsync_kind ); | |
715 | if ( error != 0 ) | |
716 | *retval = -1; | |
717 | ||
718 | ExitRoutine: | |
719 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_fsync)) | DBG_FUNC_END, | |
720 | (int)p, (int)uap->aiocbp, error, 0, 0 ); | |
721 | ||
722 | return( error ); | |
723 | ||
724 | } /* aio_fsync */ | |
725 | ||
726 | ||
727 | /* aio_read - asynchronously read uap->aiocbp->aio_nbytes bytes from the | |
728 | * file descriptor (uap->aiocbp->aio_fildes) into the buffer | |
729 | * (uap->aiocbp->aio_buf). | |
730 | */ | |
55e303ae | 731 | int |
2d21ac55 | 732 | aio_read(proc_t p, struct aio_read_args *uap, int *retval ) |
55e303ae A |
733 | { |
734 | int error; | |
735 | ||
736 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_read)) | DBG_FUNC_START, | |
737 | (int)p, (int)uap->aiocbp, 0, 0, 0 ); | |
738 | ||
739 | *retval = 0; | |
740 | ||
741 | error = aio_queue_async_request( p, uap->aiocbp, AIO_READ ); | |
742 | if ( error != 0 ) | |
743 | *retval = -1; | |
744 | ||
745 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_read)) | DBG_FUNC_END, | |
746 | (int)p, (int)uap->aiocbp, error, 0, 0 ); | |
747 | ||
748 | return( error ); | |
749 | ||
750 | } /* aio_read */ | |
751 | ||
752 | ||
753 | /* | |
754 | * aio_return - return the return status associated with the async IO | |
755 | * request referred to by uap->aiocbp. The return status is the value | |
b0d623f7 | 756 | * that would be returned by corresponding IO request (read, write, |
55e303ae A |
757 | * fdatasync, or sync). This is where we release kernel resources |
758 | * held for async IO call associated with the given aiocb pointer. | |
759 | */ | |
55e303ae | 760 | int |
2d21ac55 | 761 | aio_return(proc_t p, struct aio_return_args *uap, user_ssize_t *retval ) |
55e303ae A |
762 | { |
763 | aio_workq_entry *entryp; | |
764 | int error; | |
b0d623f7 | 765 | boolean_t proc_lock_held = FALSE; |
55e303ae A |
766 | |
767 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_return)) | DBG_FUNC_START, | |
768 | (int)p, (int)uap->aiocbp, 0, 0, 0 ); | |
769 | ||
b0d623f7 A |
770 | /* See if there are any entries to check */ |
771 | if (aio_get_all_queues_count() < 1) { | |
55e303ae A |
772 | error = EINVAL; |
773 | goto ExitRoutine; | |
774 | } | |
775 | ||
b0d623f7 A |
776 | aio_proc_lock(p); |
777 | proc_lock_held = TRUE; | |
778 | *retval = 0; | |
779 | ||
55e303ae | 780 | /* look for a match on our queue of async IO requests that have completed */ |
b0d623f7 A |
781 | TAILQ_FOREACH( entryp, &p->p_aio_doneq, aio_proc_link) { |
782 | ASSERT_AIO_FROM_PROC(entryp, p); | |
55e303ae | 783 | if ( entryp->uaiocbp == uap->aiocbp ) { |
b0d623f7 A |
784 | /* Done and valid for aio_return(), pull it off the list */ |
785 | aio_proc_remove_done_locked(p, entryp); | |
55e303ae | 786 | |
b0d623f7 A |
787 | /* Drop the proc lock, but keep the entry locked */ |
788 | aio_entry_lock(entryp); | |
789 | aio_proc_unlock(p); | |
790 | proc_lock_held = FALSE; | |
791 | ||
55e303ae | 792 | *retval = entryp->returnval; |
b0d623f7 | 793 | error = 0; |
55e303ae | 794 | |
b0d623f7 A |
795 | /* No references and off all lists, safe to free */ |
796 | if (entryp->aio_refcount == 0) { | |
797 | aio_entry_unlock(entryp); | |
798 | aio_free_request(entryp); | |
55e303ae | 799 | } |
b0d623f7 A |
800 | else { |
801 | /* Whoever has the refcount will have to free it */ | |
55e303ae | 802 | entryp->flags |= AIO_DO_FREE; |
b0d623f7 A |
803 | aio_entry_unlock(entryp); |
804 | } | |
805 | ||
806 | ||
55e303ae A |
807 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_return_val)) | DBG_FUNC_NONE, |
808 | (int)p, (int)uap->aiocbp, *retval, 0, 0 ); | |
809 | goto ExitRoutine; | |
810 | } | |
811 | } | |
812 | ||
813 | /* look for a match on our queue of active async IO requests */ | |
b0d623f7 A |
814 | TAILQ_FOREACH( entryp, &p->p_aio_activeq, aio_proc_link) { |
815 | ASSERT_AIO_FROM_PROC(entryp, p); | |
55e303ae A |
816 | if ( entryp->uaiocbp == uap->aiocbp ) { |
817 | error = EINPROGRESS; | |
818 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_return_activeq)) | DBG_FUNC_NONE, | |
819 | (int)p, (int)uap->aiocbp, *retval, 0, 0 ); | |
820 | goto ExitRoutine; | |
821 | } | |
822 | } | |
823 | ||
55e303ae A |
824 | error = EINVAL; |
825 | ||
826 | ExitRoutine: | |
b0d623f7 A |
827 | if (proc_lock_held) |
828 | aio_proc_unlock(p); | |
55e303ae A |
829 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_return)) | DBG_FUNC_END, |
830 | (int)p, (int)uap->aiocbp, error, 0, 0 ); | |
831 | ||
832 | return( error ); | |
833 | ||
834 | } /* aio_return */ | |
835 | ||
836 | ||
837 | /* | |
838 | * _aio_exec - internal function used to clean up async IO requests for | |
839 | * a process that is going away due to exec(). We cancel any async IOs | |
840 | * we can and wait for those already active. We also disable signaling | |
841 | * for cancelled or active aio requests that complete. | |
55e303ae A |
842 | * This routine MAY block! |
843 | */ | |
55e303ae | 844 | __private_extern__ void |
2d21ac55 | 845 | _aio_exec(proc_t p ) |
55e303ae A |
846 | { |
847 | ||
848 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_exec)) | DBG_FUNC_START, | |
849 | (int)p, 0, 0, 0, 0 ); | |
850 | ||
851 | _aio_exit( p ); | |
852 | ||
853 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_exec)) | DBG_FUNC_END, | |
854 | (int)p, 0, 0, 0, 0 ); | |
855 | ||
856 | return; | |
857 | ||
858 | } /* _aio_exec */ | |
859 | ||
860 | ||
861 | /* | |
862 | * _aio_exit - internal function used to clean up async IO requests for | |
863 | * a process that is terminating (via exit() or exec() ). We cancel any async IOs | |
864 | * we can and wait for those already active. We also disable signaling | |
865 | * for cancelled or active aio requests that complete. This routine MAY block! | |
55e303ae | 866 | */ |
55e303ae | 867 | __private_extern__ void |
2d21ac55 | 868 | _aio_exit(proc_t p ) |
55e303ae | 869 | { |
b0d623f7 | 870 | int error; |
55e303ae A |
871 | aio_workq_entry *entryp; |
872 | ||
b0d623f7 | 873 | |
55e303ae | 874 | /* quick check to see if there are any async IO requests queued up */ |
b0d623f7 | 875 | if (aio_get_all_queues_count() < 1) { |
55e303ae A |
876 | return; |
877 | } | |
878 | ||
879 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_exit)) | DBG_FUNC_START, | |
880 | (int)p, 0, 0, 0, 0 ); | |
881 | ||
b0d623f7 A |
882 | aio_proc_lock(p); |
883 | ||
55e303ae A |
884 | /* |
885 | * cancel async IO requests on the todo work queue and wait for those | |
886 | * already active to complete. | |
887 | */ | |
b0d623f7 A |
888 | error = do_aio_cancel_locked( p, 0, 0, AIO_EXIT_WAIT, TRUE ); |
889 | ASSERT_AIO_PROC_LOCK_OWNED(p); | |
55e303ae A |
890 | if ( error == AIO_NOTCANCELED ) { |
891 | /* | |
892 | * AIO_NOTCANCELED is returned when we find an aio request for this process | |
893 | * on the active async IO queue. Active requests cannot be cancelled so we | |
894 | * must wait for them to complete. We will get a special wake up call on | |
895 | * our channel used to sleep for ALL active requests to complete. This sleep | |
896 | * channel (proc.AIO_CLEANUP_SLEEP_CHAN) is only used when we must wait for all | |
897 | * active aio requests. | |
898 | */ | |
899 | ||
900 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_exit_sleep)) | DBG_FUNC_NONE, | |
901 | (int)p, 0, 0, 0, 0 ); | |
902 | ||
b0d623f7 A |
903 | while (p->p_aio_active_count != 0) { |
904 | msleep(&p->AIO_CLEANUP_SLEEP_CHAN, aio_proc_mutex(p), PRIBIO, "aio_exit", 0 ); | |
905 | } | |
906 | } | |
907 | ||
908 | if (p->p_aio_active_count != 0) { | |
909 | panic("Exiting process has %d active AIOs after cancellation has completed.\n", p->p_aio_active_count); | |
55e303ae A |
910 | } |
911 | ||
912 | /* release all aio resources used by this process */ | |
b0d623f7 | 913 | entryp = TAILQ_FIRST( &p->p_aio_doneq ); |
55e303ae | 914 | while ( entryp != NULL ) { |
b0d623f7 | 915 | ASSERT_AIO_FROM_PROC(entryp, p); |
55e303ae A |
916 | aio_workq_entry *next_entryp; |
917 | ||
b0d623f7 A |
918 | next_entryp = TAILQ_NEXT( entryp, aio_proc_link); |
919 | aio_proc_remove_done_locked(p, entryp); | |
55e303ae A |
920 | |
921 | /* we cannot free requests that are still completing */ | |
b0d623f7 A |
922 | aio_entry_lock_spin(entryp); |
923 | if (entryp->aio_refcount == 0) { | |
924 | aio_proc_unlock(p); | |
925 | aio_entry_unlock(entryp); | |
926 | aio_free_request(entryp); | |
55e303ae A |
927 | |
928 | /* need to start over since aio_doneq may have been */ | |
929 | /* changed while we were away. */ | |
b0d623f7 A |
930 | aio_proc_lock(p); |
931 | entryp = TAILQ_FIRST( &p->p_aio_doneq ); | |
55e303ae A |
932 | continue; |
933 | } | |
b0d623f7 A |
934 | else { |
935 | /* whoever has the reference will have to do the free */ | |
55e303ae | 936 | entryp->flags |= AIO_DO_FREE; |
b0d623f7 A |
937 | } |
938 | ||
939 | aio_entry_unlock(entryp); | |
55e303ae A |
940 | entryp = next_entryp; |
941 | } | |
b0d623f7 A |
942 | |
943 | aio_proc_unlock(p); | |
944 | ||
55e303ae A |
945 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_exit)) | DBG_FUNC_END, |
946 | (int)p, 0, 0, 0, 0 ); | |
55e303ae A |
947 | return; |
948 | ||
949 | } /* _aio_exit */ | |
950 | ||
951 | ||
b0d623f7 A |
952 | static boolean_t |
953 | should_cancel(aio_workq_entry *entryp, user_addr_t aiocbp, int fd) | |
954 | { | |
955 | if ( (aiocbp == USER_ADDR_NULL && fd == 0) || | |
956 | (aiocbp != USER_ADDR_NULL && entryp->uaiocbp == aiocbp) || | |
957 | (aiocbp == USER_ADDR_NULL && fd == entryp->aiocb.aio_fildes) ) { | |
958 | return TRUE; | |
959 | } | |
960 | ||
961 | return FALSE; | |
962 | } | |
963 | ||
55e303ae | 964 | /* |
b0d623f7 | 965 | * do_aio_cancel_locked - cancel async IO requests (if possible). We get called by |
55e303ae A |
966 | * aio_cancel, close, and at exit. |
967 | * There are three modes of operation: 1) cancel all async IOs for a process - | |
968 | * fd is 0 and aiocbp is NULL 2) cancel all async IOs for file descriptor - fd | |
969 | * is > 0 and aiocbp is NULL 3) cancel one async IO associated with the given | |
970 | * aiocbp. | |
971 | * Returns -1 if no matches were found, AIO_CANCELED when we cancelled all | |
972 | * target async IO requests, AIO_NOTCANCELED if we could not cancel all | |
973 | * target async IO requests, and AIO_ALLDONE if all target async IO requests | |
974 | * were already complete. | |
975 | * WARNING - do not deference aiocbp in this routine, it may point to user | |
976 | * land data that has not been copied in (when called from aio_cancel() ) | |
b0d623f7 A |
977 | * |
978 | * Called with proc locked, and returns the same way. | |
55e303ae | 979 | */ |
55e303ae | 980 | static int |
b0d623f7 A |
981 | do_aio_cancel_locked(proc_t p, int fd, user_addr_t aiocbp, |
982 | int wait_for_completion, boolean_t disable_notification ) | |
55e303ae | 983 | { |
b0d623f7 A |
984 | ASSERT_AIO_PROC_LOCK_OWNED(p); |
985 | ||
55e303ae A |
986 | aio_workq_entry *entryp; |
987 | int result; | |
988 | ||
989 | result = -1; | |
990 | ||
991 | /* look for a match on our queue of async todo work. */ | |
b0d623f7 | 992 | entryp = TAILQ_FIRST(&p->p_aio_activeq); |
55e303ae | 993 | while ( entryp != NULL ) { |
b0d623f7 | 994 | ASSERT_AIO_FROM_PROC(entryp, p); |
55e303ae | 995 | aio_workq_entry *next_entryp; |
55e303ae | 996 | |
b0d623f7 A |
997 | next_entryp = TAILQ_NEXT( entryp, aio_proc_link); |
998 | if (!should_cancel(entryp, aiocbp, fd)) { | |
999 | entryp = next_entryp; | |
1000 | continue; | |
55e303ae | 1001 | } |
b0d623f7 A |
1002 | |
1003 | /* Can only be cancelled if it's still on a work queue */ | |
1004 | if (aio_entry_try_workq_remove(entryp) != 0) { | |
1005 | /* Have removed from workq. Update entry state and take a ref */ | |
1006 | aio_entry_update_for_cancel(entryp, TRUE, 0, disable_notification); | |
1007 | ||
1008 | /* Put on the proc done queue and update counts, then unlock the proc */ | |
1009 | aio_proc_move_done_locked(p, entryp); | |
1010 | aio_proc_unlock(p); | |
1011 | ||
1012 | /* Now it's officially cancelled. Do the completion */ | |
1013 | result = AIO_CANCELED; | |
1014 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_cancel_async_workq)) | DBG_FUNC_NONE, | |
1015 | (int)entryp->procp, (int)entryp->uaiocbp, fd, 0, 0 ); | |
1016 | do_aio_completion(entryp); | |
1017 | ||
1018 | /* This will free if the aio_return() has already happened ... */ | |
1019 | aio_entry_unref(entryp); | |
1020 | aio_proc_lock(p); | |
1021 | ||
1022 | if ( aiocbp != USER_ADDR_NULL ) { | |
1023 | return( result ); | |
55e303ae | 1024 | } |
55e303ae | 1025 | |
b0d623f7 A |
1026 | /* |
1027 | * Restart from the head of the proc active queue since it | |
1028 | * may have been changed while we were away doing completion | |
1029 | * processing. | |
1030 | * | |
1031 | * Note that if we found an uncancellable AIO before, we will | |
1032 | * either find it again or discover that it's been completed, | |
1033 | * so resetting the result will not cause us to return success | |
1034 | * despite outstanding AIOs. | |
1035 | */ | |
1036 | entryp = TAILQ_FIRST(&p->p_aio_activeq); | |
1037 | result = -1; /* As if beginning anew */ | |
1038 | } else { | |
1039 | /* | |
1040 | * It's been taken off the active queue already, i.e. is in flight. | |
1041 | * All we can do is ask for notification. | |
1042 | */ | |
55e303ae A |
1043 | result = AIO_NOTCANCELED; |
1044 | ||
1045 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_cancel_activeq)) | DBG_FUNC_NONE, | |
b0d623f7 A |
1046 | (int)entryp->procp, (int)entryp->uaiocbp, fd, 0, 0 ); |
1047 | ||
1048 | /* Mark for waiting and such; will not take a ref if "cancelled" arg is FALSE */ | |
1049 | aio_entry_update_for_cancel(entryp, FALSE, wait_for_completion, disable_notification); | |
55e303ae | 1050 | |
91447636 | 1051 | if ( aiocbp != USER_ADDR_NULL ) { |
55e303ae A |
1052 | return( result ); |
1053 | } | |
b0d623f7 | 1054 | entryp = next_entryp; |
55e303ae | 1055 | } |
b0d623f7 A |
1056 | } /* while... */ |
1057 | ||
55e303ae A |
1058 | /* |
1059 | * if we didn't find any matches on the todo or active queues then look for a | |
1060 | * match on our queue of async IO requests that have completed and if found | |
1061 | * return AIO_ALLDONE result. | |
b0d623f7 A |
1062 | * |
1063 | * Proc AIO lock is still held. | |
55e303ae A |
1064 | */ |
1065 | if ( result == -1 ) { | |
b0d623f7 A |
1066 | TAILQ_FOREACH(entryp, &p->p_aio_doneq, aio_proc_link) { |
1067 | ASSERT_AIO_FROM_PROC(entryp, p); | |
1068 | if (should_cancel(entryp, aiocbp, fd)) { | |
55e303ae | 1069 | result = AIO_ALLDONE; |
55e303ae | 1070 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_cancel_doneq)) | DBG_FUNC_NONE, |
b0d623f7 | 1071 | (int)entryp->procp, (int)entryp->uaiocbp, fd, 0, 0 ); |
55e303ae | 1072 | |
91447636 | 1073 | if ( aiocbp != USER_ADDR_NULL ) { |
55e303ae A |
1074 | return( result ); |
1075 | } | |
1076 | } | |
1077 | } | |
1078 | } | |
55e303ae A |
1079 | |
1080 | return( result ); | |
1081 | ||
b0d623f7 A |
1082 | } |
1083 | /* do_aio_cancel_locked */ | |
55e303ae A |
1084 | |
1085 | ||
1086 | /* | |
1087 | * aio_suspend - suspend the calling thread until at least one of the async | |
1088 | * IO operations referenced by uap->aiocblist has completed, until a signal | |
1089 | * interrupts the function, or uap->timeoutp time interval (optional) has | |
1090 | * passed. | |
1091 | * Returns 0 if one or more async IOs have completed else -1 and errno is | |
1092 | * set appropriately - EAGAIN if timeout elapses or EINTR if an interrupt | |
1093 | * woke us up. | |
1094 | */ | |
2d21ac55 A |
1095 | int |
1096 | aio_suspend(proc_t p, struct aio_suspend_args *uap, int *retval ) | |
1097 | { | |
1098 | __pthread_testcancel(1); | |
1099 | return(aio_suspend_nocancel(p, (struct aio_suspend_nocancel_args *)uap, retval)); | |
1100 | } | |
1101 | ||
55e303ae A |
1102 | |
1103 | int | |
2d21ac55 | 1104 | aio_suspend_nocancel(proc_t p, struct aio_suspend_nocancel_args *uap, int *retval ) |
55e303ae A |
1105 | { |
1106 | int error; | |
1107 | int i, count; | |
1108 | uint64_t abstime; | |
91447636 | 1109 | struct user_timespec ts; |
55e303ae | 1110 | aio_workq_entry *entryp; |
91447636 | 1111 | user_addr_t *aiocbpp; |
55e303ae A |
1112 | |
1113 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_suspend)) | DBG_FUNC_START, | |
1114 | (int)p, uap->nent, 0, 0, 0 ); | |
1115 | ||
1116 | *retval = -1; | |
1117 | abstime = 0; | |
1118 | aiocbpp = NULL; | |
1119 | ||
b0d623f7 | 1120 | count = aio_get_all_queues_count( ); |
55e303ae A |
1121 | if ( count < 1 ) { |
1122 | error = EINVAL; | |
1123 | goto ExitThisRoutine; | |
1124 | } | |
1125 | ||
91447636 | 1126 | if ( uap->nent < 1 || uap->nent > aio_max_requests_per_process ) { |
55e303ae A |
1127 | error = EINVAL; |
1128 | goto ExitThisRoutine; | |
1129 | } | |
1130 | ||
91447636 A |
1131 | if ( uap->timeoutp != USER_ADDR_NULL ) { |
1132 | if ( proc_is64bit(p) ) { | |
b0d623f7 A |
1133 | struct user64_timespec temp; |
1134 | error = copyin( uap->timeoutp, &temp, sizeof(temp) ); | |
1135 | if ( error == 0 ) { | |
1136 | ts.tv_sec = temp.tv_sec; | |
1137 | ts.tv_nsec = temp.tv_nsec; | |
1138 | } | |
91447636 A |
1139 | } |
1140 | else { | |
b0d623f7 | 1141 | struct user32_timespec temp; |
91447636 A |
1142 | error = copyin( uap->timeoutp, &temp, sizeof(temp) ); |
1143 | if ( error == 0 ) { | |
1144 | ts.tv_sec = temp.tv_sec; | |
1145 | ts.tv_nsec = temp.tv_nsec; | |
1146 | } | |
1147 | } | |
55e303ae A |
1148 | if ( error != 0 ) { |
1149 | error = EAGAIN; | |
1150 | goto ExitThisRoutine; | |
1151 | } | |
1152 | ||
2d21ac55 | 1153 | if ( ts.tv_sec < 0 || ts.tv_nsec < 0 || ts.tv_nsec >= 1000000000 ) { |
55e303ae A |
1154 | error = EINVAL; |
1155 | goto ExitThisRoutine; | |
1156 | } | |
1157 | ||
1158 | nanoseconds_to_absolutetime( (uint64_t)ts.tv_sec * NSEC_PER_SEC + ts.tv_nsec, | |
1159 | &abstime ); | |
1160 | clock_absolutetime_interval_to_deadline( abstime, &abstime ); | |
1161 | } | |
1162 | ||
b0d623f7 | 1163 | aiocbpp = aio_copy_in_list(p, uap->aiocblist, uap->nent); |
55e303ae A |
1164 | if ( aiocbpp == NULL ) { |
1165 | error = EAGAIN; | |
1166 | goto ExitThisRoutine; | |
1167 | } | |
1168 | ||
91447636 | 1169 | /* check list of aio requests to see if any have completed */ |
2d21ac55 | 1170 | check_for_our_aiocbp: |
b0d623f7 | 1171 | aio_proc_lock_spin(p); |
91447636 A |
1172 | for ( i = 0; i < uap->nent; i++ ) { |
1173 | user_addr_t aiocbp; | |
1174 | ||
55e303ae A |
1175 | /* NULL elements are legal so check for 'em */ |
1176 | aiocbp = *(aiocbpp + i); | |
91447636 | 1177 | if ( aiocbp == USER_ADDR_NULL ) |
55e303ae | 1178 | continue; |
91447636 | 1179 | |
55e303ae | 1180 | /* return immediately if any aio request in the list is done */ |
b0d623f7 A |
1181 | TAILQ_FOREACH( entryp, &p->p_aio_doneq, aio_proc_link) { |
1182 | ASSERT_AIO_FROM_PROC(entryp, p); | |
55e303ae | 1183 | if ( entryp->uaiocbp == aiocbp ) { |
b0d623f7 | 1184 | aio_proc_unlock(p); |
55e303ae A |
1185 | *retval = 0; |
1186 | error = 0; | |
55e303ae A |
1187 | goto ExitThisRoutine; |
1188 | } | |
1189 | } | |
55e303ae A |
1190 | } /* for ( ; i < uap->nent; ) */ |
1191 | ||
1192 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_suspend_sleep)) | DBG_FUNC_NONE, | |
1193 | (int)p, uap->nent, 0, 0, 0 ); | |
1194 | ||
1195 | /* | |
1196 | * wait for an async IO to complete or a signal fires or timeout expires. | |
1197 | * we return EAGAIN (35) for timeout expiration and EINTR (4) when a signal | |
1198 | * interrupts us. If an async IO completes before a signal fires or our | |
91447636 | 1199 | * timeout expires, we get a wakeup call from aio_work_thread(). |
55e303ae | 1200 | */ |
91447636 | 1201 | |
b0d623f7 | 1202 | error = msleep1(&p->AIO_SUSPEND_SLEEP_CHAN, aio_proc_mutex(p), PCATCH | PWAIT | PDROP, "aio_suspend", abstime); /* XXX better priority? */ |
7e4a7d39 | 1203 | if ( error == 0 ) { |
2d21ac55 A |
1204 | /* |
1205 | * got our wakeup call from aio_work_thread(). | |
1206 | * Since we can get a wakeup on this channel from another thread in the | |
1207 | * same process we head back up to make sure this is for the correct aiocbp. | |
1208 | * If it is the correct aiocbp we will return from where we do the check | |
1209 | * (see entryp->uaiocbp == aiocbp after check_for_our_aiocbp label) | |
1210 | * else we will fall out and just sleep again. | |
1211 | */ | |
1212 | goto check_for_our_aiocbp; | |
55e303ae | 1213 | } |
7e4a7d39 | 1214 | else if ( error == EWOULDBLOCK ) { |
55e303ae A |
1215 | /* our timeout expired */ |
1216 | error = EAGAIN; | |
1217 | } | |
1218 | else { | |
1219 | /* we were interrupted */ | |
55e303ae A |
1220 | error = EINTR; |
1221 | } | |
1222 | ||
1223 | ExitThisRoutine: | |
1224 | if ( aiocbpp != NULL ) | |
1225 | FREE( aiocbpp, M_TEMP ); | |
1226 | ||
1227 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_suspend)) | DBG_FUNC_END, | |
1228 | (int)p, uap->nent, error, 0, 0 ); | |
1229 | ||
1230 | return( error ); | |
1231 | ||
1232 | } /* aio_suspend */ | |
1233 | ||
1234 | ||
1235 | /* aio_write - asynchronously write uap->aiocbp->aio_nbytes bytes to the | |
1236 | * file descriptor (uap->aiocbp->aio_fildes) from the buffer | |
1237 | * (uap->aiocbp->aio_buf). | |
1238 | */ | |
1239 | ||
1240 | int | |
2d21ac55 | 1241 | aio_write(proc_t p, struct aio_write_args *uap, int *retval ) |
55e303ae A |
1242 | { |
1243 | int error; | |
1244 | ||
1245 | *retval = 0; | |
1246 | ||
1247 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_write)) | DBG_FUNC_START, | |
1248 | (int)p, (int)uap->aiocbp, 0, 0, 0 ); | |
1249 | ||
1250 | error = aio_queue_async_request( p, uap->aiocbp, AIO_WRITE ); | |
1251 | if ( error != 0 ) | |
1252 | *retval = -1; | |
1253 | ||
1254 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_write)) | DBG_FUNC_END, | |
1255 | (int)p, (int)uap->aiocbp, error, 0, 0 ); | |
1256 | ||
1257 | return( error ); | |
1258 | ||
1259 | } /* aio_write */ | |
1260 | ||
1261 | ||
b0d623f7 A |
1262 | static user_addr_t * |
1263 | aio_copy_in_list(proc_t procp, user_addr_t aiocblist, int nent) | |
55e303ae | 1264 | { |
b0d623f7 A |
1265 | user_addr_t *aiocbpp; |
1266 | int i, result; | |
55e303ae | 1267 | |
b0d623f7 A |
1268 | /* we reserve enough space for largest possible pointer size */ |
1269 | MALLOC( aiocbpp, user_addr_t *, (nent * sizeof(user_addr_t)), M_TEMP, M_WAITOK ); | |
1270 | if ( aiocbpp == NULL ) | |
1271 | goto err; | |
1272 | ||
1273 | /* copyin our aiocb pointers from list */ | |
1274 | result = copyin( aiocblist, aiocbpp, | |
1275 | proc_is64bit(procp) ? (nent * sizeof(user64_addr_t)) | |
1276 | : (nent * sizeof(user32_addr_t)) ); | |
1277 | if ( result) { | |
1278 | FREE( aiocbpp, M_TEMP ); | |
1279 | aiocbpp = NULL; | |
1280 | goto err; | |
1281 | } | |
1282 | ||
1283 | /* | |
1284 | * We depend on a list of user_addr_t's so we need to | |
1285 | * munge and expand when these pointers came from a | |
1286 | * 32-bit process | |
1287 | */ | |
1288 | if ( !proc_is64bit(procp) ) { | |
1289 | /* copy from last to first to deal with overlap */ | |
1290 | user32_addr_t *my_ptrp = ((user32_addr_t *)aiocbpp) + (nent - 1); | |
1291 | user_addr_t *my_addrp = aiocbpp + (nent - 1); | |
1292 | ||
1293 | for (i = 0; i < nent; i++, my_ptrp--, my_addrp--) { | |
1294 | *my_addrp = (user_addr_t) (*my_ptrp); | |
1295 | } | |
1296 | } | |
1297 | ||
1298 | err: | |
1299 | return (aiocbpp); | |
1300 | } | |
1301 | ||
1302 | ||
1303 | static int | |
1304 | aio_copy_in_sigev(proc_t procp, user_addr_t sigp, struct user_sigevent *sigev) | |
1305 | { | |
1306 | int result = 0; | |
1307 | ||
1308 | if (sigp == USER_ADDR_NULL) | |
1309 | goto out; | |
1310 | ||
1311 | /* | |
1312 | * We need to munge aio_sigevent since it contains pointers. | |
1313 | * Since we do not know if sigev_value is an int or a ptr we do | |
1314 | * NOT cast the ptr to a user_addr_t. This means if we send | |
1315 | * this info back to user space we need to remember sigev_value | |
1316 | * was not expanded for the 32-bit case. | |
1317 | * | |
1318 | * Notes: This does NOT affect us since we don't support | |
1319 | * sigev_value yet in the aio context. | |
1320 | */ | |
1321 | if ( proc_is64bit(procp) ) { | |
1322 | struct user64_sigevent sigevent64; | |
1323 | ||
1324 | result = copyin( sigp, &sigevent64, sizeof(sigevent64) ); | |
1325 | if ( result == 0 ) { | |
1326 | sigev->sigev_notify = sigevent64.sigev_notify; | |
1327 | sigev->sigev_signo = sigevent64.sigev_signo; | |
1328 | sigev->sigev_value.size_equivalent.sival_int = sigevent64.sigev_value.size_equivalent.sival_int; | |
1329 | sigev->sigev_notify_function = sigevent64.sigev_notify_function; | |
1330 | sigev->sigev_notify_attributes = sigevent64.sigev_notify_attributes; | |
1331 | } | |
1332 | ||
1333 | } else { | |
1334 | struct user32_sigevent sigevent32; | |
1335 | ||
1336 | result = copyin( sigp, &sigevent32, sizeof(sigevent32) ); | |
1337 | if ( result == 0 ) { | |
1338 | sigev->sigev_notify = sigevent32.sigev_notify; | |
1339 | sigev->sigev_signo = sigevent32.sigev_signo; | |
1340 | sigev->sigev_value.size_equivalent.sival_int = sigevent32.sigev_value.sival_int; | |
1341 | sigev->sigev_notify_function = CAST_USER_ADDR_T(sigevent32.sigev_notify_function); | |
1342 | sigev->sigev_notify_attributes = CAST_USER_ADDR_T(sigevent32.sigev_notify_attributes); | |
1343 | } | |
1344 | } | |
1345 | ||
1346 | if ( result != 0 ) { | |
1347 | result = EAGAIN; | |
1348 | } | |
1349 | ||
1350 | out: | |
1351 | return (result); | |
1352 | } | |
1353 | ||
1354 | /* | |
1355 | * aio_enqueue_work | |
1356 | * | |
1357 | * Queue up the entry on the aio asynchronous work queue in priority order | |
1358 | * based on the relative priority of the request. We calculate the relative | |
1359 | * priority using the nice value of the caller and the value | |
1360 | * | |
1361 | * Parameters: procp Process queueing the I/O | |
1362 | * entryp The work queue entry being queued | |
1363 | * | |
1364 | * Returns: (void) No failure modes | |
1365 | * | |
1366 | * Notes: This function is used for both lio_listio and aio | |
1367 | * | |
1368 | * XXX: At some point, we may have to consider thread priority | |
1369 | * rather than process priority, but we don't maintain the | |
1370 | * adjusted priority for threads the POSIX way. | |
1371 | * | |
1372 | * | |
1373 | * Called with proc locked. | |
1374 | */ | |
1375 | static void | |
1376 | aio_enqueue_work( proc_t procp, aio_workq_entry *entryp, int proc_locked) | |
1377 | { | |
1378 | #if 0 | |
1379 | aio_workq_entry *my_entryp; /* used for insertion sort */ | |
1380 | #endif /* 0 */ | |
1381 | aio_workq_t queue = aio_entry_workq(entryp); | |
1382 | ||
1383 | if (proc_locked == 0) { | |
1384 | aio_proc_lock(procp); | |
1385 | } | |
1386 | ||
1387 | ASSERT_AIO_PROC_LOCK_OWNED(procp); | |
1388 | ||
1389 | /* Onto proc queue */ | |
1390 | TAILQ_INSERT_TAIL(&procp->p_aio_activeq, entryp, aio_proc_link); | |
1391 | procp->p_aio_active_count++; | |
1392 | procp->p_aio_total_count++; | |
1393 | ||
1394 | /* And work queue */ | |
1395 | aio_workq_lock_spin(queue); | |
1396 | aio_workq_add_entry_locked(queue, entryp); | |
3e170ce0 A |
1397 | waitq_wakeup64_one(&queue->aioq_waitq, CAST_EVENT64_T(queue), |
1398 | THREAD_AWAKENED, WAITQ_ALL_PRIORITIES); | |
b0d623f7 A |
1399 | aio_workq_unlock(queue); |
1400 | ||
1401 | if (proc_locked == 0) { | |
1402 | aio_proc_unlock(procp); | |
1403 | } | |
1404 | ||
1405 | #if 0 | |
1406 | /* | |
1407 | * Procedure: | |
1408 | * | |
1409 | * (1) The nice value is in the range PRIO_MIN..PRIO_MAX [-20..20] | |
1410 | * (2) The normalized nice value is in the range 0..((2 * NZERO) - 1) | |
1411 | * which is [0..39], with 0 not being used. In nice values, the | |
1412 | * lower the nice value, the higher the priority. | |
1413 | * (3) The normalized scheduling prioritiy is the highest nice value | |
1414 | * minus the current nice value. In I/O scheduling priority, the | |
1415 | * higher the value the lower the priority, so it is the inverse | |
1416 | * of the nice value (the higher the number, the higher the I/O | |
1417 | * priority). | |
1418 | * (4) From the normalized scheduling priority, we subtract the | |
1419 | * request priority to get the request priority value number; | |
1420 | * this means that requests are only capable of depressing their | |
1421 | * priority relative to other requests, | |
1422 | */ | |
1423 | entryp->priority = (((2 * NZERO) - 1) - procp->p_nice); | |
1424 | ||
1425 | /* only premit depressing the priority */ | |
1426 | if (entryp->aiocb.aio_reqprio < 0) | |
1427 | entryp->aiocb.aio_reqprio = 0; | |
1428 | if (entryp->aiocb.aio_reqprio > 0) { | |
1429 | entryp->priority -= entryp->aiocb.aio_reqprio; | |
1430 | if (entryp->priority < 0) | |
1431 | entryp->priority = 0; | |
1432 | } | |
1433 | ||
1434 | /* Insertion sort the entry; lowest ->priority to highest */ | |
1435 | TAILQ_FOREACH(my_entryp, &aio_anchor.aio_async_workq, aio_workq_link) { | |
1436 | if ( entryp->priority <= my_entryp->priority) { | |
1437 | TAILQ_INSERT_BEFORE(my_entryp, entryp, aio_workq_link); | |
1438 | break; | |
1439 | } | |
1440 | } | |
1441 | if (my_entryp == NULL) | |
1442 | TAILQ_INSERT_TAIL( &aio_anchor.aio_async_workq, entryp, aio_workq_link ); | |
1443 | #endif /* 0 */ | |
1444 | } | |
1445 | ||
1446 | ||
1447 | /* | |
1448 | * lio_listio - initiate a list of IO requests. We process the list of | |
1449 | * aiocbs either synchronously (mode == LIO_WAIT) or asynchronously | |
1450 | * (mode == LIO_NOWAIT). | |
1451 | * | |
1452 | * The caller gets error and return status for each aiocb in the list | |
1453 | * via aio_error and aio_return. We must keep completed requests until | |
1454 | * released by the aio_return call. | |
1455 | */ | |
1456 | int | |
1457 | lio_listio(proc_t p, struct lio_listio_args *uap, int *retval ) | |
1458 | { | |
1459 | int i; | |
1460 | int call_result; | |
1461 | int result; | |
1462 | int old_count; | |
1463 | aio_workq_entry **entryp_listp; | |
1464 | user_addr_t *aiocbpp; | |
1465 | struct user_sigevent aiosigev; | |
1466 | aio_lio_context *lio_context; | |
1467 | boolean_t free_context = FALSE; | |
1468 | ||
1469 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_listio)) | DBG_FUNC_START, | |
1470 | (int)p, uap->nent, uap->mode, 0, 0 ); | |
55e303ae A |
1471 | |
1472 | entryp_listp = NULL; | |
b0d623f7 | 1473 | lio_context = NULL; |
91447636 | 1474 | aiocbpp = NULL; |
55e303ae A |
1475 | call_result = -1; |
1476 | *retval = -1; | |
1477 | if ( !(uap->mode == LIO_NOWAIT || uap->mode == LIO_WAIT) ) { | |
1478 | call_result = EINVAL; | |
1479 | goto ExitRoutine; | |
1480 | } | |
1481 | ||
1482 | if ( uap->nent < 1 || uap->nent > AIO_LISTIO_MAX ) { | |
1483 | call_result = EINVAL; | |
1484 | goto ExitRoutine; | |
1485 | } | |
55e303ae A |
1486 | |
1487 | /* | |
b0d623f7 A |
1488 | * allocate a list of aio_workq_entry pointers that we will use |
1489 | * to queue up all our requests at once while holding our lock. | |
55e303ae | 1490 | */ |
91447636 | 1491 | MALLOC( entryp_listp, void *, (uap->nent * sizeof(aio_workq_entry *)), M_TEMP, M_WAITOK ); |
55e303ae A |
1492 | if ( entryp_listp == NULL ) { |
1493 | call_result = EAGAIN; | |
1494 | goto ExitRoutine; | |
1495 | } | |
b0d623f7 A |
1496 | |
1497 | MALLOC( lio_context, aio_lio_context*, sizeof(aio_lio_context), M_TEMP, M_WAITOK ); | |
1498 | if ( lio_context == NULL ) { | |
91447636 A |
1499 | call_result = EAGAIN; |
1500 | goto ExitRoutine; | |
1501 | } | |
1502 | ||
b0d623f7 A |
1503 | #if DEBUG |
1504 | OSIncrementAtomic(&lio_contexts_alloced); | |
1505 | #endif /* DEBUG */ | |
1506 | ||
1507 | bzero(lio_context, sizeof(aio_lio_context)); | |
1508 | ||
1509 | aiocbpp = aio_copy_in_list(p, uap->aiocblist, uap->nent); | |
1510 | if ( aiocbpp == NULL ) { | |
91447636 A |
1511 | call_result = EAGAIN; |
1512 | goto ExitRoutine; | |
1513 | } | |
b0d623f7 A |
1514 | |
1515 | /* | |
1516 | * Use sigevent passed in to lio_listio for each of our calls, but | |
1517 | * only do completion notification after the last request completes. | |
1518 | */ | |
1519 | bzero(&aiosigev, sizeof(aiosigev)); | |
1520 | /* Only copy in an sigev if the user supplied one */ | |
1521 | if (uap->sigp != USER_ADDR_NULL) { | |
1522 | call_result = aio_copy_in_sigev(p, uap->sigp, &aiosigev); | |
1523 | if ( call_result) | |
1524 | goto ExitRoutine; | |
91447636 A |
1525 | } |
1526 | ||
55e303ae | 1527 | /* process list of aio requests */ |
b0d623f7 A |
1528 | lio_context->io_issued = uap->nent; |
1529 | lio_context->io_waiter = uap->mode == LIO_WAIT ? 1 : 0; /* Should it be freed by last AIO */ | |
55e303ae | 1530 | for ( i = 0; i < uap->nent; i++ ) { |
91447636 | 1531 | user_addr_t my_aiocbp; |
b0d623f7 | 1532 | aio_workq_entry *entryp; |
55e303ae A |
1533 | |
1534 | *(entryp_listp + i) = NULL; | |
91447636 | 1535 | my_aiocbp = *(aiocbpp + i); |
55e303ae | 1536 | |
55e303ae | 1537 | /* NULL elements are legal so check for 'em */ |
b0d623f7 A |
1538 | if ( my_aiocbp == USER_ADDR_NULL ) { |
1539 | aio_proc_lock_spin(p); | |
1540 | lio_context->io_issued--; | |
1541 | aio_proc_unlock(p); | |
55e303ae | 1542 | continue; |
b0d623f7 | 1543 | } |
55e303ae | 1544 | |
b0d623f7 A |
1545 | /* |
1546 | * We use lio_context to mark IO requests for delayed completion | |
1547 | * processing which means we wait until all IO requests in the | |
1548 | * group have completed before we either return to the caller | |
1549 | * when mode is LIO_WAIT or signal user when mode is LIO_NOWAIT. | |
1550 | * | |
1551 | * We use the address of the lio_context for this, since it is | |
1552 | * unique in the address space. | |
1553 | */ | |
1554 | result = lio_create_entry( p, my_aiocbp, lio_context, (entryp_listp + i) ); | |
55e303ae A |
1555 | if ( result != 0 && call_result == -1 ) |
1556 | call_result = result; | |
55e303ae A |
1557 | |
1558 | /* NULL elements are legal so check for 'em */ | |
1559 | entryp = *(entryp_listp + i); | |
b0d623f7 A |
1560 | if ( entryp == NULL ) { |
1561 | aio_proc_lock_spin(p); | |
1562 | lio_context->io_issued--; | |
1563 | aio_proc_unlock(p); | |
55e303ae | 1564 | continue; |
b0d623f7 A |
1565 | } |
1566 | ||
1567 | if ( uap->mode == LIO_NOWAIT ) { | |
1568 | /* Set signal hander, if any */ | |
1569 | entryp->aiocb.aio_sigevent = aiosigev; | |
1570 | } else { | |
1571 | /* flag that this thread blocks pending completion */ | |
1572 | entryp->flags |= AIO_LIO_NOTIFY; | |
1573 | } | |
55e303ae A |
1574 | |
1575 | /* check our aio limits to throttle bad or rude user land behavior */ | |
b0d623f7 A |
1576 | old_count = aio_increment_total_count(); |
1577 | ||
1578 | aio_proc_lock_spin(p); | |
1579 | if ( old_count >= aio_max_requests || | |
55e303ae A |
1580 | aio_get_process_count( entryp->procp ) >= aio_max_requests_per_process || |
1581 | is_already_queued( entryp->procp, entryp->uaiocbp ) == TRUE ) { | |
55e303ae | 1582 | |
b0d623f7 A |
1583 | lio_context->io_issued--; |
1584 | aio_proc_unlock(p); | |
1585 | ||
1586 | aio_decrement_total_count(); | |
1587 | ||
91447636 | 1588 | if ( call_result == -1 ) |
b0d623f7 A |
1589 | call_result = EAGAIN; |
1590 | aio_free_request(entryp); | |
1591 | entryp_listp[i] = NULL; | |
55e303ae A |
1592 | continue; |
1593 | } | |
1594 | ||
b0d623f7 A |
1595 | lck_mtx_convert_spin(aio_proc_mutex(p)); |
1596 | aio_enqueue_work(p, entryp, 1); | |
1597 | aio_proc_unlock(p); | |
1598 | ||
1599 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_work_queued)) | DBG_FUNC_NONE, | |
1600 | (int)p, (int)entryp->uaiocbp, 0, 0, 0 ); | |
91447636 | 1601 | } |
55e303ae | 1602 | |
b0d623f7 A |
1603 | switch(uap->mode) { |
1604 | case LIO_WAIT: | |
1605 | aio_proc_lock_spin(p); | |
1606 | while (lio_context->io_completed < lio_context->io_issued) { | |
1607 | result = msleep(lio_context, aio_proc_mutex(p), PCATCH | PRIBIO | PSPIN, "lio_listio", 0); | |
55e303ae | 1608 | |
b0d623f7 A |
1609 | /* If we were interrupted, fail out (even if all finished) */ |
1610 | if (result != 0) { | |
1611 | call_result = EINTR; | |
1612 | lio_context->io_waiter = 0; | |
1613 | break; | |
1614 | } | |
1615 | } | |
1616 | ||
1617 | /* If all IOs have finished must free it */ | |
1618 | if (lio_context->io_completed == lio_context->io_issued) { | |
1619 | free_context = TRUE; | |
1620 | } | |
55e303ae | 1621 | |
b0d623f7 A |
1622 | aio_proc_unlock(p); |
1623 | break; | |
1624 | ||
1625 | case LIO_NOWAIT: | |
1626 | break; | |
1627 | } | |
1628 | ||
55e303ae A |
1629 | /* call_result == -1 means we had no trouble queueing up requests */ |
1630 | if ( call_result == -1 ) { | |
1631 | call_result = 0; | |
1632 | *retval = 0; | |
1633 | } | |
1634 | ||
1635 | ExitRoutine: | |
1636 | if ( entryp_listp != NULL ) | |
1637 | FREE( entryp_listp, M_TEMP ); | |
91447636 A |
1638 | if ( aiocbpp != NULL ) |
1639 | FREE( aiocbpp, M_TEMP ); | |
b0d623f7 A |
1640 | if ((lio_context != NULL) && ((lio_context->io_issued == 0) || (free_context == TRUE))) { |
1641 | free_lio_context(lio_context); | |
1642 | } | |
1643 | ||
55e303ae A |
1644 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_listio)) | DBG_FUNC_END, |
1645 | (int)p, call_result, 0, 0, 0 ); | |
1646 | ||
1647 | return( call_result ); | |
1648 | ||
1649 | } /* lio_listio */ | |
1650 | ||
1651 | ||
1652 | /* | |
1653 | * aio worker thread. this is where all the real work gets done. | |
1654 | * we get a wake up call on sleep channel &aio_anchor.aio_async_workq | |
1655 | * after new work is queued up. | |
1656 | */ | |
55e303ae A |
1657 | static void |
1658 | aio_work_thread( void ) | |
1659 | { | |
1660 | aio_workq_entry *entryp; | |
b0d623f7 A |
1661 | int error; |
1662 | vm_map_t currentmap; | |
1663 | vm_map_t oldmap = VM_MAP_NULL; | |
1664 | task_t oldaiotask = TASK_NULL; | |
1665 | struct uthread *uthreadp = NULL; | |
55e303ae A |
1666 | |
1667 | for( ;; ) { | |
b0d623f7 A |
1668 | /* |
1669 | * returns with the entry ref'ed. | |
1670 | * sleeps until work is available. | |
1671 | */ | |
1672 | entryp = aio_get_some_work(); | |
1673 | ||
1674 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_worker_thread)) | DBG_FUNC_START, | |
1675 | (int)entryp->procp, (int)entryp->uaiocbp, entryp->flags, 0, 0 ); | |
1676 | ||
1677 | /* | |
1678 | * Assume the target's address space identity for the duration | |
1679 | * of the IO. Note: don't need to have the entryp locked, | |
1680 | * because the proc and map don't change until it's freed. | |
1681 | */ | |
1682 | currentmap = get_task_map( (current_proc())->task ); | |
1683 | if ( currentmap != entryp->aio_map ) { | |
1684 | uthreadp = (struct uthread *) get_bsdthread_info(current_thread()); | |
1685 | oldaiotask = uthreadp->uu_aio_task; | |
1686 | uthreadp->uu_aio_task = entryp->procp->task; | |
1687 | oldmap = vm_map_switch( entryp->aio_map ); | |
1688 | } | |
1689 | ||
1690 | if ( (entryp->flags & AIO_READ) != 0 ) { | |
1691 | error = do_aio_read( entryp ); | |
1692 | } | |
1693 | else if ( (entryp->flags & AIO_WRITE) != 0 ) { | |
1694 | error = do_aio_write( entryp ); | |
1695 | } | |
1696 | else if ( (entryp->flags & (AIO_FSYNC | AIO_DSYNC)) != 0 ) { | |
1697 | error = do_aio_fsync( entryp ); | |
1698 | } | |
55e303ae | 1699 | else { |
b0d623f7 A |
1700 | printf( "%s - unknown aio request - flags 0x%02X \n", |
1701 | __FUNCTION__, entryp->flags ); | |
1702 | error = EINVAL; | |
1703 | } | |
91447636 | 1704 | |
b0d623f7 A |
1705 | /* Restore old map */ |
1706 | if ( currentmap != entryp->aio_map ) { | |
1707 | (void) vm_map_switch( oldmap ); | |
1708 | uthreadp->uu_aio_task = oldaiotask; | |
1709 | } | |
55e303ae | 1710 | |
b0d623f7 A |
1711 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_worker_thread)) | DBG_FUNC_END, |
1712 | (int)entryp->procp, (int)entryp->uaiocbp, entryp->errorval, | |
1713 | entryp->returnval, 0 ); | |
1714 | ||
1715 | ||
1716 | /* XXX COUNTS */ | |
1717 | aio_entry_lock_spin(entryp); | |
1718 | entryp->errorval = error; | |
1719 | aio_entry_unlock(entryp); | |
1720 | ||
1721 | /* we're done with the IO request so pop it off the active queue and */ | |
1722 | /* push it on the done queue */ | |
1723 | aio_proc_lock(entryp->procp); | |
1724 | aio_proc_move_done_locked(entryp->procp, entryp); | |
1725 | aio_proc_unlock(entryp->procp); | |
1726 | ||
1727 | OSDecrementAtomic(&aio_anchor.aio_inflight_count); | |
1728 | ||
1729 | /* remove our reference to the user land map. */ | |
1730 | if ( VM_MAP_NULL != entryp->aio_map ) { | |
1731 | vm_map_t my_map; | |
1732 | ||
1733 | my_map = entryp->aio_map; | |
1734 | entryp->aio_map = VM_MAP_NULL; | |
1735 | vm_map_deallocate( my_map ); | |
55e303ae | 1736 | } |
b0d623f7 A |
1737 | |
1738 | /* Provide notifications */ | |
1739 | do_aio_completion( entryp ); | |
1740 | ||
1741 | /* Will free if needed */ | |
1742 | aio_entry_unref(entryp); | |
1743 | ||
55e303ae A |
1744 | } /* for ( ;; ) */ |
1745 | ||
1746 | /* NOT REACHED */ | |
1747 | ||
1748 | } /* aio_work_thread */ | |
1749 | ||
1750 | ||
1751 | /* | |
1752 | * aio_get_some_work - get the next async IO request that is ready to be executed. | |
1753 | * aio_fsync complicates matters a bit since we cannot do the fsync until all async | |
1754 | * IO requests at the time the aio_fsync call came in have completed. | |
91447636 | 1755 | * NOTE - AIO_LOCK must be held by caller |
55e303ae | 1756 | */ |
55e303ae A |
1757 | static aio_workq_entry * |
1758 | aio_get_some_work( void ) | |
1759 | { | |
b0d623f7 A |
1760 | aio_workq_entry *entryp = NULL; |
1761 | aio_workq_t queue = NULL; | |
1762 | ||
1763 | /* Just one queue for the moment. In the future there will be many. */ | |
1764 | queue = &aio_anchor.aio_async_workqs[0]; | |
1765 | aio_workq_lock_spin(queue); | |
1766 | if (queue->aioq_count == 0) { | |
1767 | goto nowork; | |
1768 | } | |
1769 | ||
1770 | /* | |
1771 | * Hold the queue lock. | |
1772 | * | |
1773 | * pop some work off the work queue and add to our active queue | |
1774 | * Always start with the queue lock held. | |
1775 | */ | |
1776 | for(;;) { | |
1777 | /* | |
1778 | * Pull of of work queue. Once it's off, it can't be cancelled, | |
1779 | * so we can take our ref once we drop the queue lock. | |
1780 | */ | |
1781 | entryp = TAILQ_FIRST(&queue->aioq_entries); | |
55e303ae | 1782 | |
b0d623f7 A |
1783 | /* |
1784 | * If there's no work or only fsyncs that need delay, go to sleep | |
1785 | * and then start anew from aio_work_thread | |
1786 | */ | |
1787 | if (entryp == NULL) { | |
1788 | goto nowork; | |
1789 | } | |
1790 | ||
1791 | aio_workq_remove_entry_locked(queue, entryp); | |
1792 | ||
1793 | aio_workq_unlock(queue); | |
1794 | ||
1795 | /* | |
1796 | * Check if it's an fsync that must be delayed. No need to lock the entry; | |
1797 | * that flag would have been set at initialization. | |
1798 | */ | |
55e303ae | 1799 | if ( (entryp->flags & AIO_FSYNC) != 0 ) { |
b0d623f7 A |
1800 | /* |
1801 | * Check for unfinished operations on the same file | |
1802 | * in this proc's queue. | |
1803 | */ | |
1804 | aio_proc_lock_spin(entryp->procp); | |
55e303ae | 1805 | if ( aio_delay_fsync_request( entryp ) ) { |
b0d623f7 | 1806 | /* It needs to be delayed. Put it back on the end of the work queue */ |
55e303ae A |
1807 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_fsync_delay)) | DBG_FUNC_NONE, |
1808 | (int)entryp->procp, (int)entryp->uaiocbp, 0, 0, 0 ); | |
b0d623f7 A |
1809 | |
1810 | aio_proc_unlock(entryp->procp); | |
1811 | ||
1812 | aio_workq_lock_spin(queue); | |
1813 | aio_workq_add_entry_locked(queue, entryp); | |
55e303ae | 1814 | continue; |
b0d623f7 A |
1815 | } |
1816 | aio_proc_unlock(entryp->procp); | |
55e303ae | 1817 | } |
b0d623f7 | 1818 | |
55e303ae A |
1819 | break; |
1820 | } | |
b0d623f7 A |
1821 | |
1822 | aio_entry_ref(entryp); | |
1823 | ||
1824 | OSIncrementAtomic(&aio_anchor.aio_inflight_count); | |
55e303ae | 1825 | return( entryp ); |
55e303ae | 1826 | |
b0d623f7 A |
1827 | nowork: |
1828 | /* We will wake up when someone enqueues something */ | |
3e170ce0 | 1829 | waitq_assert_wait64(&queue->aioq_waitq, CAST_EVENT64_T(queue), THREAD_UNINT, 0); |
b0d623f7 A |
1830 | aio_workq_unlock(queue); |
1831 | thread_block( (thread_continue_t)aio_work_thread ); | |
1832 | ||
1833 | // notreached | |
1834 | return NULL; | |
1835 | } | |
55e303ae A |
1836 | |
1837 | /* | |
b0d623f7 A |
1838 | * aio_delay_fsync_request - look to see if this aio_fsync request should be delayed. |
1839 | * A big, simple hammer: only send it off if it's the most recently filed IO which has | |
1840 | * not been completed. | |
55e303ae A |
1841 | */ |
1842 | static boolean_t | |
1843 | aio_delay_fsync_request( aio_workq_entry *entryp ) | |
1844 | { | |
b0d623f7 A |
1845 | if (entryp == TAILQ_FIRST(&entryp->procp->p_aio_activeq)) { |
1846 | return FALSE; | |
55e303ae A |
1847 | } |
1848 | ||
b0d623f7 | 1849 | return TRUE; |
55e303ae A |
1850 | } /* aio_delay_fsync_request */ |
1851 | ||
b0d623f7 A |
1852 | static aio_workq_entry * |
1853 | aio_create_queue_entry(proc_t procp, user_addr_t aiocbp, void *group_tag, int kindOfIO) | |
55e303ae | 1854 | { |
b0d623f7 A |
1855 | aio_workq_entry *entryp; |
1856 | int result = 0; | |
55e303ae A |
1857 | |
1858 | entryp = (aio_workq_entry *) zalloc( aio_workq_zonep ); | |
1859 | if ( entryp == NULL ) { | |
1860 | result = EAGAIN; | |
1861 | goto error_exit; | |
1862 | } | |
91447636 | 1863 | |
55e303ae A |
1864 | bzero( entryp, sizeof(*entryp) ); |
1865 | ||
1866 | /* fill in the rest of the aio_workq_entry */ | |
1867 | entryp->procp = procp; | |
1868 | entryp->uaiocbp = aiocbp; | |
b0d623f7 | 1869 | entryp->flags |= kindOfIO; |
55e303ae A |
1870 | entryp->group_tag = group_tag; |
1871 | entryp->aio_map = VM_MAP_NULL; | |
b0d623f7 | 1872 | entryp->aio_refcount = 0; |
91447636 | 1873 | |
b0d623f7 A |
1874 | if ( proc_is64bit(procp) ) { |
1875 | struct user64_aiocb aiocb64; | |
1876 | ||
1877 | result = copyin( aiocbp, &aiocb64, sizeof(aiocb64) ); | |
1878 | if (result == 0 ) | |
1879 | do_munge_aiocb_user64_to_user(&aiocb64, &entryp->aiocb); | |
1880 | ||
1881 | } else { | |
1882 | struct user32_aiocb aiocb32; | |
1883 | ||
91447636 A |
1884 | result = copyin( aiocbp, &aiocb32, sizeof(aiocb32) ); |
1885 | if ( result == 0 ) | |
b0d623f7 | 1886 | do_munge_aiocb_user32_to_user( &aiocb32, &entryp->aiocb ); |
55e303ae A |
1887 | } |
1888 | ||
b0d623f7 A |
1889 | if ( result != 0 ) { |
1890 | result = EAGAIN; | |
55e303ae | 1891 | goto error_exit; |
b0d623f7 | 1892 | } |
55e303ae A |
1893 | |
1894 | /* get a reference to the user land map in order to keep it around */ | |
1895 | entryp->aio_map = get_task_map( procp->task ); | |
1896 | vm_map_reference( entryp->aio_map ); | |
b0d623f7 A |
1897 | |
1898 | /* do some more validation on the aiocb and embedded file descriptor */ | |
1899 | result = aio_validate( entryp ); | |
39236c6e A |
1900 | if ( result != 0 ) |
1901 | goto error_exit_with_ref; | |
1902 | ||
1903 | /* get a reference on the current_thread, which is passed in vfs_context. */ | |
1904 | entryp->thread = current_thread(); | |
1905 | thread_reference( entryp->thread ); | |
1906 | return ( entryp ); | |
b0d623f7 | 1907 | |
39236c6e A |
1908 | error_exit_with_ref: |
1909 | if ( VM_MAP_NULL != entryp->aio_map ) { | |
1910 | vm_map_deallocate( entryp->aio_map ); | |
1911 | } | |
55e303ae | 1912 | error_exit: |
b0d623f7 | 1913 | if ( result && entryp != NULL ) { |
91447636 | 1914 | zfree( aio_workq_zonep, entryp ); |
b0d623f7 A |
1915 | entryp = NULL; |
1916 | } | |
1917 | ||
1918 | return ( entryp ); | |
1919 | } | |
55e303ae A |
1920 | |
1921 | ||
1922 | /* | |
b0d623f7 A |
1923 | * aio_queue_async_request - queue up an async IO request on our work queue then |
1924 | * wake up one of our worker threads to do the actual work. We get a reference | |
1925 | * to our caller's user land map in order to keep it around while we are | |
1926 | * processing the request. | |
55e303ae | 1927 | */ |
b0d623f7 A |
1928 | static int |
1929 | aio_queue_async_request(proc_t procp, user_addr_t aiocbp, int kindOfIO ) | |
55e303ae | 1930 | { |
b0d623f7 A |
1931 | aio_workq_entry *entryp; |
1932 | int result; | |
1933 | int old_count; | |
55e303ae | 1934 | |
b0d623f7 A |
1935 | old_count = aio_increment_total_count(); |
1936 | if (old_count >= aio_max_requests) { | |
1937 | result = EAGAIN; | |
1938 | goto error_noalloc; | |
55e303ae | 1939 | } |
b0d623f7 A |
1940 | |
1941 | entryp = aio_create_queue_entry( procp, aiocbp, 0, kindOfIO); | |
1942 | if ( entryp == NULL ) { | |
1943 | result = EAGAIN; | |
1944 | goto error_noalloc; | |
55e303ae | 1945 | } |
55e303ae A |
1946 | |
1947 | ||
b0d623f7 | 1948 | aio_proc_lock_spin(procp); |
55e303ae | 1949 | |
b0d623f7 A |
1950 | if ( is_already_queued( entryp->procp, entryp->uaiocbp ) == TRUE ) { |
1951 | result = EAGAIN; | |
1952 | goto error_exit; | |
1953 | } | |
55e303ae | 1954 | |
b0d623f7 A |
1955 | /* check our aio limits to throttle bad or rude user land behavior */ |
1956 | if (aio_get_process_count( procp ) >= aio_max_requests_per_process) { | |
1957 | printf("aio_queue_async_request(): too many in flight for proc: %d.\n", procp->p_aio_total_count); | |
55e303ae A |
1958 | result = EAGAIN; |
1959 | goto error_exit; | |
1960 | } | |
b0d623f7 A |
1961 | |
1962 | /* Add the IO to proc and work queues, wake up threads as appropriate */ | |
1963 | lck_mtx_convert_spin(aio_proc_mutex(procp)); | |
1964 | aio_enqueue_work(procp, entryp, 1); | |
1965 | ||
1966 | aio_proc_unlock(procp); | |
1967 | ||
1968 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_work_queued)) | DBG_FUNC_NONE, | |
1969 | (int)procp, (int)aiocbp, 0, 0, 0 ); | |
55e303ae | 1970 | |
b0d623f7 A |
1971 | return( 0 ); |
1972 | ||
1973 | error_exit: | |
1974 | /* | |
1975 | * This entry has not been queued up so no worries about | |
1976 | * unlocked state and aio_map | |
1977 | */ | |
1978 | aio_proc_unlock(procp); | |
1979 | aio_free_request(entryp); | |
91447636 | 1980 | |
b0d623f7 A |
1981 | error_noalloc: |
1982 | aio_decrement_total_count(); | |
91447636 | 1983 | |
b0d623f7 A |
1984 | return( result ); |
1985 | ||
1986 | } /* aio_queue_async_request */ | |
91447636 | 1987 | |
b0d623f7 A |
1988 | |
1989 | /* | |
1990 | * lio_create_entry | |
1991 | * | |
1992 | * Allocate an aio_workq_entry and fill it in. If all goes well return 0 | |
1993 | * and pass the aio_workq_entry pointer back to our caller. | |
1994 | * | |
1995 | * Parameters: procp The process makign the request | |
1996 | * aiocbp The aio context buffer pointer | |
1997 | * group_tag The group tag used to indicate a | |
1998 | * group of operations has completed | |
1999 | * entrypp Pointer to the pointer to receive the | |
2000 | * address of the created aio_workq_entry | |
2001 | * | |
2002 | * Returns: 0 Successfully created | |
2003 | * EAGAIN Try again (usually resource shortage) | |
2004 | * | |
2005 | * | |
2006 | * Notes: We get a reference to our caller's user land map in order | |
2007 | * to keep it around while we are processing the request. | |
2008 | * | |
2009 | * lio_listio calls behave differently at completion they do | |
2010 | * completion notification when all async IO requests have | |
2011 | * completed. We use group_tag to tag IO requests that behave | |
2012 | * in the delay notification manner. | |
2013 | * | |
2014 | * All synchronous operations are considered to not have a | |
2015 | * signal routine associated with them (sigp == USER_ADDR_NULL). | |
2016 | */ | |
2017 | static int | |
2018 | lio_create_entry(proc_t procp, user_addr_t aiocbp, void *group_tag, | |
2019 | aio_workq_entry **entrypp ) | |
2020 | { | |
2021 | aio_workq_entry *entryp; | |
2022 | int result; | |
2023 | ||
2024 | entryp = aio_create_queue_entry( procp, aiocbp, group_tag, AIO_LIO); | |
2025 | if ( entryp == NULL ) { | |
2026 | result = EAGAIN; | |
55e303ae A |
2027 | goto error_exit; |
2028 | } | |
2029 | ||
b0d623f7 A |
2030 | /* |
2031 | * Look for lio_listio LIO_NOP requests and ignore them; this is | |
2032 | * not really an error, but we need to free our aio_workq_entry. | |
2033 | */ | |
55e303ae A |
2034 | if ( entryp->aiocb.aio_lio_opcode == LIO_NOP ) { |
2035 | result = 0; | |
2036 | goto error_exit; | |
2037 | } | |
2038 | ||
55e303ae A |
2039 | *entrypp = entryp; |
2040 | return( 0 ); | |
2041 | ||
2042 | error_exit: | |
b0d623f7 A |
2043 | |
2044 | if ( entryp != NULL ) { | |
2045 | /* | |
2046 | * This entry has not been queued up so no worries about | |
2047 | * unlocked state and aio_map | |
2048 | */ | |
2049 | aio_free_request(entryp); | |
2050 | } | |
55e303ae A |
2051 | |
2052 | return( result ); | |
2053 | ||
b0d623f7 | 2054 | } /* lio_create_entry */ |
55e303ae A |
2055 | |
2056 | ||
2057 | /* | |
2058 | * aio_free_request - remove our reference on the user land map and | |
b0d623f7 A |
2059 | * free the work queue entry resources. The entry is off all lists |
2060 | * and has zero refcount, so no one can have a pointer to it. | |
55e303ae A |
2061 | */ |
2062 | ||
2063 | static int | |
b0d623f7 | 2064 | aio_free_request(aio_workq_entry *entryp) |
55e303ae A |
2065 | { |
2066 | /* remove our reference to the user land map. */ | |
b0d623f7 A |
2067 | if ( VM_MAP_NULL != entryp->aio_map) { |
2068 | vm_map_deallocate(entryp->aio_map); | |
55e303ae | 2069 | } |
b0d623f7 | 2070 | |
39236c6e A |
2071 | /* remove our reference to thread which enqueued the request */ |
2072 | if ( NULL != entryp->thread ) { | |
2073 | thread_deallocate( entryp->thread ); | |
2074 | } | |
2075 | ||
b0d623f7 A |
2076 | entryp->aio_refcount = -1; /* A bit of poisoning in case of bad refcounting. */ |
2077 | ||
91447636 | 2078 | zfree( aio_workq_zonep, entryp ); |
55e303ae A |
2079 | |
2080 | return( 0 ); | |
2081 | ||
2082 | } /* aio_free_request */ | |
2083 | ||
2084 | ||
b0d623f7 A |
2085 | /* |
2086 | * aio_validate | |
2087 | * | |
2088 | * validate the aiocb passed in by one of the aio syscalls. | |
55e303ae | 2089 | */ |
55e303ae A |
2090 | static int |
2091 | aio_validate( aio_workq_entry *entryp ) | |
2092 | { | |
91447636 | 2093 | struct fileproc *fp; |
55e303ae A |
2094 | int flag; |
2095 | int result; | |
2096 | ||
2097 | result = 0; | |
2098 | ||
2099 | if ( (entryp->flags & AIO_LIO) != 0 ) { | |
2100 | if ( entryp->aiocb.aio_lio_opcode == LIO_READ ) | |
2101 | entryp->flags |= AIO_READ; | |
2102 | else if ( entryp->aiocb.aio_lio_opcode == LIO_WRITE ) | |
2103 | entryp->flags |= AIO_WRITE; | |
2104 | else if ( entryp->aiocb.aio_lio_opcode == LIO_NOP ) | |
2105 | return( 0 ); | |
2106 | else | |
2107 | return( EINVAL ); | |
2108 | } | |
2109 | ||
2110 | flag = FREAD; | |
b0d623f7 | 2111 | if ( (entryp->flags & (AIO_WRITE | AIO_FSYNC | AIO_DSYNC)) != 0 ) { |
55e303ae A |
2112 | flag = FWRITE; |
2113 | } | |
2114 | ||
2115 | if ( (entryp->flags & (AIO_READ | AIO_WRITE)) != 0 ) { | |
91447636 A |
2116 | if ( entryp->aiocb.aio_nbytes > INT_MAX || |
2117 | entryp->aiocb.aio_buf == USER_ADDR_NULL || | |
2118 | entryp->aiocb.aio_offset < 0 ) | |
55e303ae A |
2119 | return( EINVAL ); |
2120 | } | |
2121 | ||
b0d623f7 A |
2122 | /* |
2123 | * validate aiocb.aio_sigevent. at this point we only support | |
2124 | * sigev_notify equal to SIGEV_SIGNAL or SIGEV_NONE. this means | |
2125 | * sigev_value, sigev_notify_function, and sigev_notify_attributes | |
2126 | * are ignored, since SIGEV_THREAD is unsupported. This is consistent | |
2127 | * with no [RTS] (RalTime Signal) option group support. | |
55e303ae | 2128 | */ |
b0d623f7 A |
2129 | switch ( entryp->aiocb.aio_sigevent.sigev_notify ) { |
2130 | case SIGEV_SIGNAL: | |
2131 | { | |
55e303ae | 2132 | int signum; |
b0d623f7 | 2133 | |
55e303ae A |
2134 | /* make sure we have a valid signal number */ |
2135 | signum = entryp->aiocb.aio_sigevent.sigev_signo; | |
2136 | if ( signum <= 0 || signum >= NSIG || | |
2137 | signum == SIGKILL || signum == SIGSTOP ) | |
2138 | return (EINVAL); | |
b0d623f7 A |
2139 | } |
2140 | break; | |
2141 | ||
2142 | case SIGEV_NONE: | |
2143 | break; | |
2144 | ||
2145 | case SIGEV_THREAD: | |
2146 | /* Unsupported [RTS] */ | |
2147 | ||
2148 | default: | |
55e303ae | 2149 | return (EINVAL); |
b0d623f7 | 2150 | } |
55e303ae A |
2151 | |
2152 | /* validate the file descriptor and that the file was opened | |
91447636 | 2153 | * for the appropriate read / write access. |
55e303ae | 2154 | */ |
91447636 | 2155 | proc_fdlock(entryp->procp); |
55e303ae | 2156 | |
91447636 | 2157 | result = fp_lookup( entryp->procp, entryp->aiocb.aio_fildes, &fp , 1); |
55e303ae | 2158 | if ( result == 0 ) { |
91447636 | 2159 | if ( (fp->f_fglob->fg_flag & flag) == 0 ) { |
55e303ae A |
2160 | /* we don't have read or write access */ |
2161 | result = EBADF; | |
2162 | } | |
39236c6e | 2163 | else if ( FILEGLOB_DTYPE(fp->f_fglob) != DTYPE_VNODE ) { |
55e303ae A |
2164 | /* this is not a file */ |
2165 | result = ESPIPE; | |
91447636 A |
2166 | } else |
2167 | fp->f_flags |= FP_AIOISSUED; | |
2168 | ||
2169 | fp_drop(entryp->procp, entryp->aiocb.aio_fildes, fp , 1); | |
55e303ae A |
2170 | } |
2171 | else { | |
2172 | result = EBADF; | |
2173 | } | |
2174 | ||
91447636 | 2175 | proc_fdunlock(entryp->procp); |
55e303ae A |
2176 | |
2177 | return( result ); | |
2178 | ||
2179 | } /* aio_validate */ | |
2180 | ||
b0d623f7 A |
2181 | static int |
2182 | aio_increment_total_count() | |
2183 | { | |
2184 | return OSIncrementAtomic(&aio_anchor.aio_total_count); | |
2185 | } | |
2186 | ||
2187 | static int | |
2188 | aio_decrement_total_count() | |
2189 | { | |
2190 | int old = OSDecrementAtomic(&aio_anchor.aio_total_count); | |
2191 | if (old <= 0) { | |
2192 | panic("Negative total AIO count!\n"); | |
2193 | } | |
55e303ae | 2194 | |
b0d623f7 A |
2195 | return old; |
2196 | } | |
55e303ae A |
2197 | |
2198 | static int | |
2d21ac55 | 2199 | aio_get_process_count(proc_t procp ) |
55e303ae | 2200 | { |
b0d623f7 | 2201 | return procp->p_aio_total_count; |
55e303ae A |
2202 | |
2203 | } /* aio_get_process_count */ | |
2204 | ||
55e303ae A |
2205 | static int |
2206 | aio_get_all_queues_count( void ) | |
2207 | { | |
b0d623f7 | 2208 | return aio_anchor.aio_total_count; |
55e303ae A |
2209 | |
2210 | } /* aio_get_all_queues_count */ | |
2211 | ||
2212 | ||
2213 | /* | |
2214 | * do_aio_completion. Handle async IO completion. | |
2215 | */ | |
55e303ae A |
2216 | static void |
2217 | do_aio_completion( aio_workq_entry *entryp ) | |
2218 | { | |
b0d623f7 A |
2219 | |
2220 | boolean_t lastLioCompleted = FALSE; | |
2221 | aio_lio_context *lio_context = NULL; | |
2222 | int waiter = 0; | |
2223 | ||
2224 | lio_context = (aio_lio_context *)entryp->group_tag; | |
2225 | ||
2226 | if (lio_context != NULL) { | |
2227 | ||
2228 | aio_proc_lock_spin(entryp->procp); | |
2229 | ||
2230 | /* Account for this I/O completing. */ | |
2231 | lio_context->io_completed++; | |
2232 | ||
2233 | /* Are we done with this lio context? */ | |
2234 | if (lio_context->io_issued == lio_context->io_completed) { | |
2235 | lastLioCompleted = TRUE; | |
2236 | } | |
2237 | ||
2238 | waiter = lio_context->io_waiter; | |
2239 | ||
2240 | /* explicit wakeup of lio_listio() waiting in LIO_WAIT */ | |
2241 | if ((entryp->flags & AIO_LIO_NOTIFY) && (lastLioCompleted) && (waiter != 0)) { | |
2242 | /* wake up the waiter */ | |
2243 | wakeup(lio_context); | |
2244 | } | |
2245 | ||
2246 | aio_proc_unlock(entryp->procp); | |
2247 | } | |
2248 | ||
55e303ae A |
2249 | if ( entryp->aiocb.aio_sigevent.sigev_notify == SIGEV_SIGNAL && |
2250 | (entryp->flags & AIO_DISABLE) == 0 ) { | |
b0d623f7 A |
2251 | |
2252 | boolean_t performSignal = FALSE; | |
2253 | if (lio_context == NULL) { | |
2254 | performSignal = TRUE; | |
2255 | } | |
2256 | else { | |
2257 | /* | |
2258 | * If this was the last request in the group and a signal | |
2259 | * is desired, send one. | |
2260 | */ | |
2261 | performSignal = lastLioCompleted; | |
2262 | } | |
2263 | ||
2264 | if (performSignal) { | |
2265 | ||
55e303ae | 2266 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_completion_sig)) | DBG_FUNC_NONE, |
b0d623f7 A |
2267 | (int)entryp->procp, (int)entryp->uaiocbp, |
2268 | entryp->aiocb.aio_sigevent.sigev_signo, 0, 0 ); | |
55e303ae A |
2269 | |
2270 | psignal( entryp->procp, entryp->aiocb.aio_sigevent.sigev_signo ); | |
55e303ae A |
2271 | } |
2272 | } | |
2273 | ||
b0d623f7 A |
2274 | if ((entryp->flags & AIO_EXIT_WAIT) && (entryp->flags & AIO_CLOSE_WAIT)) { |
2275 | panic("Close and exit flags set at the same time\n"); | |
2276 | } | |
2277 | ||
55e303ae | 2278 | /* |
b0d623f7 A |
2279 | * need to handle case where a process is trying to exit, exec, or |
2280 | * close and is currently waiting for active aio requests to complete. | |
2281 | * If AIO_CLEANUP_WAIT is set then we need to look to see if there are any | |
55e303ae | 2282 | * other requests in the active queue for this process. If there are |
b0d623f7 A |
2283 | * none then wakeup using the AIO_CLEANUP_SLEEP_CHAN tsleep channel. |
2284 | * If there are some still active then do nothing - we only want to | |
2285 | * wakeup when all active aio requests for the process are complete. | |
2286 | * | |
2287 | * Don't need to lock the entry or proc to check the cleanup flag. It can only be | |
2288 | * set for cancellation, while the entryp is still on a proc list; now it's | |
2289 | * off, so that flag is already set if it's going to be. | |
55e303ae | 2290 | */ |
b0d623f7 | 2291 | if ( (entryp->flags & AIO_EXIT_WAIT) != 0 ) { |
55e303ae A |
2292 | int active_requests; |
2293 | ||
2294 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_completion_cleanup_wait)) | DBG_FUNC_NONE, | |
2295 | (int)entryp->procp, (int)entryp->uaiocbp, 0, 0, 0 ); | |
2296 | ||
b0d623f7 | 2297 | aio_proc_lock_spin(entryp->procp); |
55e303ae | 2298 | active_requests = aio_active_requests_for_process( entryp->procp ); |
55e303ae | 2299 | if ( active_requests < 1 ) { |
b0d623f7 A |
2300 | /* |
2301 | * no active aio requests for this process, continue exiting. In this | |
2302 | * case, there should be no one else waiting ont he proc in AIO... | |
2303 | */ | |
2304 | wakeup_one((caddr_t)&entryp->procp->AIO_CLEANUP_SLEEP_CHAN); | |
2305 | aio_proc_unlock(entryp->procp); | |
55e303ae A |
2306 | |
2307 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_completion_cleanup_wake)) | DBG_FUNC_NONE, | |
2308 | (int)entryp->procp, (int)entryp->uaiocbp, 0, 0, 0 ); | |
b0d623f7 A |
2309 | } else { |
2310 | aio_proc_unlock(entryp->procp); | |
55e303ae | 2311 | } |
55e303ae | 2312 | } |
b0d623f7 A |
2313 | |
2314 | if ( (entryp->flags & AIO_CLOSE_WAIT) != 0 ) { | |
2315 | int active_requests; | |
55e303ae | 2316 | |
b0d623f7 A |
2317 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_completion_cleanup_wait)) | DBG_FUNC_NONE, |
2318 | (int)entryp->procp, (int)entryp->uaiocbp, 0, 0, 0 ); | |
2319 | ||
2320 | aio_proc_lock_spin(entryp->procp); | |
2321 | active_requests = aio_proc_active_requests_for_file( entryp->procp, entryp->aiocb.aio_fildes); | |
2322 | if ( active_requests < 1 ) { | |
2323 | /* Can't wakeup_one(); multiple closes might be in progress. */ | |
2324 | wakeup(&entryp->procp->AIO_CLEANUP_SLEEP_CHAN); | |
2325 | aio_proc_unlock(entryp->procp); | |
2326 | ||
2327 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_completion_cleanup_wake)) | DBG_FUNC_NONE, | |
2328 | (int)entryp->procp, (int)entryp->uaiocbp, 0, 0, 0 ); | |
2329 | } else { | |
2330 | aio_proc_unlock(entryp->procp); | |
2331 | } | |
2332 | } | |
55e303ae | 2333 | /* |
b0d623f7 A |
2334 | * A thread in aio_suspend() wants to known about completed IOs. If it checked |
2335 | * the done list before we moved our AIO there, then it already asserted its wait, | |
2336 | * and we can wake it up without holding the lock. If it checked the list after | |
2337 | * we did our move, then it already has seen the AIO that we moved. Herego, we | |
2338 | * can do our wakeup without holding the lock. | |
55e303ae | 2339 | */ |
b0d623f7 | 2340 | wakeup( (caddr_t) &entryp->procp->AIO_SUSPEND_SLEEP_CHAN ); |
55e303ae A |
2341 | KERNEL_DEBUG( (BSDDBG_CODE(DBG_BSD_AIO, AIO_completion_suspend_wake)) | DBG_FUNC_NONE, |
2342 | (int)entryp->procp, (int)entryp->uaiocbp, 0, 0, 0 ); | |
55e303ae | 2343 | |
b0d623f7 A |
2344 | /* |
2345 | * free the LIO context if the last lio completed and no thread is | |
2346 | * waiting | |
2347 | */ | |
2348 | if (lastLioCompleted && (waiter == 0)) | |
2349 | free_lio_context (lio_context); | |
55e303ae | 2350 | |
55e303ae | 2351 | |
b0d623f7 | 2352 | } /* do_aio_completion */ |
55e303ae A |
2353 | |
2354 | ||
2355 | /* | |
2356 | * do_aio_read | |
2357 | */ | |
2358 | static int | |
2359 | do_aio_read( aio_workq_entry *entryp ) | |
2360 | { | |
2d21ac55 A |
2361 | struct fileproc *fp; |
2362 | int error; | |
2363 | struct vfs_context context; | |
55e303ae | 2364 | |
91447636 A |
2365 | if ( (error = fp_lookup(entryp->procp, entryp->aiocb.aio_fildes, &fp , 0)) ) |
2366 | return(error); | |
2367 | if ( (fp->f_fglob->fg_flag & FREAD) == 0 ) { | |
2368 | fp_drop(entryp->procp, entryp->aiocb.aio_fildes, fp, 0); | |
2369 | return(EBADF); | |
2370 | } | |
2d21ac55 | 2371 | |
39236c6e | 2372 | context.vc_thread = entryp->thread; /* XXX */ |
2d21ac55 A |
2373 | context.vc_ucred = fp->f_fglob->fg_cred; |
2374 | ||
2375 | error = dofileread(&context, fp, | |
2376 | entryp->aiocb.aio_buf, | |
2377 | entryp->aiocb.aio_nbytes, | |
2378 | entryp->aiocb.aio_offset, FOF_OFFSET, | |
2379 | &entryp->returnval); | |
2380 | fp_drop(entryp->procp, entryp->aiocb.aio_fildes, fp, 0); | |
55e303ae A |
2381 | |
2382 | return( error ); | |
2383 | ||
2384 | } /* do_aio_read */ | |
2385 | ||
2386 | ||
2387 | /* | |
2388 | * do_aio_write | |
2389 | */ | |
2390 | static int | |
2391 | do_aio_write( aio_workq_entry *entryp ) | |
2392 | { | |
91447636 | 2393 | struct fileproc *fp; |
b0d623f7 | 2394 | int error, flags; |
2d21ac55 | 2395 | struct vfs_context context; |
55e303ae | 2396 | |
91447636 A |
2397 | if ( (error = fp_lookup(entryp->procp, entryp->aiocb.aio_fildes, &fp , 0)) ) |
2398 | return(error); | |
2399 | if ( (fp->f_fglob->fg_flag & FWRITE) == 0 ) { | |
2400 | fp_drop(entryp->procp, entryp->aiocb.aio_fildes, fp, 0); | |
2401 | return(EBADF); | |
2402 | } | |
2d21ac55 | 2403 | |
b0d623f7 A |
2404 | flags = FOF_PCRED; |
2405 | if ( (fp->f_fglob->fg_flag & O_APPEND) == 0 ) { | |
2406 | flags |= FOF_OFFSET; | |
2407 | } | |
2408 | ||
39236c6e | 2409 | context.vc_thread = entryp->thread; /* XXX */ |
2d21ac55 A |
2410 | context.vc_ucred = fp->f_fglob->fg_cred; |
2411 | ||
2412 | /* NB: tell dofilewrite the offset, and to use the proc cred */ | |
2413 | error = dofilewrite(&context, | |
2414 | fp, | |
2415 | entryp->aiocb.aio_buf, | |
2416 | entryp->aiocb.aio_nbytes, | |
2417 | entryp->aiocb.aio_offset, | |
b0d623f7 | 2418 | flags, |
2d21ac55 | 2419 | &entryp->returnval); |
fe8ab488 A |
2420 | |
2421 | if (entryp->returnval) | |
2422 | fp_drop_written(entryp->procp, entryp->aiocb.aio_fildes, fp); | |
2423 | else | |
2424 | fp_drop(entryp->procp, entryp->aiocb.aio_fildes, fp, 0); | |
55e303ae A |
2425 | |
2426 | return( error ); | |
2427 | ||
2428 | } /* do_aio_write */ | |
2429 | ||
2430 | ||
2431 | /* | |
2432 | * aio_active_requests_for_process - return number of active async IO | |
2433 | * requests for the given process. | |
55e303ae | 2434 | */ |
55e303ae | 2435 | static int |
2d21ac55 | 2436 | aio_active_requests_for_process(proc_t procp ) |
55e303ae | 2437 | { |
b0d623f7 A |
2438 | return( procp->p_aio_active_count ); |
2439 | ||
2440 | } /* aio_active_requests_for_process */ | |
2441 | ||
2442 | /* | |
2443 | * Called with the proc locked. | |
2444 | */ | |
2445 | static int | |
2446 | aio_proc_active_requests_for_file(proc_t procp, int fd) | |
2447 | { | |
2448 | int count = 0; | |
2449 | aio_workq_entry *entryp; | |
2450 | TAILQ_FOREACH(entryp, &procp->p_aio_activeq, aio_proc_link) { | |
2451 | if (entryp->aiocb.aio_fildes == fd) { | |
2452 | count++; | |
2453 | } | |
2454 | } | |
55e303ae | 2455 | |
b0d623f7 | 2456 | return count; |
55e303ae A |
2457 | } /* aio_active_requests_for_process */ |
2458 | ||
2459 | ||
b0d623f7 | 2460 | |
55e303ae A |
2461 | /* |
2462 | * do_aio_fsync | |
2463 | */ | |
2464 | static int | |
2465 | do_aio_fsync( aio_workq_entry *entryp ) | |
2466 | { | |
91447636 A |
2467 | struct vfs_context context; |
2468 | struct vnode *vp; | |
2469 | struct fileproc *fp; | |
b0d623f7 A |
2470 | int sync_flag; |
2471 | int error; | |
91447636 | 2472 | |
b0d623f7 A |
2473 | /* |
2474 | * We are never called unless either AIO_FSYNC or AIO_DSYNC are set. | |
2475 | * | |
2476 | * If AIO_DSYNC is set, we can tell the lower layers that it is OK | |
2477 | * to mark for update the metadata not strictly necessary for data | |
2478 | * retrieval, rather than forcing it to disk. | |
2479 | * | |
2480 | * If AIO_FSYNC is set, we have to also wait for metadata not really | |
2481 | * necessary to data retrival are committed to stable storage (e.g. | |
2482 | * atime, mtime, ctime, etc.). | |
2483 | * | |
2484 | * Metadata necessary for data retrieval ust be committed to stable | |
2485 | * storage in either case (file length, etc.). | |
2486 | */ | |
2487 | if (entryp->flags & AIO_FSYNC) | |
2488 | sync_flag = MNT_WAIT; | |
2489 | else | |
2490 | sync_flag = MNT_DWAIT; | |
2491 | ||
91447636 | 2492 | error = fp_getfvp( entryp->procp, entryp->aiocb.aio_fildes, &fp, &vp); |
55e303ae | 2493 | if ( error == 0 ) { |
91447636 A |
2494 | if ( (error = vnode_getwithref(vp)) ) { |
2495 | fp_drop(entryp->procp, entryp->aiocb.aio_fildes, fp, 0); | |
2496 | entryp->returnval = -1; | |
2497 | return(error); | |
2498 | } | |
2d21ac55 | 2499 | context.vc_thread = current_thread(); |
91447636 A |
2500 | context.vc_ucred = fp->f_fglob->fg_cred; |
2501 | ||
b0d623f7 | 2502 | error = VNOP_FSYNC( vp, sync_flag, &context); |
91447636 A |
2503 | |
2504 | (void)vnode_put(vp); | |
2505 | ||
2506 | fp_drop(entryp->procp, entryp->aiocb.aio_fildes, fp, 0); | |
55e303ae A |
2507 | } |
2508 | if ( error != 0 ) | |
2509 | entryp->returnval = -1; | |
2510 | ||
2511 | return( error ); | |
2512 | ||
2513 | } /* do_aio_fsync */ | |
2514 | ||
2515 | ||
2516 | /* | |
2517 | * is_already_queued - runs through our queues to see if the given | |
2518 | * aiocbp / process is there. Returns TRUE if there is a match | |
2519 | * on any of our aio queues. | |
b0d623f7 A |
2520 | * |
2521 | * Called with proc aio lock held (can be held spin) | |
55e303ae | 2522 | */ |
55e303ae | 2523 | static boolean_t |
2d21ac55 | 2524 | is_already_queued(proc_t procp, |
91447636 | 2525 | user_addr_t aiocbp ) |
55e303ae A |
2526 | { |
2527 | aio_workq_entry *entryp; | |
2528 | boolean_t result; | |
b0d623f7 | 2529 | |
55e303ae A |
2530 | result = FALSE; |
2531 | ||
2532 | /* look for matches on our queue of async IO requests that have completed */ | |
b0d623f7 | 2533 | TAILQ_FOREACH( entryp, &procp->p_aio_doneq, aio_proc_link ) { |
55e303ae A |
2534 | if ( aiocbp == entryp->uaiocbp ) { |
2535 | result = TRUE; | |
2536 | goto ExitThisRoutine; | |
2537 | } | |
2538 | } | |
2539 | ||
2540 | /* look for matches on our queue of active async IO requests */ | |
b0d623f7 | 2541 | TAILQ_FOREACH( entryp, &procp->p_aio_activeq, aio_proc_link ) { |
55e303ae A |
2542 | if ( aiocbp == entryp->uaiocbp ) { |
2543 | result = TRUE; | |
2544 | goto ExitThisRoutine; | |
2545 | } | |
2546 | } | |
2547 | ||
55e303ae A |
2548 | ExitThisRoutine: |
2549 | return( result ); | |
2550 | ||
2551 | } /* is_already_queued */ | |
2552 | ||
2553 | ||
b0d623f7 A |
2554 | static void |
2555 | free_lio_context(aio_lio_context* context) | |
2556 | { | |
2557 | ||
2558 | #if DEBUG | |
2559 | OSDecrementAtomic(&lio_contexts_alloced); | |
2560 | #endif /* DEBUG */ | |
2561 | ||
2562 | FREE( context, M_TEMP ); | |
2563 | ||
2564 | } /* free_lio_context */ | |
2565 | ||
2566 | ||
55e303ae A |
2567 | /* |
2568 | * aio initialization | |
2569 | */ | |
2570 | __private_extern__ void | |
2571 | aio_init( void ) | |
2572 | { | |
2573 | int i; | |
2574 | ||
91447636 | 2575 | aio_lock_grp_attr = lck_grp_attr_alloc_init(); |
b0d623f7 A |
2576 | aio_proc_lock_grp = lck_grp_alloc_init("aio_proc", aio_lock_grp_attr);; |
2577 | aio_entry_lock_grp = lck_grp_alloc_init("aio_entry", aio_lock_grp_attr);; | |
2578 | aio_queue_lock_grp = lck_grp_alloc_init("aio_queue", aio_lock_grp_attr);; | |
91447636 | 2579 | aio_lock_attr = lck_attr_alloc_init(); |
91447636 | 2580 | |
b0d623f7 A |
2581 | lck_mtx_init(&aio_entry_mtx, aio_entry_lock_grp, aio_lock_attr); |
2582 | lck_mtx_init(&aio_proc_mtx, aio_proc_lock_grp, aio_lock_attr); | |
55e303ae | 2583 | |
b0d623f7 | 2584 | aio_anchor.aio_inflight_count = 0; |
55e303ae | 2585 | aio_anchor.aio_done_count = 0; |
b0d623f7 A |
2586 | aio_anchor.aio_total_count = 0; |
2587 | aio_anchor.aio_num_workqs = AIO_NUM_WORK_QUEUES; | |
2588 | ||
2589 | for (i = 0; i < AIO_NUM_WORK_QUEUES; i++) { | |
2590 | aio_workq_init(&aio_anchor.aio_async_workqs[i]); | |
2591 | } | |
2592 | ||
55e303ae A |
2593 | |
2594 | i = sizeof( aio_workq_entry ); | |
2595 | aio_workq_zonep = zinit( i, i * aio_max_requests, i * aio_max_requests, "aiowq" ); | |
2596 | ||
2597 | _aio_create_worker_threads( aio_worker_threads ); | |
55e303ae A |
2598 | |
2599 | } /* aio_init */ | |
2600 | ||
2601 | ||
2602 | /* | |
2603 | * aio worker threads created here. | |
2604 | */ | |
2605 | __private_extern__ void | |
2606 | _aio_create_worker_threads( int num ) | |
2607 | { | |
2608 | int i; | |
2609 | ||
2610 | /* create some worker threads to handle the async IO requests */ | |
2611 | for ( i = 0; i < num; i++ ) { | |
2612 | thread_t myThread; | |
2613 | ||
b0d623f7 | 2614 | if ( KERN_SUCCESS != kernel_thread_start((thread_continue_t)aio_work_thread, NULL, &myThread) ) { |
55e303ae A |
2615 | printf( "%s - failed to create a work thread \n", __FUNCTION__ ); |
2616 | } | |
b0d623f7 A |
2617 | else |
2618 | thread_deallocate(myThread); | |
55e303ae A |
2619 | } |
2620 | ||
2621 | return; | |
2622 | ||
2623 | } /* _aio_create_worker_threads */ | |
2624 | ||
2625 | /* | |
2626 | * Return the current activation utask | |
2627 | */ | |
2628 | task_t | |
2629 | get_aiotask(void) | |
2630 | { | |
91447636 A |
2631 | return ((struct uthread *)get_bsdthread_info(current_thread()))->uu_aio_task; |
2632 | } | |
2633 | ||
2634 | ||
2635 | /* | |
2636 | * In the case of an aiocb from a | |
2637 | * 32-bit process we need to expand some longs and pointers to the correct | |
2638 | * sizes in order to let downstream code always work on the same type of | |
2639 | * aiocb (in our case that is a user_aiocb) | |
2640 | */ | |
2641 | static void | |
b0d623f7 | 2642 | do_munge_aiocb_user32_to_user( struct user32_aiocb *my_aiocbp, struct user_aiocb *the_user_aiocbp ) |
91447636 A |
2643 | { |
2644 | the_user_aiocbp->aio_fildes = my_aiocbp->aio_fildes; | |
2645 | the_user_aiocbp->aio_offset = my_aiocbp->aio_offset; | |
2646 | the_user_aiocbp->aio_buf = CAST_USER_ADDR_T(my_aiocbp->aio_buf); | |
2647 | the_user_aiocbp->aio_nbytes = my_aiocbp->aio_nbytes; | |
2648 | the_user_aiocbp->aio_reqprio = my_aiocbp->aio_reqprio; | |
2649 | the_user_aiocbp->aio_lio_opcode = my_aiocbp->aio_lio_opcode; | |
2650 | ||
2651 | /* special case here. since we do not know if sigev_value is an */ | |
2652 | /* int or a ptr we do NOT cast the ptr to a user_addr_t. This */ | |
2653 | /* means if we send this info back to user space we need to remember */ | |
2654 | /* sigev_value was not expanded for the 32-bit case. */ | |
2655 | /* NOTE - this does NOT affect us since we don't support sigev_value */ | |
2656 | /* yet in the aio context. */ | |
2657 | //LP64 | |
2658 | the_user_aiocbp->aio_sigevent.sigev_notify = my_aiocbp->aio_sigevent.sigev_notify; | |
2659 | the_user_aiocbp->aio_sigevent.sigev_signo = my_aiocbp->aio_sigevent.sigev_signo; | |
2660 | the_user_aiocbp->aio_sigevent.sigev_value.size_equivalent.sival_int = | |
2661 | my_aiocbp->aio_sigevent.sigev_value.sival_int; | |
2662 | the_user_aiocbp->aio_sigevent.sigev_notify_function = | |
2663 | CAST_USER_ADDR_T(my_aiocbp->aio_sigevent.sigev_notify_function); | |
2664 | the_user_aiocbp->aio_sigevent.sigev_notify_attributes = | |
2665 | CAST_USER_ADDR_T(my_aiocbp->aio_sigevent.sigev_notify_attributes); | |
55e303ae | 2666 | } |
b0d623f7 A |
2667 | |
2668 | /* Similar for 64-bit user process, so that we don't need to satisfy | |
2669 | * the alignment constraints of the original user64_aiocb | |
2670 | */ | |
2671 | static void | |
2672 | do_munge_aiocb_user64_to_user( struct user64_aiocb *my_aiocbp, struct user_aiocb *the_user_aiocbp ) | |
2673 | { | |
2674 | the_user_aiocbp->aio_fildes = my_aiocbp->aio_fildes; | |
2675 | the_user_aiocbp->aio_offset = my_aiocbp->aio_offset; | |
2676 | the_user_aiocbp->aio_buf = my_aiocbp->aio_buf; | |
2677 | the_user_aiocbp->aio_nbytes = my_aiocbp->aio_nbytes; | |
2678 | the_user_aiocbp->aio_reqprio = my_aiocbp->aio_reqprio; | |
2679 | the_user_aiocbp->aio_lio_opcode = my_aiocbp->aio_lio_opcode; | |
2680 | ||
2681 | the_user_aiocbp->aio_sigevent.sigev_notify = my_aiocbp->aio_sigevent.sigev_notify; | |
2682 | the_user_aiocbp->aio_sigevent.sigev_signo = my_aiocbp->aio_sigevent.sigev_signo; | |
2683 | the_user_aiocbp->aio_sigevent.sigev_value.size_equivalent.sival_int = | |
2684 | my_aiocbp->aio_sigevent.sigev_value.size_equivalent.sival_int; | |
2685 | the_user_aiocbp->aio_sigevent.sigev_notify_function = | |
2686 | my_aiocbp->aio_sigevent.sigev_notify_function; | |
2687 | the_user_aiocbp->aio_sigevent.sigev_notify_attributes = | |
2688 | my_aiocbp->aio_sigevent.sigev_notify_attributes; | |
2689 | } |