blob: 6ed775986be993379d4dd6cdcb8e2034eca5ea26 [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 Frenchad7a2922008-02-07 23:25:02 +00006 * Copyright (C) International Business Machines Corp., 2002,2008
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 French39798772006-05-31 22:40:51 +0000114/* Inode operations in similar order to how they appear in Linux file fs.h */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116int
117cifs_create(struct inode *inode, struct dentry *direntry, int mode,
118 struct nameidata *nd)
119{
120 int rc = -ENOENT;
121 int xid;
122 int oplock = 0;
123 int desiredAccess = GENERIC_READ | GENERIC_WRITE;
124 __u16 fileHandle;
125 struct cifs_sb_info *cifs_sb;
126 struct cifsTconInfo *pTcon;
127 char *full_path = NULL;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000128 FILE_ALL_INFO *buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 struct inode *newinode = NULL;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000130 struct cifsFileInfo *pCifsFile = NULL;
131 struct cifsInodeInfo *pCifsInode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 int disposition = FILE_OVERWRITE_IF;
Steve French4b18f2a2008-04-29 00:06:05 +0000133 bool write_only = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 xid = GetXid();
136
137 cifs_sb = CIFS_SB(inode->i_sb);
138 pTcon = cifs_sb->tcon;
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 full_path = build_path_from_dentry(direntry);
Steve French5fdae1f2007-06-05 18:30:44 +0000141 if (full_path == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 FreeXid(xid);
143 return -ENOMEM;
144 }
145
Steve French5fdae1f2007-06-05 18:30:44 +0000146 if (nd && (nd->flags & LOOKUP_OPEN)) {
Miklos Szeredie08fc042005-09-06 15:18:26 -0700147 int oflags = nd->intent.open.flags;
148
149 desiredAccess = 0;
150 if (oflags & FMODE_READ)
151 desiredAccess |= GENERIC_READ;
152 if (oflags & FMODE_WRITE) {
153 desiredAccess |= GENERIC_WRITE;
154 if (!(oflags & FMODE_READ))
Steve French4b18f2a2008-04-29 00:06:05 +0000155 write_only = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 }
157
Steve French5fdae1f2007-06-05 18:30:44 +0000158 if ((oflags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 disposition = FILE_CREATE;
Steve French5fdae1f2007-06-05 18:30:44 +0000160 else if ((oflags & (O_CREAT | O_TRUNC)) == (O_CREAT | O_TRUNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 disposition = FILE_OVERWRITE_IF;
Steve French5fdae1f2007-06-05 18:30:44 +0000162 else if ((oflags & O_CREAT) == O_CREAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 disposition = FILE_OPEN_IF;
Steve Frenchad7a2922008-02-07 23:25:02 +0000164 else
Steve French5fdae1f2007-06-05 18:30:44 +0000165 cFYI(1, ("Create flag not set in create function"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
167
Steve French5fdae1f2007-06-05 18:30:44 +0000168 /* BB add processing to set equivalent of mode - e.g. via CreateX with
169 ACLs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (oplockEnabled)
171 oplock = REQ_OPLOCK;
172
Steve French5fdae1f2007-06-05 18:30:44 +0000173 buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
174 if (buf == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 kfree(full_path);
176 FreeXid(xid);
177 return -ENOMEM;
178 }
Steve French5fdae1f2007-06-05 18:30:44 +0000179 if (cifs_sb->tcon->ses->capabilities & CAP_NT_SMBS)
Steve French5bafd762006-06-07 00:18:43 +0000180 rc = CIFSSMBOpen(xid, pTcon, full_path, disposition,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 desiredAccess, CREATE_NOT_DIR,
Steve French737b7582005-04-28 22:41:06 -0700182 &fileHandle, &oplock, buf, cifs_sb->local_nls,
183 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French5bafd762006-06-07 00:18:43 +0000184 else
185 rc = -EIO; /* no NT SMB support fall into legacy open below */
186
Steve French5fdae1f2007-06-05 18:30:44 +0000187 if (rc == -EIO) {
Steve Frencha9d02ad2005-08-24 23:06:05 -0700188 /* 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);
Steve French5fdae1f2007-06-05 18:30:44 +0000193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if (rc) {
Steve French26a21b92006-05-31 18:05:34 +0000195 cFYI(1, ("cifs_create returned 0x%x", rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 } else {
197 /* If Open reported that we actually created a file
198 then we now have to set the mode if possible */
Steve Frenchc18c8422007-07-18 23:21:09 +0000199 if ((pTcon->unix_ext) && (oplock & CIFS_CREATE_ACTION)) {
Steve French3ce53fc2007-06-08 14:55:14 +0000200 mode &= ~current->fs->umask;
Steve French5fdae1f2007-06-05 18:30:44 +0000201 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 CIFSSMBUnixSetPerms(xid, pTcon, full_path, mode,
Steve French83451872005-12-01 17:12:59 -0800203 (__u64)current->fsuid,
204 (__u64)current->fsgid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 0 /* dev */,
Steve French5fdae1f2007-06-05 18:30:44 +0000206 cifs_sb->local_nls,
207 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700208 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,
Steve French5fdae1f2007-06-05 18:30:44 +0000215 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700216 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
Steve French3ce53fc2007-06-08 14:55:14 +0000218 } else {
Steve French5fdae1f2007-06-05 18:30:44 +0000219 /* BB implement mode setting via Windows security
220 descriptors e.g. */
221 /* CIFSSMBWinSetPerms(xid,pTcon,path,mode,-1,-1,nls);*/
222
223 /* Could set r/o dos attribute if mode & 0222 == 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
225
Steve Frenchc18c8422007-07-18 23:21:09 +0000226 /* server might mask mode so we have to query for it */
227 if (pTcon->unix_ext)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 rc = cifs_get_inode_info_unix(&newinode, full_path,
Steve French5fdae1f2007-06-05 18:30:44 +0000229 inode->i_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 else {
231 rc = cifs_get_inode_info(&newinode, full_path,
Steve French8b1327f2008-03-14 22:37:16 +0000232 buf, inode->i_sb, xid,
233 &fileHandle);
Steve French5fdae1f2007-06-05 18:30:44 +0000234 if (newinode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 newinode->i_mode = mode;
Steve French5fdae1f2007-06-05 18:30:44 +0000236 if ((oplock & CIFS_CREATE_ACTION) &&
237 (cifs_sb->mnt_cifs_flags &
Steve French6473a552005-11-29 20:20:10 -0800238 CIFS_MOUNT_SET_UID)) {
239 newinode->i_uid = current->fsuid;
240 newinode->i_gid = current->fsgid;
241 }
242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
244
245 if (rc != 0) {
Steve French4a6d87f2005-08-13 08:15:54 -0700246 cFYI(1,
247 ("Create worked but get_inode_info failed rc = %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 rc));
249 } else {
Steve Frenchb92327f2005-08-22 20:09:43 -0700250 if (pTcon->nocase)
251 direntry->d_op = &cifs_ci_dentry_ops;
252 else
253 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 d_instantiate(direntry, newinode);
255 }
Steve French7521a3c2007-07-11 18:30:34 +0000256 if ((nd == NULL /* nfsd case - nfs srv does not set nd */) ||
Steve French4b18f2a2008-04-29 00:06:05 +0000257 (!(nd->flags & LOOKUP_OPEN))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 /* mknod case - do not leave file open */
259 CIFSSMBClose(xid, pTcon, fileHandle);
Steve French5fdae1f2007-06-05 18:30:44 +0000260 } else if (newinode) {
Steve Frenchd14537f12005-04-28 22:41:05 -0700261 pCifsFile =
Steve French92ad9b92007-09-29 05:21:58 +0000262 kzalloc(sizeof(struct cifsFileInfo), GFP_KERNEL);
Steve French221601c2007-06-05 20:35:06 +0000263
Steve French5fdae1f2007-06-05 18:30:44 +0000264 if (pCifsFile == NULL)
Steve Frenchd14537f12005-04-28 22:41:05 -0700265 goto cifs_create_out;
Steve Frenchd14537f12005-04-28 22:41:05 -0700266 pCifsFile->netfid = fileHandle;
267 pCifsFile->pid = current->tgid;
268 pCifsFile->pInode = newinode;
Steve French4b18f2a2008-04-29 00:06:05 +0000269 pCifsFile->invalidHandle = false;
270 pCifsFile->closePend = false;
Steve Frenchd14537f12005-04-28 22:41:05 -0700271 init_MUTEX(&pCifsFile->fh_sem);
Roland Dreier796e5662007-05-03 04:33:45 +0000272 mutex_init(&pCifsFile->lock_mutex);
Steve Frenche466e482006-08-15 13:07:18 +0000273 INIT_LIST_HEAD(&pCifsFile->llist);
Steve French5fdae1f2007-06-05 18:30:44 +0000274 atomic_set(&pCifsFile->wrtPending, 0);
Steve Frenche466e482006-08-15 13:07:18 +0000275
Steve French5fdae1f2007-06-05 18:30:44 +0000276 /* set the following in open now
Steve Frenchd14537f12005-04-28 22:41:05 -0700277 pCifsFile->pfile = file; */
278 write_lock(&GlobalSMBSeslock);
Steve French5fdae1f2007-06-05 18:30:44 +0000279 list_add(&pCifsFile->tlist, &pTcon->openFileList);
Steve Frenchd14537f12005-04-28 22:41:05 -0700280 pCifsInode = CIFS_I(newinode);
Steve French5fdae1f2007-06-05 18:30:44 +0000281 if (pCifsInode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 /* if readable file instance put first in list*/
Steve French4b18f2a2008-04-29 00:06:05 +0000283 if (write_only) {
Steve French5fdae1f2007-06-05 18:30:44 +0000284 list_add_tail(&pCifsFile->flist,
Steve Frenchd14537f12005-04-28 22:41:05 -0700285 &pCifsInode->openFileList);
286 } else {
287 list_add(&pCifsFile->flist,
288 &pCifsInode->openFileList);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 }
Steve French5fdae1f2007-06-05 18:30:44 +0000290 if ((oplock & 0xF) == OPLOCK_EXCLUSIVE) {
Steve French4b18f2a2008-04-29 00:06:05 +0000291 pCifsInode->clientCanCacheAll = true;
292 pCifsInode->clientCanCacheRead = true;
Steve French221601c2007-06-05 20:35:06 +0000293 cFYI(1, ("Exclusive Oplock inode %p",
Steve Frenchd14537f12005-04-28 22:41:05 -0700294 newinode));
Steve French5fdae1f2007-06-05 18:30:44 +0000295 } else if ((oplock & 0xF) == OPLOCK_READ)
Steve French4b18f2a2008-04-29 00:06:05 +0000296 pCifsInode->clientCanCacheRead = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
Steve Frenchd14537f12005-04-28 22:41:05 -0700298 write_unlock(&GlobalSMBSeslock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
Steve French5fdae1f2007-06-05 18:30:44 +0000300 }
Steve Frenchd14537f12005-04-28 22:41:05 -0700301cifs_create_out:
302 kfree(buf);
303 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 FreeXid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 return rc;
306}
307
Steve French5fdae1f2007-06-05 18:30:44 +0000308int cifs_mknod(struct inode *inode, struct dentry *direntry, int mode,
309 dev_t device_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
311 int rc = -EPERM;
312 int xid;
313 struct cifs_sb_info *cifs_sb;
314 struct cifsTconInfo *pTcon;
315 char *full_path = NULL;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000316 struct inode *newinode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 if (!old_valid_dev(device_number))
319 return -EINVAL;
320
321 xid = GetXid();
322
323 cifs_sb = CIFS_SB(inode->i_sb);
324 pTcon = cifs_sb->tcon;
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 full_path = build_path_from_dentry(direntry);
Steve French5fdae1f2007-06-05 18:30:44 +0000327 if (full_path == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 rc = -ENOMEM;
Steve Frenchc18c8422007-07-18 23:21:09 +0000329 else if (pTcon->unix_ext) {
Steve French3ce53fc2007-06-08 14:55:14 +0000330 mode &= ~current->fs->umask;
Steve French5fdae1f2007-06-05 18:30:44 +0000331 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 rc = CIFSSMBUnixSetPerms(xid, pTcon, full_path,
Steve French5fdae1f2007-06-05 18:30:44 +0000333 mode, (__u64)current->fsuid,
334 (__u64)current->fsgid,
Steve French737b7582005-04-28 22:41:06 -0700335 device_number, cifs_sb->local_nls,
Steve French5fdae1f2007-06-05 18:30:44 +0000336 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700337 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 } else {
339 rc = CIFSSMBUnixSetPerms(xid, pTcon,
340 full_path, mode, (__u64)-1, (__u64)-1,
Steve French737b7582005-04-28 22:41:06 -0700341 device_number, cifs_sb->local_nls,
Steve French5fdae1f2007-06-05 18:30:44 +0000342 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700343 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
345
Steve French5fdae1f2007-06-05 18:30:44 +0000346 if (!rc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 rc = cifs_get_inode_info_unix(&newinode, full_path,
Steve French5fdae1f2007-06-05 18:30:44 +0000348 inode->i_sb, xid);
Steve Frenchb92327f2005-08-22 20:09:43 -0700349 if (pTcon->nocase)
350 direntry->d_op = &cifs_ci_dentry_ops;
351 else
352 direntry->d_op = &cifs_dentry_ops;
Steve French5fdae1f2007-06-05 18:30:44 +0000353 if (rc == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 d_instantiate(direntry, newinode);
355 }
Steve Frenchd7245c22005-07-14 18:25:12 -0500356 } else {
Steve French5fdae1f2007-06-05 18:30:44 +0000357 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) {
Steve Frencheda3c022005-07-21 15:20:28 -0700358 int oplock = 0;
359 u16 fileHandle;
Steve Frenchad7a2922008-02-07 23:25:02 +0000360 FILE_ALL_INFO *buf;
Steve Frenchd7245c22005-07-14 18:25:12 -0500361
Steve French5fdae1f2007-06-05 18:30:44 +0000362 cFYI(1, ("sfu compat create special file"));
Steve Frenchd7245c22005-07-14 18:25:12 -0500363
Steve French5fdae1f2007-06-05 18:30:44 +0000364 buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
365 if (buf == NULL) {
Steve Frencheda3c022005-07-21 15:20:28 -0700366 kfree(full_path);
367 FreeXid(xid);
368 return -ENOMEM;
369 }
370
371 rc = CIFSSMBOpen(xid, pTcon, full_path,
372 FILE_CREATE, /* fail if exists */
Steve French5fdae1f2007-06-05 18:30:44 +0000373 GENERIC_WRITE /* BB would
Steve Frencheda3c022005-07-21 15:20:28 -0700374 WRITE_OWNER | WRITE_DAC be better? */,
375 /* Create a file and set the
376 file attribute to SYSTEM */
377 CREATE_NOT_DIR | CREATE_OPTION_SPECIAL,
378 &fileHandle, &oplock, buf,
379 cifs_sb->local_nls,
Steve French5fdae1f2007-06-05 18:30:44 +0000380 cifs_sb->mnt_cifs_flags &
Steve Frencheda3c022005-07-21 15:20:28 -0700381 CIFS_MOUNT_MAP_SPECIAL_CHR);
382
Steve French5bafd762006-06-07 00:18:43 +0000383 /* BB FIXME - add handling for backlevel servers
384 which need legacy open and check for all
Steve French5fdae1f2007-06-05 18:30:44 +0000385 calls to SMBOpen for fallback to SMBLeagcyOpen */
386 if (!rc) {
Steve Frencheda3c022005-07-21 15:20:28 -0700387 /* BB Do not bother to decode buf since no
Steve French86c96b42005-11-18 20:25:31 -0800388 local inode yet to put timestamps in,
389 but we can reuse it safely */
Steve French77159b42007-08-31 01:10:17 +0000390 unsigned int bytes_written;
Steve French86c96b42005-11-18 20:25:31 -0800391 struct win_dev *pdev;
392 pdev = (struct win_dev *)buf;
Steve French5fdae1f2007-06-05 18:30:44 +0000393 if (S_ISCHR(mode)) {
Steve French86c96b42005-11-18 20:25:31 -0800394 memcpy(pdev->type, "IntxCHR", 8);
395 pdev->major =
396 cpu_to_le64(MAJOR(device_number));
Steve French5fdae1f2007-06-05 18:30:44 +0000397 pdev->minor =
Steve French86c96b42005-11-18 20:25:31 -0800398 cpu_to_le64(MINOR(device_number));
399 rc = CIFSSMBWrite(xid, pTcon,
400 fileHandle,
401 sizeof(struct win_dev),
402 0, &bytes_written, (char *)pdev,
403 NULL, 0);
Steve French5fdae1f2007-06-05 18:30:44 +0000404 } else if (S_ISBLK(mode)) {
Steve French86c96b42005-11-18 20:25:31 -0800405 memcpy(pdev->type, "IntxBLK", 8);
406 pdev->major =
407 cpu_to_le64(MAJOR(device_number));
408 pdev->minor =
409 cpu_to_le64(MINOR(device_number));
410 rc = CIFSSMBWrite(xid, pTcon,
411 fileHandle,
412 sizeof(struct win_dev),
413 0, &bytes_written, (char *)pdev,
414 NULL, 0);
415 } /* else if(S_ISFIFO */
Steve Frencheda3c022005-07-21 15:20:28 -0700416 CIFSSMBClose(xid, pTcon, fileHandle);
417 d_drop(direntry);
418 }
419 kfree(buf);
Steve Frenchd7245c22005-07-14 18:25:12 -0500420 /* add code here to set EAs */
421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
423
Steve Frenchd14537f12005-04-28 22:41:05 -0700424 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 FreeXid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 return rc;
427}
428
429
430struct dentry *
Steve French5fdae1f2007-06-05 18:30:44 +0000431cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry,
432 struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
434 int xid;
435 int rc = 0; /* to get around spurious gcc warning, set to zero here */
436 struct cifs_sb_info *cifs_sb;
437 struct cifsTconInfo *pTcon;
438 struct inode *newInode = NULL;
439 char *full_path = NULL;
440
441 xid = GetXid();
442
Steve French92ad9b92007-09-29 05:21:58 +0000443 cFYI(1, (" parent inode = 0x%p name is: %s and dentry = 0x%p",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 parent_dir_inode, direntry->d_name.name, direntry));
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 /* check whether path exists */
447
448 cifs_sb = CIFS_SB(parent_dir_inode->i_sb);
449 pTcon = cifs_sb->tcon;
450
Steve French296034f2006-04-21 18:18:37 +0000451 /*
452 * Don't allow the separator character in a path component.
453 * The VFS will not allow "/", but "\" is allowed by posix.
454 */
455 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS)) {
456 int i;
457 for (i = 0; i < direntry->d_name.len; i++)
458 if (direntry->d_name.name[i] == '\\') {
459 cFYI(1, ("Invalid file name"));
460 FreeXid(xid);
461 return ERR_PTR(-EINVAL);
462 }
463 }
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 /* can not grab the rename sem here since it would
466 deadlock in the cases (beginning of sys_rename itself)
467 in which we already have the sb rename sem */
468 full_path = build_path_from_dentry(direntry);
Steve French5fdae1f2007-06-05 18:30:44 +0000469 if (full_path == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 FreeXid(xid);
471 return ERR_PTR(-ENOMEM);
472 }
473
474 if (direntry->d_inode != NULL) {
475 cFYI(1, (" non-NULL inode in lookup"));
476 } else {
477 cFYI(1, (" NULL inode in lookup"));
478 }
479 cFYI(1,
480 (" Full path: %s inode = 0x%p", full_path, direntry->d_inode));
481
Steve Frenchc18c8422007-07-18 23:21:09 +0000482 if (pTcon->unix_ext)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 rc = cifs_get_inode_info_unix(&newInode, full_path,
Steve French5fdae1f2007-06-05 18:30:44 +0000484 parent_dir_inode->i_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 else
486 rc = cifs_get_inode_info(&newInode, full_path, NULL,
Steve French8b1327f2008-03-14 22:37:16 +0000487 parent_dir_inode->i_sb, xid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 if ((rc == 0) && (newInode != NULL)) {
Steve Frenchb92327f2005-08-22 20:09:43 -0700490 if (pTcon->nocase)
491 direntry->d_op = &cifs_ci_dentry_ops;
492 else
493 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 d_add(direntry, newInode);
495
Steve French5fdae1f2007-06-05 18:30:44 +0000496 /* since paths are not looked up by component - the parent
Steve French3abb9272005-11-28 08:16:13 -0800497 directories are presumed to be good here */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 renew_parental_timestamps(direntry);
499
500 } else if (rc == -ENOENT) {
501 rc = 0;
Steve French3abb9272005-11-28 08:16:13 -0800502 direntry->d_time = jiffies;
503 if (pTcon->nocase)
504 direntry->d_op = &cifs_ci_dentry_ops;
505 else
506 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 d_add(direntry, NULL);
Steve French5fdae1f2007-06-05 18:30:44 +0000508 /* if it was once a directory (but how can we tell?) we could do
509 shrink_dcache_parent(direntry); */
Steve Frenched2b9172008-01-20 00:30:29 +0000510 } else if (rc != -EACCES) {
511 cERROR(1, ("Unexpected lookup error %d", rc));
512 /* We special case check for Access Denied - since that
513 is a common return code */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
515
Steve Frenchd14537f12005-04-28 22:41:05 -0700516 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 FreeXid(xid);
518 return ERR_PTR(rc);
519}
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521static int
522cifs_d_revalidate(struct dentry *direntry, struct nameidata *nd)
523{
524 int isValid = 1;
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (direntry->d_inode) {
Steve Frenchad7a2922008-02-07 23:25:02 +0000527 if (cifs_revalidate(direntry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 } else {
Steve French3abb9272005-11-28 08:16:13 -0800530 cFYI(1, ("neg dentry 0x%p name = %s",
531 direntry, direntry->d_name.name));
Steve French5fdae1f2007-06-05 18:30:44 +0000532 if (time_after(jiffies, direntry->d_time + HZ) ||
Steve French3abb9272005-11-28 08:16:13 -0800533 !lookupCacheEnabled) {
534 d_drop(direntry);
535 isValid = 0;
Steve French5fdae1f2007-06-05 18:30:44 +0000536 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return isValid;
540}
541
542/* static int cifs_d_delete(struct dentry *direntry)
543{
544 int rc = 0;
545
546 cFYI(1, ("In cifs d_delete, name = %s", direntry->d_name.name));
547
548 return rc;
549} */
550
551struct dentry_operations cifs_dentry_ops = {
552 .d_revalidate = cifs_d_revalidate,
Steve French5fdae1f2007-06-05 18:30:44 +0000553/* d_delete: cifs_d_delete, */ /* not needed except for debugging */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554};
Steve Frenchb92327f2005-08-22 20:09:43 -0700555
556static int cifs_ci_hash(struct dentry *dentry, struct qstr *q)
557{
558 struct nls_table *codepage = CIFS_SB(dentry->d_inode->i_sb)->local_nls;
559 unsigned long hash;
560 int i;
561
562 hash = init_name_hash();
563 for (i = 0; i < q->len; i++)
564 hash = partial_name_hash(nls_tolower(codepage, q->name[i]),
565 hash);
566 q->hash = end_name_hash(hash);
567
568 return 0;
569}
570
571static int cifs_ci_compare(struct dentry *dentry, struct qstr *a,
572 struct qstr *b)
573{
574 struct nls_table *codepage = CIFS_SB(dentry->d_inode->i_sb)->local_nls;
575
576 if ((a->len == b->len) &&
577 (nls_strnicmp(codepage, a->name, b->name, a->len) == 0)) {
578 /*
579 * To preserve case, don't let an existing negative dentry's
580 * case take precedence. If a is not a negative dentry, this
581 * should have no side effects
582 */
Steve French44093ca2007-10-23 21:22:55 +0000583 memcpy(a->name, b->name, a->len);
Steve Frenchb92327f2005-08-22 20:09:43 -0700584 return 0;
585 }
586 return 1;
587}
588
589struct dentry_operations cifs_ci_dentry_ops = {
590 .d_revalidate = cifs_d_revalidate,
591 .d_hash = cifs_ci_hash,
592 .d_compare = cifs_ci_compare,
593};