s3: Survive an idle child that was killed
[obnox/samba-ctdb.git] / source3 / modules / vfs_aio_fork.c
1 /*
2  * Simulate the Posix AIO using mmap/fork
3  *
4  * Copyright (C) Volker Lendecke 2008
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  */
20
21 #include "includes.h"
22
23 struct mmap_area {
24         size_t size;
25         volatile void *ptr;
26 };
27
28 static int mmap_area_destructor(struct mmap_area *area)
29 {
30         munmap((void *)area->ptr, area->size);
31         return 0;
32 }
33
34 static struct mmap_area *mmap_area_init(TALLOC_CTX *mem_ctx, size_t size)
35 {
36         struct mmap_area *result;
37         int fd;
38
39         result = talloc(mem_ctx, struct mmap_area);
40         if (result == NULL) {
41                 DEBUG(0, ("talloc failed\n"));
42                 goto fail;
43         }
44
45         fd = open("/dev/zero", O_RDWR);
46         if (fd == -1) {
47                 DEBUG(3, ("open(\"/dev/zero\") failed: %s\n",
48                           strerror(errno)));
49                 goto fail;
50         }
51
52         result->ptr = mmap(NULL, size, PROT_READ|PROT_WRITE,
53                            MAP_SHARED|MAP_FILE, fd, 0);
54         if (result->ptr == MAP_FAILED) {
55                 DEBUG(1, ("mmap failed: %s\n", strerror(errno)));
56                 goto fail;
57         }
58
59         close(fd);
60
61         result->size = size;
62         talloc_set_destructor(result, mmap_area_destructor);
63
64         return result;
65
66 fail:
67         TALLOC_FREE(result);
68         return NULL;
69 }
70
71 struct rw_cmd {
72         size_t n;
73         SMB_OFF_T offset;
74         bool read_cmd;
75 };
76
77 struct rw_ret {
78         ssize_t size;
79         int ret_errno;
80 };
81
82 struct aio_child_list;
83
84 struct aio_child {
85         struct aio_child *prev, *next;
86         struct aio_child_list *list;
87         SMB_STRUCT_AIOCB *aiocb;
88         pid_t pid;
89         int sockfd;
90         struct fd_event *sock_event;
91         struct rw_ret retval;
92         struct mmap_area *map;  /* ==NULL means write request */
93         bool dont_delete;       /* Marked as in use since last cleanup */
94         bool cancelled;
95         bool read_cmd;
96 };
97
98 struct aio_child_list {
99         struct aio_child *children;
100         struct timed_event *cleanup_event;
101 };
102
103 static void free_aio_children(void **p)
104 {
105         TALLOC_FREE(*p);
106 }
107
108 static ssize_t read_fd(int fd, void *ptr, size_t nbytes, int *recvfd)
109 {
110         struct msghdr msg;
111         struct iovec iov[1];
112         ssize_t n;
113 #ifndef HAVE_MSGHDR_MSG_CONTROL
114         int newfd;
115 #endif
116
117 #ifdef  HAVE_MSGHDR_MSG_CONTROL
118         union {
119           struct cmsghdr        cm;
120           char                          control[CMSG_SPACE(sizeof(int))];
121         } control_un;
122         struct cmsghdr  *cmptr;
123
124         msg.msg_control = control_un.control;
125         msg.msg_controllen = sizeof(control_un.control);
126 #else
127 #if HAVE_MSGHDR_MSG_ACCTRIGHTS
128         msg.msg_accrights = (caddr_t) &newfd;
129         msg.msg_accrightslen = sizeof(int);
130 #else
131 #error Can not pass file descriptors
132 #endif
133 #endif
134
135         msg.msg_name = NULL;
136         msg.msg_namelen = 0;
137
138         iov[0].iov_base = ptr;
139         iov[0].iov_len = nbytes;
140         msg.msg_iov = iov;
141         msg.msg_iovlen = 1;
142
143         if ( (n = recvmsg(fd, &msg, 0)) <= 0) {
144                 return(n);
145         }
146
147 #ifdef  HAVE_MSGHDR_MSG_CONTROL
148         if ((cmptr = CMSG_FIRSTHDR(&msg)) != NULL
149             && cmptr->cmsg_len == CMSG_LEN(sizeof(int))) {
150                 if (cmptr->cmsg_level != SOL_SOCKET) {
151                         DEBUG(10, ("control level != SOL_SOCKET"));
152                         errno = EINVAL;
153                         return -1;
154                 }
155                 if (cmptr->cmsg_type != SCM_RIGHTS) {
156                         DEBUG(10, ("control type != SCM_RIGHTS"));
157                         errno = EINVAL;
158                         return -1;
159                 }
160                 *recvfd = *((int *) CMSG_DATA(cmptr));
161         } else {
162                 *recvfd = -1;           /* descriptor was not passed */
163         }
164 #else
165         if (msg.msg_accrightslen == sizeof(int)) {
166                 *recvfd = newfd;
167         }
168         else {
169                 *recvfd = -1;           /* descriptor was not passed */
170         }
171 #endif
172
173         return(n);
174 }
175
176 static ssize_t write_fd(int fd, void *ptr, size_t nbytes, int sendfd)
177 {
178         struct msghdr   msg;
179         struct iovec    iov[1];
180
181 #ifdef  HAVE_MSGHDR_MSG_CONTROL
182         union {
183                 struct cmsghdr  cm;
184                 char control[CMSG_SPACE(sizeof(int))];
185         } control_un;
186         struct cmsghdr  *cmptr;
187
188         ZERO_STRUCT(msg);
189         ZERO_STRUCT(control_un);
190
191         msg.msg_control = control_un.control;
192         msg.msg_controllen = sizeof(control_un.control);
193
194         cmptr = CMSG_FIRSTHDR(&msg);
195         cmptr->cmsg_len = CMSG_LEN(sizeof(int));
196         cmptr->cmsg_level = SOL_SOCKET;
197         cmptr->cmsg_type = SCM_RIGHTS;
198         *((int *) CMSG_DATA(cmptr)) = sendfd;
199 #else
200         ZERO_STRUCT(msg);
201         msg.msg_accrights = (caddr_t) &sendfd;
202         msg.msg_accrightslen = sizeof(int);
203 #endif
204
205         msg.msg_name = NULL;
206         msg.msg_namelen = 0;
207
208         ZERO_STRUCT(iov);
209         iov[0].iov_base = ptr;
210         iov[0].iov_len = nbytes;
211         msg.msg_iov = iov;
212         msg.msg_iovlen = 1;
213
214         return (sendmsg(fd, &msg, 0));
215 }
216
217 static void aio_child_cleanup(struct event_context *event_ctx,
218                               struct timed_event *te,
219                               struct timeval now,
220                               void *private_data)
221 {
222         struct aio_child_list *list = talloc_get_type_abort(
223                 private_data, struct aio_child_list);
224         struct aio_child *child, *next;
225
226         TALLOC_FREE(list->cleanup_event);
227
228         for (child = list->children; child != NULL; child = next) {
229                 next = child->next;
230
231                 if (child->aiocb != NULL) {
232                         DEBUG(10, ("child %d currently active\n",
233                                    (int)child->pid));
234                         continue;
235                 }
236
237                 if (child->dont_delete) {
238                         DEBUG(10, ("Child %d was active since last cleanup\n",
239                                    (int)child->pid));
240                         child->dont_delete = false;
241                         continue;
242                 }
243
244                 DEBUG(10, ("Child %d idle for more than 30 seconds, "
245                            "deleting\n", (int)child->pid));
246
247                 TALLOC_FREE(child);
248                 child = next;
249         }
250
251         if (list->children != NULL) {
252                 /*
253                  * Re-schedule the next cleanup round
254                  */
255                 list->cleanup_event = event_add_timed(smbd_event_context(), list,
256                                                       timeval_add(&now, 30, 0),
257                                                       aio_child_cleanup, list);
258
259         }
260 }
261
262 static struct aio_child_list *init_aio_children(struct vfs_handle_struct *handle)
263 {
264         struct aio_child_list *data = NULL;
265
266         if (SMB_VFS_HANDLE_TEST_DATA(handle)) {
267                 SMB_VFS_HANDLE_GET_DATA(handle, data, struct aio_child_list,
268                                         return NULL);
269         }
270
271         if (data == NULL) {
272                 data = TALLOC_ZERO_P(NULL, struct aio_child_list);
273                 if (data == NULL) {
274                         return NULL;
275                 }
276         }
277
278         /*
279          * Regardless of whether the child_list had been around or not, make
280          * sure that we have a cleanup timed event. This timed event will
281          * delete itself when it finds that no children are around anymore.
282          */
283
284         if (data->cleanup_event == NULL) {
285                 data->cleanup_event = event_add_timed(smbd_event_context(), data,
286                                                       timeval_current_ofs(30, 0),
287                                                       aio_child_cleanup, data);
288                 if (data->cleanup_event == NULL) {
289                         TALLOC_FREE(data);
290                         return NULL;
291                 }
292         }
293
294         if (!SMB_VFS_HANDLE_TEST_DATA(handle)) {
295                 SMB_VFS_HANDLE_SET_DATA(handle, data, free_aio_children,
296                                         struct aio_child_list, return False);
297         }
298
299         return data;
300 }
301
302 static void aio_child_loop(int sockfd, struct mmap_area *map)
303 {
304         while (true) {
305                 int fd = -1;
306                 ssize_t ret;
307                 struct rw_cmd cmd_struct;
308                 struct rw_ret ret_struct;
309
310                 ret = read_fd(sockfd, &cmd_struct, sizeof(cmd_struct), &fd);
311                 if (ret != sizeof(cmd_struct)) {
312                         DEBUG(10, ("read_fd returned %d: %s\n", (int)ret,
313                                    strerror(errno)));
314                         exit(1);
315                 }
316
317                 DEBUG(10, ("aio_child_loop: %s %d bytes at %d from fd %d\n",
318                            cmd_struct.read_cmd ? "read" : "write",
319                            (int)cmd_struct.n, (int)cmd_struct.offset, fd));
320
321 #ifdef ENABLE_BUILD_FARM_HACKS
322                 {
323                         /*
324                          * In the build farm, we want erratic behaviour for
325                          * async I/O times
326                          */
327                         uint8_t randval;
328                         unsigned msecs;
329                         /*
330                          * use generate_random_buffer, we just forked from a
331                          * common parent state
332                          */
333                         generate_random_buffer(&randval, sizeof(randval));
334                         msecs = randval + 20;
335                         DEBUG(10, ("delaying for %u msecs\n", msecs));
336                         smb_msleep(msecs);
337                 }
338 #endif
339
340
341                 ZERO_STRUCT(ret_struct);
342
343                 if (cmd_struct.read_cmd) {
344                         ret_struct.size = sys_pread(
345                                 fd, (void *)map->ptr, cmd_struct.n,
346                                 cmd_struct.offset);
347                 }
348                 else {
349                         ret_struct.size = sys_pwrite(
350                                 fd, (void *)map->ptr, cmd_struct.n,
351                                 cmd_struct.offset);
352                 }
353
354                 DEBUG(10, ("aio_child_loop: syscall returned %d\n",
355                            (int)ret_struct.size));
356
357                 if (ret_struct.size == -1) {
358                         ret_struct.ret_errno = errno;
359                 }
360
361                 /*
362                  * Close the fd before telling our parent we're done. The
363                  * parent might close and re-open the file very quickly, and
364                  * with system-level share modes (GPFS) we would get an
365                  * unjustified SHARING_VIOLATION.
366                  */
367                 close(fd);
368
369                 ret = write_data(sockfd, (char *)&ret_struct,
370                                  sizeof(ret_struct));
371                 if (ret != sizeof(ret_struct)) {
372                         DEBUG(10, ("could not write ret_struct: %s\n",
373                                    strerror(errno)));
374                         exit(2);
375                 }
376         }
377 }
378
379 static void handle_aio_completion(struct event_context *event_ctx,
380                                   struct fd_event *event, uint16 flags,
381                                   void *p)
382 {
383         struct aio_child *child = (struct aio_child *)p;
384         uint16 mid;
385
386         DEBUG(10, ("handle_aio_completion called with flags=%d\n", flags));
387
388         if ((flags & EVENT_FD_READ) == 0) {
389                 return;
390         }
391
392         if (!NT_STATUS_IS_OK(read_data(child->sockfd,
393                                        (char *)&child->retval,
394                                        sizeof(child->retval)))) {
395                 DEBUG(0, ("aio child %d died\n", (int)child->pid));
396                 child->retval.size = -1;
397                 child->retval.ret_errno = EIO;
398         }
399
400         if (child->aiocb == NULL) {
401                 DEBUG(1, ("Inactive child died\n"));
402                 TALLOC_FREE(child);
403                 return;
404         }
405
406         if (child->cancelled) {
407                 child->aiocb = NULL;
408                 child->cancelled = false;
409                 return;
410         }
411
412         if (child->read_cmd && (child->retval.size > 0)) {
413                 SMB_ASSERT(child->retval.size <= child->aiocb->aio_nbytes);
414                 memcpy((void *)child->aiocb->aio_buf, (void *)child->map->ptr,
415                        child->retval.size);
416         }
417
418         mid = child->aiocb->aio_sigevent.sigev_value.sival_int;
419
420         DEBUG(10, ("mid %d finished\n", (int)mid));
421
422         smbd_aio_complete_mid(mid);
423 }
424
425 static int aio_child_destructor(struct aio_child *child)
426 {
427
428         char c=0;
429
430         SMB_ASSERT((child->aiocb == NULL) || child->cancelled);
431
432         DEBUG(10, ("aio_child_destructor: removing child %d on fd %d\n",
433                         child->pid, child->sockfd));
434
435         /*
436          * closing the sockfd makes the child not return from recvmsg() on RHEL
437          * 5.5 so instead force the child to exit by writing bad data to it
438          */
439         write(child->sockfd, &c, sizeof(c));
440         close(child->sockfd);
441         DLIST_REMOVE(child->list->children, child);
442         return 0;
443 }
444
445 /*
446  * We have to close all fd's in open files, we might incorrectly hold a system
447  * level share mode on a file.
448  */
449
450 static struct files_struct *close_fsp_fd(struct files_struct *fsp,
451                                          void *private_data)
452 {
453         if ((fsp->fh != NULL) && (fsp->fh->fd != -1)) {
454                 close(fsp->fh->fd);
455                 fsp->fh->fd = -1;
456         }
457         return NULL;
458 }
459
460 static NTSTATUS create_aio_child(struct aio_child_list *children,
461                                  size_t map_size,
462                                  struct aio_child **presult)
463 {
464         struct aio_child *result;
465         int fdpair[2];
466         NTSTATUS status;
467
468         fdpair[0] = fdpair[1] = -1;
469
470         result = TALLOC_ZERO_P(children, struct aio_child);
471         NT_STATUS_HAVE_NO_MEMORY(result);
472
473         if (socketpair(AF_UNIX, SOCK_STREAM, 0, fdpair) == -1) {
474                 status = map_nt_error_from_unix(errno);
475                 DEBUG(10, ("socketpair() failed: %s\n", strerror(errno)));
476                 goto fail;
477         }
478
479         DEBUG(10, ("fdpair = %d/%d\n", fdpair[0], fdpair[1]));
480
481         result->map = mmap_area_init(result, map_size);
482         if (result->map == NULL) {
483                 status = map_nt_error_from_unix(errno);
484                 DEBUG(0, ("Could not create mmap area\n"));
485                 goto fail;
486         }
487
488         result->pid = sys_fork();
489         if (result->pid == -1) {
490                 status = map_nt_error_from_unix(errno);
491                 DEBUG(0, ("fork failed: %s\n", strerror(errno)));
492                 goto fail;
493         }
494
495         if (result->pid == 0) {
496                 close(fdpair[0]);
497                 result->sockfd = fdpair[1];
498                 files_forall(close_fsp_fd, NULL);
499                 aio_child_loop(result->sockfd, result->map);
500         }
501
502         DEBUG(10, ("Child %d created with sockfd %d\n",
503                         result->pid, fdpair[0]));
504
505         result->sockfd = fdpair[0];
506         close(fdpair[1]);
507
508         result->sock_event = event_add_fd(smbd_event_context(), result,
509                                           result->sockfd, EVENT_FD_READ,
510                                           handle_aio_completion,
511                                           result);
512         if (result->sock_event == NULL) {
513                 status = NT_STATUS_NO_MEMORY;
514                 DEBUG(0, ("event_add_fd failed\n"));
515                 goto fail;
516         }
517
518         result->list = children;
519         DLIST_ADD(children->children, result);
520
521         talloc_set_destructor(result, aio_child_destructor);
522
523         *presult = result;
524
525         return NT_STATUS_OK;
526
527  fail:
528         if (fdpair[0] != -1) close(fdpair[0]);
529         if (fdpair[1] != -1) close(fdpair[1]);
530         TALLOC_FREE(result);
531
532         return status;
533 }
534
535 static NTSTATUS get_idle_child(struct vfs_handle_struct *handle,
536                                struct aio_child **pchild)
537 {
538         struct aio_child_list *children;
539         struct aio_child *child;
540         NTSTATUS status;
541
542         children = init_aio_children(handle);
543         if (children == NULL) {
544                 return NT_STATUS_NO_MEMORY;
545         }
546
547         for (child = children->children; child != NULL; child = child->next) {
548                 if (child->aiocb == NULL) {
549                         /* idle */
550                         break;
551                 }
552         }
553
554         if (child == NULL) {
555                 DEBUG(10, ("no idle child found, creating new one\n"));
556
557                 status = create_aio_child(children, 128*1024, &child);
558                 if (!NT_STATUS_IS_OK(status)) {
559                         DEBUG(10, ("create_aio_child failed: %s\n",
560                                    nt_errstr(status)));
561                         return status;
562                 }
563         }
564
565         child->dont_delete = true;
566
567         *pchild = child;
568         return NT_STATUS_OK;
569 }
570
571 static int aio_fork_read(struct vfs_handle_struct *handle,
572                          struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
573 {
574         struct aio_child *child;
575         struct rw_cmd cmd;
576         ssize_t ret;
577         NTSTATUS status;
578
579         if (aiocb->aio_nbytes > 128*1024) {
580                 /* TODO: support variable buffers */
581                 errno = EINVAL;
582                 return -1;
583         }
584
585         status = get_idle_child(handle, &child);
586         if (!NT_STATUS_IS_OK(status)) {
587                 DEBUG(10, ("Could not get an idle child\n"));
588                 return -1;
589         }
590
591         child->read_cmd = true;
592         child->aiocb = aiocb;
593         child->retval.ret_errno = EINPROGRESS;
594
595         ZERO_STRUCT(cmd);
596         cmd.n = aiocb->aio_nbytes;
597         cmd.offset = aiocb->aio_offset;
598         cmd.read_cmd = child->read_cmd;
599
600         DEBUG(10, ("sending fd %d to child %d\n", fsp->fh->fd,
601                    (int)child->pid));
602
603         ret = write_fd(child->sockfd, &cmd, sizeof(cmd), fsp->fh->fd);
604         if (ret == -1) {
605                 DEBUG(10, ("write_fd failed: %s\n", strerror(errno)));
606                 return -1;
607         }
608
609         return 0;
610 }
611
612 static int aio_fork_write(struct vfs_handle_struct *handle,
613                           struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
614 {
615         struct aio_child *child;
616         struct rw_cmd cmd;
617         ssize_t ret;
618         NTSTATUS status;
619
620         if (aiocb->aio_nbytes > 128*1024) {
621                 /* TODO: support variable buffers */
622                 errno = EINVAL;
623                 return -1;
624         }
625
626         status = get_idle_child(handle, &child);
627         if (!NT_STATUS_IS_OK(status)) {
628                 DEBUG(10, ("Could not get an idle child\n"));
629                 return -1;
630         }
631
632         child->read_cmd = false;
633         child->aiocb = aiocb;
634         child->retval.ret_errno = EINPROGRESS;
635
636         memcpy((void *)child->map->ptr, (void *)aiocb->aio_buf,
637                aiocb->aio_nbytes);
638
639         ZERO_STRUCT(cmd);
640         cmd.n = aiocb->aio_nbytes;
641         cmd.offset = aiocb->aio_offset;
642         cmd.read_cmd = child->read_cmd;
643
644         DEBUG(10, ("sending fd %d to child %d\n", fsp->fh->fd,
645                    (int)child->pid));
646
647         ret = write_fd(child->sockfd, &cmd, sizeof(cmd), fsp->fh->fd);
648         if (ret == -1) {
649                 DEBUG(10, ("write_fd failed: %s\n", strerror(errno)));
650                 return -1;
651         }
652
653         return 0;
654 }
655
656 static struct aio_child *aio_fork_find_child(struct vfs_handle_struct *handle,
657                                              SMB_STRUCT_AIOCB *aiocb)
658 {
659         struct aio_child_list *children;
660         struct aio_child *child;
661
662         children = init_aio_children(handle);
663         if (children == NULL) {
664                 return NULL;
665         }
666
667         for (child = children->children; child != NULL; child = child->next) {
668                 if (child->aiocb == aiocb) {
669                         return child;
670                 }
671         }
672
673         return NULL;
674 }
675
676 static ssize_t aio_fork_return_fn(struct vfs_handle_struct *handle,
677                                   struct files_struct *fsp,
678                                   SMB_STRUCT_AIOCB *aiocb)
679 {
680         struct aio_child *child = aio_fork_find_child(handle, aiocb);
681
682         if (child == NULL) {
683                 errno = EINVAL;
684                 DEBUG(0, ("returning EINVAL\n"));
685                 return -1;
686         }
687
688         child->aiocb = NULL;
689
690         if (child->retval.size == -1) {
691                 errno = child->retval.ret_errno;
692         }
693
694         return child->retval.size;
695 }
696
697 static int aio_fork_cancel(struct vfs_handle_struct *handle,
698                            struct files_struct *fsp,
699                            SMB_STRUCT_AIOCB *aiocb)
700 {
701         struct aio_child_list *children;
702         struct aio_child *child;
703
704         children = init_aio_children(handle);
705         if (children == NULL) {
706                 errno = EINVAL;
707                 return -1;
708         }
709
710         for (child = children->children; child != NULL; child = child->next) {
711                 if (child->aiocb == NULL) {
712                         continue;
713                 }
714                 if (child->aiocb->aio_fildes != fsp->fh->fd) {
715                         continue;
716                 }
717                 if ((aiocb != NULL) && (child->aiocb != aiocb)) {
718                         continue;
719                 }
720
721                 /*
722                  * We let the child do its job, but we discard the result when
723                  * it's finished.
724                  */
725
726                 child->cancelled = true;
727         }
728
729         return AIO_CANCELED;
730 }
731
732 static int aio_fork_error_fn(struct vfs_handle_struct *handle,
733                              struct files_struct *fsp,
734                              SMB_STRUCT_AIOCB *aiocb)
735 {
736         struct aio_child *child = aio_fork_find_child(handle, aiocb);
737
738         if (child == NULL) {
739                 errno = EINVAL;
740                 return -1;
741         }
742
743         return child->retval.ret_errno;
744 }
745
746 /* VFS operations structure */
747
748 static vfs_op_tuple aio_fork_ops[] = {
749         {SMB_VFS_OP(aio_fork_read),     SMB_VFS_OP_AIO_READ,
750          SMB_VFS_LAYER_TRANSPARENT},
751         {SMB_VFS_OP(aio_fork_write),    SMB_VFS_OP_AIO_WRITE,
752          SMB_VFS_LAYER_TRANSPARENT},
753         {SMB_VFS_OP(aio_fork_return_fn), SMB_VFS_OP_AIO_RETURN,
754          SMB_VFS_LAYER_TRANSPARENT},
755         {SMB_VFS_OP(aio_fork_cancel),   SMB_VFS_OP_AIO_CANCEL,
756          SMB_VFS_LAYER_TRANSPARENT},
757         {SMB_VFS_OP(aio_fork_error_fn), SMB_VFS_OP_AIO_ERROR,
758          SMB_VFS_LAYER_TRANSPARENT},
759         {SMB_VFS_OP(NULL),              SMB_VFS_OP_NOOP,
760          SMB_VFS_LAYER_NOOP}
761 };
762
763 NTSTATUS vfs_aio_fork_init(void);
764 NTSTATUS vfs_aio_fork_init(void)
765 {
766         return smb_register_vfs(SMB_VFS_INTERFACE_VERSION,
767                                 "aio_fork", aio_fork_ops);
768 }