| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | *   fs/cifs/fcntl.c | 
|  | 3 | * | 
|  | 4 | *   vfs operations that deal with the file control API | 
| Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 5 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |  | 
|  | 32 | static __u32 convert_to_cifs_notify_flags(unsigned long fcntl_notify_flags) | 
|  | 33 | { | 
|  | 34 | __u32 cifs_ntfy_flags = 0; | 
|  | 35 |  | 
|  | 36 | /* No way on Linux VFS to ask to monitor xattr | 
|  | 37 | changes (and no stream support either */ | 
| Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 38 | if (fcntl_notify_flags & DN_ACCESS) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | cifs_ntfy_flags |= FILE_NOTIFY_CHANGE_LAST_ACCESS; | 
| Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 40 | if (fcntl_notify_flags & DN_MODIFY) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | /* What does this mean on directories? */ | 
|  | 42 | cifs_ntfy_flags |= FILE_NOTIFY_CHANGE_LAST_WRITE | | 
|  | 43 | FILE_NOTIFY_CHANGE_SIZE; | 
|  | 44 | } | 
| Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 45 | if (fcntl_notify_flags & DN_CREATE) { | 
|  | 46 | cifs_ntfy_flags |= FILE_NOTIFY_CHANGE_CREATION | | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | FILE_NOTIFY_CHANGE_LAST_WRITE; | 
|  | 48 | } | 
| Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 49 | if (fcntl_notify_flags & DN_DELETE) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | cifs_ntfy_flags |= FILE_NOTIFY_CHANGE_LAST_WRITE; | 
| Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 51 | if (fcntl_notify_flags & DN_RENAME) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | /* BB review this - checking various server behaviors */ | 
| Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 53 | cifs_ntfy_flags |= FILE_NOTIFY_CHANGE_DIR_NAME | | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | FILE_NOTIFY_CHANGE_FILE_NAME; | 
|  | 55 | } | 
| Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 56 | if (fcntl_notify_flags & DN_ATTRIB) { | 
|  | 57 | cifs_ntfy_flags |= FILE_NOTIFY_CHANGE_SECURITY | | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | FILE_NOTIFY_CHANGE_ATTRIBUTES; | 
|  | 59 | } | 
| Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 60 | /*	if (fcntl_notify_flags & DN_MULTISHOT) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | cifs_ntfy_flags |= ; | 
|  | 62 | } */ /* BB fixme - not sure how to handle this with CIFS yet */ | 
|  | 63 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | return cifs_ntfy_flags; | 
|  | 65 | } | 
|  | 66 |  | 
| Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 67 | int cifs_dir_notify(struct file *file, unsigned long arg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | { | 
|  | 69 | int xid; | 
|  | 70 | int rc = -EINVAL; | 
| Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 71 | int oplock = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | struct cifs_sb_info *cifs_sb; | 
|  | 73 | struct cifsTconInfo *pTcon; | 
|  | 74 | char *full_path = NULL; | 
|  | 75 | __u32 filter = FILE_NOTIFY_CHANGE_NAME | FILE_NOTIFY_CHANGE_ATTRIBUTES; | 
|  | 76 | __u16 netfid; | 
|  | 77 |  | 
| Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 78 | if (experimEnabled == 0) | 
| Steve French | 4ca9c19 | 2005-10-10 19:52:13 -0700 | [diff] [blame] | 79 | return 0; | 
|  | 80 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | xid = GetXid(); | 
| Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 82 | cifs_sb = CIFS_SB(file->f_path.dentry->d_sb); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | pTcon = cifs_sb->tcon; | 
|  | 84 |  | 
| Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 85 | full_path = build_path_from_dentry(file->f_path.dentry); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 |  | 
| Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 87 | if (full_path == NULL) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | rc = -ENOMEM; | 
|  | 89 | } else { | 
| Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 90 | cFYI(1, ("dir notify on file %s Arg 0x%lx", full_path, arg)); | 
|  | 91 | rc = CIFSSMBOpen(xid, pTcon, full_path, FILE_OPEN, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | GENERIC_READ | SYNCHRONIZE, 0 /* create options */, | 
| Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 93 | &netfid, &oplock, NULL, cifs_sb->local_nls, | 
| Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 94 | cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | /* BB fixme - add this handle to a notify handle list */ | 
| Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 96 | if (rc) { | 
|  | 97 | cFYI(1, ("Could not open directory for notify")); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | } else { | 
|  | 99 | filter = convert_to_cifs_notify_flags(arg); | 
| Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 100 | if (filter != 0) { | 
|  | 101 | rc = CIFSSMBNotify(xid, pTcon, | 
| Steve French | 167a251 | 2005-08-24 20:03:11 -0700 | [diff] [blame] | 102 | 0 /* no subdirs */, netfid, | 
|  | 103 | filter, file, arg & DN_MULTISHOT, | 
|  | 104 | cifs_sb->local_nls); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | } else { | 
|  | 106 | rc = -EINVAL; | 
|  | 107 | } | 
|  | 108 | /* BB add code to close file eventually (at unmount | 
|  | 109 | it would close automatically but may be a way | 
|  | 110 | to do it easily when inode freed or when | 
|  | 111 | notify info is cleared/changed */ | 
| Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 112 | cFYI(1, ("notify rc %d", rc)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | } | 
|  | 114 | } | 
| Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 115 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | FreeXid(xid); | 
|  | 117 | return rc; | 
|  | 118 | } |