fcntl.c 3.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
/*
 *   fs/cifs/fcntl.c
 *
 *   vfs operations that deal with the file control API
S
Steve French 已提交
5
 *
L
Linus Torvalds 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
 *   Copyright (C) International Business Machines  Corp., 2003,2004
 *   Author(s): Steve French (sfrench@us.ibm.com)
 *
 *   This library is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU Lesser General Public License as published
 *   by the Free Software Foundation; either version 2.1 of the License, or
 *   (at your option) any later version.
 *
 *   This library is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
 *   the GNU Lesser General Public License for more details.
 *
 *   You should have received a copy of the GNU Lesser General Public License
 *   along with this library; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 */
#include <linux/fs.h>
#include <linux/stat.h>
#include <linux/fcntl.h>
#include "cifsglob.h"
#include "cifsproto.h"
#include "cifs_unicode.h"
#include "cifs_debug.h"
#include "cifsfs.h"

static __u32 convert_to_cifs_notify_flags(unsigned long fcntl_notify_flags)
{
	__u32 cifs_ntfy_flags = 0;

	/* No way on Linux VFS to ask to monitor xattr
	changes (and no stream support either */
S
Steve French 已提交
38
	if (fcntl_notify_flags & DN_ACCESS)
L
Linus Torvalds 已提交
39
		cifs_ntfy_flags |= FILE_NOTIFY_CHANGE_LAST_ACCESS;
S
Steve French 已提交
40
	if (fcntl_notify_flags & DN_MODIFY) {
L
Linus Torvalds 已提交
41 42 43 44
		/* What does this mean on directories? */
		cifs_ntfy_flags |= FILE_NOTIFY_CHANGE_LAST_WRITE |
			FILE_NOTIFY_CHANGE_SIZE;
	}
S
Steve French 已提交
45 46
	if (fcntl_notify_flags & DN_CREATE) {
		cifs_ntfy_flags |= FILE_NOTIFY_CHANGE_CREATION |
L
Linus Torvalds 已提交
47 48
			FILE_NOTIFY_CHANGE_LAST_WRITE;
	}
S
Steve French 已提交
49
	if (fcntl_notify_flags & DN_DELETE)
L
Linus Torvalds 已提交
50
		cifs_ntfy_flags |= FILE_NOTIFY_CHANGE_LAST_WRITE;
S
Steve French 已提交
51
	if (fcntl_notify_flags & DN_RENAME) {
L
Linus Torvalds 已提交
52
		/* BB review this - checking various server behaviors */
S
Steve French 已提交
53
		cifs_ntfy_flags |= FILE_NOTIFY_CHANGE_DIR_NAME |
L
Linus Torvalds 已提交
54 55
			FILE_NOTIFY_CHANGE_FILE_NAME;
	}
S
Steve French 已提交
56 57
	if (fcntl_notify_flags & DN_ATTRIB) {
		cifs_ntfy_flags |= FILE_NOTIFY_CHANGE_SECURITY |
L
Linus Torvalds 已提交
58 59
			FILE_NOTIFY_CHANGE_ATTRIBUTES;
	}
S
Steve French 已提交
60
/*	if (fcntl_notify_flags & DN_MULTISHOT) {
L
Linus Torvalds 已提交
61 62 63 64 65 66
		cifs_ntfy_flags |= ;
	} */ /* BB fixme - not sure how to handle this with CIFS yet */

	return cifs_ntfy_flags;
}

S
Steve French 已提交
67
int cifs_dir_notify(struct file *file, unsigned long arg)
L
Linus Torvalds 已提交
68 69 70
{
	int xid;
	int rc = -EINVAL;
71
	int oplock = 0;
L
Linus Torvalds 已提交
72 73 74 75 76 77
	struct cifs_sb_info *cifs_sb;
	struct cifsTconInfo *pTcon;
	char *full_path = NULL;
	__u32 filter = FILE_NOTIFY_CHANGE_NAME | FILE_NOTIFY_CHANGE_ATTRIBUTES;
	__u16 netfid;

S
Steve French 已提交
78
	if (experimEnabled == 0)
79 80
		return 0;

L
Linus Torvalds 已提交
81
	xid = GetXid();
82
	cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
L
Linus Torvalds 已提交
83 84
	pTcon = cifs_sb->tcon;

85
	full_path = build_path_from_dentry(file->f_path.dentry);
L
Linus Torvalds 已提交
86

S
Steve French 已提交
87
	if (full_path == NULL) {
L
Linus Torvalds 已提交
88 89
		rc = -ENOMEM;
	} else {
S
Steve French 已提交
90 91
		cFYI(1, ("dir notify on file %s Arg 0x%lx", full_path, arg));
		rc = CIFSSMBOpen(xid, pTcon, full_path, FILE_OPEN,
L
Linus Torvalds 已提交
92
			GENERIC_READ | SYNCHRONIZE, 0 /* create options */,
S
Steve French 已提交
93
			&netfid, &oplock, NULL, cifs_sb->local_nls,
94
			cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
L
Linus Torvalds 已提交
95
		/* BB fixme - add this handle to a notify handle list */
S
Steve French 已提交
96 97
		if (rc) {
			cFYI(1, ("Could not open directory for notify"));
L
Linus Torvalds 已提交
98 99
		} else {
			filter = convert_to_cifs_notify_flags(arg);
S
Steve French 已提交
100 101
			if (filter != 0) {
				rc = CIFSSMBNotify(xid, pTcon,
102 103 104
					0 /* no subdirs */, netfid,
					filter, file, arg & DN_MULTISHOT,
					cifs_sb->local_nls);
L
Linus Torvalds 已提交
105 106 107 108 109 110 111
			} else {
				rc = -EINVAL;
			}
			/* BB add code to close file eventually (at unmount
			it would close automatically but may be a way
			to do it easily when inode freed or when
			notify info is cleared/changed */
S
Steve French 已提交
112
			cFYI(1, ("notify rc %d", rc));
L
Linus Torvalds 已提交
113 114
		}
	}
S
Steve French 已提交
115

L
Linus Torvalds 已提交
116 117 118
	FreeXid(xid);
	return rc;
}