39d7b89b7791c869df1a935176333d780bfaccf9
[linux-2.6.git] / fs / cifs / fcntl.c
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
31 int cifs_directory_notify(unsigned long arg, struct file * file)
32 {
33         int xid;
34         int rc = -EINVAL;
35         struct cifs_sb_info *cifs_sb;
36         struct cifsTconInfo *pTcon;
37         char *full_path = NULL;
38
39         xid = GetXid();
40         cifs_sb = CIFS_SB(file->f_dentry->d_sb);
41         pTcon = cifs_sb->tcon;
42
43         down(&file->f_dentry->d_sb->s_vfs_rename_sem);
44         full_path = build_path_from_dentry(file->f_dentry);
45         up(&file->f_dentry->d_sb->s_vfs_rename_sem);
46
47         if(full_path == NULL) {
48                 rc = -ENOMEM;
49         } else {
50                 cFYI(1,("cifs dir notify on file %s",full_path));
51                 /* CIFSSMBNotify(xid, pTcon, full_path, cifs_sb->local_nls);*/
52         }
53         
54         FreeXid(xid);
55         return rc;
56 }
57
58
59 long cifs_fcntl(int file_desc, unsigned int command, unsigned long arg,
60                                 struct file * file)
61 {
62         /* Few few file control functions need to be specially mapped. So far
63         only:
64                 F_NOTIFY (for directory change notification)
65         And eventually:
66                 F_GETLEASE
67                 F_SETLEASE 
68         need to be mapped here. The others either already are mapped downstream
69         or do not need to go to the server (client only sideeffects):
70                 F_DUPFD:
71                 F_GETFD:
72                 F_SETFD:
73                 F_GETFL:
74                 F_SETFL:
75                 F_GETLK:
76                 F_SETLK:
77                 F_SETLKW:
78                 F_GETOWN:
79                 F_SETOWN:
80                 F_GETSIG:
81                 F_SETSIG:
82         */
83         long rc = 0;
84
85         cFYI(1,("cifs_fcntl: command %d with arg %lx",command,arg)); /* BB removeme BB */
86
87         switch (command) {
88         case F_NOTIFY:
89                 /* let the local call have a chance to fail first */
90                 rc = generic_file_fcntl(file_desc,command,arg,file);
91                 if(rc)
92                         return rc;
93                 else {
94                         /* local call succeeded try to do remote notify to
95                         pick up changes from other clients to server file */
96                         cifs_directory_notify(arg, file);
97                         /* BB add case to long and return rc from above */
98                         return rc;
99                 }
100                 break;
101         default:
102                 break;
103         }
104         return generic_file_fcntl(file_desc,command,arg,file);
105 }
106