ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[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         full_path = build_path_from_dentry(file->f_dentry);
43         cFYI(1,("cifs dir notify on file %s",full_path));
44         /* CIFSSMBNotify */
45         FreeXid(xid);
46         return rc;
47 }
48
49
50 long cifs_fcntl(int file_desc, unsigned int command, unsigned long arg,
51                                 struct file * file)
52 {
53         /* Few few file control functions need to be specially mapped. So far
54         only:
55                 F_NOTIFY (for directory change notification)
56         And eventually:
57                 F_GETLEASE
58                 F_SETLEASE 
59         need to be mapped here. The others either already are mapped downstream
60         or do not need to go to the server (client only sideeffects):
61                 F_DUPFD:
62                 F_GETFD:
63                 F_SETFD:
64                 F_GETFL:
65                 F_SETFL:
66                 F_GETLK:
67                 F_SETLK:
68                 F_SETLKW:
69                 F_GETOWN:
70                 F_SETOWN:
71                 F_GETSIG:
72                 F_SETSIG:
73         */
74         long rc = 0;
75
76         cFYI(1,("cifs_fcntl: command %d with arg %lx",command,arg)); /* BB removeme BB */
77
78         switch (command) {
79         case F_NOTIFY:
80                 /* let the local call have a chance to fail first */
81                 rc = generic_file_fcntl(file_desc,command,arg,file);
82                 if(rc)
83                         return rc;
84                 else {
85                         /* local call succeeded try to do remote notify to
86                         pick up changes from other clients to server file */
87                         cifs_directory_notify(arg, file);
88                         /* BB add case to long and return rc from above */
89                         return rc;
90                 }
91                 break;
92         default:
93                 break;
94         }
95         return generic_file_fcntl(file_desc,command,arg,file);
96 }
97