blob: eeab602c6e0aaec6a3876ba06bd7d303f2e98415 [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;
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;
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 */
210 if ((cifs_sb->tcon->ses->capabilities & CAP_UNIX) &&
211 (oplock & CIFS_CREATE_ACTION))
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 }
229 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
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,
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 French5fdae1f2007-06-05 18:30:44 +0000266 if ((nd->flags & LOOKUP_OPEN) == FALSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 /* mknod case - do not leave file open */
268 CIFSSMBClose(xid, pTcon, fileHandle);
Steve French5fdae1f2007-06-05 18:30:44 +0000269 } else if (newinode) {
Steve Frenchd14537f12005-04-28 22:41:05 -0700270 pCifsFile =
Eric Sesterhenna048d7a2006-02-21 22:33:09 +0000271 kzalloc(sizeof (struct cifsFileInfo), GFP_KERNEL);
Steve Frenchd14537f12005-04-28 22:41:05 -0700272
Steve French5fdae1f2007-06-05 18:30:44 +0000273 if (pCifsFile == NULL)
Steve Frenchd14537f12005-04-28 22:41:05 -0700274 goto cifs_create_out;
Steve Frenchd14537f12005-04-28 22:41:05 -0700275 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);
Roland Dreier796e5662007-05-03 04:33:45 +0000281 mutex_init(&pCifsFile->lock_mutex);
Steve Frenche466e482006-08-15 13:07:18 +0000282 INIT_LIST_HEAD(&pCifsFile->llist);
Steve French5fdae1f2007-06-05 18:30:44 +0000283 atomic_set(&pCifsFile->wrtPending, 0);
Steve Frenche466e482006-08-15 13:07:18 +0000284
Steve French5fdae1f2007-06-05 18:30:44 +0000285 /* set the following in open now
Steve Frenchd14537f12005-04-28 22:41:05 -0700286 pCifsFile->pfile = file; */
287 write_lock(&GlobalSMBSeslock);
Steve French5fdae1f2007-06-05 18:30:44 +0000288 list_add(&pCifsFile->tlist, &pTcon->openFileList);
Steve Frenchd14537f12005-04-28 22:41:05 -0700289 pCifsInode = CIFS_I(newinode);
Steve French5fdae1f2007-06-05 18:30:44 +0000290 if (pCifsInode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 /* if readable file instance put first in list*/
Steve Frenchd14537f12005-04-28 22:41:05 -0700292 if (write_only == TRUE) {
Steve French5fdae1f2007-06-05 18:30:44 +0000293 list_add_tail(&pCifsFile->flist,
Steve Frenchd14537f12005-04-28 22:41:05 -0700294 &pCifsInode->openFileList);
295 } else {
296 list_add(&pCifsFile->flist,
297 &pCifsInode->openFileList);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
Steve French5fdae1f2007-06-05 18:30:44 +0000299 if ((oplock & 0xF) == OPLOCK_EXCLUSIVE) {
Steve Frenchd14537f12005-04-28 22:41:05 -0700300 pCifsInode->clientCanCacheAll = TRUE;
301 pCifsInode->clientCanCacheRead = TRUE;
302 cFYI(1,("Exclusive Oplock for inode %p",
303 newinode));
Steve French5fdae1f2007-06-05 18:30:44 +0000304 } else if ((oplock & 0xF) == OPLOCK_READ)
Steve Frenchd14537f12005-04-28 22:41:05 -0700305 pCifsInode->clientCanCacheRead = TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
Steve Frenchd14537f12005-04-28 22:41:05 -0700307 write_unlock(&GlobalSMBSeslock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
Steve French5fdae1f2007-06-05 18:30:44 +0000309 }
Steve Frenchd14537f12005-04-28 22:41:05 -0700310cifs_create_out:
311 kfree(buf);
312 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 FreeXid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return rc;
315}
316
Steve French5fdae1f2007-06-05 18:30:44 +0000317int cifs_mknod(struct inode *inode, struct dentry *direntry, int mode,
318 dev_t device_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
320 int rc = -EPERM;
321 int xid;
322 struct cifs_sb_info *cifs_sb;
323 struct cifsTconInfo *pTcon;
324 char *full_path = NULL;
325 struct inode * newinode = NULL;
326
327 if (!old_valid_dev(device_number))
328 return -EINVAL;
329
330 xid = GetXid();
331
332 cifs_sb = CIFS_SB(inode->i_sb);
333 pTcon = cifs_sb->tcon;
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 full_path = build_path_from_dentry(direntry);
Steve French5fdae1f2007-06-05 18:30:44 +0000336 if (full_path == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 rc = -ENOMEM;
Steve French4a6d87f2005-08-13 08:15:54 -0700338 else if (pTcon->ses->capabilities & CAP_UNIX) {
Steve French5fdae1f2007-06-05 18:30:44 +0000339 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 rc = CIFSSMBUnixSetPerms(xid, pTcon, full_path,
Steve French5fdae1f2007-06-05 18:30:44 +0000341 mode, (__u64)current->fsuid,
342 (__u64)current->fsgid,
Steve French737b7582005-04-28 22:41:06 -0700343 device_number, cifs_sb->local_nls,
Steve French5fdae1f2007-06-05 18:30:44 +0000344 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700345 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 } else {
347 rc = CIFSSMBUnixSetPerms(xid, pTcon,
348 full_path, mode, (__u64)-1, (__u64)-1,
Steve French737b7582005-04-28 22:41:06 -0700349 device_number, cifs_sb->local_nls,
Steve French5fdae1f2007-06-05 18:30:44 +0000350 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700351 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
353
Steve French5fdae1f2007-06-05 18:30:44 +0000354 if (!rc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 rc = cifs_get_inode_info_unix(&newinode, full_path,
Steve French5fdae1f2007-06-05 18:30:44 +0000356 inode->i_sb, xid);
Steve Frenchb92327f2005-08-22 20:09:43 -0700357 if (pTcon->nocase)
358 direntry->d_op = &cifs_ci_dentry_ops;
359 else
360 direntry->d_op = &cifs_dentry_ops;
Steve French5fdae1f2007-06-05 18:30:44 +0000361 if (rc == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 d_instantiate(direntry, newinode);
363 }
Steve Frenchd7245c22005-07-14 18:25:12 -0500364 } else {
Steve French5fdae1f2007-06-05 18:30:44 +0000365 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) {
Steve Frencheda3c0292005-07-21 15:20:28 -0700366 int oplock = 0;
367 u16 fileHandle;
368 FILE_ALL_INFO * buf;
Steve Frenchd7245c22005-07-14 18:25:12 -0500369
Steve French5fdae1f2007-06-05 18:30:44 +0000370 cFYI(1, ("sfu compat create special file"));
Steve Frenchd7245c22005-07-14 18:25:12 -0500371
Steve French5fdae1f2007-06-05 18:30:44 +0000372 buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
373 if (buf == NULL) {
Steve Frencheda3c0292005-07-21 15:20:28 -0700374 kfree(full_path);
375 FreeXid(xid);
376 return -ENOMEM;
377 }
378
379 rc = CIFSSMBOpen(xid, pTcon, full_path,
380 FILE_CREATE, /* fail if exists */
Steve French5fdae1f2007-06-05 18:30:44 +0000381 GENERIC_WRITE /* BB would
Steve Frencheda3c0292005-07-21 15:20:28 -0700382 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,
387 cifs_sb->local_nls,
Steve French5fdae1f2007-06-05 18:30:44 +0000388 cifs_sb->mnt_cifs_flags &
Steve Frencheda3c0292005-07-21 15:20:28 -0700389 CIFS_MOUNT_MAP_SPECIAL_CHR);
390
Steve French5bafd762006-06-07 00:18:43 +0000391 /* BB FIXME - add handling for backlevel servers
392 which need legacy open and check for all
Steve French5fdae1f2007-06-05 18:30:44 +0000393 calls to SMBOpen for fallback to SMBLeagcyOpen */
394 if (!rc) {
Steve Frencheda3c0292005-07-21 15:20:28 -0700395 /* BB Do not bother to decode buf since no
Steve French86c96b42005-11-18 20:25:31 -0800396 local inode yet to put timestamps in,
397 but we can reuse it safely */
398 int bytes_written;
399 struct win_dev *pdev;
400 pdev = (struct win_dev *)buf;
Steve French5fdae1f2007-06-05 18:30:44 +0000401 if (S_ISCHR(mode)) {
Steve French86c96b42005-11-18 20:25:31 -0800402 memcpy(pdev->type, "IntxCHR", 8);
403 pdev->major =
404 cpu_to_le64(MAJOR(device_number));
Steve French5fdae1f2007-06-05 18:30:44 +0000405 pdev->minor =
Steve French86c96b42005-11-18 20:25:31 -0800406 cpu_to_le64(MINOR(device_number));
407 rc = CIFSSMBWrite(xid, pTcon,
408 fileHandle,
409 sizeof(struct win_dev),
410 0, &bytes_written, (char *)pdev,
411 NULL, 0);
Steve French5fdae1f2007-06-05 18:30:44 +0000412 } else if (S_ISBLK(mode)) {
Steve French86c96b42005-11-18 20:25:31 -0800413 memcpy(pdev->type, "IntxBLK", 8);
414 pdev->major =
415 cpu_to_le64(MAJOR(device_number));
416 pdev->minor =
417 cpu_to_le64(MINOR(device_number));
418 rc = CIFSSMBWrite(xid, pTcon,
419 fileHandle,
420 sizeof(struct win_dev),
421 0, &bytes_written, (char *)pdev,
422 NULL, 0);
423 } /* else if(S_ISFIFO */
Steve Frencheda3c0292005-07-21 15:20:28 -0700424 CIFSSMBClose(xid, pTcon, fileHandle);
425 d_drop(direntry);
426 }
427 kfree(buf);
Steve Frenchd7245c22005-07-14 18:25:12 -0500428 /* add code here to set EAs */
429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
431
Steve Frenchd14537f12005-04-28 22:41:05 -0700432 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 FreeXid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 return rc;
435}
436
437
438struct dentry *
Steve French5fdae1f2007-06-05 18:30:44 +0000439cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry,
440 struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
442 int xid;
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;
448
449 xid = GetXid();
450
451 cFYI(1,
452 (" parent inode = 0x%p name is: %s and dentry = 0x%p",
453 parent_dir_inode, direntry->d_name.name, direntry));
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 /* check whether path exists */
456
457 cifs_sb = CIFS_SB(parent_dir_inode->i_sb);
458 pTcon = cifs_sb->tcon;
459
Steve French296034f2006-04-21 18:18:37 +0000460 /*
461 * Don't allow the separator character in a path component.
462 * The VFS will not allow "/", but "\" is allowed by posix.
463 */
464 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS)) {
465 int i;
466 for (i = 0; i < direntry->d_name.len; i++)
467 if (direntry->d_name.name[i] == '\\') {
468 cFYI(1, ("Invalid file name"));
469 FreeXid(xid);
470 return ERR_PTR(-EINVAL);
471 }
472 }
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 /* 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);
Steve French5fdae1f2007-06-05 18:30:44 +0000478 if (full_path == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 FreeXid(xid);
480 return ERR_PTR(-ENOMEM);
481 }
482
483 if (direntry->d_inode != NULL) {
484 cFYI(1, (" non-NULL inode in lookup"));
485 } else {
486 cFYI(1, (" NULL inode in lookup"));
487 }
488 cFYI(1,
489 (" Full path: %s inode = 0x%p", full_path, direntry->d_inode));
490
491 if (pTcon->ses->capabilities & CAP_UNIX)
492 rc = cifs_get_inode_info_unix(&newInode, full_path,
Steve French5fdae1f2007-06-05 18:30:44 +0000493 parent_dir_inode->i_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 else
495 rc = cifs_get_inode_info(&newInode, full_path, NULL,
Steve French5fdae1f2007-06-05 18:30:44 +0000496 parent_dir_inode->i_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 if ((rc == 0) && (newInode != NULL)) {
Steve Frenchb92327f2005-08-22 20:09:43 -0700499 if (pTcon->nocase)
500 direntry->d_op = &cifs_ci_dentry_ops;
501 else
502 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 d_add(direntry, newInode);
504
Steve French5fdae1f2007-06-05 18:30:44 +0000505 /* since paths are not looked up by component - the parent
Steve French3abb9272005-11-28 08:16:13 -0800506 directories are presumed to be good here */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 renew_parental_timestamps(direntry);
508
509 } else if (rc == -ENOENT) {
510 rc = 0;
Steve French3abb9272005-11-28 08:16:13 -0800511 direntry->d_time = jiffies;
512 if (pTcon->nocase)
513 direntry->d_op = &cifs_ci_dentry_ops;
514 else
515 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 d_add(direntry, NULL);
Steve French5fdae1f2007-06-05 18:30:44 +0000517 /* if it was once a directory (but how can we tell?) we could do
518 shrink_dcache_parent(direntry); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 } else {
Steve Frenchb2aeb9d2005-05-17 13:16:18 -0500520 cERROR(1,("Error 0x%x on cifs_get_inode_info in lookup of %s",
Steve French5fdae1f2007-06-05 18:30:44 +0000521 rc, full_path));
522 /* BB special case check for Access Denied - watch security
523 exposure of returning dir info implicitly via different rc
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if file exists or not but no access BB */
525 }
526
Steve Frenchd14537f12005-04-28 22:41:05 -0700527 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 FreeXid(xid);
529 return ERR_PTR(rc);
530}
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532static int
533cifs_d_revalidate(struct dentry *direntry, struct nameidata *nd)
534{
535 int isValid = 1;
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (direntry->d_inode) {
538 if (cifs_revalidate(direntry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return 0;
540 }
541 } else {
Steve French3abb9272005-11-28 08:16:13 -0800542 cFYI(1, ("neg dentry 0x%p name = %s",
543 direntry, direntry->d_name.name));
Steve French5fdae1f2007-06-05 18:30:44 +0000544 if (time_after(jiffies, direntry->d_time + HZ) ||
Steve French3abb9272005-11-28 08:16:13 -0800545 !lookupCacheEnabled) {
546 d_drop(direntry);
547 isValid = 0;
Steve French5fdae1f2007-06-05 18:30:44 +0000548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return isValid;
552}
553
554/* static int cifs_d_delete(struct dentry *direntry)
555{
556 int rc = 0;
557
558 cFYI(1, ("In cifs d_delete, name = %s", direntry->d_name.name));
559
560 return rc;
561} */
562
563struct dentry_operations cifs_dentry_ops = {
564 .d_revalidate = cifs_d_revalidate,
Steve French5fdae1f2007-06-05 18:30:44 +0000565/* d_delete: cifs_d_delete, */ /* not needed except for debugging */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566};
Steve Frenchb92327f2005-08-22 20:09:43 -0700567
568static int cifs_ci_hash(struct dentry *dentry, struct qstr *q)
569{
570 struct nls_table *codepage = CIFS_SB(dentry->d_inode->i_sb)->local_nls;
571 unsigned long hash;
572 int i;
573
574 hash = init_name_hash();
575 for (i = 0; i < q->len; i++)
576 hash = partial_name_hash(nls_tolower(codepage, q->name[i]),
577 hash);
578 q->hash = end_name_hash(hash);
579
580 return 0;
581}
582
583static int cifs_ci_compare(struct dentry *dentry, struct qstr *a,
584 struct qstr *b)
585{
586 struct nls_table *codepage = CIFS_SB(dentry->d_inode->i_sb)->local_nls;
587
588 if ((a->len == b->len) &&
589 (nls_strnicmp(codepage, a->name, b->name, a->len) == 0)) {
590 /*
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
594 */
595 memcpy((unsigned char *)a->name, b->name, a->len);
596 return 0;
597 }
598 return 1;
599}
600
601struct dentry_operations cifs_ci_dentry_ops = {
602 .d_revalidate = cifs_d_revalidate,
603 .d_hash = cifs_ci_hash,
604 .d_compare = cifs_ci_compare,
605};