blob: 4830acc86d747740c9e2cd96c3d8465beb1287d9 [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 */
Steve Frenchc18c8422007-07-18 23:21:09 +0000210 if ((pTcon->unix_ext) && (oplock & CIFS_CREATE_ACTION)) {
Steve French3ce53fc2007-06-08 14:55:14 +0000211 mode &= ~current->fs->umask;
Steve French5fdae1f2007-06-05 18:30:44 +0000212 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 CIFSSMBUnixSetPerms(xid, pTcon, full_path, mode,
Steve French83451872005-12-01 17:12:59 -0800214 (__u64)current->fsuid,
215 (__u64)current->fsgid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 0 /* dev */,
Steve French5fdae1f2007-06-05 18:30:44 +0000217 cifs_sb->local_nls,
218 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700219 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 } else {
221 CIFSSMBUnixSetPerms(xid, pTcon, full_path, mode,
222 (__u64)-1,
223 (__u64)-1,
224 0 /* dev */,
Steve French737b7582005-04-28 22:41:06 -0700225 cifs_sb->local_nls,
Steve French5fdae1f2007-06-05 18:30:44 +0000226 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700227 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
Steve French3ce53fc2007-06-08 14:55:14 +0000229 } else {
Steve French5fdae1f2007-06-05 18:30:44 +0000230 /* BB implement mode setting via Windows security
231 descriptors e.g. */
232 /* CIFSSMBWinSetPerms(xid,pTcon,path,mode,-1,-1,nls);*/
233
234 /* Could set r/o dos attribute if mode & 0222 == 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236
Steve Frenchc18c8422007-07-18 23:21:09 +0000237 /* server might mask mode so we have to query for it */
238 if (pTcon->unix_ext)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 rc = cifs_get_inode_info_unix(&newinode, full_path,
Steve French5fdae1f2007-06-05 18:30:44 +0000240 inode->i_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 else {
242 rc = cifs_get_inode_info(&newinode, full_path,
Steve French5fdae1f2007-06-05 18:30:44 +0000243 buf, inode->i_sb, xid);
244 if (newinode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 newinode->i_mode = mode;
Steve French5fdae1f2007-06-05 18:30:44 +0000246 if ((oplock & CIFS_CREATE_ACTION) &&
247 (cifs_sb->mnt_cifs_flags &
Steve French6473a552005-11-29 20:20:10 -0800248 CIFS_MOUNT_SET_UID)) {
249 newinode->i_uid = current->fsuid;
250 newinode->i_gid = current->fsgid;
251 }
252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254
255 if (rc != 0) {
Steve French4a6d87f2005-08-13 08:15:54 -0700256 cFYI(1,
257 ("Create worked but get_inode_info failed rc = %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 rc));
259 } else {
Steve Frenchb92327f2005-08-22 20:09:43 -0700260 if (pTcon->nocase)
261 direntry->d_op = &cifs_ci_dentry_ops;
262 else
263 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 d_instantiate(direntry, newinode);
265 }
Steve French7521a3c2007-07-11 18:30:34 +0000266 if ((nd == NULL /* nfsd case - nfs srv does not set nd */) ||
267 ((nd->flags & LOOKUP_OPEN) == FALSE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 /* mknod case - do not leave file open */
269 CIFSSMBClose(xid, pTcon, fileHandle);
Steve French5fdae1f2007-06-05 18:30:44 +0000270 } else if (newinode) {
Steve Frenchd14537f12005-04-28 22:41:05 -0700271 pCifsFile =
Eric Sesterhenna048d7a2006-02-21 22:33:09 +0000272 kzalloc(sizeof (struct cifsFileInfo), GFP_KERNEL);
Steve French221601c2007-06-05 20:35:06 +0000273
Steve French5fdae1f2007-06-05 18:30:44 +0000274 if (pCifsFile == NULL)
Steve Frenchd14537f12005-04-28 22:41:05 -0700275 goto cifs_create_out;
Steve Frenchd14537f12005-04-28 22:41:05 -0700276 pCifsFile->netfid = fileHandle;
277 pCifsFile->pid = current->tgid;
278 pCifsFile->pInode = newinode;
279 pCifsFile->invalidHandle = FALSE;
280 pCifsFile->closePend = FALSE;
281 init_MUTEX(&pCifsFile->fh_sem);
Roland Dreier796e5662007-05-03 04:33:45 +0000282 mutex_init(&pCifsFile->lock_mutex);
Steve Frenche466e482006-08-15 13:07:18 +0000283 INIT_LIST_HEAD(&pCifsFile->llist);
Steve French5fdae1f2007-06-05 18:30:44 +0000284 atomic_set(&pCifsFile->wrtPending, 0);
Steve Frenche466e482006-08-15 13:07:18 +0000285
Steve French5fdae1f2007-06-05 18:30:44 +0000286 /* set the following in open now
Steve Frenchd14537f12005-04-28 22:41:05 -0700287 pCifsFile->pfile = file; */
288 write_lock(&GlobalSMBSeslock);
Steve French5fdae1f2007-06-05 18:30:44 +0000289 list_add(&pCifsFile->tlist, &pTcon->openFileList);
Steve Frenchd14537f12005-04-28 22:41:05 -0700290 pCifsInode = CIFS_I(newinode);
Steve French5fdae1f2007-06-05 18:30:44 +0000291 if (pCifsInode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 /* if readable file instance put first in list*/
Steve Frenchd14537f12005-04-28 22:41:05 -0700293 if (write_only == TRUE) {
Steve French5fdae1f2007-06-05 18:30:44 +0000294 list_add_tail(&pCifsFile->flist,
Steve Frenchd14537f12005-04-28 22:41:05 -0700295 &pCifsInode->openFileList);
296 } else {
297 list_add(&pCifsFile->flist,
298 &pCifsInode->openFileList);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
Steve French5fdae1f2007-06-05 18:30:44 +0000300 if ((oplock & 0xF) == OPLOCK_EXCLUSIVE) {
Steve Frenchd14537f12005-04-28 22:41:05 -0700301 pCifsInode->clientCanCacheAll = TRUE;
302 pCifsInode->clientCanCacheRead = TRUE;
Steve French221601c2007-06-05 20:35:06 +0000303 cFYI(1, ("Exclusive Oplock inode %p",
Steve Frenchd14537f12005-04-28 22:41:05 -0700304 newinode));
Steve French5fdae1f2007-06-05 18:30:44 +0000305 } else if ((oplock & 0xF) == OPLOCK_READ)
Steve Frenchd14537f12005-04-28 22:41:05 -0700306 pCifsInode->clientCanCacheRead = TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 }
Steve Frenchd14537f12005-04-28 22:41:05 -0700308 write_unlock(&GlobalSMBSeslock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 }
Steve French5fdae1f2007-06-05 18:30:44 +0000310 }
Steve Frenchd14537f12005-04-28 22:41:05 -0700311cifs_create_out:
312 kfree(buf);
313 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 FreeXid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 return rc;
316}
317
Steve French5fdae1f2007-06-05 18:30:44 +0000318int cifs_mknod(struct inode *inode, struct dentry *direntry, int mode,
319 dev_t device_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
321 int rc = -EPERM;
322 int xid;
323 struct cifs_sb_info *cifs_sb;
324 struct cifsTconInfo *pTcon;
325 char *full_path = NULL;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000326 struct inode *newinode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 if (!old_valid_dev(device_number))
329 return -EINVAL;
330
331 xid = GetXid();
332
333 cifs_sb = CIFS_SB(inode->i_sb);
334 pTcon = cifs_sb->tcon;
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 full_path = build_path_from_dentry(direntry);
Steve French5fdae1f2007-06-05 18:30:44 +0000337 if (full_path == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 rc = -ENOMEM;
Steve Frenchc18c8422007-07-18 23:21:09 +0000339 else if (pTcon->unix_ext) {
Steve French3ce53fc2007-06-08 14:55:14 +0000340 mode &= ~current->fs->umask;
Steve French5fdae1f2007-06-05 18:30:44 +0000341 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 rc = CIFSSMBUnixSetPerms(xid, pTcon, full_path,
Steve French5fdae1f2007-06-05 18:30:44 +0000343 mode, (__u64)current->fsuid,
344 (__u64)current->fsgid,
Steve French737b7582005-04-28 22:41:06 -0700345 device_number, cifs_sb->local_nls,
Steve French5fdae1f2007-06-05 18:30:44 +0000346 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700347 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 } else {
349 rc = CIFSSMBUnixSetPerms(xid, pTcon,
350 full_path, mode, (__u64)-1, (__u64)-1,
Steve French737b7582005-04-28 22:41:06 -0700351 device_number, cifs_sb->local_nls,
Steve French5fdae1f2007-06-05 18:30:44 +0000352 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700353 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
355
Steve French5fdae1f2007-06-05 18:30:44 +0000356 if (!rc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 rc = cifs_get_inode_info_unix(&newinode, full_path,
Steve French5fdae1f2007-06-05 18:30:44 +0000358 inode->i_sb, xid);
Steve Frenchb92327f2005-08-22 20:09:43 -0700359 if (pTcon->nocase)
360 direntry->d_op = &cifs_ci_dentry_ops;
361 else
362 direntry->d_op = &cifs_dentry_ops;
Steve French5fdae1f2007-06-05 18:30:44 +0000363 if (rc == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 d_instantiate(direntry, newinode);
365 }
Steve Frenchd7245c22005-07-14 18:25:12 -0500366 } else {
Steve French5fdae1f2007-06-05 18:30:44 +0000367 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) {
Steve Frencheda3c022005-07-21 15:20:28 -0700368 int oplock = 0;
369 u16 fileHandle;
370 FILE_ALL_INFO * buf;
Steve Frenchd7245c22005-07-14 18:25:12 -0500371
Steve French5fdae1f2007-06-05 18:30:44 +0000372 cFYI(1, ("sfu compat create special file"));
Steve Frenchd7245c22005-07-14 18:25:12 -0500373
Steve French5fdae1f2007-06-05 18:30:44 +0000374 buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
375 if (buf == NULL) {
Steve Frencheda3c022005-07-21 15:20:28 -0700376 kfree(full_path);
377 FreeXid(xid);
378 return -ENOMEM;
379 }
380
381 rc = CIFSSMBOpen(xid, pTcon, full_path,
382 FILE_CREATE, /* fail if exists */
Steve French5fdae1f2007-06-05 18:30:44 +0000383 GENERIC_WRITE /* BB would
Steve Frencheda3c022005-07-21 15:20:28 -0700384 WRITE_OWNER | WRITE_DAC be better? */,
385 /* Create a file and set the
386 file attribute to SYSTEM */
387 CREATE_NOT_DIR | CREATE_OPTION_SPECIAL,
388 &fileHandle, &oplock, buf,
389 cifs_sb->local_nls,
Steve French5fdae1f2007-06-05 18:30:44 +0000390 cifs_sb->mnt_cifs_flags &
Steve Frencheda3c022005-07-21 15:20:28 -0700391 CIFS_MOUNT_MAP_SPECIAL_CHR);
392
Steve French5bafd762006-06-07 00:18:43 +0000393 /* BB FIXME - add handling for backlevel servers
394 which need legacy open and check for all
Steve French5fdae1f2007-06-05 18:30:44 +0000395 calls to SMBOpen for fallback to SMBLeagcyOpen */
396 if (!rc) {
Steve Frencheda3c022005-07-21 15:20:28 -0700397 /* BB Do not bother to decode buf since no
Steve French86c96b42005-11-18 20:25:31 -0800398 local inode yet to put timestamps in,
399 but we can reuse it safely */
400 int bytes_written;
401 struct win_dev *pdev;
402 pdev = (struct win_dev *)buf;
Steve French5fdae1f2007-06-05 18:30:44 +0000403 if (S_ISCHR(mode)) {
Steve French86c96b42005-11-18 20:25:31 -0800404 memcpy(pdev->type, "IntxCHR", 8);
405 pdev->major =
406 cpu_to_le64(MAJOR(device_number));
Steve French5fdae1f2007-06-05 18:30:44 +0000407 pdev->minor =
Steve French86c96b42005-11-18 20:25:31 -0800408 cpu_to_le64(MINOR(device_number));
409 rc = CIFSSMBWrite(xid, pTcon,
410 fileHandle,
411 sizeof(struct win_dev),
412 0, &bytes_written, (char *)pdev,
413 NULL, 0);
Steve French5fdae1f2007-06-05 18:30:44 +0000414 } else if (S_ISBLK(mode)) {
Steve French86c96b42005-11-18 20:25:31 -0800415 memcpy(pdev->type, "IntxBLK", 8);
416 pdev->major =
417 cpu_to_le64(MAJOR(device_number));
418 pdev->minor =
419 cpu_to_le64(MINOR(device_number));
420 rc = CIFSSMBWrite(xid, pTcon,
421 fileHandle,
422 sizeof(struct win_dev),
423 0, &bytes_written, (char *)pdev,
424 NULL, 0);
425 } /* else if(S_ISFIFO */
Steve Frencheda3c022005-07-21 15:20:28 -0700426 CIFSSMBClose(xid, pTcon, fileHandle);
427 d_drop(direntry);
428 }
429 kfree(buf);
Steve Frenchd7245c22005-07-14 18:25:12 -0500430 /* add code here to set EAs */
431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
433
Steve Frenchd14537f12005-04-28 22:41:05 -0700434 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 FreeXid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return rc;
437}
438
439
440struct dentry *
Steve French5fdae1f2007-06-05 18:30:44 +0000441cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry,
442 struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
444 int xid;
445 int rc = 0; /* to get around spurious gcc warning, set to zero here */
446 struct cifs_sb_info *cifs_sb;
447 struct cifsTconInfo *pTcon;
448 struct inode *newInode = NULL;
449 char *full_path = NULL;
450
451 xid = GetXid();
452
453 cFYI(1,
454 (" parent inode = 0x%p name is: %s and dentry = 0x%p",
455 parent_dir_inode, direntry->d_name.name, direntry));
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 /* check whether path exists */
458
459 cifs_sb = CIFS_SB(parent_dir_inode->i_sb);
460 pTcon = cifs_sb->tcon;
461
Steve French296034f2006-04-21 18:18:37 +0000462 /*
463 * Don't allow the separator character in a path component.
464 * The VFS will not allow "/", but "\" is allowed by posix.
465 */
466 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS)) {
467 int i;
468 for (i = 0; i < direntry->d_name.len; i++)
469 if (direntry->d_name.name[i] == '\\') {
470 cFYI(1, ("Invalid file name"));
471 FreeXid(xid);
472 return ERR_PTR(-EINVAL);
473 }
474 }
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 /* can not grab the rename sem here since it would
477 deadlock in the cases (beginning of sys_rename itself)
478 in which we already have the sb rename sem */
479 full_path = build_path_from_dentry(direntry);
Steve French5fdae1f2007-06-05 18:30:44 +0000480 if (full_path == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 FreeXid(xid);
482 return ERR_PTR(-ENOMEM);
483 }
484
485 if (direntry->d_inode != NULL) {
486 cFYI(1, (" non-NULL inode in lookup"));
487 } else {
488 cFYI(1, (" NULL inode in lookup"));
489 }
490 cFYI(1,
491 (" Full path: %s inode = 0x%p", full_path, direntry->d_inode));
492
Steve Frenchc18c8422007-07-18 23:21:09 +0000493 if (pTcon->unix_ext)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 rc = cifs_get_inode_info_unix(&newInode, full_path,
Steve French5fdae1f2007-06-05 18:30:44 +0000495 parent_dir_inode->i_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 else
497 rc = cifs_get_inode_info(&newInode, full_path, NULL,
Steve French5fdae1f2007-06-05 18:30:44 +0000498 parent_dir_inode->i_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 if ((rc == 0) && (newInode != NULL)) {
Steve Frenchb92327f2005-08-22 20:09:43 -0700501 if (pTcon->nocase)
502 direntry->d_op = &cifs_ci_dentry_ops;
503 else
504 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 d_add(direntry, newInode);
506
Steve French5fdae1f2007-06-05 18:30:44 +0000507 /* since paths are not looked up by component - the parent
Steve French3abb9272005-11-28 08:16:13 -0800508 directories are presumed to be good here */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 renew_parental_timestamps(direntry);
510
511 } else if (rc == -ENOENT) {
512 rc = 0;
Steve French3abb9272005-11-28 08:16:13 -0800513 direntry->d_time = jiffies;
514 if (pTcon->nocase)
515 direntry->d_op = &cifs_ci_dentry_ops;
516 else
517 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 d_add(direntry, NULL);
Steve French5fdae1f2007-06-05 18:30:44 +0000519 /* if it was once a directory (but how can we tell?) we could do
520 shrink_dcache_parent(direntry); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 } else {
Steve French221601c2007-06-05 20:35:06 +0000522 cERROR(1, ("Error 0x%x on cifs_get_inode_info in lookup of %s",
Steve French5fdae1f2007-06-05 18:30:44 +0000523 rc, full_path));
524 /* BB special case check for Access Denied - watch security
525 exposure of returning dir info implicitly via different rc
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if file exists or not but no access BB */
527 }
528
Steve Frenchd14537f12005-04-28 22:41:05 -0700529 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 FreeXid(xid);
531 return ERR_PTR(rc);
532}
533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534static int
535cifs_d_revalidate(struct dentry *direntry, struct nameidata *nd)
536{
537 int isValid = 1;
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (direntry->d_inode) {
540 if (cifs_revalidate(direntry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 return 0;
542 }
543 } else {
Steve French3abb9272005-11-28 08:16:13 -0800544 cFYI(1, ("neg dentry 0x%p name = %s",
545 direntry, direntry->d_name.name));
Steve French5fdae1f2007-06-05 18:30:44 +0000546 if (time_after(jiffies, direntry->d_time + HZ) ||
Steve French3abb9272005-11-28 08:16:13 -0800547 !lookupCacheEnabled) {
548 d_drop(direntry);
549 isValid = 0;
Steve French5fdae1f2007-06-05 18:30:44 +0000550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 return isValid;
554}
555
556/* static int cifs_d_delete(struct dentry *direntry)
557{
558 int rc = 0;
559
560 cFYI(1, ("In cifs d_delete, name = %s", direntry->d_name.name));
561
562 return rc;
563} */
564
565struct dentry_operations cifs_dentry_ops = {
566 .d_revalidate = cifs_d_revalidate,
Steve French5fdae1f2007-06-05 18:30:44 +0000567/* d_delete: cifs_d_delete, */ /* not needed except for debugging */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568};
Steve Frenchb92327f2005-08-22 20:09:43 -0700569
570static int cifs_ci_hash(struct dentry *dentry, struct qstr *q)
571{
572 struct nls_table *codepage = CIFS_SB(dentry->d_inode->i_sb)->local_nls;
573 unsigned long hash;
574 int i;
575
576 hash = init_name_hash();
577 for (i = 0; i < q->len; i++)
578 hash = partial_name_hash(nls_tolower(codepage, q->name[i]),
579 hash);
580 q->hash = end_name_hash(hash);
581
582 return 0;
583}
584
585static int cifs_ci_compare(struct dentry *dentry, struct qstr *a,
586 struct qstr *b)
587{
588 struct nls_table *codepage = CIFS_SB(dentry->d_inode->i_sb)->local_nls;
589
590 if ((a->len == b->len) &&
591 (nls_strnicmp(codepage, a->name, b->name, a->len) == 0)) {
592 /*
593 * To preserve case, don't let an existing negative dentry's
594 * case take precedence. If a is not a negative dentry, this
595 * should have no side effects
596 */
597 memcpy((unsigned char *)a->name, b->name, a->len);
598 return 0;
599 }
600 return 1;
601}
602
603struct dentry_operations cifs_ci_dentry_ops = {
604 .d_revalidate = cifs_d_revalidate,
605 .d_hash = cifs_ci_hash,
606 .d_compare = cifs_ci_compare,
607};