1 | /*
|
---|
2 | * Skeleton VFS module. Implements dummy versions of all VFS
|
---|
3 | * functions.
|
---|
4 | *
|
---|
5 | * Copyright (C) Tim Potter, 1999-2000
|
---|
6 | * Copyright (C) Alexander Bokovoy, 2002
|
---|
7 | * Copyright (C) Stefan (metze) Metzmacher, 2003
|
---|
8 | * Copyright (C) Jeremy Allison 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 |
|
---|
24 |
|
---|
25 | #include "includes.h"
|
---|
26 | #include "smbd/proto.h"
|
---|
27 |
|
---|
28 | /* PLEASE,PLEASE READ THE VFS MODULES CHAPTER OF THE
|
---|
29 | SAMBA DEVELOPERS GUIDE!!!!!!
|
---|
30 | */
|
---|
31 |
|
---|
32 | /* If you take this file as template for your module
|
---|
33 | * you must re-implement every function.
|
---|
34 | */
|
---|
35 |
|
---|
36 | static int skel_connect(vfs_handle_struct *handle, const char *service, const char *user)
|
---|
37 | {
|
---|
38 | errno = ENOSYS;
|
---|
39 | return -1;
|
---|
40 | }
|
---|
41 |
|
---|
42 | static void skel_disconnect(vfs_handle_struct *handle)
|
---|
43 | {
|
---|
44 | ;
|
---|
45 | }
|
---|
46 |
|
---|
47 | static uint64_t skel_disk_free(vfs_handle_struct *handle, const char *path,
|
---|
48 | bool small_query, uint64_t *bsize,
|
---|
49 | uint64_t *dfree, uint64_t *dsize)
|
---|
50 | {
|
---|
51 | *bsize = 0;
|
---|
52 | *dfree = 0;
|
---|
53 | *dsize = 0;
|
---|
54 | return 0;
|
---|
55 | }
|
---|
56 |
|
---|
57 | static int skel_get_quota(vfs_handle_struct *handle, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dq)
|
---|
58 | {
|
---|
59 | errno = ENOSYS;
|
---|
60 | return -1;
|
---|
61 | }
|
---|
62 |
|
---|
63 | static int skel_set_quota(vfs_handle_struct *handle, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dq)
|
---|
64 | {
|
---|
65 | errno = ENOSYS;
|
---|
66 | return -1;
|
---|
67 | }
|
---|
68 |
|
---|
69 | static int skel_get_shadow_copy_data(vfs_handle_struct *handle, files_struct *fsp, struct shadow_copy_data *shadow_copy_data, bool labels)
|
---|
70 | {
|
---|
71 | errno = ENOSYS;
|
---|
72 | return -1;
|
---|
73 | }
|
---|
74 |
|
---|
75 | static int skel_statvfs(struct vfs_handle_struct *handle, const char *path, struct vfs_statvfs_struct *statbuf)
|
---|
76 | {
|
---|
77 | errno = ENOSYS;
|
---|
78 | return -1;
|
---|
79 | }
|
---|
80 |
|
---|
81 | static uint32_t skel_fs_capabilities(struct vfs_handle_struct *handle, enum timestamp_set_resolution *p_ts_res)
|
---|
82 | {
|
---|
83 | return 0;
|
---|
84 | }
|
---|
85 |
|
---|
86 | static SMB_STRUCT_DIR *skel_opendir(vfs_handle_struct *handle, const char *fname, const char *mask, uint32 attr)
|
---|
87 | {
|
---|
88 | return NULL;
|
---|
89 | }
|
---|
90 |
|
---|
91 | static SMB_STRUCT_DIR *skel_fdopendir(vfs_handle_struct *handle, files_struct *fsp, const char *mask, uint32 attr)
|
---|
92 | {
|
---|
93 | return NULL;
|
---|
94 | }
|
---|
95 |
|
---|
96 | static SMB_STRUCT_DIRENT *skel_readdir(vfs_handle_struct *handle,
|
---|
97 | SMB_STRUCT_DIR *dirp,
|
---|
98 | SMB_STRUCT_STAT *sbuf)
|
---|
99 | {
|
---|
100 | return NULL;
|
---|
101 | }
|
---|
102 |
|
---|
103 | static void skel_seekdir(vfs_handle_struct *handle, SMB_STRUCT_DIR *dirp, long offset)
|
---|
104 | {
|
---|
105 | ;
|
---|
106 | }
|
---|
107 |
|
---|
108 | static long skel_telldir(vfs_handle_struct *handle, SMB_STRUCT_DIR *dirp)
|
---|
109 | {
|
---|
110 | return (long)-1;
|
---|
111 | }
|
---|
112 |
|
---|
113 | static void skel_rewind_dir(vfs_handle_struct *handle, SMB_STRUCT_DIR *dirp)
|
---|
114 | {
|
---|
115 | ;
|
---|
116 | }
|
---|
117 |
|
---|
118 | static int skel_mkdir(vfs_handle_struct *handle, const char *path, mode_t mode)
|
---|
119 | {
|
---|
120 | errno = ENOSYS;
|
---|
121 | return -1;
|
---|
122 | }
|
---|
123 |
|
---|
124 | static int skel_rmdir(vfs_handle_struct *handle, const char *path)
|
---|
125 | {
|
---|
126 | errno = ENOSYS;
|
---|
127 | return -1;
|
---|
128 | }
|
---|
129 |
|
---|
130 | static int skel_closedir(vfs_handle_struct *handle, SMB_STRUCT_DIR *dir)
|
---|
131 | {
|
---|
132 | errno = ENOSYS;
|
---|
133 | return -1;
|
---|
134 | }
|
---|
135 |
|
---|
136 | static void skel_init_search_op(struct vfs_handle_struct *handle, SMB_STRUCT_DIR *dirp)
|
---|
137 | {
|
---|
138 | ;
|
---|
139 | }
|
---|
140 |
|
---|
141 | static int skel_open(vfs_handle_struct *handle, struct smb_filename *smb_fname,
|
---|
142 | files_struct *fsp, int flags, mode_t mode)
|
---|
143 | {
|
---|
144 | errno = ENOSYS;
|
---|
145 | return -1;
|
---|
146 | }
|
---|
147 |
|
---|
148 | static NTSTATUS skel_create_file(struct vfs_handle_struct *handle,
|
---|
149 | struct smb_request *req,
|
---|
150 | uint16_t root_dir_fid,
|
---|
151 | struct smb_filename *smb_fname,
|
---|
152 | uint32_t access_mask,
|
---|
153 | uint32_t share_access,
|
---|
154 | uint32_t create_disposition,
|
---|
155 | uint32_t create_options,
|
---|
156 | uint32_t file_attributes,
|
---|
157 | uint32_t oplock_request,
|
---|
158 | uint64_t allocation_size,
|
---|
159 | uint32_t private_flags,
|
---|
160 | struct security_descriptor *sd,
|
---|
161 | struct ea_list *ea_list,
|
---|
162 | files_struct **result,
|
---|
163 | int *pinfo)
|
---|
164 | {
|
---|
165 | return NT_STATUS_NOT_IMPLEMENTED;
|
---|
166 | }
|
---|
167 |
|
---|
168 | static int skel_close_fn(vfs_handle_struct *handle, files_struct *fsp)
|
---|
169 | {
|
---|
170 | errno = ENOSYS;
|
---|
171 | return -1;
|
---|
172 | }
|
---|
173 |
|
---|
174 | static ssize_t skel_vfs_read(vfs_handle_struct *handle, files_struct *fsp, void *data, size_t n)
|
---|
175 | {
|
---|
176 | errno = ENOSYS;
|
---|
177 | return -1;
|
---|
178 | }
|
---|
179 |
|
---|
180 | static ssize_t skel_pread(vfs_handle_struct *handle, files_struct *fsp, void *data, size_t n, SMB_OFF_T offset)
|
---|
181 | {
|
---|
182 | errno = ENOSYS;
|
---|
183 | return -1;
|
---|
184 | }
|
---|
185 |
|
---|
186 | static ssize_t skel_write(vfs_handle_struct *handle, files_struct *fsp, const void *data, size_t n)
|
---|
187 | {
|
---|
188 | errno = ENOSYS;
|
---|
189 | return -1;
|
---|
190 | }
|
---|
191 |
|
---|
192 | static ssize_t skel_pwrite(vfs_handle_struct *handle, files_struct *fsp, const void *data, size_t n, SMB_OFF_T offset)
|
---|
193 | {
|
---|
194 | errno = ENOSYS;
|
---|
195 | return -1;
|
---|
196 | }
|
---|
197 |
|
---|
198 | static SMB_OFF_T skel_lseek(vfs_handle_struct *handle, files_struct *fsp, SMB_OFF_T offset, int whence)
|
---|
199 | {
|
---|
200 | errno = ENOSYS;
|
---|
201 | return (SMB_OFF_T)-1;
|
---|
202 | }
|
---|
203 |
|
---|
204 | static ssize_t skel_sendfile(vfs_handle_struct *handle, int tofd, files_struct *fromfsp, const DATA_BLOB *hdr, SMB_OFF_T offset, size_t n)
|
---|
205 | {
|
---|
206 | errno = ENOSYS;
|
---|
207 | return -1;
|
---|
208 | }
|
---|
209 |
|
---|
210 | static ssize_t skel_recvfile(vfs_handle_struct *handle, int fromfd, files_struct *tofsp, SMB_OFF_T offset, size_t n)
|
---|
211 | {
|
---|
212 | errno = ENOSYS;
|
---|
213 | return -1;
|
---|
214 | }
|
---|
215 |
|
---|
216 | static int skel_rename(vfs_handle_struct *handle,
|
---|
217 | const struct smb_filename *smb_fname_src,
|
---|
218 | const struct smb_filename *smb_fname_dst)
|
---|
219 | {
|
---|
220 | errno = ENOSYS;
|
---|
221 | return -1;
|
---|
222 | }
|
---|
223 |
|
---|
224 | static int skel_fsync(vfs_handle_struct *handle, files_struct *fsp)
|
---|
225 | {
|
---|
226 | errno = ENOSYS;
|
---|
227 | return -1;
|
---|
228 | }
|
---|
229 |
|
---|
230 | static int skel_stat(vfs_handle_struct *handle, struct smb_filename *smb_fname)
|
---|
231 | {
|
---|
232 | errno = ENOSYS;
|
---|
233 | return -1;
|
---|
234 | }
|
---|
235 |
|
---|
236 | static int skel_fstat(vfs_handle_struct *handle, files_struct *fsp, SMB_STRUCT_STAT *sbuf)
|
---|
237 | {
|
---|
238 | errno = ENOSYS;
|
---|
239 | return -1;
|
---|
240 | }
|
---|
241 |
|
---|
242 | static int skel_lstat(vfs_handle_struct *handle, struct smb_filename *smb_fname)
|
---|
243 | {
|
---|
244 | errno = ENOSYS;
|
---|
245 | return -1;
|
---|
246 | }
|
---|
247 |
|
---|
248 | static uint64_t skel_get_alloc_size(struct vfs_handle_struct *handle, struct files_struct *fsp, const SMB_STRUCT_STAT *sbuf)
|
---|
249 | {
|
---|
250 | errno = ENOSYS;
|
---|
251 | return -1;
|
---|
252 | }
|
---|
253 |
|
---|
254 | static int skel_unlink(vfs_handle_struct *handle,
|
---|
255 | const struct smb_filename *smb_fname)
|
---|
256 | {
|
---|
257 | errno = ENOSYS;
|
---|
258 | return -1;
|
---|
259 | }
|
---|
260 |
|
---|
261 | static int skel_chmod(vfs_handle_struct *handle, const char *path, mode_t mode)
|
---|
262 | {
|
---|
263 | errno = ENOSYS;
|
---|
264 | return -1;
|
---|
265 | }
|
---|
266 |
|
---|
267 | static int skel_fchmod(vfs_handle_struct *handle, files_struct *fsp, mode_t mode)
|
---|
268 | {
|
---|
269 | errno = ENOSYS;
|
---|
270 | return -1;
|
---|
271 | }
|
---|
272 |
|
---|
273 | static int skel_chown(vfs_handle_struct *handle, const char *path, uid_t uid, gid_t gid)
|
---|
274 | {
|
---|
275 | errno = ENOSYS;
|
---|
276 | return -1;
|
---|
277 | }
|
---|
278 |
|
---|
279 | static int skel_fchown(vfs_handle_struct *handle, files_struct *fsp, uid_t uid, gid_t gid)
|
---|
280 | {
|
---|
281 | errno = ENOSYS;
|
---|
282 | return -1;
|
---|
283 | }
|
---|
284 |
|
---|
285 | static int skel_lchown(vfs_handle_struct *handle, const char *path, uid_t uid, gid_t gid)
|
---|
286 | {
|
---|
287 | errno = ENOSYS;
|
---|
288 | return -1;
|
---|
289 | }
|
---|
290 |
|
---|
291 | static int skel_chdir(vfs_handle_struct *handle, const char *path)
|
---|
292 | {
|
---|
293 | errno = ENOSYS;
|
---|
294 | return -1;
|
---|
295 | }
|
---|
296 |
|
---|
297 | static char *skel_getwd(vfs_handle_struct *handle, char *buf)
|
---|
298 | {
|
---|
299 | errno = ENOSYS;
|
---|
300 | return NULL;
|
---|
301 | }
|
---|
302 |
|
---|
303 | static int skel_ntimes(vfs_handle_struct *handle,
|
---|
304 | const struct smb_filename *smb_fname,
|
---|
305 | struct smb_file_time *ft)
|
---|
306 | {
|
---|
307 | errno = ENOSYS;
|
---|
308 | return -1;
|
---|
309 | }
|
---|
310 |
|
---|
311 | static int skel_ftruncate(vfs_handle_struct *handle, files_struct *fsp, SMB_OFF_T offset)
|
---|
312 | {
|
---|
313 | errno = ENOSYS;
|
---|
314 | return -1;
|
---|
315 | }
|
---|
316 |
|
---|
317 | static int skel_fallocate(vfs_handle_struct *handle, files_struct *fsp,
|
---|
318 | enum vfs_fallocate_mode mode,
|
---|
319 | SMB_OFF_T offset, SMB_OFF_T len)
|
---|
320 | {
|
---|
321 | errno = ENOSYS;
|
---|
322 | return -1;
|
---|
323 | }
|
---|
324 |
|
---|
325 | static bool skel_lock(vfs_handle_struct *handle, files_struct *fsp, int op, SMB_OFF_T offset, SMB_OFF_T count, int type)
|
---|
326 | {
|
---|
327 | errno = ENOSYS;
|
---|
328 | return false;
|
---|
329 | }
|
---|
330 |
|
---|
331 | static int skel_kernel_flock(struct vfs_handle_struct *handle, struct files_struct *fsp, uint32 share_mode, uint32 access_mask)
|
---|
332 | {
|
---|
333 | errno = ENOSYS;
|
---|
334 | return -1;
|
---|
335 | }
|
---|
336 |
|
---|
337 | static int skel_linux_setlease(struct vfs_handle_struct *handle, struct files_struct *fsp, int leasetype)
|
---|
338 | {
|
---|
339 | errno = ENOSYS;
|
---|
340 | return -1;
|
---|
341 | }
|
---|
342 |
|
---|
343 | static bool skel_getlock(vfs_handle_struct *handle, files_struct *fsp, SMB_OFF_T *poffset, SMB_OFF_T *pcount, int *ptype, pid_t *ppid)
|
---|
344 | {
|
---|
345 | errno = ENOSYS;
|
---|
346 | return false;
|
---|
347 | }
|
---|
348 |
|
---|
349 | static int skel_symlink(vfs_handle_struct *handle, const char *oldpath, const char *newpath)
|
---|
350 | {
|
---|
351 | errno = ENOSYS;
|
---|
352 | return -1;
|
---|
353 | }
|
---|
354 |
|
---|
355 | static int skel_vfs_readlink(vfs_handle_struct *handle, const char *path, char *buf, size_t bufsiz)
|
---|
356 | {
|
---|
357 | errno = ENOSYS;
|
---|
358 | return -1;
|
---|
359 | }
|
---|
360 |
|
---|
361 | static int skel_link(vfs_handle_struct *handle, const char *oldpath, const char *newpath)
|
---|
362 | {
|
---|
363 | errno = ENOSYS;
|
---|
364 | return -1;
|
---|
365 | }
|
---|
366 |
|
---|
367 | static int skel_mknod(vfs_handle_struct *handle, const char *path, mode_t mode, SMB_DEV_T dev)
|
---|
368 | {
|
---|
369 | errno = ENOSYS;
|
---|
370 | return -1;
|
---|
371 | }
|
---|
372 |
|
---|
373 | static char *skel_realpath(vfs_handle_struct *handle, const char *path)
|
---|
374 | {
|
---|
375 | errno = ENOSYS;
|
---|
376 | return NULL;
|
---|
377 | }
|
---|
378 |
|
---|
379 | static NTSTATUS skel_notify_watch(struct vfs_handle_struct *handle,
|
---|
380 | struct sys_notify_context *ctx, struct notify_entry *e,
|
---|
381 | void (*callback)(struct sys_notify_context *ctx, void *private_data, struct notify_event *ev),
|
---|
382 | void *private_data, void *handle_p)
|
---|
383 | {
|
---|
384 | return NT_STATUS_NOT_IMPLEMENTED;
|
---|
385 | }
|
---|
386 |
|
---|
387 | static int skel_chflags(vfs_handle_struct *handle, const char *path, uint flags)
|
---|
388 | {
|
---|
389 | errno = ENOSYS;
|
---|
390 | return -1;
|
---|
391 | }
|
---|
392 |
|
---|
393 | static struct file_id skel_file_id_create(vfs_handle_struct *handle,
|
---|
394 | const SMB_STRUCT_STAT *sbuf)
|
---|
395 | {
|
---|
396 | struct file_id id;
|
---|
397 | ZERO_STRUCT(id);
|
---|
398 | errno = ENOSYS;
|
---|
399 | return id;
|
---|
400 | }
|
---|
401 |
|
---|
402 | static NTSTATUS skel_streaminfo(struct vfs_handle_struct *handle,
|
---|
403 | struct files_struct *fsp,
|
---|
404 | const char *fname,
|
---|
405 | TALLOC_CTX *mem_ctx,
|
---|
406 | unsigned int *num_streams,
|
---|
407 | struct stream_struct **streams)
|
---|
408 | {
|
---|
409 | return NT_STATUS_NOT_IMPLEMENTED;
|
---|
410 | }
|
---|
411 |
|
---|
412 | static int skel_get_real_filename(struct vfs_handle_struct *handle,
|
---|
413 | const char *path,
|
---|
414 | const char *name,
|
---|
415 | TALLOC_CTX *mem_ctx,
|
---|
416 | char **found_name)
|
---|
417 | {
|
---|
418 | errno = ENOSYS;
|
---|
419 | return -1;
|
---|
420 | }
|
---|
421 |
|
---|
422 | static const char *skel_connectpath(struct vfs_handle_struct *handle,
|
---|
423 | const char *filename)
|
---|
424 | {
|
---|
425 | errno = ENOSYS;
|
---|
426 | return NULL;
|
---|
427 | }
|
---|
428 |
|
---|
429 | static NTSTATUS skel_brl_lock_windows(struct vfs_handle_struct *handle,
|
---|
430 | struct byte_range_lock *br_lck,
|
---|
431 | struct lock_struct *plock,
|
---|
432 | bool blocking_lock,
|
---|
433 | struct blocking_lock_record *blr)
|
---|
434 | {
|
---|
435 | return NT_STATUS_NOT_IMPLEMENTED;
|
---|
436 | }
|
---|
437 |
|
---|
438 | static bool skel_brl_unlock_windows(struct vfs_handle_struct *handle,
|
---|
439 | struct messaging_context *msg_ctx,
|
---|
440 | struct byte_range_lock *br_lck,
|
---|
441 | const struct lock_struct *plock)
|
---|
442 | {
|
---|
443 | errno = ENOSYS;
|
---|
444 | return false;
|
---|
445 | }
|
---|
446 |
|
---|
447 | static bool skel_brl_cancel_windows(struct vfs_handle_struct *handle,
|
---|
448 | struct byte_range_lock *br_lck,
|
---|
449 | struct lock_struct *plock,
|
---|
450 | struct blocking_lock_record *blr)
|
---|
451 | {
|
---|
452 | errno = ENOSYS;
|
---|
453 | return false;
|
---|
454 | }
|
---|
455 |
|
---|
456 | static bool skel_strict_lock(struct vfs_handle_struct *handle,
|
---|
457 | struct files_struct *fsp,
|
---|
458 | struct lock_struct *plock)
|
---|
459 | {
|
---|
460 | errno = ENOSYS;
|
---|
461 | return false;
|
---|
462 | }
|
---|
463 |
|
---|
464 | static void skel_strict_unlock(struct vfs_handle_struct *handle,
|
---|
465 | struct files_struct *fsp,
|
---|
466 | struct lock_struct *plock)
|
---|
467 | {
|
---|
468 | ;
|
---|
469 | }
|
---|
470 |
|
---|
471 | static NTSTATUS skel_translate_name(struct vfs_handle_struct *handle,
|
---|
472 | const char *mapped_name,
|
---|
473 | enum vfs_translate_direction direction,
|
---|
474 | TALLOC_CTX *mem_ctx,
|
---|
475 | char **pmapped_name)
|
---|
476 | {
|
---|
477 | return NT_STATUS_NOT_IMPLEMENTED;
|
---|
478 | }
|
---|
479 |
|
---|
480 | static NTSTATUS skel_fget_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
|
---|
481 | uint32 security_info, struct security_descriptor **ppdesc)
|
---|
482 | {
|
---|
483 | return NT_STATUS_NOT_IMPLEMENTED;
|
---|
484 | }
|
---|
485 |
|
---|
486 | static NTSTATUS skel_get_nt_acl(vfs_handle_struct *handle,
|
---|
487 | const char *name, uint32 security_info, struct security_descriptor **ppdesc)
|
---|
488 | {
|
---|
489 | return NT_STATUS_NOT_IMPLEMENTED;
|
---|
490 | }
|
---|
491 |
|
---|
492 | static NTSTATUS skel_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
|
---|
493 | uint32 security_info_sent, const struct security_descriptor *psd)
|
---|
494 | {
|
---|
495 | return NT_STATUS_NOT_IMPLEMENTED;
|
---|
496 | }
|
---|
497 |
|
---|
498 | static int skel_chmod_acl(vfs_handle_struct *handle, const char *name, mode_t mode)
|
---|
499 | {
|
---|
500 | errno = ENOSYS;
|
---|
501 | return -1;
|
---|
502 | }
|
---|
503 |
|
---|
504 | static int skel_fchmod_acl(vfs_handle_struct *handle, files_struct *fsp, mode_t mode)
|
---|
505 | {
|
---|
506 | errno = ENOSYS;
|
---|
507 | return -1;
|
---|
508 | }
|
---|
509 |
|
---|
510 | static int skel_sys_acl_get_entry(vfs_handle_struct *handle, SMB_ACL_T theacl, int entry_id, SMB_ACL_ENTRY_T *entry_p)
|
---|
511 | {
|
---|
512 | errno = ENOSYS;
|
---|
513 | return -1;
|
---|
514 | }
|
---|
515 |
|
---|
516 | static int skel_sys_acl_get_tag_type(vfs_handle_struct *handle, SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *tag_type_p)
|
---|
517 | {
|
---|
518 | errno = ENOSYS;
|
---|
519 | return -1;
|
---|
520 | }
|
---|
521 |
|
---|
522 | static int skel_sys_acl_get_permset(vfs_handle_struct *handle, SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p)
|
---|
523 | {
|
---|
524 | errno = ENOSYS;
|
---|
525 | return -1;
|
---|
526 | }
|
---|
527 |
|
---|
528 | static void *skel_sys_acl_get_qualifier(vfs_handle_struct *handle, SMB_ACL_ENTRY_T entry_d)
|
---|
529 | {
|
---|
530 | errno = ENOSYS;
|
---|
531 | return NULL;
|
---|
532 | }
|
---|
533 |
|
---|
534 | static SMB_ACL_T skel_sys_acl_get_file(vfs_handle_struct *handle, const char *path_p, SMB_ACL_TYPE_T type)
|
---|
535 | {
|
---|
536 | errno = ENOSYS;
|
---|
537 | return (SMB_ACL_T)NULL;
|
---|
538 | }
|
---|
539 |
|
---|
540 | static SMB_ACL_T skel_sys_acl_get_fd(vfs_handle_struct *handle, files_struct *fsp)
|
---|
541 | {
|
---|
542 | errno = ENOSYS;
|
---|
543 | return (SMB_ACL_T)NULL;
|
---|
544 | }
|
---|
545 |
|
---|
546 | static int skel_sys_acl_clear_perms(vfs_handle_struct *handle, SMB_ACL_PERMSET_T permset)
|
---|
547 | {
|
---|
548 | errno = ENOSYS;
|
---|
549 | return -1;
|
---|
550 | }
|
---|
551 |
|
---|
552 | static int skel_sys_acl_add_perm(vfs_handle_struct *handle, SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm)
|
---|
553 | {
|
---|
554 | errno = ENOSYS;
|
---|
555 | return -1;
|
---|
556 | }
|
---|
557 |
|
---|
558 | static char *skel_sys_acl_to_text(vfs_handle_struct *handle, SMB_ACL_T theacl, ssize_t *plen)
|
---|
559 | {
|
---|
560 | errno = ENOSYS;
|
---|
561 | return NULL;
|
---|
562 | }
|
---|
563 |
|
---|
564 | static SMB_ACL_T skel_sys_acl_init(vfs_handle_struct *handle, int count)
|
---|
565 | {
|
---|
566 | errno = ENOSYS;
|
---|
567 | return (SMB_ACL_T)NULL;
|
---|
568 | }
|
---|
569 |
|
---|
570 | static int skel_sys_acl_create_entry(vfs_handle_struct *handle, SMB_ACL_T *pacl, SMB_ACL_ENTRY_T *pentry)
|
---|
571 | {
|
---|
572 | errno = ENOSYS;
|
---|
573 | return -1;
|
---|
574 | }
|
---|
575 |
|
---|
576 | static int skel_sys_acl_set_tag_type(vfs_handle_struct *handle, SMB_ACL_ENTRY_T entry, SMB_ACL_TAG_T tagtype)
|
---|
577 | {
|
---|
578 | errno = ENOSYS;
|
---|
579 | return -1;
|
---|
580 | }
|
---|
581 |
|
---|
582 | static int skel_sys_acl_set_qualifier(vfs_handle_struct *handle, SMB_ACL_ENTRY_T entry, void *qual)
|
---|
583 | {
|
---|
584 | errno = ENOSYS;
|
---|
585 | return -1;
|
---|
586 | }
|
---|
587 |
|
---|
588 | static int skel_sys_acl_set_permset(vfs_handle_struct *handle, SMB_ACL_ENTRY_T entry, SMB_ACL_PERMSET_T permset)
|
---|
589 | {
|
---|
590 | errno = ENOSYS;
|
---|
591 | return -1;
|
---|
592 | }
|
---|
593 |
|
---|
594 | static int skel_sys_acl_valid(vfs_handle_struct *handle, SMB_ACL_T theacl )
|
---|
595 | {
|
---|
596 | errno = ENOSYS;
|
---|
597 | return -1;
|
---|
598 | }
|
---|
599 |
|
---|
600 | static int skel_sys_acl_set_file(vfs_handle_struct *handle, const char *name, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl)
|
---|
601 | {
|
---|
602 | errno = ENOSYS;
|
---|
603 | return -1;
|
---|
604 | }
|
---|
605 |
|
---|
606 | static int skel_sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp, SMB_ACL_T theacl)
|
---|
607 | {
|
---|
608 | errno = ENOSYS;
|
---|
609 | return -1;
|
---|
610 | }
|
---|
611 |
|
---|
612 | static int skel_sys_acl_delete_def_file(vfs_handle_struct *handle, const char *path)
|
---|
613 | {
|
---|
614 | errno = ENOSYS;
|
---|
615 | return -1;
|
---|
616 | }
|
---|
617 |
|
---|
618 | static int skel_sys_acl_get_perm(vfs_handle_struct *handle, SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm)
|
---|
619 | {
|
---|
620 | errno = ENOSYS;
|
---|
621 | return -1;
|
---|
622 | }
|
---|
623 |
|
---|
624 | static int skel_sys_acl_free_text(vfs_handle_struct *handle, char *text)
|
---|
625 | {
|
---|
626 | errno = ENOSYS;
|
---|
627 | return -1;
|
---|
628 | }
|
---|
629 |
|
---|
630 | static int skel_sys_acl_free_acl(vfs_handle_struct *handle, SMB_ACL_T posix_acl)
|
---|
631 | {
|
---|
632 | errno = ENOSYS;
|
---|
633 | return -1;
|
---|
634 | }
|
---|
635 |
|
---|
636 | static int skel_sys_acl_free_qualifier(vfs_handle_struct *handle, void *qualifier, SMB_ACL_TAG_T tagtype)
|
---|
637 | {
|
---|
638 | errno = ENOSYS;
|
---|
639 | return -1;
|
---|
640 | }
|
---|
641 |
|
---|
642 | static ssize_t skel_getxattr(vfs_handle_struct *handle, const char *path, const char *name, void *value, size_t size)
|
---|
643 | {
|
---|
644 | errno = ENOSYS;
|
---|
645 | return -1;
|
---|
646 | }
|
---|
647 |
|
---|
648 | static ssize_t skel_lgetxattr(vfs_handle_struct *handle, const char *path, const char *name, void *value, size_t
|
---|
649 | size)
|
---|
650 | {
|
---|
651 | errno = ENOSYS;
|
---|
652 | return -1;
|
---|
653 | }
|
---|
654 |
|
---|
655 | static ssize_t skel_fgetxattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *name, void *value, size_t size)
|
---|
656 | {
|
---|
657 | errno = ENOSYS;
|
---|
658 | return -1;
|
---|
659 | }
|
---|
660 |
|
---|
661 | static ssize_t skel_listxattr(vfs_handle_struct *handle, const char *path, char *list, size_t size)
|
---|
662 | {
|
---|
663 | errno = ENOSYS;
|
---|
664 | return -1;
|
---|
665 | }
|
---|
666 |
|
---|
667 | static ssize_t skel_llistxattr(vfs_handle_struct *handle, const char *path, char *list, size_t size)
|
---|
668 | {
|
---|
669 | errno = ENOSYS;
|
---|
670 | return -1;
|
---|
671 | }
|
---|
672 |
|
---|
673 | static ssize_t skel_flistxattr(vfs_handle_struct *handle, struct files_struct *fsp, char *list, size_t size)
|
---|
674 | {
|
---|
675 | errno = ENOSYS;
|
---|
676 | return -1;
|
---|
677 | }
|
---|
678 |
|
---|
679 | static int skel_removexattr(vfs_handle_struct *handle, const char *path, const char *name)
|
---|
680 | {
|
---|
681 | errno = ENOSYS;
|
---|
682 | return -1;
|
---|
683 | }
|
---|
684 |
|
---|
685 | static int skel_lremovexattr(vfs_handle_struct *handle, const char *path, const char *name)
|
---|
686 | {
|
---|
687 | errno = ENOSYS;
|
---|
688 | return -1;
|
---|
689 | }
|
---|
690 |
|
---|
691 | static int skel_fremovexattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *name)
|
---|
692 | {
|
---|
693 | errno = ENOSYS;
|
---|
694 | return -1;
|
---|
695 | return SMB_VFS_NEXT_FREMOVEXATTR(handle, fsp, name);
|
---|
696 | }
|
---|
697 |
|
---|
698 | static int skel_setxattr(vfs_handle_struct *handle, const char *path, const char *name, const void *value, size_t size, int flags)
|
---|
699 | {
|
---|
700 | errno = ENOSYS;
|
---|
701 | return -1;
|
---|
702 | }
|
---|
703 |
|
---|
704 | static int skel_lsetxattr(vfs_handle_struct *handle, const char *path, const char *name, const void *value, size_t size, int flags)
|
---|
705 | {
|
---|
706 | errno = ENOSYS;
|
---|
707 | return -1;
|
---|
708 | }
|
---|
709 |
|
---|
710 | static int skel_fsetxattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *name, const void *value, size_t size, int flags)
|
---|
711 | {
|
---|
712 | errno = ENOSYS;
|
---|
713 | return -1;
|
---|
714 | }
|
---|
715 |
|
---|
716 | static int skel_aio_read(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
|
---|
717 | {
|
---|
718 | errno = ENOSYS;
|
---|
719 | return -1;
|
---|
720 | }
|
---|
721 |
|
---|
722 | static int skel_aio_write(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
|
---|
723 | {
|
---|
724 | errno = ENOSYS;
|
---|
725 | return -1;
|
---|
726 | }
|
---|
727 |
|
---|
728 | static ssize_t skel_aio_return_fn(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
|
---|
729 | {
|
---|
730 | errno = ENOSYS;
|
---|
731 | return -1;
|
---|
732 | }
|
---|
733 |
|
---|
734 | static int skel_aio_cancel(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
|
---|
735 | {
|
---|
736 | errno = ENOSYS;
|
---|
737 | return -1;
|
---|
738 | }
|
---|
739 |
|
---|
740 | static int skel_aio_error_fn(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
|
---|
741 | {
|
---|
742 | errno = ENOSYS;
|
---|
743 | return -1;
|
---|
744 | }
|
---|
745 |
|
---|
746 | static int skel_aio_fsync(struct vfs_handle_struct *handle, struct files_struct *fsp, int op, SMB_STRUCT_AIOCB *aiocb)
|
---|
747 | {
|
---|
748 | errno = ENOSYS;
|
---|
749 | return -1;
|
---|
750 | }
|
---|
751 |
|
---|
752 | static int skel_aio_suspend(struct vfs_handle_struct *handle, struct files_struct *fsp, const SMB_STRUCT_AIOCB * const aiocb[], int n, const struct timespec *ts)
|
---|
753 | {
|
---|
754 | errno = ENOSYS;
|
---|
755 | return -1;
|
---|
756 | }
|
---|
757 |
|
---|
758 | static bool skel_aio_force(struct vfs_handle_struct *handle, struct files_struct *fsp)
|
---|
759 | {
|
---|
760 | errno = ENOSYS;
|
---|
761 | return false;
|
---|
762 | }
|
---|
763 |
|
---|
764 | static bool skel_is_offline(struct vfs_handle_struct *handle, const struct smb_filename *fname, SMB_STRUCT_STAT *sbuf)
|
---|
765 | {
|
---|
766 | errno = ENOSYS;
|
---|
767 | return false;
|
---|
768 | }
|
---|
769 |
|
---|
770 | static int skel_set_offline(struct vfs_handle_struct *handle, const struct smb_filename *fname)
|
---|
771 | {
|
---|
772 | errno = ENOSYS;
|
---|
773 | return -1;
|
---|
774 | }
|
---|
775 |
|
---|
776 | /* VFS operations structure */
|
---|
777 |
|
---|
778 | struct vfs_fn_pointers skel_transparent_fns = {
|
---|
779 | /* Disk operations */
|
---|
780 |
|
---|
781 | .connect_fn = skel_connect,
|
---|
782 | .disconnect = skel_disconnect,
|
---|
783 | .disk_free = skel_disk_free,
|
---|
784 | .get_quota = skel_get_quota,
|
---|
785 | .set_quota = skel_set_quota,
|
---|
786 | .get_shadow_copy_data = skel_get_shadow_copy_data,
|
---|
787 | .statvfs = skel_statvfs,
|
---|
788 | .fs_capabilities = skel_fs_capabilities,
|
---|
789 |
|
---|
790 | /* Directory operations */
|
---|
791 |
|
---|
792 | .opendir = skel_opendir,
|
---|
793 | .fdopendir = skel_fdopendir,
|
---|
794 | .readdir = skel_readdir,
|
---|
795 | .seekdir = skel_seekdir,
|
---|
796 | .telldir = skel_telldir,
|
---|
797 | .rewind_dir = skel_rewind_dir,
|
---|
798 | .mkdir = skel_mkdir,
|
---|
799 | .rmdir = skel_rmdir,
|
---|
800 | .closedir = skel_closedir,
|
---|
801 | .init_search_op = skel_init_search_op,
|
---|
802 |
|
---|
803 | /* File operations */
|
---|
804 |
|
---|
805 | .open_fn = skel_open,
|
---|
806 | .create_file = skel_create_file,
|
---|
807 | .close_fn = skel_close_fn,
|
---|
808 | .vfs_read = skel_vfs_read,
|
---|
809 | .pread = skel_pread,
|
---|
810 | .write = skel_write,
|
---|
811 | .pwrite = skel_pwrite,
|
---|
812 | .lseek = skel_lseek,
|
---|
813 | .sendfile = skel_sendfile,
|
---|
814 | .recvfile = skel_recvfile,
|
---|
815 | .rename = skel_rename,
|
---|
816 | .fsync = skel_fsync,
|
---|
817 | .stat = skel_stat,
|
---|
818 | .fstat = skel_fstat,
|
---|
819 | .lstat = skel_lstat,
|
---|
820 | .get_alloc_size = skel_get_alloc_size,
|
---|
821 | .unlink = skel_unlink,
|
---|
822 | .chmod = skel_chmod,
|
---|
823 | .fchmod = skel_fchmod,
|
---|
824 | .chown = skel_chown,
|
---|
825 | .fchown = skel_fchown,
|
---|
826 | .lchown = skel_lchown,
|
---|
827 | .chdir = skel_chdir,
|
---|
828 | .getwd = skel_getwd,
|
---|
829 | .ntimes = skel_ntimes,
|
---|
830 | .ftruncate = skel_ftruncate,
|
---|
831 | .fallocate = skel_fallocate,
|
---|
832 | .lock = skel_lock,
|
---|
833 | .kernel_flock = skel_kernel_flock,
|
---|
834 | .linux_setlease = skel_linux_setlease,
|
---|
835 | .getlock = skel_getlock,
|
---|
836 | .symlink = skel_symlink,
|
---|
837 | .vfs_readlink = skel_vfs_readlink,
|
---|
838 | .link = skel_link,
|
---|
839 | .mknod = skel_mknod,
|
---|
840 | .realpath = skel_realpath,
|
---|
841 | .notify_watch = skel_notify_watch,
|
---|
842 | .chflags = skel_chflags,
|
---|
843 | .file_id_create = skel_file_id_create,
|
---|
844 |
|
---|
845 | .streaminfo = skel_streaminfo,
|
---|
846 | .get_real_filename = skel_get_real_filename,
|
---|
847 | .connectpath = skel_connectpath,
|
---|
848 | .brl_lock_windows = skel_brl_lock_windows,
|
---|
849 | .brl_unlock_windows = skel_brl_unlock_windows,
|
---|
850 | .brl_cancel_windows = skel_brl_cancel_windows,
|
---|
851 | .strict_lock = skel_strict_lock,
|
---|
852 | .strict_unlock = skel_strict_unlock,
|
---|
853 | .translate_name = skel_translate_name,
|
---|
854 |
|
---|
855 | /* NT ACL operations. */
|
---|
856 |
|
---|
857 | .fget_nt_acl = skel_fget_nt_acl,
|
---|
858 | .get_nt_acl = skel_get_nt_acl,
|
---|
859 | .fset_nt_acl = skel_fset_nt_acl,
|
---|
860 |
|
---|
861 | /* POSIX ACL operations. */
|
---|
862 |
|
---|
863 | .chmod_acl = skel_chmod_acl,
|
---|
864 | .fchmod_acl = skel_fchmod_acl,
|
---|
865 |
|
---|
866 | .sys_acl_get_entry = skel_sys_acl_get_entry,
|
---|
867 | .sys_acl_get_tag_type = skel_sys_acl_get_tag_type,
|
---|
868 | .sys_acl_get_permset = skel_sys_acl_get_permset,
|
---|
869 | .sys_acl_get_qualifier = skel_sys_acl_get_qualifier,
|
---|
870 | .sys_acl_get_file = skel_sys_acl_get_file,
|
---|
871 | .sys_acl_get_fd = skel_sys_acl_get_fd,
|
---|
872 | .sys_acl_clear_perms = skel_sys_acl_clear_perms,
|
---|
873 | .sys_acl_add_perm = skel_sys_acl_add_perm,
|
---|
874 | .sys_acl_to_text = skel_sys_acl_to_text,
|
---|
875 | .sys_acl_init = skel_sys_acl_init,
|
---|
876 | .sys_acl_create_entry = skel_sys_acl_create_entry,
|
---|
877 | .sys_acl_set_tag_type = skel_sys_acl_set_tag_type,
|
---|
878 | .sys_acl_set_qualifier = skel_sys_acl_set_qualifier,
|
---|
879 | .sys_acl_set_permset = skel_sys_acl_set_permset,
|
---|
880 | .sys_acl_valid = skel_sys_acl_valid,
|
---|
881 | .sys_acl_set_file = skel_sys_acl_set_file,
|
---|
882 | .sys_acl_set_fd = skel_sys_acl_set_fd,
|
---|
883 | .sys_acl_delete_def_file = skel_sys_acl_delete_def_file,
|
---|
884 | .sys_acl_get_perm = skel_sys_acl_get_perm,
|
---|
885 | .sys_acl_free_text = skel_sys_acl_free_text,
|
---|
886 | .sys_acl_free_acl = skel_sys_acl_free_acl,
|
---|
887 | .sys_acl_free_qualifier = skel_sys_acl_free_qualifier,
|
---|
888 |
|
---|
889 | /* EA operations. */
|
---|
890 | .getxattr = skel_getxattr,
|
---|
891 | .lgetxattr = skel_lgetxattr,
|
---|
892 | .fgetxattr = skel_fgetxattr,
|
---|
893 | .listxattr = skel_listxattr,
|
---|
894 | .llistxattr = skel_llistxattr,
|
---|
895 | .flistxattr = skel_flistxattr,
|
---|
896 | .removexattr = skel_removexattr,
|
---|
897 | .lremovexattr = skel_lremovexattr,
|
---|
898 | .fremovexattr = skel_fremovexattr,
|
---|
899 | .setxattr = skel_setxattr,
|
---|
900 | .lsetxattr = skel_lsetxattr,
|
---|
901 | .fsetxattr = skel_fsetxattr,
|
---|
902 |
|
---|
903 | /* aio operations */
|
---|
904 | .aio_read = skel_aio_read,
|
---|
905 | .aio_write = skel_aio_write,
|
---|
906 | .aio_return_fn = skel_aio_return_fn,
|
---|
907 | .aio_cancel = skel_aio_cancel,
|
---|
908 | .aio_error_fn = skel_aio_error_fn,
|
---|
909 | .aio_fsync = skel_aio_fsync,
|
---|
910 | .aio_suspend = skel_aio_suspend,
|
---|
911 | .aio_force = skel_aio_force,
|
---|
912 |
|
---|
913 | /* offline operations */
|
---|
914 | .is_offline = skel_is_offline,
|
---|
915 | .set_offline = skel_set_offline
|
---|
916 | };
|
---|
917 |
|
---|
918 | NTSTATUS vfs_skel_transparent_init(void)
|
---|
919 | {
|
---|
920 | return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "skel_transparent", &skel_transparent_fns);
|
---|
921 | }
|
---|