[CIFS] Remove cifs_sb argument from *build_path_from_dentry
[safe/jmp/linux-2.6] / fs / cifs / dir.c
1 /*
2  *   fs/cifs/dir.c
3  *
4  *   vfs operations that deal with dentries
5  * 
6  *   Copyright (C) International Business Machines  Corp., 2002,2003
7  *   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
34 void
35 renew_parental_timestamps(struct dentry *direntry)
36 {
37         /* BB check if there is a way to get the kernel to do this or if we really need this */
38         do {
39                 direntry->d_time = jiffies;
40                 direntry = direntry->d_parent;
41         } while (!IS_ROOT(direntry));   
42 }
43
44 /* Note: caller must free return buffer */
45 char *
46 build_path_from_dentry(struct dentry *direntry)
47 {
48         struct dentry *temp;
49         int namelen = 0;
50         char *full_path;
51         char dirsep = CIFS_DIR_SEP(CIFS_SB(direntry->d_sb));
52
53         if(direntry == NULL)
54                 return NULL;  /* not much we can do if dentry is freed and
55                 we need to reopen the file after it was closed implicitly
56                 when the server crashed */
57
58 cifs_bp_rename_retry:
59         for (temp = direntry; !IS_ROOT(temp);) {
60                 namelen += (1 + temp->d_name.len);
61                 temp = temp->d_parent;
62                 if(temp == NULL) {
63                         cERROR(1,("corrupt dentry"));
64                         return NULL;
65                 }
66         }
67
68         full_path = kmalloc(namelen+1, GFP_KERNEL);
69         if(full_path == NULL)
70                 return full_path;
71         full_path[namelen] = 0; /* trailing null */
72
73         for (temp = direntry; !IS_ROOT(temp);) {
74                 namelen -= 1 + temp->d_name.len;
75                 if (namelen < 0) {
76                         break;
77                 } else {
78                         full_path[namelen] = dirsep;
79                         strncpy(full_path + namelen + 1, temp->d_name.name,
80                                 temp->d_name.len);
81                         cFYI(0, (" name: %s ", full_path + namelen));
82                 }
83                 temp = temp->d_parent;
84                 if(temp == NULL) {
85                         cERROR(1,("corrupt dentry"));
86                         kfree(full_path);
87                         return NULL;
88                 }
89         }
90         if (namelen != 0) {
91                 cERROR(1,
92                        ("We did not end path lookup where we expected namelen is %d",
93                         namelen));
94                 /* presumably this is only possible if we were racing with a rename 
95                 of one of the parent directories  (we can not lock the dentries
96                 above us to prevent this, but retrying should be harmless) */
97                 kfree(full_path);
98                 namelen = 0;
99                 goto cifs_bp_rename_retry;
100         }
101
102         return full_path;
103 }
104
105 /* char * build_wildcard_path_from_dentry(struct dentry *direntry)
106 {
107         if(full_path == NULL)
108                 return full_path;
109
110         full_path[namelen] = '\\';
111         full_path[namelen+1] = '*';
112         full_path[namelen+2] = 0;
113 BB remove above eight lines BB */
114
115 /* Inode operations in similar order to how they appear in the Linux file fs.h */
116
117 int
118 cifs_create(struct inode *inode, struct dentry *direntry, int mode,
119                 struct nameidata *nd)
120 {
121         int rc = -ENOENT;
122         int xid;
123         int oplock = 0;
124         int desiredAccess = GENERIC_READ | GENERIC_WRITE;
125         __u16 fileHandle;
126         struct cifs_sb_info *cifs_sb;
127         struct cifsTconInfo *pTcon;
128         char *full_path = NULL;
129         FILE_ALL_INFO * buf = NULL;
130         struct inode *newinode = NULL;
131         struct cifsFileInfo * pCifsFile = NULL;
132         struct cifsInodeInfo * pCifsInode;
133         int disposition = FILE_OVERWRITE_IF;
134         int write_only = FALSE;
135
136         xid = GetXid();
137
138         cifs_sb = CIFS_SB(inode->i_sb);
139         pTcon = cifs_sb->tcon;
140
141         down(&direntry->d_sb->s_vfs_rename_sem);
142         full_path = build_path_from_dentry(direntry);
143         up(&direntry->d_sb->s_vfs_rename_sem);
144         if(full_path == NULL) {
145                 FreeXid(xid);
146                 return -ENOMEM;
147         }
148
149         if(nd) {
150                 if ((nd->intent.open.flags & O_ACCMODE) == O_RDONLY)
151                         desiredAccess = GENERIC_READ;
152                 else if ((nd->intent.open.flags & O_ACCMODE) == O_WRONLY) {
153                         desiredAccess = GENERIC_WRITE;
154                         write_only = TRUE;
155                 } else if ((nd->intent.open.flags & O_ACCMODE) == O_RDWR) {
156                         /* GENERIC_ALL is too much permission to request */
157                         /* can cause unnecessary access denied on create */
158                         /* desiredAccess = GENERIC_ALL; */
159                         desiredAccess = GENERIC_READ | GENERIC_WRITE;
160                 }
161
162                 if((nd->intent.open.flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
163                         disposition = FILE_CREATE;
164                 else if((nd->intent.open.flags & (O_CREAT | O_TRUNC)) == (O_CREAT | O_TRUNC))
165                         disposition = FILE_OVERWRITE_IF;
166                 else if((nd->intent.open.flags & O_CREAT) == O_CREAT)
167                         disposition = FILE_OPEN_IF;
168                 else {
169                         cFYI(1,("Create flag not set in create function"));
170                 }
171         }
172
173         /* BB add processing to set equivalent of mode - e.g. via CreateX with ACLs */
174         if (oplockEnabled)
175                 oplock = REQ_OPLOCK;
176
177         buf = kmalloc(sizeof(FILE_ALL_INFO),GFP_KERNEL);
178         if(buf == NULL) {
179                 kfree(full_path);
180                 FreeXid(xid);
181                 return -ENOMEM;
182         }
183
184         rc = CIFSSMBOpen(xid, pTcon, full_path, disposition,
185                          desiredAccess, CREATE_NOT_DIR,
186                          &fileHandle, &oplock, buf, cifs_sb->local_nls,
187                          cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
188         if(rc == -EIO) {
189                 /* old server, retry the open legacy style */
190                 rc = SMBLegacyOpen(xid, pTcon, full_path, disposition,
191                         desiredAccess, CREATE_NOT_DIR,
192                         &fileHandle, &oplock, buf, cifs_sb->local_nls,
193                         cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
194         } 
195         if (rc) {
196                 cFYI(1, ("cifs_create returned 0x%x ", rc));
197         } else {
198                 /* If Open reported that we actually created a file
199                 then we now have to set the mode if possible */
200                 if ((cifs_sb->tcon->ses->capabilities & CAP_UNIX) &&
201                         (oplock & CIFS_CREATE_ACTION))
202                         if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
203                                 CIFSSMBUnixSetPerms(xid, pTcon, full_path, mode,
204                                         (__u64)current->euid,
205                                         (__u64)current->egid,
206                                         0 /* dev */,
207                                         cifs_sb->local_nls, 
208                                         cifs_sb->mnt_cifs_flags & 
209                                                 CIFS_MOUNT_MAP_SPECIAL_CHR);
210                         } else {
211                                 CIFSSMBUnixSetPerms(xid, pTcon, full_path, mode,
212                                         (__u64)-1,
213                                         (__u64)-1,
214                                         0 /* dev */,
215                                         cifs_sb->local_nls,
216                                         cifs_sb->mnt_cifs_flags & 
217                                                 CIFS_MOUNT_MAP_SPECIAL_CHR);
218                         }
219                 else {
220                         /* BB implement mode setting via Windows security descriptors */
221                         /* eg CIFSSMBWinSetPerms(xid,pTcon,full_path,mode,-1,-1,local_nls);*/
222                         /* could set r/o dos attribute if mode & 0222 == 0 */
223                 }
224
225         /* BB server might mask mode so we have to query for Unix case*/
226                 if (pTcon->ses->capabilities & CAP_UNIX)
227                         rc = cifs_get_inode_info_unix(&newinode, full_path,
228                                                  inode->i_sb,xid);
229                 else {
230                         rc = cifs_get_inode_info(&newinode, full_path,
231                                                  buf, inode->i_sb,xid);
232                         if(newinode)
233                                 newinode->i_mode = mode;
234                 }
235
236                 if (rc != 0) {
237                         cFYI(1,
238                              ("Create worked but get_inode_info failed rc = %d",
239                               rc));
240                 } else {
241                         if (pTcon->nocase)
242                                 direntry->d_op = &cifs_ci_dentry_ops;
243                         else
244                                 direntry->d_op = &cifs_dentry_ops;
245                         d_instantiate(direntry, newinode);
246                 }
247                 if((nd->flags & LOOKUP_OPEN) == FALSE) {
248                         /* mknod case - do not leave file open */
249                         CIFSSMBClose(xid, pTcon, fileHandle);
250                 } else if(newinode) {
251                         pCifsFile =
252                            kmalloc(sizeof (struct cifsFileInfo), GFP_KERNEL);
253                         
254                         if(pCifsFile == NULL)
255                                 goto cifs_create_out;
256                         memset((char *)pCifsFile, 0,
257                                sizeof (struct cifsFileInfo));
258                         pCifsFile->netfid = fileHandle;
259                         pCifsFile->pid = current->tgid;
260                         pCifsFile->pInode = newinode;
261                         pCifsFile->invalidHandle = FALSE;
262                         pCifsFile->closePend     = FALSE;
263                         init_MUTEX(&pCifsFile->fh_sem);
264                         /* set the following in open now 
265                                 pCifsFile->pfile = file; */
266                         write_lock(&GlobalSMBSeslock);
267                         list_add(&pCifsFile->tlist,&pTcon->openFileList);
268                         pCifsInode = CIFS_I(newinode);
269                         if(pCifsInode) {
270                                 /* if readable file instance put first in list*/
271                                 if (write_only == TRUE) {
272                                         list_add_tail(&pCifsFile->flist,
273                                                 &pCifsInode->openFileList);
274                                 } else {
275                                         list_add(&pCifsFile->flist,
276                                                 &pCifsInode->openFileList);
277                                 }
278                                 if((oplock & 0xF) == OPLOCK_EXCLUSIVE) {
279                                         pCifsInode->clientCanCacheAll = TRUE;
280                                         pCifsInode->clientCanCacheRead = TRUE;
281                                         cFYI(1,("Exclusive Oplock for inode %p",
282                                                 newinode));
283                                 } else if((oplock & 0xF) == OPLOCK_READ)
284                                         pCifsInode->clientCanCacheRead = TRUE;
285                         }
286                         write_unlock(&GlobalSMBSeslock);
287                 }
288         } 
289 cifs_create_out:
290         kfree(buf);
291         kfree(full_path);
292         FreeXid(xid);
293         return rc;
294 }
295
296 int cifs_mknod(struct inode *inode, struct dentry *direntry, int mode, dev_t device_number) 
297 {
298         int rc = -EPERM;
299         int xid;
300         struct cifs_sb_info *cifs_sb;
301         struct cifsTconInfo *pTcon;
302         char *full_path = NULL;
303         struct inode * newinode = NULL;
304
305         if (!old_valid_dev(device_number))
306                 return -EINVAL;
307
308         xid = GetXid();
309
310         cifs_sb = CIFS_SB(inode->i_sb);
311         pTcon = cifs_sb->tcon;
312
313         down(&direntry->d_sb->s_vfs_rename_sem);
314         full_path = build_path_from_dentry(direntry);
315         up(&direntry->d_sb->s_vfs_rename_sem);
316         if(full_path == NULL)
317                 rc = -ENOMEM;
318         else if (pTcon->ses->capabilities & CAP_UNIX) {
319                 if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
320                         rc = CIFSSMBUnixSetPerms(xid, pTcon, full_path,
321                                 mode,(__u64)current->euid,(__u64)current->egid,
322                                 device_number, cifs_sb->local_nls,
323                                 cifs_sb->mnt_cifs_flags & 
324                                         CIFS_MOUNT_MAP_SPECIAL_CHR);
325                 } else {
326                         rc = CIFSSMBUnixSetPerms(xid, pTcon,
327                                 full_path, mode, (__u64)-1, (__u64)-1,
328                                 device_number, cifs_sb->local_nls,
329                                 cifs_sb->mnt_cifs_flags & 
330                                         CIFS_MOUNT_MAP_SPECIAL_CHR);
331                 }
332
333                 if(!rc) {
334                         rc = cifs_get_inode_info_unix(&newinode, full_path,
335                                                 inode->i_sb,xid);
336                         if (pTcon->nocase)
337                                 direntry->d_op = &cifs_ci_dentry_ops;
338                         else
339                                 direntry->d_op = &cifs_dentry_ops;
340                         if(rc == 0)
341                                 d_instantiate(direntry, newinode);
342                 }
343         } else {
344                 if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) {
345                         int oplock = 0;
346                         u16 fileHandle;
347                         FILE_ALL_INFO * buf;
348
349                         cFYI(1,("sfu compat create special file"));
350
351                         buf = kmalloc(sizeof(FILE_ALL_INFO),GFP_KERNEL);
352                         if(buf == NULL) {
353                                 kfree(full_path);
354                                 FreeXid(xid);
355                                 return -ENOMEM;
356                         }
357
358                         rc = CIFSSMBOpen(xid, pTcon, full_path,
359                                          FILE_CREATE, /* fail if exists */
360                                          GENERIC_WRITE /* BB would 
361                                           WRITE_OWNER | WRITE_DAC be better? */,
362                                          /* Create a file and set the
363                                             file attribute to SYSTEM */
364                                          CREATE_NOT_DIR | CREATE_OPTION_SPECIAL,
365                                          &fileHandle, &oplock, buf,
366                                          cifs_sb->local_nls,
367                                          cifs_sb->mnt_cifs_flags & 
368                                             CIFS_MOUNT_MAP_SPECIAL_CHR);
369
370                         if(!rc) {
371                                 /* BB Do not bother to decode buf since no
372                                    local inode yet to put timestamps in */
373                                 CIFSSMBClose(xid, pTcon, fileHandle);
374                                 d_drop(direntry);
375                         }
376                         kfree(buf);
377                         /* add code here to set EAs */
378                 }
379         }
380
381         kfree(full_path);
382         FreeXid(xid);
383         return rc;
384 }
385
386
387 struct dentry *
388 cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry, struct nameidata *nd)
389 {
390         int xid;
391         int rc = 0; /* to get around spurious gcc warning, set to zero here */
392         struct cifs_sb_info *cifs_sb;
393         struct cifsTconInfo *pTcon;
394         struct inode *newInode = NULL;
395         char *full_path = NULL;
396
397         xid = GetXid();
398
399         cFYI(1,
400              (" parent inode = 0x%p name is: %s and dentry = 0x%p",
401               parent_dir_inode, direntry->d_name.name, direntry));
402
403         /* BB Add check of incoming data - e.g. frame not longer than maximum SMB - let server check the namelen BB */
404
405         /* check whether path exists */
406
407         cifs_sb = CIFS_SB(parent_dir_inode->i_sb);
408         pTcon = cifs_sb->tcon;
409
410         /* can not grab the rename sem here since it would
411         deadlock in the cases (beginning of sys_rename itself)
412         in which we already have the sb rename sem */
413         full_path = build_path_from_dentry(direntry);
414         if(full_path == NULL) {
415                 FreeXid(xid);
416                 return ERR_PTR(-ENOMEM);
417         }
418
419         if (direntry->d_inode != NULL) {
420                 cFYI(1, (" non-NULL inode in lookup"));
421         } else {
422                 cFYI(1, (" NULL inode in lookup"));
423         }
424         cFYI(1,
425              (" Full path: %s inode = 0x%p", full_path, direntry->d_inode));
426
427         if (pTcon->ses->capabilities & CAP_UNIX)
428                 rc = cifs_get_inode_info_unix(&newInode, full_path,
429                                               parent_dir_inode->i_sb,xid);
430         else
431                 rc = cifs_get_inode_info(&newInode, full_path, NULL,
432                                          parent_dir_inode->i_sb,xid);
433
434         if ((rc == 0) && (newInode != NULL)) {
435                 if (pTcon->nocase)
436                         direntry->d_op = &cifs_ci_dentry_ops;
437                 else
438                         direntry->d_op = &cifs_dentry_ops;
439                 d_add(direntry, newInode);
440
441                 /* since paths are not looked up by component - the parent directories are presumed to be good here */
442                 renew_parental_timestamps(direntry);
443
444         } else if (rc == -ENOENT) {
445                 rc = 0;
446                 d_add(direntry, NULL);
447         } else {
448                 cERROR(1,("Error 0x%x on cifs_get_inode_info in lookup of %s",
449                            rc,full_path));
450                 /* BB special case check for Access Denied - watch security 
451                 exposure of returning dir info implicitly via different rc 
452                 if file exists or not but no access BB */
453         }
454
455         kfree(full_path);
456         FreeXid(xid);
457         return ERR_PTR(rc);
458 }
459
460 static int
461 cifs_d_revalidate(struct dentry *direntry, struct nameidata *nd)
462 {
463         int isValid = 1;
464
465 /*      lock_kernel(); *//* surely we do not want to lock the kernel for a whole network round trip which could take seconds */
466
467         if (direntry->d_inode) {
468                 if (cifs_revalidate(direntry)) {
469                         /* unlock_kernel(); */
470                         return 0;
471                 }
472         } else {
473                 cFYI(1,
474                      ("In cifs_d_revalidate with no inode but name = %s and dentry 0x%p",
475                       direntry->d_name.name, direntry));
476         }
477
478 /*    unlock_kernel(); */
479
480         return isValid;
481 }
482
483 /* static int cifs_d_delete(struct dentry *direntry)
484 {
485         int rc = 0;
486
487         cFYI(1, ("In cifs d_delete, name = %s", direntry->d_name.name));
488
489         return rc;
490 }     */
491
492 struct dentry_operations cifs_dentry_ops = {
493         .d_revalidate = cifs_d_revalidate,
494 /* d_delete:       cifs_d_delete,       *//* not needed except for debugging */
495         /* no need for d_hash, d_compare, d_release, d_iput ... yet. BB confirm this BB */
496 };
497
498 static int cifs_ci_hash(struct dentry *dentry, struct qstr *q)
499 {
500         struct nls_table *codepage = CIFS_SB(dentry->d_inode->i_sb)->local_nls;
501         unsigned long hash;
502         int i;
503
504         hash = init_name_hash();
505         for (i = 0; i < q->len; i++)
506                 hash = partial_name_hash(nls_tolower(codepage, q->name[i]),
507                                          hash);
508         q->hash = end_name_hash(hash);
509
510         return 0;
511 }
512
513 static int cifs_ci_compare(struct dentry *dentry, struct qstr *a,
514                            struct qstr *b)
515 {
516         struct nls_table *codepage = CIFS_SB(dentry->d_inode->i_sb)->local_nls;
517
518         if ((a->len == b->len) &&
519             (nls_strnicmp(codepage, a->name, b->name, a->len) == 0)) {
520                 /*
521                  * To preserve case, don't let an existing negative dentry's
522                  * case take precedence.  If a is not a negative dentry, this
523                  * should have no side effects
524                  */
525                 memcpy((unsigned char *)a->name, b->name, a->len);
526                 return 0;
527         }
528         return 1;
529 }
530
531 struct dentry_operations cifs_ci_dentry_ops = {
532         .d_revalidate = cifs_d_revalidate,
533         .d_hash = cifs_ci_hash,
534         .d_compare = cifs_ci_compare,
535 };