ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libeio/eio.c
Revision: 1.35
Committed: Sat Jun 6 20:13:46 2009 UTC (14 years, 11 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-3_2
Changes since 1.34: +2 -0 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.14 /*
2     * libeio implementation
3     *
4 root 1.31 * Copyright (c) 2007,2008,2009 Marc Alexander Lehmann <libeio@schmorp.de>
5 root 1.14 * All rights reserved.
6     *
7     * Redistribution and use in source and binary forms, with or without modifica-
8     * tion, are permitted provided that the following conditions are met:
9     *
10     * 1. Redistributions of source code must retain the above copyright notice,
11     * this list of conditions and the following disclaimer.
12     *
13     * 2. Redistributions in binary form must reproduce the above copyright
14     * notice, this list of conditions and the following disclaimer in the
15     * documentation and/or other materials provided with the distribution.
16     *
17     * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
18     * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER-
19     * CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
20     * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPE-
21     * CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22     * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
23     * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24     * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTH-
25     * ERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
26     * OF THE POSSIBILITY OF SUCH DAMAGE.
27     *
28     * Alternatively, the contents of this file may be used under the terms of
29     * the GNU General Public License ("GPL") version 2 or any later version,
30     * in which case the provisions of the GPL are applicable instead of
31     * the above. If you wish to allow the use of your version of this file
32     * only under the terms of the GPL and not to allow others to use your
33     * version of this file under the BSD license, indicate your decision
34     * by deleting the provisions above and replace them with the notice
35     * and other provisions required by the GPL. If you do not delete the
36     * provisions above, a recipient may use your version of this file under
37     * either the BSD or the GPL.
38     */
39    
40 root 1.1 #include "eio.h"
41 root 1.29
42     #ifdef EIO_STACKSIZE
43     # define XTHREAD_STACKSIZE EIO_STACKSIZE
44     #endif
45 root 1.1 #include "xthread.h"
46    
47     #include <errno.h>
48     #include <stddef.h>
49     #include <stdlib.h>
50 root 1.3 #include <string.h>
51 root 1.1 #include <errno.h>
52     #include <sys/types.h>
53     #include <sys/stat.h>
54     #include <limits.h>
55     #include <fcntl.h>
56 root 1.8 #include <assert.h>
57 root 1.1
58     #ifndef EIO_FINISH
59     # define EIO_FINISH(req) ((req)->finish) && !EIO_CANCELLED (req) ? (req)->finish (req) : 0
60     #endif
61    
62     #ifndef EIO_DESTROY
63     # define EIO_DESTROY(req) do { if ((req)->destroy) (req)->destroy (req); } while (0)
64     #endif
65    
66     #ifndef EIO_FEED
67     # define EIO_FEED(req) do { if ((req)->feed ) (req)->feed (req); } while (0)
68     #endif
69    
70     #ifdef _WIN32
71    
72     /*doh*/
73     #else
74    
75     # include "config.h"
76     # include <sys/time.h>
77     # include <sys/select.h>
78     # include <unistd.h>
79     # include <utime.h>
80     # include <signal.h>
81 root 1.4 # include <dirent.h>
82 root 1.1
83 root 1.31 /* POSIX_SOURCE is useless on bsd's, and XOPEN_SOURCE is unreliable there, too */
84     # if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
85 root 1.33 # define _DIRENT_HAVE_D_TYPE /* sigh */
86 root 1.31 # define D_INO(de) (de)->d_fileno
87 root 1.33 # define D_NAMLEN(de) (de)->d_namlen
88 root 1.31 # elif defined(__linux) || defined(d_ino) || _XOPEN_SOURCE >= 600
89     # define D_INO(de) (de)->d_ino
90     # endif
91    
92 root 1.33 #ifdef _D_EXACT_NAMLEN
93     # undef D_NAMLEN
94     # define D_NAMLEN(de) _D_EXACT_NAMLEN (de)
95     #endif
96    
97 root 1.31 # ifdef _DIRENT_HAVE_D_TYPE
98     # define D_TYPE(de) (de)->d_type
99     # endif
100    
101 root 1.1 # ifndef EIO_STRUCT_DIRENT
102     # define EIO_STRUCT_DIRENT struct dirent
103     # endif
104    
105     #endif
106    
107     #if HAVE_SENDFILE
108     # if __linux
109     # include <sys/sendfile.h>
110     # elif __freebsd
111     # include <sys/socket.h>
112     # include <sys/uio.h>
113     # elif __hpux
114     # include <sys/socket.h>
115     # elif __solaris /* not yet */
116     # include <sys/sendfile.h>
117     # else
118     # error sendfile support requested but not available
119     # endif
120     #endif
121    
122 root 1.31 #ifndef D_TYPE
123     # define D_TYPE(de) 0
124     #endif
125     #ifndef D_INO
126     # define D_INO(de) 0
127     #endif
128 root 1.33 #ifndef D_NAMLEN
129     # define D_NAMLEN(de) strlen ((de)->d_name)
130     #endif
131 root 1.31
132 root 1.1 /* number of seconds after which an idle threads exit */
133     #define IDLE_TIMEOUT 10
134    
135     /* used for struct dirent, AIX doesn't provide it */
136     #ifndef NAME_MAX
137     # define NAME_MAX 4096
138     #endif
139    
140     /* buffer size for various temporary buffers */
141     #define EIO_BUFSIZE 65536
142    
143     #define dBUF \
144     char *eio_buf; \
145 root 1.14 ETP_WORKER_LOCK (self); \
146 root 1.1 self->dbuf = eio_buf = malloc (EIO_BUFSIZE); \
147 root 1.14 ETP_WORKER_UNLOCK (self); \
148 root 1.9 errno = ENOMEM; \
149 root 1.1 if (!eio_buf) \
150     return -1;
151    
152     #define EIO_TICKS ((1000000 + 1023) >> 10)
153    
154 root 1.13 /*****************************************************************************/
155 root 1.1
156 root 1.24 #if __GNUC__ >= 3
157     # define expect(expr,value) __builtin_expect ((expr),(value))
158     #else
159     # define expect(expr,value) (expr)
160     #endif
161    
162     #define expect_false(expr) expect ((expr) != 0, 0)
163     #define expect_true(expr) expect ((expr) != 0, 1)
164    
165     /*****************************************************************************/
166    
167 root 1.14 #define ETP_PRI_MIN EIO_PRI_MIN
168     #define ETP_PRI_MAX EIO_PRI_MAX
169    
170 root 1.15 struct etp_worker;
171    
172 root 1.14 #define ETP_REQ eio_req
173     #define ETP_DESTROY(req) eio_destroy (req)
174     static int eio_finish (eio_req *req);
175     #define ETP_FINISH(req) eio_finish (req)
176 root 1.15 static void eio_execute (struct etp_worker *self, eio_req *req);
177     #define ETP_EXECUTE(wrk,req) eio_execute (wrk,req)
178 root 1.14
179     #define ETP_WORKER_CLEAR(req) \
180     if (wrk->dbuf) \
181     { \
182     free (wrk->dbuf); \
183     wrk->dbuf = 0; \
184     } \
185     \
186     if (wrk->dirp) \
187     { \
188     closedir (wrk->dirp); \
189     wrk->dirp = 0; \
190     }
191 root 1.32
192 root 1.14 #define ETP_WORKER_COMMON \
193     void *dbuf; \
194     DIR *dirp;
195    
196     /*****************************************************************************/
197    
198     #define ETP_NUM_PRI (ETP_PRI_MAX - ETP_PRI_MIN + 1)
199    
200 root 1.1 /* calculcate time difference in ~1/EIO_TICKS of a second */
201     static int tvdiff (struct timeval *tv1, struct timeval *tv2)
202     {
203     return (tv2->tv_sec - tv1->tv_sec ) * EIO_TICKS
204     + ((tv2->tv_usec - tv1->tv_usec) >> 10);
205     }
206    
207 root 1.9 static unsigned int started, idle, wanted = 4;
208 root 1.1
209 root 1.14 static void (*want_poll_cb) (void);
210     static void (*done_poll_cb) (void);
211 root 1.13
212 root 1.14 static unsigned int max_poll_time; /* reslock */
213     static unsigned int max_poll_reqs; /* reslock */
214 root 1.13
215 root 1.14 static volatile unsigned int nreqs; /* reqlock */
216     static volatile unsigned int nready; /* reqlock */
217     static volatile unsigned int npending; /* reqlock */
218 root 1.13 static volatile unsigned int max_idle = 4;
219    
220 root 1.14 static mutex_t wrklock = X_MUTEX_INIT;
221 root 1.13 static mutex_t reslock = X_MUTEX_INIT;
222     static mutex_t reqlock = X_MUTEX_INIT;
223     static cond_t reqwait = X_COND_INIT;
224 root 1.1
225 root 1.22 #if !HAVE_PREADWRITE
226     /*
227     * make our pread/pwrite emulation safe against themselves, but not against
228     * normal read/write by using a mutex. slows down execution a lot,
229     * but that's your problem, not mine.
230     */
231     static mutex_t preadwritelock = X_MUTEX_INIT;
232     #endif
233    
234 root 1.14 typedef struct etp_worker
235 root 1.9 {
236 root 1.14 /* locked by wrklock */
237     struct etp_worker *prev, *next;
238 root 1.1
239     thread_t tid;
240    
241 root 1.14 /* locked by reslock, reqlock or wrklock */
242     ETP_REQ *req; /* currently processed request */
243    
244     ETP_WORKER_COMMON
245     } etp_worker;
246    
247     static etp_worker wrk_first = { &wrk_first, &wrk_first, 0 }; /* NOT etp */
248 root 1.1
249 root 1.14 #define ETP_WORKER_LOCK(wrk) X_LOCK (wrklock)
250     #define ETP_WORKER_UNLOCK(wrk) X_UNLOCK (wrklock)
251 root 1.13
252     /* worker threads management */
253 root 1.1
254 root 1.14 static void etp_worker_clear (etp_worker *wrk)
255 root 1.1 {
256 root 1.14 ETP_WORKER_CLEAR (wrk);
257 root 1.1 }
258    
259 root 1.14 static void etp_worker_free (etp_worker *wrk)
260 root 1.1 {
261     wrk->next->prev = wrk->prev;
262     wrk->prev->next = wrk->next;
263    
264     free (wrk);
265     }
266    
267 root 1.14 static unsigned int etp_nreqs (void)
268 root 1.1 {
269 root 1.14 int retval;
270     if (WORDACCESS_UNSAFE) X_LOCK (reqlock);
271     retval = nreqs;
272     if (WORDACCESS_UNSAFE) X_UNLOCK (reqlock);
273     return retval;
274 root 1.1 }
275    
276 root 1.14 static unsigned int etp_nready (void)
277 root 1.1 {
278     unsigned int retval;
279    
280     if (WORDACCESS_UNSAFE) X_LOCK (reqlock);
281     retval = nready;
282     if (WORDACCESS_UNSAFE) X_UNLOCK (reqlock);
283    
284     return retval;
285     }
286    
287 root 1.14 static unsigned int etp_npending (void)
288 root 1.1 {
289     unsigned int retval;
290    
291     if (WORDACCESS_UNSAFE) X_LOCK (reqlock);
292     retval = npending;
293     if (WORDACCESS_UNSAFE) X_UNLOCK (reqlock);
294    
295     return retval;
296     }
297    
298 root 1.14 static unsigned int etp_nthreads (void)
299 root 1.1 {
300     unsigned int retval;
301    
302     if (WORDACCESS_UNSAFE) X_LOCK (reqlock);
303     retval = started;
304     if (WORDACCESS_UNSAFE) X_UNLOCK (reqlock);
305    
306     return retval;
307     }
308    
309     /*
310     * a somewhat faster data structure might be nice, but
311     * with 8 priorities this actually needs <20 insns
312     * per shift, the most expensive operation.
313     */
314     typedef struct {
315 root 1.14 ETP_REQ *qs[ETP_NUM_PRI], *qe[ETP_NUM_PRI]; /* qstart, qend */
316 root 1.1 int size;
317 root 1.14 } etp_reqq;
318 root 1.1
319 root 1.14 static etp_reqq req_queue;
320     static etp_reqq res_queue;
321 root 1.1
322 root 1.14 static int reqq_push (etp_reqq *q, ETP_REQ *req)
323 root 1.1 {
324     int pri = req->pri;
325     req->next = 0;
326    
327     if (q->qe[pri])
328     {
329     q->qe[pri]->next = req;
330     q->qe[pri] = req;
331     }
332     else
333     q->qe[pri] = q->qs[pri] = req;
334    
335     return q->size++;
336     }
337    
338 root 1.14 static ETP_REQ *reqq_shift (etp_reqq *q)
339 root 1.1 {
340     int pri;
341    
342     if (!q->size)
343     return 0;
344    
345     --q->size;
346    
347 root 1.14 for (pri = ETP_NUM_PRI; pri--; )
348 root 1.1 {
349     eio_req *req = q->qs[pri];
350    
351     if (req)
352     {
353     if (!(q->qs[pri] = (eio_req *)req->next))
354     q->qe[pri] = 0;
355    
356     return req;
357     }
358     }
359    
360     abort ();
361     }
362    
363 root 1.13 static void etp_atfork_prepare (void)
364     {
365 root 1.14 X_LOCK (wrklock);
366 root 1.13 X_LOCK (reqlock);
367     X_LOCK (reslock);
368     #if !HAVE_PREADWRITE
369     X_LOCK (preadwritelock);
370     #endif
371     }
372    
373     static void etp_atfork_parent (void)
374     {
375     #if !HAVE_PREADWRITE
376     X_UNLOCK (preadwritelock);
377     #endif
378     X_UNLOCK (reslock);
379     X_UNLOCK (reqlock);
380 root 1.14 X_UNLOCK (wrklock);
381 root 1.13 }
382    
383     static void etp_atfork_child (void)
384     {
385 root 1.14 ETP_REQ *prv;
386 root 1.13
387 root 1.21 while ((prv = reqq_shift (&req_queue)))
388 root 1.14 ETP_DESTROY (prv);
389 root 1.13
390 root 1.21 while ((prv = reqq_shift (&res_queue)))
391 root 1.14 ETP_DESTROY (prv);
392 root 1.13
393     while (wrk_first.next != &wrk_first)
394     {
395 root 1.14 etp_worker *wrk = wrk_first.next;
396 root 1.13
397     if (wrk->req)
398 root 1.14 ETP_DESTROY (wrk->req);
399 root 1.13
400 root 1.14 etp_worker_clear (wrk);
401     etp_worker_free (wrk);
402 root 1.13 }
403    
404     started = 0;
405     idle = 0;
406     nreqs = 0;
407     nready = 0;
408     npending = 0;
409    
410     etp_atfork_parent ();
411     }
412    
413     static void
414     etp_once_init (void)
415     {
416     X_THREAD_ATFORK (etp_atfork_prepare, etp_atfork_parent, etp_atfork_child);
417     }
418    
419     static int
420 root 1.14 etp_init (void (*want_poll)(void), void (*done_poll)(void))
421 root 1.13 {
422     static pthread_once_t doinit = PTHREAD_ONCE_INIT;
423    
424     pthread_once (&doinit, etp_once_init);
425    
426 root 1.14 want_poll_cb = want_poll;
427     done_poll_cb = done_poll;
428 root 1.19
429     return 0;
430 root 1.14 }
431    
432     X_THREAD_PROC (etp_proc);
433    
434     static void etp_start_thread (void)
435     {
436     etp_worker *wrk = calloc (1, sizeof (etp_worker));
437    
438     /*TODO*/
439     assert (("unable to allocate worker thread data", wrk));
440    
441     X_LOCK (wrklock);
442    
443     if (thread_create (&wrk->tid, etp_proc, (void *)wrk))
444     {
445     wrk->prev = &wrk_first;
446     wrk->next = wrk_first.next;
447     wrk_first.next->prev = wrk;
448     wrk_first.next = wrk;
449     ++started;
450     }
451     else
452     free (wrk);
453    
454     X_UNLOCK (wrklock);
455     }
456    
457     static void etp_maybe_start_thread (void)
458     {
459 root 1.24 if (expect_true (etp_nthreads () >= wanted))
460 root 1.14 return;
461    
462     /* todo: maybe use idle here, but might be less exact */
463 root 1.24 if (expect_true (0 <= (int)etp_nthreads () + (int)etp_npending () - (int)etp_nreqs ()))
464 root 1.14 return;
465    
466     etp_start_thread ();
467     }
468    
469     static void etp_end_thread (void)
470     {
471     eio_req *req = calloc (1, sizeof (eio_req));
472    
473     req->type = -1;
474     req->pri = ETP_PRI_MAX - ETP_PRI_MIN;
475    
476     X_LOCK (reqlock);
477     reqq_push (&req_queue, req);
478     X_COND_SIGNAL (reqwait);
479     X_UNLOCK (reqlock);
480    
481     X_LOCK (wrklock);
482     --started;
483     X_UNLOCK (wrklock);
484     }
485    
486     static int etp_poll (void)
487     {
488     unsigned int maxreqs;
489     unsigned int maxtime;
490     struct timeval tv_start, tv_now;
491    
492     X_LOCK (reslock);
493     maxreqs = max_poll_reqs;
494     maxtime = max_poll_time;
495     X_UNLOCK (reslock);
496    
497     if (maxtime)
498     gettimeofday (&tv_start, 0);
499    
500     for (;;)
501     {
502     ETP_REQ *req;
503    
504     etp_maybe_start_thread ();
505    
506     X_LOCK (reslock);
507     req = reqq_shift (&res_queue);
508    
509     if (req)
510     {
511     --npending;
512    
513     if (!res_queue.size && done_poll_cb)
514     done_poll_cb ();
515     }
516    
517     X_UNLOCK (reslock);
518    
519     if (!req)
520     return 0;
521    
522     X_LOCK (reqlock);
523     --nreqs;
524     X_UNLOCK (reqlock);
525    
526 root 1.24 if (expect_false (req->type == EIO_GROUP && req->size))
527 root 1.14 {
528     req->int1 = 1; /* mark request as delayed */
529     continue;
530     }
531     else
532     {
533     int res = ETP_FINISH (req);
534 root 1.24 if (expect_false (res))
535 root 1.14 return res;
536     }
537    
538 root 1.24 if (expect_false (maxreqs && !--maxreqs))
539 root 1.14 break;
540    
541     if (maxtime)
542     {
543     gettimeofday (&tv_now, 0);
544    
545     if (tvdiff (&tv_start, &tv_now) >= maxtime)
546     break;
547     }
548     }
549    
550     errno = EAGAIN;
551     return -1;
552     }
553    
554     static void etp_cancel (ETP_REQ *req)
555     {
556     X_LOCK (wrklock);
557     req->flags |= EIO_FLAG_CANCELLED;
558     X_UNLOCK (wrklock);
559    
560     eio_grp_cancel (req);
561     }
562    
563     static void etp_submit (ETP_REQ *req)
564     {
565     req->pri -= ETP_PRI_MIN;
566    
567 root 1.24 if (expect_false (req->pri < ETP_PRI_MIN - ETP_PRI_MIN)) req->pri = ETP_PRI_MIN - ETP_PRI_MIN;
568     if (expect_false (req->pri > ETP_PRI_MAX - ETP_PRI_MIN)) req->pri = ETP_PRI_MAX - ETP_PRI_MIN;
569    
570     if (expect_false (req->type == EIO_GROUP))
571     {
572     /* I hope this is worth it :/ */
573     X_LOCK (reqlock);
574     ++nreqs;
575     X_UNLOCK (reqlock);
576    
577     X_LOCK (reslock);
578    
579     ++npending;
580    
581     if (!reqq_push (&res_queue, req) && want_poll_cb)
582     want_poll_cb ();
583 root 1.14
584 root 1.24 X_UNLOCK (reslock);
585     }
586     else
587     {
588     X_LOCK (reqlock);
589     ++nreqs;
590     ++nready;
591     reqq_push (&req_queue, req);
592     X_COND_SIGNAL (reqwait);
593     X_UNLOCK (reqlock);
594 root 1.14
595 root 1.24 etp_maybe_start_thread ();
596     }
597 root 1.14 }
598    
599     static void etp_set_max_poll_time (double nseconds)
600     {
601     if (WORDACCESS_UNSAFE) X_LOCK (reslock);
602     max_poll_time = nseconds;
603     if (WORDACCESS_UNSAFE) X_UNLOCK (reslock);
604     }
605    
606     static void etp_set_max_poll_reqs (unsigned int maxreqs)
607     {
608     if (WORDACCESS_UNSAFE) X_LOCK (reslock);
609     max_poll_reqs = maxreqs;
610     if (WORDACCESS_UNSAFE) X_UNLOCK (reslock);
611     }
612 root 1.13
613 root 1.14 static void etp_set_max_idle (unsigned int nthreads)
614     {
615     if (WORDACCESS_UNSAFE) X_LOCK (reqlock);
616     max_idle = nthreads <= 0 ? 1 : nthreads;
617     if (WORDACCESS_UNSAFE) X_UNLOCK (reqlock);
618 root 1.13 }
619    
620 root 1.14 static void etp_set_min_parallel (unsigned int nthreads)
621     {
622     if (wanted < nthreads)
623     wanted = nthreads;
624     }
625    
626     static void etp_set_max_parallel (unsigned int nthreads)
627     {
628     if (wanted > nthreads)
629     wanted = nthreads;
630    
631     while (started > wanted)
632     etp_end_thread ();
633     }
634 root 1.13
635     /*****************************************************************************/
636    
637 root 1.2 static void grp_try_feed (eio_req *grp)
638 root 1.1 {
639     while (grp->size < grp->int2 && !EIO_CANCELLED (grp))
640     {
641 root 1.26 grp->flags &= ~EIO_FLAG_GROUPADD;
642 root 1.1
643     EIO_FEED (grp);
644    
645     /* stop if no progress has been made */
646 root 1.26 if (!(grp->flags & EIO_FLAG_GROUPADD))
647 root 1.1 {
648     grp->feed = 0;
649 root 1.2 break;
650 root 1.1 }
651     }
652     }
653    
654     static int grp_dec (eio_req *grp)
655     {
656     --grp->size;
657    
658     /* call feeder, if applicable */
659 root 1.2 grp_try_feed (grp);
660 root 1.1
661     /* finish, if done */
662     if (!grp->size && grp->int1)
663 root 1.2 return eio_finish (grp);
664 root 1.1 else
665     return 0;
666     }
667    
668     void eio_destroy (eio_req *req)
669     {
670 root 1.6 if ((req)->flags & EIO_FLAG_PTR1_FREE) free (req->ptr1);
671     if ((req)->flags & EIO_FLAG_PTR2_FREE) free (req->ptr2);
672 root 1.1
673     EIO_DESTROY (req);
674     }
675    
676 root 1.2 static int eio_finish (eio_req *req)
677 root 1.1 {
678     int res = EIO_FINISH (req);
679    
680     if (req->grp)
681     {
682     int res2;
683     eio_req *grp = req->grp;
684    
685     /* unlink request */
686     if (req->grp_next) req->grp_next->grp_prev = req->grp_prev;
687     if (req->grp_prev) req->grp_prev->grp_next = req->grp_next;
688    
689     if (grp->grp_first == req)
690     grp->grp_first = req->grp_next;
691    
692     res2 = grp_dec (grp);
693    
694     if (!res && res2)
695     res = res2;
696     }
697    
698     eio_destroy (req);
699    
700     return res;
701     }
702    
703     void eio_grp_cancel (eio_req *grp)
704     {
705     for (grp = grp->grp_first; grp; grp = grp->grp_next)
706     eio_cancel (grp);
707     }
708    
709     void eio_cancel (eio_req *req)
710     {
711 root 1.14 etp_cancel (req);
712     }
713 root 1.1
714 root 1.14 void eio_submit (eio_req *req)
715     {
716     etp_submit (req);
717 root 1.1 }
718    
719 root 1.14 unsigned int eio_nreqs (void)
720 root 1.1 {
721 root 1.14 return etp_nreqs ();
722 root 1.1 }
723    
724 root 1.14 unsigned int eio_nready (void)
725 root 1.1 {
726 root 1.14 return etp_nready ();
727 root 1.1 }
728    
729 root 1.14 unsigned int eio_npending (void)
730 root 1.1 {
731 root 1.14 return etp_npending ();
732 root 1.1 }
733    
734 root 1.14 unsigned int eio_nthreads (void)
735 root 1.1 {
736 root 1.14 return etp_nthreads ();
737 root 1.1 }
738    
739     void eio_set_max_poll_time (double nseconds)
740     {
741 root 1.14 etp_set_max_poll_time (nseconds);
742 root 1.1 }
743    
744     void eio_set_max_poll_reqs (unsigned int maxreqs)
745     {
746 root 1.14 etp_set_max_poll_reqs (maxreqs);
747 root 1.1 }
748    
749     void eio_set_max_idle (unsigned int nthreads)
750     {
751 root 1.14 etp_set_max_idle (nthreads);
752 root 1.1 }
753    
754     void eio_set_min_parallel (unsigned int nthreads)
755     {
756 root 1.14 etp_set_min_parallel (nthreads);
757 root 1.1 }
758    
759     void eio_set_max_parallel (unsigned int nthreads)
760     {
761 root 1.14 etp_set_max_parallel (nthreads);
762 root 1.1 }
763    
764     int eio_poll (void)
765     {
766 root 1.14 return etp_poll ();
767 root 1.1 }
768    
769     /*****************************************************************************/
770     /* work around various missing functions */
771    
772     #if !HAVE_PREADWRITE
773 root 1.27 # undef pread
774     # undef pwrite
775 root 1.9 # define pread eio__pread
776     # define pwrite eio__pwrite
777 root 1.1
778 root 1.9 static ssize_t
779     eio__pread (int fd, void *buf, size_t count, off_t offset)
780 root 1.1 {
781     ssize_t res;
782     off_t ooffset;
783    
784     X_LOCK (preadwritelock);
785     ooffset = lseek (fd, 0, SEEK_CUR);
786     lseek (fd, offset, SEEK_SET);
787     res = read (fd, buf, count);
788     lseek (fd, ooffset, SEEK_SET);
789     X_UNLOCK (preadwritelock);
790    
791     return res;
792     }
793    
794 root 1.9 static ssize_t
795     eio__pwrite (int fd, void *buf, size_t count, off_t offset)
796 root 1.1 {
797     ssize_t res;
798     off_t ooffset;
799    
800     X_LOCK (preadwritelock);
801     ooffset = lseek (fd, 0, SEEK_CUR);
802     lseek (fd, offset, SEEK_SET);
803     res = write (fd, buf, count);
804 root 1.30 lseek (fd, ooffset, SEEK_SET);
805 root 1.1 X_UNLOCK (preadwritelock);
806    
807     return res;
808     }
809     #endif
810    
811     #ifndef HAVE_FUTIMES
812    
813 root 1.27 # undef utimes
814     # undef futimes
815 root 1.9 # define utimes(path,times) eio__utimes (path, times)
816     # define futimes(fd,times) eio__futimes (fd, times)
817 root 1.1
818 root 1.9 static int
819     eio__utimes (const char *filename, const struct timeval times[2])
820 root 1.1 {
821     if (times)
822     {
823     struct utimbuf buf;
824    
825     buf.actime = times[0].tv_sec;
826     buf.modtime = times[1].tv_sec;
827    
828     return utime (filename, &buf);
829     }
830     else
831     return utime (filename, 0);
832     }
833    
834 root 1.9 static int eio__futimes (int fd, const struct timeval tv[2])
835 root 1.1 {
836     errno = ENOSYS;
837     return -1;
838     }
839    
840     #endif
841    
842     #if !HAVE_FDATASYNC
843 root 1.27 # undef fdatasync
844     # define fdatasync(fd) fsync (fd)
845 root 1.1 #endif
846    
847 root 1.27 /* sync_file_range always needs emulation */
848     int
849     eio__sync_file_range (int fd, off_t offset, size_t nbytes, unsigned int flags)
850     {
851     #if HAVE_SYNC_FILE_RANGE
852     int res;
853    
854     if (EIO_SYNC_FILE_RANGE_WAIT_BEFORE != SYNC_FILE_RANGE_WAIT_BEFORE
855     || EIO_SYNC_FILE_RANGE_WRITE != SYNC_FILE_RANGE_WRITE
856     || EIO_SYNC_FILE_RANGE_WAIT_AFTER != SYNC_FILE_RANGE_WAIT_AFTER)
857     {
858     flags = 0
859     | (flags & EIO_SYNC_FILE_RANGE_WAIT_BEFORE ? SYNC_FILE_RANGE_WAIT_BEFORE : 0)
860     | (flags & EIO_SYNC_FILE_RANGE_WRITE ? SYNC_FILE_RANGE_WRITE : 0)
861     | (flags & EIO_SYNC_FILE_RANGE_WAIT_AFTER ? SYNC_FILE_RANGE_WAIT_AFTER : 0);
862     }
863    
864     res = sync_file_range (fd, offset, nbytes, flags);
865    
866 root 1.28 if (!res || errno != ENOSYS)
867 root 1.27 return res;
868     #endif
869    
870     /* even though we could play tricks with the flags, it's better to always
871     * call fdatasync, as thta matches the expectation of it's users best */
872     return fdatasync (fd);
873     }
874    
875 root 1.1 #if !HAVE_READAHEAD
876 root 1.27 # undef readahead
877 root 1.9 # define readahead(fd,offset,count) eio__readahead (fd, offset, count, self)
878 root 1.1
879 root 1.9 static ssize_t
880 root 1.17 eio__readahead (int fd, off_t offset, size_t count, etp_worker *self)
881 root 1.1 {
882     size_t todo = count;
883     dBUF;
884    
885     while (todo > 0)
886     {
887     size_t len = todo < EIO_BUFSIZE ? todo : EIO_BUFSIZE;
888    
889 root 1.3 pread (fd, eio_buf, len, offset);
890 root 1.1 offset += len;
891     todo -= len;
892     }
893    
894     errno = 0;
895     return count;
896     }
897    
898     #endif
899    
900     /* sendfile always needs emulation */
901 root 1.9 static ssize_t
902 root 1.14 eio__sendfile (int ofd, int ifd, off_t offset, size_t count, etp_worker *self)
903 root 1.1 {
904     ssize_t res;
905    
906     if (!count)
907     return 0;
908    
909     #if HAVE_SENDFILE
910     # if __linux
911     res = sendfile (ofd, ifd, &offset, count);
912    
913     # elif __freebsd
914     /*
915     * Of course, the freebsd sendfile is a dire hack with no thoughts
916     * wasted on making it similar to other I/O functions.
917     */
918     {
919     off_t sbytes;
920     res = sendfile (ifd, ofd, offset, count, 0, &sbytes, 0);
921    
922     if (res < 0 && sbytes)
923     /* maybe only on EAGAIN: as usual, the manpage leaves you guessing */
924     res = sbytes;
925     }
926    
927     # elif __hpux
928     res = sendfile (ofd, ifd, offset, count, 0, 0);
929    
930     # elif __solaris
931     {
932     struct sendfilevec vec;
933     size_t sbytes;
934    
935     vec.sfv_fd = ifd;
936     vec.sfv_flag = 0;
937     vec.sfv_off = offset;
938     vec.sfv_len = count;
939    
940     res = sendfilev (ofd, &vec, 1, &sbytes);
941    
942     if (res < 0 && sbytes)
943     res = sbytes;
944     }
945    
946     # endif
947     #else
948     res = -1;
949     errno = ENOSYS;
950     #endif
951    
952     if (res < 0
953     && (errno == ENOSYS || errno == EINVAL || errno == ENOTSOCK
954     #if __solaris
955     || errno == EAFNOSUPPORT || errno == EPROTOTYPE
956     #endif
957     )
958     )
959     {
960     /* emulate sendfile. this is a major pain in the ass */
961     dBUF;
962    
963     res = 0;
964    
965     while (count)
966     {
967     ssize_t cnt;
968    
969     cnt = pread (ifd, eio_buf, count > EIO_BUFSIZE ? EIO_BUFSIZE : count, offset);
970    
971     if (cnt <= 0)
972     {
973     if (cnt && !res) res = -1;
974     break;
975     }
976    
977     cnt = write (ofd, eio_buf, cnt);
978    
979     if (cnt <= 0)
980     {
981     if (cnt && !res) res = -1;
982     break;
983     }
984    
985     offset += cnt;
986     res += cnt;
987     count -= cnt;
988     }
989     }
990    
991     return res;
992     }
993    
994 root 1.31 static int
995     eio_dent_cmp (const void *a_, const void *b_)
996     {
997     const eio_dirent *a = (const eio_dirent *)a_;
998     const eio_dirent *b = (const eio_dirent *)b_;
999    
1000     return (int)b->score - (int)a->score ? (int)b->score - (int)a->score
1001     : a->inode < b->inode ? -1 : a->inode > b->inode ? 1 : 0; /* int might be < ino_t */
1002     }
1003    
1004 root 1.1 /* read a full directory */
1005 root 1.9 static void
1006 root 1.14 eio__scandir (eio_req *req, etp_worker *self)
1007 root 1.1 {
1008     DIR *dirp;
1009     EIO_STRUCT_DIRENT *entp;
1010 root 1.31 unsigned char *name, *names;
1011     int namesalloc = 4096;
1012     int namesoffs = 0;
1013     int flags = req->int1;
1014     eio_dirent *dents = 0;
1015     int dentalloc = 128;
1016     int dentoffs = 0;
1017    
1018     req->result = -1;
1019    
1020     if (!(flags & EIO_READDIR_DENTS))
1021     flags &= ~(EIO_READDIR_DIRS_FIRST | EIO_READDIR_STAT_ORDER);
1022 root 1.1
1023 root 1.14 X_LOCK (wrklock);
1024 root 1.20 /* the corresponding closedir is in ETP_WORKER_CLEAR */
1025 root 1.1 self->dirp = dirp = opendir (req->ptr1);
1026 root 1.31 req->flags |= EIO_FLAG_PTR1_FREE | EIO_FLAG_PTR2_FREE;
1027     req->ptr1 = names = malloc (namesalloc);
1028     req->ptr2 = dents = flags ? malloc (dentalloc * sizeof (eio_dirent)) : 0;
1029 root 1.14 X_UNLOCK (wrklock);
1030 root 1.1
1031 root 1.31 if (dirp && names && (!flags || dents))
1032 root 1.1 for (;;)
1033     {
1034     errno = 0;
1035 root 1.16 entp = readdir (dirp);
1036 root 1.1
1037     if (!entp)
1038 root 1.31 {
1039     if (errno)
1040     break;
1041    
1042     /* sort etc. */
1043     req->int1 = flags;
1044     req->result = dentoffs;
1045    
1046 root 1.32 if (dents)
1047     {
1048     eio_dirent *ent = dents + dentoffs;
1049    
1050     while (ent > dents)
1051     (--ent)->name = names + (size_t)ent->name;
1052     }
1053    
1054     if (flags & EIO_READDIR_STAT_ORDER
1055     || !(~flags & (EIO_READDIR_DIRS_FIRST | EIO_READDIR_FOUND_UNKNOWN)))
1056 root 1.31 {
1057     /* pray your qsort doesn't use quicksort */
1058     qsort (dents, dentoffs, sizeof (*dents), eio_dent_cmp); /* score depends of DIRS_FIRST */
1059     }
1060 root 1.32 else if (flags & EIO_READDIR_DIRS_FIRST)
1061 root 1.31 {
1062     /* in this case, all is known, and we just put dirs first and sort them */
1063     eio_dirent *ent = dents + dentoffs;
1064     eio_dirent *dir = dents;
1065    
1066 root 1.35 /* now move dirs to the front, and non-dirs to the back */
1067     /* by walkign from both sides and swapping if necessary */
1068 root 1.31 while (ent > dir)
1069     {
1070     if (dir->type == DT_DIR)
1071     ++dir;
1072     else
1073     {
1074     --ent;
1075    
1076     if (ent->type == DT_DIR)
1077     {
1078     eio_dirent tmp = *dir;
1079     *dir = *ent;
1080     *ent = tmp;
1081    
1082     ++dir;
1083     }
1084     }
1085     }
1086    
1087     /* now sort the dirs only */
1088     qsort (dents, dir - dents, sizeof (*dents), eio_dent_cmp);
1089     }
1090    
1091 root 1.32 /* only provide the names array unless DENTS is specified */
1092     if (!(flags & EIO_READDIR_DENTS))
1093     {
1094     X_LOCK (wrklock);
1095     assert (!dents);
1096     req->ptr1 = 0;
1097     req->ptr2 = names;
1098     X_UNLOCK (wrklock);
1099     }
1100 root 1.31
1101     break;
1102     }
1103 root 1.1
1104 root 1.32 /* now add the entry to our list(s) */
1105 root 1.1 name = entp->d_name;
1106    
1107 root 1.32 /* skip . and .. entries */
1108 root 1.1 if (name [0] != '.' || (name [1] && (name [1] != '.' || name [2])))
1109     {
1110 root 1.33 int len = D_NAMLEN (entp) + 1;
1111 root 1.1
1112 root 1.31 while (expect_false (namesoffs + len > namesalloc))
1113 root 1.1 {
1114 root 1.31 namesalloc *= 2;
1115 root 1.14 X_LOCK (wrklock);
1116 root 1.31 req->ptr1 = names = realloc (names, namesalloc);
1117 root 1.14 X_UNLOCK (wrklock);
1118 root 1.1
1119     if (!names)
1120     break;
1121     }
1122    
1123 root 1.31 memcpy (names + namesoffs, name, len);
1124    
1125     if (dents)
1126     {
1127     struct eio_dirent *ent;
1128    
1129     if (expect_false (dentoffs == dentalloc))
1130     {
1131     dentalloc *= 2;
1132     X_LOCK (wrklock);
1133     req->ptr2 = dents = realloc (dents, dentalloc * sizeof (eio_dirent));
1134     X_UNLOCK (wrklock);
1135    
1136     if (!dents)
1137     break;
1138     }
1139    
1140     ent = dents + dentoffs;
1141    
1142 root 1.32 ent->name = (char *)(size_t)namesoffs; /* rather dirtily we store the offset in the pointer */
1143 root 1.31 ent->namelen = len - 1;
1144     ent->inode = D_INO (entp);
1145    
1146     switch (D_TYPE (entp))
1147     {
1148     default:
1149     ent->type = EIO_DT_UNKNOWN;
1150     flags |= EIO_READDIR_FOUND_UNKNOWN;
1151     break;
1152    
1153     #ifdef DT_FIFO
1154     case DT_FIFO: ent->type = EIO_DT_FIFO; break;
1155     #endif
1156     #ifdef DT_CHR
1157     case DT_CHR: ent->type = EIO_DT_CHR; break;
1158     #endif
1159 root 1.33 #ifdef DT_MPC
1160     case DT_MPC: ent->type = EIO_DT_MPC; break;
1161     #endif
1162 root 1.32 #ifdef DT_DIR
1163 root 1.31 case DT_DIR: ent->type = EIO_DT_DIR; break;
1164     #endif
1165 root 1.33 #ifdef DT_NAM
1166     case DT_NAM: ent->type = EIO_DT_NAM; break;
1167     #endif
1168 root 1.32 #ifdef DT_BLK
1169 root 1.31 case DT_BLK: ent->type = EIO_DT_BLK; break;
1170     #endif
1171 root 1.33 #ifdef DT_MPB
1172     case DT_MPB: ent->type = EIO_DT_MPB; break;
1173     #endif
1174 root 1.32 #ifdef DT_REG
1175 root 1.31 case DT_REG: ent->type = EIO_DT_REG; break;
1176     #endif
1177 root 1.33 #ifdef DT_NWK
1178     case DT_NWK: ent->type = EIO_DT_NWK; break;
1179     #endif
1180     #ifdef DT_CMP
1181     case DT_CMP: ent->type = EIO_DT_CMP; break;
1182     #endif
1183 root 1.32 #ifdef DT_LNK
1184 root 1.31 case DT_LNK: ent->type = EIO_DT_LNK; break;
1185     #endif
1186     #ifdef DT_SOCK
1187     case DT_SOCK: ent->type = EIO_DT_SOCK; break;
1188     #endif
1189 root 1.33 #ifdef DT_DOOR
1190     case DT_DOOR: ent->type = EIO_DT_DOOR; break;
1191     #endif
1192 root 1.31 #ifdef DT_WHT
1193     case DT_WHT: ent->type = EIO_DT_WHT; break;
1194     #endif
1195     }
1196    
1197     ent->score = 0;
1198    
1199     if (flags & EIO_READDIR_DIRS_FIRST)
1200     {
1201     if (ent->type == EIO_DT_UNKNOWN)
1202     {
1203     if (*name == '.') /* leading dots are likely directories, and, in any case, rare */
1204     ent->score = 98;
1205     else if (!strchr (name, '.')) /* absense of dots indicate likely dirs */
1206 root 1.34 ent->score = len <= 2 ? len + 6 : len <= 4 ? 5 : len <= 7 ? 4 : 1; /* shorter == more likely dir, but avoid too many classes */
1207 root 1.31 }
1208 root 1.33 else if (ent->type == EIO_DT_DIR)
1209 root 1.31 ent->score = 100;
1210     }
1211     }
1212    
1213     namesoffs += len;
1214     ++dentoffs;
1215 root 1.1 }
1216     }
1217 root 1.31 else
1218     req->result = -1;
1219 root 1.1 }
1220    
1221 root 1.23 #if !(_POSIX_MAPPED_FILES && _POSIX_SYNCHRONIZED_IO)
1222 root 1.27 # undef msync
1223 root 1.28 # define msync(a,b,c) ((errno = ENOSYS), -1)
1224 root 1.23 #endif
1225    
1226     int
1227     eio__mtouch (void *mem, size_t len, int flags)
1228     {
1229     intptr_t addr = (intptr_t)mem;
1230     intptr_t end = addr + len;
1231     #ifdef PAGESIZE
1232     const intptr_t page = PAGESIZE;
1233     #else
1234     static intptr_t page;
1235    
1236     if (!page)
1237     page = sysconf (_SC_PAGESIZE);
1238     #endif
1239    
1240     addr &= ~(page - 1); /* assume page size is always a power of two */
1241    
1242     if (addr < end)
1243     if (flags) /* modify */
1244     do { *((volatile sig_atomic_t *)addr) |= 0; } while ((addr += page) < len);
1245     else
1246     do { *((volatile sig_atomic_t *)addr) ; } while ((addr += page) < len);
1247    
1248     return 0;
1249     }
1250    
1251 root 1.1 /*****************************************************************************/
1252    
1253 root 1.6 #define ALLOC(len) \
1254     if (!req->ptr2) \
1255     { \
1256 root 1.14 X_LOCK (wrklock); \
1257 root 1.7 req->flags |= EIO_FLAG_PTR2_FREE; \
1258 root 1.14 X_UNLOCK (wrklock); \
1259 root 1.7 req->ptr2 = malloc (len); \
1260     if (!req->ptr2) \
1261     { \
1262     errno = ENOMEM; \
1263     req->result = -1; \
1264     break; \
1265     } \
1266 root 1.6 }
1267    
1268 root 1.14 X_THREAD_PROC (etp_proc)
1269 root 1.1 {
1270 root 1.14 ETP_REQ *req;
1271 root 1.1 struct timespec ts;
1272 root 1.14 etp_worker *self = (etp_worker *)thr_arg;
1273 root 1.1
1274     /* try to distribute timeouts somewhat randomly */
1275     ts.tv_nsec = ((unsigned long)self & 1023UL) * (1000000000UL / 1024UL);
1276    
1277     for (;;)
1278     {
1279     X_LOCK (reqlock);
1280    
1281     for (;;)
1282     {
1283     self->req = req = reqq_shift (&req_queue);
1284    
1285     if (req)
1286     break;
1287    
1288     ++idle;
1289    
1290 root 1.14 ts.tv_sec = time (0) + IDLE_TIMEOUT;
1291 root 1.1 if (X_COND_TIMEDWAIT (reqwait, reqlock, ts) == ETIMEDOUT)
1292     {
1293     if (idle > max_idle)
1294     {
1295     --idle;
1296     X_UNLOCK (reqlock);
1297 root 1.14 X_LOCK (wrklock);
1298 root 1.1 --started;
1299 root 1.14 X_UNLOCK (wrklock);
1300 root 1.1 goto quit;
1301     }
1302    
1303     /* we are allowed to idle, so do so without any timeout */
1304     X_COND_WAIT (reqwait, reqlock);
1305     }
1306    
1307     --idle;
1308     }
1309    
1310     --nready;
1311    
1312     X_UNLOCK (reqlock);
1313    
1314 root 1.15 if (req->type < 0)
1315     goto quit;
1316 root 1.1
1317     if (!EIO_CANCELLED (req))
1318 root 1.15 ETP_EXECUTE (self, req);
1319 root 1.1
1320     X_LOCK (reslock);
1321    
1322     ++npending;
1323    
1324 root 1.14 if (!reqq_push (&res_queue, req) && want_poll_cb)
1325     want_poll_cb ();
1326 root 1.1
1327     self->req = 0;
1328 root 1.14 etp_worker_clear (self);
1329 root 1.1
1330     X_UNLOCK (reslock);
1331     }
1332    
1333     quit:
1334 root 1.14 X_LOCK (wrklock);
1335     etp_worker_free (self);
1336     X_UNLOCK (wrklock);
1337 root 1.1
1338     return 0;
1339     }
1340    
1341     /*****************************************************************************/
1342    
1343     int eio_init (void (*want_poll)(void), void (*done_poll)(void))
1344     {
1345 root 1.19 return etp_init (want_poll, done_poll);
1346 root 1.1 }
1347    
1348 root 1.6 static void eio_api_destroy (eio_req *req)
1349     {
1350     free (req);
1351     }
1352    
1353     #define REQ(rtype) \
1354     eio_req *req; \
1355     \
1356     req = (eio_req *)calloc (1, sizeof *req); \
1357     if (!req) \
1358     return 0; \
1359     \
1360 root 1.11 req->type = rtype; \
1361     req->pri = pri; \
1362     req->finish = cb; \
1363     req->data = data; \
1364 root 1.6 req->destroy = eio_api_destroy;
1365    
1366     #define SEND eio_submit (req); return req
1367    
1368 root 1.9 #define PATH \
1369     req->flags |= EIO_FLAG_PTR1_FREE; \
1370     req->ptr1 = strdup (path); \
1371     if (!req->ptr1) \
1372     { \
1373     eio_api_destroy (req); \
1374     return 0; \
1375     }
1376    
1377 root 1.15 static void eio_execute (etp_worker *self, eio_req *req)
1378     {
1379     errno = 0;
1380    
1381     switch (req->type)
1382     {
1383     case EIO_READ: ALLOC (req->size);
1384     req->result = req->offs >= 0
1385     ? pread (req->int1, req->ptr2, req->size, req->offs)
1386     : read (req->int1, req->ptr2, req->size); break;
1387     case EIO_WRITE: req->result = req->offs >= 0
1388     ? pwrite (req->int1, req->ptr2, req->size, req->offs)
1389     : write (req->int1, req->ptr2, req->size); break;
1390    
1391     case EIO_READAHEAD: req->result = readahead (req->int1, req->offs, req->size); break;
1392     case EIO_SENDFILE: req->result = eio__sendfile (req->int1, req->int2, req->offs, req->size, self); break;
1393    
1394     case EIO_STAT: ALLOC (sizeof (EIO_STRUCT_STAT));
1395     req->result = stat (req->ptr1, (EIO_STRUCT_STAT *)req->ptr2); break;
1396     case EIO_LSTAT: ALLOC (sizeof (EIO_STRUCT_STAT));
1397     req->result = lstat (req->ptr1, (EIO_STRUCT_STAT *)req->ptr2); break;
1398     case EIO_FSTAT: ALLOC (sizeof (EIO_STRUCT_STAT));
1399     req->result = fstat (req->int1, (EIO_STRUCT_STAT *)req->ptr2); break;
1400    
1401     case EIO_CHOWN: req->result = chown (req->ptr1, req->int2, req->int3); break;
1402     case EIO_FCHOWN: req->result = fchown (req->int1, req->int2, req->int3); break;
1403     case EIO_CHMOD: req->result = chmod (req->ptr1, (mode_t)req->int2); break;
1404     case EIO_FCHMOD: req->result = fchmod (req->int1, (mode_t)req->int2); break;
1405     case EIO_TRUNCATE: req->result = truncate (req->ptr1, req->offs); break;
1406     case EIO_FTRUNCATE: req->result = ftruncate (req->int1, req->offs); break;
1407    
1408     case EIO_OPEN: req->result = open (req->ptr1, req->int1, (mode_t)req->int2); break;
1409     case EIO_CLOSE: req->result = close (req->int1); break;
1410     case EIO_DUP2: req->result = dup2 (req->int1, req->int2); break;
1411     case EIO_UNLINK: req->result = unlink (req->ptr1); break;
1412     case EIO_RMDIR: req->result = rmdir (req->ptr1); break;
1413     case EIO_MKDIR: req->result = mkdir (req->ptr1, (mode_t)req->int2); break;
1414     case EIO_RENAME: req->result = rename (req->ptr1, req->ptr2); break;
1415     case EIO_LINK: req->result = link (req->ptr1, req->ptr2); break;
1416     case EIO_SYMLINK: req->result = symlink (req->ptr1, req->ptr2); break;
1417 root 1.18 case EIO_MKNOD: req->result = mknod (req->ptr1, (mode_t)req->int2, (dev_t)req->int3); break;
1418 root 1.15
1419     case EIO_READLINK: ALLOC (NAME_MAX);
1420     req->result = readlink (req->ptr1, req->ptr2, NAME_MAX); break;
1421    
1422     case EIO_SYNC: req->result = 0; sync (); break;
1423     case EIO_FSYNC: req->result = fsync (req->int1); break;
1424     case EIO_FDATASYNC: req->result = fdatasync (req->int1); break;
1425 root 1.23 case EIO_MSYNC: req->result = msync (req->ptr2, req->size, req->int1); break;
1426     case EIO_MTOUCH: req->result = eio__mtouch (req->ptr2, req->size, req->int1); break;
1427 root 1.27 case EIO_SYNC_FILE_RANGE: req->result = eio__sync_file_range (req->int1, req->offs, req->size, req->int2); break;
1428 root 1.15
1429     case EIO_READDIR: eio__scandir (req, self); break;
1430    
1431     case EIO_BUSY:
1432     #ifdef _WIN32
1433     Sleep (req->nv1 * 1000.);
1434     #else
1435     {
1436     struct timeval tv;
1437    
1438     tv.tv_sec = req->nv1;
1439     tv.tv_usec = (req->nv1 - tv.tv_sec) * 1000000.;
1440    
1441     req->result = select (0, 0, 0, 0, &tv);
1442     }
1443     #endif
1444     break;
1445    
1446     case EIO_UTIME:
1447     case EIO_FUTIME:
1448     {
1449     struct timeval tv[2];
1450     struct timeval *times;
1451    
1452     if (req->nv1 != -1. || req->nv2 != -1.)
1453     {
1454     tv[0].tv_sec = req->nv1;
1455     tv[0].tv_usec = (req->nv1 - tv[0].tv_sec) * 1000000.;
1456     tv[1].tv_sec = req->nv2;
1457     tv[1].tv_usec = (req->nv2 - tv[1].tv_sec) * 1000000.;
1458    
1459     times = tv;
1460     }
1461     else
1462     times = 0;
1463    
1464    
1465     req->result = req->type == EIO_FUTIME
1466     ? futimes (req->int1, times)
1467     : utimes (req->ptr1, times);
1468     }
1469 root 1.25 break;
1470 root 1.15
1471     case EIO_GROUP:
1472 root 1.24 abort (); /* handled in eio_request */
1473    
1474 root 1.15 case EIO_NOP:
1475     req->result = 0;
1476     break;
1477    
1478     case EIO_CUSTOM:
1479 root 1.23 ((void (*)(eio_req *))req->feed) (req);
1480 root 1.15 break;
1481    
1482     default:
1483     req->result = -1;
1484     break;
1485     }
1486    
1487     req->errorno = errno;
1488     }
1489    
1490 root 1.12 #ifndef EIO_NO_WRAPPERS
1491    
1492 root 1.10 eio_req *eio_nop (int pri, eio_cb cb, void *data)
1493 root 1.9 {
1494     REQ (EIO_NOP); SEND;
1495     }
1496    
1497 root 1.10 eio_req *eio_busy (double delay, int pri, eio_cb cb, void *data)
1498 root 1.9 {
1499     REQ (EIO_BUSY); req->nv1 = delay; SEND;
1500     }
1501    
1502 root 1.10 eio_req *eio_sync (int pri, eio_cb cb, void *data)
1503 root 1.9 {
1504     REQ (EIO_SYNC); SEND;
1505     }
1506 root 1.6
1507 root 1.10 eio_req *eio_fsync (int fd, int pri, eio_cb cb, void *data)
1508 root 1.6 {
1509 root 1.9 REQ (EIO_FSYNC); req->int1 = fd; SEND;
1510 root 1.6 }
1511    
1512 root 1.23 eio_req *eio_msync (void *addr, size_t length, int flags, int pri, eio_cb cb, void *data)
1513     {
1514     REQ (EIO_MSYNC); req->ptr2 = addr; req->size = length; req->int1 = flags; SEND;
1515     }
1516    
1517     eio_req *eio_mtouch (void *addr, size_t length, int flags, int pri, eio_cb cb, void *data)
1518     {
1519     REQ (EIO_MTOUCH); req->ptr2 = addr; req->size = length; req->int1 = flags; SEND;
1520     }
1521    
1522 root 1.27 eio_req *eio_sync_file_range (int fd, off_t offset, size_t nbytes, unsigned int flags, int pri, eio_cb cb, void *data)
1523     {
1524     REQ (EIO_SYNC_FILE_RANGE); req->int1 = fd; req->offs = offset; req->size = nbytes; req->int2 = flags; SEND;
1525     }
1526    
1527 root 1.10 eio_req *eio_fdatasync (int fd, int pri, eio_cb cb, void *data)
1528 root 1.6 {
1529 root 1.9 REQ (EIO_FDATASYNC); req->int1 = fd; SEND;
1530     }
1531    
1532 root 1.10 eio_req *eio_close (int fd, int pri, eio_cb cb, void *data)
1533 root 1.9 {
1534     REQ (EIO_CLOSE); req->int1 = fd; SEND;
1535 root 1.6 }
1536    
1537 root 1.10 eio_req *eio_readahead (int fd, off_t offset, size_t length, int pri, eio_cb cb, void *data)
1538 root 1.6 {
1539 root 1.9 REQ (EIO_READAHEAD); req->int1 = fd; req->offs = offset; req->size = length; SEND;
1540 root 1.6 }
1541    
1542 root 1.10 eio_req *eio_read (int fd, void *buf, size_t length, off_t offset, int pri, eio_cb cb, void *data)
1543 root 1.6 {
1544 root 1.10 REQ (EIO_READ); req->int1 = fd; req->offs = offset; req->size = length; req->ptr2 = buf; SEND;
1545 root 1.6 }
1546    
1547 root 1.10 eio_req *eio_write (int fd, void *buf, size_t length, off_t offset, int pri, eio_cb cb, void *data)
1548 root 1.6 {
1549 root 1.10 REQ (EIO_WRITE); req->int1 = fd; req->offs = offset; req->size = length; req->ptr2 = buf; SEND;
1550 root 1.6 }
1551    
1552 root 1.10 eio_req *eio_fstat (int fd, int pri, eio_cb cb, void *data)
1553 root 1.6 {
1554 root 1.9 REQ (EIO_FSTAT); req->int1 = fd; SEND;
1555 root 1.6 }
1556    
1557 root 1.10 eio_req *eio_futime (int fd, double atime, double mtime, int pri, eio_cb cb, void *data)
1558 root 1.6 {
1559 root 1.9 REQ (EIO_FUTIME); req->int1 = fd; req->nv1 = atime; req->nv2 = mtime; SEND;
1560 root 1.6 }
1561    
1562 root 1.10 eio_req *eio_ftruncate (int fd, off_t offset, int pri, eio_cb cb, void *data)
1563 root 1.6 {
1564 root 1.9 REQ (EIO_FTRUNCATE); req->int1 = fd; req->offs = offset; SEND;
1565 root 1.6 }
1566    
1567 root 1.10 eio_req *eio_fchmod (int fd, mode_t mode, int pri, eio_cb cb, void *data)
1568 root 1.6 {
1569 root 1.9 REQ (EIO_FCHMOD); req->int1 = fd; req->int2 = (long)mode; SEND;
1570 root 1.6 }
1571    
1572 root 1.10 eio_req *eio_fchown (int fd, uid_t uid, gid_t gid, int pri, eio_cb cb, void *data)
1573 root 1.6 {
1574 root 1.9 REQ (EIO_FCHOWN); req->int1 = fd; req->int2 = (long)uid; req->int3 = (long)gid; SEND;
1575 root 1.6 }
1576    
1577 root 1.10 eio_req *eio_dup2 (int fd, int fd2, int pri, eio_cb cb, void *data)
1578 root 1.6 {
1579 root 1.9 REQ (EIO_DUP2); req->int1 = fd; req->int2 = fd2; SEND;
1580 root 1.6 }
1581    
1582 root 1.10 eio_req *eio_sendfile (int out_fd, int in_fd, off_t in_offset, size_t length, int pri, eio_cb cb, void *data)
1583 root 1.6 {
1584 root 1.9 REQ (EIO_SENDFILE); req->int1 = out_fd; req->int2 = in_fd; req->offs = in_offset; req->size = length; SEND;
1585 root 1.6 }
1586    
1587 root 1.10 eio_req *eio_open (const char *path, int flags, mode_t mode, int pri, eio_cb cb, void *data)
1588 root 1.6 {
1589 root 1.9 REQ (EIO_OPEN); PATH; req->int1 = flags; req->int2 = (long)mode; SEND;
1590 root 1.6 }
1591    
1592 root 1.10 eio_req *eio_utime (const char *path, double atime, double mtime, int pri, eio_cb cb, void *data)
1593 root 1.6 {
1594 root 1.9 REQ (EIO_UTIME); PATH; req->nv1 = atime; req->nv2 = mtime; SEND;
1595 root 1.6 }
1596    
1597 root 1.10 eio_req *eio_truncate (const char *path, off_t offset, int pri, eio_cb cb, void *data)
1598 root 1.6 {
1599 root 1.9 REQ (EIO_TRUNCATE); PATH; req->offs = offset; SEND;
1600 root 1.6 }
1601    
1602 root 1.10 eio_req *eio_chown (const char *path, uid_t uid, gid_t gid, int pri, eio_cb cb, void *data)
1603 root 1.6 {
1604 root 1.9 REQ (EIO_CHOWN); PATH; req->int2 = (long)uid; req->int3 = (long)gid; SEND;
1605 root 1.6 }
1606    
1607 root 1.10 eio_req *eio_chmod (const char *path, mode_t mode, int pri, eio_cb cb, void *data)
1608 root 1.6 {
1609 root 1.9 REQ (EIO_CHMOD); PATH; req->int2 = (long)mode; SEND;
1610 root 1.6 }
1611    
1612 root 1.10 eio_req *eio_mkdir (const char *path, mode_t mode, int pri, eio_cb cb, void *data)
1613 root 1.6 {
1614 root 1.9 REQ (EIO_MKDIR); PATH; req->int2 = (long)mode; SEND;
1615 root 1.6 }
1616    
1617 root 1.9 static eio_req *
1618 root 1.10 eio__1path (int type, const char *path, int pri, eio_cb cb, void *data)
1619 root 1.6 {
1620 root 1.9 REQ (type); PATH; SEND;
1621 root 1.6 }
1622    
1623 root 1.10 eio_req *eio_readlink (const char *path, int pri, eio_cb cb, void *data)
1624 root 1.6 {
1625 root 1.10 return eio__1path (EIO_READLINK, path, pri, cb, data);
1626 root 1.6 }
1627    
1628 root 1.10 eio_req *eio_stat (const char *path, int pri, eio_cb cb, void *data)
1629 root 1.6 {
1630 root 1.10 return eio__1path (EIO_STAT, path, pri, cb, data);
1631 root 1.6 }
1632    
1633 root 1.10 eio_req *eio_lstat (const char *path, int pri, eio_cb cb, void *data)
1634 root 1.6 {
1635 root 1.10 return eio__1path (EIO_LSTAT, path, pri, cb, data);
1636 root 1.6 }
1637    
1638 root 1.10 eio_req *eio_unlink (const char *path, int pri, eio_cb cb, void *data)
1639 root 1.6 {
1640 root 1.10 return eio__1path (EIO_UNLINK, path, pri, cb, data);
1641 root 1.6 }
1642    
1643 root 1.10 eio_req *eio_rmdir (const char *path, int pri, eio_cb cb, void *data)
1644 root 1.6 {
1645 root 1.10 return eio__1path (EIO_RMDIR, path, pri, cb, data);
1646 root 1.6 }
1647    
1648 root 1.31 eio_req *eio_readdir (const char *path, int flags, int pri, eio_cb cb, void *data)
1649 root 1.1 {
1650 root 1.31 REQ (EIO_READDIR); PATH; req->int1 = flags; SEND;
1651 root 1.1 }
1652    
1653 root 1.10 eio_req *eio_mknod (const char *path, mode_t mode, dev_t dev, int pri, eio_cb cb, void *data)
1654 root 1.1 {
1655 root 1.18 REQ (EIO_MKNOD); PATH; req->int2 = (long)mode; req->int3 = (long)dev; SEND;
1656 root 1.1 }
1657    
1658 root 1.9 static eio_req *
1659 root 1.10 eio__2path (int type, const char *path, const char *new_path, int pri, eio_cb cb, void *data)
1660 root 1.1 {
1661 root 1.9 REQ (type); PATH;
1662 root 1.1
1663 root 1.9 req->flags |= EIO_FLAG_PTR2_FREE;
1664     req->ptr2 = strdup (new_path);
1665     if (!req->ptr2)
1666     {
1667     eio_api_destroy (req);
1668     return 0;
1669     }
1670 root 1.1
1671 root 1.9 SEND;
1672 root 1.1 }
1673    
1674 root 1.10 eio_req *eio_link (const char *path, const char *new_path, int pri, eio_cb cb, void *data)
1675 root 1.1 {
1676 root 1.10 return eio__2path (EIO_LINK, path, new_path, pri, cb, data);
1677 root 1.1 }
1678    
1679 root 1.10 eio_req *eio_symlink (const char *path, const char *new_path, int pri, eio_cb cb, void *data)
1680 root 1.1 {
1681 root 1.10 return eio__2path (EIO_SYMLINK, path, new_path, pri, cb, data);
1682 root 1.1 }
1683    
1684 root 1.10 eio_req *eio_rename (const char *path, const char *new_path, int pri, eio_cb cb, void *data)
1685 root 1.1 {
1686 root 1.10 return eio__2path (EIO_RENAME, path, new_path, pri, cb, data);
1687     }
1688    
1689 root 1.15 eio_req *eio_custom (eio_cb execute, int pri, eio_cb cb, void *data)
1690     {
1691 root 1.23 REQ (EIO_CUSTOM); req->feed = (void (*)(eio_req *))execute; SEND;
1692 root 1.15 }
1693    
1694 root 1.12 #endif
1695    
1696 root 1.10 eio_req *eio_grp (eio_cb cb, void *data)
1697     {
1698     const int pri = EIO_PRI_MAX;
1699    
1700     REQ (EIO_GROUP); SEND;
1701 root 1.1 }
1702    
1703 root 1.9 #undef REQ
1704     #undef PATH
1705     #undef SEND
1706 root 1.1
1707 root 1.9 /*****************************************************************************/
1708     /* grp functions */
1709 root 1.1
1710 root 1.2 void eio_grp_feed (eio_req *grp, void (*feed)(eio_req *req), int limit)
1711 root 1.1 {
1712     grp->int2 = limit;
1713     grp->feed = feed;
1714 root 1.2
1715     grp_try_feed (grp);
1716     }
1717    
1718     void eio_grp_limit (eio_req *grp, int limit)
1719     {
1720     grp->int2 = limit;
1721    
1722     grp_try_feed (grp);
1723 root 1.1 }
1724    
1725     void eio_grp_add (eio_req *grp, eio_req *req)
1726     {
1727     assert (("cannot add requests to IO::AIO::GRP after the group finished", grp->int1 != 2));
1728    
1729 root 1.26 grp->flags |= EIO_FLAG_GROUPADD;
1730    
1731 root 1.1 ++grp->size;
1732     req->grp = grp;
1733    
1734     req->grp_prev = 0;
1735     req->grp_next = grp->grp_first;
1736    
1737     if (grp->grp_first)
1738     grp->grp_first->grp_prev = req;
1739    
1740     grp->grp_first = req;
1741     }
1742    
1743 root 1.9 /*****************************************************************************/
1744     /* misc garbage */
1745    
1746     ssize_t eio_sendfile_sync (int ofd, int ifd, off_t offset, size_t count)
1747     {
1748 root 1.14 etp_worker wrk;
1749 root 1.9
1750     wrk.dbuf = 0;
1751    
1752     eio__sendfile (ofd, ifd, offset, count, &wrk);
1753    
1754     if (wrk.dbuf)
1755     free (wrk.dbuf);
1756     }
1757 root 1.1