blob: d7b9c27c942d97a041f40186fa4a5c68e2b15ce7 [file] [log] [blame]
Steve French6473a552005-11-29 20:20:10 -08001Version 1.39 November 30, 2005
Linus Torvalds1da177e2005-04-16 15:20:36 -07002
3A Partial List of Missing Features
4==================================
5
6Contributions are welcome. There are plenty of opportunities
7for visible, important contributions to this module. Here
8is a partial list of the known problems and missing features:
9
Steve French9a899e72005-09-06 15:55:49 -070010a) Support for SecurityDescriptors(Windows/CIFS ACLs) for chmod/chgrp/chown
11so that these operations can be supported to Windows servers
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
Steve French9a899e72005-09-06 15:55:49 -070013b) Mapping POSIX ACLs (and eventually NFSv4 ACLs) to CIFS
14SecurityDescriptors
15
16c) Better pam/winbind integration (e.g. to handle uid mapping
Linus Torvalds1da177e2005-04-16 15:20:36 -070017better)
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019d) Kerberos/SPNEGO session setup support - (started)
20
Steve French35c11fd2007-02-27 05:09:35 +000021e) NTLMv2 authentication (mostly implemented - double check
22that NTLMv2 signing works, also need to cleanup now unneeded SessSetup code in
23fs/cifs/connect.c)
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25f) MD5-HMAC signing SMB PDUs when SPNEGO style SessionSetup
26used (Kerberos or NTLMSSP). Signing alreadyimplemented for NTLM
27and raw NTLMSSP already. This is important when enabling
28extended security and mounting to Windows 2003 Servers
29
30f) Directory entry caching relies on a 1 second timer, rather than
31using FindNotify or equivalent. - (started)
32
33g) A few byte range testcases fail due to POSIX vs. Windows/CIFS
Steve French9a899e72005-09-06 15:55:49 -070034style byte range lock differences. Save byte range locks so
35reconnect can replay them.
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Steve French9a899e72005-09-06 15:55:49 -070037h) Support unlock all (unlock 0,MAX_OFFSET)
38by unlocking all known byte range locks that we locked on the file.
39
40i) quota support (needs minor kernel change since quota calls
41to make it to network filesystems or deviceless filesystems)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Steve French190fdeb2005-10-10 11:48:26 -070043j) investigate sync behavior (including syncpage) and check
44for proper behavior of intr/nointr
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46k) hook lower into the sockets api (as NFS/SunRPC does) to avoid the
47extra copy in/out of the socket buffers in some cases.
48
49l) finish support for IPv6. This is mostly complete but
50needs a simple conversion of ipv6 to sin6_addr from the
51address in string representation.
52
53m) Better optimize open (and pathbased setfilesize) to reduce the
54oplock breaks coming from windows srv. Piggyback identical file
55opens on top of each other by incrementing reference count rather
56than resending (helps reduce server resource utilization and avoid
57spurious oplock breaks).
58
59o) Improve performance of readpages by sending more than one read
60at a time when 8 pages or more are requested. In conjuntion
61add support for async_cifs_readpages.
62
Steve French6473a552005-11-29 20:20:10 -080063p) Add support for storing symlink info to Windows servers
Linus Torvalds1da177e2005-04-16 15:20:36 -070064in the Extended Attribute format their SFU clients would recognize.
65
66q) Finish fcntl D_NOTIFY support so kde and gnome file list windows
Steve French9a899e72005-09-06 15:55:49 -070067will autorefresh (partially complete by Asser). Needs minor kernel
68vfs change to support removing D_NOTIFY on a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70r) Add GUI tool to configure /proc/fs/cifs settings and for display of
71the CIFS statistics (started)
72
Steve French9a899e72005-09-06 15:55:49 -070073s) implement support for security and trusted categories of xattrs
Linus Torvalds1da177e2005-04-16 15:20:36 -070074(requires minor protocol extension) to enable better support for SELINUX
75
Steve French9a899e72005-09-06 15:55:49 -070076t) Implement O_DIRECT flag on open (already supported on mount)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Steve French9a899e72005-09-06 15:55:49 -070078u) Create UID mapping facility so server UIDs can be mapped on a per
Steve French9ea1f8f2005-04-30 11:10:58 -070079mount or a per server basis to client UIDs or nobody if no mapping
80exists. This is helpful when Unix extensions are negotiated to
81allow better permission checking when UIDs differ on the server
82and client. Add new protocol request to the CIFS protocol
83standard for asking the server for the corresponding name of a
84particular uid.
85
Steve French9a899e72005-09-06 15:55:49 -070086v) Add support for CIFS Unix and also the newer POSIX extensions to the
87server side for Samba 4.
88
89w) Finish up the dos time conversion routines needed to return old server
90time to the client (default time, of now or time 0 is used now for these
91very old servers)
92
Steve French35c11fd2007-02-27 05:09:35 +000093x) In support for OS/2 (LANMAN 1.2 and LANMAN2.1 based SMB servers)
94need to add ability to set time to server (utimes command)
Steve French9a899e72005-09-06 15:55:49 -070095
96y) Finish testing of Windows 9x/Windows ME server support (started).
97
Steve French35c11fd2007-02-27 05:09:35 +000098KNOWN BUGS (updated February 26, 2007)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099====================================
Steve French6a0b4822005-04-28 22:41:05 -0700100See http://bugzilla.samba.org - search on product "CifsVFS" for
101current bug list.
102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031) existing symbolic links (Windows reparse points) are recognized but
104can not be created remotely. They are implemented for Samba and those that
Steve French6a0b4822005-04-28 22:41:05 -0700105support the CIFS Unix extensions, although earlier versions of Samba
106overly restrict the pathnames.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072) follow_link and readdir code does not follow dfs junctions
108but recognizes them
1093) create of new files to FAT partitions on Windows servers can
110succeed but still return access denied (appears to be Windows
111server not cifs client problem) and has not been reproduced recently.
112NTFS partitions do not have this problem.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114Misc testing to do
115==================
1161) check out max path names and max path name components against various server
117types. Try nested symlinks (8 deep). Return max path name in stat -f information
118
1192) Modify file portion of ltp so it can run against a mounted network
Steve French35c11fd2007-02-27 05:09:35 +0000120share and run it against cifs vfs in automated fashion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
1223) Additional performance testing and optimization using iozone and similar -
123there are some easy changes that can be done to parallelize sequential writes,
124and when signing is disabled to request larger read sizes (larger than
125negotiated size) and send larger write sizes to modern servers.
126
Steve French6a0b4822005-04-28 22:41:05 -07001274) More exhaustively test against less common servers. More testing
128against Windows 9x, Windows ME servers.
Steve French8af18972007-02-14 04:42:51 +0000129
130DOS attrs - returned as pseudo-xattr in Samba format (check VFAT and NTFS for this too)
131
132mount check for unmatched uids - and uid override
133
134Add mount option for Linux extension disable per mount, and partial disable per mount (uid off, symlink/fifo/mknod on but what about posix acls?)
135
136Free threads at umount --force that are stuck on the sesSem