Merge with /pub/scm/linux/kernel/git/torvalds/linux-2.6.git
[sfrench/cifs-2.6.git] / 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,2005
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;
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         dirsep = CIFS_DIR_SEP(CIFS_SB(direntry->d_sb));
59 cifs_bp_rename_retry:
60         for (temp = direntry; !IS_ROOT(temp);) {
61                 namelen += (1 + temp->d_name.len);
62                 temp = temp->d_parent;
63                 if(temp == NULL) {
64                         cERROR(1,("corrupt dentry"));
65                         return NULL;
66                 }
67         }
68
69         full_path = kmalloc(namelen+1, GFP_KERNEL);
70         if(full_path == NULL)
71                 return full_path;
72         full_path[namelen] = 0; /* trailing null */
73
74         for (temp = direntry; !IS_ROOT(temp);) {
75                 namelen -= 1 + temp->d_name.len;
76                 if (namelen < 0) {
77                         break;
78                 } else {
79                         full_path[namelen] = dirsep;
80                         strncpy(full_path + namelen + 1, temp->d_name.name,
81                                 temp->d_name.len);
82                         cFYI(0, (" name: %s ", full_path + namelen));
83                 }
84                 temp = temp->d_parent;
85                 if(temp == NULL) {
86                         cERROR(1,("corrupt dentry"));
87                         kfree(full_path);
88                         return NULL;
89                 }
90         }
91         if (namelen != 0) {
92                 cERROR(1,
93                        ("We did not end path lookup where we expected namelen is %d",
94                         namelen));
95                 /* presumably this is only possible if we were racing with a rename 
96                 of one of the parent directories  (we can not lock the dentries
97                 above us to prevent this, but retrying should be harmless) */
98                 kfree(full_path);
99                 namelen = 0;
100                 goto cifs_bp_rename_retry;
101         }
102
103         return full_path;
104 }
105
106 /* char * build_wildcard_path_from_dentry(struct dentry *direntry)
107 {
108         if(full_path == NULL)
109                 return full_path;
110
111         full_path[namelen] = '\\';
112         full_path[namelen+1] = '*';
113         full_path[namelen+2] = 0;
114 BB remove above eight lines BB */
115
116 /* Inode operations in similar order to how they appear in the Linux file fs.h */
117
118 int
119 cifs_create(struct inode *inode, struct dentry *direntry, int mode,
120                 struct nameidata *nd)
121 {
122         int rc = -ENOENT;
123         int xid;
124         int oplock = 0;
125         int desiredAccess = GENERIC_READ | GENERIC_WRITE;
126         __u16 fileHandle;
127         struct cifs_sb_info *cifs_sb;
128         struct cifsTconInfo *pTcon;
129         char *full_path = NULL;
130         FILE_ALL_INFO * buf = NULL;
131         struct inode *newinode = NULL;
132         struct cifsFileInfo * pCifsFile = NULL;
133         struct cifsInodeInfo * pCifsInode;
134         int disposition = FILE_OVERWRITE_IF;
135         int write_only = FALSE;
136
137         xid = GetXid();
138
139         cifs_sb = CIFS_SB(inode->i_sb);
140         pTcon = cifs_sb->tcon;
141
142         mutex_lock(&direntry->d_sb->s_vfs_rename_mutex);
143         full_path = build_path_from_dentry(direntry);
144         mutex_unlock(&direntry->d_sb->s_vfs_rename_mutex);
145         if(full_path == NULL) {
146                 FreeXid(xid);
147                 return -ENOMEM;
148         }
149
150         if(nd && (nd->flags & LOOKUP_OPEN)) {
151                 int oflags = nd->intent.open.flags;
152
153                 desiredAccess = 0;
154                 if (oflags & FMODE_READ)
155                         desiredAccess |= GENERIC_READ;
156                 if (oflags & FMODE_WRITE) {
157                         desiredAccess |= GENERIC_WRITE;
158                         if (!(oflags & FMODE_READ))
159                                 write_only = TRUE;
160                 }
161
162                 if((oflags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
163                         disposition = FILE_CREATE;
164                 else if((oflags & (O_CREAT | O_TRUNC)) == (O_CREAT | O_TRUNC))
165                         disposition = FILE_OVERWRITE_IF;
166                 else if((oflags & 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->fsuid,
205                                         (__u64)current->fsgid,
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                                 if((oplock & CIFS_CREATE_ACTION) &&
235                                   (cifs_sb->mnt_cifs_flags & 
236                                      CIFS_MOUNT_SET_UID)) {
237                                         newinode->i_uid = current->fsuid;
238                                         newinode->i_gid = current->fsgid;
239                                 }
240                         }
241                 }
242
243                 if (rc != 0) {
244                         cFYI(1,
245                              ("Create worked but get_inode_info failed rc = %d",
246                               rc));
247                 } else {
248                         if (pTcon->nocase)
249                                 direntry->d_op = &cifs_ci_dentry_ops;
250                         else
251                                 direntry->d_op = &cifs_dentry_ops;
252                         d_instantiate(direntry, newinode);
253                 }
254                 if((nd->flags & LOOKUP_OPEN) == FALSE) {
255                         /* mknod case - do not leave file open */
256                         CIFSSMBClose(xid, pTcon, fileHandle);
257                 } else if(newinode) {
258                         pCifsFile =
259                            kzalloc(sizeof (struct cifsFileInfo), GFP_KERNEL);
260                         
261                         if(pCifsFile == NULL)
262                                 goto cifs_create_out;
263                         pCifsFile->netfid = fileHandle;
264                         pCifsFile->pid = current->tgid;
265                         pCifsFile->pInode = newinode;
266                         pCifsFile->invalidHandle = FALSE;
267                         pCifsFile->closePend     = FALSE;
268                         init_MUTEX(&pCifsFile->fh_sem);
269                         /* set the following in open now 
270                                 pCifsFile->pfile = file; */
271                         write_lock(&GlobalSMBSeslock);
272                         list_add(&pCifsFile->tlist,&pTcon->openFileList);
273                         pCifsInode = CIFS_I(newinode);
274                         if(pCifsInode) {
275                                 /* if readable file instance put first in list*/
276                                 if (write_only == TRUE) {
277                                         list_add_tail(&pCifsFile->flist,
278                                                 &pCifsInode->openFileList);
279                                 } else {
280                                         list_add(&pCifsFile->flist,
281                                                 &pCifsInode->openFileList);
282                                 }
283                                 if((oplock & 0xF) == OPLOCK_EXCLUSIVE) {
284                                         pCifsInode->clientCanCacheAll = TRUE;
285                                         pCifsInode->clientCanCacheRead = TRUE;
286                                         cFYI(1,("Exclusive Oplock for inode %p",
287                                                 newinode));
288                                 } else if((oplock & 0xF) == OPLOCK_READ)
289                                         pCifsInode->clientCanCacheRead = TRUE;
290                         }
291                         write_unlock(&GlobalSMBSeslock);
292                 }
293         } 
294 cifs_create_out:
295         kfree(buf);
296         kfree(full_path);
297         FreeXid(xid);
298         return rc;
299 }
300
301 int cifs_mknod(struct inode *inode, struct dentry *direntry, int mode, 
302                 dev_t device_number) 
303 {
304         int rc = -EPERM;
305         int xid;
306         struct cifs_sb_info *cifs_sb;
307         struct cifsTconInfo *pTcon;
308         char *full_path = NULL;
309         struct inode * newinode = NULL;
310
311         if (!old_valid_dev(device_number))
312                 return -EINVAL;
313
314         xid = GetXid();
315
316         cifs_sb = CIFS_SB(inode->i_sb);
317         pTcon = cifs_sb->tcon;
318
319         mutex_lock(&direntry->d_sb->s_vfs_rename_mutex);
320         full_path = build_path_from_dentry(direntry);
321         mutex_unlock(&direntry->d_sb->s_vfs_rename_mutex);
322         if(full_path == NULL)
323                 rc = -ENOMEM;
324         else if (pTcon->ses->capabilities & CAP_UNIX) {
325                 if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
326                         rc = CIFSSMBUnixSetPerms(xid, pTcon, full_path,
327                                 mode,(__u64)current->fsuid,(__u64)current->fsgid,
328                                 device_number, cifs_sb->local_nls,
329                                 cifs_sb->mnt_cifs_flags & 
330                                         CIFS_MOUNT_MAP_SPECIAL_CHR);
331                 } else {
332                         rc = CIFSSMBUnixSetPerms(xid, pTcon,
333                                 full_path, mode, (__u64)-1, (__u64)-1,
334                                 device_number, cifs_sb->local_nls,
335                                 cifs_sb->mnt_cifs_flags & 
336                                         CIFS_MOUNT_MAP_SPECIAL_CHR);
337                 }
338
339                 if(!rc) {
340                         rc = cifs_get_inode_info_unix(&newinode, full_path,
341                                                 inode->i_sb,xid);
342                         if (pTcon->nocase)
343                                 direntry->d_op = &cifs_ci_dentry_ops;
344                         else
345                                 direntry->d_op = &cifs_dentry_ops;
346                         if(rc == 0)
347                                 d_instantiate(direntry, newinode);
348                 }
349         } else {
350                 if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) {
351                         int oplock = 0;
352                         u16 fileHandle;
353                         FILE_ALL_INFO * buf;
354
355                         cFYI(1,("sfu compat create special file"));
356
357                         buf = kmalloc(sizeof(FILE_ALL_INFO),GFP_KERNEL);
358                         if(buf == NULL) {
359                                 kfree(full_path);
360                                 FreeXid(xid);
361                                 return -ENOMEM;
362                         }
363
364                         rc = CIFSSMBOpen(xid, pTcon, full_path,
365                                          FILE_CREATE, /* fail if exists */
366                                          GENERIC_WRITE /* BB would 
367                                           WRITE_OWNER | WRITE_DAC be better? */,
368                                          /* Create a file and set the
369                                             file attribute to SYSTEM */
370                                          CREATE_NOT_DIR | CREATE_OPTION_SPECIAL,
371                                          &fileHandle, &oplock, buf,
372                                          cifs_sb->local_nls,
373                                          cifs_sb->mnt_cifs_flags & 
374                                             CIFS_MOUNT_MAP_SPECIAL_CHR);
375
376                         if(!rc) {
377                                 /* BB Do not bother to decode buf since no
378                                    local inode yet to put timestamps in,
379                                    but we can reuse it safely */
380                                 int bytes_written;
381                                 struct win_dev *pdev;
382                                 pdev = (struct win_dev *)buf;
383                                 if(S_ISCHR(mode)) {
384                                         memcpy(pdev->type, "IntxCHR", 8);
385                                         pdev->major =
386                                               cpu_to_le64(MAJOR(device_number));
387                                         pdev->minor = 
388                                               cpu_to_le64(MINOR(device_number));
389                                         rc = CIFSSMBWrite(xid, pTcon,
390                                                 fileHandle,
391                                                 sizeof(struct win_dev),
392                                                 0, &bytes_written, (char *)pdev,
393                                                 NULL, 0);
394                                 } else if(S_ISBLK(mode)) {
395                                         memcpy(pdev->type, "IntxBLK", 8);
396                                         pdev->major =
397                                               cpu_to_le64(MAJOR(device_number));
398                                         pdev->minor =
399                                               cpu_to_le64(MINOR(device_number));
400                                         rc = CIFSSMBWrite(xid, pTcon,
401                                                 fileHandle,
402                                                 sizeof(struct win_dev),
403                                                 0, &bytes_written, (char *)pdev,
404                                                 NULL, 0);
405                                 } /* else if(S_ISFIFO */
406                                 CIFSSMBClose(xid, pTcon, fileHandle);
407                                 d_drop(direntry);
408                         }
409                         kfree(buf);
410                         /* add code here to set EAs */
411                 }
412         }
413
414         kfree(full_path);
415         FreeXid(xid);
416         return rc;
417 }
418
419
420 struct dentry *
421 cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry, struct nameidata *nd)
422 {
423         int xid;
424         int rc = 0; /* to get around spurious gcc warning, set to zero here */
425         struct cifs_sb_info *cifs_sb;
426         struct cifsTconInfo *pTcon;
427         struct inode *newInode = NULL;
428         char *full_path = NULL;
429
430         xid = GetXid();
431
432         cFYI(1,
433              (" parent inode = 0x%p name is: %s and dentry = 0x%p",
434               parent_dir_inode, direntry->d_name.name, direntry));
435
436         /* BB Add check of incoming data - e.g. frame not longer than maximum SMB - let server check the namelen BB */
437
438         /* check whether path exists */
439
440         cifs_sb = CIFS_SB(parent_dir_inode->i_sb);
441         pTcon = cifs_sb->tcon;
442
443         /* can not grab the rename sem here since it would
444         deadlock in the cases (beginning of sys_rename itself)
445         in which we already have the sb rename sem */
446         full_path = build_path_from_dentry(direntry);
447         if(full_path == NULL) {
448                 FreeXid(xid);
449                 return ERR_PTR(-ENOMEM);
450         }
451
452         if (direntry->d_inode != NULL) {
453                 cFYI(1, (" non-NULL inode in lookup"));
454         } else {
455                 cFYI(1, (" NULL inode in lookup"));
456         }
457         cFYI(1,
458              (" Full path: %s inode = 0x%p", full_path, direntry->d_inode));
459
460         if (pTcon->ses->capabilities & CAP_UNIX)
461                 rc = cifs_get_inode_info_unix(&newInode, full_path,
462                                               parent_dir_inode->i_sb,xid);
463         else
464                 rc = cifs_get_inode_info(&newInode, full_path, NULL,
465                                          parent_dir_inode->i_sb,xid);
466
467         if ((rc == 0) && (newInode != NULL)) {
468                 if (pTcon->nocase)
469                         direntry->d_op = &cifs_ci_dentry_ops;
470                 else
471                         direntry->d_op = &cifs_dentry_ops;
472                 d_add(direntry, newInode);
473
474                 /* since paths are not looked up by component - the parent 
475                    directories are presumed to be good here */
476                 renew_parental_timestamps(direntry);
477
478         } else if (rc == -ENOENT) {
479                 rc = 0;
480                 direntry->d_time = jiffies;
481                 if (pTcon->nocase)
482                         direntry->d_op = &cifs_ci_dentry_ops;
483                 else
484                         direntry->d_op = &cifs_dentry_ops;
485                 d_add(direntry, NULL);
486         /*      if it was once a directory (but how can we tell?) we could do  
487                         shrink_dcache_parent(direntry); */
488         } else {
489                 cERROR(1,("Error 0x%x on cifs_get_inode_info in lookup of %s",
490                            rc,full_path));
491                 /* BB special case check for Access Denied - watch security 
492                 exposure of returning dir info implicitly via different rc 
493                 if file exists or not but no access BB */
494         }
495
496         kfree(full_path);
497         FreeXid(xid);
498         return ERR_PTR(rc);
499 }
500
501 static int
502 cifs_d_revalidate(struct dentry *direntry, struct nameidata *nd)
503 {
504         int isValid = 1;
505
506         if (direntry->d_inode) {
507                 if (cifs_revalidate(direntry)) {
508                         return 0;
509                 }
510         } else {
511                 cFYI(1, ("neg dentry 0x%p name = %s",
512                          direntry, direntry->d_name.name));
513                 if(time_after(jiffies, direntry->d_time + HZ) || 
514                         !lookupCacheEnabled) {
515                         d_drop(direntry);
516                         isValid = 0;
517                 } 
518         }
519
520         return isValid;
521 }
522
523 /* static int cifs_d_delete(struct dentry *direntry)
524 {
525         int rc = 0;
526
527         cFYI(1, ("In cifs d_delete, name = %s", direntry->d_name.name));
528
529         return rc;
530 }     */
531
532 struct dentry_operations cifs_dentry_ops = {
533         .d_revalidate = cifs_d_revalidate,
534 /* d_delete:       cifs_d_delete,       *//* not needed except for debugging */
535         /* no need for d_hash, d_compare, d_release, d_iput ... yet. BB confirm this BB */
536 };
537
538 static int cifs_ci_hash(struct dentry *dentry, struct qstr *q)
539 {
540         struct nls_table *codepage = CIFS_SB(dentry->d_inode->i_sb)->local_nls;
541         unsigned long hash;
542         int i;
543
544         hash = init_name_hash();
545         for (i = 0; i < q->len; i++)
546                 hash = partial_name_hash(nls_tolower(codepage, q->name[i]),
547                                          hash);
548         q->hash = end_name_hash(hash);
549
550         return 0;
551 }
552
553 static int cifs_ci_compare(struct dentry *dentry, struct qstr *a,
554                            struct qstr *b)
555 {
556         struct nls_table *codepage = CIFS_SB(dentry->d_inode->i_sb)->local_nls;
557
558         if ((a->len == b->len) &&
559             (nls_strnicmp(codepage, a->name, b->name, a->len) == 0)) {
560                 /*
561                  * To preserve case, don't let an existing negative dentry's
562                  * case take precedence.  If a is not a negative dentry, this
563                  * should have no side effects
564                  */
565                 memcpy((unsigned char *)a->name, b->name, a->len);
566                 return 0;
567         }
568         return 1;
569 }
570
571 struct dentry_operations cifs_ci_dentry_ops = {
572         .d_revalidate = cifs_d_revalidate,
573         .d_hash = cifs_ci_hash,
574         .d_compare = cifs_ci_compare,
575 };