Merge tag 'v3.10.103' 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_ISDIR(newinode->i_mode)) {
231 CIFSSMBClose(xid, tcon, fid->netfid);
232 iput(newinode);
233 rc = -EISDIR;
234 goto out;
235 }
236
237 if (!S_ISREG(newinode->i_mode)) {
238 /*
239 * The server may allow us to open things like
240 * FIFOs, but the client isn't set up to deal
241 * with that. If it's not a regular file, just
242 * close it and proceed as if it were a normal
243 * lookup.
244 */
245 CIFSSMBClose(xid, tcon, fid->netfid);
246 goto cifs_create_get_file_info;
247 }
248 /* success, no need to query */
249 goto cifs_create_set_dentry;
250
251 case -ENOENT:
252 goto cifs_create_get_file_info;
253
254 case -EIO:
255 case -EINVAL:
256 /*
257 * EIO could indicate that (posix open) operation is not
258 * supported, despite what server claimed in capability
259 * negotiation.
260 *
261 * POSIX open in samba versions 3.3.1 and earlier could
262 * incorrectly fail with invalid parameter.
263 */
264 tcon->broken_posix_open = true;
265 break;
266
267 case -EREMOTE:
268 case -EOPNOTSUPP:
269 /*
270 * EREMOTE indicates DFS junction, which is not handled
271 * in posix open. If either that or op not supported
272 * returned, follow the normal lookup.
273 */
274 break;
275
276 default:
277 goto out;
278 }
279 /*
280 * fallthrough to retry, using older open call, this is case
281 * where server does not support this SMB level, and falsely
282 * claims capability (also get here for DFS case which should be
283 * rare for path not covered on files)
284 */
285 }
286
287 desired_access = 0;
288 if (OPEN_FMODE(oflags) & FMODE_READ)
289 desired_access |= GENERIC_READ; /* is this too little? */
290 if (OPEN_FMODE(oflags) & FMODE_WRITE)
291 desired_access |= GENERIC_WRITE;
292
293 disposition = FILE_OVERWRITE_IF;
294 if ((oflags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
295 disposition = FILE_CREATE;
296 else if ((oflags & (O_CREAT | O_TRUNC)) == (O_CREAT | O_TRUNC))
297 disposition = FILE_OVERWRITE_IF;
298 else if ((oflags & O_CREAT) == O_CREAT)
299 disposition = FILE_OPEN_IF;
300 else
301 cifs_dbg(FYI, "Create flag not set in create function\n");
302
303 /*
304 * BB add processing to set equivalent of mode - e.g. via CreateX with
305 * ACLs
306 */
307
308 if (!server->ops->open) {
309 rc = -ENOSYS;
310 goto out;
311 }
312
313 buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
314 if (buf == NULL) {
315 rc = -ENOMEM;
316 goto out;
317 }
318
319 /*
320 * if we're not using unix extensions, see if we need to set
321 * ATTR_READONLY on the create call
322 */
323 if (!tcon->unix_ext && (mode & S_IWUGO) == 0)
324 create_options |= CREATE_OPTION_READONLY;
325
326 if (backup_cred(cifs_sb))
327 create_options |= CREATE_OPEN_BACKUP_INTENT;
328
329 rc = server->ops->open(xid, tcon, full_path, disposition,
330 desired_access, create_options, fid, oplock,
331 buf, cifs_sb);
332 if (rc) {
333 cifs_dbg(FYI, "cifs_create returned 0x%x\n", rc);
334 goto out;
335 }
336
337 /*
338 * If Open reported that we actually created a file then we now have to
339 * set the mode if possible.
340 */
341 if ((tcon->unix_ext) && (*oplock & CIFS_CREATE_ACTION)) {
342 struct cifs_unix_set_info_args args = {
343 .mode = mode,
344 .ctime = NO_CHANGE_64,
345 .atime = NO_CHANGE_64,
346 .mtime = NO_CHANGE_64,
347 .device = 0,
348 };
349
350 *created |= FILE_CREATED;
351 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
352 args.uid = current_fsuid();
353 if (inode->i_mode & S_ISGID)
354 args.gid = inode->i_gid;
355 else
356 args.gid = current_fsgid();
357 } else {
358 args.uid = INVALID_UID; /* no change */
359 args.gid = INVALID_GID; /* no change */
360 }
361 CIFSSMBUnixSetFileInfo(xid, tcon, &args, fid->netfid,
362 current->tgid);
363 } else {
364 /*
365 * BB implement mode setting via Windows security
366 * descriptors e.g.
367 */
368 /* CIFSSMBWinSetPerms(xid,tcon,path,mode,-1,-1,nls);*/
369
370 /* Could set r/o dos attribute if mode & 0222 == 0 */
371 }
372
373 cifs_create_get_file_info:
374 /* server might mask mode so we have to query for it */
375 if (tcon->unix_ext)
376 rc = cifs_get_inode_info_unix(&newinode, full_path, inode->i_sb,
377 xid);
378 else {
379 rc = cifs_get_inode_info(&newinode, full_path, buf, inode->i_sb,
380 xid, &fid->netfid);
381 if (newinode) {
382 if (server->ops->set_lease_key)
383 server->ops->set_lease_key(newinode, fid);
384 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)
385 newinode->i_mode = mode;
386 if ((*oplock & CIFS_CREATE_ACTION) &&
387 (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID)) {
388 newinode->i_uid = current_fsuid();
389 if (inode->i_mode & S_ISGID)
390 newinode->i_gid = inode->i_gid;
391 else
392 newinode->i_gid = current_fsgid();
393 }
394 }
395 }
396
397 cifs_create_set_dentry:
398 if (rc != 0) {
399 cifs_dbg(FYI, "Create worked, get_inode_info failed rc = %d\n",
400 rc);
401 goto out_err;
402 }
403
404 if (S_ISDIR(newinode->i_mode)) {
405 rc = -EISDIR;
406 goto out_err;
407 }
408
409 d_drop(direntry);
410 d_add(direntry, newinode);
411
412 out:
413 kfree(buf);
414 kfree(full_path);
415 return rc;
416
417 out_err:
418 if (server->ops->close)
419 server->ops->close(xid, tcon, fid);
420 if (newinode)
421 iput(newinode);
422 goto out;
423 }
424
425 int
426 cifs_atomic_open(struct inode *inode, struct dentry *direntry,
427 struct file *file, unsigned oflags, umode_t mode,
428 int *opened)
429 {
430 int rc;
431 unsigned int xid;
432 struct tcon_link *tlink;
433 struct cifs_tcon *tcon;
434 struct TCP_Server_Info *server;
435 struct cifs_fid fid;
436 struct cifs_pending_open open;
437 __u32 oplock;
438 struct cifsFileInfo *file_info;
439
440 /*
441 * Posix open is only called (at lookup time) for file create now. For
442 * opens (rather than creates), because we do not know if it is a file
443 * or directory yet, and current Samba no longer allows us to do posix
444 * open on dirs, we could end up wasting an open call on what turns out
445 * to be a dir. For file opens, we wait to call posix open till
446 * cifs_open. It could be added to atomic_open in the future but the
447 * performance tradeoff of the extra network request when EISDIR or
448 * EACCES is returned would have to be weighed against the 50% reduction
449 * in network traffic in the other paths.
450 */
451 if (!(oflags & O_CREAT)) {
452 struct dentry *res;
453
454 /*
455 * Check for hashed negative dentry. We have already revalidated
456 * the dentry and it is fine. No need to perform another lookup.
457 */
458 if (!d_unhashed(direntry))
459 return -ENOENT;
460
461 res = cifs_lookup(inode, direntry, 0);
462 if (IS_ERR(res))
463 return PTR_ERR(res);
464
465 return finish_no_open(file, res);
466 }
467
468 rc = check_name(direntry);
469 if (rc)
470 return rc;
471
472 xid = get_xid();
473
474 cifs_dbg(FYI, "parent inode = 0x%p name is: %s and dentry = 0x%p\n",
475 inode, direntry->d_name.name, direntry);
476
477 tlink = cifs_sb_tlink(CIFS_SB(inode->i_sb));
478 if (IS_ERR(tlink)) {
479 rc = PTR_ERR(tlink);
480 goto out_free_xid;
481 }
482
483 tcon = tlink_tcon(tlink);
484 server = tcon->ses->server;
485
486 if (server->ops->new_lease_key)
487 server->ops->new_lease_key(&fid);
488
489 cifs_add_pending_open(&fid, tlink, &open);
490
491 rc = cifs_do_create(inode, direntry, xid, tlink, oflags, mode,
492 &oplock, &fid, opened);
493
494 if (rc) {
495 cifs_del_pending_open(&open);
496 goto out;
497 }
498
499 rc = finish_open(file, direntry, generic_file_open, opened);
500 if (rc) {
501 if (server->ops->close)
502 server->ops->close(xid, tcon, &fid);
503 cifs_del_pending_open(&open);
504 goto out;
505 }
506
507 file_info = cifs_new_fileinfo(&fid, file, tlink, oplock);
508 if (file_info == NULL) {
509 if (server->ops->close)
510 server->ops->close(xid, tcon, &fid);
511 cifs_del_pending_open(&open);
512 fput(file);
513 rc = -ENOMEM;
514 }
515
516 out:
517 cifs_put_tlink(tlink);
518 out_free_xid:
519 free_xid(xid);
520 return rc;
521 }
522
523 int cifs_create(struct inode *inode, struct dentry *direntry, umode_t mode,
524 bool excl)
525 {
526 int rc;
527 unsigned int xid = get_xid();
528 /*
529 * BB below access is probably too much for mknod to request
530 * but we have to do query and setpathinfo so requesting
531 * less could fail (unless we want to request getatr and setatr
532 * permissions (only). At least for POSIX we do not have to
533 * request so much.
534 */
535 unsigned oflags = O_EXCL | O_CREAT | O_RDWR;
536 struct tcon_link *tlink;
537 struct cifs_tcon *tcon;
538 struct TCP_Server_Info *server;
539 struct cifs_fid fid;
540 __u32 oplock;
541 int created = FILE_CREATED;
542
543 cifs_dbg(FYI, "cifs_create parent inode = 0x%p name is: %s and dentry = 0x%p\n",
544 inode, direntry->d_name.name, direntry);
545
546 tlink = cifs_sb_tlink(CIFS_SB(inode->i_sb));
547 rc = PTR_ERR(tlink);
548 if (IS_ERR(tlink))
549 goto out_free_xid;
550
551 tcon = tlink_tcon(tlink);
552 server = tcon->ses->server;
553
554 if (server->ops->new_lease_key)
555 server->ops->new_lease_key(&fid);
556
557 rc = cifs_do_create(inode, direntry, xid, tlink, oflags, mode,
558 &oplock, &fid, &created);
559 if (!rc && server->ops->close)
560 server->ops->close(xid, tcon, &fid);
561
562 cifs_put_tlink(tlink);
563 out_free_xid:
564 free_xid(xid);
565 return rc;
566 }
567
568 int cifs_mknod(struct inode *inode, struct dentry *direntry, umode_t mode,
569 dev_t device_number)
570 {
571 int rc = -EPERM;
572 unsigned int xid;
573 int create_options = CREATE_NOT_DIR | CREATE_OPTION_SPECIAL;
574 struct cifs_sb_info *cifs_sb;
575 struct tcon_link *tlink;
576 struct cifs_tcon *pTcon;
577 struct cifs_io_parms io_parms;
578 char *full_path = NULL;
579 struct inode *newinode = NULL;
580 int oplock = 0;
581 u16 fileHandle;
582 FILE_ALL_INFO *buf = NULL;
583 unsigned int bytes_written;
584 struct win_dev *pdev;
585
586 if (!old_valid_dev(device_number))
587 return -EINVAL;
588
589 cifs_sb = CIFS_SB(inode->i_sb);
590 tlink = cifs_sb_tlink(cifs_sb);
591 if (IS_ERR(tlink))
592 return PTR_ERR(tlink);
593
594 pTcon = tlink_tcon(tlink);
595
596 xid = get_xid();
597
598 full_path = build_path_from_dentry(direntry);
599 if (full_path == NULL) {
600 rc = -ENOMEM;
601 goto mknod_out;
602 }
603
604 if (pTcon->unix_ext) {
605 struct cifs_unix_set_info_args args = {
606 .mode = mode & ~current_umask(),
607 .ctime = NO_CHANGE_64,
608 .atime = NO_CHANGE_64,
609 .mtime = NO_CHANGE_64,
610 .device = device_number,
611 };
612 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
613 args.uid = current_fsuid();
614 args.gid = current_fsgid();
615 } else {
616 args.uid = INVALID_UID; /* no change */
617 args.gid = INVALID_GID; /* no change */
618 }
619 rc = CIFSSMBUnixSetPathInfo(xid, pTcon, full_path, &args,
620 cifs_sb->local_nls,
621 cifs_sb->mnt_cifs_flags &
622 CIFS_MOUNT_MAP_SPECIAL_CHR);
623 if (rc)
624 goto mknod_out;
625
626 rc = cifs_get_inode_info_unix(&newinode, full_path,
627 inode->i_sb, xid);
628
629 if (rc == 0)
630 d_instantiate(direntry, newinode);
631 goto mknod_out;
632 }
633
634 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL))
635 goto mknod_out;
636
637
638 cifs_dbg(FYI, "sfu compat create special file\n");
639
640 buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
641 if (buf == NULL) {
642 kfree(full_path);
643 rc = -ENOMEM;
644 free_xid(xid);
645 return rc;
646 }
647
648 if (backup_cred(cifs_sb))
649 create_options |= CREATE_OPEN_BACKUP_INTENT;
650
651 rc = CIFSSMBOpen(xid, pTcon, full_path, FILE_CREATE,
652 GENERIC_WRITE, create_options,
653 &fileHandle, &oplock, buf, cifs_sb->local_nls,
654 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
655 if (rc)
656 goto mknod_out;
657
658 /* BB Do not bother to decode buf since no local inode yet to put
659 * timestamps in, but we can reuse it safely */
660
661 pdev = (struct win_dev *)buf;
662 io_parms.netfid = fileHandle;
663 io_parms.pid = current->tgid;
664 io_parms.tcon = pTcon;
665 io_parms.offset = 0;
666 io_parms.length = sizeof(struct win_dev);
667 if (S_ISCHR(mode)) {
668 memcpy(pdev->type, "IntxCHR", 8);
669 pdev->major =
670 cpu_to_le64(MAJOR(device_number));
671 pdev->minor =
672 cpu_to_le64(MINOR(device_number));
673 rc = CIFSSMBWrite(xid, &io_parms,
674 &bytes_written, (char *)pdev,
675 NULL, 0);
676 } else if (S_ISBLK(mode)) {
677 memcpy(pdev->type, "IntxBLK", 8);
678 pdev->major =
679 cpu_to_le64(MAJOR(device_number));
680 pdev->minor =
681 cpu_to_le64(MINOR(device_number));
682 rc = CIFSSMBWrite(xid, &io_parms,
683 &bytes_written, (char *)pdev,
684 NULL, 0);
685 } /* else if (S_ISFIFO) */
686 CIFSSMBClose(xid, pTcon, fileHandle);
687 d_drop(direntry);
688
689 /* FIXME: add code here to set EAs */
690
691 mknod_out:
692 kfree(full_path);
693 kfree(buf);
694 free_xid(xid);
695 cifs_put_tlink(tlink);
696 return rc;
697 }
698
699 struct dentry *
700 cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry,
701 unsigned int flags)
702 {
703 unsigned int xid;
704 int rc = 0; /* to get around spurious gcc warning, set to zero here */
705 struct cifs_sb_info *cifs_sb;
706 struct tcon_link *tlink;
707 struct cifs_tcon *pTcon;
708 struct inode *newInode = NULL;
709 char *full_path = NULL;
710
711 xid = get_xid();
712
713 cifs_dbg(FYI, "parent inode = 0x%p name is: %s and dentry = 0x%p\n",
714 parent_dir_inode, direntry->d_name.name, direntry);
715
716 /* check whether path exists */
717
718 cifs_sb = CIFS_SB(parent_dir_inode->i_sb);
719 tlink = cifs_sb_tlink(cifs_sb);
720 if (IS_ERR(tlink)) {
721 free_xid(xid);
722 return (struct dentry *)tlink;
723 }
724 pTcon = tlink_tcon(tlink);
725
726 rc = check_name(direntry);
727 if (rc)
728 goto lookup_out;
729
730 /* can not grab the rename sem here since it would
731 deadlock in the cases (beginning of sys_rename itself)
732 in which we already have the sb rename sem */
733 full_path = build_path_from_dentry(direntry);
734 if (full_path == NULL) {
735 rc = -ENOMEM;
736 goto lookup_out;
737 }
738
739 if (direntry->d_inode != NULL) {
740 cifs_dbg(FYI, "non-NULL inode in lookup\n");
741 } else {
742 cifs_dbg(FYI, "NULL inode in lookup\n");
743 }
744 cifs_dbg(FYI, "Full path: %s inode = 0x%p\n",
745 full_path, direntry->d_inode);
746
747 if (pTcon->unix_ext) {
748 rc = cifs_get_inode_info_unix(&newInode, full_path,
749 parent_dir_inode->i_sb, xid);
750 } else {
751 rc = cifs_get_inode_info(&newInode, full_path, NULL,
752 parent_dir_inode->i_sb, xid, NULL);
753 }
754
755 if ((rc == 0) && (newInode != NULL)) {
756 d_add(direntry, newInode);
757 /* since paths are not looked up by component - the parent
758 directories are presumed to be good here */
759 renew_parental_timestamps(direntry);
760
761 } else if (rc == -ENOENT) {
762 rc = 0;
763 direntry->d_time = jiffies;
764 d_add(direntry, NULL);
765 /* if it was once a directory (but how can we tell?) we could do
766 shrink_dcache_parent(direntry); */
767 } else if (rc != -EACCES) {
768 cifs_dbg(VFS, "Unexpected lookup error %d\n", rc);
769 /* We special case check for Access Denied - since that
770 is a common return code */
771 }
772
773 lookup_out:
774 kfree(full_path);
775 cifs_put_tlink(tlink);
776 free_xid(xid);
777 return ERR_PTR(rc);
778 }
779
780 static int
781 cifs_d_revalidate(struct dentry *direntry, unsigned int flags)
782 {
783 if (flags & LOOKUP_RCU)
784 return -ECHILD;
785
786 if (direntry->d_inode) {
787 if (cifs_revalidate_dentry(direntry))
788 return 0;
789 else {
790 /*
791 * If the inode wasn't known to be a dfs entry when
792 * the dentry was instantiated, such as when created
793 * via ->readdir(), it needs to be set now since the
794 * attributes will have been updated by
795 * cifs_revalidate_dentry().
796 */
797 if (IS_AUTOMOUNT(direntry->d_inode) &&
798 !(direntry->d_flags & DCACHE_NEED_AUTOMOUNT)) {
799 spin_lock(&direntry->d_lock);
800 direntry->d_flags |= DCACHE_NEED_AUTOMOUNT;
801 spin_unlock(&direntry->d_lock);
802 }
803
804 return 1;
805 }
806 }
807
808 /*
809 * This may be nfsd (or something), anyway, we can't see the
810 * intent of this. So, since this can be for creation, drop it.
811 */
812 if (!flags)
813 return 0;
814
815 /*
816 * Drop the negative dentry, in order to make sure to use the
817 * case sensitive name which is specified by user if this is
818 * for creation.
819 */
820 if (flags & (LOOKUP_CREATE | LOOKUP_RENAME_TARGET))
821 return 0;
822
823 if (time_after(jiffies, direntry->d_time + HZ) || !lookupCacheEnabled)
824 return 0;
825
826 return 1;
827 }
828
829 /* static int cifs_d_delete(struct dentry *direntry)
830 {
831 int rc = 0;
832
833 cifs_dbg(FYI, "In cifs d_delete, name = %s\n", direntry->d_name.name);
834
835 return rc;
836 } */
837
838 const struct dentry_operations cifs_dentry_ops = {
839 .d_revalidate = cifs_d_revalidate,
840 .d_automount = cifs_dfs_d_automount,
841 /* d_delete: cifs_d_delete, */ /* not needed except for debugging */
842 };
843
844 static int cifs_ci_hash(const struct dentry *dentry, const struct inode *inode,
845 struct qstr *q)
846 {
847 struct nls_table *codepage = CIFS_SB(dentry->d_sb)->local_nls;
848 unsigned long hash;
849 int i;
850
851 hash = init_name_hash();
852 for (i = 0; i < q->len; i++)
853 hash = partial_name_hash(nls_tolower(codepage, q->name[i]),
854 hash);
855 q->hash = end_name_hash(hash);
856
857 return 0;
858 }
859
860 static int cifs_ci_compare(const struct dentry *parent,
861 const struct inode *pinode,
862 const struct dentry *dentry, const struct inode *inode,
863 unsigned int len, const char *str, const struct qstr *name)
864 {
865 struct nls_table *codepage = CIFS_SB(pinode->i_sb)->local_nls;
866
867 if ((name->len == len) &&
868 (nls_strnicmp(codepage, name->name, str, len) == 0))
869 return 0;
870 return 1;
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 };