1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00
samba-mirror/source4/ntvfs
Andrew Bartlett a1f04e8abc libcli/util Rename common map_nt_error_from_unix to avoid duplicate symbol
The two error tables need to be combined, but for now seperate the names.

(As the common parts of the tree now use the _common function,
errmap_unix.c must be included in the s3 autoconf build).

Andrew Bartlett

Autobuild-User: Andrew Bartlett <abartlet@samba.org>
Autobuild-Date: Mon Jun 20 08:12:03 CEST 2011 on sn-devel-104
2011-06-20 08:12:03 +02:00
..
cifs s4:ntvfs/cifs: return NT_STATUS_INTERNAL_ERROR if no credentials are available 2011-05-18 08:49:00 +02:00
cifs_posix_cli libcli/util Rename common map_nt_error_from_unix to avoid duplicate symbol 2011-06-20 08:12:03 +02:00
common librpc/idr Use the Samba3 notify.idl in common. 2011-06-09 12:40:08 +02:00
ipc libcli/util Rename common map_nt_error_from_unix to avoid duplicate symbol 2011-06-20 08:12:03 +02:00
nbench nterr: Add mem_ctx for return string from get_nt_error_c_code() 2011-05-06 07:51:24 +02:00
posix libcli/util Rename common map_nt_error_from_unix to avoid duplicate symbol 2011-06-20 08:12:03 +02:00
print source4/ntvfs: Fix prototypes for all functions. 2011-03-19 03:20:05 +01:00
simple libcli/util Rename common map_nt_error_from_unix to avoid duplicate symbol 2011-06-20 08:12:03 +02:00
smb2 s4:ntvfs/smb2/vfs_smb2.c - remove unused variable 2011-06-11 16:26:13 +02:00
sysdep libcli/util Rename common map_nt_error_from_unix to avoid duplicate symbol 2011-06-20 08:12:03 +02:00
unixuid source4/ntvfs: Fix prototypes for all functions. 2011-03-19 03:20:05 +01:00
ntvfs_base.c s4-modules Remove lp_ctx from init functions that no longer need it 2011-06-06 17:37:51 +10:00
ntvfs_generic.c s4:ntvfs subsystems - rework it using concrete enum values 2011-06-16 09:05:31 +02:00
ntvfs_interface.c s4:ntvfs: remove socket_address based functions 2010-04-27 13:02:26 +02:00
ntvfs_util.c Fix include paths to new location of libutil. 2008-10-11 21:31:42 +02:00
ntvfs.h librpc/idr Use the Samba3 notify.idl in common. 2011-06-09 12:40:08 +02:00
README
wscript_build tstream: make npa_tstream a private library 2011-04-06 08:12:19 +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