blob: def89f23fe554237f56e62549fc74ebd176ac487 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/dir.c
3 *
4 * vfs operations that deal with dentries
Steve French5fdae1f2007-06-05 18:30:44 +00005 *
Steve French83451872005-12-01 17:12:59 -08006 * Copyright (C) International Business Machines Corp., 2002,2005
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * 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/slab.h>
26#include <linux/namei.h>
27#include "cifsfs.h"
28#include "cifspdu.h"
29#include "cifsglob.h"
30#include "cifsproto.h"
31#include "cifs_debug.h"
32#include "cifs_fs_sb.h"
33
Steve French99ee4db2007-02-27 05:35:17 +000034static void
Linus Torvalds1da177e2005-04-16 15:20:36 -070035renew_parental_timestamps(struct dentry *direntry)
36{
Steve French5fdae1f2007-06-05 18:30:44 +000037 /* BB check if there is a way to get the kernel to do this or if we
38 really need this */
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 do {
40 direntry->d_time = jiffies;
41 direntry = direntry->d_parent;
Steve French5fdae1f2007-06-05 18:30:44 +000042 } while (!IS_ROOT(direntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -070043}
44
45/* Note: caller must free return buffer */
46char *
47build_path_from_dentry(struct dentry *direntry)
48{
49 struct dentry *temp;
Steve French2fe87f02006-09-21 07:02:52 +000050 int namelen;
51 int pplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 char *full_path;
Steve French88274812006-03-09 22:21:45 +000053 char dirsep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Steve French5fdae1f2007-06-05 18:30:44 +000055 if (direntry == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 return NULL; /* not much we can do if dentry is freed and
57 we need to reopen the file after it was closed implicitly
58 when the server crashed */
59
Steve French88274812006-03-09 22:21:45 +000060 dirsep = CIFS_DIR_SEP(CIFS_SB(direntry->d_sb));
Steve French2fe87f02006-09-21 07:02:52 +000061 pplen = CIFS_SB(direntry->d_sb)->prepathlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062cifs_bp_rename_retry:
Steve French5fdae1f2007-06-05 18:30:44 +000063 namelen = pplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 for (temp = direntry; !IS_ROOT(temp);) {
65 namelen += (1 + temp->d_name.len);
66 temp = temp->d_parent;
Steve French5fdae1f2007-06-05 18:30:44 +000067 if (temp == NULL) {
68 cERROR(1, ("corrupt dentry"));
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 return NULL;
70 }
71 }
72
73 full_path = kmalloc(namelen+1, GFP_KERNEL);
Steve French5fdae1f2007-06-05 18:30:44 +000074 if (full_path == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 return full_path;
76 full_path[namelen] = 0; /* trailing null */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 for (temp = direntry; !IS_ROOT(temp);) {
78 namelen -= 1 + temp->d_name.len;
79 if (namelen < 0) {
80 break;
81 } else {
Steve French7f573562005-08-30 11:32:14 -070082 full_path[namelen] = dirsep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 strncpy(full_path + namelen + 1, temp->d_name.name,
84 temp->d_name.len);
Steve French2fe87f02006-09-21 07:02:52 +000085 cFYI(0, ("name: %s", full_path + namelen));
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 }
87 temp = temp->d_parent;
Steve French5fdae1f2007-06-05 18:30:44 +000088 if (temp == NULL) {
89 cERROR(1, ("corrupt dentry"));
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 kfree(full_path);
91 return NULL;
92 }
93 }
Steve French2fe87f02006-09-21 07:02:52 +000094 if (namelen != pplen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 cERROR(1,
Steve French2fe87f02006-09-21 07:02:52 +000096 ("did not end path lookup where expected namelen is %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 namelen));
Steve French5fdae1f2007-06-05 18:30:44 +000098 /* presumably this is only possible if racing with a rename
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 of one of the parent directories (we can not lock the dentries
100 above us to prevent this, but retrying should be harmless) */
101 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 goto cifs_bp_rename_retry;
103 }
Steve French2fe87f02006-09-21 07:02:52 +0000104 /* DIR_SEP already set for byte 0 / vs \ but not for
105 subsequent slashes in prepath which currently must
106 be entered the right way - not sure if there is an alternative
107 since the '\' is a valid posix character so we can not switch
108 those safely to '/' if any are found in the middle of the prepath */
109 /* BB test paths to Windows with '/' in the midst of prepath */
Steve French5fdae1f2007-06-05 18:30:44 +0000110 strncpy(full_path, CIFS_SB(direntry->d_sb)->prepath, pplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return full_path;
112}
113
Steve French737b7582005-04-28 22:41:06 -0700114/* char * build_wildcard_path_from_dentry(struct dentry *direntry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 if(full_path == NULL)
117 return full_path;
118
119 full_path[namelen] = '\\';
120 full_path[namelen+1] = '*';
Steve French737b7582005-04-28 22:41:06 -0700121 full_path[namelen+2] = 0;
122BB remove above eight lines BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Steve French39798772006-05-31 22:40:51 +0000124/* Inode operations in similar order to how they appear in Linux file fs.h */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126int
127cifs_create(struct inode *inode, struct dentry *direntry, int mode,
128 struct nameidata *nd)
129{
130 int rc = -ENOENT;
131 int xid;
132 int oplock = 0;
133 int desiredAccess = GENERIC_READ | GENERIC_WRITE;
134 __u16 fileHandle;
135 struct cifs_sb_info *cifs_sb;
136 struct cifsTconInfo *pTcon;
137 char *full_path = NULL;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000138 FILE_ALL_INFO *buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 struct inode *newinode = NULL;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000140 struct cifsFileInfo *pCifsFile = NULL;
141 struct cifsInodeInfo *pCifsInode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 int disposition = FILE_OVERWRITE_IF;
143 int write_only = FALSE;
144
145 xid = GetXid();
146
147 cifs_sb = CIFS_SB(inode->i_sb);
148 pTcon = cifs_sb->tcon;
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 full_path = build_path_from_dentry(direntry);
Steve French5fdae1f2007-06-05 18:30:44 +0000151 if (full_path == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 FreeXid(xid);
153 return -ENOMEM;
154 }
155
Steve French5fdae1f2007-06-05 18:30:44 +0000156 if (nd && (nd->flags & LOOKUP_OPEN)) {
Miklos Szeredie08fc042005-09-06 15:18:26 -0700157 int oflags = nd->intent.open.flags;
158
159 desiredAccess = 0;
160 if (oflags & FMODE_READ)
161 desiredAccess |= GENERIC_READ;
162 if (oflags & FMODE_WRITE) {
163 desiredAccess |= GENERIC_WRITE;
164 if (!(oflags & FMODE_READ))
165 write_only = TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
167
Steve French5fdae1f2007-06-05 18:30:44 +0000168 if ((oflags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 disposition = FILE_CREATE;
Steve French5fdae1f2007-06-05 18:30:44 +0000170 else if ((oflags & (O_CREAT | O_TRUNC)) == (O_CREAT | O_TRUNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 disposition = FILE_OVERWRITE_IF;
Steve French5fdae1f2007-06-05 18:30:44 +0000172 else if ((oflags & O_CREAT) == O_CREAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 disposition = FILE_OPEN_IF;
174 else {
Steve French5fdae1f2007-06-05 18:30:44 +0000175 cFYI(1, ("Create flag not set in create function"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
177 }
178
Steve French5fdae1f2007-06-05 18:30:44 +0000179 /* BB add processing to set equivalent of mode - e.g. via CreateX with
180 ACLs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 if (oplockEnabled)
182 oplock = REQ_OPLOCK;
183
Steve French5fdae1f2007-06-05 18:30:44 +0000184 buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
185 if (buf == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 kfree(full_path);
187 FreeXid(xid);
188 return -ENOMEM;
189 }
Steve French5fdae1f2007-06-05 18:30:44 +0000190 if (cifs_sb->tcon->ses->capabilities & CAP_NT_SMBS)
Steve French5bafd762006-06-07 00:18:43 +0000191 rc = CIFSSMBOpen(xid, pTcon, full_path, disposition,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 desiredAccess, CREATE_NOT_DIR,
Steve French737b7582005-04-28 22:41:06 -0700193 &fileHandle, &oplock, buf, cifs_sb->local_nls,
194 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French5bafd762006-06-07 00:18:43 +0000195 else
196 rc = -EIO; /* no NT SMB support fall into legacy open below */
197
Steve French5fdae1f2007-06-05 18:30:44 +0000198 if (rc == -EIO) {
Steve Frencha9d02ad2005-08-24 23:06:05 -0700199 /* old server, retry the open legacy style */
200 rc = SMBLegacyOpen(xid, pTcon, full_path, disposition,
201 desiredAccess, CREATE_NOT_DIR,
202 &fileHandle, &oplock, buf, cifs_sb->local_nls,
203 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French5fdae1f2007-06-05 18:30:44 +0000204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (rc) {
Steve French26a21b92006-05-31 18:05:34 +0000206 cFYI(1, ("cifs_create returned 0x%x", rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 } else {
208 /* If Open reported that we actually created a file
209 then we now have to set the mode if possible */
210 if ((cifs_sb->tcon->ses->capabilities & CAP_UNIX) &&
Steve French3ce53fc2007-06-08 14:55:14 +0000211 (oplock & CIFS_CREATE_ACTION)) {
212 mode &= ~current->fs->umask;
Steve French5fdae1f2007-06-05 18:30:44 +0000213 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 CIFSSMBUnixSetPerms(xid, pTcon, full_path, mode,
Steve French83451872005-12-01 17:12:59 -0800215 (__u64)current->fsuid,
216 (__u64)current->fsgid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 0 /* dev */,
Steve French5fdae1f2007-06-05 18:30:44 +0000218 cifs_sb->local_nls,
219 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700220 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 } else {
222 CIFSSMBUnixSetPerms(xid, pTcon, full_path, mode,
223 (__u64)-1,
224 (__u64)-1,
225 0 /* dev */,
Steve French737b7582005-04-28 22:41:06 -0700226 cifs_sb->local_nls,
Steve French5fdae1f2007-06-05 18:30:44 +0000227 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700228 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
Steve French3ce53fc2007-06-08 14:55:14 +0000230 } else {
Steve French5fdae1f2007-06-05 18:30:44 +0000231 /* BB implement mode setting via Windows security
232 descriptors e.g. */
233 /* CIFSSMBWinSetPerms(xid,pTcon,path,mode,-1,-1,nls);*/
234
235 /* Could set r/o dos attribute if mode & 0222 == 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237
238 /* BB server might mask mode so we have to query for Unix case*/
239 if (pTcon->ses->capabilities & CAP_UNIX)
240 rc = cifs_get_inode_info_unix(&newinode, full_path,
Steve French5fdae1f2007-06-05 18:30:44 +0000241 inode->i_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 else {
243 rc = cifs_get_inode_info(&newinode, full_path,
Steve French5fdae1f2007-06-05 18:30:44 +0000244 buf, inode->i_sb, xid);
245 if (newinode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 newinode->i_mode = mode;
Steve French5fdae1f2007-06-05 18:30:44 +0000247 if ((oplock & CIFS_CREATE_ACTION) &&
248 (cifs_sb->mnt_cifs_flags &
Steve French6473a552005-11-29 20:20:10 -0800249 CIFS_MOUNT_SET_UID)) {
250 newinode->i_uid = current->fsuid;
251 newinode->i_gid = current->fsgid;
252 }
253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
255
256 if (rc != 0) {
Steve French4a6d87f2005-08-13 08:15:54 -0700257 cFYI(1,
258 ("Create worked but get_inode_info failed rc = %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 rc));
260 } else {
Steve Frenchb92327f2005-08-22 20:09:43 -0700261 if (pTcon->nocase)
262 direntry->d_op = &cifs_ci_dentry_ops;
263 else
264 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 d_instantiate(direntry, newinode);
266 }
Steve French7521a3c2007-07-11 18:30:34 +0000267 if ((nd == NULL /* nfsd case - nfs srv does not set nd */) ||
268 ((nd->flags & LOOKUP_OPEN) == FALSE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 /* mknod case - do not leave file open */
270 CIFSSMBClose(xid, pTcon, fileHandle);
Steve French5fdae1f2007-06-05 18:30:44 +0000271 } else if (newinode) {
Steve Frenchd14537f12005-04-28 22:41:05 -0700272 pCifsFile =
Eric Sesterhenna048d7a2006-02-21 22:33:09 +0000273 kzalloc(sizeof (struct cifsFileInfo), GFP_KERNEL);
Steve French221601c2007-06-05 20:35:06 +0000274
Steve French5fdae1f2007-06-05 18:30:44 +0000275 if (pCifsFile == NULL)
Steve Frenchd14537f12005-04-28 22:41:05 -0700276 goto cifs_create_out;
Steve Frenchd14537f12005-04-28 22:41:05 -0700277 pCifsFile->netfid = fileHandle;
278 pCifsFile->pid = current->tgid;
279 pCifsFile->pInode = newinode;
280 pCifsFile->invalidHandle = FALSE;
281 pCifsFile->closePend = FALSE;
282 init_MUTEX(&pCifsFile->fh_sem);
Roland Dreier796e5662007-05-03 04:33:45 +0000283 mutex_init(&pCifsFile->lock_mutex);
Steve Frenche466e482006-08-15 13:07:18 +0000284 INIT_LIST_HEAD(&pCifsFile->llist);
Steve French5fdae1f2007-06-05 18:30:44 +0000285 atomic_set(&pCifsFile->wrtPending, 0);
Steve Frenche466e482006-08-15 13:07:18 +0000286
Steve French5fdae1f2007-06-05 18:30:44 +0000287 /* set the following in open now
Steve Frenchd14537f12005-04-28 22:41:05 -0700288 pCifsFile->pfile = file; */
289 write_lock(&GlobalSMBSeslock);
Steve French5fdae1f2007-06-05 18:30:44 +0000290 list_add(&pCifsFile->tlist, &pTcon->openFileList);
Steve Frenchd14537f12005-04-28 22:41:05 -0700291 pCifsInode = CIFS_I(newinode);
Steve French5fdae1f2007-06-05 18:30:44 +0000292 if (pCifsInode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 /* if readable file instance put first in list*/
Steve Frenchd14537f12005-04-28 22:41:05 -0700294 if (write_only == TRUE) {
Steve French5fdae1f2007-06-05 18:30:44 +0000295 list_add_tail(&pCifsFile->flist,
Steve Frenchd14537f12005-04-28 22:41:05 -0700296 &pCifsInode->openFileList);
297 } else {
298 list_add(&pCifsFile->flist,
299 &pCifsInode->openFileList);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
Steve French5fdae1f2007-06-05 18:30:44 +0000301 if ((oplock & 0xF) == OPLOCK_EXCLUSIVE) {
Steve Frenchd14537f12005-04-28 22:41:05 -0700302 pCifsInode->clientCanCacheAll = TRUE;
303 pCifsInode->clientCanCacheRead = TRUE;
Steve French221601c2007-06-05 20:35:06 +0000304 cFYI(1, ("Exclusive Oplock inode %p",
Steve Frenchd14537f12005-04-28 22:41:05 -0700305 newinode));
Steve French5fdae1f2007-06-05 18:30:44 +0000306 } else if ((oplock & 0xF) == OPLOCK_READ)
Steve Frenchd14537f12005-04-28 22:41:05 -0700307 pCifsInode->clientCanCacheRead = TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
Steve Frenchd14537f12005-04-28 22:41:05 -0700309 write_unlock(&GlobalSMBSeslock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
Steve French5fdae1f2007-06-05 18:30:44 +0000311 }
Steve Frenchd14537f12005-04-28 22:41:05 -0700312cifs_create_out:
313 kfree(buf);
314 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 FreeXid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return rc;
317}
318
Steve French5fdae1f2007-06-05 18:30:44 +0000319int cifs_mknod(struct inode *inode, struct dentry *direntry, int mode,
320 dev_t device_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 int rc = -EPERM;
323 int xid;
324 struct cifs_sb_info *cifs_sb;
325 struct cifsTconInfo *pTcon;
326 char *full_path = NULL;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000327 struct inode *newinode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 if (!old_valid_dev(device_number))
330 return -EINVAL;
331
332 xid = GetXid();
333
334 cifs_sb = CIFS_SB(inode->i_sb);
335 pTcon = cifs_sb->tcon;
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 full_path = build_path_from_dentry(direntry);
Steve French5fdae1f2007-06-05 18:30:44 +0000338 if (full_path == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 rc = -ENOMEM;
Steve French4a6d87f2005-08-13 08:15:54 -0700340 else if (pTcon->ses->capabilities & CAP_UNIX) {
Steve French3ce53fc2007-06-08 14:55:14 +0000341 mode &= ~current->fs->umask;
Steve French5fdae1f2007-06-05 18:30:44 +0000342 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 rc = CIFSSMBUnixSetPerms(xid, pTcon, full_path,
Steve French5fdae1f2007-06-05 18:30:44 +0000344 mode, (__u64)current->fsuid,
345 (__u64)current->fsgid,
Steve French737b7582005-04-28 22:41:06 -0700346 device_number, cifs_sb->local_nls,
Steve French5fdae1f2007-06-05 18:30:44 +0000347 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700348 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 } else {
350 rc = CIFSSMBUnixSetPerms(xid, pTcon,
351 full_path, mode, (__u64)-1, (__u64)-1,
Steve French737b7582005-04-28 22:41:06 -0700352 device_number, cifs_sb->local_nls,
Steve French5fdae1f2007-06-05 18:30:44 +0000353 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700354 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
356
Steve French5fdae1f2007-06-05 18:30:44 +0000357 if (!rc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 rc = cifs_get_inode_info_unix(&newinode, full_path,
Steve French5fdae1f2007-06-05 18:30:44 +0000359 inode->i_sb, xid);
Steve Frenchb92327f2005-08-22 20:09:43 -0700360 if (pTcon->nocase)
361 direntry->d_op = &cifs_ci_dentry_ops;
362 else
363 direntry->d_op = &cifs_dentry_ops;
Steve French5fdae1f2007-06-05 18:30:44 +0000364 if (rc == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 d_instantiate(direntry, newinode);
366 }
Steve Frenchd7245c22005-07-14 18:25:12 -0500367 } else {
Steve French5fdae1f2007-06-05 18:30:44 +0000368 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) {
Steve Frencheda3c022005-07-21 15:20:28 -0700369 int oplock = 0;
370 u16 fileHandle;
371 FILE_ALL_INFO * buf;
Steve Frenchd7245c22005-07-14 18:25:12 -0500372
Steve French5fdae1f2007-06-05 18:30:44 +0000373 cFYI(1, ("sfu compat create special file"));
Steve Frenchd7245c22005-07-14 18:25:12 -0500374
Steve French5fdae1f2007-06-05 18:30:44 +0000375 buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
376 if (buf == NULL) {
Steve Frencheda3c022005-07-21 15:20:28 -0700377 kfree(full_path);
378 FreeXid(xid);
379 return -ENOMEM;
380 }
381
382 rc = CIFSSMBOpen(xid, pTcon, full_path,
383 FILE_CREATE, /* fail if exists */
Steve French5fdae1f2007-06-05 18:30:44 +0000384 GENERIC_WRITE /* BB would
Steve Frencheda3c022005-07-21 15:20:28 -0700385 WRITE_OWNER | WRITE_DAC be better? */,
386 /* Create a file and set the
387 file attribute to SYSTEM */
388 CREATE_NOT_DIR | CREATE_OPTION_SPECIAL,
389 &fileHandle, &oplock, buf,
390 cifs_sb->local_nls,
Steve French5fdae1f2007-06-05 18:30:44 +0000391 cifs_sb->mnt_cifs_flags &
Steve Frencheda3c022005-07-21 15:20:28 -0700392 CIFS_MOUNT_MAP_SPECIAL_CHR);
393
Steve French5bafd762006-06-07 00:18:43 +0000394 /* BB FIXME - add handling for backlevel servers
395 which need legacy open and check for all
Steve French5fdae1f2007-06-05 18:30:44 +0000396 calls to SMBOpen for fallback to SMBLeagcyOpen */
397 if (!rc) {
Steve Frencheda3c022005-07-21 15:20:28 -0700398 /* BB Do not bother to decode buf since no
Steve French86c96b42005-11-18 20:25:31 -0800399 local inode yet to put timestamps in,
400 but we can reuse it safely */
401 int bytes_written;
402 struct win_dev *pdev;
403 pdev = (struct win_dev *)buf;
Steve French5fdae1f2007-06-05 18:30:44 +0000404 if (S_ISCHR(mode)) {
Steve French86c96b42005-11-18 20:25:31 -0800405 memcpy(pdev->type, "IntxCHR", 8);
406 pdev->major =
407 cpu_to_le64(MAJOR(device_number));
Steve French5fdae1f2007-06-05 18:30:44 +0000408 pdev->minor =
Steve French86c96b42005-11-18 20:25:31 -0800409 cpu_to_le64(MINOR(device_number));
410 rc = CIFSSMBWrite(xid, pTcon,
411 fileHandle,
412 sizeof(struct win_dev),
413 0, &bytes_written, (char *)pdev,
414 NULL, 0);
Steve French5fdae1f2007-06-05 18:30:44 +0000415 } else if (S_ISBLK(mode)) {
Steve French86c96b42005-11-18 20:25:31 -0800416 memcpy(pdev->type, "IntxBLK", 8);
417 pdev->major =
418 cpu_to_le64(MAJOR(device_number));
419 pdev->minor =
420 cpu_to_le64(MINOR(device_number));
421 rc = CIFSSMBWrite(xid, pTcon,
422 fileHandle,
423 sizeof(struct win_dev),
424 0, &bytes_written, (char *)pdev,
425 NULL, 0);
426 } /* else if(S_ISFIFO */
Steve Frencheda3c022005-07-21 15:20:28 -0700427 CIFSSMBClose(xid, pTcon, fileHandle);
428 d_drop(direntry);
429 }
430 kfree(buf);
Steve Frenchd7245c22005-07-14 18:25:12 -0500431 /* add code here to set EAs */
432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
434
Steve Frenchd14537f12005-04-28 22:41:05 -0700435 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 FreeXid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return rc;
438}
439
440
441struct dentry *
Steve French5fdae1f2007-06-05 18:30:44 +0000442cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry,
443 struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 int xid;
446 int rc = 0; /* to get around spurious gcc warning, set to zero here */
447 struct cifs_sb_info *cifs_sb;
448 struct cifsTconInfo *pTcon;
449 struct inode *newInode = NULL;
450 char *full_path = NULL;
451
452 xid = GetXid();
453
454 cFYI(1,
455 (" parent inode = 0x%p name is: %s and dentry = 0x%p",
456 parent_dir_inode, direntry->d_name.name, direntry));
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 /* check whether path exists */
459
460 cifs_sb = CIFS_SB(parent_dir_inode->i_sb);
461 pTcon = cifs_sb->tcon;
462
Steve French296034f2006-04-21 18:18:37 +0000463 /*
464 * Don't allow the separator character in a path component.
465 * The VFS will not allow "/", but "\" is allowed by posix.
466 */
467 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS)) {
468 int i;
469 for (i = 0; i < direntry->d_name.len; i++)
470 if (direntry->d_name.name[i] == '\\') {
471 cFYI(1, ("Invalid file name"));
472 FreeXid(xid);
473 return ERR_PTR(-EINVAL);
474 }
475 }
476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 /* can not grab the rename sem here since it would
478 deadlock in the cases (beginning of sys_rename itself)
479 in which we already have the sb rename sem */
480 full_path = build_path_from_dentry(direntry);
Steve French5fdae1f2007-06-05 18:30:44 +0000481 if (full_path == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 FreeXid(xid);
483 return ERR_PTR(-ENOMEM);
484 }
485
486 if (direntry->d_inode != NULL) {
487 cFYI(1, (" non-NULL inode in lookup"));
488 } else {
489 cFYI(1, (" NULL inode in lookup"));
490 }
491 cFYI(1,
492 (" Full path: %s inode = 0x%p", full_path, direntry->d_inode));
493
494 if (pTcon->ses->capabilities & CAP_UNIX)
495 rc = cifs_get_inode_info_unix(&newInode, full_path,
Steve French5fdae1f2007-06-05 18:30:44 +0000496 parent_dir_inode->i_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 else
498 rc = cifs_get_inode_info(&newInode, full_path, NULL,
Steve French5fdae1f2007-06-05 18:30:44 +0000499 parent_dir_inode->i_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 if ((rc == 0) && (newInode != NULL)) {
Steve Frenchb92327f2005-08-22 20:09:43 -0700502 if (pTcon->nocase)
503 direntry->d_op = &cifs_ci_dentry_ops;
504 else
505 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 d_add(direntry, newInode);
507
Steve French5fdae1f2007-06-05 18:30:44 +0000508 /* since paths are not looked up by component - the parent
Steve French3abb9272005-11-28 08:16:13 -0800509 directories are presumed to be good here */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 renew_parental_timestamps(direntry);
511
512 } else if (rc == -ENOENT) {
513 rc = 0;
Steve French3abb9272005-11-28 08:16:13 -0800514 direntry->d_time = jiffies;
515 if (pTcon->nocase)
516 direntry->d_op = &cifs_ci_dentry_ops;
517 else
518 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 d_add(direntry, NULL);
Steve French5fdae1f2007-06-05 18:30:44 +0000520 /* if it was once a directory (but how can we tell?) we could do
521 shrink_dcache_parent(direntry); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 } else {
Steve French221601c2007-06-05 20:35:06 +0000523 cERROR(1, ("Error 0x%x on cifs_get_inode_info in lookup of %s",
Steve French5fdae1f2007-06-05 18:30:44 +0000524 rc, full_path));
525 /* BB special case check for Access Denied - watch security
526 exposure of returning dir info implicitly via different rc
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if file exists or not but no access BB */
528 }
529
Steve Frenchd14537f12005-04-28 22:41:05 -0700530 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 FreeXid(xid);
532 return ERR_PTR(rc);
533}
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535static int
536cifs_d_revalidate(struct dentry *direntry, struct nameidata *nd)
537{
538 int isValid = 1;
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (direntry->d_inode) {
541 if (cifs_revalidate(direntry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 return 0;
543 }
544 } else {
Steve French3abb9272005-11-28 08:16:13 -0800545 cFYI(1, ("neg dentry 0x%p name = %s",
546 direntry, direntry->d_name.name));
Steve French5fdae1f2007-06-05 18:30:44 +0000547 if (time_after(jiffies, direntry->d_time + HZ) ||
Steve French3abb9272005-11-28 08:16:13 -0800548 !lookupCacheEnabled) {
549 d_drop(direntry);
550 isValid = 0;
Steve French5fdae1f2007-06-05 18:30:44 +0000551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return isValid;
555}
556
557/* static int cifs_d_delete(struct dentry *direntry)
558{
559 int rc = 0;
560
561 cFYI(1, ("In cifs d_delete, name = %s", direntry->d_name.name));
562
563 return rc;
564} */
565
566struct dentry_operations cifs_dentry_ops = {
567 .d_revalidate = cifs_d_revalidate,
Steve French5fdae1f2007-06-05 18:30:44 +0000568/* d_delete: cifs_d_delete, */ /* not needed except for debugging */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569};
Steve Frenchb92327f2005-08-22 20:09:43 -0700570
571static int cifs_ci_hash(struct dentry *dentry, struct qstr *q)
572{
573 struct nls_table *codepage = CIFS_SB(dentry->d_inode->i_sb)->local_nls;
574 unsigned long hash;
575 int i;
576
577 hash = init_name_hash();
578 for (i = 0; i < q->len; i++)
579 hash = partial_name_hash(nls_tolower(codepage, q->name[i]),
580 hash);
581 q->hash = end_name_hash(hash);
582
583 return 0;
584}
585
586static int cifs_ci_compare(struct dentry *dentry, struct qstr *a,
587 struct qstr *b)
588{
589 struct nls_table *codepage = CIFS_SB(dentry->d_inode->i_sb)->local_nls;
590
591 if ((a->len == b->len) &&
592 (nls_strnicmp(codepage, a->name, b->name, a->len) == 0)) {
593 /*
594 * To preserve case, don't let an existing negative dentry's
595 * case take precedence. If a is not a negative dentry, this
596 * should have no side effects
597 */
598 memcpy((unsigned char *)a->name, b->name, a->len);
599 return 0;
600 }
601 return 1;
602}
603
604struct dentry_operations cifs_ci_dentry_ops = {
605 .d_revalidate = cifs_d_revalidate,
606 .d_hash = cifs_ci_hash,
607 .d_compare = cifs_ci_compare,
608};