cc8d410b5e46284f9a2d563cb923073dfffb824c
[samba.git] / source3 / modules / vfs_not_implemented.c
1 /*
2  * VFS module with "not implemented " helper functions for other modules.
3  *
4  * Copyright (C) Tim Potter, 1999-2000
5  * Copyright (C) Alexander Bokovoy, 2002
6  * Copyright (C) Stefan (metze) Metzmacher, 2003,2018
7  * Copyright (C) Jeremy Allison 2009
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, see <http://www.gnu.org/licenses/>.
21  */
22
23 #include "includes.h"
24 #include "lib/util/tevent_unix.h"
25 #include "lib/util/tevent_ntstatus.h"
26
27 int vfs_not_implemented_connect(
28                         vfs_handle_struct *handle,
29                         const char *service,
30                         const char *user)
31 {
32         errno = ENOSYS;
33         return -1;
34 }
35
36 void vfs_not_implemented_disconnect(vfs_handle_struct *handle)
37 {
38         ;
39 }
40
41 uint64_t vfs_not_implemented_disk_free(vfs_handle_struct *handle,
42                                 const struct smb_filename *smb_fname,
43                                 uint64_t *bsize,
44                                 uint64_t *dfree,
45                                 uint64_t *dsize)
46 {
47         *bsize = 0;
48         *dfree = 0;
49         *dsize = 0;
50         return 0;
51 }
52
53 int vfs_not_implemented_get_quota(vfs_handle_struct *handle,
54                                 const struct smb_filename *smb_fname,
55                                 enum SMB_QUOTA_TYPE qtype,
56                                 unid_t id,
57                                 SMB_DISK_QUOTA *dq)
58 {
59         errno = ENOSYS;
60         return -1;
61 }
62
63 int vfs_not_implemented_set_quota(vfs_handle_struct *handle,
64                                   enum SMB_QUOTA_TYPE qtype,
65                                   unid_t id, SMB_DISK_QUOTA *dq)
66 {
67         errno = ENOSYS;
68         return -1;
69 }
70
71 int vfs_not_implemented_get_shadow_copy_data(vfs_handle_struct *handle,
72                                 files_struct *fsp,
73                                 struct shadow_copy_data *shadow_copy_data,
74                                 bool labels)
75 {
76         errno = ENOSYS;
77         return -1;
78 }
79
80 int vfs_not_implemented_statvfs(struct vfs_handle_struct *handle,
81                                 const struct smb_filename *smb_fname,
82                                 struct vfs_statvfs_struct *statbuf)
83 {
84         errno = ENOSYS;
85         return -1;
86 }
87
88 uint32_t vfs_not_implemented_fs_capabilities(struct vfs_handle_struct *handle,
89                                 enum timestamp_set_resolution *p_ts_res)
90 {
91         return 0;
92 }
93
94 NTSTATUS vfs_not_implemented_get_dfs_referrals(struct vfs_handle_struct *handle,
95                                                struct dfs_GetDFSReferral *r)
96 {
97         return NT_STATUS_NOT_IMPLEMENTED;
98 }
99
100 NTSTATUS vfs_not_implemented_create_dfs_pathat(struct vfs_handle_struct *handle,
101                                 struct files_struct *dirfsp,
102                                 const struct smb_filename *smb_fname,
103                                 const struct referral *reflist,
104                                 size_t referral_count)
105 {
106         return NT_STATUS_NOT_IMPLEMENTED;
107 }
108
109 NTSTATUS vfs_not_implemented_read_dfs_pathat(struct vfs_handle_struct *handle,
110                                 TALLOC_CTX *mem_ctx,
111                                 struct files_struct *dirfsp,
112                                 struct smb_filename *smb_fname,
113                                 struct referral **ppreflist,
114                                 size_t *preferral_count)
115 {
116         return NT_STATUS_NOT_IMPLEMENTED;
117 }
118
119 NTSTATUS vfs_not_implemented_snap_check_path(struct vfs_handle_struct *handle,
120                                 TALLOC_CTX *mem_ctx,
121                                 const char *service_path,
122                                 char **base_volume)
123 {
124         return NT_STATUS_NOT_SUPPORTED;
125 }
126
127 NTSTATUS vfs_not_implemented_snap_create(struct vfs_handle_struct *handle,
128                                          TALLOC_CTX *mem_ctx,
129                                          const char *base_volume,
130                                          time_t *tstamp,
131                                          bool rw,
132                                          char **base_path,
133                                          char **snap_path)
134 {
135         return NT_STATUS_NOT_SUPPORTED;
136 }
137
138 NTSTATUS vfs_not_implemented_snap_delete(struct vfs_handle_struct *handle,
139                                          TALLOC_CTX *mem_ctx,
140                                          char *base_path,
141                                          char *snap_path)
142 {
143         return NT_STATUS_NOT_SUPPORTED;
144 }
145
146 DIR *vfs_not_implemented_fdopendir(vfs_handle_struct *handle, files_struct *fsp,
147                                    const char *mask, uint32_t attr)
148 {
149         errno = ENOSYS;
150         return NULL;
151 }
152
153 struct dirent *vfs_not_implemented_readdir(vfs_handle_struct *handle,
154                                            struct files_struct *dirfsp,
155                                            DIR *dirp,
156                                            SMB_STRUCT_STAT *sbuf)
157 {
158         errno = ENOSYS;
159         return NULL;
160 }
161
162 void vfs_not_implemented_seekdir(vfs_handle_struct *handle, DIR *dirp, long offset)
163 {
164         ;
165 }
166
167 long vfs_not_implemented_telldir(vfs_handle_struct *handle, DIR *dirp)
168 {
169         errno = ENOSYS;
170         return (long)-1;
171 }
172
173 void vfs_not_implemented_rewind_dir(vfs_handle_struct *handle, DIR *dirp)
174 {
175         ;
176 }
177
178 int vfs_not_implemented_mkdirat(vfs_handle_struct *handle,
179                 struct files_struct *dirfsp,
180                 const struct smb_filename *smb_fname,
181                 mode_t mode)
182 {
183         errno = ENOSYS;
184         return -1;
185 }
186
187 int vfs_not_implemented_closedir(vfs_handle_struct *handle, DIR *dir)
188 {
189         errno = ENOSYS;
190         return -1;
191 }
192
193 int vfs_not_implemented_openat(vfs_handle_struct *handle,
194                                const struct files_struct *dirfsp,
195                                const struct smb_filename *smb_fname,
196                                struct files_struct *fsp,
197                                int flags,
198                                mode_t mode)
199 {
200         errno = ENOSYS;
201         return -1;
202 }
203
204 NTSTATUS vfs_not_implemented_create_file(struct vfs_handle_struct *handle,
205                                 struct smb_request *req,
206                                 struct smb_filename *smb_fname,
207                                 uint32_t access_mask,
208                                 uint32_t share_access,
209                                 uint32_t create_disposition,
210                                 uint32_t create_options,
211                                 uint32_t file_attributes,
212                                 uint32_t oplock_request,
213                                 const struct smb2_lease *lease,
214                                 uint64_t allocation_size,
215                                 uint32_t private_flags,
216                                 struct security_descriptor *sd,
217                                 struct ea_list *ea_list,
218                                 files_struct **result, int *pinfo,
219                                 const struct smb2_create_blobs *in_context_blobs,
220                                 struct smb2_create_blobs *out_context_blobs)
221 {
222         return NT_STATUS_NOT_IMPLEMENTED;
223 }
224
225 int vfs_not_implemented_close_fn(vfs_handle_struct *handle, files_struct *fsp)
226 {
227         errno = ENOSYS;
228         return -1;
229 }
230
231 ssize_t vfs_not_implemented_pread(vfs_handle_struct *handle, files_struct *fsp,
232                                   void *data, size_t n, off_t offset)
233 {
234         errno = ENOSYS;
235         return -1;
236 }
237
238 struct tevent_req *vfs_not_implemented_pread_send(struct vfs_handle_struct *handle,
239                                                   TALLOC_CTX *mem_ctx,
240                                                   struct tevent_context *ev,
241                                                   struct files_struct *fsp,
242                                                   void *data, size_t n, off_t offset)
243 {
244         return NULL;
245 }
246
247 ssize_t vfs_not_implemented_pread_recv(struct tevent_req *req,
248                                        struct vfs_aio_state *vfs_aio_state)
249 {
250         vfs_aio_state->error = ENOSYS;
251         return -1;
252 }
253
254 ssize_t vfs_not_implemented_pwrite(vfs_handle_struct *handle, files_struct *fsp,
255                                    const void *data, size_t n, off_t offset)
256 {
257         errno = ENOSYS;
258         return -1;
259 }
260
261 struct tevent_req *vfs_not_implemented_pwrite_send(struct vfs_handle_struct *handle,
262                                                    TALLOC_CTX *mem_ctx,
263                                                    struct tevent_context *ev,
264                                                    struct files_struct *fsp,
265                                                    const void *data,
266                                                    size_t n, off_t offset)
267 {
268         return NULL;
269 }
270
271 ssize_t vfs_not_implemented_pwrite_recv(struct tevent_req *req,
272                                 struct vfs_aio_state *vfs_aio_state)
273 {
274         vfs_aio_state->error = ENOSYS;
275         return -1;
276 }
277
278 off_t vfs_not_implemented_lseek(vfs_handle_struct *handle, files_struct *fsp,
279                         off_t offset, int whence)
280 {
281         errno = ENOSYS;
282         return (off_t) - 1;
283 }
284
285 ssize_t vfs_not_implemented_sendfile(vfs_handle_struct *handle, int tofd,
286                                      files_struct *fromfsp, const DATA_BLOB *hdr,
287                                      off_t offset, size_t n)
288 {
289         errno = ENOSYS;
290         return -1;
291 }
292
293 ssize_t vfs_not_implemented_recvfile(vfs_handle_struct *handle, int fromfd,
294                                      files_struct *tofsp, off_t offset, size_t n)
295 {
296         errno = ENOSYS;
297         return -1;
298 }
299
300 int vfs_not_implemented_renameat(vfs_handle_struct *handle,
301                                files_struct *srcfsp,
302                                const struct smb_filename *smb_fname_src,
303                                files_struct *dstfsp,
304                                const struct smb_filename *smb_fname_dst)
305 {
306         errno = ENOSYS;
307         return -1;
308 }
309
310 struct tevent_req *vfs_not_implemented_fsync_send(struct vfs_handle_struct *handle,
311                                                   TALLOC_CTX *mem_ctx,
312                                                   struct tevent_context *ev,
313                                                   struct files_struct *fsp)
314 {
315         return NULL;
316 }
317
318 int vfs_not_implemented_fsync_recv(struct tevent_req *req,
319                                    struct vfs_aio_state *vfs_aio_state)
320 {
321         vfs_aio_state->error = ENOSYS;
322         return -1;
323 }
324
325 int vfs_not_implemented_stat(vfs_handle_struct *handle, struct smb_filename *smb_fname)
326 {
327         errno = ENOSYS;
328         return -1;
329 }
330
331 int vfs_not_implemented_fstat(vfs_handle_struct *handle, files_struct *fsp,
332                         SMB_STRUCT_STAT *sbuf)
333 {
334         errno = ENOSYS;
335         return -1;
336 }
337
338 int vfs_not_implemented_lstat(vfs_handle_struct *handle,
339                               struct smb_filename *smb_fname)
340 {
341         errno = ENOSYS;
342         return -1;
343 }
344
345 uint64_t vfs_not_implemented_get_alloc_size(struct vfs_handle_struct *handle,
346                                             struct files_struct *fsp,
347                                             const SMB_STRUCT_STAT *sbuf)
348 {
349         errno = ENOSYS;
350         return -1;
351 }
352
353 int vfs_not_implemented_unlinkat(vfs_handle_struct *handle,
354                         struct files_struct *dirfsp,
355                         const struct smb_filename *smb_fname,
356                         int flags)
357 {
358         errno = ENOSYS;
359         return -1;
360 }
361
362 int vfs_not_implemented_chmod(vfs_handle_struct *handle,
363                               const struct smb_filename *smb_fname,
364                               mode_t mode)
365 {
366         errno = ENOSYS;
367         return -1;
368 }
369
370 int vfs_not_implemented_fchmod(vfs_handle_struct *handle, files_struct *fsp,
371                                mode_t mode)
372 {
373         errno = ENOSYS;
374         return -1;
375 }
376
377 int vfs_not_implemented_fchown(vfs_handle_struct *handle, files_struct *fsp,
378                                uid_t uid, gid_t gid)
379 {
380         errno = ENOSYS;
381         return -1;
382 }
383
384 int vfs_not_implemented_lchown(vfs_handle_struct *handle,
385                                const struct smb_filename *smb_fname,
386                                uid_t uid,
387                                gid_t gid)
388 {
389         errno = ENOSYS;
390         return -1;
391 }
392
393 int vfs_not_implemented_chdir(vfs_handle_struct *handle,
394                               const struct smb_filename *smb_fname)
395 {
396         errno = ENOSYS;
397         return -1;
398 }
399
400 struct smb_filename *vfs_not_implemented_getwd(vfs_handle_struct *handle,
401                                                TALLOC_CTX *ctx)
402 {
403         errno = ENOSYS;
404         return NULL;
405 }
406
407 int vfs_not_implemented_ntimes(vfs_handle_struct *handle,
408                                const struct smb_filename *smb_fname,
409                                struct smb_file_time *ft)
410 {
411         errno = ENOSYS;
412         return -1;
413 }
414
415 int vfs_not_implemented_ftruncate(vfs_handle_struct *handle, files_struct *fsp,
416                                   off_t offset)
417 {
418         errno = ENOSYS;
419         return -1;
420 }
421
422 int vfs_not_implemented_fallocate(vfs_handle_struct *handle, files_struct *fsp,
423                                   uint32_t mode, off_t offset, off_t len)
424 {
425         errno = ENOSYS;
426         return -1;
427 }
428
429 bool vfs_not_implemented_lock(vfs_handle_struct *handle, files_struct *fsp, int op,
430                               off_t offset, off_t count, int type)
431 {
432         errno = ENOSYS;
433         return false;
434 }
435
436 int vfs_not_implemented_kernel_flock(struct vfs_handle_struct *handle,
437                                      struct files_struct *fsp,
438                                      uint32_t share_access, uint32_t access_mask)
439 {
440         errno = ENOSYS;
441         return -1;
442 }
443
444 int vfs_not_implemented_fcntl(struct vfs_handle_struct *handle,
445                               struct files_struct *fsp, int cmd,
446                               va_list cmd_arg)
447 {
448         errno = ENOSYS;
449         return -1;
450 }
451
452 int vfs_not_implemented_linux_setlease(struct vfs_handle_struct *handle,
453                                        struct files_struct *fsp, int leasetype)
454 {
455         errno = ENOSYS;
456         return -1;
457 }
458
459 bool vfs_not_implemented_getlock(vfs_handle_struct *handle, files_struct *fsp,
460                                  off_t *poffset, off_t *pcount, int *ptype,
461                                  pid_t *ppid)
462 {
463         errno = ENOSYS;
464         return false;
465 }
466
467 int vfs_not_implemented_symlinkat(vfs_handle_struct *handle,
468                                 const struct smb_filename *link_contents,
469                                 struct files_struct *dirfsp,
470                                 const struct smb_filename *new_smb_fname)
471 {
472         errno = ENOSYS;
473         return -1;
474 }
475
476 int vfs_not_implemented_vfs_readlinkat(vfs_handle_struct *handle,
477                         const struct files_struct *dirfsp,
478                         const struct smb_filename *smb_fname,
479                         char *buf,
480                         size_t bufsiz)
481 {
482         errno = ENOSYS;
483         return -1;
484 }
485
486 int vfs_not_implemented_linkat(vfs_handle_struct *handle,
487                         files_struct *srcfsp,
488                         const struct smb_filename *old_smb_fname,
489                         files_struct *dstfsp,
490                         const struct smb_filename *new_smb_fname,
491                         int flags)
492 {
493         errno = ENOSYS;
494         return -1;
495 }
496
497 int vfs_not_implemented_mknodat(vfs_handle_struct *handle,
498                         files_struct *dirfsp,
499                         const struct smb_filename *smb_fname,
500                         mode_t mode,
501                         SMB_DEV_T dev)
502 {
503         errno = ENOSYS;
504         return -1;
505 }
506
507 struct smb_filename *vfs_not_implemented_realpath(vfs_handle_struct *handle,
508                                                   TALLOC_CTX *ctx,
509                                                   const struct smb_filename *smb_fname)
510 {
511         errno = ENOSYS;
512         return NULL;
513 }
514
515 int vfs_not_implemented_chflags(vfs_handle_struct *handle,
516                                 const struct smb_filename *smb_fname,
517                                 uint flags)
518 {
519         errno = ENOSYS;
520         return -1;
521 }
522
523 struct file_id vfs_not_implemented_file_id_create(vfs_handle_struct *handle,
524                                                   const SMB_STRUCT_STAT *sbuf)
525 {
526         struct file_id id;
527         ZERO_STRUCT(id);
528         errno = ENOSYS;
529         return id;
530 }
531
532 uint64_t vfs_not_implemented_fs_file_id(vfs_handle_struct *handle,
533                                         const SMB_STRUCT_STAT *sbuf)
534 {
535         errno = ENOSYS;
536         return 0;
537 }
538
539 struct vfs_not_implemented_offload_read_state {
540         bool dummy;
541 };
542
543 struct tevent_req *vfs_not_implemented_offload_read_send(
544                         TALLOC_CTX *mem_ctx,
545                         struct tevent_context *ev,
546                         struct vfs_handle_struct *handle,
547                         struct files_struct *fsp,
548                         uint32_t fsctl,
549                         uint32_t ttl,
550                         off_t offset,
551                         size_t to_copy)
552 {
553         struct tevent_req *req = NULL;
554         struct vfs_not_implemented_offload_read_state *state = NULL;
555
556         req = tevent_req_create(mem_ctx, &state,
557                                 struct vfs_not_implemented_offload_read_state);
558         if (req == NULL) {
559                 return NULL;
560         }
561
562         tevent_req_nterror(req, NT_STATUS_NOT_IMPLEMENTED);
563         return tevent_req_post(req, ev);
564 }
565
566 NTSTATUS vfs_not_implemented_offload_read_recv(struct tevent_req *req,
567                                        struct vfs_handle_struct *handle,
568                                        TALLOC_CTX *mem_ctx,
569                                        DATA_BLOB *_token_blob)
570 {
571         NTSTATUS status;
572
573         if (tevent_req_is_nterror(req, &status)) {
574                 tevent_req_received(req);
575                 return status;
576         }
577
578         tevent_req_received(req);
579         return NT_STATUS_OK;
580 }
581
582 struct vfs_not_implemented_offload_write_state {
583         uint64_t unused;
584 };
585
586 struct tevent_req *vfs_not_implemented_offload_write_send(
587                         struct vfs_handle_struct *handle,
588                         TALLOC_CTX *mem_ctx,
589                         struct tevent_context *ev,
590                         uint32_t fsctl,
591                         DATA_BLOB *token,
592                         off_t transfer_offset,
593                         struct files_struct *dest_fsp,
594                         off_t dest_off,
595                         off_t num)
596 {
597         struct tevent_req *req;
598         struct vfs_not_implemented_offload_write_state *state;
599
600         req = tevent_req_create(mem_ctx, &state,
601                                 struct vfs_not_implemented_offload_write_state);
602         if (req == NULL) {
603                 return NULL;
604         }
605
606         tevent_req_nterror(req, NT_STATUS_NOT_IMPLEMENTED);
607         return tevent_req_post(req, ev);
608 }
609
610 NTSTATUS vfs_not_implemented_offload_write_recv(struct vfs_handle_struct *handle,
611                                                 struct tevent_req *req,
612                                                 off_t *copied)
613 {
614         NTSTATUS status;
615
616         if (tevent_req_is_nterror(req, &status)) {
617                 tevent_req_received(req);
618                 return status;
619         }
620
621         tevent_req_received(req);
622         return NT_STATUS_OK;
623 }
624
625 NTSTATUS vfs_not_implemented_get_compression(struct vfs_handle_struct *handle,
626                                              TALLOC_CTX *mem_ctx,
627                                              struct files_struct *fsp,
628                                              struct smb_filename *smb_fname,
629                                              uint16_t *_compression_fmt)
630 {
631         return NT_STATUS_INVALID_DEVICE_REQUEST;
632 }
633
634 NTSTATUS vfs_not_implemented_set_compression(struct vfs_handle_struct *handle,
635                                              TALLOC_CTX *mem_ctx,
636                                              struct files_struct *fsp,
637                                              uint16_t compression_fmt)
638 {
639         return NT_STATUS_INVALID_DEVICE_REQUEST;
640 }
641
642 NTSTATUS vfs_not_implemented_streaminfo(struct vfs_handle_struct *handle,
643                                         struct files_struct *fsp,
644                                         const struct smb_filename *smb_fname,
645                                         TALLOC_CTX *mem_ctx,
646                                         unsigned int *num_streams,
647                                         struct stream_struct **streams)
648 {
649         return NT_STATUS_NOT_IMPLEMENTED;
650 }
651
652 int vfs_not_implemented_get_real_filename(struct vfs_handle_struct *handle,
653                                           const struct smb_filename *path,
654                                           const char *name,
655                                           TALLOC_CTX *mem_ctx,
656                                           char **found_name)
657 {
658         errno = ENOSYS;
659         return -1;
660 }
661
662 const char *vfs_not_implemented_connectpath(struct vfs_handle_struct *handle,
663                                             const struct smb_filename *smb_fname)
664 {
665         errno = ENOSYS;
666         return NULL;
667 }
668
669 NTSTATUS vfs_not_implemented_brl_lock_windows(struct vfs_handle_struct *handle,
670                                               struct byte_range_lock *br_lck,
671                                               struct lock_struct *plock)
672 {
673         return NT_STATUS_NOT_IMPLEMENTED;
674 }
675
676 bool vfs_not_implemented_brl_unlock_windows(struct vfs_handle_struct *handle,
677                                             struct byte_range_lock *br_lck,
678                                             const struct lock_struct *plock)
679 {
680         errno = ENOSYS;
681         return false;
682 }
683
684 bool vfs_not_implemented_strict_lock_check(struct vfs_handle_struct *handle,
685                                            struct files_struct *fsp,
686                                            struct lock_struct *plock)
687 {
688         errno = ENOSYS;
689         return false;
690 }
691
692 NTSTATUS vfs_not_implemented_translate_name(struct vfs_handle_struct *handle,
693                                             const char *mapped_name,
694                                             enum vfs_translate_direction direction,
695                                             TALLOC_CTX *mem_ctx, char **pmapped_name)
696 {
697         return NT_STATUS_NOT_IMPLEMENTED;
698 }
699
700 NTSTATUS vfs_not_implemented_fsctl(struct vfs_handle_struct *handle,
701                                    struct files_struct *fsp,
702                                    TALLOC_CTX *ctx,
703                                    uint32_t function,
704                                    uint16_t req_flags,  /* Needed for UNICODE ... */
705                                    const uint8_t *_in_data,
706                                    uint32_t in_len,
707                                    uint8_t **_out_data,
708                                    uint32_t max_out_len, uint32_t *out_len)
709 {
710         return NT_STATUS_NOT_IMPLEMENTED;
711 }
712
713 NTSTATUS vfs_not_implemented_readdir_attr(struct vfs_handle_struct *handle,
714                                           const struct smb_filename *fname,
715                                           TALLOC_CTX *mem_ctx,
716                                           struct readdir_attr_data **pattr_data)
717 {
718         return NT_STATUS_NOT_IMPLEMENTED;
719 }
720
721 struct vfs_not_implemented_get_dos_attributes_state {
722         struct vfs_aio_state aio_state;
723         uint32_t dosmode;
724 };
725
726 struct tevent_req *vfs_not_implemented_get_dos_attributes_send(
727                         TALLOC_CTX *mem_ctx,
728                         struct tevent_context *ev,
729                         struct vfs_handle_struct *handle,
730                         files_struct *dir_fsp,
731                         struct smb_filename *smb_fname)
732 {
733         struct tevent_req *req = NULL;
734         struct vfs_not_implemented_get_dos_attributes_state *state = NULL;
735
736         req = tevent_req_create(mem_ctx, &state,
737                         struct vfs_not_implemented_get_dos_attributes_state);
738         if (req == NULL) {
739                 return NULL;
740         }
741
742         tevent_req_nterror(req, NT_STATUS_NOT_IMPLEMENTED);
743         return tevent_req_post(req, ev);
744 }
745
746 NTSTATUS vfs_not_implemented_get_dos_attributes_recv(
747                         struct tevent_req *req,
748                         struct vfs_aio_state *aio_state,
749                         uint32_t *dosmode)
750 {
751         struct vfs_not_implemented_get_dos_attributes_state *state =
752                 tevent_req_data(req,
753                 struct vfs_not_implemented_get_dos_attributes_state);
754         NTSTATUS status;
755
756         if (tevent_req_is_nterror(req, &status)) {
757                 tevent_req_received(req);
758                 return status;
759         }
760
761         *aio_state = state->aio_state;
762         *dosmode = state->dosmode;
763         tevent_req_received(req);
764         return NT_STATUS_OK;
765 }
766
767 NTSTATUS vfs_not_implemented_fget_dos_attributes(struct vfs_handle_struct *handle,
768                                                  struct files_struct *fsp,
769                                                  uint32_t *dosmode)
770 {
771         return NT_STATUS_NOT_IMPLEMENTED;
772 }
773
774 NTSTATUS vfs_not_implemented_set_dos_attributes(struct vfs_handle_struct *handle,
775                                                 const struct smb_filename *smb_fname,
776                                                 uint32_t dosmode)
777 {
778         return NT_STATUS_NOT_IMPLEMENTED;
779 }
780
781 NTSTATUS vfs_not_implemented_fset_dos_attributes(struct vfs_handle_struct *handle,
782                                                  struct files_struct *fsp,
783                                                  uint32_t dosmode)
784 {
785         return NT_STATUS_NOT_IMPLEMENTED;
786 }
787
788 NTSTATUS vfs_not_implemented_fget_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
789                                          uint32_t security_info,
790                                          TALLOC_CTX *mem_ctx,
791                                          struct security_descriptor **ppdesc)
792 {
793         return NT_STATUS_NOT_IMPLEMENTED;
794 }
795
796 NTSTATUS vfs_not_implemented_get_nt_acl_at(vfs_handle_struct *handle,
797                                         struct files_struct *dirfsp,
798                                         const struct smb_filename *smb_fname,
799                                         uint32_t security_info,
800                                         TALLOC_CTX *mem_ctx,
801                                         struct security_descriptor **ppdesc)
802 {
803         return NT_STATUS_NOT_IMPLEMENTED;
804 }
805
806 NTSTATUS vfs_not_implemented_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
807                                          uint32_t security_info_sent,
808                                          const struct security_descriptor *psd)
809 {
810         return NT_STATUS_NOT_IMPLEMENTED;
811 }
812
813 SMB_ACL_T vfs_not_implemented_sys_acl_get_file(vfs_handle_struct *handle,
814                                                const struct smb_filename *smb_fname,
815                                                SMB_ACL_TYPE_T type,
816                                                TALLOC_CTX *mem_ctx)
817 {
818         errno = ENOSYS;
819         return (SMB_ACL_T) NULL;
820 }
821
822 SMB_ACL_T vfs_not_implemented_sys_acl_get_fd(vfs_handle_struct *handle,
823                                              files_struct *fsp, TALLOC_CTX *mem_ctx)
824 {
825         errno = ENOSYS;
826         return (SMB_ACL_T) NULL;
827 }
828
829 int vfs_not_implemented_sys_acl_blob_get_file(vfs_handle_struct *handle,
830                                 const struct smb_filename *smb_fname,
831                                 TALLOC_CTX *mem_ctx,
832                                 char **blob_description,
833                                 DATA_BLOB *blob)
834 {
835         errno = ENOSYS;
836         return -1;
837 }
838
839 int vfs_not_implemented_sys_acl_blob_get_fd(vfs_handle_struct *handle,
840                                 files_struct *fsp, TALLOC_CTX *mem_ctx,
841                                 char **blob_description, DATA_BLOB *blob)
842 {
843         errno = ENOSYS;
844         return -1;
845 }
846
847 int vfs_not_implemented_sys_acl_set_file(vfs_handle_struct *handle,
848                                 const struct smb_filename *smb_fname,
849                                 SMB_ACL_TYPE_T acltype,
850                                 SMB_ACL_T theacl)
851 {
852         errno = ENOSYS;
853         return -1;
854 }
855
856 int vfs_not_implemented_sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp,
857                                        SMB_ACL_T theacl)
858 {
859         errno = ENOSYS;
860         return -1;
861 }
862
863 int vfs_not_implemented_sys_acl_delete_def_file(vfs_handle_struct *handle,
864                                         const struct smb_filename *smb_fname)
865 {
866         errno = ENOSYS;
867         return -1;
868 }
869
870 ssize_t vfs_not_implemented_getxattr(vfs_handle_struct *handle,
871                                 const struct smb_filename *smb_fname,
872                                 const char *name,
873                                 void *value,
874                                 size_t size)
875 {
876         errno = ENOSYS;
877         return -1;
878 }
879
880 struct vfs_not_implemented_getxattrat_state {
881         struct vfs_aio_state aio_state;
882         ssize_t xattr_size;
883         uint8_t *xattr_value;
884 };
885
886 struct tevent_req *vfs_not_implemented_getxattrat_send(
887                         TALLOC_CTX *mem_ctx,
888                         struct tevent_context *ev,
889                         struct vfs_handle_struct *handle,
890                         files_struct *dir_fsp,
891                         const struct smb_filename *smb_fname,
892                         const char *xattr_name,
893                         size_t alloc_hint)
894 {
895         struct tevent_req *req = NULL;
896         struct vfs_not_implemented_getxattrat_state *state = NULL;
897
898         req = tevent_req_create(mem_ctx, &state,
899                                 struct vfs_not_implemented_getxattrat_state);
900         if (req == NULL) {
901                 return NULL;
902         }
903
904         tevent_req_error(req, ENOSYS);
905         return tevent_req_post(req, ev);
906 }
907
908 ssize_t vfs_not_implemented_getxattrat_recv(struct tevent_req *req,
909                                     struct vfs_aio_state *aio_state,
910                                     TALLOC_CTX *mem_ctx,
911                                     uint8_t **xattr_value)
912 {
913         struct vfs_not_implemented_getxattrat_state *state = tevent_req_data(
914                 req, struct vfs_not_implemented_getxattrat_state);
915         ssize_t xattr_size;
916
917         if (tevent_req_is_unix_error(req, &aio_state->error)) {
918                 tevent_req_received(req);
919                 return -1;
920         }
921
922         *aio_state = state->aio_state;
923         xattr_size = state->xattr_size;
924         if (xattr_value != NULL) {
925                 *xattr_value = talloc_move(mem_ctx, &state->xattr_value);
926         }
927
928         tevent_req_received(req);
929         return xattr_size;
930 }
931
932 ssize_t vfs_not_implemented_fgetxattr(vfs_handle_struct *handle,
933                               struct files_struct *fsp, const char *name,
934                               void *value, size_t size)
935 {
936         errno = ENOSYS;
937         return -1;
938 }
939
940 ssize_t vfs_not_implemented_listxattr(vfs_handle_struct *handle,
941                                       const struct smb_filename *smb_fname,
942                                       char *list,
943                                       size_t size)
944 {
945         errno = ENOSYS;
946         return -1;
947 }
948
949 ssize_t vfs_not_implemented_flistxattr(vfs_handle_struct *handle,
950                                        struct files_struct *fsp, char *list,
951                                        size_t size)
952 {
953         errno = ENOSYS;
954         return -1;
955 }
956
957 int vfs_not_implemented_removexattr(vfs_handle_struct *handle,
958                                     const struct smb_filename *smb_fname,
959                                     const char *name)
960 {
961         errno = ENOSYS;
962         return -1;
963 }
964
965 int vfs_not_implemented_fremovexattr(vfs_handle_struct *handle,
966                                      struct files_struct *fsp, const char *name)
967 {
968         errno = ENOSYS;
969         return -1;
970 }
971
972 int vfs_not_implemented_setxattr(vfs_handle_struct *handle,
973                                  const struct smb_filename *smb_fname,
974                                  const char *name,
975                                  const void *value,
976                                  size_t size,
977                                  int flags)
978 {
979         errno = ENOSYS;
980         return -1;
981 }
982
983 int vfs_not_implemented_fsetxattr(vfs_handle_struct *handle, struct files_struct *fsp,
984                                   const char *name, const void *value, size_t size,
985                                   int flags)
986 {
987         errno = ENOSYS;
988         return -1;
989 }
990
991 bool vfs_not_implemented_aio_force(struct vfs_handle_struct *handle,
992                                    struct files_struct *fsp)
993 {
994         errno = ENOSYS;
995         return false;
996 }
997
998 NTSTATUS vfs_not_implemented_audit_file(struct vfs_handle_struct *handle,
999                                         struct smb_filename *file,
1000                                         struct security_acl *sacl,
1001                                         uint32_t access_requested,
1002                                         uint32_t access_denied)
1003 {
1004         return NT_STATUS_NOT_IMPLEMENTED;
1005 }
1006
1007 NTSTATUS vfs_not_implemented_durable_cookie(struct vfs_handle_struct *handle,
1008                                             struct files_struct *fsp,
1009                                             TALLOC_CTX *mem_ctx,
1010                                             DATA_BLOB *cookie)
1011 {
1012         return NT_STATUS_NOT_IMPLEMENTED;
1013 }
1014
1015 NTSTATUS vfs_not_implemented_durable_disconnect(struct vfs_handle_struct *handle,
1016                                                 struct files_struct *fsp,
1017                                                 const DATA_BLOB old_cookie,
1018                                                 TALLOC_CTX *mem_ctx,
1019                                                 DATA_BLOB *new_cookie)
1020 {
1021         return NT_STATUS_NOT_IMPLEMENTED;
1022 }
1023
1024 NTSTATUS vfs_not_implemented_durable_reconnect(struct vfs_handle_struct *handle,
1025                                                struct smb_request *smb1req,
1026                                                struct smbXsrv_open *op,
1027                                                const DATA_BLOB old_cookie,
1028                                                TALLOC_CTX *mem_ctx,
1029                                                struct files_struct **fsp,
1030                                                DATA_BLOB *new_cookie)
1031 {
1032         return NT_STATUS_NOT_IMPLEMENTED;
1033 }
1034
1035 /* VFS operations structure */
1036
1037 static struct vfs_fn_pointers vfs_not_implemented_fns = {
1038         /* Disk operations */
1039
1040         .connect_fn = vfs_not_implemented_connect,
1041         .disconnect_fn = vfs_not_implemented_disconnect,
1042         .disk_free_fn = vfs_not_implemented_disk_free,
1043         .get_quota_fn = vfs_not_implemented_get_quota,
1044         .set_quota_fn = vfs_not_implemented_set_quota,
1045         .get_shadow_copy_data_fn = vfs_not_implemented_get_shadow_copy_data,
1046         .statvfs_fn = vfs_not_implemented_statvfs,
1047         .fs_capabilities_fn = vfs_not_implemented_fs_capabilities,
1048         .get_dfs_referrals_fn = vfs_not_implemented_get_dfs_referrals,
1049         .create_dfs_pathat_fn = vfs_not_implemented_create_dfs_pathat,
1050         .read_dfs_pathat_fn = vfs_not_implemented_read_dfs_pathat,
1051         .snap_check_path_fn = vfs_not_implemented_snap_check_path,
1052         .snap_create_fn = vfs_not_implemented_snap_create,
1053         .snap_delete_fn = vfs_not_implemented_snap_delete,
1054
1055         /* Directory operations */
1056
1057         .fdopendir_fn = vfs_not_implemented_fdopendir,
1058         .readdir_fn = vfs_not_implemented_readdir,
1059         .seekdir_fn = vfs_not_implemented_seekdir,
1060         .telldir_fn = vfs_not_implemented_telldir,
1061         .rewind_dir_fn = vfs_not_implemented_rewind_dir,
1062         .mkdirat_fn = vfs_not_implemented_mkdirat,
1063         .closedir_fn = vfs_not_implemented_closedir,
1064
1065         /* File operations */
1066
1067         .openat_fn = vfs_not_implemented_openat,
1068         .create_file_fn = vfs_not_implemented_create_file,
1069         .close_fn = vfs_not_implemented_close_fn,
1070         .pread_fn = vfs_not_implemented_pread,
1071         .pread_send_fn = vfs_not_implemented_pread_send,
1072         .pread_recv_fn = vfs_not_implemented_pread_recv,
1073         .pwrite_fn = vfs_not_implemented_pwrite,
1074         .pwrite_send_fn = vfs_not_implemented_pwrite_send,
1075         .pwrite_recv_fn = vfs_not_implemented_pwrite_recv,
1076         .lseek_fn = vfs_not_implemented_lseek,
1077         .sendfile_fn = vfs_not_implemented_sendfile,
1078         .recvfile_fn = vfs_not_implemented_recvfile,
1079         .renameat_fn = vfs_not_implemented_renameat,
1080         .fsync_send_fn = vfs_not_implemented_fsync_send,
1081         .fsync_recv_fn = vfs_not_implemented_fsync_recv,
1082         .stat_fn = vfs_not_implemented_stat,
1083         .fstat_fn = vfs_not_implemented_fstat,
1084         .lstat_fn = vfs_not_implemented_lstat,
1085         .get_alloc_size_fn = vfs_not_implemented_get_alloc_size,
1086         .unlinkat_fn = vfs_not_implemented_unlinkat,
1087         .chmod_fn = vfs_not_implemented_chmod,
1088         .fchmod_fn = vfs_not_implemented_fchmod,
1089         .fchown_fn = vfs_not_implemented_fchown,
1090         .lchown_fn = vfs_not_implemented_lchown,
1091         .chdir_fn = vfs_not_implemented_chdir,
1092         .getwd_fn = vfs_not_implemented_getwd,
1093         .ntimes_fn = vfs_not_implemented_ntimes,
1094         .ftruncate_fn = vfs_not_implemented_ftruncate,
1095         .fallocate_fn = vfs_not_implemented_fallocate,
1096         .lock_fn = vfs_not_implemented_lock,
1097         .kernel_flock_fn = vfs_not_implemented_kernel_flock,
1098         .fcntl_fn = vfs_not_implemented_fcntl,
1099         .linux_setlease_fn = vfs_not_implemented_linux_setlease,
1100         .getlock_fn = vfs_not_implemented_getlock,
1101         .symlinkat_fn = vfs_not_implemented_symlinkat,
1102         .readlinkat_fn = vfs_not_implemented_vfs_readlinkat,
1103         .linkat_fn = vfs_not_implemented_linkat,
1104         .mknodat_fn = vfs_not_implemented_mknodat,
1105         .realpath_fn = vfs_not_implemented_realpath,
1106         .chflags_fn = vfs_not_implemented_chflags,
1107         .file_id_create_fn = vfs_not_implemented_file_id_create,
1108         .fs_file_id_fn = vfs_not_implemented_fs_file_id,
1109         .offload_read_send_fn = vfs_not_implemented_offload_read_send,
1110         .offload_read_recv_fn = vfs_not_implemented_offload_read_recv,
1111         .offload_write_send_fn = vfs_not_implemented_offload_write_send,
1112         .offload_write_recv_fn = vfs_not_implemented_offload_write_recv,
1113         .get_compression_fn = vfs_not_implemented_get_compression,
1114         .set_compression_fn = vfs_not_implemented_set_compression,
1115
1116         .streaminfo_fn = vfs_not_implemented_streaminfo,
1117         .get_real_filename_fn = vfs_not_implemented_get_real_filename,
1118         .connectpath_fn = vfs_not_implemented_connectpath,
1119         .brl_lock_windows_fn = vfs_not_implemented_brl_lock_windows,
1120         .brl_unlock_windows_fn = vfs_not_implemented_brl_unlock_windows,
1121         .strict_lock_check_fn = vfs_not_implemented_strict_lock_check,
1122         .translate_name_fn = vfs_not_implemented_translate_name,
1123         .fsctl_fn = vfs_not_implemented_fsctl,
1124         .readdir_attr_fn = vfs_not_implemented_readdir_attr,
1125         .audit_file_fn = vfs_not_implemented_audit_file,
1126
1127         /* DOS attributes. */
1128         .get_dos_attributes_send_fn = vfs_not_implemented_get_dos_attributes_send,
1129         .get_dos_attributes_recv_fn = vfs_not_implemented_get_dos_attributes_recv,
1130         .fget_dos_attributes_fn = vfs_not_implemented_fget_dos_attributes,
1131         .set_dos_attributes_fn = vfs_not_implemented_set_dos_attributes,
1132         .fset_dos_attributes_fn = vfs_not_implemented_fset_dos_attributes,
1133
1134         /* NT ACL operations. */
1135
1136         .fget_nt_acl_fn = vfs_not_implemented_fget_nt_acl,
1137         .get_nt_acl_at_fn = vfs_not_implemented_get_nt_acl_at,
1138         .fset_nt_acl_fn = vfs_not_implemented_fset_nt_acl,
1139
1140         /* POSIX ACL operations. */
1141
1142         .sys_acl_get_file_fn = vfs_not_implemented_sys_acl_get_file,
1143         .sys_acl_get_fd_fn = vfs_not_implemented_sys_acl_get_fd,
1144         .sys_acl_blob_get_file_fn = vfs_not_implemented_sys_acl_blob_get_file,
1145         .sys_acl_blob_get_fd_fn = vfs_not_implemented_sys_acl_blob_get_fd,
1146         .sys_acl_set_file_fn = vfs_not_implemented_sys_acl_set_file,
1147         .sys_acl_set_fd_fn = vfs_not_implemented_sys_acl_set_fd,
1148         .sys_acl_delete_def_file_fn = vfs_not_implemented_sys_acl_delete_def_file,
1149
1150         /* EA operations. */
1151         .getxattr_fn = vfs_not_implemented_getxattr,
1152         .getxattrat_send_fn = vfs_not_implemented_getxattrat_send,
1153         .getxattrat_recv_fn = vfs_not_implemented_getxattrat_recv,
1154         .fgetxattr_fn = vfs_not_implemented_fgetxattr,
1155         .listxattr_fn = vfs_not_implemented_listxattr,
1156         .flistxattr_fn = vfs_not_implemented_flistxattr,
1157         .removexattr_fn = vfs_not_implemented_removexattr,
1158         .fremovexattr_fn = vfs_not_implemented_fremovexattr,
1159         .setxattr_fn = vfs_not_implemented_setxattr,
1160         .fsetxattr_fn = vfs_not_implemented_fsetxattr,
1161
1162         /* aio operations */
1163         .aio_force_fn = vfs_not_implemented_aio_force,
1164
1165         /* durable handle operations */
1166         .durable_cookie_fn = vfs_not_implemented_durable_cookie,
1167         .durable_disconnect_fn = vfs_not_implemented_durable_disconnect,
1168         .durable_reconnect_fn = vfs_not_implemented_durable_reconnect,
1169 };
1170
1171 static_decl_vfs;
1172 NTSTATUS vfs_not_implemented_init(TALLOC_CTX *ctx)
1173 {
1174         /*
1175          * smb_vfs_assert_all_fns() makes sure every
1176          * call is implemented.
1177          */
1178         smb_vfs_assert_all_fns(&vfs_not_implemented_fns, "vfs_not_implemented");
1179         return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "vfs_not_implemented",
1180                                 &vfs_not_implemented_fns);
1181 }