4 * vfs operations that deal with dentries
6 * Copyright (C) International Business Machines Corp., 2002,2005
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 /* char * build_wildcard_path_from_dentry(struct dentry *direntry)
116 if(full_path == NULL)
119 full_path[namelen] = '\\';
120 full_path[namelen+1] = '*';
121 full_path[namelen+2] = 0;
122 BB remove above eight lines BB */
124 /* Inode operations in similar order to how they appear in Linux file fs.h */
127 cifs_create(struct inode
*inode
, struct dentry
*direntry
, int mode
,
128 struct nameidata
*nd
)
133 int desiredAccess
= GENERIC_READ
| GENERIC_WRITE
;
135 struct cifs_sb_info
*cifs_sb
;
136 struct cifsTconInfo
*pTcon
;
137 char *full_path
= NULL
;
138 FILE_ALL_INFO
* buf
= NULL
;
139 struct inode
*newinode
= NULL
;
140 struct cifsFileInfo
* pCifsFile
= NULL
;
141 struct cifsInodeInfo
* pCifsInode
;
142 int disposition
= FILE_OVERWRITE_IF
;
143 int write_only
= FALSE
;
147 cifs_sb
= CIFS_SB(inode
->i_sb
);
148 pTcon
= cifs_sb
->tcon
;
150 full_path
= build_path_from_dentry(direntry
);
151 if (full_path
== NULL
) {
156 if (nd
&& (nd
->flags
& LOOKUP_OPEN
)) {
157 int oflags
= nd
->intent
.open
.flags
;
160 if (oflags
& FMODE_READ
)
161 desiredAccess
|= GENERIC_READ
;
162 if (oflags
& FMODE_WRITE
) {
163 desiredAccess
|= GENERIC_WRITE
;
164 if (!(oflags
& FMODE_READ
))
168 if ((oflags
& (O_CREAT
| O_EXCL
)) == (O_CREAT
| O_EXCL
))
169 disposition
= FILE_CREATE
;
170 else if ((oflags
& (O_CREAT
| O_TRUNC
)) == (O_CREAT
| O_TRUNC
))
171 disposition
= FILE_OVERWRITE_IF
;
172 else if ((oflags
& O_CREAT
) == O_CREAT
)
173 disposition
= FILE_OPEN_IF
;
175 cFYI(1, ("Create flag not set in create function"));
179 /* BB add processing to set equivalent of mode - e.g. via CreateX with
184 buf
= kmalloc(sizeof(FILE_ALL_INFO
), GFP_KERNEL
);
190 if (cifs_sb
->tcon
->ses
->capabilities
& CAP_NT_SMBS
)
191 rc
= CIFSSMBOpen(xid
, pTcon
, full_path
, disposition
,
192 desiredAccess
, CREATE_NOT_DIR
,
193 &fileHandle
, &oplock
, buf
, cifs_sb
->local_nls
,
194 cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_MAP_SPECIAL_CHR
);
196 rc
= -EIO
; /* no NT SMB support fall into legacy open below */
199 /* 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
);
206 cFYI(1, ("cifs_create returned 0x%x", rc
));
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
) &&
211 (oplock
& CIFS_CREATE_ACTION
))
212 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_SET_UID
) {
213 CIFSSMBUnixSetPerms(xid
, pTcon
, full_path
, mode
,
214 (__u64
)current
->fsuid
,
215 (__u64
)current
->fsgid
,
218 cifs_sb
->mnt_cifs_flags
&
219 CIFS_MOUNT_MAP_SPECIAL_CHR
);
221 CIFSSMBUnixSetPerms(xid
, pTcon
, full_path
, mode
,
226 cifs_sb
->mnt_cifs_flags
&
227 CIFS_MOUNT_MAP_SPECIAL_CHR
);
230 /* BB implement mode setting via Windows security
232 /* CIFSSMBWinSetPerms(xid,pTcon,path,mode,-1,-1,nls);*/
234 /* Could set r/o dos attribute if mode & 0222 == 0 */
237 /* BB server might mask mode so we have to query for Unix case*/
238 if (pTcon
->ses
->capabilities
& CAP_UNIX
)
239 rc
= cifs_get_inode_info_unix(&newinode
, full_path
,
242 rc
= cifs_get_inode_info(&newinode
, full_path
,
243 buf
, inode
->i_sb
, xid
);
245 newinode
->i_mode
= mode
;
246 if ((oplock
& CIFS_CREATE_ACTION
) &&
247 (cifs_sb
->mnt_cifs_flags
&
248 CIFS_MOUNT_SET_UID
)) {
249 newinode
->i_uid
= current
->fsuid
;
250 newinode
->i_gid
= current
->fsgid
;
257 ("Create worked but get_inode_info failed rc = %d",
261 direntry
->d_op
= &cifs_ci_dentry_ops
;
263 direntry
->d_op
= &cifs_dentry_ops
;
264 d_instantiate(direntry
, newinode
);
266 if ((nd
->flags
& LOOKUP_OPEN
) == FALSE
) {
267 /* mknod case - do not leave file open */
268 CIFSSMBClose(xid
, pTcon
, fileHandle
);
269 } else if (newinode
) {
271 kzalloc(sizeof (struct cifsFileInfo
), GFP_KERNEL
);
273 if (pCifsFile
== NULL
)
274 goto cifs_create_out
;
275 pCifsFile
->netfid
= fileHandle
;
276 pCifsFile
->pid
= current
->tgid
;
277 pCifsFile
->pInode
= newinode
;
278 pCifsFile
->invalidHandle
= FALSE
;
279 pCifsFile
->closePend
= FALSE
;
280 init_MUTEX(&pCifsFile
->fh_sem
);
281 mutex_init(&pCifsFile
->lock_mutex
);
282 INIT_LIST_HEAD(&pCifsFile
->llist
);
283 atomic_set(&pCifsFile
->wrtPending
, 0);
285 /* set the following in open now
286 pCifsFile->pfile = file; */
287 write_lock(&GlobalSMBSeslock
);
288 list_add(&pCifsFile
->tlist
, &pTcon
->openFileList
);
289 pCifsInode
= CIFS_I(newinode
);
291 /* if readable file instance put first in list*/
292 if (write_only
== TRUE
) {
293 list_add_tail(&pCifsFile
->flist
,
294 &pCifsInode
->openFileList
);
296 list_add(&pCifsFile
->flist
,
297 &pCifsInode
->openFileList
);
299 if ((oplock
& 0xF) == OPLOCK_EXCLUSIVE
) {
300 pCifsInode
->clientCanCacheAll
= TRUE
;
301 pCifsInode
->clientCanCacheRead
= TRUE
;
302 cFYI(1,("Exclusive Oplock for inode %p",
304 } else if ((oplock
& 0xF) == OPLOCK_READ
)
305 pCifsInode
->clientCanCacheRead
= TRUE
;
307 write_unlock(&GlobalSMBSeslock
);
317 int cifs_mknod(struct inode
*inode
, struct dentry
*direntry
, int mode
,
322 struct cifs_sb_info
*cifs_sb
;
323 struct cifsTconInfo
*pTcon
;
324 char *full_path
= NULL
;
325 struct inode
* newinode
= NULL
;
327 if (!old_valid_dev(device_number
))
332 cifs_sb
= CIFS_SB(inode
->i_sb
);
333 pTcon
= cifs_sb
->tcon
;
335 full_path
= build_path_from_dentry(direntry
);
336 if (full_path
== NULL
)
338 else if (pTcon
->ses
->capabilities
& CAP_UNIX
) {
339 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_SET_UID
) {
340 rc
= CIFSSMBUnixSetPerms(xid
, pTcon
, full_path
,
341 mode
, (__u64
)current
->fsuid
,
342 (__u64
)current
->fsgid
,
343 device_number
, cifs_sb
->local_nls
,
344 cifs_sb
->mnt_cifs_flags
&
345 CIFS_MOUNT_MAP_SPECIAL_CHR
);
347 rc
= CIFSSMBUnixSetPerms(xid
, pTcon
,
348 full_path
, mode
, (__u64
)-1, (__u64
)-1,
349 device_number
, cifs_sb
->local_nls
,
350 cifs_sb
->mnt_cifs_flags
&
351 CIFS_MOUNT_MAP_SPECIAL_CHR
);
355 rc
= cifs_get_inode_info_unix(&newinode
, full_path
,
358 direntry
->d_op
= &cifs_ci_dentry_ops
;
360 direntry
->d_op
= &cifs_dentry_ops
;
362 d_instantiate(direntry
, newinode
);
365 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_UNX_EMUL
) {
370 cFYI(1, ("sfu compat create special file"));
372 buf
= kmalloc(sizeof(FILE_ALL_INFO
), GFP_KERNEL
);
379 rc
= CIFSSMBOpen(xid
, pTcon
, full_path
,
380 FILE_CREATE
, /* fail if exists */
381 GENERIC_WRITE
/* BB would
382 WRITE_OWNER | WRITE_DAC be better? */,
383 /* Create a file and set the
384 file attribute to SYSTEM */
385 CREATE_NOT_DIR
| CREATE_OPTION_SPECIAL
,
386 &fileHandle
, &oplock
, buf
,
388 cifs_sb
->mnt_cifs_flags
&
389 CIFS_MOUNT_MAP_SPECIAL_CHR
);
391 /* BB FIXME - add handling for backlevel servers
392 which need legacy open and check for all
393 calls to SMBOpen for fallback to SMBLeagcyOpen */
395 /* BB Do not bother to decode buf since no
396 local inode yet to put timestamps in,
397 but we can reuse it safely */
399 struct win_dev
*pdev
;
400 pdev
= (struct win_dev
*)buf
;
402 memcpy(pdev
->type
, "IntxCHR", 8);
404 cpu_to_le64(MAJOR(device_number
));
406 cpu_to_le64(MINOR(device_number
));
407 rc
= CIFSSMBWrite(xid
, pTcon
,
409 sizeof(struct win_dev
),
410 0, &bytes_written
, (char *)pdev
,
412 } else if (S_ISBLK(mode
)) {
413 memcpy(pdev
->type
, "IntxBLK", 8);
415 cpu_to_le64(MAJOR(device_number
));
417 cpu_to_le64(MINOR(device_number
));
418 rc
= CIFSSMBWrite(xid
, pTcon
,
420 sizeof(struct win_dev
),
421 0, &bytes_written
, (char *)pdev
,
423 } /* else if(S_ISFIFO */
424 CIFSSMBClose(xid
, pTcon
, fileHandle
);
428 /* add code here to set EAs */
439 cifs_lookup(struct inode
*parent_dir_inode
, struct dentry
*direntry
,
440 struct nameidata
*nd
)
443 int rc
= 0; /* to get around spurious gcc warning, set to zero here */
444 struct cifs_sb_info
*cifs_sb
;
445 struct cifsTconInfo
*pTcon
;
446 struct inode
*newInode
= NULL
;
447 char *full_path
= NULL
;
452 (" parent inode = 0x%p name is: %s and dentry = 0x%p",
453 parent_dir_inode
, direntry
->d_name
.name
, direntry
));
455 /* check whether path exists */
457 cifs_sb
= CIFS_SB(parent_dir_inode
->i_sb
);
458 pTcon
= cifs_sb
->tcon
;
461 * Don't allow the separator character in a path component.
462 * The VFS will not allow "/", but "\" is allowed by posix.
464 if (!(cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_POSIX_PATHS
)) {
466 for (i
= 0; i
< direntry
->d_name
.len
; i
++)
467 if (direntry
->d_name
.name
[i
] == '\\') {
468 cFYI(1, ("Invalid file name"));
470 return ERR_PTR(-EINVAL
);
474 /* can not grab the rename sem here since it would
475 deadlock in the cases (beginning of sys_rename itself)
476 in which we already have the sb rename sem */
477 full_path
= build_path_from_dentry(direntry
);
478 if (full_path
== NULL
) {
480 return ERR_PTR(-ENOMEM
);
483 if (direntry
->d_inode
!= NULL
) {
484 cFYI(1, (" non-NULL inode in lookup"));
486 cFYI(1, (" NULL inode in lookup"));
489 (" Full path: %s inode = 0x%p", full_path
, direntry
->d_inode
));
491 if (pTcon
->ses
->capabilities
& CAP_UNIX
)
492 rc
= cifs_get_inode_info_unix(&newInode
, full_path
,
493 parent_dir_inode
->i_sb
, xid
);
495 rc
= cifs_get_inode_info(&newInode
, full_path
, NULL
,
496 parent_dir_inode
->i_sb
, xid
);
498 if ((rc
== 0) && (newInode
!= NULL
)) {
500 direntry
->d_op
= &cifs_ci_dentry_ops
;
502 direntry
->d_op
= &cifs_dentry_ops
;
503 d_add(direntry
, newInode
);
505 /* since paths are not looked up by component - the parent
506 directories are presumed to be good here */
507 renew_parental_timestamps(direntry
);
509 } else if (rc
== -ENOENT
) {
511 direntry
->d_time
= jiffies
;
513 direntry
->d_op
= &cifs_ci_dentry_ops
;
515 direntry
->d_op
= &cifs_dentry_ops
;
516 d_add(direntry
, NULL
);
517 /* if it was once a directory (but how can we tell?) we could do
518 shrink_dcache_parent(direntry); */
520 cERROR(1,("Error 0x%x on cifs_get_inode_info in lookup of %s",
522 /* BB special case check for Access Denied - watch security
523 exposure of returning dir info implicitly via different rc
524 if file exists or not but no access BB */
533 cifs_d_revalidate(struct dentry
*direntry
, struct nameidata
*nd
)
537 if (direntry
->d_inode
) {
538 if (cifs_revalidate(direntry
)) {
542 cFYI(1, ("neg dentry 0x%p name = %s",
543 direntry
, direntry
->d_name
.name
));
544 if (time_after(jiffies
, direntry
->d_time
+ HZ
) ||
545 !lookupCacheEnabled
) {
554 /* static int cifs_d_delete(struct dentry *direntry)
558 cFYI(1, ("In cifs d_delete, name = %s", direntry->d_name.name));
563 struct dentry_operations cifs_dentry_ops
= {
564 .d_revalidate
= cifs_d_revalidate
,
565 /* d_delete: cifs_d_delete, */ /* not needed except for debugging */
568 static int cifs_ci_hash(struct dentry
*dentry
, struct qstr
*q
)
570 struct nls_table
*codepage
= CIFS_SB(dentry
->d_inode
->i_sb
)->local_nls
;
574 hash
= init_name_hash();
575 for (i
= 0; i
< q
->len
; i
++)
576 hash
= partial_name_hash(nls_tolower(codepage
, q
->name
[i
]),
578 q
->hash
= end_name_hash(hash
);
583 static int cifs_ci_compare(struct dentry
*dentry
, struct qstr
*a
,
586 struct nls_table
*codepage
= CIFS_SB(dentry
->d_inode
->i_sb
)->local_nls
;
588 if ((a
->len
== b
->len
) &&
589 (nls_strnicmp(codepage
, a
->name
, b
->name
, a
->len
) == 0)) {
591 * To preserve case, don't let an existing negative dentry's
592 * case take precedence. If a is not a negative dentry, this
593 * should have no side effects
595 memcpy((unsigned char *)a
->name
, b
->name
, a
->len
);
601 struct dentry_operations cifs_ci_dentry_ops
= {
602 .d_revalidate
= cifs_d_revalidate
,
603 .d_hash
= cifs_ci_hash
,
604 .d_compare
= cifs_ci_compare
,