1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/source4/ntvfs
Andrew Bartlett 0b4c741b9c build: Build less of Samba when building --without-ntvfs-fileserver
We would build, but not use, many components of the NTVFS file server
even when we asked not to.  They would then consume disk, but not be
of any use

Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Garming Sam <garming@catalyst.net.nz>
2016-06-02 16:36:15 +02:00
..
cifs s4: tidy up vfs cifs in regards to using share_string_option 2014-02-24 17:17:03 +01:00
cifs_posix_cli s4:ntvfs: fix O3 error unused result of asprintf in cifspsx_file_utime() 2016-05-13 00:16:15 +02:00
common notify: Add "dir" to notify_event 2014-12-09 04:12:09 +01:00
ipc s4:ntvfs/ipc: fix ipc_close() 2015-07-03 02:00:28 +02:00
nbench s4:ntvfs: fix O3 error unused result of write error in nbench_log() 2016-05-13 00:16:15 +02:00
posix build: Build less of Samba when building --without-ntvfs-fileserver 2016-06-02 16:36:15 +02:00
print s4:ntvfs: add '_fn' suffix to all ntvfs_ops function pointers 2012-06-13 11:03:15 +02:00
simple s4:ntvfs: fix O3 error unused result of asprintf in svfs_file_utime 2016-05-13 00:16:15 +02:00
smb2 s4:ntvfs/smb2: ifdef out unused code 2014-11-25 07:25:45 +01:00
sysdep configure: Don't check for inotify on illumos 2016-04-06 00:15:17 +02:00
unixuid ntvfs: Add error debug statements for set_unix_security 2015-11-05 09:23:15 +01:00
ntvfs_base.c dlist: remove unneeded type argument from DLIST_ADD_END() 2016-02-06 21:48:17 +01:00
ntvfs_generic.c s4/ntvfs: support FS_SECTOR_SIZE_INFORMATION query-info 2015-03-18 18:57:21 +01:00
ntvfs_interface.c s4:ntvfs: add '_fn' suffix to all ntvfs_ops function pointers 2012-06-13 11:03:15 +02:00
ntvfs_util.c
ntvfs.h s4:ntvfs: add '_fn' suffix to all ntvfs_ops function pointers 2012-06-13 11:03:15 +02:00
README
wscript_build build: Build less of Samba when building --without-ntvfs-fileserver 2016-06-02 16:36:15 +02:00

This is the base of the new NTVFS subsystem for Samba. The model for
NTVFS backends is quite different than for the older style VFS
backends, in particular:

- the NTVFS backends receive windows style file names, although they
  are in the unix charset (usually UTF8). This means the backend is
  responsible for mapping windows filename conventions to unix
  filename conventions if necessary

- the NTVFS backends are responsible for changing effective UID before
  calling any OS local filesystem operations (if needed). The
  become_*() functions are provided to make this easier.

- the NTVFS backends are responsible for resolving DFS paths

- each NTVFS backend handles either disk, printer or IPC$ shares,
  rather than one backend handling all types

- the entry points of the NTVFS backends correspond closely with basic
  SMB operations, wheres the old VFS was modelled directly on the
  POSIX filesystem interface.

- the NTVFS backends are responsible for all semantic mappings, such
  as mapping dos file attributes, ACLs, file ownership and file times