Merge branch 'master' of git://git.samba.org/samba
[samba.git] / source3 / smbd / aio.c
1 /*
2    Unix SMB/Netbios implementation.
3    Version 3.0
4    async_io read handling using POSIX async io.
5    Copyright (C) Jeremy Allison 2005.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "includes.h"
22 #include "smbd/globals.h"
23
24 #if defined(WITH_AIO)
25
26 /* The signal we'll use to signify aio done. */
27 #ifndef RT_SIGNAL_AIO
28 #ifndef SIGRTMIN
29 #define SIGRTMIN        NSIG
30 #endif
31 #define RT_SIGNAL_AIO   (SIGRTMIN+3)
32 #endif
33
34 #ifndef HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIVAL_PTR
35 #ifdef HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIGVAL_PTR
36 #define sival_int       sigval_int
37 #define sival_ptr       sigval_ptr
38 #endif
39 #endif
40
41 /****************************************************************************
42  The buffer we keep around whilst an aio request is in process.
43 *****************************************************************************/
44
45 struct aio_extra {
46         struct aio_extra *next, *prev;
47         SMB_STRUCT_AIOCB acb;
48         files_struct *fsp;
49         struct smb_request *req;
50         char *outbuf;
51         int (*handle_completion)(struct aio_extra *ex);
52 };
53
54 static int handle_aio_read_complete(struct aio_extra *aio_ex);
55 static int handle_aio_write_complete(struct aio_extra *aio_ex);
56
57 static int aio_extra_destructor(struct aio_extra *aio_ex)
58 {
59         DLIST_REMOVE(aio_list_head, aio_ex);
60         return 0;
61 }
62
63 /****************************************************************************
64  Create the extended aio struct we must keep around for the lifetime
65  of the aio call.
66 *****************************************************************************/
67
68 static struct aio_extra *create_aio_extra(files_struct *fsp, size_t buflen)
69 {
70         struct aio_extra *aio_ex = TALLOC_ZERO_P(NULL, struct aio_extra);
71
72         if (!aio_ex) {
73                 return NULL;
74         }
75
76         /* The output buffer stored in the aio_ex is the start of
77            the smb return buffer. The buffer used in the acb
78            is the start of the reply data portion of that buffer. */
79
80         aio_ex->outbuf = TALLOC_ARRAY(aio_ex, char, buflen);
81         if (!aio_ex->outbuf) {
82                 TALLOC_FREE(aio_ex);
83                 return NULL;
84         }
85         DLIST_ADD(aio_list_head, aio_ex);
86         talloc_set_destructor(aio_ex, aio_extra_destructor);
87         aio_ex->fsp = fsp;
88         return aio_ex;
89 }
90
91 /****************************************************************************
92  Given the mid find the extended aio struct containing it.
93 *****************************************************************************/
94
95 static struct aio_extra *find_aio_ex(uint16 mid)
96 {
97         struct aio_extra *p;
98
99         for( p = aio_list_head; p; p = p->next) {
100                 if (mid == p->req->mid) {
101                         return p;
102                 }
103         }
104         return NULL;
105 }
106
107 /****************************************************************************
108  We can have these many aio buffers in flight.
109 *****************************************************************************/
110
111 /****************************************************************************
112  Set up an aio request from a SMBreadX call.
113 *****************************************************************************/
114
115 bool schedule_aio_read_and_X(connection_struct *conn,
116                              struct smb_request *req,
117                              files_struct *fsp, SMB_OFF_T startpos,
118                              size_t smb_maxcnt)
119 {
120         struct aio_extra *aio_ex;
121         SMB_STRUCT_AIOCB *a;
122         size_t bufsize;
123         size_t min_aio_read_size = lp_aio_read_size(SNUM(conn));
124         int ret;
125
126         if (fsp->base_fsp != NULL) {
127                 /* No AIO on streams yet */
128                 DEBUG(10, ("AIO on streams not yet supported\n"));
129                 return false;
130         }
131
132         if ((!min_aio_read_size || (smb_maxcnt < min_aio_read_size))
133             && !SMB_VFS_AIO_FORCE(fsp)) {
134                 /* Too small a read for aio request. */
135                 DEBUG(10,("schedule_aio_read_and_X: read size (%u) too small "
136                           "for minimum aio_read of %u\n",
137                           (unsigned int)smb_maxcnt,
138                           (unsigned int)min_aio_read_size ));
139                 return False;
140         }
141
142         /* Only do this on non-chained and non-chaining reads not using the
143          * write cache. */
144         if (req_is_in_chain(req) || (lp_write_cache_size(SNUM(conn)) != 0)) {
145                 return False;
146         }
147
148         if (outstanding_aio_calls >= aio_pending_size) {
149                 DEBUG(10,("schedule_aio_read_and_X: Already have %d aio "
150                           "activities outstanding.\n",
151                           outstanding_aio_calls ));
152                 return False;
153         }
154
155         /* The following is safe from integer wrap as we've already checked
156            smb_maxcnt is 128k or less. Wct is 12 for read replies */
157
158         bufsize = smb_size + 12 * 2 + smb_maxcnt;
159
160         if ((aio_ex = create_aio_extra(fsp, bufsize)) == NULL) {
161                 DEBUG(10,("schedule_aio_read_and_X: malloc fail.\n"));
162                 return False;
163         }
164         aio_ex->handle_completion = handle_aio_read_complete;
165
166         construct_reply_common_req(req, aio_ex->outbuf);
167         srv_set_message(aio_ex->outbuf, 12, 0, True);
168         SCVAL(aio_ex->outbuf,smb_vwv0,0xFF); /* Never a chained reply. */
169
170         a = &aio_ex->acb;
171
172         /* Now set up the aio record for the read call. */
173
174         a->aio_fildes = fsp->fh->fd;
175         a->aio_buf = smb_buf(aio_ex->outbuf);
176         a->aio_nbytes = smb_maxcnt;
177         a->aio_offset = startpos;
178         a->aio_sigevent.sigev_notify = SIGEV_SIGNAL;
179         a->aio_sigevent.sigev_signo  = RT_SIGNAL_AIO;
180         a->aio_sigevent.sigev_value.sival_int = req->mid;
181
182         become_root();
183         ret = SMB_VFS_AIO_READ(fsp, a);
184         unbecome_root();
185
186         if (ret == -1) {
187                 DEBUG(0,("schedule_aio_read_and_X: aio_read failed. "
188                          "Error %s\n", strerror(errno) ));
189                 TALLOC_FREE(aio_ex);
190                 return False;
191         }
192
193         aio_ex->req = talloc_move(aio_ex, &req);
194
195         DEBUG(10,("schedule_aio_read_and_X: scheduled aio_read for file %s, "
196                   "offset %.0f, len = %u (mid = %u)\n",
197                   fsp->fsp_name, (double)startpos, (unsigned int)smb_maxcnt,
198                   (unsigned int)aio_ex->req->mid ));
199
200         outstanding_aio_calls++;
201         return True;
202 }
203
204 /****************************************************************************
205  Set up an aio request from a SMBwriteX call.
206 *****************************************************************************/
207
208 bool schedule_aio_write_and_X(connection_struct *conn,
209                               struct smb_request *req,
210                               files_struct *fsp, char *data,
211                               SMB_OFF_T startpos,
212                               size_t numtowrite)
213 {
214         struct aio_extra *aio_ex;
215         SMB_STRUCT_AIOCB *a;
216         size_t bufsize;
217         bool write_through = BITSETW(req->vwv+7,0);
218         size_t min_aio_write_size = lp_aio_write_size(SNUM(conn));
219         int ret;
220
221         if (fsp->base_fsp != NULL) {
222                 /* No AIO on streams yet */
223                 DEBUG(10, ("AIO on streams not yet supported\n"));
224                 return false;
225         }
226
227         if ((!min_aio_write_size || (numtowrite < min_aio_write_size))
228             && !SMB_VFS_AIO_FORCE(fsp)) {
229                 /* Too small a write for aio request. */
230                 DEBUG(10,("schedule_aio_write_and_X: write size (%u) too "
231                           "small for minimum aio_write of %u\n",
232                           (unsigned int)numtowrite,
233                           (unsigned int)min_aio_write_size ));
234                 return False;
235         }
236
237         /* Only do this on non-chained and non-chaining reads not using the
238          * write cache. */
239         if (req_is_in_chain(req) || (lp_write_cache_size(SNUM(conn)) != 0)) {
240                 return False;
241         }
242
243         if (outstanding_aio_calls >= aio_pending_size) {
244                 DEBUG(3,("schedule_aio_write_and_X: Already have %d aio "
245                          "activities outstanding.\n",
246                           outstanding_aio_calls ));
247                 DEBUG(10,("schedule_aio_write_and_X: failed to schedule "
248                           "aio_write for file %s, offset %.0f, len = %u "
249                           "(mid = %u)\n",
250                           fsp->fsp_name, (double)startpos,
251                           (unsigned int)numtowrite,
252                           (unsigned int)req->mid ));
253                 return False;
254         }
255
256         bufsize = smb_size + 6*2;
257
258         if (!(aio_ex = create_aio_extra(fsp, bufsize))) {
259                 DEBUG(0,("schedule_aio_write_and_X: malloc fail.\n"));
260                 return False;
261         }
262         aio_ex->handle_completion = handle_aio_write_complete;
263
264         construct_reply_common_req(req, aio_ex->outbuf);
265         srv_set_message(aio_ex->outbuf, 6, 0, True);
266         SCVAL(aio_ex->outbuf,smb_vwv0,0xFF); /* Never a chained reply. */
267
268         a = &aio_ex->acb;
269
270         /* Now set up the aio record for the write call. */
271
272         a->aio_fildes = fsp->fh->fd;
273         a->aio_buf = data;
274         a->aio_nbytes = numtowrite;
275         a->aio_offset = startpos;
276         a->aio_sigevent.sigev_notify = SIGEV_SIGNAL;
277         a->aio_sigevent.sigev_signo  = RT_SIGNAL_AIO;
278         a->aio_sigevent.sigev_value.sival_int = req->mid;
279
280         become_root();
281         ret = SMB_VFS_AIO_WRITE(fsp, a);
282         unbecome_root();
283
284         if (ret == -1) {
285                 DEBUG(3,("schedule_aio_wrote_and_X: aio_write failed. "
286                          "Error %s\n", strerror(errno) ));
287                 TALLOC_FREE(aio_ex);
288                 return False;
289         }
290
291         aio_ex->req = talloc_move(aio_ex, &req);
292
293         /* This should actually be improved to span the write. */
294         contend_level2_oplocks_begin(fsp, LEVEL2_CONTEND_WRITE);
295         contend_level2_oplocks_end(fsp, LEVEL2_CONTEND_WRITE);
296
297         if (!write_through && !lp_syncalways(SNUM(fsp->conn))
298             && fsp->aio_write_behind) {
299                 /* Lie to the client and immediately claim we finished the
300                  * write. */
301                 SSVAL(aio_ex->outbuf,smb_vwv2,numtowrite);
302                 SSVAL(aio_ex->outbuf,smb_vwv4,(numtowrite>>16)&1);
303                 show_msg(aio_ex->outbuf);
304                 if (!srv_send_smb(smbd_server_fd(),aio_ex->outbuf,
305                                 true, aio_ex->req->seqnum+1,
306                                 IS_CONN_ENCRYPTED(fsp->conn),
307                                 &req->pcd)) {
308                         exit_server_cleanly("handle_aio_write: srv_send_smb "
309                                             "failed.");
310                 }
311                 DEBUG(10,("schedule_aio_write_and_X: scheduled aio_write "
312                           "behind for file %s\n", fsp->fsp_name ));
313         }
314         outstanding_aio_calls++;
315
316         DEBUG(10,("schedule_aio_write_and_X: scheduled aio_write for file "
317                   "%s, offset %.0f, len = %u (mid = %u) "
318                   "outstanding_aio_calls = %d\n",
319                   fsp->fsp_name, (double)startpos, (unsigned int)numtowrite,
320                   (unsigned int)aio_ex->req->mid, outstanding_aio_calls ));
321
322         return True;
323 }
324
325
326 /****************************************************************************
327  Complete the read and return the data or error back to the client.
328  Returns errno or zero if all ok.
329 *****************************************************************************/
330
331 static int handle_aio_read_complete(struct aio_extra *aio_ex)
332 {
333         int ret = 0;
334         int outsize;
335         char *outbuf = aio_ex->outbuf;
336         char *data = smb_buf(outbuf);
337         ssize_t nread = SMB_VFS_AIO_RETURN(aio_ex->fsp,&aio_ex->acb);
338
339         if (nread < 0) {
340                 /* We're relying here on the fact that if the fd is
341                    closed then the aio will complete and aio_return
342                    will return an error. Hopefully this is
343                    true.... JRA. */
344
345                 /* If errno is ECANCELED then don't return anything to the
346                  * client. */
347                 if (errno == ECANCELED) {
348                         return 0;
349                 }
350
351                 DEBUG( 3,( "handle_aio_read_complete: file %s nread == -1. "
352                            "Error = %s\n",
353                            aio_ex->fsp->fsp_name, strerror(errno) ));
354
355                 ret = errno;
356                 ERROR_NT(map_nt_error_from_unix(ret));
357                 outsize = srv_set_message(outbuf,0,0,true);
358         } else {
359                 outsize = srv_set_message(outbuf,12,nread,False);
360                 SSVAL(outbuf,smb_vwv2,0xFFFF); /* Remaining - must be * -1. */
361                 SSVAL(outbuf,smb_vwv5,nread);
362                 SSVAL(outbuf,smb_vwv6,smb_offset(data,outbuf));
363                 SSVAL(outbuf,smb_vwv7,((nread >> 16) & 1));
364                 SSVAL(smb_buf(outbuf),-2,nread);
365
366                 aio_ex->fsp->fh->pos = aio_ex->acb.aio_offset + nread;
367                 aio_ex->fsp->fh->position_information = aio_ex->fsp->fh->pos;
368
369                 DEBUG( 3, ( "handle_aio_read_complete file %s max=%d "
370                             "nread=%d\n",
371                             aio_ex->fsp->fsp_name,
372                             (int)aio_ex->acb.aio_nbytes, (int)nread ) );
373
374         }
375         smb_setlen(outbuf,outsize - 4);
376         show_msg(outbuf);
377         if (!srv_send_smb(smbd_server_fd(),outbuf,
378                         true, aio_ex->req->seqnum+1,
379                         IS_CONN_ENCRYPTED(aio_ex->fsp->conn), NULL)) {
380                 exit_server_cleanly("handle_aio_read_complete: srv_send_smb "
381                                     "failed.");
382         }
383
384         DEBUG(10,("handle_aio_read_complete: scheduled aio_read completed "
385                   "for file %s, offset %.0f, len = %u\n",
386                   aio_ex->fsp->fsp_name, (double)aio_ex->acb.aio_offset,
387                   (unsigned int)nread ));
388
389         return ret;
390 }
391
392 /****************************************************************************
393  Complete the write and return the data or error back to the client.
394  Returns errno or zero if all ok.
395 *****************************************************************************/
396
397 static int handle_aio_write_complete(struct aio_extra *aio_ex)
398 {
399         int ret = 0;
400         files_struct *fsp = aio_ex->fsp;
401         char *outbuf = aio_ex->outbuf;
402         ssize_t numtowrite = aio_ex->acb.aio_nbytes;
403         ssize_t nwritten = SMB_VFS_AIO_RETURN(fsp,&aio_ex->acb);
404
405         if (fsp->aio_write_behind) {
406                 if (nwritten != numtowrite) {
407                         if (nwritten == -1) {
408                                 DEBUG(5,("handle_aio_write_complete: "
409                                          "aio_write_behind failed ! File %s "
410                                          "is corrupt ! Error %s\n",
411                                          fsp->fsp_name, strerror(errno) ));
412                                 ret = errno;
413                         } else {
414                                 DEBUG(0,("handle_aio_write_complete: "
415                                          "aio_write_behind failed ! File %s "
416                                          "is corrupt ! Wanted %u bytes but "
417                                          "only wrote %d\n", fsp->fsp_name,
418                                          (unsigned int)numtowrite,
419                                          (int)nwritten ));
420                                 ret = EIO;
421                         }
422                 } else {
423                         DEBUG(10,("handle_aio_write_complete: "
424                                   "aio_write_behind completed for file %s\n",
425                                   fsp->fsp_name ));
426                 }
427                 return 0;
428         }
429
430         /* We don't need outsize or set_message here as we've already set the
431            fixed size length when we set up the aio call. */
432
433         if(nwritten == -1) {
434                 DEBUG( 3,( "handle_aio_write: file %s wanted %u bytes. "
435                            "nwritten == %d. Error = %s\n",
436                            fsp->fsp_name, (unsigned int)numtowrite,
437                            (int)nwritten, strerror(errno) ));
438
439                 /* If errno is ECANCELED then don't return anything to the
440                  * client. */
441                 if (errno == ECANCELED) {
442                         return 0;
443                 }
444
445                 ret = errno;
446                 ERROR_BOTH(map_nt_error_from_unix(ret), ERRHRD, ERRdiskfull);
447                 srv_set_message(outbuf,0,0,true);
448         } else {
449                 bool write_through = BITSETW(aio_ex->req->vwv+7,0);
450                 NTSTATUS status;
451
452                 SSVAL(outbuf,smb_vwv2,nwritten);
453                 SSVAL(outbuf,smb_vwv4,(nwritten>>16)&1);
454                 if (nwritten < (ssize_t)numtowrite) {
455                         SCVAL(outbuf,smb_rcls,ERRHRD);
456                         SSVAL(outbuf,smb_err,ERRdiskfull);
457                 }
458
459                 DEBUG(3,("handle_aio_write: fnum=%d num=%d wrote=%d\n",
460                          fsp->fnum, (int)numtowrite, (int)nwritten));
461                 status = sync_file(fsp->conn,fsp, write_through);
462                 if (!NT_STATUS_IS_OK(status)) {
463                         ret = errno;
464                         ERROR_BOTH(map_nt_error_from_unix(ret),
465                                    ERRHRD, ERRdiskfull);
466                         srv_set_message(outbuf,0,0,true);
467                         DEBUG(5,("handle_aio_write: sync_file for %s returned %s\n",
468                                 fsp->fsp_name, nt_errstr(status) ));
469                 }
470
471                 aio_ex->fsp->fh->pos = aio_ex->acb.aio_offset + nwritten;
472         }
473
474         show_msg(outbuf);
475         if (!srv_send_smb(smbd_server_fd(),outbuf,
476                           true, aio_ex->req->seqnum+1,
477                           IS_CONN_ENCRYPTED(fsp->conn),
478                           NULL)) {
479                 exit_server_cleanly("handle_aio_write: srv_send_smb failed.");
480         }
481
482         DEBUG(10,("handle_aio_write_complete: scheduled aio_write completed "
483                   "for file %s, offset %.0f, requested %u, written = %u\n",
484                   fsp->fsp_name, (double)aio_ex->acb.aio_offset,
485                   (unsigned int)numtowrite, (unsigned int)nwritten ));
486
487         return ret;
488 }
489
490 /****************************************************************************
491  Handle any aio completion. Returns True if finished (and sets *perr if err
492  was non-zero), False if not.
493 *****************************************************************************/
494
495 static bool handle_aio_completed(struct aio_extra *aio_ex, int *perr)
496 {
497         int err;
498
499         if(!aio_ex) {
500                 DEBUG(3, ("handle_aio_completed: Non-existing aio_ex passed\n"));
501                 return false;
502         }
503
504         /* Ensure the operation has really completed. */
505         if (SMB_VFS_AIO_ERROR(aio_ex->fsp, &aio_ex->acb) == EINPROGRESS) {
506                 DEBUG(10,( "handle_aio_completed: operation mid %u still in "
507                            "process for file %s\n",
508                            aio_ex->req->mid, aio_ex->fsp->fsp_name ));
509                 return False;
510         }
511
512         err = aio_ex->handle_completion(aio_ex);
513         if (err) {
514                 *perr = err; /* Only save non-zero errors. */
515         }
516
517         return True;
518 }
519
520 /****************************************************************************
521  Handle any aio completion inline.
522  Returns non-zero errno if fail or zero if all ok.
523 *****************************************************************************/
524
525 void smbd_aio_complete_mid(unsigned int mid)
526 {
527         files_struct *fsp = NULL;
528         struct aio_extra *aio_ex = find_aio_ex(mid);
529         int ret = 0;
530
531         DEBUG(10,("smbd_aio_complete_mid: mid[%u]\n", mid));
532
533         if (!aio_ex) {
534                 DEBUG(3,("smbd_aio_complete_mid: Can't find record to "
535                          "match mid %u.\n", mid));
536                 return;
537         }
538
539         fsp = aio_ex->fsp;
540         if (fsp == NULL) {
541                 /* file was closed whilst I/O was outstanding. Just
542                  * ignore. */
543                 DEBUG( 3,( "smbd_aio_complete_mid: file closed whilst "
544                            "aio outstanding (mid[%u]).\n", mid));
545                 return;
546         }
547
548         if (!handle_aio_completed(aio_ex, &ret)) {
549                 return;
550         }
551
552         TALLOC_FREE(aio_ex);
553 }
554
555 static void smbd_aio_signal_handler(struct tevent_context *ev_ctx,
556                                     struct tevent_signal *se,
557                                     int signum, int count,
558                                     void *_info, void *private_data)
559 {
560         siginfo_t *info = (siginfo_t *)_info;
561         unsigned int mid = (unsigned int)info->si_value.sival_int;
562
563         smbd_aio_complete_mid(mid);
564 }
565
566 /****************************************************************************
567  We're doing write behind and the client closed the file. Wait up to 30
568  seconds (my arbitrary choice) for the aio to complete. Return 0 if all writes
569  completed, errno to return if not.
570 *****************************************************************************/
571
572 #define SMB_TIME_FOR_AIO_COMPLETE_WAIT 29
573
574 int wait_for_aio_completion(files_struct *fsp)
575 {
576         struct aio_extra *aio_ex;
577         const SMB_STRUCT_AIOCB **aiocb_list;
578         int aio_completion_count = 0;
579         time_t start_time = time(NULL);
580         int seconds_left;
581
582         for (seconds_left = SMB_TIME_FOR_AIO_COMPLETE_WAIT;
583              seconds_left >= 0;) {
584                 int err = 0;
585                 int i;
586                 struct timespec ts;
587
588                 aio_completion_count = 0;
589                 for( aio_ex = aio_list_head; aio_ex; aio_ex = aio_ex->next) {
590                         if (aio_ex->fsp == fsp) {
591                                 aio_completion_count++;
592                         }
593                 }
594
595                 if (!aio_completion_count) {
596                         return 0;
597                 }
598
599                 DEBUG(3,("wait_for_aio_completion: waiting for %d aio events "
600                          "to complete.\n", aio_completion_count ));
601
602                 aiocb_list = SMB_MALLOC_ARRAY(const SMB_STRUCT_AIOCB *,
603                                               aio_completion_count);
604                 if (!aiocb_list) {
605                         return ENOMEM;
606                 }
607
608                 for( i = 0, aio_ex = aio_list_head;
609                      aio_ex;
610                      aio_ex = aio_ex->next) {
611                         if (aio_ex->fsp == fsp) {
612                                 aiocb_list[i++] = &aio_ex->acb;
613                         }
614                 }
615
616                 /* Now wait up to seconds_left for completion. */
617                 ts.tv_sec = seconds_left;
618                 ts.tv_nsec = 0;
619
620                 DEBUG(10,("wait_for_aio_completion: %d events, doing a wait "
621                           "of %d seconds.\n",
622                           aio_completion_count, seconds_left ));
623
624                 err = SMB_VFS_AIO_SUSPEND(fsp, aiocb_list,
625                                           aio_completion_count, &ts);
626
627                 DEBUG(10,("wait_for_aio_completion: returned err = %d, "
628                           "errno = %s\n", err, strerror(errno) ));
629
630                 if (err == -1 && errno == EAGAIN) {
631                         DEBUG(0,("wait_for_aio_completion: aio_suspend timed "
632                                  "out waiting for %d events after a wait of "
633                                  "%d seconds\n", aio_completion_count,
634                                  seconds_left));
635                         /* Timeout. */
636                         cancel_aio_by_fsp(fsp);
637                         SAFE_FREE(aiocb_list);
638                         return EIO;
639                 }
640
641                 /* One or more events might have completed - process them if
642                  * so. */
643                 for( i = 0; i < aio_completion_count; i++) {
644                         uint16 mid = aiocb_list[i]->aio_sigevent.sigev_value.sival_int;
645
646                         aio_ex = find_aio_ex(mid);
647
648                         if (!aio_ex) {
649                                 DEBUG(0, ("wait_for_aio_completion: mid %u "
650                                           "doesn't match an aio record\n",
651                                           (unsigned int)mid ));
652                                 continue;
653                         }
654
655                         if (!handle_aio_completed(aio_ex, &err)) {
656                                 continue;
657                         }
658                         TALLOC_FREE(aio_ex);
659                 }
660
661                 SAFE_FREE(aiocb_list);
662                 seconds_left = SMB_TIME_FOR_AIO_COMPLETE_WAIT
663                         - (time(NULL) - start_time);
664         }
665
666         /* We timed out - we don't know why. Return ret if already an error,
667          * else EIO. */
668         DEBUG(10,("wait_for_aio_completion: aio_suspend timed out waiting "
669                   "for %d events\n",
670                   aio_completion_count));
671
672         return EIO;
673 }
674
675 /****************************************************************************
676  Cancel any outstanding aio requests. The client doesn't care about the reply.
677 *****************************************************************************/
678
679 void cancel_aio_by_fsp(files_struct *fsp)
680 {
681         struct aio_extra *aio_ex;
682
683         for( aio_ex = aio_list_head; aio_ex; aio_ex = aio_ex->next) {
684                 if (aio_ex->fsp == fsp) {
685                         /* Don't delete the aio_extra record as we may have
686                            completed and don't yet know it. Just do the
687                            aio_cancel call and return. */
688                         SMB_VFS_AIO_CANCEL(fsp, &aio_ex->acb);
689                         aio_ex->fsp = NULL; /* fsp will be closed when we
690                                              * return. */
691                 }
692         }
693 }
694
695 /****************************************************************************
696  Initialize the signal handler for aio read/write.
697 *****************************************************************************/
698
699 void initialize_async_io_handler(void)
700 {
701         aio_signal_event = tevent_add_signal(smbd_event_context(),
702                                              smbd_event_context(),
703                                              RT_SIGNAL_AIO, SA_SIGINFO,
704                                              smbd_aio_signal_handler,
705                                              NULL);
706         if (!aio_signal_event) {
707                 exit_server("Failed to setup RT_SIGNAL_AIO handler");
708         }
709
710         /* tevent supports 100 signal with SA_SIGINFO */
711         aio_pending_size = 100;
712 }
713
714 #else
715 void initialize_async_io_handler(void)
716 {
717 }
718
719 bool schedule_aio_read_and_X(connection_struct *conn,
720                              struct smb_request *req,
721                              files_struct *fsp, SMB_OFF_T startpos,
722                              size_t smb_maxcnt)
723 {
724         return False;
725 }
726
727 bool schedule_aio_write_and_X(connection_struct *conn,
728                               struct smb_request *req,
729                               files_struct *fsp, char *data,
730                               SMB_OFF_T startpos,
731                               size_t numtowrite)
732 {
733         return False;
734 }
735
736 void cancel_aio_by_fsp(files_struct *fsp)
737 {
738 }
739
740 int wait_for_aio_completion(files_struct *fsp)
741 {
742         return ENOSYS;
743 }
744
745 void smbd_aio_complete_mid(unsigned int mid);
746
747 #endif