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