4 * vfs operations that deal with dentries
6 * Copyright (C) International Business Machines Corp., 2002,2008
7 * Author(s): Steve French (sfrench@us.ibm.com)
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.
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.
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
24 #include <linux/stat.h>
25 #include <linux/slab.h>
26 #include <linux/namei.h>
30 #include "cifsproto.h"
31 #include "cifs_debug.h"
32 #include "cifs_fs_sb.h"
35 renew_parental_timestamps(struct dentry
*direntry
)
37 /* BB check if there is a way to get the kernel to do this or if we
40 direntry
->d_time
= jiffies
;
41 direntry
= direntry
->d_parent
;
42 } while (!IS_ROOT(direntry
));
45 /* Note: caller must free return buffer */
47 build_path_from_dentry(struct dentry
*direntry
)
56 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 */
60 dirsep
= CIFS_DIR_SEP(CIFS_SB(direntry
->d_sb
));
61 pplen
= CIFS_SB(direntry
->d_sb
)->prepathlen
;
64 for (temp
= direntry
; !IS_ROOT(temp
);) {
65 namelen
+= (1 + temp
->d_name
.len
);
66 temp
= temp
->d_parent
;
68 cERROR(1, ("corrupt dentry"));
73 full_path
= kmalloc(namelen
+1, GFP_KERNEL
);
74 if (full_path
== NULL
)
76 full_path
[namelen
] = 0; /* trailing null */
77 for (temp
= direntry
; !IS_ROOT(temp
);) {
78 namelen
-= 1 + temp
->d_name
.len
;
82 full_path
[namelen
] = dirsep
;
83 strncpy(full_path
+ namelen
+ 1, temp
->d_name
.name
,
85 cFYI(0, ("name: %s", full_path
+ namelen
));
87 temp
= temp
->d_parent
;
89 cERROR(1, ("corrupt dentry"));
94 if (namelen
!= pplen
) {
96 ("did not end path lookup where expected namelen is %d",
98 /* presumably this is only possible if racing with a rename
99 of one of the parent directories (we can not lock the dentries
100 above us to prevent this, but retrying should be harmless) */
102 goto cifs_bp_rename_retry
;
104 /* 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 */
110 strncpy(full_path
, CIFS_SB(direntry
->d_sb
)->prepath
, pplen
);
114 /* Inode operations in similar order to how they appear in Linux file fs.h */
117 cifs_create(struct inode
*inode
, struct dentry
*direntry
, int mode
,
118 struct nameidata
*nd
)
123 int desiredAccess
= GENERIC_READ
| GENERIC_WRITE
;
125 struct cifs_sb_info
*cifs_sb
;
126 struct cifsTconInfo
*pTcon
;
127 char *full_path
= NULL
;
128 FILE_ALL_INFO
*buf
= NULL
;
129 struct inode
*newinode
= NULL
;
130 struct cifsFileInfo
*pCifsFile
= NULL
;
131 struct cifsInodeInfo
*pCifsInode
;
132 int disposition
= FILE_OVERWRITE_IF
;
133 int write_only
= FALSE
;
137 cifs_sb
= CIFS_SB(inode
->i_sb
);
138 pTcon
= cifs_sb
->tcon
;
140 full_path
= build_path_from_dentry(direntry
);
141 if (full_path
== NULL
) {
146 if (nd
&& (nd
->flags
& LOOKUP_OPEN
)) {
147 int oflags
= nd
->intent
.open
.flags
;
150 if (oflags
& FMODE_READ
)
151 desiredAccess
|= GENERIC_READ
;
152 if (oflags
& FMODE_WRITE
) {
153 desiredAccess
|= GENERIC_WRITE
;
154 if (!(oflags
& FMODE_READ
))
158 if ((oflags
& (O_CREAT
| O_EXCL
)) == (O_CREAT
| O_EXCL
))
159 disposition
= FILE_CREATE
;
160 else if ((oflags
& (O_CREAT
| O_TRUNC
)) == (O_CREAT
| O_TRUNC
))
161 disposition
= FILE_OVERWRITE_IF
;
162 else if ((oflags
& O_CREAT
) == O_CREAT
)
163 disposition
= FILE_OPEN_IF
;
165 cFYI(1, ("Create flag not set in create function"));
168 /* BB add processing to set equivalent of mode - e.g. via CreateX with
173 buf
= kmalloc(sizeof(FILE_ALL_INFO
), GFP_KERNEL
);
179 if (cifs_sb
->tcon
->ses
->capabilities
& CAP_NT_SMBS
)
180 rc
= CIFSSMBOpen(xid
, pTcon
, full_path
, disposition
,
181 desiredAccess
, CREATE_NOT_DIR
,
182 &fileHandle
, &oplock
, buf
, cifs_sb
->local_nls
,
183 cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_MAP_SPECIAL_CHR
);
185 rc
= -EIO
; /* no NT SMB support fall into legacy open below */
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
);
195 cFYI(1, ("cifs_create returned 0x%x", rc
));
197 /* If Open reported that we actually created a file
198 then we now have to set the mode if possible */
199 if ((pTcon
->unix_ext
) && (oplock
& CIFS_CREATE_ACTION
)) {
200 mode
&= ~current
->fs
->umask
;
201 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_SET_UID
) {
202 CIFSSMBUnixSetPerms(xid
, pTcon
, full_path
, mode
,
203 (__u64
)current
->fsuid
,
204 (__u64
)current
->fsgid
,
207 cifs_sb
->mnt_cifs_flags
&
208 CIFS_MOUNT_MAP_SPECIAL_CHR
);
210 CIFSSMBUnixSetPerms(xid
, pTcon
, full_path
, mode
,
215 cifs_sb
->mnt_cifs_flags
&
216 CIFS_MOUNT_MAP_SPECIAL_CHR
);
219 /* BB implement mode setting via Windows security
221 /* CIFSSMBWinSetPerms(xid,pTcon,path,mode,-1,-1,nls);*/
223 /* Could set r/o dos attribute if mode & 0222 == 0 */
226 /* server might mask mode so we have to query for it */
228 rc
= cifs_get_inode_info_unix(&newinode
, full_path
,
231 rc
= cifs_get_inode_info(&newinode
, full_path
,
232 buf
, inode
->i_sb
, xid
);
234 newinode
->i_mode
= mode
;
235 if ((oplock
& CIFS_CREATE_ACTION
) &&
236 (cifs_sb
->mnt_cifs_flags
&
237 CIFS_MOUNT_SET_UID
)) {
238 newinode
->i_uid
= current
->fsuid
;
239 newinode
->i_gid
= current
->fsgid
;
246 ("Create worked but get_inode_info failed rc = %d",
250 direntry
->d_op
= &cifs_ci_dentry_ops
;
252 direntry
->d_op
= &cifs_dentry_ops
;
253 d_instantiate(direntry
, newinode
);
255 if ((nd
== NULL
/* nfsd case - nfs srv does not set nd */) ||
256 ((nd
->flags
& LOOKUP_OPEN
) == FALSE
)) {
257 /* mknod case - do not leave file open */
258 CIFSSMBClose(xid
, pTcon
, fileHandle
);
259 } else if (newinode
) {
261 kzalloc(sizeof(struct cifsFileInfo
), GFP_KERNEL
);
263 if (pCifsFile
== NULL
)
264 goto cifs_create_out
;
265 pCifsFile
->netfid
= fileHandle
;
266 pCifsFile
->pid
= current
->tgid
;
267 pCifsFile
->pInode
= newinode
;
268 pCifsFile
->invalidHandle
= FALSE
;
269 pCifsFile
->closePend
= FALSE
;
270 init_MUTEX(&pCifsFile
->fh_sem
);
271 mutex_init(&pCifsFile
->lock_mutex
);
272 INIT_LIST_HEAD(&pCifsFile
->llist
);
273 atomic_set(&pCifsFile
->wrtPending
, 0);
275 /* set the following in open now
276 pCifsFile->pfile = file; */
277 write_lock(&GlobalSMBSeslock
);
278 list_add(&pCifsFile
->tlist
, &pTcon
->openFileList
);
279 pCifsInode
= CIFS_I(newinode
);
281 /* if readable file instance put first in list*/
282 if (write_only
== TRUE
) {
283 list_add_tail(&pCifsFile
->flist
,
284 &pCifsInode
->openFileList
);
286 list_add(&pCifsFile
->flist
,
287 &pCifsInode
->openFileList
);
289 if ((oplock
& 0xF) == OPLOCK_EXCLUSIVE
) {
290 pCifsInode
->clientCanCacheAll
= TRUE
;
291 pCifsInode
->clientCanCacheRead
= TRUE
;
292 cFYI(1, ("Exclusive Oplock inode %p",
294 } else if ((oplock
& 0xF) == OPLOCK_READ
)
295 pCifsInode
->clientCanCacheRead
= TRUE
;
297 write_unlock(&GlobalSMBSeslock
);
307 int cifs_mknod(struct inode
*inode
, struct dentry
*direntry
, int mode
,
312 struct cifs_sb_info
*cifs_sb
;
313 struct cifsTconInfo
*pTcon
;
314 char *full_path
= NULL
;
315 struct inode
*newinode
= NULL
;
317 if (!old_valid_dev(device_number
))
322 cifs_sb
= CIFS_SB(inode
->i_sb
);
323 pTcon
= cifs_sb
->tcon
;
325 full_path
= build_path_from_dentry(direntry
);
326 if (full_path
== NULL
)
328 else if (pTcon
->unix_ext
) {
329 mode
&= ~current
->fs
->umask
;
330 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_SET_UID
) {
331 rc
= CIFSSMBUnixSetPerms(xid
, pTcon
, full_path
,
332 mode
, (__u64
)current
->fsuid
,
333 (__u64
)current
->fsgid
,
334 device_number
, cifs_sb
->local_nls
,
335 cifs_sb
->mnt_cifs_flags
&
336 CIFS_MOUNT_MAP_SPECIAL_CHR
);
338 rc
= CIFSSMBUnixSetPerms(xid
, pTcon
,
339 full_path
, mode
, (__u64
)-1, (__u64
)-1,
340 device_number
, cifs_sb
->local_nls
,
341 cifs_sb
->mnt_cifs_flags
&
342 CIFS_MOUNT_MAP_SPECIAL_CHR
);
346 rc
= cifs_get_inode_info_unix(&newinode
, full_path
,
349 direntry
->d_op
= &cifs_ci_dentry_ops
;
351 direntry
->d_op
= &cifs_dentry_ops
;
353 d_instantiate(direntry
, newinode
);
356 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_UNX_EMUL
) {
361 cFYI(1, ("sfu compat create special file"));
363 buf
= kmalloc(sizeof(FILE_ALL_INFO
), GFP_KERNEL
);
370 rc
= CIFSSMBOpen(xid
, pTcon
, full_path
,
371 FILE_CREATE
, /* fail if exists */
372 GENERIC_WRITE
/* BB would
373 WRITE_OWNER | WRITE_DAC be better? */,
374 /* Create a file and set the
375 file attribute to SYSTEM */
376 CREATE_NOT_DIR
| CREATE_OPTION_SPECIAL
,
377 &fileHandle
, &oplock
, buf
,
379 cifs_sb
->mnt_cifs_flags
&
380 CIFS_MOUNT_MAP_SPECIAL_CHR
);
382 /* BB FIXME - add handling for backlevel servers
383 which need legacy open and check for all
384 calls to SMBOpen for fallback to SMBLeagcyOpen */
386 /* BB Do not bother to decode buf since no
387 local inode yet to put timestamps in,
388 but we can reuse it safely */
389 unsigned int bytes_written
;
390 struct win_dev
*pdev
;
391 pdev
= (struct win_dev
*)buf
;
393 memcpy(pdev
->type
, "IntxCHR", 8);
395 cpu_to_le64(MAJOR(device_number
));
397 cpu_to_le64(MINOR(device_number
));
398 rc
= CIFSSMBWrite(xid
, pTcon
,
400 sizeof(struct win_dev
),
401 0, &bytes_written
, (char *)pdev
,
403 } else if (S_ISBLK(mode
)) {
404 memcpy(pdev
->type
, "IntxBLK", 8);
406 cpu_to_le64(MAJOR(device_number
));
408 cpu_to_le64(MINOR(device_number
));
409 rc
= CIFSSMBWrite(xid
, pTcon
,
411 sizeof(struct win_dev
),
412 0, &bytes_written
, (char *)pdev
,
414 } /* else if(S_ISFIFO */
415 CIFSSMBClose(xid
, pTcon
, fileHandle
);
419 /* add code here to set EAs */
430 cifs_lookup(struct inode
*parent_dir_inode
, struct dentry
*direntry
,
431 struct nameidata
*nd
)
434 int rc
= 0; /* to get around spurious gcc warning, set to zero here */
435 struct cifs_sb_info
*cifs_sb
;
436 struct cifsTconInfo
*pTcon
;
437 struct inode
*newInode
= NULL
;
438 char *full_path
= NULL
;
442 cFYI(1, (" parent inode = 0x%p name is: %s and dentry = 0x%p",
443 parent_dir_inode
, direntry
->d_name
.name
, direntry
));
445 /* check whether path exists */
447 cifs_sb
= CIFS_SB(parent_dir_inode
->i_sb
);
448 pTcon
= cifs_sb
->tcon
;
451 * Don't allow the separator character in a path component.
452 * The VFS will not allow "/", but "\" is allowed by posix.
454 if (!(cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_POSIX_PATHS
)) {
456 for (i
= 0; i
< direntry
->d_name
.len
; i
++)
457 if (direntry
->d_name
.name
[i
] == '\\') {
458 cFYI(1, ("Invalid file name"));
460 return ERR_PTR(-EINVAL
);
464 /* can not grab the rename sem here since it would
465 deadlock in the cases (beginning of sys_rename itself)
466 in which we already have the sb rename sem */
467 full_path
= build_path_from_dentry(direntry
);
468 if (full_path
== NULL
) {
470 return ERR_PTR(-ENOMEM
);
473 if (direntry
->d_inode
!= NULL
) {
474 cFYI(1, (" non-NULL inode in lookup"));
476 cFYI(1, (" NULL inode in lookup"));
479 (" Full path: %s inode = 0x%p", full_path
, direntry
->d_inode
));
482 rc
= cifs_get_inode_info_unix(&newInode
, full_path
,
483 parent_dir_inode
->i_sb
, xid
);
485 rc
= cifs_get_inode_info(&newInode
, full_path
, NULL
,
486 parent_dir_inode
->i_sb
, xid
);
488 if ((rc
== 0) && (newInode
!= NULL
)) {
490 direntry
->d_op
= &cifs_ci_dentry_ops
;
492 direntry
->d_op
= &cifs_dentry_ops
;
493 d_add(direntry
, newInode
);
495 /* since paths are not looked up by component - the parent
496 directories are presumed to be good here */
497 renew_parental_timestamps(direntry
);
499 } else if (rc
== -ENOENT
) {
501 direntry
->d_time
= jiffies
;
503 direntry
->d_op
= &cifs_ci_dentry_ops
;
505 direntry
->d_op
= &cifs_dentry_ops
;
506 d_add(direntry
, NULL
);
507 /* if it was once a directory (but how can we tell?) we could do
508 shrink_dcache_parent(direntry); */
509 } else if (rc
!= -EACCES
) {
510 cERROR(1, ("Unexpected lookup error %d", rc
));
511 /* We special case check for Access Denied - since that
512 is a common return code */
521 cifs_d_revalidate(struct dentry
*direntry
, struct nameidata
*nd
)
525 if (direntry
->d_inode
) {
526 if (cifs_revalidate(direntry
))
529 cFYI(1, ("neg dentry 0x%p name = %s",
530 direntry
, direntry
->d_name
.name
));
531 if (time_after(jiffies
, direntry
->d_time
+ HZ
) ||
532 !lookupCacheEnabled
) {
541 /* static int cifs_d_delete(struct dentry *direntry)
545 cFYI(1, ("In cifs d_delete, name = %s", direntry->d_name.name));
550 struct dentry_operations cifs_dentry_ops
= {
551 .d_revalidate
= cifs_d_revalidate
,
552 /* d_delete: cifs_d_delete, */ /* not needed except for debugging */
555 static int cifs_ci_hash(struct dentry
*dentry
, struct qstr
*q
)
557 struct nls_table
*codepage
= CIFS_SB(dentry
->d_inode
->i_sb
)->local_nls
;
561 hash
= init_name_hash();
562 for (i
= 0; i
< q
->len
; i
++)
563 hash
= partial_name_hash(nls_tolower(codepage
, q
->name
[i
]),
565 q
->hash
= end_name_hash(hash
);
570 static int cifs_ci_compare(struct dentry
*dentry
, struct qstr
*a
,
573 struct nls_table
*codepage
= CIFS_SB(dentry
->d_inode
->i_sb
)->local_nls
;
575 if ((a
->len
== b
->len
) &&
576 (nls_strnicmp(codepage
, a
->name
, b
->name
, a
->len
) == 0)) {
578 * To preserve case, don't let an existing negative dentry's
579 * case take precedence. If a is not a negative dentry, this
580 * should have no side effects
582 memcpy(a
->name
, b
->name
, a
->len
);
588 struct dentry_operations cifs_ci_dentry_ops
= {
589 .d_revalidate
= cifs_d_revalidate
,
590 .d_hash
= cifs_ci_hash
,
591 .d_compare
= cifs_ci_compare
,