Merge tag '5.6-smb3-fixes-and-dfs-and-readdir-improvements' of git://git.samba.org...
[linux-2.6-microblaze.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,2009
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 <linux/mount.h>
28 #include <linux/file.h>
29 #include "cifsfs.h"
30 #include "cifspdu.h"
31 #include "cifsglob.h"
32 #include "cifsproto.h"
33 #include "cifs_debug.h"
34 #include "cifs_fs_sb.h"
35 #include "cifs_unicode.h"
36
37 static void
38 renew_parental_timestamps(struct dentry *direntry)
39 {
40         /* BB check if there is a way to get the kernel to do this or if we
41            really need this */
42         do {
43                 cifs_set_time(direntry, jiffies);
44                 direntry = direntry->d_parent;
45         } while (!IS_ROOT(direntry));
46 }
47
48 char *
49 cifs_build_path_to_root(struct smb_vol *vol, struct cifs_sb_info *cifs_sb,
50                         struct cifs_tcon *tcon, int add_treename)
51 {
52         int pplen = vol->prepath ? strlen(vol->prepath) + 1 : 0;
53         int dfsplen;
54         char *full_path = NULL;
55
56         /* if no prefix path, simply set path to the root of share to "" */
57         if (pplen == 0) {
58                 full_path = kzalloc(1, GFP_KERNEL);
59                 return full_path;
60         }
61
62         if (add_treename)
63                 dfsplen = strnlen(tcon->treeName, MAX_TREE_SIZE + 1);
64         else
65                 dfsplen = 0;
66
67         full_path = kmalloc(dfsplen + pplen + 1, GFP_KERNEL);
68         if (full_path == NULL)
69                 return full_path;
70
71         if (dfsplen)
72                 memcpy(full_path, tcon->treeName, dfsplen);
73         full_path[dfsplen] = CIFS_DIR_SEP(cifs_sb);
74         memcpy(full_path + dfsplen + 1, vol->prepath, pplen);
75         convert_delimiter(full_path, CIFS_DIR_SEP(cifs_sb));
76         return full_path;
77 }
78
79 /* Note: caller must free return buffer */
80 char *
81 build_path_from_dentry(struct dentry *direntry)
82 {
83         struct cifs_sb_info *cifs_sb = CIFS_SB(direntry->d_sb);
84         struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
85         bool prefix = tcon->Flags & SMB_SHARE_IS_IN_DFS;
86
87         return build_path_from_dentry_optional_prefix(direntry,
88                                                       prefix);
89 }
90
91 char *
92 build_path_from_dentry_optional_prefix(struct dentry *direntry, bool prefix)
93 {
94         struct dentry *temp;
95         int namelen;
96         int dfsplen;
97         int pplen = 0;
98         char *full_path;
99         char dirsep;
100         struct cifs_sb_info *cifs_sb = CIFS_SB(direntry->d_sb);
101         struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
102         unsigned seq;
103
104         dirsep = CIFS_DIR_SEP(cifs_sb);
105         if (prefix)
106                 dfsplen = strnlen(tcon->treeName, MAX_TREE_SIZE + 1);
107         else
108                 dfsplen = 0;
109
110         if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH)
111                 pplen = cifs_sb->prepath ? strlen(cifs_sb->prepath) + 1 : 0;
112
113 cifs_bp_rename_retry:
114         namelen = dfsplen + pplen;
115         seq = read_seqbegin(&rename_lock);
116         rcu_read_lock();
117         for (temp = direntry; !IS_ROOT(temp);) {
118                 namelen += (1 + temp->d_name.len);
119                 temp = temp->d_parent;
120                 if (temp == NULL) {
121                         cifs_dbg(VFS, "corrupt dentry\n");
122                         rcu_read_unlock();
123                         return NULL;
124                 }
125         }
126         rcu_read_unlock();
127
128         full_path = kmalloc(namelen+1, GFP_ATOMIC);
129         if (full_path == NULL)
130                 return full_path;
131         full_path[namelen] = 0; /* trailing null */
132         rcu_read_lock();
133         for (temp = direntry; !IS_ROOT(temp);) {
134                 spin_lock(&temp->d_lock);
135                 namelen -= 1 + temp->d_name.len;
136                 if (namelen < 0) {
137                         spin_unlock(&temp->d_lock);
138                         break;
139                 } else {
140                         full_path[namelen] = dirsep;
141                         strncpy(full_path + namelen + 1, temp->d_name.name,
142                                 temp->d_name.len);
143                         cifs_dbg(FYI, "name: %s\n", full_path + namelen);
144                 }
145                 spin_unlock(&temp->d_lock);
146                 temp = temp->d_parent;
147                 if (temp == NULL) {
148                         cifs_dbg(VFS, "corrupt dentry\n");
149                         rcu_read_unlock();
150                         kfree(full_path);
151                         return NULL;
152                 }
153         }
154         rcu_read_unlock();
155         if (namelen != dfsplen + pplen || read_seqretry(&rename_lock, seq)) {
156                 cifs_dbg(FYI, "did not end path lookup where expected. namelen=%ddfsplen=%d\n",
157                          namelen, dfsplen);
158                 /* presumably this is only possible if racing with a rename
159                 of one of the parent directories  (we can not lock the dentries
160                 above us to prevent this, but retrying should be harmless) */
161                 kfree(full_path);
162                 goto cifs_bp_rename_retry;
163         }
164         /* DIR_SEP already set for byte  0 / vs \ but not for
165            subsequent slashes in prepath which currently must
166            be entered the right way - not sure if there is an alternative
167            since the '\' is a valid posix character so we can not switch
168            those safely to '/' if any are found in the middle of the prepath */
169         /* BB test paths to Windows with '/' in the midst of prepath */
170
171         if (pplen) {
172                 int i;
173
174                 cifs_dbg(FYI, "using cifs_sb prepath <%s>\n", cifs_sb->prepath);
175                 memcpy(full_path+dfsplen+1, cifs_sb->prepath, pplen-1);
176                 full_path[dfsplen] = dirsep;
177                 for (i = 0; i < pplen-1; i++)
178                         if (full_path[dfsplen+1+i] == '/')
179                                 full_path[dfsplen+1+i] = CIFS_DIR_SEP(cifs_sb);
180         }
181
182         if (dfsplen) {
183                 strncpy(full_path, tcon->treeName, dfsplen);
184                 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS) {
185                         int i;
186                         for (i = 0; i < dfsplen; i++) {
187                                 if (full_path[i] == '\\')
188                                         full_path[i] = '/';
189                         }
190                 }
191         }
192         return full_path;
193 }
194
195 /*
196  * Don't allow path components longer than the server max.
197  * Don't allow the separator character in a path component.
198  * The VFS will not allow "/", but "\" is allowed by posix.
199  */
200 static int
201 check_name(struct dentry *direntry, struct cifs_tcon *tcon)
202 {
203         struct cifs_sb_info *cifs_sb = CIFS_SB(direntry->d_sb);
204         int i;
205
206         if (unlikely(tcon->fsAttrInfo.MaxPathNameComponentLength &&
207                      direntry->d_name.len >
208                      le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength)))
209                 return -ENAMETOOLONG;
210
211         if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS)) {
212                 for (i = 0; i < direntry->d_name.len; i++) {
213                         if (direntry->d_name.name[i] == '\\') {
214                                 cifs_dbg(FYI, "Invalid file name\n");
215                                 return -EINVAL;
216                         }
217                 }
218         }
219         return 0;
220 }
221
222
223 /* Inode operations in similar order to how they appear in Linux file fs.h */
224
225 static int
226 cifs_do_create(struct inode *inode, struct dentry *direntry, unsigned int xid,
227                struct tcon_link *tlink, unsigned oflags, umode_t mode,
228                __u32 *oplock, struct cifs_fid *fid)
229 {
230         int rc = -ENOENT;
231         int create_options = CREATE_NOT_DIR;
232         int desired_access;
233         struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
234         struct cifs_tcon *tcon = tlink_tcon(tlink);
235         char *full_path = NULL;
236         FILE_ALL_INFO *buf = NULL;
237         struct inode *newinode = NULL;
238         int disposition;
239         struct TCP_Server_Info *server = tcon->ses->server;
240         struct cifs_open_parms oparms;
241
242         *oplock = 0;
243         if (tcon->ses->server->oplocks)
244                 *oplock = REQ_OPLOCK;
245
246         full_path = build_path_from_dentry(direntry);
247         if (!full_path)
248                 return -ENOMEM;
249
250         if (tcon->unix_ext && cap_unix(tcon->ses) && !tcon->broken_posix_open &&
251             (CIFS_UNIX_POSIX_PATH_OPS_CAP &
252                         le64_to_cpu(tcon->fsUnixInfo.Capability))) {
253                 rc = cifs_posix_open(full_path, &newinode, inode->i_sb, mode,
254                                      oflags, oplock, &fid->netfid, xid);
255                 switch (rc) {
256                 case 0:
257                         if (newinode == NULL) {
258                                 /* query inode info */
259                                 goto cifs_create_get_file_info;
260                         }
261
262                         if (S_ISDIR(newinode->i_mode)) {
263                                 CIFSSMBClose(xid, tcon, fid->netfid);
264                                 iput(newinode);
265                                 rc = -EISDIR;
266                                 goto out;
267                         }
268
269                         if (!S_ISREG(newinode->i_mode)) {
270                                 /*
271                                  * The server may allow us to open things like
272                                  * FIFOs, but the client isn't set up to deal
273                                  * with that. If it's not a regular file, just
274                                  * close it and proceed as if it were a normal
275                                  * lookup.
276                                  */
277                                 CIFSSMBClose(xid, tcon, fid->netfid);
278                                 goto cifs_create_get_file_info;
279                         }
280                         /* success, no need to query */
281                         goto cifs_create_set_dentry;
282
283                 case -ENOENT:
284                         goto cifs_create_get_file_info;
285
286                 case -EIO:
287                 case -EINVAL:
288                         /*
289                          * EIO could indicate that (posix open) operation is not
290                          * supported, despite what server claimed in capability
291                          * negotiation.
292                          *
293                          * POSIX open in samba versions 3.3.1 and earlier could
294                          * incorrectly fail with invalid parameter.
295                          */
296                         tcon->broken_posix_open = true;
297                         break;
298
299                 case -EREMOTE:
300                 case -EOPNOTSUPP:
301                         /*
302                          * EREMOTE indicates DFS junction, which is not handled
303                          * in posix open.  If either that or op not supported
304                          * returned, follow the normal lookup.
305                          */
306                         break;
307
308                 default:
309                         goto out;
310                 }
311                 /*
312                  * fallthrough to retry, using older open call, this is case
313                  * where server does not support this SMB level, and falsely
314                  * claims capability (also get here for DFS case which should be
315                  * rare for path not covered on files)
316                  */
317         }
318
319         desired_access = 0;
320         if (OPEN_FMODE(oflags) & FMODE_READ)
321                 desired_access |= GENERIC_READ; /* is this too little? */
322         if (OPEN_FMODE(oflags) & FMODE_WRITE)
323                 desired_access |= GENERIC_WRITE;
324
325         disposition = FILE_OVERWRITE_IF;
326         if ((oflags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
327                 disposition = FILE_CREATE;
328         else if ((oflags & (O_CREAT | O_TRUNC)) == (O_CREAT | O_TRUNC))
329                 disposition = FILE_OVERWRITE_IF;
330         else if ((oflags & O_CREAT) == O_CREAT)
331                 disposition = FILE_OPEN_IF;
332         else
333                 cifs_dbg(FYI, "Create flag not set in create function\n");
334
335         /*
336          * BB add processing to set equivalent of mode - e.g. via CreateX with
337          * ACLs
338          */
339
340         if (!server->ops->open) {
341                 rc = -ENOSYS;
342                 goto out;
343         }
344
345         buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
346         if (buf == NULL) {
347                 rc = -ENOMEM;
348                 goto out;
349         }
350
351         /*
352          * if we're not using unix extensions, see if we need to set
353          * ATTR_READONLY on the create call
354          */
355         if (!tcon->unix_ext && (mode & S_IWUGO) == 0)
356                 create_options |= CREATE_OPTION_READONLY;
357
358         if (backup_cred(cifs_sb))
359                 create_options |= CREATE_OPEN_BACKUP_INTENT;
360
361         oparms.tcon = tcon;
362         oparms.cifs_sb = cifs_sb;
363         oparms.desired_access = desired_access;
364         oparms.create_options = create_options;
365         oparms.disposition = disposition;
366         oparms.path = full_path;
367         oparms.fid = fid;
368         oparms.reconnect = false;
369         oparms.mode = mode;
370         rc = server->ops->open(xid, &oparms, oplock, buf);
371         if (rc) {
372                 cifs_dbg(FYI, "cifs_create returned 0x%x\n", rc);
373                 goto out;
374         }
375
376         /*
377          * If Open reported that we actually created a file then we now have to
378          * set the mode if possible.
379          */
380         if ((tcon->unix_ext) && (*oplock & CIFS_CREATE_ACTION)) {
381                 struct cifs_unix_set_info_args args = {
382                                 .mode   = mode,
383                                 .ctime  = NO_CHANGE_64,
384                                 .atime  = NO_CHANGE_64,
385                                 .mtime  = NO_CHANGE_64,
386                                 .device = 0,
387                 };
388
389                 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
390                         args.uid = current_fsuid();
391                         if (inode->i_mode & S_ISGID)
392                                 args.gid = inode->i_gid;
393                         else
394                                 args.gid = current_fsgid();
395                 } else {
396                         args.uid = INVALID_UID; /* no change */
397                         args.gid = INVALID_GID; /* no change */
398                 }
399                 CIFSSMBUnixSetFileInfo(xid, tcon, &args, fid->netfid,
400                                        current->tgid);
401         } else {
402                 /*
403                  * BB implement mode setting via Windows security
404                  * descriptors e.g.
405                  */
406                 /* CIFSSMBWinSetPerms(xid,tcon,path,mode,-1,-1,nls);*/
407
408                 /* Could set r/o dos attribute if mode & 0222 == 0 */
409         }
410
411 cifs_create_get_file_info:
412         /* server might mask mode so we have to query for it */
413         if (tcon->unix_ext)
414                 rc = cifs_get_inode_info_unix(&newinode, full_path, inode->i_sb,
415                                               xid);
416         else {
417                 rc = cifs_get_inode_info(&newinode, full_path, buf, inode->i_sb,
418                                          xid, fid);
419                 if (newinode) {
420                         if (server->ops->set_lease_key)
421                                 server->ops->set_lease_key(newinode, fid);
422                         if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)
423                                 newinode->i_mode = mode;
424                         if ((*oplock & CIFS_CREATE_ACTION) &&
425                             (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID)) {
426                                 newinode->i_uid = current_fsuid();
427                                 if (inode->i_mode & S_ISGID)
428                                         newinode->i_gid = inode->i_gid;
429                                 else
430                                         newinode->i_gid = current_fsgid();
431                         }
432                 }
433         }
434
435 cifs_create_set_dentry:
436         if (rc != 0) {
437                 cifs_dbg(FYI, "Create worked, get_inode_info failed rc = %d\n",
438                          rc);
439                 goto out_err;
440         }
441
442         if (S_ISDIR(newinode->i_mode)) {
443                 rc = -EISDIR;
444                 goto out_err;
445         }
446
447         d_drop(direntry);
448         d_add(direntry, newinode);
449
450 out:
451         kfree(buf);
452         kfree(full_path);
453         return rc;
454
455 out_err:
456         if (server->ops->close)
457                 server->ops->close(xid, tcon, fid);
458         if (newinode)
459                 iput(newinode);
460         goto out;
461 }
462
463 int
464 cifs_atomic_open(struct inode *inode, struct dentry *direntry,
465                  struct file *file, unsigned oflags, umode_t mode)
466 {
467         int rc;
468         unsigned int xid;
469         struct tcon_link *tlink;
470         struct cifs_tcon *tcon;
471         struct TCP_Server_Info *server;
472         struct cifs_fid fid;
473         struct cifs_pending_open open;
474         __u32 oplock;
475         struct cifsFileInfo *file_info;
476
477         /*
478          * Posix open is only called (at lookup time) for file create now. For
479          * opens (rather than creates), because we do not know if it is a file
480          * or directory yet, and current Samba no longer allows us to do posix
481          * open on dirs, we could end up wasting an open call on what turns out
482          * to be a dir. For file opens, we wait to call posix open till
483          * cifs_open.  It could be added to atomic_open in the future but the
484          * performance tradeoff of the extra network request when EISDIR or
485          * EACCES is returned would have to be weighed against the 50% reduction
486          * in network traffic in the other paths.
487          */
488         if (!(oflags & O_CREAT)) {
489                 struct dentry *res;
490
491                 /*
492                  * Check for hashed negative dentry. We have already revalidated
493                  * the dentry and it is fine. No need to perform another lookup.
494                  */
495                 if (!d_in_lookup(direntry))
496                         return -ENOENT;
497
498                 res = cifs_lookup(inode, direntry, 0);
499                 if (IS_ERR(res))
500                         return PTR_ERR(res);
501
502                 return finish_no_open(file, res);
503         }
504
505         xid = get_xid();
506
507         cifs_dbg(FYI, "parent inode = 0x%p name is: %pd and dentry = 0x%p\n",
508                  inode, direntry, direntry);
509
510         tlink = cifs_sb_tlink(CIFS_SB(inode->i_sb));
511         if (IS_ERR(tlink)) {
512                 rc = PTR_ERR(tlink);
513                 goto out_free_xid;
514         }
515
516         tcon = tlink_tcon(tlink);
517
518         rc = check_name(direntry, tcon);
519         if (rc)
520                 goto out;
521
522         server = tcon->ses->server;
523
524         if (server->ops->new_lease_key)
525                 server->ops->new_lease_key(&fid);
526
527         cifs_add_pending_open(&fid, tlink, &open);
528
529         rc = cifs_do_create(inode, direntry, xid, tlink, oflags, mode,
530                             &oplock, &fid);
531
532         if (rc) {
533                 cifs_del_pending_open(&open);
534                 goto out;
535         }
536
537         if ((oflags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
538                 file->f_mode |= FMODE_CREATED;
539
540         rc = finish_open(file, direntry, generic_file_open);
541         if (rc) {
542                 if (server->ops->close)
543                         server->ops->close(xid, tcon, &fid);
544                 cifs_del_pending_open(&open);
545                 goto out;
546         }
547
548         if (file->f_flags & O_DIRECT &&
549             CIFS_SB(inode->i_sb)->mnt_cifs_flags & CIFS_MOUNT_STRICT_IO) {
550                 if (CIFS_SB(inode->i_sb)->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
551                         file->f_op = &cifs_file_direct_nobrl_ops;
552                 else
553                         file->f_op = &cifs_file_direct_ops;
554                 }
555
556         file_info = cifs_new_fileinfo(&fid, file, tlink, oplock);
557         if (file_info == NULL) {
558                 if (server->ops->close)
559                         server->ops->close(xid, tcon, &fid);
560                 cifs_del_pending_open(&open);
561                 fput(file);
562                 rc = -ENOMEM;
563         }
564
565 out:
566         cifs_put_tlink(tlink);
567 out_free_xid:
568         free_xid(xid);
569         return rc;
570 }
571
572 int cifs_create(struct inode *inode, struct dentry *direntry, umode_t mode,
573                 bool excl)
574 {
575         int rc;
576         unsigned int xid = get_xid();
577         /*
578          * BB below access is probably too much for mknod to request
579          *    but we have to do query and setpathinfo so requesting
580          *    less could fail (unless we want to request getatr and setatr
581          *    permissions (only).  At least for POSIX we do not have to
582          *    request so much.
583          */
584         unsigned oflags = O_EXCL | O_CREAT | O_RDWR;
585         struct tcon_link *tlink;
586         struct cifs_tcon *tcon;
587         struct TCP_Server_Info *server;
588         struct cifs_fid fid;
589         __u32 oplock;
590
591         cifs_dbg(FYI, "cifs_create parent inode = 0x%p name is: %pd and dentry = 0x%p\n",
592                  inode, direntry, direntry);
593
594         tlink = cifs_sb_tlink(CIFS_SB(inode->i_sb));
595         rc = PTR_ERR(tlink);
596         if (IS_ERR(tlink))
597                 goto out_free_xid;
598
599         tcon = tlink_tcon(tlink);
600         server = tcon->ses->server;
601
602         if (server->ops->new_lease_key)
603                 server->ops->new_lease_key(&fid);
604
605         rc = cifs_do_create(inode, direntry, xid, tlink, oflags, mode,
606                             &oplock, &fid);
607         if (!rc && server->ops->close)
608                 server->ops->close(xid, tcon, &fid);
609
610         cifs_put_tlink(tlink);
611 out_free_xid:
612         free_xid(xid);
613         return rc;
614 }
615
616 int cifs_mknod(struct inode *inode, struct dentry *direntry, umode_t mode,
617                 dev_t device_number)
618 {
619         int rc = -EPERM;
620         unsigned int xid;
621         struct cifs_sb_info *cifs_sb;
622         struct tcon_link *tlink;
623         struct cifs_tcon *tcon;
624         char *full_path = NULL;
625
626         if (!old_valid_dev(device_number))
627                 return -EINVAL;
628
629         cifs_sb = CIFS_SB(inode->i_sb);
630         tlink = cifs_sb_tlink(cifs_sb);
631         if (IS_ERR(tlink))
632                 return PTR_ERR(tlink);
633
634         tcon = tlink_tcon(tlink);
635
636         xid = get_xid();
637
638         full_path = build_path_from_dentry(direntry);
639         if (full_path == NULL) {
640                 rc = -ENOMEM;
641                 goto mknod_out;
642         }
643
644         rc = tcon->ses->server->ops->make_node(xid, inode, direntry, tcon,
645                                                full_path, mode,
646                                                device_number);
647
648 mknod_out:
649         kfree(full_path);
650         free_xid(xid);
651         cifs_put_tlink(tlink);
652         return rc;
653 }
654
655 struct dentry *
656 cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry,
657             unsigned int flags)
658 {
659         unsigned int xid;
660         int rc = 0; /* to get around spurious gcc warning, set to zero here */
661         struct cifs_sb_info *cifs_sb;
662         struct tcon_link *tlink;
663         struct cifs_tcon *pTcon;
664         struct inode *newInode = NULL;
665         char *full_path = NULL;
666
667         xid = get_xid();
668
669         cifs_dbg(FYI, "parent inode = 0x%p name is: %pd and dentry = 0x%p\n",
670                  parent_dir_inode, direntry, direntry);
671
672         /* check whether path exists */
673
674         cifs_sb = CIFS_SB(parent_dir_inode->i_sb);
675         tlink = cifs_sb_tlink(cifs_sb);
676         if (IS_ERR(tlink)) {
677                 free_xid(xid);
678                 return ERR_CAST(tlink);
679         }
680         pTcon = tlink_tcon(tlink);
681
682         rc = check_name(direntry, pTcon);
683         if (unlikely(rc)) {
684                 cifs_put_tlink(tlink);
685                 free_xid(xid);
686                 return ERR_PTR(rc);
687         }
688
689         /* can not grab the rename sem here since it would
690         deadlock in the cases (beginning of sys_rename itself)
691         in which we already have the sb rename sem */
692         full_path = build_path_from_dentry(direntry);
693         if (full_path == NULL) {
694                 cifs_put_tlink(tlink);
695                 free_xid(xid);
696                 return ERR_PTR(-ENOMEM);
697         }
698
699         if (d_really_is_positive(direntry)) {
700                 cifs_dbg(FYI, "non-NULL inode in lookup\n");
701         } else {
702                 cifs_dbg(FYI, "NULL inode in lookup\n");
703         }
704         cifs_dbg(FYI, "Full path: %s inode = 0x%p\n",
705                  full_path, d_inode(direntry));
706
707         if (pTcon->unix_ext) {
708                 rc = cifs_get_inode_info_unix(&newInode, full_path,
709                                               parent_dir_inode->i_sb, xid);
710         } else {
711                 rc = cifs_get_inode_info(&newInode, full_path, NULL,
712                                 parent_dir_inode->i_sb, xid, NULL);
713         }
714
715         if (rc == 0) {
716                 /* since paths are not looked up by component - the parent
717                    directories are presumed to be good here */
718                 renew_parental_timestamps(direntry);
719         } else if (rc == -ENOENT) {
720                 cifs_set_time(direntry, jiffies);
721                 newInode = NULL;
722         } else {
723                 if (rc != -EACCES) {
724                         cifs_dbg(FYI, "Unexpected lookup error %d\n", rc);
725                         /* We special case check for Access Denied - since that
726                         is a common return code */
727                 }
728                 newInode = ERR_PTR(rc);
729         }
730         kfree(full_path);
731         cifs_put_tlink(tlink);
732         free_xid(xid);
733         return d_splice_alias(newInode, direntry);
734 }
735
736 static int
737 cifs_d_revalidate(struct dentry *direntry, unsigned int flags)
738 {
739         struct inode *inode;
740
741         if (flags & LOOKUP_RCU)
742                 return -ECHILD;
743
744         if (d_really_is_positive(direntry)) {
745                 inode = d_inode(direntry);
746                 if ((flags & LOOKUP_REVAL) && !CIFS_CACHE_READ(CIFS_I(inode)))
747                         CIFS_I(inode)->time = 0; /* force reval */
748
749                 if (cifs_revalidate_dentry(direntry))
750                         return 0;
751                 else {
752                         /*
753                          * If the inode wasn't known to be a dfs entry when
754                          * the dentry was instantiated, such as when created
755                          * via ->readdir(), it needs to be set now since the
756                          * attributes will have been updated by
757                          * cifs_revalidate_dentry().
758                          */
759                         if (IS_AUTOMOUNT(inode) &&
760                            !(direntry->d_flags & DCACHE_NEED_AUTOMOUNT)) {
761                                 spin_lock(&direntry->d_lock);
762                                 direntry->d_flags |= DCACHE_NEED_AUTOMOUNT;
763                                 spin_unlock(&direntry->d_lock);
764                         }
765
766                         return 1;
767                 }
768         }
769
770         /*
771          * This may be nfsd (or something), anyway, we can't see the
772          * intent of this. So, since this can be for creation, drop it.
773          */
774         if (!flags)
775                 return 0;
776
777         /*
778          * Drop the negative dentry, in order to make sure to use the
779          * case sensitive name which is specified by user if this is
780          * for creation.
781          */
782         if (flags & (LOOKUP_CREATE | LOOKUP_RENAME_TARGET))
783                 return 0;
784
785         if (time_after(jiffies, cifs_get_time(direntry) + HZ) || !lookupCacheEnabled)
786                 return 0;
787
788         return 1;
789 }
790
791 /* static int cifs_d_delete(struct dentry *direntry)
792 {
793         int rc = 0;
794
795         cifs_dbg(FYI, "In cifs d_delete, name = %pd\n", direntry);
796
797         return rc;
798 }     */
799
800 const struct dentry_operations cifs_dentry_ops = {
801         .d_revalidate = cifs_d_revalidate,
802         .d_automount = cifs_dfs_d_automount,
803 /* d_delete:       cifs_d_delete,      */ /* not needed except for debugging */
804 };
805
806 static int cifs_ci_hash(const struct dentry *dentry, struct qstr *q)
807 {
808         struct nls_table *codepage = CIFS_SB(dentry->d_sb)->local_nls;
809         unsigned long hash;
810         wchar_t c;
811         int i, charlen;
812
813         hash = init_name_hash(dentry);
814         for (i = 0; i < q->len; i += charlen) {
815                 charlen = codepage->char2uni(&q->name[i], q->len - i, &c);
816                 /* error out if we can't convert the character */
817                 if (unlikely(charlen < 0))
818                         return charlen;
819                 hash = partial_name_hash(cifs_toupper(c), hash);
820         }
821         q->hash = end_name_hash(hash);
822
823         return 0;
824 }
825
826 static int cifs_ci_compare(const struct dentry *dentry,
827                 unsigned int len, const char *str, const struct qstr *name)
828 {
829         struct nls_table *codepage = CIFS_SB(dentry->d_sb)->local_nls;
830         wchar_t c1, c2;
831         int i, l1, l2;
832
833         /*
834          * We make the assumption here that uppercase characters in the local
835          * codepage are always the same length as their lowercase counterparts.
836          *
837          * If that's ever not the case, then this will fail to match it.
838          */
839         if (name->len != len)
840                 return 1;
841
842         for (i = 0; i < len; i += l1) {
843                 /* Convert characters in both strings to UTF-16. */
844                 l1 = codepage->char2uni(&str[i], len - i, &c1);
845                 l2 = codepage->char2uni(&name->name[i], name->len - i, &c2);
846
847                 /*
848                  * If we can't convert either character, just declare it to
849                  * be 1 byte long and compare the original byte.
850                  */
851                 if (unlikely(l1 < 0 && l2 < 0)) {
852                         if (str[i] != name->name[i])
853                                 return 1;
854                         l1 = 1;
855                         continue;
856                 }
857
858                 /*
859                  * Here, we again ass|u|me that upper/lowercase versions of
860                  * a character are the same length in the local NLS.
861                  */
862                 if (l1 != l2)
863                         return 1;
864
865                 /* Now compare uppercase versions of these characters */
866                 if (cifs_toupper(c1) != cifs_toupper(c2))
867                         return 1;
868         }
869
870         return 0;
871 }
872
873 const struct dentry_operations cifs_ci_dentry_ops = {
874         .d_revalidate = cifs_d_revalidate,
875         .d_hash = cifs_ci_hash,
876         .d_compare = cifs_ci_compare,
877         .d_automount = cifs_dfs_d_automount,
878 };