vfs catia: Fix the double translation that was happening with createfile and open.
[samba.git] / source3 / smbd / vfs.c
1 /*
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    VFS initialisation and support functions
5    Copyright (C) Tim Potter 1999
6    Copyright (C) Alexander Bokovoy 2002
7    Copyright (C) James Peach 2006
8    Copyright (C) Volker Lendecke 2009
9
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 3 of the License, or
13    (at your option) any later version.
14
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
23    This work was sponsored by Optifacio Software Services, Inc.
24 */
25
26 #include "includes.h"
27 #include "smbd/globals.h"
28
29 #undef DBGC_CLASS
30 #define DBGC_CLASS DBGC_VFS
31
32 static_decl_vfs;
33
34 struct vfs_init_function_entry {
35         char *name;
36         struct vfs_init_function_entry *prev, *next;
37         const struct vfs_fn_pointers *fns;
38 };
39
40 /****************************************************************************
41     maintain the list of available backends
42 ****************************************************************************/
43
44 static struct vfs_init_function_entry *vfs_find_backend_entry(const char *name)
45 {
46         struct vfs_init_function_entry *entry = backends;
47
48         DEBUG(10, ("vfs_find_backend_entry called for %s\n", name));
49
50         while(entry) {
51                 if (strcmp(entry->name, name)==0) return entry;
52                 entry = entry->next;
53         }
54
55         return NULL;
56 }
57
58 NTSTATUS smb_register_vfs(int version, const char *name,
59                           const struct vfs_fn_pointers *fns)
60 {
61         struct vfs_init_function_entry *entry = backends;
62
63         if ((version != SMB_VFS_INTERFACE_VERSION)) {
64                 DEBUG(0, ("Failed to register vfs module.\n"
65                           "The module was compiled against SMB_VFS_INTERFACE_VERSION %d,\n"
66                           "current SMB_VFS_INTERFACE_VERSION is %d.\n"
67                           "Please recompile against the current Samba Version!\n",  
68                           version, SMB_VFS_INTERFACE_VERSION));
69                 return NT_STATUS_OBJECT_TYPE_MISMATCH;
70         }
71
72         if (!name || !name[0]) {
73                 DEBUG(0,("smb_register_vfs() called with NULL pointer or empty name!\n"));
74                 return NT_STATUS_INVALID_PARAMETER;
75         }
76
77         if (vfs_find_backend_entry(name)) {
78                 DEBUG(0,("VFS module %s already loaded!\n", name));
79                 return NT_STATUS_OBJECT_NAME_COLLISION;
80         }
81
82         entry = SMB_XMALLOC_P(struct vfs_init_function_entry);
83         entry->name = smb_xstrdup(name);
84         entry->fns = fns;
85
86         DLIST_ADD(backends, entry);
87         DEBUG(5, ("Successfully added vfs backend '%s'\n", name));
88         return NT_STATUS_OK;
89 }
90
91 /****************************************************************************
92   initialise default vfs hooks
93 ****************************************************************************/
94
95 static void vfs_init_default(connection_struct *conn)
96 {
97         DEBUG(3, ("Initialising default vfs hooks\n"));
98         vfs_init_custom(conn, DEFAULT_VFS_MODULE_NAME);
99 }
100
101 /****************************************************************************
102   initialise custom vfs hooks
103  ****************************************************************************/
104
105 bool vfs_init_custom(connection_struct *conn, const char *vfs_object)
106 {
107         char *module_path = NULL;
108         char *module_name = NULL;
109         char *module_param = NULL, *p;
110         vfs_handle_struct *handle;
111         const struct vfs_init_function_entry *entry;
112
113         if (!conn||!vfs_object||!vfs_object[0]) {
114                 DEBUG(0,("vfs_init_custon() called with NULL pointer or emtpy vfs_object!\n"));
115                 return False;
116         }
117
118         if(!backends) {
119                 static_init_vfs;
120         }
121
122         DEBUG(3, ("Initialising custom vfs hooks from [%s]\n", vfs_object));
123
124         module_path = smb_xstrdup(vfs_object);
125
126         p = strchr_m(module_path, ':');
127
128         if (p) {
129                 *p = 0;
130                 module_param = p+1;
131                 trim_char(module_param, ' ', ' ');
132         }
133
134         trim_char(module_path, ' ', ' ');
135
136         module_name = smb_xstrdup(module_path);
137
138         if ((module_name[0] == '/') &&
139             (strcmp(module_path, DEFAULT_VFS_MODULE_NAME) != 0)) {
140
141                 /*
142                  * Extract the module name from the path. Just use the base
143                  * name of the last path component.
144                  */
145
146                 SAFE_FREE(module_name);
147                 module_name = smb_xstrdup(strrchr_m(module_path, '/')+1);
148
149                 p = strchr_m(module_name, '.');
150
151                 if (p != NULL) {
152                         *p = '\0';
153                 }
154         }
155
156         /* First, try to load the module with the new module system */
157         entry = vfs_find_backend_entry(module_name);
158         if (!entry) {
159                 NTSTATUS status;
160
161                 DEBUG(5, ("vfs module [%s] not loaded - trying to load...\n",
162                           vfs_object));
163
164                 status = smb_probe_module("vfs", module_path);
165                 if (!NT_STATUS_IS_OK(status)) {
166                         DEBUG(0, ("error probing vfs module '%s': %s\n",
167                                   module_path, nt_errstr(status)));
168                         goto fail;
169                 }
170
171                 entry = vfs_find_backend_entry(module_name);
172                 if (!entry) {
173                         DEBUG(0,("Can't find a vfs module [%s]\n",vfs_object));
174                         goto fail;
175                 }
176         }
177
178         DEBUGADD(5,("Successfully loaded vfs module [%s] with the new modules system\n", vfs_object));
179
180         handle = TALLOC_ZERO_P(conn, vfs_handle_struct);
181         if (!handle) {
182                 DEBUG(0,("TALLOC_ZERO() failed!\n"));
183                 goto fail;
184         }
185         handle->conn = conn;
186         handle->fns = entry->fns;
187         if (module_param) {
188                 handle->param = talloc_strdup(conn, module_param);
189         }
190         DLIST_ADD(conn->vfs_handles, handle);
191
192         SAFE_FREE(module_path);
193         SAFE_FREE(module_name);
194         return True;
195
196  fail:
197         SAFE_FREE(module_path);
198         SAFE_FREE(module_name);
199         return False;
200 }
201
202 /*****************************************************************
203  Allow VFS modules to extend files_struct with VFS-specific state.
204  This will be ok for small numbers of extensions, but might need to
205  be refactored if it becomes more widely used.
206 ******************************************************************/
207
208 #define EXT_DATA_AREA(e) ((uint8 *)(e) + sizeof(struct vfs_fsp_data))
209
210 void *vfs_add_fsp_extension_notype(vfs_handle_struct *handle,
211                                    files_struct *fsp, size_t ext_size,
212                                    void (*destroy_fn)(void *p_data))
213 {
214         struct vfs_fsp_data *ext;
215         void * ext_data;
216
217         /* Prevent VFS modules adding multiple extensions. */
218         if ((ext_data = vfs_fetch_fsp_extension(handle, fsp))) {
219                 return ext_data;
220         }
221
222         ext = (struct vfs_fsp_data *)TALLOC_ZERO(
223                 handle->conn, sizeof(struct vfs_fsp_data) + ext_size);
224         if (ext == NULL) {
225                 return NULL;
226         }
227
228         ext->owner = handle;
229         ext->next = fsp->vfs_extension;
230         ext->destroy = destroy_fn;
231         fsp->vfs_extension = ext;
232         return EXT_DATA_AREA(ext);
233 }
234
235 void vfs_remove_fsp_extension(vfs_handle_struct *handle, files_struct *fsp)
236 {
237         struct vfs_fsp_data *curr;
238         struct vfs_fsp_data *prev;
239
240         for (curr = fsp->vfs_extension, prev = NULL;
241              curr;
242              prev = curr, curr = curr->next) {
243                 if (curr->owner == handle) {
244                     if (prev) {
245                             prev->next = curr->next;
246                     } else {
247                             fsp->vfs_extension = curr->next;
248                     }
249                     if (curr->destroy) {
250                             curr->destroy(EXT_DATA_AREA(curr));
251                     }
252                     TALLOC_FREE(curr);
253                     return;
254                 }
255         }
256 }
257
258 void *vfs_memctx_fsp_extension(vfs_handle_struct *handle, files_struct *fsp)
259 {
260         struct vfs_fsp_data *head;
261
262         for (head = fsp->vfs_extension; head; head = head->next) {
263                 if (head->owner == handle) {
264                         return head;
265                 }
266         }
267
268         return NULL;
269 }
270
271 void *vfs_fetch_fsp_extension(vfs_handle_struct *handle, files_struct *fsp)
272 {
273         struct vfs_fsp_data *head;
274
275         head = (struct vfs_fsp_data *)vfs_memctx_fsp_extension(handle, fsp);
276         if (head != NULL) {
277                 return EXT_DATA_AREA(head);
278         }
279
280         return NULL;
281 }
282
283 #undef EXT_DATA_AREA
284
285 /*****************************************************************
286  Generic VFS init.
287 ******************************************************************/
288
289 bool smbd_vfs_init(connection_struct *conn)
290 {
291         const char **vfs_objects;
292         unsigned int i = 0;
293         int j = 0;
294
295         /* Normal share - initialise with disk access functions */
296         vfs_init_default(conn);
297         vfs_objects = lp_vfs_objects(SNUM(conn));
298
299         /* Override VFS functions if 'vfs object' was not specified*/
300         if (!vfs_objects || !vfs_objects[0])
301                 return True;
302
303         for (i=0; vfs_objects[i] ;) {
304                 i++;
305         }
306
307         for (j=i-1; j >= 0; j--) {
308                 if (!vfs_init_custom(conn, vfs_objects[j])) {
309                         DEBUG(0, ("smbd_vfs_init: vfs_init_custom failed for %s\n", vfs_objects[j]));
310                         return False;
311                 }
312         }
313         return True;
314 }
315
316 /*******************************************************************
317  Check if a file exists in the vfs.
318 ********************************************************************/
319
320 NTSTATUS vfs_file_exist(connection_struct *conn, struct smb_filename *smb_fname)
321 {
322         /* Only return OK if stat was successful and S_ISREG */
323         if ((SMB_VFS_STAT(conn, smb_fname) != -1) &&
324             S_ISREG(smb_fname->st.st_ex_mode)) {
325                 return NT_STATUS_OK;
326         }
327
328         return NT_STATUS_OBJECT_NAME_NOT_FOUND;
329 }
330
331 /****************************************************************************
332  Read data from fsp on the vfs. (note: EINTR re-read differs from vfs_write_data)
333 ****************************************************************************/
334
335 ssize_t vfs_read_data(files_struct *fsp, char *buf, size_t byte_count)
336 {
337         size_t total=0;
338
339         while (total < byte_count)
340         {
341                 ssize_t ret = SMB_VFS_READ(fsp, buf + total,
342                                            byte_count - total);
343
344                 if (ret == 0) return total;
345                 if (ret == -1) {
346                         if (errno == EINTR)
347                                 continue;
348                         else
349                                 return -1;
350                 }
351                 total += ret;
352         }
353         return (ssize_t)total;
354 }
355
356 ssize_t vfs_pread_data(files_struct *fsp, char *buf,
357                 size_t byte_count, SMB_OFF_T offset)
358 {
359         size_t total=0;
360
361         while (total < byte_count)
362         {
363                 ssize_t ret = SMB_VFS_PREAD(fsp, buf + total,
364                                         byte_count - total, offset + total);
365
366                 if (ret == 0) return total;
367                 if (ret == -1) {
368                         if (errno == EINTR)
369                                 continue;
370                         else
371                                 return -1;
372                 }
373                 total += ret;
374         }
375         return (ssize_t)total;
376 }
377
378 /****************************************************************************
379  Write data to a fd on the vfs.
380 ****************************************************************************/
381
382 ssize_t vfs_write_data(struct smb_request *req,
383                         files_struct *fsp,
384                         const char *buffer,
385                         size_t N)
386 {
387         size_t total=0;
388         ssize_t ret;
389
390         if (req && req->unread_bytes) {
391                 SMB_ASSERT(req->unread_bytes == N);
392                 /* VFS_RECVFILE must drain the socket
393                  * before returning. */
394                 req->unread_bytes = 0;
395                 return SMB_VFS_RECVFILE(smbd_server_fd(),
396                                         fsp,
397                                         (SMB_OFF_T)-1,
398                                         N);
399         }
400
401         while (total < N) {
402                 ret = SMB_VFS_WRITE(fsp, buffer + total, N - total);
403
404                 if (ret == -1)
405                         return -1;
406                 if (ret == 0)
407                         return total;
408
409                 total += ret;
410         }
411         return (ssize_t)total;
412 }
413
414 ssize_t vfs_pwrite_data(struct smb_request *req,
415                         files_struct *fsp,
416                         const char *buffer,
417                         size_t N,
418                         SMB_OFF_T offset)
419 {
420         size_t total=0;
421         ssize_t ret;
422
423         if (req && req->unread_bytes) {
424                 SMB_ASSERT(req->unread_bytes == N);
425                 /* VFS_RECVFILE must drain the socket
426                  * before returning. */
427                 req->unread_bytes = 0;
428                 return SMB_VFS_RECVFILE(smbd_server_fd(),
429                                         fsp,
430                                         offset,
431                                         N);
432         }
433
434         while (total < N) {
435                 ret = SMB_VFS_PWRITE(fsp, buffer + total, N - total,
436                                      offset + total);
437
438                 if (ret == -1)
439                         return -1;
440                 if (ret == 0)
441                         return total;
442
443                 total += ret;
444         }
445         return (ssize_t)total;
446 }
447 /****************************************************************************
448  An allocate file space call using the vfs interface.
449  Allocates space for a file from a filedescriptor.
450  Returns 0 on success, -1 on failure.
451 ****************************************************************************/
452
453 int vfs_allocate_file_space(files_struct *fsp, uint64_t len)
454 {
455         int ret;
456         SMB_STRUCT_STAT st;
457         connection_struct *conn = fsp->conn;
458         uint64_t space_avail;
459         uint64_t bsize,dfree,dsize;
460
461         /*
462          * Actually try and commit the space on disk....
463          */
464
465         DEBUG(10,("vfs_allocate_file_space: file %s, len %.0f\n",
466                   fsp_str_dbg(fsp), (double)len));
467
468         if (((SMB_OFF_T)len) < 0) {
469                 DEBUG(0,("vfs_allocate_file_space: %s negative len "
470                          "requested.\n", fsp_str_dbg(fsp)));
471                 errno = EINVAL;
472                 return -1;
473         }
474
475         ret = SMB_VFS_FSTAT(fsp, &st);
476         if (ret == -1)
477                 return ret;
478
479         if (len == (uint64_t)st.st_ex_size)
480                 return 0;
481
482         if (len < (uint64_t)st.st_ex_size) {
483                 /* Shrink - use ftruncate. */
484
485                 DEBUG(10,("vfs_allocate_file_space: file %s, shrink. Current "
486                           "size %.0f\n", fsp_str_dbg(fsp),
487                           (double)st.st_ex_size));
488
489                 contend_level2_oplocks_begin(fsp, LEVEL2_CONTEND_ALLOC_SHRINK);
490
491                 flush_write_cache(fsp, SIZECHANGE_FLUSH);
492                 if ((ret = SMB_VFS_FTRUNCATE(fsp, (SMB_OFF_T)len)) != -1) {
493                         set_filelen_write_cache(fsp, len);
494                 }
495
496                 contend_level2_oplocks_end(fsp, LEVEL2_CONTEND_ALLOC_SHRINK);
497
498                 return ret;
499         }
500
501         /* Grow - we need to test if we have enough space. */
502
503         contend_level2_oplocks_begin(fsp, LEVEL2_CONTEND_ALLOC_GROW);
504         contend_level2_oplocks_end(fsp, LEVEL2_CONTEND_ALLOC_GROW);
505
506         if (!lp_strict_allocate(SNUM(fsp->conn)))
507                 return 0;
508
509         len -= st.st_ex_size;
510         len /= 1024; /* Len is now number of 1k blocks needed. */
511         space_avail = get_dfree_info(conn, fsp->fsp_name->base_name, false,
512                                      &bsize, &dfree, &dsize);
513         if (space_avail == (uint64_t)-1) {
514                 return -1;
515         }
516
517         DEBUG(10,("vfs_allocate_file_space: file %s, grow. Current size %.0f, "
518                   "needed blocks = %.0f, space avail = %.0f\n",
519                   fsp_str_dbg(fsp), (double)st.st_ex_size, (double)len,
520                   (double)space_avail));
521
522         if (len > space_avail) {
523                 errno = ENOSPC;
524                 return -1;
525         }
526
527         return 0;
528 }
529
530 /****************************************************************************
531  A vfs set_filelen call.
532  set the length of a file from a filedescriptor.
533  Returns 0 on success, -1 on failure.
534 ****************************************************************************/
535
536 int vfs_set_filelen(files_struct *fsp, SMB_OFF_T len)
537 {
538         int ret;
539
540         contend_level2_oplocks_begin(fsp, LEVEL2_CONTEND_SET_FILE_LEN);
541
542         DEBUG(10,("vfs_set_filelen: ftruncate %s to len %.0f\n",
543                   fsp_str_dbg(fsp), (double)len));
544         flush_write_cache(fsp, SIZECHANGE_FLUSH);
545         if ((ret = SMB_VFS_FTRUNCATE(fsp, len)) != -1) {
546                 set_filelen_write_cache(fsp, len);
547                 notify_fname(fsp->conn, NOTIFY_ACTION_MODIFIED,
548                              FILE_NOTIFY_CHANGE_SIZE
549                              | FILE_NOTIFY_CHANGE_ATTRIBUTES,
550                              fsp->fsp_name->base_name);
551         }
552
553         contend_level2_oplocks_end(fsp, LEVEL2_CONTEND_SET_FILE_LEN);
554
555         return ret;
556 }
557
558 /****************************************************************************
559  A vfs fill sparse call.
560  Writes zeros from the end of file to len, if len is greater than EOF.
561  Used only by strict_sync.
562  Returns 0 on success, -1 on failure.
563 ****************************************************************************/
564
565 #define SPARSE_BUF_WRITE_SIZE (32*1024)
566
567 int vfs_fill_sparse(files_struct *fsp, SMB_OFF_T len)
568 {
569         int ret;
570         SMB_STRUCT_STAT st;
571         SMB_OFF_T offset;
572         size_t total;
573         size_t num_to_write;
574         ssize_t pwrite_ret;
575
576         ret = SMB_VFS_FSTAT(fsp, &st);
577         if (ret == -1) {
578                 return ret;
579         }
580
581         if (len <= st.st_ex_size) {
582                 return 0;
583         }
584
585         DEBUG(10,("vfs_fill_sparse: write zeros in file %s from len %.0f to "
586                   "len %.0f (%.0f bytes)\n", fsp_str_dbg(fsp),
587                   (double)st.st_ex_size, (double)len,
588                   (double)(len - st.st_ex_size)));
589
590         contend_level2_oplocks_begin(fsp, LEVEL2_CONTEND_FILL_SPARSE);
591
592         flush_write_cache(fsp, SIZECHANGE_FLUSH);
593
594         if (!sparse_buf) {
595                 sparse_buf = SMB_CALLOC_ARRAY(char, SPARSE_BUF_WRITE_SIZE);
596                 if (!sparse_buf) {
597                         errno = ENOMEM;
598                         ret = -1;
599                         goto out;
600                 }
601         }
602
603         offset = st.st_ex_size;
604         num_to_write = len - st.st_ex_size;
605         total = 0;
606
607         while (total < num_to_write) {
608                 size_t curr_write_size = MIN(SPARSE_BUF_WRITE_SIZE, (num_to_write - total));
609
610                 pwrite_ret = SMB_VFS_PWRITE(fsp, sparse_buf, curr_write_size, offset + total);
611                 if (pwrite_ret == -1) {
612                         DEBUG(10,("vfs_fill_sparse: SMB_VFS_PWRITE for file "
613                                   "%s failed with error %s\n",
614                                   fsp_str_dbg(fsp), strerror(errno)));
615                         ret = -1;
616                         goto out;
617                 }
618                 if (pwrite_ret == 0) {
619                         ret = 0;
620                         goto out;
621                 }
622
623                 total += pwrite_ret;
624         }
625
626         set_filelen_write_cache(fsp, len);
627
628         ret = 0;
629  out:
630         contend_level2_oplocks_end(fsp, LEVEL2_CONTEND_FILL_SPARSE);
631         return ret;
632 }
633
634 /****************************************************************************
635  Transfer some data (n bytes) between two file_struct's.
636 ****************************************************************************/
637
638 static ssize_t vfs_read_fn(void *file, void *buf, size_t len)
639 {
640         struct files_struct *fsp = (struct files_struct *)file;
641
642         return SMB_VFS_READ(fsp, buf, len);
643 }
644
645 static ssize_t vfs_write_fn(void *file, const void *buf, size_t len)
646 {
647         struct files_struct *fsp = (struct files_struct *)file;
648
649         return SMB_VFS_WRITE(fsp, buf, len);
650 }
651
652 SMB_OFF_T vfs_transfer_file(files_struct *in, files_struct *out, SMB_OFF_T n)
653 {
654         return transfer_file_internal((void *)in, (void *)out, n,
655                                       vfs_read_fn, vfs_write_fn);
656 }
657
658 /*******************************************************************
659  A vfs_readdir wrapper which just returns the file name.
660 ********************************************************************/
661
662 char *vfs_readdirname(connection_struct *conn, void *p, SMB_STRUCT_STAT *sbuf)
663 {
664         SMB_STRUCT_DIRENT *ptr= NULL;
665         char *dname = NULL;
666         NTSTATUS result;
667
668         if (!p)
669                 return(NULL);
670
671         ptr = SMB_VFS_READDIR(conn, (DIR *)p, sbuf);
672         if (!ptr)
673                 return(NULL);
674
675         dname = talloc_strdup(talloc_tos(), ptr->d_name);
676         if (dname == NULL) {
677                 errno = ENOMEM;
678                 return NULL;
679         }
680         result = SMB_VFS_TRANSLATE_NAME(conn, &dname,
681                                         vfs_translate_to_windows);
682         if (!NT_STATUS_IS_OK(result)) {
683                 TALLOC_FREE(dname);
684                 return NULL;
685         }
686
687 #ifdef NEXT2
688         if (telldir(p) < 0)
689                 return(NULL);
690 #endif
691
692 #ifdef HAVE_BROKEN_READDIR_NAME
693         /* using /usr/ucb/cc is BAD */
694         dname = dname - 2;
695 #endif
696
697         return(dname);
698 }
699
700 /*******************************************************************
701  A wrapper for vfs_chdir().
702 ********************************************************************/
703
704 int vfs_ChDir(connection_struct *conn, const char *path)
705 {
706         int res;
707
708         if (!LastDir) {
709                 LastDir = SMB_STRDUP("");
710         }
711
712         if (strcsequal(path,"."))
713                 return(0);
714
715         if (*path == '/' && strcsequal(LastDir,path))
716                 return(0);
717
718         DEBUG(4,("vfs_ChDir to %s\n",path));
719
720         res = SMB_VFS_CHDIR(conn,path);
721         if (!res) {
722                 SAFE_FREE(LastDir);
723                 LastDir = SMB_STRDUP(path);
724         }
725         return(res);
726 }
727
728 /*******************************************************************
729  Return the absolute current directory path - given a UNIX pathname.
730  Note that this path is returned in DOS format, not UNIX
731  format. Note this can be called with conn == NULL.
732 ********************************************************************/
733
734 char *vfs_GetWd(TALLOC_CTX *ctx, connection_struct *conn)
735 {
736         char s[PATH_MAX+1];
737         char *result = NULL;
738         DATA_BLOB cache_value;
739         struct file_id key;
740         struct smb_filename *smb_fname_dot = NULL;
741         struct smb_filename *smb_fname_full = NULL;
742         NTSTATUS status;
743
744         *s = 0;
745
746         if (!lp_getwd_cache()) {
747                 goto nocache;
748         }
749
750         status = create_synthetic_smb_fname(ctx, ".", NULL, NULL,
751                                             &smb_fname_dot);
752         if (!NT_STATUS_IS_OK(status)) {
753                 errno = map_errno_from_nt_status(status);
754                 goto out;
755         }
756
757         if (SMB_VFS_STAT(conn, smb_fname_dot) == -1) {
758                 /*
759                  * Known to fail for root: the directory may be NFS-mounted
760                  * and exported with root_squash (so has no root access).
761                  */
762                 DEBUG(1,("vfs_GetWd: couldn't stat \".\" error %s "
763                          "(NFS problem ?)\n", strerror(errno) ));
764                 goto nocache;
765         }
766
767         key = vfs_file_id_from_sbuf(conn, &smb_fname_dot->st);
768
769         if (!memcache_lookup(smbd_memcache(), GETWD_CACHE,
770                              data_blob_const(&key, sizeof(key)),
771                              &cache_value)) {
772                 goto nocache;
773         }
774
775         SMB_ASSERT((cache_value.length > 0)
776                    && (cache_value.data[cache_value.length-1] == '\0'));
777
778         status = create_synthetic_smb_fname(ctx, (char *)cache_value.data,
779                                             NULL, NULL, &smb_fname_full);
780         if (!NT_STATUS_IS_OK(status)) {
781                 errno = map_errno_from_nt_status(status);
782                 goto out;
783         }
784
785         if ((SMB_VFS_STAT(conn, smb_fname_full) == 0) &&
786             (smb_fname_dot->st.st_ex_dev == smb_fname_full->st.st_ex_dev) &&
787             (smb_fname_dot->st.st_ex_ino == smb_fname_full->st.st_ex_ino) &&
788             (S_ISDIR(smb_fname_dot->st.st_ex_mode))) {
789                 /*
790                  * Ok, we're done
791                  */
792                 result = talloc_strdup(ctx, smb_fname_full->base_name);
793                 if (result == NULL) {
794                         errno = ENOMEM;
795                 }
796                 goto out;
797         }
798
799  nocache:
800
801         /*
802          * We don't have the information to hand so rely on traditional
803          * methods. The very slow getcwd, which spawns a process on some
804          * systems, or the not quite so bad getwd.
805          */
806
807         if (!SMB_VFS_GETWD(conn,s)) {
808                 DEBUG(0, ("vfs_GetWd: SMB_VFS_GETWD call failed: %s\n",
809                           strerror(errno)));
810                 goto out;
811         }
812
813         if (lp_getwd_cache() && VALID_STAT(smb_fname_dot->st)) {
814                 key = vfs_file_id_from_sbuf(conn, &smb_fname_dot->st);
815
816                 memcache_add(smbd_memcache(), GETWD_CACHE,
817                              data_blob_const(&key, sizeof(key)),
818                              data_blob_const(s, strlen(s)+1));
819         }
820
821         result = talloc_strdup(ctx, s);
822         if (result == NULL) {
823                 errno = ENOMEM;
824         }
825
826  out:
827         TALLOC_FREE(smb_fname_dot);
828         TALLOC_FREE(smb_fname_full);
829         return result;
830 }
831
832 /*******************************************************************
833  Reduce a file name, removing .. elements and checking that
834  it is below dir in the heirachy. This uses realpath.
835 ********************************************************************/
836
837 NTSTATUS check_reduced_name(connection_struct *conn, const char *fname)
838 {
839 #ifdef REALPATH_TAKES_NULL
840         bool free_resolved_name = True;
841 #else
842         char resolved_name_buf[PATH_MAX+1];
843         bool free_resolved_name = False;
844 #endif
845         char *resolved_name = NULL;
846         char *p = NULL;
847
848         DEBUG(3,("reduce_name [%s] [%s]\n", fname, conn->connectpath));
849
850 #ifdef REALPATH_TAKES_NULL
851         resolved_name = SMB_VFS_REALPATH(conn,fname,NULL);
852 #else
853         resolved_name = SMB_VFS_REALPATH(conn,fname,resolved_name_buf);
854 #endif
855
856         if (!resolved_name) {
857                 switch (errno) {
858                         case ENOTDIR:
859                                 DEBUG(3,("reduce_name: Component not a directory in getting realpath for %s\n", fname));
860                                 return map_nt_error_from_unix(errno);
861                         case ENOENT:
862                         {
863                                 TALLOC_CTX *ctx = talloc_tos();
864                                 char *tmp_fname = NULL;
865                                 char *last_component = NULL;
866                                 /* Last component didn't exist. Remove it and try and canonicalise the directory. */
867
868                                 tmp_fname = talloc_strdup(ctx, fname);
869                                 if (!tmp_fname) {
870                                         return NT_STATUS_NO_MEMORY;
871                                 }
872                                 p = strrchr_m(tmp_fname, '/');
873                                 if (p) {
874                                         *p++ = '\0';
875                                         last_component = p;
876                                 } else {
877                                         last_component = tmp_fname;
878                                         tmp_fname = talloc_strdup(ctx,
879                                                         ".");
880                                         if (!tmp_fname) {
881                                                 return NT_STATUS_NO_MEMORY;
882                                         }
883                                 }
884
885 #ifdef REALPATH_TAKES_NULL
886                                 resolved_name = SMB_VFS_REALPATH(conn,tmp_fname,NULL);
887 #else
888                                 resolved_name = SMB_VFS_REALPATH(conn,tmp_fname,resolved_name_buf);
889 #endif
890                                 if (!resolved_name) {
891                                         DEBUG(3,("reduce_name: couldn't get realpath for %s\n", fname));
892                                         return map_nt_error_from_unix(errno);
893                                 }
894                                 tmp_fname = talloc_asprintf(ctx,
895                                                 "%s/%s",
896                                                 resolved_name,
897                                                 last_component);
898                                 if (!tmp_fname) {
899                                         return NT_STATUS_NO_MEMORY;
900                                 }
901 #ifdef REALPATH_TAKES_NULL
902                                 SAFE_FREE(resolved_name);
903                                 resolved_name = SMB_STRDUP(tmp_fname);
904                                 if (!resolved_name) {
905                                         DEBUG(0,("reduce_name: malloc fail for %s\n", tmp_fname));
906                                         return NT_STATUS_NO_MEMORY;
907                                 }
908 #else
909                                 safe_strcpy(resolved_name_buf, tmp_fname, PATH_MAX);
910                                 resolved_name = resolved_name_buf;
911 #endif
912                                 break;
913                         }
914                         default:
915                                 DEBUG(1,("reduce_name: couldn't get realpath for %s\n", fname));
916                                 return map_nt_error_from_unix(errno);
917                 }
918         }
919
920         DEBUG(10,("reduce_name realpath [%s] -> [%s]\n", fname, resolved_name));
921
922         if (*resolved_name != '/') {
923                 DEBUG(0,("reduce_name: realpath doesn't return absolute paths !\n"));
924                 if (free_resolved_name) {
925                         SAFE_FREE(resolved_name);
926                 }
927                 return NT_STATUS_OBJECT_NAME_INVALID;
928         }
929
930         /* Check for widelinks allowed. */
931         if (!lp_widelinks(SNUM(conn))) {
932                     const char *conn_rootdir;
933
934                     conn_rootdir = SMB_VFS_CONNECTPATH(conn, fname);
935                     if (conn_rootdir == NULL) {
936                             DEBUG(2, ("check_reduced_name: Could not get conn_rootdir\n"));
937                             if (free_resolved_name) {
938                                     SAFE_FREE(resolved_name);
939                             }
940                             return NT_STATUS_ACCESS_DENIED;
941                     }
942
943                     if (strncmp(conn_rootdir, resolved_name,
944                                 strlen(conn_rootdir)) != 0) {
945                             DEBUG(2, ("reduce_name: Bad access attempt: %s is "
946                                       "a symlink outside the share path",
947                                       fname));
948                             if (free_resolved_name) {
949                                     SAFE_FREE(resolved_name);
950                             }
951                             return NT_STATUS_ACCESS_DENIED;
952                     }
953         }
954
955         /* Check if we are allowing users to follow symlinks */
956         /* Patch from David Clerc <David.Clerc@cui.unige.ch>
957                 University of Geneva */
958
959 #ifdef S_ISLNK
960         if (!lp_symlinks(SNUM(conn))) {
961                 struct smb_filename *smb_fname = NULL;
962                 NTSTATUS status;
963
964                 status = create_synthetic_smb_fname(talloc_tos(), fname, NULL,
965                                                     NULL, &smb_fname);
966                 if (!NT_STATUS_IS_OK(status)) {
967                         if (free_resolved_name) {
968                                 SAFE_FREE(resolved_name);
969                         }
970                         return status;
971                 }
972
973                 if ( (SMB_VFS_LSTAT(conn, smb_fname) != -1) &&
974                                 (S_ISLNK(smb_fname->st.st_ex_mode)) ) {
975                         if (free_resolved_name) {
976                                 SAFE_FREE(resolved_name);
977                         }
978                         DEBUG(3,("reduce_name: denied: file path name %s is a symlink\n",resolved_name));
979                         TALLOC_FREE(smb_fname);
980                         return NT_STATUS_ACCESS_DENIED;
981                 }
982                 TALLOC_FREE(smb_fname);
983         }
984 #endif
985
986         DEBUG(3,("reduce_name: %s reduced to %s\n", fname, resolved_name));
987         if (free_resolved_name) {
988                 SAFE_FREE(resolved_name);
989         }
990         return NT_STATUS_OK;
991 }
992
993 /**
994  * XXX: This is temporary and there should be no callers of this once
995  * smb_filename is plumbed through all path based operations.
996  */
997 int vfs_stat_smb_fname(struct connection_struct *conn, const char *fname,
998                        SMB_STRUCT_STAT *psbuf)
999 {
1000         struct smb_filename *smb_fname = NULL;
1001         NTSTATUS status;
1002         int ret;
1003
1004         status = create_synthetic_smb_fname_split(talloc_tos(), fname, NULL,
1005                                                   &smb_fname);
1006         if (!NT_STATUS_IS_OK(status)) {
1007                 errno = map_errno_from_nt_status(status);
1008                 return -1;
1009         }
1010
1011         ret = SMB_VFS_STAT(conn, smb_fname);
1012         if (ret != -1) {
1013                 *psbuf = smb_fname->st;
1014         }
1015
1016         TALLOC_FREE(smb_fname);
1017         return ret;
1018 }
1019
1020 /**
1021  * XXX: This is temporary and there should be no callers of this once
1022  * smb_filename is plumbed through all path based operations.
1023  */
1024 int vfs_lstat_smb_fname(struct connection_struct *conn, const char *fname,
1025                         SMB_STRUCT_STAT *psbuf)
1026 {
1027         struct smb_filename *smb_fname = NULL;
1028         NTSTATUS status;
1029         int ret;
1030
1031         status = create_synthetic_smb_fname_split(talloc_tos(), fname, NULL,
1032                                                   &smb_fname);
1033         if (!NT_STATUS_IS_OK(status)) {
1034                 errno = map_errno_from_nt_status(status);
1035                 return -1;
1036         }
1037
1038         ret = SMB_VFS_LSTAT(conn, smb_fname);
1039         if (ret != -1) {
1040                 *psbuf = smb_fname->st;
1041         }
1042
1043         TALLOC_FREE(smb_fname);
1044         return ret;
1045 }
1046
1047 /*
1048   generate a file_id from a stat structure
1049  */
1050 struct file_id vfs_file_id_from_sbuf(connection_struct *conn, const SMB_STRUCT_STAT *sbuf)
1051 {
1052         return SMB_VFS_FILE_ID_CREATE(conn, sbuf);
1053 }
1054
1055 int smb_vfs_call_connect(struct vfs_handle_struct *handle,
1056                          const char *service, const char *user)
1057 {
1058         VFS_FIND(connect_fn);
1059         return handle->fns->connect_fn(handle, service, user);
1060 }
1061
1062 void smb_vfs_call_disconnect(struct vfs_handle_struct *handle)
1063 {
1064         VFS_FIND(disconnect);
1065         handle->fns->disconnect(handle);
1066 }
1067
1068 uint64_t smb_vfs_call_disk_free(struct vfs_handle_struct *handle,
1069                                 const char *path, bool small_query,
1070                                 uint64_t *bsize, uint64_t *dfree,
1071                                 uint64_t *dsize)
1072 {
1073         VFS_FIND(disk_free);
1074         return handle->fns->disk_free(handle, path, small_query, bsize, dfree,
1075                                       dsize);
1076 }
1077
1078 int smb_vfs_call_get_quota(struct vfs_handle_struct *handle,
1079                            enum SMB_QUOTA_TYPE qtype, unid_t id,
1080                            SMB_DISK_QUOTA *qt)
1081 {
1082         VFS_FIND(get_quota);
1083         return handle->fns->get_quota(handle, qtype, id, qt);
1084 }
1085
1086 int smb_vfs_call_set_quota(struct vfs_handle_struct *handle,
1087                            enum SMB_QUOTA_TYPE qtype, unid_t id,
1088                            SMB_DISK_QUOTA *qt)
1089 {
1090         VFS_FIND(set_quota);
1091         return handle->fns->set_quota(handle, qtype, id, qt);
1092 }
1093
1094 int smb_vfs_call_get_shadow_copy_data(struct vfs_handle_struct *handle,
1095                                       struct files_struct *fsp,
1096                                       SHADOW_COPY_DATA *shadow_copy_data,
1097                                       bool labels)
1098 {
1099         VFS_FIND(get_shadow_copy_data);
1100         return handle->fns->get_shadow_copy_data(handle, fsp, shadow_copy_data,
1101                                                  labels);
1102 }
1103 int smb_vfs_call_statvfs(struct vfs_handle_struct *handle, const char *path,
1104                          struct vfs_statvfs_struct *statbuf)
1105 {
1106         VFS_FIND(statvfs);
1107         return handle->fns->statvfs(handle, path, statbuf);
1108 }
1109
1110 uint32_t smb_vfs_call_fs_capabilities(struct vfs_handle_struct *handle,
1111                         enum timestamp_set_resolution *p_ts_res)
1112 {
1113         VFS_FIND(fs_capabilities);
1114         return handle->fns->fs_capabilities(handle, p_ts_res);
1115 }
1116
1117 SMB_STRUCT_DIR *smb_vfs_call_opendir(struct vfs_handle_struct *handle,
1118                                      const char *fname, const char *mask,
1119                                      uint32 attributes)
1120 {
1121         VFS_FIND(opendir);
1122         return handle->fns->opendir(handle, fname, mask, attributes);
1123 }
1124
1125 SMB_STRUCT_DIRENT *smb_vfs_call_readdir(struct vfs_handle_struct *handle,
1126                                               SMB_STRUCT_DIR *dirp,
1127                                               SMB_STRUCT_STAT *sbuf)
1128 {
1129         VFS_FIND(readdir);
1130         return handle->fns->readdir(handle, dirp, sbuf);
1131 }
1132
1133 void smb_vfs_call_seekdir(struct vfs_handle_struct *handle,
1134                           SMB_STRUCT_DIR *dirp, long offset)
1135 {
1136         VFS_FIND(seekdir);
1137         handle->fns->seekdir(handle, dirp, offset);
1138 }
1139
1140 long smb_vfs_call_telldir(struct vfs_handle_struct *handle,
1141                           SMB_STRUCT_DIR *dirp)
1142 {
1143         VFS_FIND(telldir);
1144         return handle->fns->telldir(handle, dirp);
1145 }
1146
1147 void smb_vfs_call_rewind_dir(struct vfs_handle_struct *handle,
1148                              SMB_STRUCT_DIR *dirp)
1149 {
1150         VFS_FIND(rewind_dir);
1151         handle->fns->rewind_dir(handle, dirp);
1152 }
1153
1154 int smb_vfs_call_mkdir(struct vfs_handle_struct *handle, const char *path,
1155                        mode_t mode)
1156 {
1157         VFS_FIND(mkdir);
1158         return handle->fns->mkdir(handle, path, mode);
1159 }
1160
1161 int smb_vfs_call_rmdir(struct vfs_handle_struct *handle, const char *path)
1162 {
1163         VFS_FIND(rmdir);
1164         return handle->fns->rmdir(handle, path);
1165 }
1166
1167 int smb_vfs_call_closedir(struct vfs_handle_struct *handle,
1168                           SMB_STRUCT_DIR *dir)
1169 {
1170         VFS_FIND(closedir);
1171         return handle->fns->closedir(handle, dir);
1172 }
1173
1174 void smb_vfs_call_init_search_op(struct vfs_handle_struct *handle,
1175                                  SMB_STRUCT_DIR *dirp)
1176 {
1177         VFS_FIND(init_search_op);
1178         handle->fns->init_search_op(handle, dirp);
1179 }
1180
1181 int smb_vfs_call_open(struct vfs_handle_struct *handle,
1182                       struct smb_filename *smb_fname, struct files_struct *fsp,
1183                       int flags, mode_t mode)
1184 {
1185         VFS_FIND(open);
1186         return handle->fns->open(handle, smb_fname, fsp, flags, mode);
1187 }
1188
1189 NTSTATUS smb_vfs_call_create_file(struct vfs_handle_struct *handle,
1190                                   struct smb_request *req,
1191                                   uint16_t root_dir_fid,
1192                                   struct smb_filename *smb_fname,
1193                                   uint32_t access_mask,
1194                                   uint32_t share_access,
1195                                   uint32_t create_disposition,
1196                                   uint32_t create_options,
1197                                   uint32_t file_attributes,
1198                                   uint32_t oplock_request,
1199                                   uint64_t allocation_size,
1200                                   struct security_descriptor *sd,
1201                                   struct ea_list *ea_list,
1202                                   files_struct **result,
1203                                   int *pinfo)
1204 {
1205         VFS_FIND(create_file);
1206         return handle->fns->create_file(
1207                 handle, req, root_dir_fid, smb_fname, access_mask,
1208                 share_access, create_disposition, create_options,
1209                 file_attributes, oplock_request, allocation_size, sd, ea_list,
1210                 result, pinfo);
1211 }
1212
1213 int smb_vfs_call_close_fn(struct vfs_handle_struct *handle,
1214                           struct files_struct *fsp)
1215 {
1216         VFS_FIND(close_fn);
1217         return handle->fns->close_fn(handle, fsp);
1218 }
1219
1220 ssize_t smb_vfs_call_vfs_read(struct vfs_handle_struct *handle,
1221                               struct files_struct *fsp, void *data, size_t n)
1222 {
1223         VFS_FIND(vfs_read);
1224         return handle->fns->vfs_read(handle, fsp, data, n);
1225 }
1226
1227 ssize_t smb_vfs_call_pread(struct vfs_handle_struct *handle,
1228                            struct files_struct *fsp, void *data, size_t n,
1229                            SMB_OFF_T offset)
1230 {
1231         VFS_FIND(pread);
1232         return handle->fns->pread(handle, fsp, data, n, offset);
1233 }
1234
1235 ssize_t smb_vfs_call_write(struct vfs_handle_struct *handle,
1236                            struct files_struct *fsp, const void *data,
1237                            size_t n)
1238 {
1239         VFS_FIND(write);
1240         return handle->fns->write(handle, fsp, data, n);
1241 }
1242
1243 ssize_t smb_vfs_call_pwrite(struct vfs_handle_struct *handle,
1244                             struct files_struct *fsp, const void *data,
1245                             size_t n, SMB_OFF_T offset)
1246 {
1247         VFS_FIND(pwrite);
1248         return handle->fns->pwrite(handle, fsp, data, n, offset);
1249 }
1250
1251 SMB_OFF_T smb_vfs_call_lseek(struct vfs_handle_struct *handle,
1252                              struct files_struct *fsp, SMB_OFF_T offset,
1253                              int whence)
1254 {
1255         VFS_FIND(lseek);
1256         return handle->fns->lseek(handle, fsp, offset, whence);
1257 }
1258
1259 ssize_t smb_vfs_call_sendfile(struct vfs_handle_struct *handle, int tofd,
1260                               files_struct *fromfsp, const DATA_BLOB *header,
1261                               SMB_OFF_T offset, size_t count)
1262 {
1263         VFS_FIND(sendfile);
1264         return handle->fns->sendfile(handle, tofd, fromfsp, header, offset,
1265                                      count);
1266 }
1267
1268 ssize_t smb_vfs_call_recvfile(struct vfs_handle_struct *handle, int fromfd,
1269                               files_struct *tofsp, SMB_OFF_T offset,
1270                               size_t count)
1271 {
1272         VFS_FIND(recvfile);
1273         return handle->fns->recvfile(handle, fromfd, tofsp, offset, count);
1274 }
1275
1276 int smb_vfs_call_rename(struct vfs_handle_struct *handle,
1277                         const struct smb_filename *smb_fname_src,
1278                         const struct smb_filename *smb_fname_dst)
1279 {
1280         VFS_FIND(rename);
1281         return handle->fns->rename(handle, smb_fname_src, smb_fname_dst);
1282 }
1283
1284 int smb_vfs_call_fsync(struct vfs_handle_struct *handle,
1285                        struct files_struct *fsp)
1286 {
1287         VFS_FIND(fsync);
1288         return handle->fns->fsync(handle, fsp);
1289 }
1290
1291 int smb_vfs_call_stat(struct vfs_handle_struct *handle,
1292                       struct smb_filename *smb_fname)
1293 {
1294         VFS_FIND(stat);
1295         return handle->fns->stat(handle, smb_fname);
1296 }
1297
1298 int smb_vfs_call_fstat(struct vfs_handle_struct *handle,
1299                        struct files_struct *fsp, SMB_STRUCT_STAT *sbuf)
1300 {
1301         VFS_FIND(fstat);
1302         return handle->fns->fstat(handle, fsp, sbuf);
1303 }
1304
1305 int smb_vfs_call_lstat(struct vfs_handle_struct *handle,
1306                        struct smb_filename *smb_filename)
1307 {
1308         VFS_FIND(lstat);
1309         return handle->fns->lstat(handle, smb_filename);
1310 }
1311
1312 uint64_t smb_vfs_call_get_alloc_size(struct vfs_handle_struct *handle,
1313                                      struct files_struct *fsp,
1314                                      const SMB_STRUCT_STAT *sbuf)
1315 {
1316         VFS_FIND(get_alloc_size);
1317         return handle->fns->get_alloc_size(handle, fsp, sbuf);
1318 }
1319
1320 int smb_vfs_call_unlink(struct vfs_handle_struct *handle,
1321                         const struct smb_filename *smb_fname)
1322 {
1323         VFS_FIND(unlink);
1324         return handle->fns->unlink(handle, smb_fname);
1325 }
1326
1327 int smb_vfs_call_chmod(struct vfs_handle_struct *handle, const char *path,
1328                        mode_t mode)
1329 {
1330         VFS_FIND(chmod);
1331         return handle->fns->chmod(handle, path, mode);
1332 }
1333
1334 int smb_vfs_call_fchmod(struct vfs_handle_struct *handle,
1335                         struct files_struct *fsp, mode_t mode)
1336 {
1337         VFS_FIND(fchmod);
1338         return handle->fns->fchmod(handle, fsp, mode);
1339 }
1340
1341 int smb_vfs_call_chown(struct vfs_handle_struct *handle, const char *path,
1342                        uid_t uid, gid_t gid)
1343 {
1344         VFS_FIND(chown);
1345         return handle->fns->chown(handle, path, uid, gid);
1346 }
1347
1348 int smb_vfs_call_fchown(struct vfs_handle_struct *handle,
1349                         struct files_struct *fsp, uid_t uid, gid_t gid)
1350 {
1351         VFS_FIND(fchown);
1352         return handle->fns->fchown(handle, fsp, uid, gid);
1353 }
1354
1355 int smb_vfs_call_lchown(struct vfs_handle_struct *handle, const char *path,
1356                         uid_t uid, gid_t gid)
1357 {
1358         VFS_FIND(lchown);
1359         return handle->fns->lchown(handle, path, uid, gid);
1360 }
1361
1362 int smb_vfs_call_chdir(struct vfs_handle_struct *handle, const char *path)
1363 {
1364         VFS_FIND(chdir);
1365         return handle->fns->chdir(handle, path);
1366 }
1367
1368 char *smb_vfs_call_getwd(struct vfs_handle_struct *handle, char *buf)
1369 {
1370         VFS_FIND(getwd);
1371         return handle->fns->getwd(handle, buf);
1372 }
1373
1374 int smb_vfs_call_ntimes(struct vfs_handle_struct *handle,
1375                         const struct smb_filename *smb_fname,
1376                         struct smb_file_time *ft)
1377 {
1378         VFS_FIND(ntimes);
1379         return handle->fns->ntimes(handle, smb_fname, ft);
1380 }
1381
1382 int smb_vfs_call_ftruncate(struct vfs_handle_struct *handle,
1383                            struct files_struct *fsp, SMB_OFF_T offset)
1384 {
1385         VFS_FIND(ftruncate);
1386         return handle->fns->ftruncate(handle, fsp, offset);
1387 }
1388
1389 int smb_vfs_call_kernel_flock(struct vfs_handle_struct *handle,
1390                               struct files_struct *fsp, uint32 share_mode)
1391 {
1392         VFS_FIND(kernel_flock);
1393         return handle->fns->kernel_flock(handle, fsp, share_mode);
1394 }
1395
1396 int smb_vfs_call_linux_setlease(struct vfs_handle_struct *handle,
1397                                 struct files_struct *fsp, int leasetype)
1398 {
1399         VFS_FIND(linux_setlease);
1400         return handle->fns->linux_setlease(handle, fsp, leasetype);
1401 }
1402
1403 int smb_vfs_call_symlink(struct vfs_handle_struct *handle, const char *oldpath,
1404                          const char *newpath)
1405 {
1406         VFS_FIND(symlink);
1407         return handle->fns->symlink(handle, oldpath, newpath);
1408 }
1409
1410 int smb_vfs_call_vfs_readlink(struct vfs_handle_struct *handle,
1411                               const char *path, char *buf, size_t bufsiz)
1412 {
1413         VFS_FIND(vfs_readlink);
1414         return handle->fns->vfs_readlink(handle, path, buf, bufsiz);
1415 }
1416
1417 int smb_vfs_call_link(struct vfs_handle_struct *handle, const char *oldpath,
1418                       const char *newpath)
1419 {
1420         VFS_FIND(link);
1421         return handle->fns->link(handle, oldpath, newpath);
1422 }
1423
1424 int smb_vfs_call_mknod(struct vfs_handle_struct *handle, const char *path,
1425                        mode_t mode, SMB_DEV_T dev)
1426 {
1427         VFS_FIND(mknod);
1428         return handle->fns->mknod(handle, path, mode, dev);
1429 }
1430
1431 char *smb_vfs_call_realpath(struct vfs_handle_struct *handle,
1432                             const char *path, char *resolved_path)
1433 {
1434         VFS_FIND(realpath);
1435         return handle->fns->realpath(handle, path, resolved_path);
1436 }
1437
1438 NTSTATUS smb_vfs_call_notify_watch(struct vfs_handle_struct *handle,
1439                                    struct sys_notify_context *ctx,
1440                                    struct notify_entry *e,
1441                                    void (*callback)(struct sys_notify_context *ctx,
1442                                                     void *private_data,
1443                                                     struct notify_event *ev),
1444                                    void *private_data, void *handle_p)
1445 {
1446         VFS_FIND(notify_watch);
1447         return handle->fns->notify_watch(handle, ctx, e, callback,
1448                                          private_data, handle_p);
1449 }
1450
1451 int smb_vfs_call_chflags(struct vfs_handle_struct *handle, const char *path,
1452                          unsigned int flags)
1453 {
1454         VFS_FIND(chflags);
1455         return handle->fns->chflags(handle, path, flags);
1456 }
1457
1458 struct file_id smb_vfs_call_file_id_create(struct vfs_handle_struct *handle,
1459                                            const SMB_STRUCT_STAT *sbuf)
1460 {
1461         VFS_FIND(file_id_create);
1462         return handle->fns->file_id_create(handle, sbuf);
1463 }
1464
1465 NTSTATUS smb_vfs_call_streaminfo(struct vfs_handle_struct *handle,
1466                                  struct files_struct *fsp,
1467                                  const char *fname,
1468                                  TALLOC_CTX *mem_ctx,
1469                                  unsigned int *num_streams,
1470                                  struct stream_struct **streams)
1471 {
1472         VFS_FIND(streaminfo);
1473         return handle->fns->streaminfo(handle, fsp, fname, mem_ctx,
1474                                        num_streams, streams);
1475 }
1476
1477 int smb_vfs_call_get_real_filename(struct vfs_handle_struct *handle,
1478                                    const char *path, const char *name,
1479                                    TALLOC_CTX *mem_ctx, char **found_name)
1480 {
1481         VFS_FIND(get_real_filename);
1482         return handle->fns->get_real_filename(handle, path, name, mem_ctx,
1483                                               found_name);
1484 }
1485
1486 const char *smb_vfs_call_connectpath(struct vfs_handle_struct *handle,
1487                                      const char *filename)
1488 {
1489         VFS_FIND(connectpath);
1490         return handle->fns->connectpath(handle, filename);
1491 }
1492
1493 bool smb_vfs_call_strict_lock(struct vfs_handle_struct *handle,
1494                               struct files_struct *fsp,
1495                               struct lock_struct *plock)
1496 {
1497         VFS_FIND(strict_lock);
1498         return handle->fns->strict_lock(handle, fsp, plock);
1499 }
1500
1501 void smb_vfs_call_strict_unlock(struct vfs_handle_struct *handle,
1502                                 struct files_struct *fsp,
1503                                 struct lock_struct *plock)
1504 {
1505         VFS_FIND(strict_unlock);
1506         handle->fns->strict_unlock(handle, fsp, plock);
1507 }
1508
1509 NTSTATUS smb_vfs_call_translate_name(struct vfs_handle_struct *handle,
1510                                      char **mapped_name,
1511                                      enum vfs_translate_direction direction)
1512 {
1513         VFS_FIND(translate_name);
1514         return handle->fns->translate_name(handle, mapped_name, direction);
1515 }
1516
1517 NTSTATUS smb_vfs_call_fget_nt_acl(struct vfs_handle_struct *handle,
1518                                   struct files_struct *fsp,
1519                                   uint32 security_info,
1520                                   struct security_descriptor **ppdesc)
1521 {
1522         VFS_FIND(fget_nt_acl);
1523         return handle->fns->fget_nt_acl(handle, fsp, security_info,
1524                                         ppdesc);
1525 }
1526
1527 NTSTATUS smb_vfs_call_get_nt_acl(struct vfs_handle_struct *handle,
1528                                  const char *name,
1529                                  uint32 security_info,
1530                                  struct security_descriptor **ppdesc)
1531 {
1532         VFS_FIND(get_nt_acl);
1533         return handle->fns->get_nt_acl(handle, name, security_info, ppdesc);
1534 }
1535
1536 NTSTATUS smb_vfs_call_fset_nt_acl(struct vfs_handle_struct *handle,
1537                                   struct files_struct *fsp,
1538                                   uint32 security_info_sent,
1539                                   const struct security_descriptor *psd)
1540 {
1541         VFS_FIND(fset_nt_acl);
1542         return handle->fns->fset_nt_acl(handle, fsp, security_info_sent, psd);
1543 }
1544
1545 int smb_vfs_call_chmod_acl(struct vfs_handle_struct *handle, const char *name,
1546                            mode_t mode)
1547 {
1548         VFS_FIND(chmod_acl);
1549         return handle->fns->chmod_acl(handle, name, mode);
1550 }
1551
1552 int smb_vfs_call_fchmod_acl(struct vfs_handle_struct *handle,
1553                             struct files_struct *fsp, mode_t mode)
1554 {
1555         VFS_FIND(fchmod_acl);
1556         return handle->fns->fchmod_acl(handle, fsp, mode);
1557 }
1558
1559 int smb_vfs_call_sys_acl_get_entry(struct vfs_handle_struct *handle,
1560                                    SMB_ACL_T theacl, int entry_id,
1561                                    SMB_ACL_ENTRY_T *entry_p)
1562 {
1563         VFS_FIND(sys_acl_get_entry);
1564         return handle->fns->sys_acl_get_entry(handle, theacl, entry_id,
1565                                               entry_p);
1566 }
1567
1568 int smb_vfs_call_sys_acl_get_tag_type(struct vfs_handle_struct *handle,
1569                                       SMB_ACL_ENTRY_T entry_d,
1570                                       SMB_ACL_TAG_T *tag_type_p)
1571 {
1572         VFS_FIND(sys_acl_get_tag_type);
1573         return handle->fns->sys_acl_get_tag_type(handle, entry_d, tag_type_p);
1574 }
1575
1576 int smb_vfs_call_sys_acl_get_permset(struct vfs_handle_struct *handle,
1577                                      SMB_ACL_ENTRY_T entry_d,
1578                                      SMB_ACL_PERMSET_T *permset_p)
1579 {
1580         VFS_FIND(sys_acl_get_permset);
1581         return handle->fns->sys_acl_get_permset(handle, entry_d, permset_p);
1582 }
1583
1584 void * smb_vfs_call_sys_acl_get_qualifier(struct vfs_handle_struct *handle,
1585                                           SMB_ACL_ENTRY_T entry_d)
1586 {
1587         VFS_FIND(sys_acl_get_qualifier);
1588         return handle->fns->sys_acl_get_qualifier(handle, entry_d);
1589 }
1590
1591 SMB_ACL_T smb_vfs_call_sys_acl_get_file(struct vfs_handle_struct *handle,
1592                                         const char *path_p,
1593                                         SMB_ACL_TYPE_T type)
1594 {
1595         VFS_FIND(sys_acl_get_file);
1596         return handle->fns->sys_acl_get_file(handle, path_p, type);
1597 }
1598
1599 SMB_ACL_T smb_vfs_call_sys_acl_get_fd(struct vfs_handle_struct *handle,
1600                                       struct files_struct *fsp)
1601 {
1602         VFS_FIND(sys_acl_get_fd);
1603         return handle->fns->sys_acl_get_fd(handle, fsp);
1604 }
1605
1606 int smb_vfs_call_sys_acl_clear_perms(struct vfs_handle_struct *handle,
1607                                      SMB_ACL_PERMSET_T permset)
1608 {
1609         VFS_FIND(sys_acl_clear_perms);
1610         return handle->fns->sys_acl_clear_perms(handle, permset);
1611 }
1612
1613 int smb_vfs_call_sys_acl_add_perm(struct vfs_handle_struct *handle,
1614                                   SMB_ACL_PERMSET_T permset,
1615                                   SMB_ACL_PERM_T perm)
1616 {
1617         VFS_FIND(sys_acl_add_perm);
1618         return handle->fns->sys_acl_add_perm(handle, permset, perm);
1619 }
1620
1621 char * smb_vfs_call_sys_acl_to_text(struct vfs_handle_struct *handle,
1622                                     SMB_ACL_T theacl, ssize_t *plen)
1623 {
1624         VFS_FIND(sys_acl_to_text);
1625         return handle->fns->sys_acl_to_text(handle, theacl, plen);
1626 }
1627
1628 SMB_ACL_T smb_vfs_call_sys_acl_init(struct vfs_handle_struct *handle,
1629                                     int count)
1630 {
1631         VFS_FIND(sys_acl_init);
1632         return handle->fns->sys_acl_init(handle, count);
1633 }
1634
1635 int smb_vfs_call_sys_acl_create_entry(struct vfs_handle_struct *handle,
1636                                       SMB_ACL_T *pacl, SMB_ACL_ENTRY_T *pentry)
1637 {
1638         VFS_FIND(sys_acl_create_entry);
1639         return handle->fns->sys_acl_create_entry(handle, pacl, pentry);
1640 }
1641
1642 int smb_vfs_call_sys_acl_set_tag_type(struct vfs_handle_struct *handle,
1643                                       SMB_ACL_ENTRY_T entry,
1644                                       SMB_ACL_TAG_T tagtype)
1645 {
1646         VFS_FIND(sys_acl_set_tag_type);
1647         return handle->fns->sys_acl_set_tag_type(handle, entry, tagtype);
1648 }
1649
1650 int smb_vfs_call_sys_acl_set_qualifier(struct vfs_handle_struct *handle,
1651                                        SMB_ACL_ENTRY_T entry, void *qual)
1652 {
1653         VFS_FIND(sys_acl_set_qualifier);
1654         return handle->fns->sys_acl_set_qualifier(handle, entry, qual);
1655 }
1656
1657 int smb_vfs_call_sys_acl_set_permset(struct vfs_handle_struct *handle,
1658                                      SMB_ACL_ENTRY_T entry,
1659                                      SMB_ACL_PERMSET_T permset)
1660 {
1661         VFS_FIND(sys_acl_set_permset);
1662         return handle->fns->sys_acl_set_permset(handle, entry, permset);
1663 }
1664
1665 int smb_vfs_call_sys_acl_valid(struct vfs_handle_struct *handle,
1666                                SMB_ACL_T theacl)
1667 {
1668         VFS_FIND(sys_acl_valid);
1669         return handle->fns->sys_acl_valid(handle, theacl);
1670 }
1671
1672 int smb_vfs_call_sys_acl_set_file(struct vfs_handle_struct *handle,
1673                                   const char *name, SMB_ACL_TYPE_T acltype,
1674                                   SMB_ACL_T theacl)
1675 {
1676         VFS_FIND(sys_acl_set_file);
1677         return handle->fns->sys_acl_set_file(handle, name, acltype, theacl);
1678 }
1679
1680 int smb_vfs_call_sys_acl_set_fd(struct vfs_handle_struct *handle,
1681                                 struct files_struct *fsp, SMB_ACL_T theacl)
1682 {
1683         VFS_FIND(sys_acl_set_fd);
1684         return handle->fns->sys_acl_set_fd(handle, fsp, theacl);
1685 }
1686
1687 int smb_vfs_call_sys_acl_delete_def_file(struct vfs_handle_struct *handle,
1688                                          const char *path)
1689 {
1690         VFS_FIND(sys_acl_delete_def_file);
1691         return handle->fns->sys_acl_delete_def_file(handle, path);
1692 }
1693
1694 int smb_vfs_call_sys_acl_get_perm(struct vfs_handle_struct *handle,
1695                                   SMB_ACL_PERMSET_T permset,
1696                                   SMB_ACL_PERM_T perm)
1697 {
1698         VFS_FIND(sys_acl_get_perm);
1699         return handle->fns->sys_acl_get_perm(handle, permset, perm);
1700 }
1701
1702 int smb_vfs_call_sys_acl_free_text(struct vfs_handle_struct *handle,
1703                                    char *text)
1704 {
1705         VFS_FIND(sys_acl_free_text);
1706         return handle->fns->sys_acl_free_text(handle, text);
1707 }
1708
1709 int smb_vfs_call_sys_acl_free_acl(struct vfs_handle_struct *handle,
1710                                   SMB_ACL_T posix_acl)
1711 {
1712         VFS_FIND(sys_acl_free_acl);
1713         return handle->fns->sys_acl_free_acl(handle, posix_acl);
1714 }
1715
1716 int smb_vfs_call_sys_acl_free_qualifier(struct vfs_handle_struct *handle,
1717                                         void *qualifier, SMB_ACL_TAG_T tagtype)
1718 {
1719         VFS_FIND(sys_acl_free_qualifier);
1720         return handle->fns->sys_acl_free_qualifier(handle, qualifier, tagtype);
1721 }
1722
1723 ssize_t smb_vfs_call_getxattr(struct vfs_handle_struct *handle,
1724                               const char *path, const char *name, void *value,
1725                               size_t size)
1726 {
1727         VFS_FIND(getxattr);
1728         return handle->fns->getxattr(handle, path, name, value, size);
1729 }
1730
1731 ssize_t smb_vfs_call_lgetxattr(struct vfs_handle_struct *handle,
1732                                const char *path, const char *name, void *value,
1733                                size_t size)
1734 {
1735         VFS_FIND(lgetxattr);
1736         return handle->fns->lgetxattr(handle, path, name, value, size);
1737 }
1738
1739 ssize_t smb_vfs_call_fgetxattr(struct vfs_handle_struct *handle,
1740                                struct files_struct *fsp, const char *name,
1741                                void *value, size_t size)
1742 {
1743         VFS_FIND(fgetxattr);
1744         return handle->fns->fgetxattr(handle, fsp, name, value, size);
1745 }
1746
1747 ssize_t smb_vfs_call_listxattr(struct vfs_handle_struct *handle,
1748                                const char *path, char *list, size_t size)
1749 {
1750         VFS_FIND(listxattr);
1751         return handle->fns->listxattr(handle, path, list, size);
1752 }
1753
1754 ssize_t smb_vfs_call_llistxattr(struct vfs_handle_struct *handle,
1755                                 const char *path, char *list, size_t size)
1756 {
1757         VFS_FIND(llistxattr);
1758         return handle->fns->llistxattr(handle, path, list, size);
1759 }
1760
1761 ssize_t smb_vfs_call_flistxattr(struct vfs_handle_struct *handle,
1762                                 struct files_struct *fsp, char *list,
1763                                 size_t size)
1764 {
1765         VFS_FIND(flistxattr);
1766         return handle->fns->flistxattr(handle, fsp, list, size);
1767 }
1768
1769 int smb_vfs_call_removexattr(struct vfs_handle_struct *handle,
1770                              const char *path, const char *name)
1771 {
1772         VFS_FIND(removexattr);
1773         return handle->fns->removexattr(handle, path, name);
1774 }
1775
1776 int smb_vfs_call_lremovexattr(struct vfs_handle_struct *handle,
1777                               const char *path, const char *name)
1778 {
1779         VFS_FIND(lremovexattr);
1780         return handle->fns->lremovexattr(handle, path, name);
1781 }
1782
1783 int smb_vfs_call_fremovexattr(struct vfs_handle_struct *handle,
1784                               struct files_struct *fsp, const char *name)
1785 {
1786         VFS_FIND(fremovexattr);
1787         return handle->fns->fremovexattr(handle, fsp, name);
1788 }
1789
1790 int smb_vfs_call_setxattr(struct vfs_handle_struct *handle, const char *path,
1791                           const char *name, const void *value, size_t size,
1792                           int flags)
1793 {
1794         VFS_FIND(setxattr);
1795         return handle->fns->setxattr(handle, path, name, value, size, flags);
1796 }
1797
1798 int smb_vfs_call_lsetxattr(struct vfs_handle_struct *handle, const char *path,
1799                            const char *name, const void *value, size_t size,
1800                            int flags)
1801 {
1802         VFS_FIND(lsetxattr);
1803         return handle->fns->lsetxattr(handle, path, name, value, size, flags);
1804 }
1805
1806 int smb_vfs_call_fsetxattr(struct vfs_handle_struct *handle,
1807                            struct files_struct *fsp, const char *name,
1808                            const void *value, size_t size, int flags)
1809 {
1810         VFS_FIND(fsetxattr);
1811         return handle->fns->fsetxattr(handle, fsp, name, value, size, flags);
1812 }
1813
1814 int smb_vfs_call_aio_read(struct vfs_handle_struct *handle,
1815                           struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
1816 {
1817         VFS_FIND(aio_read);
1818         return handle->fns->aio_read(handle, fsp, aiocb);
1819 }
1820
1821 int smb_vfs_call_aio_write(struct vfs_handle_struct *handle,
1822                            struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
1823 {
1824         VFS_FIND(aio_write);
1825         return handle->fns->aio_write(handle, fsp, aiocb);
1826 }
1827
1828 ssize_t smb_vfs_call_aio_return_fn(struct vfs_handle_struct *handle,
1829                                    struct files_struct *fsp,
1830                                    SMB_STRUCT_AIOCB *aiocb)
1831 {
1832         VFS_FIND(aio_return_fn);
1833         return handle->fns->aio_return_fn(handle, fsp, aiocb);
1834 }
1835
1836 int smb_vfs_call_aio_cancel(struct vfs_handle_struct *handle,
1837                             struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
1838 {
1839         VFS_FIND(aio_cancel);
1840         return handle->fns->aio_cancel(handle, fsp, aiocb);
1841 }
1842
1843 int smb_vfs_call_aio_error_fn(struct vfs_handle_struct *handle,
1844                               struct files_struct *fsp,
1845                               SMB_STRUCT_AIOCB *aiocb)
1846 {
1847         VFS_FIND(aio_error_fn);
1848         return handle->fns->aio_error_fn(handle, fsp, aiocb);
1849 }
1850
1851 int smb_vfs_call_aio_fsync(struct vfs_handle_struct *handle,
1852                            struct files_struct *fsp, int op,
1853                            SMB_STRUCT_AIOCB *aiocb)
1854 {
1855         VFS_FIND(aio_fsync);
1856         return handle->fns->aio_fsync(handle, fsp, op, aiocb);
1857 }
1858
1859 int smb_vfs_call_aio_suspend(struct vfs_handle_struct *handle,
1860                              struct files_struct *fsp,
1861                              const SMB_STRUCT_AIOCB * const aiocb[], int n,
1862                              const struct timespec *timeout)
1863 {
1864         VFS_FIND(aio_suspend);
1865         return handle->fns->aio_suspend(handle, fsp, aiocb, n, timeout);
1866 }
1867
1868 bool smb_vfs_call_aio_force(struct vfs_handle_struct *handle,
1869                             struct files_struct *fsp)
1870 {
1871         VFS_FIND(aio_force);
1872         return handle->fns->aio_force(handle, fsp);
1873 }
1874
1875 bool smb_vfs_call_is_offline(struct vfs_handle_struct *handle,
1876                              const char *path, SMB_STRUCT_STAT *sbuf)
1877 {
1878         VFS_FIND(is_offline);
1879         return handle->fns->is_offline(handle, path, sbuf);
1880 }
1881
1882 int smb_vfs_call_set_offline(struct vfs_handle_struct *handle,
1883                              const char *path)
1884 {
1885         VFS_FIND(set_offline);
1886         return handle->fns->set_offline(handle, path);
1887 }