TODO 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. version 1.34 April 29, 2005
  2. A Partial List of Missing Features
  3. ==================================
  4. Contributions are welcome. There are plenty of opportunities
  5. for visible, important contributions to this module. Here
  6. is a partial list of the known problems and missing features:
  7. a) Support for SecurityDescriptors for chmod/chgrp/chown so
  8. these can be supported for Windows servers
  9. b) Better pam/winbind integration (e.g. to handle uid mapping
  10. better)
  11. c) multi-user mounts - multiplexed sessionsetups over single vc
  12. (ie tcp session) - more testing needed
  13. d) Kerberos/SPNEGO session setup support - (started)
  14. e) NTLMv2 authentication (mostly implemented)
  15. f) MD5-HMAC signing SMB PDUs when SPNEGO style SessionSetup
  16. used (Kerberos or NTLMSSP). Signing alreadyimplemented for NTLM
  17. and raw NTLMSSP already. This is important when enabling
  18. extended security and mounting to Windows 2003 Servers
  19. f) Directory entry caching relies on a 1 second timer, rather than
  20. using FindNotify or equivalent. - (started)
  21. g) A few byte range testcases fail due to POSIX vs. Windows/CIFS
  22. style byte range lock differences
  23. h) quota support
  24. j) finish writepages support (multi-page write behind for improved
  25. performance) and syncpage
  26. k) hook lower into the sockets api (as NFS/SunRPC does) to avoid the
  27. extra copy in/out of the socket buffers in some cases.
  28. l) finish support for IPv6. This is mostly complete but
  29. needs a simple conversion of ipv6 to sin6_addr from the
  30. address in string representation.
  31. m) Better optimize open (and pathbased setfilesize) to reduce the
  32. oplock breaks coming from windows srv. Piggyback identical file
  33. opens on top of each other by incrementing reference count rather
  34. than resending (helps reduce server resource utilization and avoid
  35. spurious oplock breaks).
  36. o) Improve performance of readpages by sending more than one read
  37. at a time when 8 pages or more are requested. In conjuntion
  38. add support for async_cifs_readpages.
  39. p) Add support for storing symlink and fifo info to Windows servers
  40. in the Extended Attribute format their SFU clients would recognize.
  41. q) Finish fcntl D_NOTIFY support so kde and gnome file list windows
  42. will autorefresh (started)
  43. r) Add GUI tool to configure /proc/fs/cifs settings and for display of
  44. the CIFS statistics (started)
  45. q) implement support for security and trusted categories of xattrs
  46. (requires minor protocol extension) to enable better support for SELINUX
  47. r) Implement O_DIRECT flag on open (already supported on mount)
  48. s) Allow remapping of last remaining character (\) to +0xF000 which
  49. (this character is valid for POSIX but not for Windows)
  50. t) Create UID mapping facility so server UIDs can be mapped on a per
  51. mount or a per server basis to client UIDs or nobody if no mapping
  52. exists. This is helpful when Unix extensions are negotiated to
  53. allow better permission checking when UIDs differ on the server
  54. and client. Add new protocol request to the CIFS protocol
  55. standard for asking the server for the corresponding name of a
  56. particular uid.
  57. KNOWN BUGS (updated April 29, 2005)
  58. ====================================
  59. See http://bugzilla.samba.org - search on product "CifsVFS" for
  60. current bug list.
  61. 1) existing symbolic links (Windows reparse points) are recognized but
  62. can not be created remotely. They are implemented for Samba and those that
  63. support the CIFS Unix extensions, although earlier versions of Samba
  64. overly restrict the pathnames.
  65. 2) follow_link and readdir code does not follow dfs junctions
  66. but recognizes them
  67. 3) create of new files to FAT partitions on Windows servers can
  68. succeed but still return access denied (appears to be Windows
  69. server not cifs client problem) and has not been reproduced recently.
  70. NTFS partitions do not have this problem.
  71. 4) debug connectathon lock test case 10 which fails against
  72. Samba (may be unmappable due to POSIX to Windows lock model
  73. differences but worth investigating). Also debug Samba to
  74. see why lock test case 7 takes longer to complete to Samba
  75. than to Windows.
  76. Misc testing to do
  77. ==================
  78. 1) check out max path names and max path name components against various server
  79. types. Try nested symlinks (8 deep). Return max path name in stat -f information
  80. 2) Modify file portion of ltp so it can run against a mounted network
  81. share and run it against cifs vfs.
  82. 3) Additional performance testing and optimization using iozone and similar -
  83. there are some easy changes that can be done to parallelize sequential writes,
  84. and when signing is disabled to request larger read sizes (larger than
  85. negotiated size) and send larger write sizes to modern servers.
  86. 4) More exhaustively test against less common servers. More testing
  87. against Windows 9x, Windows ME servers.