fcntl.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*
  2. * fs/cifs/fcntl.c
  3. *
  4. * vfs operations that deal with the file control API
  5. *
  6. * Copyright (C) International Business Machines Corp., 2003,2004
  7. * Author(s): Steve French (sfrench@us.ibm.com)
  8. *
  9. * This library is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU Lesser General Public License as published
  11. * by the Free Software Foundation; either version 2.1 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This library is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
  17. * the GNU Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public License
  20. * along with this library; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  22. */
  23. #include <linux/fs.h>
  24. #include <linux/stat.h>
  25. #include <linux/fcntl.h>
  26. #include "cifsglob.h"
  27. #include "cifsproto.h"
  28. #include "cifs_unicode.h"
  29. #include "cifs_debug.h"
  30. #include "cifsfs.h"
  31. static __u32 convert_to_cifs_notify_flags(unsigned long fcntl_notify_flags)
  32. {
  33. __u32 cifs_ntfy_flags = 0;
  34. /* No way on Linux VFS to ask to monitor xattr
  35. changes (and no stream support either */
  36. if(fcntl_notify_flags & DN_ACCESS) {
  37. cifs_ntfy_flags |= FILE_NOTIFY_CHANGE_LAST_ACCESS;
  38. }
  39. if(fcntl_notify_flags & DN_MODIFY) {
  40. /* What does this mean on directories? */
  41. cifs_ntfy_flags |= FILE_NOTIFY_CHANGE_LAST_WRITE |
  42. FILE_NOTIFY_CHANGE_SIZE;
  43. }
  44. if(fcntl_notify_flags & DN_CREATE) {
  45. cifs_ntfy_flags |= FILE_NOTIFY_CHANGE_CREATION |
  46. FILE_NOTIFY_CHANGE_LAST_WRITE;
  47. }
  48. if(fcntl_notify_flags & DN_DELETE) {
  49. cifs_ntfy_flags |= FILE_NOTIFY_CHANGE_LAST_WRITE;
  50. }
  51. if(fcntl_notify_flags & DN_RENAME) {
  52. /* BB review this - checking various server behaviors */
  53. cifs_ntfy_flags |= FILE_NOTIFY_CHANGE_DIR_NAME |
  54. FILE_NOTIFY_CHANGE_FILE_NAME;
  55. }
  56. if(fcntl_notify_flags & DN_ATTRIB) {
  57. cifs_ntfy_flags |= FILE_NOTIFY_CHANGE_SECURITY |
  58. FILE_NOTIFY_CHANGE_ATTRIBUTES;
  59. }
  60. /* if(fcntl_notify_flags & DN_MULTISHOT) {
  61. cifs_ntfy_flags |= ;
  62. } */ /* BB fixme - not sure how to handle this with CIFS yet */
  63. return cifs_ntfy_flags;
  64. }
  65. int cifs_dir_notify(struct file * file, unsigned long arg)
  66. {
  67. int xid;
  68. int rc = -EINVAL;
  69. int oplock = FALSE;
  70. struct cifs_sb_info *cifs_sb;
  71. struct cifsTconInfo *pTcon;
  72. char *full_path = NULL;
  73. __u32 filter = FILE_NOTIFY_CHANGE_NAME | FILE_NOTIFY_CHANGE_ATTRIBUTES;
  74. __u16 netfid;
  75. if(experimEnabled == 0)
  76. return 0;
  77. xid = GetXid();
  78. cifs_sb = CIFS_SB(file->f_dentry->d_sb);
  79. pTcon = cifs_sb->tcon;
  80. mutex_lock(&file->f_dentry->d_sb->s_vfs_rename_mutex);
  81. full_path = build_path_from_dentry(file->f_dentry);
  82. mutex_unlock(&file->f_dentry->d_sb->s_vfs_rename_mutex);
  83. if(full_path == NULL) {
  84. rc = -ENOMEM;
  85. } else {
  86. cERROR(1,("cifs dir notify on file %s with arg 0x%lx",full_path,arg)); /* BB removeme BB */
  87. rc = CIFSSMBOpen(xid, pTcon, full_path, FILE_OPEN,
  88. GENERIC_READ | SYNCHRONIZE, 0 /* create options */,
  89. &netfid, &oplock,NULL, cifs_sb->local_nls,
  90. cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
  91. /* BB fixme - add this handle to a notify handle list */
  92. if(rc) {
  93. cERROR(1,("Could not open directory for notify")); /* BB remove BB */
  94. } else {
  95. filter = convert_to_cifs_notify_flags(arg);
  96. if(filter != 0) {
  97. rc = CIFSSMBNotify(xid, pTcon,
  98. 0 /* no subdirs */, netfid,
  99. filter, file, arg & DN_MULTISHOT,
  100. cifs_sb->local_nls);
  101. } else {
  102. rc = -EINVAL;
  103. }
  104. /* BB add code to close file eventually (at unmount
  105. it would close automatically but may be a way
  106. to do it easily when inode freed or when
  107. notify info is cleared/changed */
  108. cFYI(1,("notify rc %d",rc));
  109. }
  110. }
  111. FreeXid(xid);
  112. return rc;
  113. }