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