blob: aa4ea965b329a8d27763917ea0868bb4a220680b [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 *
6 * Copyright (C) International Business Machines Corp., 2002,2003
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/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 French7f573562005-08-30 11:32:14 -070051 char dirsep = CIFS_DIR_SEP(CIFS_SB(direntry->d_sb));
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
58cifs_bp_rename_retry:
59 for (temp = direntry; !IS_ROOT(temp);) {
60 namelen += (1 + temp->d_name.len);
61 temp = temp->d_parent;
62 if(temp == NULL) {
63 cERROR(1,("corrupt dentry"));
64 return NULL;
65 }
66 }
67
68 full_path = kmalloc(namelen+1, GFP_KERNEL);
69 if(full_path == NULL)
70 return full_path;
71 full_path[namelen] = 0; /* trailing null */
72
73 for (temp = direntry; !IS_ROOT(temp);) {
74 namelen -= 1 + temp->d_name.len;
75 if (namelen < 0) {
76 break;
77 } else {
Steve French7f573562005-08-30 11:32:14 -070078 full_path[namelen] = dirsep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 strncpy(full_path + namelen + 1, temp->d_name.name,
80 temp->d_name.len);
81 cFYI(0, (" name: %s ", full_path + namelen));
82 }
83 temp = temp->d_parent;
84 if(temp == NULL) {
85 cERROR(1,("corrupt dentry"));
86 kfree(full_path);
87 return NULL;
88 }
89 }
90 if (namelen != 0) {
91 cERROR(1,
92 ("We did not end path lookup where we expected namelen is %d",
93 namelen));
94 /* presumably this is only possible if we were racing with a rename
95 of one of the parent directories (we can not lock the dentries
96 above us to prevent this, but retrying should be harmless) */
97 kfree(full_path);
98 namelen = 0;
99 goto cifs_bp_rename_retry;
100 }
101
102 return full_path;
103}
104
Steve French737b7582005-04-28 22:41:06 -0700105/* char * build_wildcard_path_from_dentry(struct dentry *direntry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 if(full_path == NULL)
108 return full_path;
109
110 full_path[namelen] = '\\';
111 full_path[namelen+1] = '*';
Steve French737b7582005-04-28 22:41:06 -0700112 full_path[namelen+2] = 0;
113BB remove above eight lines BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115/* Inode operations in similar order to how they appear in the Linux file fs.h */
116
117int
118cifs_create(struct inode *inode, struct dentry *direntry, int mode,
119 struct nameidata *nd)
120{
121 int rc = -ENOENT;
122 int xid;
123 int oplock = 0;
124 int desiredAccess = GENERIC_READ | GENERIC_WRITE;
125 __u16 fileHandle;
126 struct cifs_sb_info *cifs_sb;
127 struct cifsTconInfo *pTcon;
128 char *full_path = NULL;
129 FILE_ALL_INFO * buf = NULL;
130 struct inode *newinode = NULL;
131 struct cifsFileInfo * pCifsFile = NULL;
132 struct cifsInodeInfo * pCifsInode;
133 int disposition = FILE_OVERWRITE_IF;
134 int write_only = FALSE;
135
136 xid = GetXid();
137
138 cifs_sb = CIFS_SB(inode->i_sb);
139 pTcon = cifs_sb->tcon;
140
141 down(&direntry->d_sb->s_vfs_rename_sem);
142 full_path = build_path_from_dentry(direntry);
143 up(&direntry->d_sb->s_vfs_rename_sem);
144 if(full_path == NULL) {
145 FreeXid(xid);
146 return -ENOMEM;
147 }
148
Miklos Szeredie08fc042005-09-06 15:18:26 -0700149 if(nd && (nd->flags & LOOKUP_OPEN)) {
150 int oflags = nd->intent.open.flags;
151
152 desiredAccess = 0;
153 if (oflags & FMODE_READ)
154 desiredAccess |= GENERIC_READ;
155 if (oflags & FMODE_WRITE) {
156 desiredAccess |= GENERIC_WRITE;
157 if (!(oflags & FMODE_READ))
158 write_only = TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 }
160
Miklos Szeredie08fc042005-09-06 15:18:26 -0700161 if((oflags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 disposition = FILE_CREATE;
Miklos Szeredie08fc042005-09-06 15:18:26 -0700163 else if((oflags & (O_CREAT | O_TRUNC)) == (O_CREAT | O_TRUNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 disposition = FILE_OVERWRITE_IF;
Miklos Szeredie08fc042005-09-06 15:18:26 -0700165 else if((oflags & O_CREAT) == O_CREAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 disposition = FILE_OPEN_IF;
167 else {
168 cFYI(1,("Create flag not set in create function"));
169 }
170 }
171
172 /* BB add processing to set equivalent of mode - e.g. via CreateX with ACLs */
173 if (oplockEnabled)
174 oplock = REQ_OPLOCK;
175
176 buf = kmalloc(sizeof(FILE_ALL_INFO),GFP_KERNEL);
177 if(buf == NULL) {
178 kfree(full_path);
179 FreeXid(xid);
180 return -ENOMEM;
181 }
182
183 rc = CIFSSMBOpen(xid, pTcon, full_path, disposition,
184 desiredAccess, CREATE_NOT_DIR,
Steve French737b7582005-04-28 22:41:06 -0700185 &fileHandle, &oplock, buf, cifs_sb->local_nls,
186 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frencha9d02ad2005-08-24 23:06:05 -0700187 if(rc == -EIO) {
188 /* old server, retry the open legacy style */
189 rc = SMBLegacyOpen(xid, pTcon, full_path, disposition,
190 desiredAccess, CREATE_NOT_DIR,
191 &fileHandle, &oplock, buf, cifs_sb->local_nls,
192 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if (rc) {
195 cFYI(1, ("cifs_create returned 0x%x ", rc));
196 } else {
197 /* If Open reported that we actually created a file
198 then we now have to set the mode if possible */
199 if ((cifs_sb->tcon->ses->capabilities & CAP_UNIX) &&
200 (oplock & CIFS_CREATE_ACTION))
201 if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
202 CIFSSMBUnixSetPerms(xid, pTcon, full_path, mode,
203 (__u64)current->euid,
204 (__u64)current->egid,
205 0 /* dev */,
Steve French737b7582005-04-28 22:41:06 -0700206 cifs_sb->local_nls,
207 cifs_sb->mnt_cifs_flags &
208 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 } else {
210 CIFSSMBUnixSetPerms(xid, pTcon, full_path, mode,
211 (__u64)-1,
212 (__u64)-1,
213 0 /* dev */,
Steve French737b7582005-04-28 22:41:06 -0700214 cifs_sb->local_nls,
215 cifs_sb->mnt_cifs_flags &
216 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
218 else {
Steve Frenchd7245c22005-07-14 18:25:12 -0500219 /* BB implement mode setting via Windows security descriptors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 /* eg CIFSSMBWinSetPerms(xid,pTcon,full_path,mode,-1,-1,local_nls);*/
221 /* could set r/o dos attribute if mode & 0222 == 0 */
222 }
223
224 /* BB server might mask mode so we have to query for Unix case*/
225 if (pTcon->ses->capabilities & CAP_UNIX)
226 rc = cifs_get_inode_info_unix(&newinode, full_path,
227 inode->i_sb,xid);
228 else {
229 rc = cifs_get_inode_info(&newinode, full_path,
230 buf, inode->i_sb,xid);
231 if(newinode)
232 newinode->i_mode = mode;
233 }
234
235 if (rc != 0) {
Steve French4a6d87f2005-08-13 08:15:54 -0700236 cFYI(1,
237 ("Create worked but get_inode_info failed rc = %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 rc));
239 } else {
Steve Frenchb92327f2005-08-22 20:09:43 -0700240 if (pTcon->nocase)
241 direntry->d_op = &cifs_ci_dentry_ops;
242 else
243 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 d_instantiate(direntry, newinode);
245 }
246 if((nd->flags & LOOKUP_OPEN) == FALSE) {
247 /* mknod case - do not leave file open */
248 CIFSSMBClose(xid, pTcon, fileHandle);
249 } else if(newinode) {
Steve Frenchd14537f12005-04-28 22:41:05 -0700250 pCifsFile =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 kmalloc(sizeof (struct cifsFileInfo), GFP_KERNEL);
Steve Frenchd14537f12005-04-28 22:41:05 -0700252
253 if(pCifsFile == NULL)
254 goto cifs_create_out;
255 memset((char *)pCifsFile, 0,
256 sizeof (struct cifsFileInfo));
257 pCifsFile->netfid = fileHandle;
258 pCifsFile->pid = current->tgid;
259 pCifsFile->pInode = newinode;
260 pCifsFile->invalidHandle = FALSE;
261 pCifsFile->closePend = FALSE;
262 init_MUTEX(&pCifsFile->fh_sem);
263 /* set the following in open now
264 pCifsFile->pfile = file; */
265 write_lock(&GlobalSMBSeslock);
266 list_add(&pCifsFile->tlist,&pTcon->openFileList);
267 pCifsInode = CIFS_I(newinode);
268 if(pCifsInode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 /* if readable file instance put first in list*/
Steve Frenchd14537f12005-04-28 22:41:05 -0700270 if (write_only == TRUE) {
271 list_add_tail(&pCifsFile->flist,
272 &pCifsInode->openFileList);
273 } else {
274 list_add(&pCifsFile->flist,
275 &pCifsInode->openFileList);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 }
Steve Frenchd14537f12005-04-28 22:41:05 -0700277 if((oplock & 0xF) == OPLOCK_EXCLUSIVE) {
278 pCifsInode->clientCanCacheAll = TRUE;
279 pCifsInode->clientCanCacheRead = TRUE;
280 cFYI(1,("Exclusive Oplock for inode %p",
281 newinode));
282 } else if((oplock & 0xF) == OPLOCK_READ)
283 pCifsInode->clientCanCacheRead = TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
Steve Frenchd14537f12005-04-28 22:41:05 -0700285 write_unlock(&GlobalSMBSeslock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
287 }
Steve Frenchd14537f12005-04-28 22:41:05 -0700288cifs_create_out:
289 kfree(buf);
290 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 FreeXid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 return rc;
293}
294
Steve French86c96b42005-11-18 20:25:31 -0800295int cifs_mknod(struct inode *inode, struct dentry *direntry, int mode,
296 dev_t device_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
298 int rc = -EPERM;
299 int xid;
300 struct cifs_sb_info *cifs_sb;
301 struct cifsTconInfo *pTcon;
302 char *full_path = NULL;
303 struct inode * newinode = NULL;
304
305 if (!old_valid_dev(device_number))
306 return -EINVAL;
307
308 xid = GetXid();
309
310 cifs_sb = CIFS_SB(inode->i_sb);
311 pTcon = cifs_sb->tcon;
312
313 down(&direntry->d_sb->s_vfs_rename_sem);
314 full_path = build_path_from_dentry(direntry);
315 up(&direntry->d_sb->s_vfs_rename_sem);
316 if(full_path == NULL)
317 rc = -ENOMEM;
Steve French4a6d87f2005-08-13 08:15:54 -0700318 else if (pTcon->ses->capabilities & CAP_UNIX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
320 rc = CIFSSMBUnixSetPerms(xid, pTcon, full_path,
321 mode,(__u64)current->euid,(__u64)current->egid,
Steve French737b7582005-04-28 22:41:06 -0700322 device_number, cifs_sb->local_nls,
323 cifs_sb->mnt_cifs_flags &
324 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 } else {
326 rc = CIFSSMBUnixSetPerms(xid, pTcon,
327 full_path, mode, (__u64)-1, (__u64)-1,
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 }
332
333 if(!rc) {
334 rc = cifs_get_inode_info_unix(&newinode, full_path,
335 inode->i_sb,xid);
Steve Frenchb92327f2005-08-22 20:09:43 -0700336 if (pTcon->nocase)
337 direntry->d_op = &cifs_ci_dentry_ops;
338 else
339 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 if(rc == 0)
341 d_instantiate(direntry, newinode);
342 }
Steve Frenchd7245c22005-07-14 18:25:12 -0500343 } else {
Steve Frencheda3c0292005-07-21 15:20:28 -0700344 if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) {
345 int oplock = 0;
346 u16 fileHandle;
347 FILE_ALL_INFO * buf;
Steve Frenchd7245c22005-07-14 18:25:12 -0500348
349 cFYI(1,("sfu compat create special file"));
Steve Frenchd7245c22005-07-14 18:25:12 -0500350
Steve Frencheda3c0292005-07-21 15:20:28 -0700351 buf = kmalloc(sizeof(FILE_ALL_INFO),GFP_KERNEL);
352 if(buf == NULL) {
353 kfree(full_path);
354 FreeXid(xid);
355 return -ENOMEM;
356 }
357
358 rc = CIFSSMBOpen(xid, pTcon, full_path,
359 FILE_CREATE, /* fail if exists */
360 GENERIC_WRITE /* BB would
361 WRITE_OWNER | WRITE_DAC be better? */,
362 /* Create a file and set the
363 file attribute to SYSTEM */
364 CREATE_NOT_DIR | CREATE_OPTION_SPECIAL,
365 &fileHandle, &oplock, buf,
366 cifs_sb->local_nls,
367 cifs_sb->mnt_cifs_flags &
368 CIFS_MOUNT_MAP_SPECIAL_CHR);
369
370 if(!rc) {
371 /* BB Do not bother to decode buf since no
Steve French86c96b42005-11-18 20:25:31 -0800372 local inode yet to put timestamps in,
373 but we can reuse it safely */
374 int bytes_written;
375 struct win_dev *pdev;
376 pdev = (struct win_dev *)buf;
377 if(S_ISCHR(mode)) {
378 memcpy(pdev->type, "IntxCHR", 8);
379 pdev->major =
380 cpu_to_le64(MAJOR(device_number));
381 pdev->minor =
382 cpu_to_le64(MINOR(device_number));
383 rc = CIFSSMBWrite(xid, pTcon,
384 fileHandle,
385 sizeof(struct win_dev),
386 0, &bytes_written, (char *)pdev,
387 NULL, 0);
388 } else if(S_ISBLK(mode)) {
389 memcpy(pdev->type, "IntxBLK", 8);
390 pdev->major =
391 cpu_to_le64(MAJOR(device_number));
392 pdev->minor =
393 cpu_to_le64(MINOR(device_number));
394 rc = CIFSSMBWrite(xid, pTcon,
395 fileHandle,
396 sizeof(struct win_dev),
397 0, &bytes_written, (char *)pdev,
398 NULL, 0);
399 } /* else if(S_ISFIFO */
Steve Frencheda3c0292005-07-21 15:20:28 -0700400 CIFSSMBClose(xid, pTcon, fileHandle);
401 d_drop(direntry);
402 }
403 kfree(buf);
Steve Frenchd7245c22005-07-14 18:25:12 -0500404 /* add code here to set EAs */
405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 }
407
Steve Frenchd14537f12005-04-28 22:41:05 -0700408 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 FreeXid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return rc;
411}
412
413
414struct dentry *
415cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry, struct nameidata *nd)
416{
417 int xid;
418 int rc = 0; /* to get around spurious gcc warning, set to zero here */
419 struct cifs_sb_info *cifs_sb;
420 struct cifsTconInfo *pTcon;
421 struct inode *newInode = NULL;
422 char *full_path = NULL;
423
424 xid = GetXid();
425
426 cFYI(1,
427 (" parent inode = 0x%p name is: %s and dentry = 0x%p",
428 parent_dir_inode, direntry->d_name.name, direntry));
429
430 /* BB Add check of incoming data - e.g. frame not longer than maximum SMB - let server check the namelen BB */
431
432 /* check whether path exists */
433
434 cifs_sb = CIFS_SB(parent_dir_inode->i_sb);
435 pTcon = cifs_sb->tcon;
436
437 /* can not grab the rename sem here since it would
438 deadlock in the cases (beginning of sys_rename itself)
439 in which we already have the sb rename sem */
440 full_path = build_path_from_dentry(direntry);
441 if(full_path == NULL) {
442 FreeXid(xid);
443 return ERR_PTR(-ENOMEM);
444 }
445
446 if (direntry->d_inode != NULL) {
447 cFYI(1, (" non-NULL inode in lookup"));
448 } else {
449 cFYI(1, (" NULL inode in lookup"));
450 }
451 cFYI(1,
452 (" Full path: %s inode = 0x%p", full_path, direntry->d_inode));
453
454 if (pTcon->ses->capabilities & CAP_UNIX)
455 rc = cifs_get_inode_info_unix(&newInode, full_path,
456 parent_dir_inode->i_sb,xid);
457 else
458 rc = cifs_get_inode_info(&newInode, full_path, NULL,
459 parent_dir_inode->i_sb,xid);
460
461 if ((rc == 0) && (newInode != NULL)) {
Steve Frenchb92327f2005-08-22 20:09:43 -0700462 if (pTcon->nocase)
463 direntry->d_op = &cifs_ci_dentry_ops;
464 else
465 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 d_add(direntry, newInode);
467
Steve French3abb9272005-11-28 08:16:13 -0800468 /* since paths are not looked up by component - the parent
469 directories are presumed to be good here */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 renew_parental_timestamps(direntry);
471
472 } else if (rc == -ENOENT) {
473 rc = 0;
Steve French3abb9272005-11-28 08:16:13 -0800474 direntry->d_time = jiffies;
475 if (pTcon->nocase)
476 direntry->d_op = &cifs_ci_dentry_ops;
477 else
478 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 d_add(direntry, NULL);
Steve French3abb9272005-11-28 08:16:13 -0800480 /* if it was once a directory (but how can we tell?) we could do
481 shrink_dcache_parent(direntry); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 } else {
Steve Frenchb2aeb9d2005-05-17 13:16:18 -0500483 cERROR(1,("Error 0x%x on cifs_get_inode_info in lookup of %s",
484 rc,full_path));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 /* BB special case check for Access Denied - watch security
486 exposure of returning dir info implicitly via different rc
487 if file exists or not but no access BB */
488 }
489
Steve Frenchd14537f12005-04-28 22:41:05 -0700490 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 FreeXid(xid);
492 return ERR_PTR(rc);
493}
494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495static int
496cifs_d_revalidate(struct dentry *direntry, struct nameidata *nd)
497{
498 int isValid = 1;
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (direntry->d_inode) {
501 if (cifs_revalidate(direntry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 return 0;
503 }
504 } else {
Steve French3abb9272005-11-28 08:16:13 -0800505 cFYI(1, ("neg dentry 0x%p name = %s",
506 direntry, direntry->d_name.name));
507 if(time_after(jiffies, direntry->d_time + HZ) ||
508 !lookupCacheEnabled) {
509 d_drop(direntry);
510 isValid = 0;
511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 return isValid;
515}
516
517/* static int cifs_d_delete(struct dentry *direntry)
518{
519 int rc = 0;
520
521 cFYI(1, ("In cifs d_delete, name = %s", direntry->d_name.name));
522
523 return rc;
524} */
525
526struct dentry_operations cifs_dentry_ops = {
527 .d_revalidate = cifs_d_revalidate,
528/* d_delete: cifs_d_delete, *//* not needed except for debugging */
529 /* no need for d_hash, d_compare, d_release, d_iput ... yet. BB confirm this BB */
530};
Steve Frenchb92327f2005-08-22 20:09:43 -0700531
532static int cifs_ci_hash(struct dentry *dentry, struct qstr *q)
533{
534 struct nls_table *codepage = CIFS_SB(dentry->d_inode->i_sb)->local_nls;
535 unsigned long hash;
536 int i;
537
538 hash = init_name_hash();
539 for (i = 0; i < q->len; i++)
540 hash = partial_name_hash(nls_tolower(codepage, q->name[i]),
541 hash);
542 q->hash = end_name_hash(hash);
543
544 return 0;
545}
546
547static int cifs_ci_compare(struct dentry *dentry, struct qstr *a,
548 struct qstr *b)
549{
550 struct nls_table *codepage = CIFS_SB(dentry->d_inode->i_sb)->local_nls;
551
552 if ((a->len == b->len) &&
553 (nls_strnicmp(codepage, a->name, b->name, a->len) == 0)) {
554 /*
555 * To preserve case, don't let an existing negative dentry's
556 * case take precedence. If a is not a negative dentry, this
557 * should have no side effects
558 */
559 memcpy((unsigned char *)a->name, b->name, a->len);
560 return 0;
561 }
562 return 1;
563}
564
565struct dentry_operations cifs_ci_dentry_ops = {
566 .d_revalidate = cifs_d_revalidate,
567 .d_hash = cifs_ci_hash,
568 .d_compare = cifs_ci_compare,
569};