blob: 1d0ca3eaaca51f282bcec21163493fda104b5cad [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/dir.c
3 *
4 * vfs operations that deal with dentries
5 *
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
34void
35renew_parental_timestamps(struct dentry *direntry)
36{
37 /* BB check if there is a way to get the kernel to do this or if we really need this */
38 do {
39 direntry->d_time = jiffies;
40 direntry = direntry->d_parent;
41 } while (!IS_ROOT(direntry));
42}
43
44/* Note: caller must free return buffer */
45char *
46build_path_from_dentry(struct dentry *direntry)
47{
48 struct dentry *temp;
49 int namelen = 0;
50 char *full_path;
Steve French88274812006-03-09 22:21:45 +000051 char dirsep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53 if(direntry == NULL)
54 return NULL; /* not much we can do if dentry is freed and
55 we need to reopen the file after it was closed implicitly
56 when the server crashed */
57
Steve French88274812006-03-09 22:21:45 +000058 dirsep = CIFS_DIR_SEP(CIFS_SB(direntry->d_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -070059cifs_bp_rename_retry:
60 for (temp = direntry; !IS_ROOT(temp);) {
61 namelen += (1 + temp->d_name.len);
62 temp = temp->d_parent;
63 if(temp == NULL) {
64 cERROR(1,("corrupt dentry"));
65 return NULL;
66 }
67 }
68
69 full_path = kmalloc(namelen+1, GFP_KERNEL);
70 if(full_path == NULL)
71 return full_path;
72 full_path[namelen] = 0; /* trailing null */
73
74 for (temp = direntry; !IS_ROOT(temp);) {
75 namelen -= 1 + temp->d_name.len;
76 if (namelen < 0) {
77 break;
78 } else {
Steve French7f573562005-08-30 11:32:14 -070079 full_path[namelen] = dirsep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 strncpy(full_path + namelen + 1, temp->d_name.name,
81 temp->d_name.len);
82 cFYI(0, (" name: %s ", full_path + namelen));
83 }
84 temp = temp->d_parent;
85 if(temp == NULL) {
86 cERROR(1,("corrupt dentry"));
87 kfree(full_path);
88 return NULL;
89 }
90 }
91 if (namelen != 0) {
92 cERROR(1,
93 ("We did not end path lookup where we expected namelen is %d",
94 namelen));
95 /* presumably this is only possible if we were racing with a rename
96 of one of the parent directories (we can not lock the dentries
97 above us to prevent this, but retrying should be harmless) */
98 kfree(full_path);
99 namelen = 0;
100 goto cifs_bp_rename_retry;
101 }
102
103 return full_path;
104}
105
Steve French737b7582005-04-28 22:41:06 -0700106/* char * build_wildcard_path_from_dentry(struct dentry *direntry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 if(full_path == NULL)
109 return full_path;
110
111 full_path[namelen] = '\\';
112 full_path[namelen+1] = '*';
Steve French737b7582005-04-28 22:41:06 -0700113 full_path[namelen+2] = 0;
114BB remove above eight lines BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116/* Inode operations in similar order to how they appear in the Linux file fs.h */
117
118int
119cifs_create(struct inode *inode, struct dentry *direntry, int mode,
120 struct nameidata *nd)
121{
122 int rc = -ENOENT;
123 int xid;
124 int oplock = 0;
125 int desiredAccess = GENERIC_READ | GENERIC_WRITE;
126 __u16 fileHandle;
127 struct cifs_sb_info *cifs_sb;
128 struct cifsTconInfo *pTcon;
129 char *full_path = NULL;
130 FILE_ALL_INFO * buf = NULL;
131 struct inode *newinode = NULL;
132 struct cifsFileInfo * pCifsFile = NULL;
133 struct cifsInodeInfo * pCifsInode;
134 int disposition = FILE_OVERWRITE_IF;
135 int write_only = FALSE;
136
137 xid = GetXid();
138
139 cifs_sb = CIFS_SB(inode->i_sb);
140 pTcon = cifs_sb->tcon;
141
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800142 mutex_lock(&direntry->d_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 full_path = build_path_from_dentry(direntry);
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800144 mutex_unlock(&direntry->d_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 if(full_path == NULL) {
146 FreeXid(xid);
147 return -ENOMEM;
148 }
149
Miklos Szeredie08fc042005-09-06 15:18:26 -0700150 if(nd && (nd->flags & LOOKUP_OPEN)) {
151 int oflags = nd->intent.open.flags;
152
153 desiredAccess = 0;
154 if (oflags & FMODE_READ)
155 desiredAccess |= GENERIC_READ;
156 if (oflags & FMODE_WRITE) {
157 desiredAccess |= GENERIC_WRITE;
158 if (!(oflags & FMODE_READ))
159 write_only = TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 }
161
Miklos Szeredie08fc042005-09-06 15:18:26 -0700162 if((oflags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 disposition = FILE_CREATE;
Miklos Szeredie08fc042005-09-06 15:18:26 -0700164 else if((oflags & (O_CREAT | O_TRUNC)) == (O_CREAT | O_TRUNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 disposition = FILE_OVERWRITE_IF;
Miklos Szeredie08fc042005-09-06 15:18:26 -0700166 else if((oflags & O_CREAT) == O_CREAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 disposition = FILE_OPEN_IF;
168 else {
169 cFYI(1,("Create flag not set in create function"));
170 }
171 }
172
173 /* BB add processing to set equivalent of mode - e.g. via CreateX with ACLs */
174 if (oplockEnabled)
175 oplock = REQ_OPLOCK;
176
177 buf = kmalloc(sizeof(FILE_ALL_INFO),GFP_KERNEL);
178 if(buf == NULL) {
179 kfree(full_path);
180 FreeXid(xid);
181 return -ENOMEM;
182 }
183
184 rc = CIFSSMBOpen(xid, pTcon, full_path, disposition,
185 desiredAccess, CREATE_NOT_DIR,
Steve French737b7582005-04-28 22:41:06 -0700186 &fileHandle, &oplock, buf, cifs_sb->local_nls,
187 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frencha9d02ad2005-08-24 23:06:05 -0700188 if(rc == -EIO) {
189 /* old server, retry the open legacy style */
190 rc = SMBLegacyOpen(xid, pTcon, full_path, disposition,
191 desiredAccess, CREATE_NOT_DIR,
192 &fileHandle, &oplock, buf, cifs_sb->local_nls,
193 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 if (rc) {
196 cFYI(1, ("cifs_create returned 0x%x ", rc));
197 } else {
198 /* If Open reported that we actually created a file
199 then we now have to set the mode if possible */
200 if ((cifs_sb->tcon->ses->capabilities & CAP_UNIX) &&
201 (oplock & CIFS_CREATE_ACTION))
202 if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
203 CIFSSMBUnixSetPerms(xid, pTcon, full_path, mode,
Steve French83451872005-12-01 17:12:59 -0800204 (__u64)current->fsuid,
205 (__u64)current->fsgid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 0 /* dev */,
Steve French737b7582005-04-28 22:41:06 -0700207 cifs_sb->local_nls,
208 cifs_sb->mnt_cifs_flags &
209 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 } else {
211 CIFSSMBUnixSetPerms(xid, pTcon, full_path, mode,
212 (__u64)-1,
213 (__u64)-1,
214 0 /* dev */,
Steve French737b7582005-04-28 22:41:06 -0700215 cifs_sb->local_nls,
216 cifs_sb->mnt_cifs_flags &
217 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
219 else {
Steve Frenchd7245c22005-07-14 18:25:12 -0500220 /* BB implement mode setting via Windows security descriptors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 /* eg CIFSSMBWinSetPerms(xid,pTcon,full_path,mode,-1,-1,local_nls);*/
222 /* could set r/o dos attribute if mode & 0222 == 0 */
223 }
224
225 /* BB server might mask mode so we have to query for Unix case*/
226 if (pTcon->ses->capabilities & CAP_UNIX)
227 rc = cifs_get_inode_info_unix(&newinode, full_path,
228 inode->i_sb,xid);
229 else {
230 rc = cifs_get_inode_info(&newinode, full_path,
231 buf, inode->i_sb,xid);
Steve French6473a552005-11-29 20:20:10 -0800232 if(newinode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 newinode->i_mode = mode;
Steve French6473a552005-11-29 20:20:10 -0800234 if((oplock & CIFS_CREATE_ACTION) &&
235 (cifs_sb->mnt_cifs_flags &
236 CIFS_MOUNT_SET_UID)) {
237 newinode->i_uid = current->fsuid;
238 newinode->i_gid = current->fsgid;
239 }
240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242
243 if (rc != 0) {
Steve French4a6d87f2005-08-13 08:15:54 -0700244 cFYI(1,
245 ("Create worked but get_inode_info failed rc = %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 rc));
247 } else {
Steve Frenchb92327f2005-08-22 20:09:43 -0700248 if (pTcon->nocase)
249 direntry->d_op = &cifs_ci_dentry_ops;
250 else
251 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 d_instantiate(direntry, newinode);
253 }
254 if((nd->flags & LOOKUP_OPEN) == FALSE) {
255 /* mknod case - do not leave file open */
256 CIFSSMBClose(xid, pTcon, fileHandle);
257 } else if(newinode) {
Steve Frenchd14537f12005-04-28 22:41:05 -0700258 pCifsFile =
Eric Sesterhenna048d7a2006-02-21 22:33:09 +0000259 kzalloc(sizeof (struct cifsFileInfo), GFP_KERNEL);
Steve Frenchd14537f12005-04-28 22:41:05 -0700260
261 if(pCifsFile == NULL)
262 goto cifs_create_out;
Steve Frenchd14537f12005-04-28 22:41:05 -0700263 pCifsFile->netfid = fileHandle;
264 pCifsFile->pid = current->tgid;
265 pCifsFile->pInode = newinode;
266 pCifsFile->invalidHandle = FALSE;
267 pCifsFile->closePend = FALSE;
268 init_MUTEX(&pCifsFile->fh_sem);
269 /* set the following in open now
270 pCifsFile->pfile = file; */
271 write_lock(&GlobalSMBSeslock);
272 list_add(&pCifsFile->tlist,&pTcon->openFileList);
273 pCifsInode = CIFS_I(newinode);
274 if(pCifsInode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /* if readable file instance put first in list*/
Steve Frenchd14537f12005-04-28 22:41:05 -0700276 if (write_only == TRUE) {
277 list_add_tail(&pCifsFile->flist,
278 &pCifsInode->openFileList);
279 } else {
280 list_add(&pCifsFile->flist,
281 &pCifsInode->openFileList);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 }
Steve Frenchd14537f12005-04-28 22:41:05 -0700283 if((oplock & 0xF) == OPLOCK_EXCLUSIVE) {
284 pCifsInode->clientCanCacheAll = TRUE;
285 pCifsInode->clientCanCacheRead = TRUE;
286 cFYI(1,("Exclusive Oplock for inode %p",
287 newinode));
288 } else if((oplock & 0xF) == OPLOCK_READ)
289 pCifsInode->clientCanCacheRead = TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
Steve Frenchd14537f12005-04-28 22:41:05 -0700291 write_unlock(&GlobalSMBSeslock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293 }
Steve Frenchd14537f12005-04-28 22:41:05 -0700294cifs_create_out:
295 kfree(buf);
296 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 FreeXid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 return rc;
299}
300
Steve French86c96b42005-11-18 20:25:31 -0800301int cifs_mknod(struct inode *inode, struct dentry *direntry, int mode,
302 dev_t device_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 int rc = -EPERM;
305 int xid;
306 struct cifs_sb_info *cifs_sb;
307 struct cifsTconInfo *pTcon;
308 char *full_path = NULL;
309 struct inode * newinode = NULL;
310
311 if (!old_valid_dev(device_number))
312 return -EINVAL;
313
314 xid = GetXid();
315
316 cifs_sb = CIFS_SB(inode->i_sb);
317 pTcon = cifs_sb->tcon;
318
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800319 mutex_lock(&direntry->d_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 full_path = build_path_from_dentry(direntry);
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800321 mutex_unlock(&direntry->d_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 if(full_path == NULL)
323 rc = -ENOMEM;
Steve French4a6d87f2005-08-13 08:15:54 -0700324 else if (pTcon->ses->capabilities & CAP_UNIX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
326 rc = CIFSSMBUnixSetPerms(xid, pTcon, full_path,
Steve French83451872005-12-01 17:12:59 -0800327 mode,(__u64)current->fsuid,(__u64)current->fsgid,
Steve French737b7582005-04-28 22:41:06 -0700328 device_number, cifs_sb->local_nls,
329 cifs_sb->mnt_cifs_flags &
330 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 } else {
332 rc = CIFSSMBUnixSetPerms(xid, pTcon,
333 full_path, mode, (__u64)-1, (__u64)-1,
Steve French737b7582005-04-28 22:41:06 -0700334 device_number, cifs_sb->local_nls,
335 cifs_sb->mnt_cifs_flags &
336 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
338
339 if(!rc) {
340 rc = cifs_get_inode_info_unix(&newinode, full_path,
341 inode->i_sb,xid);
Steve Frenchb92327f2005-08-22 20:09:43 -0700342 if (pTcon->nocase)
343 direntry->d_op = &cifs_ci_dentry_ops;
344 else
345 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 if(rc == 0)
347 d_instantiate(direntry, newinode);
348 }
Steve Frenchd7245c22005-07-14 18:25:12 -0500349 } else {
Steve Frencheda3c0292005-07-21 15:20:28 -0700350 if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) {
351 int oplock = 0;
352 u16 fileHandle;
353 FILE_ALL_INFO * buf;
Steve Frenchd7245c22005-07-14 18:25:12 -0500354
355 cFYI(1,("sfu compat create special file"));
Steve Frenchd7245c22005-07-14 18:25:12 -0500356
Steve Frencheda3c0292005-07-21 15:20:28 -0700357 buf = kmalloc(sizeof(FILE_ALL_INFO),GFP_KERNEL);
358 if(buf == NULL) {
359 kfree(full_path);
360 FreeXid(xid);
361 return -ENOMEM;
362 }
363
364 rc = CIFSSMBOpen(xid, pTcon, full_path,
365 FILE_CREATE, /* fail if exists */
366 GENERIC_WRITE /* BB would
367 WRITE_OWNER | WRITE_DAC be better? */,
368 /* Create a file and set the
369 file attribute to SYSTEM */
370 CREATE_NOT_DIR | CREATE_OPTION_SPECIAL,
371 &fileHandle, &oplock, buf,
372 cifs_sb->local_nls,
373 cifs_sb->mnt_cifs_flags &
374 CIFS_MOUNT_MAP_SPECIAL_CHR);
375
376 if(!rc) {
377 /* BB Do not bother to decode buf since no
Steve French86c96b42005-11-18 20:25:31 -0800378 local inode yet to put timestamps in,
379 but we can reuse it safely */
380 int bytes_written;
381 struct win_dev *pdev;
382 pdev = (struct win_dev *)buf;
383 if(S_ISCHR(mode)) {
384 memcpy(pdev->type, "IntxCHR", 8);
385 pdev->major =
386 cpu_to_le64(MAJOR(device_number));
387 pdev->minor =
388 cpu_to_le64(MINOR(device_number));
389 rc = CIFSSMBWrite(xid, pTcon,
390 fileHandle,
391 sizeof(struct win_dev),
392 0, &bytes_written, (char *)pdev,
393 NULL, 0);
394 } else if(S_ISBLK(mode)) {
395 memcpy(pdev->type, "IntxBLK", 8);
396 pdev->major =
397 cpu_to_le64(MAJOR(device_number));
398 pdev->minor =
399 cpu_to_le64(MINOR(device_number));
400 rc = CIFSSMBWrite(xid, pTcon,
401 fileHandle,
402 sizeof(struct win_dev),
403 0, &bytes_written, (char *)pdev,
404 NULL, 0);
405 } /* else if(S_ISFIFO */
Steve Frencheda3c0292005-07-21 15:20:28 -0700406 CIFSSMBClose(xid, pTcon, fileHandle);
407 d_drop(direntry);
408 }
409 kfree(buf);
Steve Frenchd7245c22005-07-14 18:25:12 -0500410 /* add code here to set EAs */
411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413
Steve Frenchd14537f12005-04-28 22:41:05 -0700414 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 FreeXid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return rc;
417}
418
419
420struct dentry *
421cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry, struct nameidata *nd)
422{
423 int xid;
424 int rc = 0; /* to get around spurious gcc warning, set to zero here */
425 struct cifs_sb_info *cifs_sb;
426 struct cifsTconInfo *pTcon;
427 struct inode *newInode = NULL;
428 char *full_path = NULL;
429
430 xid = GetXid();
431
432 cFYI(1,
433 (" parent inode = 0x%p name is: %s and dentry = 0x%p",
434 parent_dir_inode, direntry->d_name.name, direntry));
435
436 /* BB Add check of incoming data - e.g. frame not longer than maximum SMB - let server check the namelen BB */
437
438 /* check whether path exists */
439
440 cifs_sb = CIFS_SB(parent_dir_inode->i_sb);
441 pTcon = cifs_sb->tcon;
442
443 /* can not grab the rename sem here since it would
444 deadlock in the cases (beginning of sys_rename itself)
445 in which we already have the sb rename sem */
446 full_path = build_path_from_dentry(direntry);
447 if(full_path == NULL) {
448 FreeXid(xid);
449 return ERR_PTR(-ENOMEM);
450 }
451
452 if (direntry->d_inode != NULL) {
453 cFYI(1, (" non-NULL inode in lookup"));
454 } else {
455 cFYI(1, (" NULL inode in lookup"));
456 }
457 cFYI(1,
458 (" Full path: %s inode = 0x%p", full_path, direntry->d_inode));
459
460 if (pTcon->ses->capabilities & CAP_UNIX)
461 rc = cifs_get_inode_info_unix(&newInode, full_path,
462 parent_dir_inode->i_sb,xid);
463 else
464 rc = cifs_get_inode_info(&newInode, full_path, NULL,
465 parent_dir_inode->i_sb,xid);
466
467 if ((rc == 0) && (newInode != NULL)) {
Steve Frenchb92327f2005-08-22 20:09:43 -0700468 if (pTcon->nocase)
469 direntry->d_op = &cifs_ci_dentry_ops;
470 else
471 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 d_add(direntry, newInode);
473
Steve French3abb9272005-11-28 08:16:13 -0800474 /* since paths are not looked up by component - the parent
475 directories are presumed to be good here */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 renew_parental_timestamps(direntry);
477
478 } else if (rc == -ENOENT) {
479 rc = 0;
Steve French3abb9272005-11-28 08:16:13 -0800480 direntry->d_time = jiffies;
481 if (pTcon->nocase)
482 direntry->d_op = &cifs_ci_dentry_ops;
483 else
484 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 d_add(direntry, NULL);
Steve French3abb9272005-11-28 08:16:13 -0800486 /* if it was once a directory (but how can we tell?) we could do
487 shrink_dcache_parent(direntry); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 } else {
Steve Frenchb2aeb9d2005-05-17 13:16:18 -0500489 cERROR(1,("Error 0x%x on cifs_get_inode_info in lookup of %s",
490 rc,full_path));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 /* BB special case check for Access Denied - watch security
492 exposure of returning dir info implicitly via different rc
493 if file exists or not but no access BB */
494 }
495
Steve Frenchd14537f12005-04-28 22:41:05 -0700496 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 FreeXid(xid);
498 return ERR_PTR(rc);
499}
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501static int
502cifs_d_revalidate(struct dentry *direntry, struct nameidata *nd)
503{
504 int isValid = 1;
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (direntry->d_inode) {
507 if (cifs_revalidate(direntry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 return 0;
509 }
510 } else {
Steve French3abb9272005-11-28 08:16:13 -0800511 cFYI(1, ("neg dentry 0x%p name = %s",
512 direntry, direntry->d_name.name));
513 if(time_after(jiffies, direntry->d_time + HZ) ||
514 !lookupCacheEnabled) {
515 d_drop(direntry);
516 isValid = 0;
517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return isValid;
521}
522
523/* static int cifs_d_delete(struct dentry *direntry)
524{
525 int rc = 0;
526
527 cFYI(1, ("In cifs d_delete, name = %s", direntry->d_name.name));
528
529 return rc;
530} */
531
532struct dentry_operations cifs_dentry_ops = {
533 .d_revalidate = cifs_d_revalidate,
534/* d_delete: cifs_d_delete, *//* not needed except for debugging */
535 /* no need for d_hash, d_compare, d_release, d_iput ... yet. BB confirm this BB */
536};
Steve Frenchb92327f2005-08-22 20:09:43 -0700537
538static int cifs_ci_hash(struct dentry *dentry, struct qstr *q)
539{
540 struct nls_table *codepage = CIFS_SB(dentry->d_inode->i_sb)->local_nls;
541 unsigned long hash;
542 int i;
543
544 hash = init_name_hash();
545 for (i = 0; i < q->len; i++)
546 hash = partial_name_hash(nls_tolower(codepage, q->name[i]),
547 hash);
548 q->hash = end_name_hash(hash);
549
550 return 0;
551}
552
553static int cifs_ci_compare(struct dentry *dentry, struct qstr *a,
554 struct qstr *b)
555{
556 struct nls_table *codepage = CIFS_SB(dentry->d_inode->i_sb)->local_nls;
557
558 if ((a->len == b->len) &&
559 (nls_strnicmp(codepage, a->name, b->name, a->len) == 0)) {
560 /*
561 * To preserve case, don't let an existing negative dentry's
562 * case take precedence. If a is not a negative dentry, this
563 * should have no side effects
564 */
565 memcpy((unsigned char *)a->name, b->name, a->len);
566 return 0;
567 }
568 return 1;
569}
570
571struct dentry_operations cifs_ci_dentry_ops = {
572 .d_revalidate = cifs_d_revalidate,
573 .d_hash = cifs_ci_hash,
574 .d_compare = cifs_ci_compare,
575};