TODO 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. version 1.22 July 30, 2004
  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) - prettying up needed, and 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. KNOWN BUGS (updated December 10, 2004)
  49. ====================================
  50. 1) existing symbolic links (Windows reparse points) are recognized but
  51. can not be created remotely. They are implemented for Samba and those that
  52. support the CIFS Unix extensions but Samba has a bug currently handling
  53. symlink text beginning with slash
  54. 2) follow_link and readdir code does not follow dfs junctions
  55. but recognizes them
  56. 3) create of new files to FAT partitions on Windows servers can
  57. succeed but still return access denied (appears to be Windows
  58. server not cifs client problem) and has not been reproduced recently.
  59. NTFS partitions do not have this problem.
  60. 4) debug connectathon lock test case 10 which fails against
  61. Samba (may be unmappable due to POSIX to Windows lock model
  62. differences but worth investigating). Also debug Samba to
  63. see why lock test case 7 takes longer to complete to Samba
  64. than to Windows.
  65. Misc testing to do
  66. ==================
  67. 1) check out max path names and max path name components against various server
  68. types. Try nested symlinks (8 deep). Return max path name in stat -f information
  69. 2) Modify file portion of ltp so it can run against a mounted network
  70. share and run it against cifs vfs.
  71. 3) Additional performance testing and optimization using iozone and similar -
  72. there are some easy changes that can be done to parallelize sequential writes,
  73. and when signing is disabled to request larger read sizes (larger than
  74. negotiated size) and send larger write sizes to modern servers.
  75. 4) More exhaustively test the recently added NT4 support against various
  76. NT4 service pack levels, and fix cifs_setattr for setting file times and
  77. size to fall back to level 1 when error invalid level returned.