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