trailing_symlink: nd->depth massage, part 5
[deliverable/linux.git] / fs / namei.c
1 /*
2 * linux/fs/namei.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7 /*
8 * Some corrections by tytso.
9 */
10
11 /* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname
12 * lookup logic.
13 */
14 /* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture.
15 */
16
17 #include <linux/init.h>
18 #include <linux/export.h>
19 #include <linux/kernel.h>
20 #include <linux/slab.h>
21 #include <linux/fs.h>
22 #include <linux/namei.h>
23 #include <linux/pagemap.h>
24 #include <linux/fsnotify.h>
25 #include <linux/personality.h>
26 #include <linux/security.h>
27 #include <linux/ima.h>
28 #include <linux/syscalls.h>
29 #include <linux/mount.h>
30 #include <linux/audit.h>
31 #include <linux/capability.h>
32 #include <linux/file.h>
33 #include <linux/fcntl.h>
34 #include <linux/device_cgroup.h>
35 #include <linux/fs_struct.h>
36 #include <linux/posix_acl.h>
37 #include <linux/hash.h>
38 #include <asm/uaccess.h>
39
40 #include "internal.h"
41 #include "mount.h"
42
43 /* [Feb-1997 T. Schoebel-Theuer]
44 * Fundamental changes in the pathname lookup mechanisms (namei)
45 * were necessary because of omirr. The reason is that omirr needs
46 * to know the _real_ pathname, not the user-supplied one, in case
47 * of symlinks (and also when transname replacements occur).
48 *
49 * The new code replaces the old recursive symlink resolution with
50 * an iterative one (in case of non-nested symlink chains). It does
51 * this with calls to <fs>_follow_link().
52 * As a side effect, dir_namei(), _namei() and follow_link() are now
53 * replaced with a single function lookup_dentry() that can handle all
54 * the special cases of the former code.
55 *
56 * With the new dcache, the pathname is stored at each inode, at least as
57 * long as the refcount of the inode is positive. As a side effect, the
58 * size of the dcache depends on the inode cache and thus is dynamic.
59 *
60 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
61 * resolution to correspond with current state of the code.
62 *
63 * Note that the symlink resolution is not *completely* iterative.
64 * There is still a significant amount of tail- and mid- recursion in
65 * the algorithm. Also, note that <fs>_readlink() is not used in
66 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
67 * may return different results than <fs>_follow_link(). Many virtual
68 * filesystems (including /proc) exhibit this behavior.
69 */
70
71 /* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
72 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
73 * and the name already exists in form of a symlink, try to create the new
74 * name indicated by the symlink. The old code always complained that the
75 * name already exists, due to not following the symlink even if its target
76 * is nonexistent. The new semantics affects also mknod() and link() when
77 * the name is a symlink pointing to a non-existent name.
78 *
79 * I don't know which semantics is the right one, since I have no access
80 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
81 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
82 * "old" one. Personally, I think the new semantics is much more logical.
83 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
84 * file does succeed in both HP-UX and SunOs, but not in Solaris
85 * and in the old Linux semantics.
86 */
87
88 /* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
89 * semantics. See the comments in "open_namei" and "do_link" below.
90 *
91 * [10-Sep-98 Alan Modra] Another symlink change.
92 */
93
94 /* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
95 * inside the path - always follow.
96 * in the last component in creation/removal/renaming - never follow.
97 * if LOOKUP_FOLLOW passed - follow.
98 * if the pathname has trailing slashes - follow.
99 * otherwise - don't follow.
100 * (applied in that order).
101 *
102 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
103 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
104 * During the 2.4 we need to fix the userland stuff depending on it -
105 * hopefully we will be able to get rid of that wart in 2.5. So far only
106 * XEmacs seems to be relying on it...
107 */
108 /*
109 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
110 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
111 * any extra contention...
112 */
113
114 /* In order to reduce some races, while at the same time doing additional
115 * checking and hopefully speeding things up, we copy filenames to the
116 * kernel data space before using them..
117 *
118 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
119 * PATH_MAX includes the nul terminator --RR.
120 */
121
122 #define EMBEDDED_NAME_MAX (PATH_MAX - offsetof(struct filename, iname))
123
124 struct filename *
125 getname_flags(const char __user *filename, int flags, int *empty)
126 {
127 struct filename *result;
128 char *kname;
129 int len;
130
131 result = audit_reusename(filename);
132 if (result)
133 return result;
134
135 result = __getname();
136 if (unlikely(!result))
137 return ERR_PTR(-ENOMEM);
138
139 /*
140 * First, try to embed the struct filename inside the names_cache
141 * allocation
142 */
143 kname = (char *)result->iname;
144 result->name = kname;
145
146 len = strncpy_from_user(kname, filename, EMBEDDED_NAME_MAX);
147 if (unlikely(len < 0)) {
148 __putname(result);
149 return ERR_PTR(len);
150 }
151
152 /*
153 * Uh-oh. We have a name that's approaching PATH_MAX. Allocate a
154 * separate struct filename so we can dedicate the entire
155 * names_cache allocation for the pathname, and re-do the copy from
156 * userland.
157 */
158 if (unlikely(len == EMBEDDED_NAME_MAX)) {
159 const size_t size = offsetof(struct filename, iname[1]);
160 kname = (char *)result;
161
162 /*
163 * size is chosen that way we to guarantee that
164 * result->iname[0] is within the same object and that
165 * kname can't be equal to result->iname, no matter what.
166 */
167 result = kzalloc(size, GFP_KERNEL);
168 if (unlikely(!result)) {
169 __putname(kname);
170 return ERR_PTR(-ENOMEM);
171 }
172 result->name = kname;
173 len = strncpy_from_user(kname, filename, PATH_MAX);
174 if (unlikely(len < 0)) {
175 __putname(kname);
176 kfree(result);
177 return ERR_PTR(len);
178 }
179 if (unlikely(len == PATH_MAX)) {
180 __putname(kname);
181 kfree(result);
182 return ERR_PTR(-ENAMETOOLONG);
183 }
184 }
185
186 result->refcnt = 1;
187 /* The empty path is special. */
188 if (unlikely(!len)) {
189 if (empty)
190 *empty = 1;
191 if (!(flags & LOOKUP_EMPTY)) {
192 putname(result);
193 return ERR_PTR(-ENOENT);
194 }
195 }
196
197 result->uptr = filename;
198 result->aname = NULL;
199 audit_getname(result);
200 return result;
201 }
202
203 struct filename *
204 getname(const char __user * filename)
205 {
206 return getname_flags(filename, 0, NULL);
207 }
208
209 struct filename *
210 getname_kernel(const char * filename)
211 {
212 struct filename *result;
213 int len = strlen(filename) + 1;
214
215 result = __getname();
216 if (unlikely(!result))
217 return ERR_PTR(-ENOMEM);
218
219 if (len <= EMBEDDED_NAME_MAX) {
220 result->name = (char *)result->iname;
221 } else if (len <= PATH_MAX) {
222 struct filename *tmp;
223
224 tmp = kmalloc(sizeof(*tmp), GFP_KERNEL);
225 if (unlikely(!tmp)) {
226 __putname(result);
227 return ERR_PTR(-ENOMEM);
228 }
229 tmp->name = (char *)result;
230 result = tmp;
231 } else {
232 __putname(result);
233 return ERR_PTR(-ENAMETOOLONG);
234 }
235 memcpy((char *)result->name, filename, len);
236 result->uptr = NULL;
237 result->aname = NULL;
238 result->refcnt = 1;
239 audit_getname(result);
240
241 return result;
242 }
243
244 void putname(struct filename *name)
245 {
246 BUG_ON(name->refcnt <= 0);
247
248 if (--name->refcnt > 0)
249 return;
250
251 if (name->name != name->iname) {
252 __putname(name->name);
253 kfree(name);
254 } else
255 __putname(name);
256 }
257
258 static int check_acl(struct inode *inode, int mask)
259 {
260 #ifdef CONFIG_FS_POSIX_ACL
261 struct posix_acl *acl;
262
263 if (mask & MAY_NOT_BLOCK) {
264 acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS);
265 if (!acl)
266 return -EAGAIN;
267 /* no ->get_acl() calls in RCU mode... */
268 if (acl == ACL_NOT_CACHED)
269 return -ECHILD;
270 return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK);
271 }
272
273 acl = get_acl(inode, ACL_TYPE_ACCESS);
274 if (IS_ERR(acl))
275 return PTR_ERR(acl);
276 if (acl) {
277 int error = posix_acl_permission(inode, acl, mask);
278 posix_acl_release(acl);
279 return error;
280 }
281 #endif
282
283 return -EAGAIN;
284 }
285
286 /*
287 * This does the basic permission checking
288 */
289 static int acl_permission_check(struct inode *inode, int mask)
290 {
291 unsigned int mode = inode->i_mode;
292
293 if (likely(uid_eq(current_fsuid(), inode->i_uid)))
294 mode >>= 6;
295 else {
296 if (IS_POSIXACL(inode) && (mode & S_IRWXG)) {
297 int error = check_acl(inode, mask);
298 if (error != -EAGAIN)
299 return error;
300 }
301
302 if (in_group_p(inode->i_gid))
303 mode >>= 3;
304 }
305
306 /*
307 * If the DACs are ok we don't need any capability check.
308 */
309 if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
310 return 0;
311 return -EACCES;
312 }
313
314 /**
315 * generic_permission - check for access rights on a Posix-like filesystem
316 * @inode: inode to check access rights for
317 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
318 *
319 * Used to check for read/write/execute permissions on a file.
320 * We use "fsuid" for this, letting us set arbitrary permissions
321 * for filesystem access without changing the "normal" uids which
322 * are used for other things.
323 *
324 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
325 * request cannot be satisfied (eg. requires blocking or too much complexity).
326 * It would then be called again in ref-walk mode.
327 */
328 int generic_permission(struct inode *inode, int mask)
329 {
330 int ret;
331
332 /*
333 * Do the basic permission checks.
334 */
335 ret = acl_permission_check(inode, mask);
336 if (ret != -EACCES)
337 return ret;
338
339 if (S_ISDIR(inode->i_mode)) {
340 /* DACs are overridable for directories */
341 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
342 return 0;
343 if (!(mask & MAY_WRITE))
344 if (capable_wrt_inode_uidgid(inode,
345 CAP_DAC_READ_SEARCH))
346 return 0;
347 return -EACCES;
348 }
349 /*
350 * Read/write DACs are always overridable.
351 * Executable DACs are overridable when there is
352 * at least one exec bit set.
353 */
354 if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
355 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
356 return 0;
357
358 /*
359 * Searching includes executable on directories, else just read.
360 */
361 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
362 if (mask == MAY_READ)
363 if (capable_wrt_inode_uidgid(inode, CAP_DAC_READ_SEARCH))
364 return 0;
365
366 return -EACCES;
367 }
368 EXPORT_SYMBOL(generic_permission);
369
370 /*
371 * We _really_ want to just do "generic_permission()" without
372 * even looking at the inode->i_op values. So we keep a cache
373 * flag in inode->i_opflags, that says "this has not special
374 * permission function, use the fast case".
375 */
376 static inline int do_inode_permission(struct inode *inode, int mask)
377 {
378 if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) {
379 if (likely(inode->i_op->permission))
380 return inode->i_op->permission(inode, mask);
381
382 /* This gets set once for the inode lifetime */
383 spin_lock(&inode->i_lock);
384 inode->i_opflags |= IOP_FASTPERM;
385 spin_unlock(&inode->i_lock);
386 }
387 return generic_permission(inode, mask);
388 }
389
390 /**
391 * __inode_permission - Check for access rights to a given inode
392 * @inode: Inode to check permission on
393 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
394 *
395 * Check for read/write/execute permissions on an inode.
396 *
397 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
398 *
399 * This does not check for a read-only file system. You probably want
400 * inode_permission().
401 */
402 int __inode_permission(struct inode *inode, int mask)
403 {
404 int retval;
405
406 if (unlikely(mask & MAY_WRITE)) {
407 /*
408 * Nobody gets write access to an immutable file.
409 */
410 if (IS_IMMUTABLE(inode))
411 return -EACCES;
412 }
413
414 retval = do_inode_permission(inode, mask);
415 if (retval)
416 return retval;
417
418 retval = devcgroup_inode_permission(inode, mask);
419 if (retval)
420 return retval;
421
422 return security_inode_permission(inode, mask);
423 }
424 EXPORT_SYMBOL(__inode_permission);
425
426 /**
427 * sb_permission - Check superblock-level permissions
428 * @sb: Superblock of inode to check permission on
429 * @inode: Inode to check permission on
430 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
431 *
432 * Separate out file-system wide checks from inode-specific permission checks.
433 */
434 static int sb_permission(struct super_block *sb, struct inode *inode, int mask)
435 {
436 if (unlikely(mask & MAY_WRITE)) {
437 umode_t mode = inode->i_mode;
438
439 /* Nobody gets write access to a read-only fs. */
440 if ((sb->s_flags & MS_RDONLY) &&
441 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
442 return -EROFS;
443 }
444 return 0;
445 }
446
447 /**
448 * inode_permission - Check for access rights to a given inode
449 * @inode: Inode to check permission on
450 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
451 *
452 * Check for read/write/execute permissions on an inode. We use fs[ug]id for
453 * this, letting us set arbitrary permissions for filesystem access without
454 * changing the "normal" UIDs which are used for other things.
455 *
456 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
457 */
458 int inode_permission(struct inode *inode, int mask)
459 {
460 int retval;
461
462 retval = sb_permission(inode->i_sb, inode, mask);
463 if (retval)
464 return retval;
465 return __inode_permission(inode, mask);
466 }
467 EXPORT_SYMBOL(inode_permission);
468
469 /**
470 * path_get - get a reference to a path
471 * @path: path to get the reference to
472 *
473 * Given a path increment the reference count to the dentry and the vfsmount.
474 */
475 void path_get(const struct path *path)
476 {
477 mntget(path->mnt);
478 dget(path->dentry);
479 }
480 EXPORT_SYMBOL(path_get);
481
482 /**
483 * path_put - put a reference to a path
484 * @path: path to put the reference to
485 *
486 * Given a path decrement the reference count to the dentry and the vfsmount.
487 */
488 void path_put(const struct path *path)
489 {
490 dput(path->dentry);
491 mntput(path->mnt);
492 }
493 EXPORT_SYMBOL(path_put);
494
495 #define EMBEDDED_LEVELS 2
496 struct nameidata {
497 struct path path;
498 union {
499 struct qstr last;
500 struct path link;
501 };
502 struct path root;
503 struct inode *inode; /* path.dentry.d_inode */
504 unsigned int flags;
505 unsigned seq, m_seq;
506 int last_type;
507 unsigned depth;
508 struct file *base;
509 struct saved {
510 struct path link;
511 void *cookie;
512 const char *name;
513 } *stack, internal[EMBEDDED_LEVELS];
514 };
515
516 static void set_nameidata(struct nameidata *nd)
517 {
518 nd->stack = nd->internal;
519 }
520
521 static void restore_nameidata(struct nameidata *nd)
522 {
523 if (nd->stack != nd->internal) {
524 kfree(nd->stack);
525 nd->stack = nd->internal;
526 }
527 }
528
529 static int __nd_alloc_stack(struct nameidata *nd)
530 {
531 struct saved *p = kmalloc((MAXSYMLINKS + 1) * sizeof(struct saved),
532 GFP_KERNEL);
533 if (unlikely(!p))
534 return -ENOMEM;
535 memcpy(p, nd->internal, sizeof(nd->internal));
536 nd->stack = p;
537 return 0;
538 }
539
540 static inline int nd_alloc_stack(struct nameidata *nd)
541 {
542 if (likely(nd->depth != EMBEDDED_LEVELS))
543 return 0;
544 if (likely(nd->stack != nd->internal))
545 return 0;
546 return __nd_alloc_stack(nd);
547 }
548
549 /*
550 * Path walking has 2 modes, rcu-walk and ref-walk (see
551 * Documentation/filesystems/path-lookup.txt). In situations when we can't
552 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
553 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
554 * mode. Refcounts are grabbed at the last known good point before rcu-walk
555 * got stuck, so ref-walk may continue from there. If this is not successful
556 * (eg. a seqcount has changed), then failure is returned and it's up to caller
557 * to restart the path walk from the beginning in ref-walk mode.
558 */
559
560 /**
561 * unlazy_walk - try to switch to ref-walk mode.
562 * @nd: nameidata pathwalk data
563 * @dentry: child of nd->path.dentry or NULL
564 * Returns: 0 on success, -ECHILD on failure
565 *
566 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
567 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
568 * @nd or NULL. Must be called from rcu-walk context.
569 */
570 static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
571 {
572 struct fs_struct *fs = current->fs;
573 struct dentry *parent = nd->path.dentry;
574
575 BUG_ON(!(nd->flags & LOOKUP_RCU));
576
577 /*
578 * After legitimizing the bastards, terminate_walk()
579 * will do the right thing for non-RCU mode, and all our
580 * subsequent exit cases should rcu_read_unlock()
581 * before returning. Do vfsmount first; if dentry
582 * can't be legitimized, just set nd->path.dentry to NULL
583 * and rely on dput(NULL) being a no-op.
584 */
585 if (!legitimize_mnt(nd->path.mnt, nd->m_seq))
586 return -ECHILD;
587 nd->flags &= ~LOOKUP_RCU;
588
589 if (!lockref_get_not_dead(&parent->d_lockref)) {
590 nd->path.dentry = NULL;
591 goto out;
592 }
593
594 /*
595 * For a negative lookup, the lookup sequence point is the parents
596 * sequence point, and it only needs to revalidate the parent dentry.
597 *
598 * For a positive lookup, we need to move both the parent and the
599 * dentry from the RCU domain to be properly refcounted. And the
600 * sequence number in the dentry validates *both* dentry counters,
601 * since we checked the sequence number of the parent after we got
602 * the child sequence number. So we know the parent must still
603 * be valid if the child sequence number is still valid.
604 */
605 if (!dentry) {
606 if (read_seqcount_retry(&parent->d_seq, nd->seq))
607 goto out;
608 BUG_ON(nd->inode != parent->d_inode);
609 } else {
610 if (!lockref_get_not_dead(&dentry->d_lockref))
611 goto out;
612 if (read_seqcount_retry(&dentry->d_seq, nd->seq))
613 goto drop_dentry;
614 }
615
616 /*
617 * Sequence counts matched. Now make sure that the root is
618 * still valid and get it if required.
619 */
620 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
621 spin_lock(&fs->lock);
622 if (nd->root.mnt != fs->root.mnt || nd->root.dentry != fs->root.dentry)
623 goto unlock_and_drop_dentry;
624 path_get(&nd->root);
625 spin_unlock(&fs->lock);
626 }
627
628 rcu_read_unlock();
629 return 0;
630
631 unlock_and_drop_dentry:
632 spin_unlock(&fs->lock);
633 drop_dentry:
634 rcu_read_unlock();
635 dput(dentry);
636 goto drop_root_mnt;
637 out:
638 rcu_read_unlock();
639 drop_root_mnt:
640 if (!(nd->flags & LOOKUP_ROOT))
641 nd->root.mnt = NULL;
642 return -ECHILD;
643 }
644
645 static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
646 {
647 return dentry->d_op->d_revalidate(dentry, flags);
648 }
649
650 /**
651 * complete_walk - successful completion of path walk
652 * @nd: pointer nameidata
653 *
654 * If we had been in RCU mode, drop out of it and legitimize nd->path.
655 * Revalidate the final result, unless we'd already done that during
656 * the path walk or the filesystem doesn't ask for it. Return 0 on
657 * success, -error on failure. In case of failure caller does not
658 * need to drop nd->path.
659 */
660 static int complete_walk(struct nameidata *nd)
661 {
662 struct dentry *dentry = nd->path.dentry;
663 int status;
664
665 if (nd->flags & LOOKUP_RCU) {
666 nd->flags &= ~LOOKUP_RCU;
667 if (!(nd->flags & LOOKUP_ROOT))
668 nd->root.mnt = NULL;
669
670 if (!legitimize_mnt(nd->path.mnt, nd->m_seq)) {
671 rcu_read_unlock();
672 return -ECHILD;
673 }
674 if (unlikely(!lockref_get_not_dead(&dentry->d_lockref))) {
675 rcu_read_unlock();
676 mntput(nd->path.mnt);
677 return -ECHILD;
678 }
679 if (read_seqcount_retry(&dentry->d_seq, nd->seq)) {
680 rcu_read_unlock();
681 dput(dentry);
682 mntput(nd->path.mnt);
683 return -ECHILD;
684 }
685 rcu_read_unlock();
686 }
687
688 if (likely(!(nd->flags & LOOKUP_JUMPED)))
689 return 0;
690
691 if (likely(!(dentry->d_flags & DCACHE_OP_WEAK_REVALIDATE)))
692 return 0;
693
694 status = dentry->d_op->d_weak_revalidate(dentry, nd->flags);
695 if (status > 0)
696 return 0;
697
698 if (!status)
699 status = -ESTALE;
700
701 path_put(&nd->path);
702 return status;
703 }
704
705 static __always_inline void set_root(struct nameidata *nd)
706 {
707 get_fs_root(current->fs, &nd->root);
708 }
709
710 static __always_inline unsigned set_root_rcu(struct nameidata *nd)
711 {
712 struct fs_struct *fs = current->fs;
713 unsigned seq, res;
714
715 do {
716 seq = read_seqcount_begin(&fs->seq);
717 nd->root = fs->root;
718 res = __read_seqcount_begin(&nd->root.dentry->d_seq);
719 } while (read_seqcount_retry(&fs->seq, seq));
720 return res;
721 }
722
723 static void path_put_conditional(struct path *path, struct nameidata *nd)
724 {
725 dput(path->dentry);
726 if (path->mnt != nd->path.mnt)
727 mntput(path->mnt);
728 }
729
730 static inline void path_to_nameidata(const struct path *path,
731 struct nameidata *nd)
732 {
733 if (!(nd->flags & LOOKUP_RCU)) {
734 dput(nd->path.dentry);
735 if (nd->path.mnt != path->mnt)
736 mntput(nd->path.mnt);
737 }
738 nd->path.mnt = path->mnt;
739 nd->path.dentry = path->dentry;
740 }
741
742 /*
743 * Helper to directly jump to a known parsed path from ->follow_link,
744 * caller must have taken a reference to path beforehand.
745 */
746 void nd_jump_link(struct nameidata *nd, struct path *path)
747 {
748 path_put(&nd->path);
749
750 nd->path = *path;
751 nd->inode = nd->path.dentry->d_inode;
752 nd->flags |= LOOKUP_JUMPED;
753 }
754
755 static inline void put_link(struct nameidata *nd)
756 {
757 struct saved *last = nd->stack + nd->depth;
758 struct inode *inode = last->link.dentry->d_inode;
759 if (last->cookie && inode->i_op->put_link)
760 inode->i_op->put_link(last->link.dentry, last->cookie);
761 path_put(&last->link);
762 }
763
764 int sysctl_protected_symlinks __read_mostly = 0;
765 int sysctl_protected_hardlinks __read_mostly = 0;
766
767 /**
768 * may_follow_link - Check symlink following for unsafe situations
769 * @link: The path of the symlink
770 * @nd: nameidata pathwalk data
771 *
772 * In the case of the sysctl_protected_symlinks sysctl being enabled,
773 * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
774 * in a sticky world-writable directory. This is to protect privileged
775 * processes from failing races against path names that may change out
776 * from under them by way of other users creating malicious symlinks.
777 * It will permit symlinks to be followed only when outside a sticky
778 * world-writable directory, or when the uid of the symlink and follower
779 * match, or when the directory owner matches the symlink's owner.
780 *
781 * Returns 0 if following the symlink is allowed, -ve on error.
782 */
783 static inline int may_follow_link(struct path *link, struct nameidata *nd)
784 {
785 const struct inode *inode;
786 const struct inode *parent;
787
788 if (!sysctl_protected_symlinks)
789 return 0;
790
791 /* Allowed if owner and follower match. */
792 inode = link->dentry->d_inode;
793 if (uid_eq(current_cred()->fsuid, inode->i_uid))
794 return 0;
795
796 /* Allowed if parent directory not sticky and world-writable. */
797 parent = nd->path.dentry->d_inode;
798 if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
799 return 0;
800
801 /* Allowed if parent directory and link owner match. */
802 if (uid_eq(parent->i_uid, inode->i_uid))
803 return 0;
804
805 audit_log_link_denied("follow_link", link);
806 path_put_conditional(link, nd);
807 path_put(&nd->path);
808 return -EACCES;
809 }
810
811 /**
812 * safe_hardlink_source - Check for safe hardlink conditions
813 * @inode: the source inode to hardlink from
814 *
815 * Return false if at least one of the following conditions:
816 * - inode is not a regular file
817 * - inode is setuid
818 * - inode is setgid and group-exec
819 * - access failure for read and write
820 *
821 * Otherwise returns true.
822 */
823 static bool safe_hardlink_source(struct inode *inode)
824 {
825 umode_t mode = inode->i_mode;
826
827 /* Special files should not get pinned to the filesystem. */
828 if (!S_ISREG(mode))
829 return false;
830
831 /* Setuid files should not get pinned to the filesystem. */
832 if (mode & S_ISUID)
833 return false;
834
835 /* Executable setgid files should not get pinned to the filesystem. */
836 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
837 return false;
838
839 /* Hardlinking to unreadable or unwritable sources is dangerous. */
840 if (inode_permission(inode, MAY_READ | MAY_WRITE))
841 return false;
842
843 return true;
844 }
845
846 /**
847 * may_linkat - Check permissions for creating a hardlink
848 * @link: the source to hardlink from
849 *
850 * Block hardlink when all of:
851 * - sysctl_protected_hardlinks enabled
852 * - fsuid does not match inode
853 * - hardlink source is unsafe (see safe_hardlink_source() above)
854 * - not CAP_FOWNER
855 *
856 * Returns 0 if successful, -ve on error.
857 */
858 static int may_linkat(struct path *link)
859 {
860 const struct cred *cred;
861 struct inode *inode;
862
863 if (!sysctl_protected_hardlinks)
864 return 0;
865
866 cred = current_cred();
867 inode = link->dentry->d_inode;
868
869 /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
870 * otherwise, it must be a safe source.
871 */
872 if (uid_eq(cred->fsuid, inode->i_uid) || safe_hardlink_source(inode) ||
873 capable(CAP_FOWNER))
874 return 0;
875
876 audit_log_link_denied("linkat", link);
877 return -EPERM;
878 }
879
880 static __always_inline
881 const char *get_link(struct nameidata *nd)
882 {
883 struct saved *last = nd->stack + nd->depth;
884 struct dentry *dentry = nd->link.dentry;
885 struct inode *inode = dentry->d_inode;
886 int error;
887 const char *res;
888
889 BUG_ON(nd->flags & LOOKUP_RCU);
890
891 if (nd->link.mnt == nd->path.mnt)
892 mntget(nd->link.mnt);
893
894 if (unlikely(current->total_link_count >= MAXSYMLINKS)) {
895 path_put(&nd->path);
896 path_put(&nd->link);
897 return ERR_PTR(-ELOOP);
898 }
899
900 last->link = nd->link;
901 last->cookie = NULL;
902
903 cond_resched();
904 current->total_link_count++;
905
906 touch_atime(&last->link);
907
908 error = security_inode_follow_link(dentry);
909 res = ERR_PTR(error);
910 if (error)
911 goto out;
912
913 nd->last_type = LAST_BIND;
914 res = inode->i_link;
915 if (!res) {
916 res = inode->i_op->follow_link(dentry, &last->cookie, nd);
917 if (IS_ERR(res)) {
918 out:
919 path_put(&nd->path);
920 path_put(&last->link);
921 }
922 }
923 return res;
924 }
925
926 static int follow_up_rcu(struct path *path)
927 {
928 struct mount *mnt = real_mount(path->mnt);
929 struct mount *parent;
930 struct dentry *mountpoint;
931
932 parent = mnt->mnt_parent;
933 if (&parent->mnt == path->mnt)
934 return 0;
935 mountpoint = mnt->mnt_mountpoint;
936 path->dentry = mountpoint;
937 path->mnt = &parent->mnt;
938 return 1;
939 }
940
941 /*
942 * follow_up - Find the mountpoint of path's vfsmount
943 *
944 * Given a path, find the mountpoint of its source file system.
945 * Replace @path with the path of the mountpoint in the parent mount.
946 * Up is towards /.
947 *
948 * Return 1 if we went up a level and 0 if we were already at the
949 * root.
950 */
951 int follow_up(struct path *path)
952 {
953 struct mount *mnt = real_mount(path->mnt);
954 struct mount *parent;
955 struct dentry *mountpoint;
956
957 read_seqlock_excl(&mount_lock);
958 parent = mnt->mnt_parent;
959 if (parent == mnt) {
960 read_sequnlock_excl(&mount_lock);
961 return 0;
962 }
963 mntget(&parent->mnt);
964 mountpoint = dget(mnt->mnt_mountpoint);
965 read_sequnlock_excl(&mount_lock);
966 dput(path->dentry);
967 path->dentry = mountpoint;
968 mntput(path->mnt);
969 path->mnt = &parent->mnt;
970 return 1;
971 }
972 EXPORT_SYMBOL(follow_up);
973
974 /*
975 * Perform an automount
976 * - return -EISDIR to tell follow_managed() to stop and return the path we
977 * were called with.
978 */
979 static int follow_automount(struct path *path, unsigned flags,
980 bool *need_mntput)
981 {
982 struct vfsmount *mnt;
983 int err;
984
985 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
986 return -EREMOTE;
987
988 /* We don't want to mount if someone's just doing a stat -
989 * unless they're stat'ing a directory and appended a '/' to
990 * the name.
991 *
992 * We do, however, want to mount if someone wants to open or
993 * create a file of any type under the mountpoint, wants to
994 * traverse through the mountpoint or wants to open the
995 * mounted directory. Also, autofs may mark negative dentries
996 * as being automount points. These will need the attentions
997 * of the daemon to instantiate them before they can be used.
998 */
999 if (!(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
1000 LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
1001 path->dentry->d_inode)
1002 return -EISDIR;
1003
1004 current->total_link_count++;
1005 if (current->total_link_count >= 40)
1006 return -ELOOP;
1007
1008 mnt = path->dentry->d_op->d_automount(path);
1009 if (IS_ERR(mnt)) {
1010 /*
1011 * The filesystem is allowed to return -EISDIR here to indicate
1012 * it doesn't want to automount. For instance, autofs would do
1013 * this so that its userspace daemon can mount on this dentry.
1014 *
1015 * However, we can only permit this if it's a terminal point in
1016 * the path being looked up; if it wasn't then the remainder of
1017 * the path is inaccessible and we should say so.
1018 */
1019 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_PARENT))
1020 return -EREMOTE;
1021 return PTR_ERR(mnt);
1022 }
1023
1024 if (!mnt) /* mount collision */
1025 return 0;
1026
1027 if (!*need_mntput) {
1028 /* lock_mount() may release path->mnt on error */
1029 mntget(path->mnt);
1030 *need_mntput = true;
1031 }
1032 err = finish_automount(mnt, path);
1033
1034 switch (err) {
1035 case -EBUSY:
1036 /* Someone else made a mount here whilst we were busy */
1037 return 0;
1038 case 0:
1039 path_put(path);
1040 path->mnt = mnt;
1041 path->dentry = dget(mnt->mnt_root);
1042 return 0;
1043 default:
1044 return err;
1045 }
1046
1047 }
1048
1049 /*
1050 * Handle a dentry that is managed in some way.
1051 * - Flagged for transit management (autofs)
1052 * - Flagged as mountpoint
1053 * - Flagged as automount point
1054 *
1055 * This may only be called in refwalk mode.
1056 *
1057 * Serialization is taken care of in namespace.c
1058 */
1059 static int follow_managed(struct path *path, unsigned flags)
1060 {
1061 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
1062 unsigned managed;
1063 bool need_mntput = false;
1064 int ret = 0;
1065
1066 /* Given that we're not holding a lock here, we retain the value in a
1067 * local variable for each dentry as we look at it so that we don't see
1068 * the components of that value change under us */
1069 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1070 managed &= DCACHE_MANAGED_DENTRY,
1071 unlikely(managed != 0)) {
1072 /* Allow the filesystem to manage the transit without i_mutex
1073 * being held. */
1074 if (managed & DCACHE_MANAGE_TRANSIT) {
1075 BUG_ON(!path->dentry->d_op);
1076 BUG_ON(!path->dentry->d_op->d_manage);
1077 ret = path->dentry->d_op->d_manage(path->dentry, false);
1078 if (ret < 0)
1079 break;
1080 }
1081
1082 /* Transit to a mounted filesystem. */
1083 if (managed & DCACHE_MOUNTED) {
1084 struct vfsmount *mounted = lookup_mnt(path);
1085 if (mounted) {
1086 dput(path->dentry);
1087 if (need_mntput)
1088 mntput(path->mnt);
1089 path->mnt = mounted;
1090 path->dentry = dget(mounted->mnt_root);
1091 need_mntput = true;
1092 continue;
1093 }
1094
1095 /* Something is mounted on this dentry in another
1096 * namespace and/or whatever was mounted there in this
1097 * namespace got unmounted before lookup_mnt() could
1098 * get it */
1099 }
1100
1101 /* Handle an automount point */
1102 if (managed & DCACHE_NEED_AUTOMOUNT) {
1103 ret = follow_automount(path, flags, &need_mntput);
1104 if (ret < 0)
1105 break;
1106 continue;
1107 }
1108
1109 /* We didn't change the current path point */
1110 break;
1111 }
1112
1113 if (need_mntput && path->mnt == mnt)
1114 mntput(path->mnt);
1115 if (ret == -EISDIR)
1116 ret = 0;
1117 return ret < 0 ? ret : need_mntput;
1118 }
1119
1120 int follow_down_one(struct path *path)
1121 {
1122 struct vfsmount *mounted;
1123
1124 mounted = lookup_mnt(path);
1125 if (mounted) {
1126 dput(path->dentry);
1127 mntput(path->mnt);
1128 path->mnt = mounted;
1129 path->dentry = dget(mounted->mnt_root);
1130 return 1;
1131 }
1132 return 0;
1133 }
1134 EXPORT_SYMBOL(follow_down_one);
1135
1136 static inline int managed_dentry_rcu(struct dentry *dentry)
1137 {
1138 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT) ?
1139 dentry->d_op->d_manage(dentry, true) : 0;
1140 }
1141
1142 /*
1143 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
1144 * we meet a managed dentry that would need blocking.
1145 */
1146 static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
1147 struct inode **inode)
1148 {
1149 for (;;) {
1150 struct mount *mounted;
1151 /*
1152 * Don't forget we might have a non-mountpoint managed dentry
1153 * that wants to block transit.
1154 */
1155 switch (managed_dentry_rcu(path->dentry)) {
1156 case -ECHILD:
1157 default:
1158 return false;
1159 case -EISDIR:
1160 return true;
1161 case 0:
1162 break;
1163 }
1164
1165 if (!d_mountpoint(path->dentry))
1166 return !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
1167
1168 mounted = __lookup_mnt(path->mnt, path->dentry);
1169 if (!mounted)
1170 break;
1171 path->mnt = &mounted->mnt;
1172 path->dentry = mounted->mnt.mnt_root;
1173 nd->flags |= LOOKUP_JUMPED;
1174 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
1175 /*
1176 * Update the inode too. We don't need to re-check the
1177 * dentry sequence number here after this d_inode read,
1178 * because a mount-point is always pinned.
1179 */
1180 *inode = path->dentry->d_inode;
1181 }
1182 return !read_seqretry(&mount_lock, nd->m_seq) &&
1183 !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
1184 }
1185
1186 static int follow_dotdot_rcu(struct nameidata *nd)
1187 {
1188 struct inode *inode = nd->inode;
1189 if (!nd->root.mnt)
1190 set_root_rcu(nd);
1191
1192 while (1) {
1193 if (nd->path.dentry == nd->root.dentry &&
1194 nd->path.mnt == nd->root.mnt) {
1195 break;
1196 }
1197 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1198 struct dentry *old = nd->path.dentry;
1199 struct dentry *parent = old->d_parent;
1200 unsigned seq;
1201
1202 inode = parent->d_inode;
1203 seq = read_seqcount_begin(&parent->d_seq);
1204 if (read_seqcount_retry(&old->d_seq, nd->seq))
1205 goto failed;
1206 nd->path.dentry = parent;
1207 nd->seq = seq;
1208 break;
1209 }
1210 if (!follow_up_rcu(&nd->path))
1211 break;
1212 inode = nd->path.dentry->d_inode;
1213 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
1214 }
1215 while (d_mountpoint(nd->path.dentry)) {
1216 struct mount *mounted;
1217 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry);
1218 if (!mounted)
1219 break;
1220 nd->path.mnt = &mounted->mnt;
1221 nd->path.dentry = mounted->mnt.mnt_root;
1222 inode = nd->path.dentry->d_inode;
1223 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
1224 if (read_seqretry(&mount_lock, nd->m_seq))
1225 goto failed;
1226 }
1227 nd->inode = inode;
1228 return 0;
1229
1230 failed:
1231 nd->flags &= ~LOOKUP_RCU;
1232 if (!(nd->flags & LOOKUP_ROOT))
1233 nd->root.mnt = NULL;
1234 rcu_read_unlock();
1235 return -ECHILD;
1236 }
1237
1238 /*
1239 * Follow down to the covering mount currently visible to userspace. At each
1240 * point, the filesystem owning that dentry may be queried as to whether the
1241 * caller is permitted to proceed or not.
1242 */
1243 int follow_down(struct path *path)
1244 {
1245 unsigned managed;
1246 int ret;
1247
1248 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1249 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1250 /* Allow the filesystem to manage the transit without i_mutex
1251 * being held.
1252 *
1253 * We indicate to the filesystem if someone is trying to mount
1254 * something here. This gives autofs the chance to deny anyone
1255 * other than its daemon the right to mount on its
1256 * superstructure.
1257 *
1258 * The filesystem may sleep at this point.
1259 */
1260 if (managed & DCACHE_MANAGE_TRANSIT) {
1261 BUG_ON(!path->dentry->d_op);
1262 BUG_ON(!path->dentry->d_op->d_manage);
1263 ret = path->dentry->d_op->d_manage(
1264 path->dentry, false);
1265 if (ret < 0)
1266 return ret == -EISDIR ? 0 : ret;
1267 }
1268
1269 /* Transit to a mounted filesystem. */
1270 if (managed & DCACHE_MOUNTED) {
1271 struct vfsmount *mounted = lookup_mnt(path);
1272 if (!mounted)
1273 break;
1274 dput(path->dentry);
1275 mntput(path->mnt);
1276 path->mnt = mounted;
1277 path->dentry = dget(mounted->mnt_root);
1278 continue;
1279 }
1280
1281 /* Don't handle automount points here */
1282 break;
1283 }
1284 return 0;
1285 }
1286 EXPORT_SYMBOL(follow_down);
1287
1288 /*
1289 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1290 */
1291 static void follow_mount(struct path *path)
1292 {
1293 while (d_mountpoint(path->dentry)) {
1294 struct vfsmount *mounted = lookup_mnt(path);
1295 if (!mounted)
1296 break;
1297 dput(path->dentry);
1298 mntput(path->mnt);
1299 path->mnt = mounted;
1300 path->dentry = dget(mounted->mnt_root);
1301 }
1302 }
1303
1304 static void follow_dotdot(struct nameidata *nd)
1305 {
1306 if (!nd->root.mnt)
1307 set_root(nd);
1308
1309 while(1) {
1310 struct dentry *old = nd->path.dentry;
1311
1312 if (nd->path.dentry == nd->root.dentry &&
1313 nd->path.mnt == nd->root.mnt) {
1314 break;
1315 }
1316 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1317 /* rare case of legitimate dget_parent()... */
1318 nd->path.dentry = dget_parent(nd->path.dentry);
1319 dput(old);
1320 break;
1321 }
1322 if (!follow_up(&nd->path))
1323 break;
1324 }
1325 follow_mount(&nd->path);
1326 nd->inode = nd->path.dentry->d_inode;
1327 }
1328
1329 /*
1330 * This looks up the name in dcache, possibly revalidates the old dentry and
1331 * allocates a new one if not found or not valid. In the need_lookup argument
1332 * returns whether i_op->lookup is necessary.
1333 *
1334 * dir->d_inode->i_mutex must be held
1335 */
1336 static struct dentry *lookup_dcache(struct qstr *name, struct dentry *dir,
1337 unsigned int flags, bool *need_lookup)
1338 {
1339 struct dentry *dentry;
1340 int error;
1341
1342 *need_lookup = false;
1343 dentry = d_lookup(dir, name);
1344 if (dentry) {
1345 if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
1346 error = d_revalidate(dentry, flags);
1347 if (unlikely(error <= 0)) {
1348 if (error < 0) {
1349 dput(dentry);
1350 return ERR_PTR(error);
1351 } else {
1352 d_invalidate(dentry);
1353 dput(dentry);
1354 dentry = NULL;
1355 }
1356 }
1357 }
1358 }
1359
1360 if (!dentry) {
1361 dentry = d_alloc(dir, name);
1362 if (unlikely(!dentry))
1363 return ERR_PTR(-ENOMEM);
1364
1365 *need_lookup = true;
1366 }
1367 return dentry;
1368 }
1369
1370 /*
1371 * Call i_op->lookup on the dentry. The dentry must be negative and
1372 * unhashed.
1373 *
1374 * dir->d_inode->i_mutex must be held
1375 */
1376 static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
1377 unsigned int flags)
1378 {
1379 struct dentry *old;
1380
1381 /* Don't create child dentry for a dead directory. */
1382 if (unlikely(IS_DEADDIR(dir))) {
1383 dput(dentry);
1384 return ERR_PTR(-ENOENT);
1385 }
1386
1387 old = dir->i_op->lookup(dir, dentry, flags);
1388 if (unlikely(old)) {
1389 dput(dentry);
1390 dentry = old;
1391 }
1392 return dentry;
1393 }
1394
1395 static struct dentry *__lookup_hash(struct qstr *name,
1396 struct dentry *base, unsigned int flags)
1397 {
1398 bool need_lookup;
1399 struct dentry *dentry;
1400
1401 dentry = lookup_dcache(name, base, flags, &need_lookup);
1402 if (!need_lookup)
1403 return dentry;
1404
1405 return lookup_real(base->d_inode, dentry, flags);
1406 }
1407
1408 /*
1409 * It's more convoluted than I'd like it to be, but... it's still fairly
1410 * small and for now I'd prefer to have fast path as straight as possible.
1411 * It _is_ time-critical.
1412 */
1413 static int lookup_fast(struct nameidata *nd,
1414 struct path *path, struct inode **inode)
1415 {
1416 struct vfsmount *mnt = nd->path.mnt;
1417 struct dentry *dentry, *parent = nd->path.dentry;
1418 int need_reval = 1;
1419 int status = 1;
1420 int err;
1421
1422 /*
1423 * Rename seqlock is not required here because in the off chance
1424 * of a false negative due to a concurrent rename, we're going to
1425 * do the non-racy lookup, below.
1426 */
1427 if (nd->flags & LOOKUP_RCU) {
1428 unsigned seq;
1429 bool negative;
1430 dentry = __d_lookup_rcu(parent, &nd->last, &seq);
1431 if (!dentry)
1432 goto unlazy;
1433
1434 /*
1435 * This sequence count validates that the inode matches
1436 * the dentry name information from lookup.
1437 */
1438 *inode = dentry->d_inode;
1439 negative = d_is_negative(dentry);
1440 if (read_seqcount_retry(&dentry->d_seq, seq))
1441 return -ECHILD;
1442 if (negative)
1443 return -ENOENT;
1444
1445 /*
1446 * This sequence count validates that the parent had no
1447 * changes while we did the lookup of the dentry above.
1448 *
1449 * The memory barrier in read_seqcount_begin of child is
1450 * enough, we can use __read_seqcount_retry here.
1451 */
1452 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1453 return -ECHILD;
1454 nd->seq = seq;
1455
1456 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
1457 status = d_revalidate(dentry, nd->flags);
1458 if (unlikely(status <= 0)) {
1459 if (status != -ECHILD)
1460 need_reval = 0;
1461 goto unlazy;
1462 }
1463 }
1464 path->mnt = mnt;
1465 path->dentry = dentry;
1466 if (likely(__follow_mount_rcu(nd, path, inode)))
1467 return 0;
1468 unlazy:
1469 if (unlazy_walk(nd, dentry))
1470 return -ECHILD;
1471 } else {
1472 dentry = __d_lookup(parent, &nd->last);
1473 }
1474
1475 if (unlikely(!dentry))
1476 goto need_lookup;
1477
1478 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
1479 status = d_revalidate(dentry, nd->flags);
1480 if (unlikely(status <= 0)) {
1481 if (status < 0) {
1482 dput(dentry);
1483 return status;
1484 }
1485 d_invalidate(dentry);
1486 dput(dentry);
1487 goto need_lookup;
1488 }
1489
1490 if (unlikely(d_is_negative(dentry))) {
1491 dput(dentry);
1492 return -ENOENT;
1493 }
1494 path->mnt = mnt;
1495 path->dentry = dentry;
1496 err = follow_managed(path, nd->flags);
1497 if (unlikely(err < 0)) {
1498 path_put_conditional(path, nd);
1499 return err;
1500 }
1501 if (err)
1502 nd->flags |= LOOKUP_JUMPED;
1503 *inode = path->dentry->d_inode;
1504 return 0;
1505
1506 need_lookup:
1507 return 1;
1508 }
1509
1510 /* Fast lookup failed, do it the slow way */
1511 static int lookup_slow(struct nameidata *nd, struct path *path)
1512 {
1513 struct dentry *dentry, *parent;
1514 int err;
1515
1516 parent = nd->path.dentry;
1517 BUG_ON(nd->inode != parent->d_inode);
1518
1519 mutex_lock(&parent->d_inode->i_mutex);
1520 dentry = __lookup_hash(&nd->last, parent, nd->flags);
1521 mutex_unlock(&parent->d_inode->i_mutex);
1522 if (IS_ERR(dentry))
1523 return PTR_ERR(dentry);
1524 path->mnt = nd->path.mnt;
1525 path->dentry = dentry;
1526 err = follow_managed(path, nd->flags);
1527 if (unlikely(err < 0)) {
1528 path_put_conditional(path, nd);
1529 return err;
1530 }
1531 if (err)
1532 nd->flags |= LOOKUP_JUMPED;
1533 return 0;
1534 }
1535
1536 static inline int may_lookup(struct nameidata *nd)
1537 {
1538 if (nd->flags & LOOKUP_RCU) {
1539 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
1540 if (err != -ECHILD)
1541 return err;
1542 if (unlazy_walk(nd, NULL))
1543 return -ECHILD;
1544 }
1545 return inode_permission(nd->inode, MAY_EXEC);
1546 }
1547
1548 static inline int handle_dots(struct nameidata *nd, int type)
1549 {
1550 if (type == LAST_DOTDOT) {
1551 if (nd->flags & LOOKUP_RCU) {
1552 if (follow_dotdot_rcu(nd))
1553 return -ECHILD;
1554 } else
1555 follow_dotdot(nd);
1556 }
1557 return 0;
1558 }
1559
1560 static void terminate_walk(struct nameidata *nd)
1561 {
1562 if (!(nd->flags & LOOKUP_RCU)) {
1563 path_put(&nd->path);
1564 } else {
1565 nd->flags &= ~LOOKUP_RCU;
1566 if (!(nd->flags & LOOKUP_ROOT))
1567 nd->root.mnt = NULL;
1568 rcu_read_unlock();
1569 }
1570 }
1571
1572 /*
1573 * Do we need to follow links? We _really_ want to be able
1574 * to do this check without having to look at inode->i_op,
1575 * so we keep a cache of "no, this doesn't need follow_link"
1576 * for the common case.
1577 */
1578 static inline int should_follow_link(struct dentry *dentry, int follow)
1579 {
1580 return unlikely(d_is_symlink(dentry)) ? follow : 0;
1581 }
1582
1583 static int walk_component(struct nameidata *nd, int follow)
1584 {
1585 struct path path;
1586 struct inode *inode;
1587 int err;
1588 /*
1589 * "." and ".." are special - ".." especially so because it has
1590 * to be able to know about the current root directory and
1591 * parent relationships.
1592 */
1593 if (unlikely(nd->last_type != LAST_NORM))
1594 return handle_dots(nd, nd->last_type);
1595 err = lookup_fast(nd, &path, &inode);
1596 if (unlikely(err)) {
1597 if (err < 0)
1598 goto out_err;
1599
1600 err = lookup_slow(nd, &path);
1601 if (err < 0)
1602 goto out_err;
1603
1604 inode = path.dentry->d_inode;
1605 err = -ENOENT;
1606 if (d_is_negative(path.dentry))
1607 goto out_path_put;
1608 }
1609
1610 if (should_follow_link(path.dentry, follow)) {
1611 if (nd->flags & LOOKUP_RCU) {
1612 if (unlikely(nd->path.mnt != path.mnt ||
1613 unlazy_walk(nd, path.dentry))) {
1614 err = -ECHILD;
1615 goto out_err;
1616 }
1617 }
1618 BUG_ON(inode != path.dentry->d_inode);
1619 nd->link = path;
1620 return 1;
1621 }
1622 path_to_nameidata(&path, nd);
1623 nd->inode = inode;
1624 return 0;
1625
1626 out_path_put:
1627 path_to_nameidata(&path, nd);
1628 out_err:
1629 terminate_walk(nd);
1630 return err;
1631 }
1632
1633 /*
1634 * We can do the critical dentry name comparison and hashing
1635 * operations one word at a time, but we are limited to:
1636 *
1637 * - Architectures with fast unaligned word accesses. We could
1638 * do a "get_unaligned()" if this helps and is sufficiently
1639 * fast.
1640 *
1641 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1642 * do not trap on the (extremely unlikely) case of a page
1643 * crossing operation.
1644 *
1645 * - Furthermore, we need an efficient 64-bit compile for the
1646 * 64-bit case in order to generate the "number of bytes in
1647 * the final mask". Again, that could be replaced with a
1648 * efficient population count instruction or similar.
1649 */
1650 #ifdef CONFIG_DCACHE_WORD_ACCESS
1651
1652 #include <asm/word-at-a-time.h>
1653
1654 #ifdef CONFIG_64BIT
1655
1656 static inline unsigned int fold_hash(unsigned long hash)
1657 {
1658 return hash_64(hash, 32);
1659 }
1660
1661 #else /* 32-bit case */
1662
1663 #define fold_hash(x) (x)
1664
1665 #endif
1666
1667 unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1668 {
1669 unsigned long a, mask;
1670 unsigned long hash = 0;
1671
1672 for (;;) {
1673 a = load_unaligned_zeropad(name);
1674 if (len < sizeof(unsigned long))
1675 break;
1676 hash += a;
1677 hash *= 9;
1678 name += sizeof(unsigned long);
1679 len -= sizeof(unsigned long);
1680 if (!len)
1681 goto done;
1682 }
1683 mask = bytemask_from_count(len);
1684 hash += mask & a;
1685 done:
1686 return fold_hash(hash);
1687 }
1688 EXPORT_SYMBOL(full_name_hash);
1689
1690 /*
1691 * Calculate the length and hash of the path component, and
1692 * return the "hash_len" as the result.
1693 */
1694 static inline u64 hash_name(const char *name)
1695 {
1696 unsigned long a, b, adata, bdata, mask, hash, len;
1697 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
1698
1699 hash = a = 0;
1700 len = -sizeof(unsigned long);
1701 do {
1702 hash = (hash + a) * 9;
1703 len += sizeof(unsigned long);
1704 a = load_unaligned_zeropad(name+len);
1705 b = a ^ REPEAT_BYTE('/');
1706 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
1707
1708 adata = prep_zero_mask(a, adata, &constants);
1709 bdata = prep_zero_mask(b, bdata, &constants);
1710
1711 mask = create_zero_mask(adata | bdata);
1712
1713 hash += a & zero_bytemask(mask);
1714 len += find_zero(mask);
1715 return hashlen_create(fold_hash(hash), len);
1716 }
1717
1718 #else
1719
1720 unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1721 {
1722 unsigned long hash = init_name_hash();
1723 while (len--)
1724 hash = partial_name_hash(*name++, hash);
1725 return end_name_hash(hash);
1726 }
1727 EXPORT_SYMBOL(full_name_hash);
1728
1729 /*
1730 * We know there's a real path component here of at least
1731 * one character.
1732 */
1733 static inline u64 hash_name(const char *name)
1734 {
1735 unsigned long hash = init_name_hash();
1736 unsigned long len = 0, c;
1737
1738 c = (unsigned char)*name;
1739 do {
1740 len++;
1741 hash = partial_name_hash(c, hash);
1742 c = (unsigned char)name[len];
1743 } while (c && c != '/');
1744 return hashlen_create(end_name_hash(hash), len);
1745 }
1746
1747 #endif
1748
1749 /*
1750 * Name resolution.
1751 * This is the basic name resolution function, turning a pathname into
1752 * the final dentry. We expect 'base' to be positive and a directory.
1753 *
1754 * Returns 0 and nd will have valid dentry and mnt on success.
1755 * Returns error and drops reference to input namei data on failure.
1756 */
1757 static int link_path_walk(const char *name, struct nameidata *nd)
1758 {
1759 int err;
1760
1761 while (*name=='/')
1762 name++;
1763 if (!*name)
1764 return 0;
1765
1766 /* At this point we know we have a real path component. */
1767 for(;;) {
1768 u64 hash_len;
1769 int type;
1770
1771 err = may_lookup(nd);
1772 if (err)
1773 break;
1774
1775 hash_len = hash_name(name);
1776
1777 type = LAST_NORM;
1778 if (name[0] == '.') switch (hashlen_len(hash_len)) {
1779 case 2:
1780 if (name[1] == '.') {
1781 type = LAST_DOTDOT;
1782 nd->flags |= LOOKUP_JUMPED;
1783 }
1784 break;
1785 case 1:
1786 type = LAST_DOT;
1787 }
1788 if (likely(type == LAST_NORM)) {
1789 struct dentry *parent = nd->path.dentry;
1790 nd->flags &= ~LOOKUP_JUMPED;
1791 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1792 struct qstr this = { { .hash_len = hash_len }, .name = name };
1793 err = parent->d_op->d_hash(parent, &this);
1794 if (err < 0)
1795 break;
1796 hash_len = this.hash_len;
1797 name = this.name;
1798 }
1799 }
1800
1801 nd->last.hash_len = hash_len;
1802 nd->last.name = name;
1803 nd->last_type = type;
1804
1805 name += hashlen_len(hash_len);
1806 if (!*name)
1807 goto OK;
1808 /*
1809 * If it wasn't NUL, we know it was '/'. Skip that
1810 * slash, and continue until no more slashes.
1811 */
1812 do {
1813 name++;
1814 } while (unlikely(*name == '/'));
1815 if (!*name)
1816 goto OK;
1817
1818 err = walk_component(nd, LOOKUP_FOLLOW);
1819 Walked:
1820 if (err < 0)
1821 goto Err;
1822
1823 if (err) {
1824 const char *s;
1825
1826 err = nd_alloc_stack(nd);
1827 if (unlikely(err)) {
1828 path_to_nameidata(&nd->link, nd);
1829 break;
1830 }
1831
1832 s = get_link(nd);
1833 nd->depth++;
1834
1835 if (unlikely(IS_ERR(s))) {
1836 err = PTR_ERR(s);
1837 nd->depth--;
1838 goto Err;
1839 }
1840 err = 0;
1841 if (unlikely(!s)) {
1842 /* jumped */
1843 nd->depth--;
1844 put_link(nd);
1845 } else {
1846 if (*s == '/') {
1847 if (!nd->root.mnt)
1848 set_root(nd);
1849 path_put(&nd->path);
1850 nd->path = nd->root;
1851 path_get(&nd->root);
1852 nd->flags |= LOOKUP_JUMPED;
1853 while (unlikely(*++s == '/'))
1854 ;
1855 }
1856 nd->inode = nd->path.dentry->d_inode;
1857 nd->stack[nd->depth - 1].name = name;
1858 if (!*s)
1859 goto OK;
1860 name = s;
1861 continue;
1862 }
1863 }
1864 if (!d_can_lookup(nd->path.dentry)) {
1865 err = -ENOTDIR;
1866 break;
1867 }
1868 }
1869 terminate_walk(nd);
1870 Err:
1871 while (unlikely(nd->depth > 1)) {
1872 nd->depth--;
1873 put_link(nd);
1874 }
1875 return err;
1876 OK:
1877 if (unlikely(nd->depth > 1)) {
1878 name = nd->stack[nd->depth - 1].name;
1879 err = walk_component(nd, LOOKUP_FOLLOW);
1880 nd->depth--;
1881 put_link(nd);
1882 goto Walked;
1883 }
1884 return 0;
1885 }
1886
1887 static int path_init(int dfd, const struct filename *name, unsigned int flags,
1888 struct nameidata *nd)
1889 {
1890 int retval = 0;
1891 const char *s = name->name;
1892
1893 nd->last_type = LAST_ROOT; /* if there are only slashes... */
1894 nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT;
1895 nd->depth = 0;
1896 nd->base = NULL;
1897 if (flags & LOOKUP_ROOT) {
1898 struct dentry *root = nd->root.dentry;
1899 struct inode *inode = root->d_inode;
1900 if (*s) {
1901 if (!d_can_lookup(root))
1902 return -ENOTDIR;
1903 retval = inode_permission(inode, MAY_EXEC);
1904 if (retval)
1905 return retval;
1906 }
1907 nd->path = nd->root;
1908 nd->inode = inode;
1909 if (flags & LOOKUP_RCU) {
1910 rcu_read_lock();
1911 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1912 nd->m_seq = read_seqbegin(&mount_lock);
1913 } else {
1914 path_get(&nd->path);
1915 }
1916 goto done;
1917 }
1918
1919 nd->root.mnt = NULL;
1920
1921 nd->m_seq = read_seqbegin(&mount_lock);
1922 if (*s == '/') {
1923 if (flags & LOOKUP_RCU) {
1924 rcu_read_lock();
1925 nd->seq = set_root_rcu(nd);
1926 } else {
1927 set_root(nd);
1928 path_get(&nd->root);
1929 }
1930 nd->path = nd->root;
1931 } else if (dfd == AT_FDCWD) {
1932 if (flags & LOOKUP_RCU) {
1933 struct fs_struct *fs = current->fs;
1934 unsigned seq;
1935
1936 rcu_read_lock();
1937
1938 do {
1939 seq = read_seqcount_begin(&fs->seq);
1940 nd->path = fs->pwd;
1941 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1942 } while (read_seqcount_retry(&fs->seq, seq));
1943 } else {
1944 get_fs_pwd(current->fs, &nd->path);
1945 }
1946 } else {
1947 /* Caller must check execute permissions on the starting path component */
1948 struct fd f = fdget_raw(dfd);
1949 struct dentry *dentry;
1950
1951 if (!f.file)
1952 return -EBADF;
1953
1954 dentry = f.file->f_path.dentry;
1955
1956 if (*s) {
1957 if (!d_can_lookup(dentry)) {
1958 fdput(f);
1959 return -ENOTDIR;
1960 }
1961 }
1962
1963 nd->path = f.file->f_path;
1964 if (flags & LOOKUP_RCU) {
1965 if (f.flags & FDPUT_FPUT)
1966 nd->base = f.file;
1967 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1968 rcu_read_lock();
1969 } else {
1970 path_get(&nd->path);
1971 fdput(f);
1972 }
1973 }
1974
1975 nd->inode = nd->path.dentry->d_inode;
1976 if (!(flags & LOOKUP_RCU))
1977 goto done;
1978 if (likely(!read_seqcount_retry(&nd->path.dentry->d_seq, nd->seq)))
1979 goto done;
1980 if (!(nd->flags & LOOKUP_ROOT))
1981 nd->root.mnt = NULL;
1982 rcu_read_unlock();
1983 return -ECHILD;
1984 done:
1985 current->total_link_count = 0;
1986 nd->depth++;
1987 retval = link_path_walk(s, nd);
1988 nd->depth--;
1989 return retval;
1990 }
1991
1992 static void path_cleanup(struct nameidata *nd)
1993 {
1994 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
1995 path_put(&nd->root);
1996 nd->root.mnt = NULL;
1997 }
1998 if (unlikely(nd->base))
1999 fput(nd->base);
2000 }
2001
2002 static int trailing_symlink(struct nameidata *nd)
2003 {
2004 const char *s;
2005 int error = may_follow_link(&nd->link, nd);
2006 if (unlikely(error))
2007 return error;
2008 nd->flags |= LOOKUP_PARENT;
2009 s = get_link(nd);
2010 if (unlikely(IS_ERR(s)))
2011 return PTR_ERR(s);
2012 nd->depth++;
2013 if (unlikely(!s)) {
2014 nd->depth--;
2015 return 0;
2016 }
2017 if (*s == '/') {
2018 if (!nd->root.mnt)
2019 set_root(nd);
2020 path_put(&nd->path);
2021 nd->path = nd->root;
2022 path_get(&nd->root);
2023 nd->flags |= LOOKUP_JUMPED;
2024 }
2025 nd->inode = nd->path.dentry->d_inode;
2026 error = link_path_walk(s, nd);
2027 if (unlikely(error)) {
2028 nd->depth--;
2029 put_link(nd);
2030 return error;
2031 }
2032 nd->depth--;
2033 return 0;
2034 }
2035
2036 static inline int lookup_last(struct nameidata *nd)
2037 {
2038 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
2039 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2040
2041 nd->flags &= ~LOOKUP_PARENT;
2042 return walk_component(nd, nd->flags & LOOKUP_FOLLOW);
2043 }
2044
2045 /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
2046 static int path_lookupat(int dfd, const struct filename *name,
2047 unsigned int flags, struct nameidata *nd)
2048 {
2049 int err;
2050
2051 /*
2052 * Path walking is largely split up into 2 different synchronisation
2053 * schemes, rcu-walk and ref-walk (explained in
2054 * Documentation/filesystems/path-lookup.txt). These share much of the
2055 * path walk code, but some things particularly setup, cleanup, and
2056 * following mounts are sufficiently divergent that functions are
2057 * duplicated. Typically there is a function foo(), and its RCU
2058 * analogue, foo_rcu().
2059 *
2060 * -ECHILD is the error number of choice (just to avoid clashes) that
2061 * is returned if some aspect of an rcu-walk fails. Such an error must
2062 * be handled by restarting a traditional ref-walk (which will always
2063 * be able to complete).
2064 */
2065 err = path_init(dfd, name, flags, nd);
2066 if (!err && !(flags & LOOKUP_PARENT)) {
2067 err = lookup_last(nd);
2068 while (err > 0) {
2069 err = trailing_symlink(nd);
2070 if (err)
2071 break;
2072 err = lookup_last(nd);
2073 put_link(nd);
2074 }
2075 }
2076
2077 if (!err)
2078 err = complete_walk(nd);
2079
2080 if (!err && nd->flags & LOOKUP_DIRECTORY) {
2081 if (!d_can_lookup(nd->path.dentry)) {
2082 path_put(&nd->path);
2083 err = -ENOTDIR;
2084 }
2085 }
2086
2087 path_cleanup(nd);
2088 return err;
2089 }
2090
2091 static int filename_lookup(int dfd, struct filename *name,
2092 unsigned int flags, struct nameidata *nd)
2093 {
2094 int retval;
2095
2096 set_nameidata(nd);
2097 retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
2098
2099 if (unlikely(retval == -ECHILD))
2100 retval = path_lookupat(dfd, name, flags, nd);
2101 if (unlikely(retval == -ESTALE))
2102 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
2103
2104 if (likely(!retval))
2105 audit_inode(name, nd->path.dentry, flags & LOOKUP_PARENT);
2106 restore_nameidata(nd);
2107 return retval;
2108 }
2109
2110 /* does lookup, returns the object with parent locked */
2111 struct dentry *kern_path_locked(const char *name, struct path *path)
2112 {
2113 struct filename *filename = getname_kernel(name);
2114 struct nameidata nd;
2115 struct dentry *d;
2116 int err;
2117
2118 if (IS_ERR(filename))
2119 return ERR_CAST(filename);
2120
2121 err = filename_lookup(AT_FDCWD, filename, LOOKUP_PARENT, &nd);
2122 if (err) {
2123 d = ERR_PTR(err);
2124 goto out;
2125 }
2126 if (nd.last_type != LAST_NORM) {
2127 path_put(&nd.path);
2128 d = ERR_PTR(-EINVAL);
2129 goto out;
2130 }
2131 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2132 d = __lookup_hash(&nd.last, nd.path.dentry, 0);
2133 if (IS_ERR(d)) {
2134 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2135 path_put(&nd.path);
2136 goto out;
2137 }
2138 *path = nd.path;
2139 out:
2140 putname(filename);
2141 return d;
2142 }
2143
2144 int kern_path(const char *name, unsigned int flags, struct path *path)
2145 {
2146 struct nameidata nd;
2147 struct filename *filename = getname_kernel(name);
2148 int res = PTR_ERR(filename);
2149
2150 if (!IS_ERR(filename)) {
2151 res = filename_lookup(AT_FDCWD, filename, flags, &nd);
2152 putname(filename);
2153 if (!res)
2154 *path = nd.path;
2155 }
2156 return res;
2157 }
2158 EXPORT_SYMBOL(kern_path);
2159
2160 /**
2161 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2162 * @dentry: pointer to dentry of the base directory
2163 * @mnt: pointer to vfs mount of the base directory
2164 * @name: pointer to file name
2165 * @flags: lookup flags
2166 * @path: pointer to struct path to fill
2167 */
2168 int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2169 const char *name, unsigned int flags,
2170 struct path *path)
2171 {
2172 struct filename *filename = getname_kernel(name);
2173 int err = PTR_ERR(filename);
2174
2175 BUG_ON(flags & LOOKUP_PARENT);
2176
2177 /* the first argument of filename_lookup() is ignored with LOOKUP_ROOT */
2178 if (!IS_ERR(filename)) {
2179 struct nameidata nd;
2180 nd.root.dentry = dentry;
2181 nd.root.mnt = mnt;
2182 err = filename_lookup(AT_FDCWD, filename,
2183 flags | LOOKUP_ROOT, &nd);
2184 if (!err)
2185 *path = nd.path;
2186 putname(filename);
2187 }
2188 return err;
2189 }
2190 EXPORT_SYMBOL(vfs_path_lookup);
2191
2192 /**
2193 * lookup_one_len - filesystem helper to lookup single pathname component
2194 * @name: pathname component to lookup
2195 * @base: base directory to lookup from
2196 * @len: maximum length @len should be interpreted to
2197 *
2198 * Note that this routine is purely a helper for filesystem usage and should
2199 * not be called by generic code.
2200 */
2201 struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2202 {
2203 struct qstr this;
2204 unsigned int c;
2205 int err;
2206
2207 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
2208
2209 this.name = name;
2210 this.len = len;
2211 this.hash = full_name_hash(name, len);
2212 if (!len)
2213 return ERR_PTR(-EACCES);
2214
2215 if (unlikely(name[0] == '.')) {
2216 if (len < 2 || (len == 2 && name[1] == '.'))
2217 return ERR_PTR(-EACCES);
2218 }
2219
2220 while (len--) {
2221 c = *(const unsigned char *)name++;
2222 if (c == '/' || c == '\0')
2223 return ERR_PTR(-EACCES);
2224 }
2225 /*
2226 * See if the low-level filesystem might want
2227 * to use its own hash..
2228 */
2229 if (base->d_flags & DCACHE_OP_HASH) {
2230 int err = base->d_op->d_hash(base, &this);
2231 if (err < 0)
2232 return ERR_PTR(err);
2233 }
2234
2235 err = inode_permission(base->d_inode, MAY_EXEC);
2236 if (err)
2237 return ERR_PTR(err);
2238
2239 return __lookup_hash(&this, base, 0);
2240 }
2241 EXPORT_SYMBOL(lookup_one_len);
2242
2243 int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2244 struct path *path, int *empty)
2245 {
2246 struct nameidata nd;
2247 struct filename *tmp = getname_flags(name, flags, empty);
2248 int err = PTR_ERR(tmp);
2249 if (!IS_ERR(tmp)) {
2250
2251 BUG_ON(flags & LOOKUP_PARENT);
2252
2253 err = filename_lookup(dfd, tmp, flags, &nd);
2254 putname(tmp);
2255 if (!err)
2256 *path = nd.path;
2257 }
2258 return err;
2259 }
2260
2261 int user_path_at(int dfd, const char __user *name, unsigned flags,
2262 struct path *path)
2263 {
2264 return user_path_at_empty(dfd, name, flags, path, NULL);
2265 }
2266 EXPORT_SYMBOL(user_path_at);
2267
2268 /*
2269 * NB: most callers don't do anything directly with the reference to the
2270 * to struct filename, but the nd->last pointer points into the name string
2271 * allocated by getname. So we must hold the reference to it until all
2272 * path-walking is complete.
2273 */
2274 static struct filename *
2275 user_path_parent(int dfd, const char __user *path,
2276 struct path *parent,
2277 struct qstr *last,
2278 int *type,
2279 unsigned int flags)
2280 {
2281 struct nameidata nd;
2282 struct filename *s = getname(path);
2283 int error;
2284
2285 /* only LOOKUP_REVAL is allowed in extra flags */
2286 flags &= LOOKUP_REVAL;
2287
2288 if (IS_ERR(s))
2289 return s;
2290
2291 error = filename_lookup(dfd, s, flags | LOOKUP_PARENT, &nd);
2292 if (error) {
2293 putname(s);
2294 return ERR_PTR(error);
2295 }
2296 *parent = nd.path;
2297 *last = nd.last;
2298 *type = nd.last_type;
2299
2300 return s;
2301 }
2302
2303 /**
2304 * mountpoint_last - look up last component for umount
2305 * @nd: pathwalk nameidata - currently pointing at parent directory of "last"
2306 * @path: pointer to container for result
2307 *
2308 * This is a special lookup_last function just for umount. In this case, we
2309 * need to resolve the path without doing any revalidation.
2310 *
2311 * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
2312 * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
2313 * in almost all cases, this lookup will be served out of the dcache. The only
2314 * cases where it won't are if nd->last refers to a symlink or the path is
2315 * bogus and it doesn't exist.
2316 *
2317 * Returns:
2318 * -error: if there was an error during lookup. This includes -ENOENT if the
2319 * lookup found a negative dentry. The nd->path reference will also be
2320 * put in this case.
2321 *
2322 * 0: if we successfully resolved nd->path and found it to not to be a
2323 * symlink that needs to be followed. "path" will also be populated.
2324 * The nd->path reference will also be put.
2325 *
2326 * 1: if we successfully resolved nd->last and found it to be a symlink
2327 * that needs to be followed. "path" will be populated with the path
2328 * to the link, and nd->path will *not* be put.
2329 */
2330 static int
2331 mountpoint_last(struct nameidata *nd, struct path *path)
2332 {
2333 int error = 0;
2334 struct dentry *dentry;
2335 struct dentry *dir = nd->path.dentry;
2336
2337 /* If we're in rcuwalk, drop out of it to handle last component */
2338 if (nd->flags & LOOKUP_RCU) {
2339 if (unlazy_walk(nd, NULL)) {
2340 error = -ECHILD;
2341 goto out;
2342 }
2343 }
2344
2345 nd->flags &= ~LOOKUP_PARENT;
2346
2347 if (unlikely(nd->last_type != LAST_NORM)) {
2348 error = handle_dots(nd, nd->last_type);
2349 if (error)
2350 goto out;
2351 dentry = dget(nd->path.dentry);
2352 goto done;
2353 }
2354
2355 mutex_lock(&dir->d_inode->i_mutex);
2356 dentry = d_lookup(dir, &nd->last);
2357 if (!dentry) {
2358 /*
2359 * No cached dentry. Mounted dentries are pinned in the cache,
2360 * so that means that this dentry is probably a symlink or the
2361 * path doesn't actually point to a mounted dentry.
2362 */
2363 dentry = d_alloc(dir, &nd->last);
2364 if (!dentry) {
2365 error = -ENOMEM;
2366 mutex_unlock(&dir->d_inode->i_mutex);
2367 goto out;
2368 }
2369 dentry = lookup_real(dir->d_inode, dentry, nd->flags);
2370 error = PTR_ERR(dentry);
2371 if (IS_ERR(dentry)) {
2372 mutex_unlock(&dir->d_inode->i_mutex);
2373 goto out;
2374 }
2375 }
2376 mutex_unlock(&dir->d_inode->i_mutex);
2377
2378 done:
2379 if (d_is_negative(dentry)) {
2380 error = -ENOENT;
2381 dput(dentry);
2382 goto out;
2383 }
2384 path->dentry = dentry;
2385 path->mnt = nd->path.mnt;
2386 if (should_follow_link(dentry, nd->flags & LOOKUP_FOLLOW)) {
2387 nd->link = *path;
2388 return 1;
2389 }
2390 mntget(path->mnt);
2391 follow_mount(path);
2392 error = 0;
2393 out:
2394 terminate_walk(nd);
2395 return error;
2396 }
2397
2398 /**
2399 * path_mountpoint - look up a path to be umounted
2400 * @dfd: directory file descriptor to start walk from
2401 * @name: full pathname to walk
2402 * @path: pointer to container for result
2403 * @flags: lookup flags
2404 *
2405 * Look up the given name, but don't attempt to revalidate the last component.
2406 * Returns 0 and "path" will be valid on success; Returns error otherwise.
2407 */
2408 static int
2409 path_mountpoint(int dfd, const struct filename *name, struct path *path,
2410 struct nameidata *nd, unsigned int flags)
2411 {
2412 int err = path_init(dfd, name, flags, nd);
2413 if (unlikely(err))
2414 goto out;
2415
2416 err = mountpoint_last(nd, path);
2417 while (err > 0) {
2418 err = trailing_symlink(nd);
2419 if (err)
2420 break;
2421 err = mountpoint_last(nd, path);
2422 put_link(nd);
2423 }
2424 out:
2425 path_cleanup(nd);
2426 return err;
2427 }
2428
2429 static int
2430 filename_mountpoint(int dfd, struct filename *name, struct path *path,
2431 unsigned int flags)
2432 {
2433 struct nameidata nd;
2434 int error;
2435 if (IS_ERR(name))
2436 return PTR_ERR(name);
2437 set_nameidata(&nd);
2438 error = path_mountpoint(dfd, name, path, &nd, flags | LOOKUP_RCU);
2439 if (unlikely(error == -ECHILD))
2440 error = path_mountpoint(dfd, name, path, &nd, flags);
2441 if (unlikely(error == -ESTALE))
2442 error = path_mountpoint(dfd, name, path, &nd, flags | LOOKUP_REVAL);
2443 if (likely(!error))
2444 audit_inode(name, path->dentry, 0);
2445 restore_nameidata(&nd);
2446 putname(name);
2447 return error;
2448 }
2449
2450 /**
2451 * user_path_mountpoint_at - lookup a path from userland in order to umount it
2452 * @dfd: directory file descriptor
2453 * @name: pathname from userland
2454 * @flags: lookup flags
2455 * @path: pointer to container to hold result
2456 *
2457 * A umount is a special case for path walking. We're not actually interested
2458 * in the inode in this situation, and ESTALE errors can be a problem. We
2459 * simply want track down the dentry and vfsmount attached at the mountpoint
2460 * and avoid revalidating the last component.
2461 *
2462 * Returns 0 and populates "path" on success.
2463 */
2464 int
2465 user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
2466 struct path *path)
2467 {
2468 return filename_mountpoint(dfd, getname(name), path, flags);
2469 }
2470
2471 int
2472 kern_path_mountpoint(int dfd, const char *name, struct path *path,
2473 unsigned int flags)
2474 {
2475 return filename_mountpoint(dfd, getname_kernel(name), path, flags);
2476 }
2477 EXPORT_SYMBOL(kern_path_mountpoint);
2478
2479 int __check_sticky(struct inode *dir, struct inode *inode)
2480 {
2481 kuid_t fsuid = current_fsuid();
2482
2483 if (uid_eq(inode->i_uid, fsuid))
2484 return 0;
2485 if (uid_eq(dir->i_uid, fsuid))
2486 return 0;
2487 return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
2488 }
2489 EXPORT_SYMBOL(__check_sticky);
2490
2491 /*
2492 * Check whether we can remove a link victim from directory dir, check
2493 * whether the type of victim is right.
2494 * 1. We can't do it if dir is read-only (done in permission())
2495 * 2. We should have write and exec permissions on dir
2496 * 3. We can't remove anything from append-only dir
2497 * 4. We can't do anything with immutable dir (done in permission())
2498 * 5. If the sticky bit on dir is set we should either
2499 * a. be owner of dir, or
2500 * b. be owner of victim, or
2501 * c. have CAP_FOWNER capability
2502 * 6. If the victim is append-only or immutable we can't do antyhing with
2503 * links pointing to it.
2504 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2505 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2506 * 9. We can't remove a root or mountpoint.
2507 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2508 * nfs_async_unlink().
2509 */
2510 static int may_delete(struct inode *dir, struct dentry *victim, bool isdir)
2511 {
2512 struct inode *inode = victim->d_inode;
2513 int error;
2514
2515 if (d_is_negative(victim))
2516 return -ENOENT;
2517 BUG_ON(!inode);
2518
2519 BUG_ON(victim->d_parent->d_inode != dir);
2520 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
2521
2522 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
2523 if (error)
2524 return error;
2525 if (IS_APPEND(dir))
2526 return -EPERM;
2527
2528 if (check_sticky(dir, inode) || IS_APPEND(inode) ||
2529 IS_IMMUTABLE(inode) || IS_SWAPFILE(inode))
2530 return -EPERM;
2531 if (isdir) {
2532 if (!d_is_dir(victim))
2533 return -ENOTDIR;
2534 if (IS_ROOT(victim))
2535 return -EBUSY;
2536 } else if (d_is_dir(victim))
2537 return -EISDIR;
2538 if (IS_DEADDIR(dir))
2539 return -ENOENT;
2540 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2541 return -EBUSY;
2542 return 0;
2543 }
2544
2545 /* Check whether we can create an object with dentry child in directory
2546 * dir.
2547 * 1. We can't do it if child already exists (open has special treatment for
2548 * this case, but since we are inlined it's OK)
2549 * 2. We can't do it if dir is read-only (done in permission())
2550 * 3. We should have write and exec permissions on dir
2551 * 4. We can't do it if dir is immutable (done in permission())
2552 */
2553 static inline int may_create(struct inode *dir, struct dentry *child)
2554 {
2555 audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
2556 if (child->d_inode)
2557 return -EEXIST;
2558 if (IS_DEADDIR(dir))
2559 return -ENOENT;
2560 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
2561 }
2562
2563 /*
2564 * p1 and p2 should be directories on the same fs.
2565 */
2566 struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2567 {
2568 struct dentry *p;
2569
2570 if (p1 == p2) {
2571 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2572 return NULL;
2573 }
2574
2575 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
2576
2577 p = d_ancestor(p2, p1);
2578 if (p) {
2579 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
2580 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
2581 return p;
2582 }
2583
2584 p = d_ancestor(p1, p2);
2585 if (p) {
2586 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2587 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
2588 return p;
2589 }
2590
2591 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2592 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT2);
2593 return NULL;
2594 }
2595 EXPORT_SYMBOL(lock_rename);
2596
2597 void unlock_rename(struct dentry *p1, struct dentry *p2)
2598 {
2599 mutex_unlock(&p1->d_inode->i_mutex);
2600 if (p1 != p2) {
2601 mutex_unlock(&p2->d_inode->i_mutex);
2602 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
2603 }
2604 }
2605 EXPORT_SYMBOL(unlock_rename);
2606
2607 int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
2608 bool want_excl)
2609 {
2610 int error = may_create(dir, dentry);
2611 if (error)
2612 return error;
2613
2614 if (!dir->i_op->create)
2615 return -EACCES; /* shouldn't it be ENOSYS? */
2616 mode &= S_IALLUGO;
2617 mode |= S_IFREG;
2618 error = security_inode_create(dir, dentry, mode);
2619 if (error)
2620 return error;
2621 error = dir->i_op->create(dir, dentry, mode, want_excl);
2622 if (!error)
2623 fsnotify_create(dir, dentry);
2624 return error;
2625 }
2626 EXPORT_SYMBOL(vfs_create);
2627
2628 static int may_open(struct path *path, int acc_mode, int flag)
2629 {
2630 struct dentry *dentry = path->dentry;
2631 struct inode *inode = dentry->d_inode;
2632 int error;
2633
2634 /* O_PATH? */
2635 if (!acc_mode)
2636 return 0;
2637
2638 if (!inode)
2639 return -ENOENT;
2640
2641 switch (inode->i_mode & S_IFMT) {
2642 case S_IFLNK:
2643 return -ELOOP;
2644 case S_IFDIR:
2645 if (acc_mode & MAY_WRITE)
2646 return -EISDIR;
2647 break;
2648 case S_IFBLK:
2649 case S_IFCHR:
2650 if (path->mnt->mnt_flags & MNT_NODEV)
2651 return -EACCES;
2652 /*FALLTHRU*/
2653 case S_IFIFO:
2654 case S_IFSOCK:
2655 flag &= ~O_TRUNC;
2656 break;
2657 }
2658
2659 error = inode_permission(inode, acc_mode);
2660 if (error)
2661 return error;
2662
2663 /*
2664 * An append-only file must be opened in append mode for writing.
2665 */
2666 if (IS_APPEND(inode)) {
2667 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
2668 return -EPERM;
2669 if (flag & O_TRUNC)
2670 return -EPERM;
2671 }
2672
2673 /* O_NOATIME can only be set by the owner or superuser */
2674 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
2675 return -EPERM;
2676
2677 return 0;
2678 }
2679
2680 static int handle_truncate(struct file *filp)
2681 {
2682 struct path *path = &filp->f_path;
2683 struct inode *inode = path->dentry->d_inode;
2684 int error = get_write_access(inode);
2685 if (error)
2686 return error;
2687 /*
2688 * Refuse to truncate files with mandatory locks held on them.
2689 */
2690 error = locks_verify_locked(filp);
2691 if (!error)
2692 error = security_path_truncate(path);
2693 if (!error) {
2694 error = do_truncate(path->dentry, 0,
2695 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
2696 filp);
2697 }
2698 put_write_access(inode);
2699 return error;
2700 }
2701
2702 static inline int open_to_namei_flags(int flag)
2703 {
2704 if ((flag & O_ACCMODE) == 3)
2705 flag--;
2706 return flag;
2707 }
2708
2709 static int may_o_create(struct path *dir, struct dentry *dentry, umode_t mode)
2710 {
2711 int error = security_path_mknod(dir, dentry, mode, 0);
2712 if (error)
2713 return error;
2714
2715 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2716 if (error)
2717 return error;
2718
2719 return security_inode_create(dir->dentry->d_inode, dentry, mode);
2720 }
2721
2722 /*
2723 * Attempt to atomically look up, create and open a file from a negative
2724 * dentry.
2725 *
2726 * Returns 0 if successful. The file will have been created and attached to
2727 * @file by the filesystem calling finish_open().
2728 *
2729 * Returns 1 if the file was looked up only or didn't need creating. The
2730 * caller will need to perform the open themselves. @path will have been
2731 * updated to point to the new dentry. This may be negative.
2732 *
2733 * Returns an error code otherwise.
2734 */
2735 static int atomic_open(struct nameidata *nd, struct dentry *dentry,
2736 struct path *path, struct file *file,
2737 const struct open_flags *op,
2738 bool got_write, bool need_lookup,
2739 int *opened)
2740 {
2741 struct inode *dir = nd->path.dentry->d_inode;
2742 unsigned open_flag = open_to_namei_flags(op->open_flag);
2743 umode_t mode;
2744 int error;
2745 int acc_mode;
2746 int create_error = 0;
2747 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
2748 bool excl;
2749
2750 BUG_ON(dentry->d_inode);
2751
2752 /* Don't create child dentry for a dead directory. */
2753 if (unlikely(IS_DEADDIR(dir))) {
2754 error = -ENOENT;
2755 goto out;
2756 }
2757
2758 mode = op->mode;
2759 if ((open_flag & O_CREAT) && !IS_POSIXACL(dir))
2760 mode &= ~current_umask();
2761
2762 excl = (open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT);
2763 if (excl)
2764 open_flag &= ~O_TRUNC;
2765
2766 /*
2767 * Checking write permission is tricky, bacuse we don't know if we are
2768 * going to actually need it: O_CREAT opens should work as long as the
2769 * file exists. But checking existence breaks atomicity. The trick is
2770 * to check access and if not granted clear O_CREAT from the flags.
2771 *
2772 * Another problem is returing the "right" error value (e.g. for an
2773 * O_EXCL open we want to return EEXIST not EROFS).
2774 */
2775 if (((open_flag & (O_CREAT | O_TRUNC)) ||
2776 (open_flag & O_ACCMODE) != O_RDONLY) && unlikely(!got_write)) {
2777 if (!(open_flag & O_CREAT)) {
2778 /*
2779 * No O_CREATE -> atomicity not a requirement -> fall
2780 * back to lookup + open
2781 */
2782 goto no_open;
2783 } else if (open_flag & (O_EXCL | O_TRUNC)) {
2784 /* Fall back and fail with the right error */
2785 create_error = -EROFS;
2786 goto no_open;
2787 } else {
2788 /* No side effects, safe to clear O_CREAT */
2789 create_error = -EROFS;
2790 open_flag &= ~O_CREAT;
2791 }
2792 }
2793
2794 if (open_flag & O_CREAT) {
2795 error = may_o_create(&nd->path, dentry, mode);
2796 if (error) {
2797 create_error = error;
2798 if (open_flag & O_EXCL)
2799 goto no_open;
2800 open_flag &= ~O_CREAT;
2801 }
2802 }
2803
2804 if (nd->flags & LOOKUP_DIRECTORY)
2805 open_flag |= O_DIRECTORY;
2806
2807 file->f_path.dentry = DENTRY_NOT_SET;
2808 file->f_path.mnt = nd->path.mnt;
2809 error = dir->i_op->atomic_open(dir, dentry, file, open_flag, mode,
2810 opened);
2811 if (error < 0) {
2812 if (create_error && error == -ENOENT)
2813 error = create_error;
2814 goto out;
2815 }
2816
2817 if (error) { /* returned 1, that is */
2818 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
2819 error = -EIO;
2820 goto out;
2821 }
2822 if (file->f_path.dentry) {
2823 dput(dentry);
2824 dentry = file->f_path.dentry;
2825 }
2826 if (*opened & FILE_CREATED)
2827 fsnotify_create(dir, dentry);
2828 if (!dentry->d_inode) {
2829 WARN_ON(*opened & FILE_CREATED);
2830 if (create_error) {
2831 error = create_error;
2832 goto out;
2833 }
2834 } else {
2835 if (excl && !(*opened & FILE_CREATED)) {
2836 error = -EEXIST;
2837 goto out;
2838 }
2839 }
2840 goto looked_up;
2841 }
2842
2843 /*
2844 * We didn't have the inode before the open, so check open permission
2845 * here.
2846 */
2847 acc_mode = op->acc_mode;
2848 if (*opened & FILE_CREATED) {
2849 WARN_ON(!(open_flag & O_CREAT));
2850 fsnotify_create(dir, dentry);
2851 acc_mode = MAY_OPEN;
2852 }
2853 error = may_open(&file->f_path, acc_mode, open_flag);
2854 if (error)
2855 fput(file);
2856
2857 out:
2858 dput(dentry);
2859 return error;
2860
2861 no_open:
2862 if (need_lookup) {
2863 dentry = lookup_real(dir, dentry, nd->flags);
2864 if (IS_ERR(dentry))
2865 return PTR_ERR(dentry);
2866
2867 if (create_error) {
2868 int open_flag = op->open_flag;
2869
2870 error = create_error;
2871 if ((open_flag & O_EXCL)) {
2872 if (!dentry->d_inode)
2873 goto out;
2874 } else if (!dentry->d_inode) {
2875 goto out;
2876 } else if ((open_flag & O_TRUNC) &&
2877 d_is_reg(dentry)) {
2878 goto out;
2879 }
2880 /* will fail later, go on to get the right error */
2881 }
2882 }
2883 looked_up:
2884 path->dentry = dentry;
2885 path->mnt = nd->path.mnt;
2886 return 1;
2887 }
2888
2889 /*
2890 * Look up and maybe create and open the last component.
2891 *
2892 * Must be called with i_mutex held on parent.
2893 *
2894 * Returns 0 if the file was successfully atomically created (if necessary) and
2895 * opened. In this case the file will be returned attached to @file.
2896 *
2897 * Returns 1 if the file was not completely opened at this time, though lookups
2898 * and creations will have been performed and the dentry returned in @path will
2899 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
2900 * specified then a negative dentry may be returned.
2901 *
2902 * An error code is returned otherwise.
2903 *
2904 * FILE_CREATE will be set in @*opened if the dentry was created and will be
2905 * cleared otherwise prior to returning.
2906 */
2907 static int lookup_open(struct nameidata *nd, struct path *path,
2908 struct file *file,
2909 const struct open_flags *op,
2910 bool got_write, int *opened)
2911 {
2912 struct dentry *dir = nd->path.dentry;
2913 struct inode *dir_inode = dir->d_inode;
2914 struct dentry *dentry;
2915 int error;
2916 bool need_lookup;
2917
2918 *opened &= ~FILE_CREATED;
2919 dentry = lookup_dcache(&nd->last, dir, nd->flags, &need_lookup);
2920 if (IS_ERR(dentry))
2921 return PTR_ERR(dentry);
2922
2923 /* Cached positive dentry: will open in f_op->open */
2924 if (!need_lookup && dentry->d_inode)
2925 goto out_no_open;
2926
2927 if ((nd->flags & LOOKUP_OPEN) && dir_inode->i_op->atomic_open) {
2928 return atomic_open(nd, dentry, path, file, op, got_write,
2929 need_lookup, opened);
2930 }
2931
2932 if (need_lookup) {
2933 BUG_ON(dentry->d_inode);
2934
2935 dentry = lookup_real(dir_inode, dentry, nd->flags);
2936 if (IS_ERR(dentry))
2937 return PTR_ERR(dentry);
2938 }
2939
2940 /* Negative dentry, just create the file */
2941 if (!dentry->d_inode && (op->open_flag & O_CREAT)) {
2942 umode_t mode = op->mode;
2943 if (!IS_POSIXACL(dir->d_inode))
2944 mode &= ~current_umask();
2945 /*
2946 * This write is needed to ensure that a
2947 * rw->ro transition does not occur between
2948 * the time when the file is created and when
2949 * a permanent write count is taken through
2950 * the 'struct file' in finish_open().
2951 */
2952 if (!got_write) {
2953 error = -EROFS;
2954 goto out_dput;
2955 }
2956 *opened |= FILE_CREATED;
2957 error = security_path_mknod(&nd->path, dentry, mode, 0);
2958 if (error)
2959 goto out_dput;
2960 error = vfs_create(dir->d_inode, dentry, mode,
2961 nd->flags & LOOKUP_EXCL);
2962 if (error)
2963 goto out_dput;
2964 }
2965 out_no_open:
2966 path->dentry = dentry;
2967 path->mnt = nd->path.mnt;
2968 return 1;
2969
2970 out_dput:
2971 dput(dentry);
2972 return error;
2973 }
2974
2975 /*
2976 * Handle the last step of open()
2977 */
2978 static int do_last(struct nameidata *nd,
2979 struct file *file, const struct open_flags *op,
2980 int *opened, struct filename *name)
2981 {
2982 struct dentry *dir = nd->path.dentry;
2983 int open_flag = op->open_flag;
2984 bool will_truncate = (open_flag & O_TRUNC) != 0;
2985 bool got_write = false;
2986 int acc_mode = op->acc_mode;
2987 struct inode *inode;
2988 struct path save_parent = { .dentry = NULL, .mnt = NULL };
2989 struct path path;
2990 bool retried = false;
2991 int error;
2992
2993 nd->flags &= ~LOOKUP_PARENT;
2994 nd->flags |= op->intent;
2995
2996 if (nd->last_type != LAST_NORM) {
2997 error = handle_dots(nd, nd->last_type);
2998 if (error)
2999 return error;
3000 goto finish_open;
3001 }
3002
3003 if (!(open_flag & O_CREAT)) {
3004 if (nd->last.name[nd->last.len])
3005 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
3006 /* we _can_ be in RCU mode here */
3007 error = lookup_fast(nd, &path, &inode);
3008 if (likely(!error))
3009 goto finish_lookup;
3010
3011 if (error < 0)
3012 goto out;
3013
3014 BUG_ON(nd->inode != dir->d_inode);
3015 } else {
3016 /* create side of things */
3017 /*
3018 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
3019 * has been cleared when we got to the last component we are
3020 * about to look up
3021 */
3022 error = complete_walk(nd);
3023 if (error)
3024 return error;
3025
3026 audit_inode(name, dir, LOOKUP_PARENT);
3027 error = -EISDIR;
3028 /* trailing slashes? */
3029 if (nd->last.name[nd->last.len])
3030 goto out;
3031 }
3032
3033 retry_lookup:
3034 if (op->open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
3035 error = mnt_want_write(nd->path.mnt);
3036 if (!error)
3037 got_write = true;
3038 /*
3039 * do _not_ fail yet - we might not need that or fail with
3040 * a different error; let lookup_open() decide; we'll be
3041 * dropping this one anyway.
3042 */
3043 }
3044 mutex_lock(&dir->d_inode->i_mutex);
3045 error = lookup_open(nd, &path, file, op, got_write, opened);
3046 mutex_unlock(&dir->d_inode->i_mutex);
3047
3048 if (error <= 0) {
3049 if (error)
3050 goto out;
3051
3052 if ((*opened & FILE_CREATED) ||
3053 !S_ISREG(file_inode(file)->i_mode))
3054 will_truncate = false;
3055
3056 audit_inode(name, file->f_path.dentry, 0);
3057 goto opened;
3058 }
3059
3060 if (*opened & FILE_CREATED) {
3061 /* Don't check for write permission, don't truncate */
3062 open_flag &= ~O_TRUNC;
3063 will_truncate = false;
3064 acc_mode = MAY_OPEN;
3065 path_to_nameidata(&path, nd);
3066 goto finish_open_created;
3067 }
3068
3069 /*
3070 * create/update audit record if it already exists.
3071 */
3072 if (d_is_positive(path.dentry))
3073 audit_inode(name, path.dentry, 0);
3074
3075 /*
3076 * If atomic_open() acquired write access it is dropped now due to
3077 * possible mount and symlink following (this might be optimized away if
3078 * necessary...)
3079 */
3080 if (got_write) {
3081 mnt_drop_write(nd->path.mnt);
3082 got_write = false;
3083 }
3084
3085 error = -EEXIST;
3086 if ((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))
3087 goto exit_dput;
3088
3089 error = follow_managed(&path, nd->flags);
3090 if (error < 0)
3091 goto exit_dput;
3092
3093 if (error)
3094 nd->flags |= LOOKUP_JUMPED;
3095
3096 BUG_ON(nd->flags & LOOKUP_RCU);
3097 inode = path.dentry->d_inode;
3098 error = -ENOENT;
3099 if (d_is_negative(path.dentry)) {
3100 path_to_nameidata(&path, nd);
3101 goto out;
3102 }
3103 finish_lookup:
3104 if (should_follow_link(path.dentry, nd->flags & LOOKUP_FOLLOW)) {
3105 if (nd->flags & LOOKUP_RCU) {
3106 if (unlikely(nd->path.mnt != path.mnt ||
3107 unlazy_walk(nd, path.dentry))) {
3108 error = -ECHILD;
3109 goto out;
3110 }
3111 }
3112 BUG_ON(inode != path.dentry->d_inode);
3113 nd->link = path;
3114 return 1;
3115 }
3116
3117 if (unlikely(d_is_symlink(path.dentry)) && !(open_flag & O_PATH)) {
3118 path_to_nameidata(&path, nd);
3119 error = -ELOOP;
3120 goto out;
3121 }
3122
3123 if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path.mnt) {
3124 path_to_nameidata(&path, nd);
3125 } else {
3126 save_parent.dentry = nd->path.dentry;
3127 save_parent.mnt = mntget(path.mnt);
3128 nd->path.dentry = path.dentry;
3129
3130 }
3131 nd->inode = inode;
3132 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
3133 finish_open:
3134 error = complete_walk(nd);
3135 if (error) {
3136 path_put(&save_parent);
3137 return error;
3138 }
3139 audit_inode(name, nd->path.dentry, 0);
3140 error = -EISDIR;
3141 if ((open_flag & O_CREAT) && d_is_dir(nd->path.dentry))
3142 goto out;
3143 error = -ENOTDIR;
3144 if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
3145 goto out;
3146 if (!d_is_reg(nd->path.dentry))
3147 will_truncate = false;
3148
3149 if (will_truncate) {
3150 error = mnt_want_write(nd->path.mnt);
3151 if (error)
3152 goto out;
3153 got_write = true;
3154 }
3155 finish_open_created:
3156 error = may_open(&nd->path, acc_mode, open_flag);
3157 if (error)
3158 goto out;
3159
3160 BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */
3161 error = vfs_open(&nd->path, file, current_cred());
3162 if (!error) {
3163 *opened |= FILE_OPENED;
3164 } else {
3165 if (error == -EOPENSTALE)
3166 goto stale_open;
3167 goto out;
3168 }
3169 opened:
3170 error = open_check_o_direct(file);
3171 if (error)
3172 goto exit_fput;
3173 error = ima_file_check(file, op->acc_mode, *opened);
3174 if (error)
3175 goto exit_fput;
3176
3177 if (will_truncate) {
3178 error = handle_truncate(file);
3179 if (error)
3180 goto exit_fput;
3181 }
3182 out:
3183 if (got_write)
3184 mnt_drop_write(nd->path.mnt);
3185 path_put(&save_parent);
3186 terminate_walk(nd);
3187 return error;
3188
3189 exit_dput:
3190 path_put_conditional(&path, nd);
3191 goto out;
3192 exit_fput:
3193 fput(file);
3194 goto out;
3195
3196 stale_open:
3197 /* If no saved parent or already retried then can't retry */
3198 if (!save_parent.dentry || retried)
3199 goto out;
3200
3201 BUG_ON(save_parent.dentry != dir);
3202 path_put(&nd->path);
3203 nd->path = save_parent;
3204 nd->inode = dir->d_inode;
3205 save_parent.mnt = NULL;
3206 save_parent.dentry = NULL;
3207 if (got_write) {
3208 mnt_drop_write(nd->path.mnt);
3209 got_write = false;
3210 }
3211 retried = true;
3212 goto retry_lookup;
3213 }
3214
3215 static int do_tmpfile(int dfd, struct filename *pathname,
3216 struct nameidata *nd, int flags,
3217 const struct open_flags *op,
3218 struct file *file, int *opened)
3219 {
3220 static const struct qstr name = QSTR_INIT("/", 1);
3221 struct dentry *dentry, *child;
3222 struct inode *dir;
3223 int error = path_lookupat(dfd, pathname,
3224 flags | LOOKUP_DIRECTORY, nd);
3225 if (unlikely(error))
3226 return error;
3227 error = mnt_want_write(nd->path.mnt);
3228 if (unlikely(error))
3229 goto out;
3230 /* we want directory to be writable */
3231 error = inode_permission(nd->inode, MAY_WRITE | MAY_EXEC);
3232 if (error)
3233 goto out2;
3234 dentry = nd->path.dentry;
3235 dir = dentry->d_inode;
3236 if (!dir->i_op->tmpfile) {
3237 error = -EOPNOTSUPP;
3238 goto out2;
3239 }
3240 child = d_alloc(dentry, &name);
3241 if (unlikely(!child)) {
3242 error = -ENOMEM;
3243 goto out2;
3244 }
3245 nd->flags &= ~LOOKUP_DIRECTORY;
3246 nd->flags |= op->intent;
3247 dput(nd->path.dentry);
3248 nd->path.dentry = child;
3249 error = dir->i_op->tmpfile(dir, nd->path.dentry, op->mode);
3250 if (error)
3251 goto out2;
3252 audit_inode(pathname, nd->path.dentry, 0);
3253 /* Don't check for other permissions, the inode was just created */
3254 error = may_open(&nd->path, MAY_OPEN, op->open_flag);
3255 if (error)
3256 goto out2;
3257 file->f_path.mnt = nd->path.mnt;
3258 error = finish_open(file, nd->path.dentry, NULL, opened);
3259 if (error)
3260 goto out2;
3261 error = open_check_o_direct(file);
3262 if (error) {
3263 fput(file);
3264 } else if (!(op->open_flag & O_EXCL)) {
3265 struct inode *inode = file_inode(file);
3266 spin_lock(&inode->i_lock);
3267 inode->i_state |= I_LINKABLE;
3268 spin_unlock(&inode->i_lock);
3269 }
3270 out2:
3271 mnt_drop_write(nd->path.mnt);
3272 out:
3273 path_put(&nd->path);
3274 return error;
3275 }
3276
3277 static struct file *path_openat(int dfd, struct filename *pathname,
3278 struct nameidata *nd, const struct open_flags *op, int flags)
3279 {
3280 struct file *file;
3281 int opened = 0;
3282 int error;
3283
3284 file = get_empty_filp();
3285 if (IS_ERR(file))
3286 return file;
3287
3288 file->f_flags = op->open_flag;
3289
3290 if (unlikely(file->f_flags & __O_TMPFILE)) {
3291 error = do_tmpfile(dfd, pathname, nd, flags, op, file, &opened);
3292 goto out2;
3293 }
3294
3295 error = path_init(dfd, pathname, flags, nd);
3296 if (unlikely(error))
3297 goto out;
3298
3299 error = do_last(nd, file, op, &opened, pathname);
3300 while (unlikely(error > 0)) { /* trailing symlink */
3301 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
3302 error = trailing_symlink(nd);
3303 if (unlikely(error))
3304 break;
3305 error = do_last(nd, file, op, &opened, pathname);
3306 put_link(nd);
3307 }
3308 out:
3309 path_cleanup(nd);
3310 out2:
3311 if (!(opened & FILE_OPENED)) {
3312 BUG_ON(!error);
3313 put_filp(file);
3314 }
3315 if (unlikely(error)) {
3316 if (error == -EOPENSTALE) {
3317 if (flags & LOOKUP_RCU)
3318 error = -ECHILD;
3319 else
3320 error = -ESTALE;
3321 }
3322 file = ERR_PTR(error);
3323 }
3324 return file;
3325 }
3326
3327 struct file *do_filp_open(int dfd, struct filename *pathname,
3328 const struct open_flags *op)
3329 {
3330 struct nameidata nd;
3331 int flags = op->lookup_flags;
3332 struct file *filp;
3333
3334 set_nameidata(&nd);
3335 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
3336 if (unlikely(filp == ERR_PTR(-ECHILD)))
3337 filp = path_openat(dfd, pathname, &nd, op, flags);
3338 if (unlikely(filp == ERR_PTR(-ESTALE)))
3339 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
3340 restore_nameidata(&nd);
3341 return filp;
3342 }
3343
3344 struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
3345 const char *name, const struct open_flags *op)
3346 {
3347 struct nameidata nd;
3348 struct file *file;
3349 struct filename *filename;
3350 int flags = op->lookup_flags | LOOKUP_ROOT;
3351
3352 nd.root.mnt = mnt;
3353 nd.root.dentry = dentry;
3354 set_nameidata(&nd);
3355
3356 if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
3357 return ERR_PTR(-ELOOP);
3358
3359 filename = getname_kernel(name);
3360 if (unlikely(IS_ERR(filename)))
3361 return ERR_CAST(filename);
3362
3363 file = path_openat(-1, filename, &nd, op, flags | LOOKUP_RCU);
3364 if (unlikely(file == ERR_PTR(-ECHILD)))
3365 file = path_openat(-1, filename, &nd, op, flags);
3366 if (unlikely(file == ERR_PTR(-ESTALE)))
3367 file = path_openat(-1, filename, &nd, op, flags | LOOKUP_REVAL);
3368 restore_nameidata(&nd);
3369 putname(filename);
3370 return file;
3371 }
3372
3373 static struct dentry *filename_create(int dfd, struct filename *name,
3374 struct path *path, unsigned int lookup_flags)
3375 {
3376 struct dentry *dentry = ERR_PTR(-EEXIST);
3377 struct nameidata nd;
3378 int err2;
3379 int error;
3380 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3381
3382 /*
3383 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3384 * other flags passed in are ignored!
3385 */
3386 lookup_flags &= LOOKUP_REVAL;
3387
3388 error = filename_lookup(dfd, name, LOOKUP_PARENT|lookup_flags, &nd);
3389 if (error)
3390 return ERR_PTR(error);
3391
3392 /*
3393 * Yucky last component or no last component at all?
3394 * (foo/., foo/.., /////)
3395 */
3396 if (nd.last_type != LAST_NORM)
3397 goto out;
3398 nd.flags &= ~LOOKUP_PARENT;
3399 nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
3400
3401 /* don't fail immediately if it's r/o, at least try to report other errors */
3402 err2 = mnt_want_write(nd.path.mnt);
3403 /*
3404 * Do the final lookup.
3405 */
3406 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3407 dentry = __lookup_hash(&nd.last, nd.path.dentry, nd.flags);
3408 if (IS_ERR(dentry))
3409 goto unlock;
3410
3411 error = -EEXIST;
3412 if (d_is_positive(dentry))
3413 goto fail;
3414
3415 /*
3416 * Special case - lookup gave negative, but... we had foo/bar/
3417 * From the vfs_mknod() POV we just have a negative dentry -
3418 * all is fine. Let's be bastards - you had / on the end, you've
3419 * been asking for (non-existent) directory. -ENOENT for you.
3420 */
3421 if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
3422 error = -ENOENT;
3423 goto fail;
3424 }
3425 if (unlikely(err2)) {
3426 error = err2;
3427 goto fail;
3428 }
3429 *path = nd.path;
3430 return dentry;
3431 fail:
3432 dput(dentry);
3433 dentry = ERR_PTR(error);
3434 unlock:
3435 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
3436 if (!err2)
3437 mnt_drop_write(nd.path.mnt);
3438 out:
3439 path_put(&nd.path);
3440 return dentry;
3441 }
3442
3443 struct dentry *kern_path_create(int dfd, const char *pathname,
3444 struct path *path, unsigned int lookup_flags)
3445 {
3446 struct filename *filename = getname_kernel(pathname);
3447 struct dentry *res;
3448
3449 if (IS_ERR(filename))
3450 return ERR_CAST(filename);
3451 res = filename_create(dfd, filename, path, lookup_flags);
3452 putname(filename);
3453 return res;
3454 }
3455 EXPORT_SYMBOL(kern_path_create);
3456
3457 void done_path_create(struct path *path, struct dentry *dentry)
3458 {
3459 dput(dentry);
3460 mutex_unlock(&path->dentry->d_inode->i_mutex);
3461 mnt_drop_write(path->mnt);
3462 path_put(path);
3463 }
3464 EXPORT_SYMBOL(done_path_create);
3465
3466 struct dentry *user_path_create(int dfd, const char __user *pathname,
3467 struct path *path, unsigned int lookup_flags)
3468 {
3469 struct filename *tmp = getname(pathname);
3470 struct dentry *res;
3471 if (IS_ERR(tmp))
3472 return ERR_CAST(tmp);
3473 res = filename_create(dfd, tmp, path, lookup_flags);
3474 putname(tmp);
3475 return res;
3476 }
3477 EXPORT_SYMBOL(user_path_create);
3478
3479 int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
3480 {
3481 int error = may_create(dir, dentry);
3482
3483 if (error)
3484 return error;
3485
3486 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
3487 return -EPERM;
3488
3489 if (!dir->i_op->mknod)
3490 return -EPERM;
3491
3492 error = devcgroup_inode_mknod(mode, dev);
3493 if (error)
3494 return error;
3495
3496 error = security_inode_mknod(dir, dentry, mode, dev);
3497 if (error)
3498 return error;
3499
3500 error = dir->i_op->mknod(dir, dentry, mode, dev);
3501 if (!error)
3502 fsnotify_create(dir, dentry);
3503 return error;
3504 }
3505 EXPORT_SYMBOL(vfs_mknod);
3506
3507 static int may_mknod(umode_t mode)
3508 {
3509 switch (mode & S_IFMT) {
3510 case S_IFREG:
3511 case S_IFCHR:
3512 case S_IFBLK:
3513 case S_IFIFO:
3514 case S_IFSOCK:
3515 case 0: /* zero mode translates to S_IFREG */
3516 return 0;
3517 case S_IFDIR:
3518 return -EPERM;
3519 default:
3520 return -EINVAL;
3521 }
3522 }
3523
3524 SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
3525 unsigned, dev)
3526 {
3527 struct dentry *dentry;
3528 struct path path;
3529 int error;
3530 unsigned int lookup_flags = 0;
3531
3532 error = may_mknod(mode);
3533 if (error)
3534 return error;
3535 retry:
3536 dentry = user_path_create(dfd, filename, &path, lookup_flags);
3537 if (IS_ERR(dentry))
3538 return PTR_ERR(dentry);
3539
3540 if (!IS_POSIXACL(path.dentry->d_inode))
3541 mode &= ~current_umask();
3542 error = security_path_mknod(&path, dentry, mode, dev);
3543 if (error)
3544 goto out;
3545 switch (mode & S_IFMT) {
3546 case 0: case S_IFREG:
3547 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
3548 break;
3549 case S_IFCHR: case S_IFBLK:
3550 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
3551 new_decode_dev(dev));
3552 break;
3553 case S_IFIFO: case S_IFSOCK:
3554 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
3555 break;
3556 }
3557 out:
3558 done_path_create(&path, dentry);
3559 if (retry_estale(error, lookup_flags)) {
3560 lookup_flags |= LOOKUP_REVAL;
3561 goto retry;
3562 }
3563 return error;
3564 }
3565
3566 SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
3567 {
3568 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3569 }
3570
3571 int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
3572 {
3573 int error = may_create(dir, dentry);
3574 unsigned max_links = dir->i_sb->s_max_links;
3575
3576 if (error)
3577 return error;
3578
3579 if (!dir->i_op->mkdir)
3580 return -EPERM;
3581
3582 mode &= (S_IRWXUGO|S_ISVTX);
3583 error = security_inode_mkdir(dir, dentry, mode);
3584 if (error)
3585 return error;
3586
3587 if (max_links && dir->i_nlink >= max_links)
3588 return -EMLINK;
3589
3590 error = dir->i_op->mkdir(dir, dentry, mode);
3591 if (!error)
3592 fsnotify_mkdir(dir, dentry);
3593 return error;
3594 }
3595 EXPORT_SYMBOL(vfs_mkdir);
3596
3597 SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
3598 {
3599 struct dentry *dentry;
3600 struct path path;
3601 int error;
3602 unsigned int lookup_flags = LOOKUP_DIRECTORY;
3603
3604 retry:
3605 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
3606 if (IS_ERR(dentry))
3607 return PTR_ERR(dentry);
3608
3609 if (!IS_POSIXACL(path.dentry->d_inode))
3610 mode &= ~current_umask();
3611 error = security_path_mkdir(&path, dentry, mode);
3612 if (!error)
3613 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
3614 done_path_create(&path, dentry);
3615 if (retry_estale(error, lookup_flags)) {
3616 lookup_flags |= LOOKUP_REVAL;
3617 goto retry;
3618 }
3619 return error;
3620 }
3621
3622 SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
3623 {
3624 return sys_mkdirat(AT_FDCWD, pathname, mode);
3625 }
3626
3627 /*
3628 * The dentry_unhash() helper will try to drop the dentry early: we
3629 * should have a usage count of 1 if we're the only user of this
3630 * dentry, and if that is true (possibly after pruning the dcache),
3631 * then we drop the dentry now.
3632 *
3633 * A low-level filesystem can, if it choses, legally
3634 * do a
3635 *
3636 * if (!d_unhashed(dentry))
3637 * return -EBUSY;
3638 *
3639 * if it cannot handle the case of removing a directory
3640 * that is still in use by something else..
3641 */
3642 void dentry_unhash(struct dentry *dentry)
3643 {
3644 shrink_dcache_parent(dentry);
3645 spin_lock(&dentry->d_lock);
3646 if (dentry->d_lockref.count == 1)
3647 __d_drop(dentry);
3648 spin_unlock(&dentry->d_lock);
3649 }
3650 EXPORT_SYMBOL(dentry_unhash);
3651
3652 int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3653 {
3654 int error = may_delete(dir, dentry, 1);
3655
3656 if (error)
3657 return error;
3658
3659 if (!dir->i_op->rmdir)
3660 return -EPERM;
3661
3662 dget(dentry);
3663 mutex_lock(&dentry->d_inode->i_mutex);
3664
3665 error = -EBUSY;
3666 if (is_local_mountpoint(dentry))
3667 goto out;
3668
3669 error = security_inode_rmdir(dir, dentry);
3670 if (error)
3671 goto out;
3672
3673 shrink_dcache_parent(dentry);
3674 error = dir->i_op->rmdir(dir, dentry);
3675 if (error)
3676 goto out;
3677
3678 dentry->d_inode->i_flags |= S_DEAD;
3679 dont_mount(dentry);
3680 detach_mounts(dentry);
3681
3682 out:
3683 mutex_unlock(&dentry->d_inode->i_mutex);
3684 dput(dentry);
3685 if (!error)
3686 d_delete(dentry);
3687 return error;
3688 }
3689 EXPORT_SYMBOL(vfs_rmdir);
3690
3691 static long do_rmdir(int dfd, const char __user *pathname)
3692 {
3693 int error = 0;
3694 struct filename *name;
3695 struct dentry *dentry;
3696 struct path path;
3697 struct qstr last;
3698 int type;
3699 unsigned int lookup_flags = 0;
3700 retry:
3701 name = user_path_parent(dfd, pathname,
3702 &path, &last, &type, lookup_flags);
3703 if (IS_ERR(name))
3704 return PTR_ERR(name);
3705
3706 switch (type) {
3707 case LAST_DOTDOT:
3708 error = -ENOTEMPTY;
3709 goto exit1;
3710 case LAST_DOT:
3711 error = -EINVAL;
3712 goto exit1;
3713 case LAST_ROOT:
3714 error = -EBUSY;
3715 goto exit1;
3716 }
3717
3718 error = mnt_want_write(path.mnt);
3719 if (error)
3720 goto exit1;
3721
3722 mutex_lock_nested(&path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3723 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
3724 error = PTR_ERR(dentry);
3725 if (IS_ERR(dentry))
3726 goto exit2;
3727 if (!dentry->d_inode) {
3728 error = -ENOENT;
3729 goto exit3;
3730 }
3731 error = security_path_rmdir(&path, dentry);
3732 if (error)
3733 goto exit3;
3734 error = vfs_rmdir(path.dentry->d_inode, dentry);
3735 exit3:
3736 dput(dentry);
3737 exit2:
3738 mutex_unlock(&path.dentry->d_inode->i_mutex);
3739 mnt_drop_write(path.mnt);
3740 exit1:
3741 path_put(&path);
3742 putname(name);
3743 if (retry_estale(error, lookup_flags)) {
3744 lookup_flags |= LOOKUP_REVAL;
3745 goto retry;
3746 }
3747 return error;
3748 }
3749
3750 SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
3751 {
3752 return do_rmdir(AT_FDCWD, pathname);
3753 }
3754
3755 /**
3756 * vfs_unlink - unlink a filesystem object
3757 * @dir: parent directory
3758 * @dentry: victim
3759 * @delegated_inode: returns victim inode, if the inode is delegated.
3760 *
3761 * The caller must hold dir->i_mutex.
3762 *
3763 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
3764 * return a reference to the inode in delegated_inode. The caller
3765 * should then break the delegation on that inode and retry. Because
3766 * breaking a delegation may take a long time, the caller should drop
3767 * dir->i_mutex before doing so.
3768 *
3769 * Alternatively, a caller may pass NULL for delegated_inode. This may
3770 * be appropriate for callers that expect the underlying filesystem not
3771 * to be NFS exported.
3772 */
3773 int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
3774 {
3775 struct inode *target = dentry->d_inode;
3776 int error = may_delete(dir, dentry, 0);
3777
3778 if (error)
3779 return error;
3780
3781 if (!dir->i_op->unlink)
3782 return -EPERM;
3783
3784 mutex_lock(&target->i_mutex);
3785 if (is_local_mountpoint(dentry))
3786 error = -EBUSY;
3787 else {
3788 error = security_inode_unlink(dir, dentry);
3789 if (!error) {
3790 error = try_break_deleg(target, delegated_inode);
3791 if (error)
3792 goto out;
3793 error = dir->i_op->unlink(dir, dentry);
3794 if (!error) {
3795 dont_mount(dentry);
3796 detach_mounts(dentry);
3797 }
3798 }
3799 }
3800 out:
3801 mutex_unlock(&target->i_mutex);
3802
3803 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3804 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
3805 fsnotify_link_count(target);
3806 d_delete(dentry);
3807 }
3808
3809 return error;
3810 }
3811 EXPORT_SYMBOL(vfs_unlink);
3812
3813 /*
3814 * Make sure that the actual truncation of the file will occur outside its
3815 * directory's i_mutex. Truncate can take a long time if there is a lot of
3816 * writeout happening, and we don't want to prevent access to the directory
3817 * while waiting on the I/O.
3818 */
3819 static long do_unlinkat(int dfd, const char __user *pathname)
3820 {
3821 int error;
3822 struct filename *name;
3823 struct dentry *dentry;
3824 struct path path;
3825 struct qstr last;
3826 int type;
3827 struct inode *inode = NULL;
3828 struct inode *delegated_inode = NULL;
3829 unsigned int lookup_flags = 0;
3830 retry:
3831 name = user_path_parent(dfd, pathname,
3832 &path, &last, &type, lookup_flags);
3833 if (IS_ERR(name))
3834 return PTR_ERR(name);
3835
3836 error = -EISDIR;
3837 if (type != LAST_NORM)
3838 goto exit1;
3839
3840 error = mnt_want_write(path.mnt);
3841 if (error)
3842 goto exit1;
3843 retry_deleg:
3844 mutex_lock_nested(&path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3845 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
3846 error = PTR_ERR(dentry);
3847 if (!IS_ERR(dentry)) {
3848 /* Why not before? Because we want correct error value */
3849 if (last.name[last.len])
3850 goto slashes;
3851 inode = dentry->d_inode;
3852 if (d_is_negative(dentry))
3853 goto slashes;
3854 ihold(inode);
3855 error = security_path_unlink(&path, dentry);
3856 if (error)
3857 goto exit2;
3858 error = vfs_unlink(path.dentry->d_inode, dentry, &delegated_inode);
3859 exit2:
3860 dput(dentry);
3861 }
3862 mutex_unlock(&path.dentry->d_inode->i_mutex);
3863 if (inode)
3864 iput(inode); /* truncate the inode here */
3865 inode = NULL;
3866 if (delegated_inode) {
3867 error = break_deleg_wait(&delegated_inode);
3868 if (!error)
3869 goto retry_deleg;
3870 }
3871 mnt_drop_write(path.mnt);
3872 exit1:
3873 path_put(&path);
3874 putname(name);
3875 if (retry_estale(error, lookup_flags)) {
3876 lookup_flags |= LOOKUP_REVAL;
3877 inode = NULL;
3878 goto retry;
3879 }
3880 return error;
3881
3882 slashes:
3883 if (d_is_negative(dentry))
3884 error = -ENOENT;
3885 else if (d_is_dir(dentry))
3886 error = -EISDIR;
3887 else
3888 error = -ENOTDIR;
3889 goto exit2;
3890 }
3891
3892 SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
3893 {
3894 if ((flag & ~AT_REMOVEDIR) != 0)
3895 return -EINVAL;
3896
3897 if (flag & AT_REMOVEDIR)
3898 return do_rmdir(dfd, pathname);
3899
3900 return do_unlinkat(dfd, pathname);
3901 }
3902
3903 SYSCALL_DEFINE1(unlink, const char __user *, pathname)
3904 {
3905 return do_unlinkat(AT_FDCWD, pathname);
3906 }
3907
3908 int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
3909 {
3910 int error = may_create(dir, dentry);
3911
3912 if (error)
3913 return error;
3914
3915 if (!dir->i_op->symlink)
3916 return -EPERM;
3917
3918 error = security_inode_symlink(dir, dentry, oldname);
3919 if (error)
3920 return error;
3921
3922 error = dir->i_op->symlink(dir, dentry, oldname);
3923 if (!error)
3924 fsnotify_create(dir, dentry);
3925 return error;
3926 }
3927 EXPORT_SYMBOL(vfs_symlink);
3928
3929 SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
3930 int, newdfd, const char __user *, newname)
3931 {
3932 int error;
3933 struct filename *from;
3934 struct dentry *dentry;
3935 struct path path;
3936 unsigned int lookup_flags = 0;
3937
3938 from = getname(oldname);
3939 if (IS_ERR(from))
3940 return PTR_ERR(from);
3941 retry:
3942 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
3943 error = PTR_ERR(dentry);
3944 if (IS_ERR(dentry))
3945 goto out_putname;
3946
3947 error = security_path_symlink(&path, dentry, from->name);
3948 if (!error)
3949 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
3950 done_path_create(&path, dentry);
3951 if (retry_estale(error, lookup_flags)) {
3952 lookup_flags |= LOOKUP_REVAL;
3953 goto retry;
3954 }
3955 out_putname:
3956 putname(from);
3957 return error;
3958 }
3959
3960 SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
3961 {
3962 return sys_symlinkat(oldname, AT_FDCWD, newname);
3963 }
3964
3965 /**
3966 * vfs_link - create a new link
3967 * @old_dentry: object to be linked
3968 * @dir: new parent
3969 * @new_dentry: where to create the new link
3970 * @delegated_inode: returns inode needing a delegation break
3971 *
3972 * The caller must hold dir->i_mutex
3973 *
3974 * If vfs_link discovers a delegation on the to-be-linked file in need
3975 * of breaking, it will return -EWOULDBLOCK and return a reference to the
3976 * inode in delegated_inode. The caller should then break the delegation
3977 * and retry. Because breaking a delegation may take a long time, the
3978 * caller should drop the i_mutex before doing so.
3979 *
3980 * Alternatively, a caller may pass NULL for delegated_inode. This may
3981 * be appropriate for callers that expect the underlying filesystem not
3982 * to be NFS exported.
3983 */
3984 int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
3985 {
3986 struct inode *inode = old_dentry->d_inode;
3987 unsigned max_links = dir->i_sb->s_max_links;
3988 int error;
3989
3990 if (!inode)
3991 return -ENOENT;
3992
3993 error = may_create(dir, new_dentry);
3994 if (error)
3995 return error;
3996
3997 if (dir->i_sb != inode->i_sb)
3998 return -EXDEV;
3999
4000 /*
4001 * A link to an append-only or immutable file cannot be created.
4002 */
4003 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4004 return -EPERM;
4005 if (!dir->i_op->link)
4006 return -EPERM;
4007 if (S_ISDIR(inode->i_mode))
4008 return -EPERM;
4009
4010 error = security_inode_link(old_dentry, dir, new_dentry);
4011 if (error)
4012 return error;
4013
4014 mutex_lock(&inode->i_mutex);
4015 /* Make sure we don't allow creating hardlink to an unlinked file */
4016 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
4017 error = -ENOENT;
4018 else if (max_links && inode->i_nlink >= max_links)
4019 error = -EMLINK;
4020 else {
4021 error = try_break_deleg(inode, delegated_inode);
4022 if (!error)
4023 error = dir->i_op->link(old_dentry, dir, new_dentry);
4024 }
4025
4026 if (!error && (inode->i_state & I_LINKABLE)) {
4027 spin_lock(&inode->i_lock);
4028 inode->i_state &= ~I_LINKABLE;
4029 spin_unlock(&inode->i_lock);
4030 }
4031 mutex_unlock(&inode->i_mutex);
4032 if (!error)
4033 fsnotify_link(dir, inode, new_dentry);
4034 return error;
4035 }
4036 EXPORT_SYMBOL(vfs_link);
4037
4038 /*
4039 * Hardlinks are often used in delicate situations. We avoid
4040 * security-related surprises by not following symlinks on the
4041 * newname. --KAB
4042 *
4043 * We don't follow them on the oldname either to be compatible
4044 * with linux 2.0, and to avoid hard-linking to directories
4045 * and other special files. --ADM
4046 */
4047 SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
4048 int, newdfd, const char __user *, newname, int, flags)
4049 {
4050 struct dentry *new_dentry;
4051 struct path old_path, new_path;
4052 struct inode *delegated_inode = NULL;
4053 int how = 0;
4054 int error;
4055
4056 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
4057 return -EINVAL;
4058 /*
4059 * To use null names we require CAP_DAC_READ_SEARCH
4060 * This ensures that not everyone will be able to create
4061 * handlink using the passed filedescriptor.
4062 */
4063 if (flags & AT_EMPTY_PATH) {
4064 if (!capable(CAP_DAC_READ_SEARCH))
4065 return -ENOENT;
4066 how = LOOKUP_EMPTY;
4067 }
4068
4069 if (flags & AT_SYMLINK_FOLLOW)
4070 how |= LOOKUP_FOLLOW;
4071 retry:
4072 error = user_path_at(olddfd, oldname, how, &old_path);
4073 if (error)
4074 return error;
4075
4076 new_dentry = user_path_create(newdfd, newname, &new_path,
4077 (how & LOOKUP_REVAL));
4078 error = PTR_ERR(new_dentry);
4079 if (IS_ERR(new_dentry))
4080 goto out;
4081
4082 error = -EXDEV;
4083 if (old_path.mnt != new_path.mnt)
4084 goto out_dput;
4085 error = may_linkat(&old_path);
4086 if (unlikely(error))
4087 goto out_dput;
4088 error = security_path_link(old_path.dentry, &new_path, new_dentry);
4089 if (error)
4090 goto out_dput;
4091 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
4092 out_dput:
4093 done_path_create(&new_path, new_dentry);
4094 if (delegated_inode) {
4095 error = break_deleg_wait(&delegated_inode);
4096 if (!error) {
4097 path_put(&old_path);
4098 goto retry;
4099 }
4100 }
4101 if (retry_estale(error, how)) {
4102 path_put(&old_path);
4103 how |= LOOKUP_REVAL;
4104 goto retry;
4105 }
4106 out:
4107 path_put(&old_path);
4108
4109 return error;
4110 }
4111
4112 SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
4113 {
4114 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
4115 }
4116
4117 /**
4118 * vfs_rename - rename a filesystem object
4119 * @old_dir: parent of source
4120 * @old_dentry: source
4121 * @new_dir: parent of destination
4122 * @new_dentry: destination
4123 * @delegated_inode: returns an inode needing a delegation break
4124 * @flags: rename flags
4125 *
4126 * The caller must hold multiple mutexes--see lock_rename()).
4127 *
4128 * If vfs_rename discovers a delegation in need of breaking at either
4129 * the source or destination, it will return -EWOULDBLOCK and return a
4130 * reference to the inode in delegated_inode. The caller should then
4131 * break the delegation and retry. Because breaking a delegation may
4132 * take a long time, the caller should drop all locks before doing
4133 * so.
4134 *
4135 * Alternatively, a caller may pass NULL for delegated_inode. This may
4136 * be appropriate for callers that expect the underlying filesystem not
4137 * to be NFS exported.
4138 *
4139 * The worst of all namespace operations - renaming directory. "Perverted"
4140 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4141 * Problems:
4142 * a) we can get into loop creation.
4143 * b) race potential - two innocent renames can create a loop together.
4144 * That's where 4.4 screws up. Current fix: serialization on
4145 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
4146 * story.
4147 * c) we have to lock _four_ objects - parents and victim (if it exists),
4148 * and source (if it is not a directory).
4149 * And that - after we got ->i_mutex on parents (until then we don't know
4150 * whether the target exists). Solution: try to be smart with locking
4151 * order for inodes. We rely on the fact that tree topology may change
4152 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
4153 * move will be locked. Thus we can rank directories by the tree
4154 * (ancestors first) and rank all non-directories after them.
4155 * That works since everybody except rename does "lock parent, lookup,
4156 * lock child" and rename is under ->s_vfs_rename_mutex.
4157 * HOWEVER, it relies on the assumption that any object with ->lookup()
4158 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4159 * we'd better make sure that there's no link(2) for them.
4160 * d) conversion from fhandle to dentry may come in the wrong moment - when
4161 * we are removing the target. Solution: we will have to grab ->i_mutex
4162 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
4163 * ->i_mutex on parents, which works but leads to some truly excessive
4164 * locking].
4165 */
4166 int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
4167 struct inode *new_dir, struct dentry *new_dentry,
4168 struct inode **delegated_inode, unsigned int flags)
4169 {
4170 int error;
4171 bool is_dir = d_is_dir(old_dentry);
4172 const unsigned char *old_name;
4173 struct inode *source = old_dentry->d_inode;
4174 struct inode *target = new_dentry->d_inode;
4175 bool new_is_dir = false;
4176 unsigned max_links = new_dir->i_sb->s_max_links;
4177
4178 if (source == target)
4179 return 0;
4180
4181 error = may_delete(old_dir, old_dentry, is_dir);
4182 if (error)
4183 return error;
4184
4185 if (!target) {
4186 error = may_create(new_dir, new_dentry);
4187 } else {
4188 new_is_dir = d_is_dir(new_dentry);
4189
4190 if (!(flags & RENAME_EXCHANGE))
4191 error = may_delete(new_dir, new_dentry, is_dir);
4192 else
4193 error = may_delete(new_dir, new_dentry, new_is_dir);
4194 }
4195 if (error)
4196 return error;
4197
4198 if (!old_dir->i_op->rename && !old_dir->i_op->rename2)
4199 return -EPERM;
4200
4201 if (flags && !old_dir->i_op->rename2)
4202 return -EINVAL;
4203
4204 /*
4205 * If we are going to change the parent - check write permissions,
4206 * we'll need to flip '..'.
4207 */
4208 if (new_dir != old_dir) {
4209 if (is_dir) {
4210 error = inode_permission(source, MAY_WRITE);
4211 if (error)
4212 return error;
4213 }
4214 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
4215 error = inode_permission(target, MAY_WRITE);
4216 if (error)
4217 return error;
4218 }
4219 }
4220
4221 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
4222 flags);
4223 if (error)
4224 return error;
4225
4226 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
4227 dget(new_dentry);
4228 if (!is_dir || (flags & RENAME_EXCHANGE))
4229 lock_two_nondirectories(source, target);
4230 else if (target)
4231 mutex_lock(&target->i_mutex);
4232
4233 error = -EBUSY;
4234 if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry))
4235 goto out;
4236
4237 if (max_links && new_dir != old_dir) {
4238 error = -EMLINK;
4239 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
4240 goto out;
4241 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4242 old_dir->i_nlink >= max_links)
4243 goto out;
4244 }
4245 if (is_dir && !(flags & RENAME_EXCHANGE) && target)
4246 shrink_dcache_parent(new_dentry);
4247 if (!is_dir) {
4248 error = try_break_deleg(source, delegated_inode);
4249 if (error)
4250 goto out;
4251 }
4252 if (target && !new_is_dir) {
4253 error = try_break_deleg(target, delegated_inode);
4254 if (error)
4255 goto out;
4256 }
4257 if (!old_dir->i_op->rename2) {
4258 error = old_dir->i_op->rename(old_dir, old_dentry,
4259 new_dir, new_dentry);
4260 } else {
4261 WARN_ON(old_dir->i_op->rename != NULL);
4262 error = old_dir->i_op->rename2(old_dir, old_dentry,
4263 new_dir, new_dentry, flags);
4264 }
4265 if (error)
4266 goto out;
4267
4268 if (!(flags & RENAME_EXCHANGE) && target) {
4269 if (is_dir)
4270 target->i_flags |= S_DEAD;
4271 dont_mount(new_dentry);
4272 detach_mounts(new_dentry);
4273 }
4274 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4275 if (!(flags & RENAME_EXCHANGE))
4276 d_move(old_dentry, new_dentry);
4277 else
4278 d_exchange(old_dentry, new_dentry);
4279 }
4280 out:
4281 if (!is_dir || (flags & RENAME_EXCHANGE))
4282 unlock_two_nondirectories(source, target);
4283 else if (target)
4284 mutex_unlock(&target->i_mutex);
4285 dput(new_dentry);
4286 if (!error) {
4287 fsnotify_move(old_dir, new_dir, old_name, is_dir,
4288 !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4289 if (flags & RENAME_EXCHANGE) {
4290 fsnotify_move(new_dir, old_dir, old_dentry->d_name.name,
4291 new_is_dir, NULL, new_dentry);
4292 }
4293 }
4294 fsnotify_oldname_free(old_name);
4295
4296 return error;
4297 }
4298 EXPORT_SYMBOL(vfs_rename);
4299
4300 SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4301 int, newdfd, const char __user *, newname, unsigned int, flags)
4302 {
4303 struct dentry *old_dentry, *new_dentry;
4304 struct dentry *trap;
4305 struct path old_path, new_path;
4306 struct qstr old_last, new_last;
4307 int old_type, new_type;
4308 struct inode *delegated_inode = NULL;
4309 struct filename *from;
4310 struct filename *to;
4311 unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET;
4312 bool should_retry = false;
4313 int error;
4314
4315 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
4316 return -EINVAL;
4317
4318 if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) &&
4319 (flags & RENAME_EXCHANGE))
4320 return -EINVAL;
4321
4322 if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD))
4323 return -EPERM;
4324
4325 if (flags & RENAME_EXCHANGE)
4326 target_flags = 0;
4327
4328 retry:
4329 from = user_path_parent(olddfd, oldname,
4330 &old_path, &old_last, &old_type, lookup_flags);
4331 if (IS_ERR(from)) {
4332 error = PTR_ERR(from);
4333 goto exit;
4334 }
4335
4336 to = user_path_parent(newdfd, newname,
4337 &new_path, &new_last, &new_type, lookup_flags);
4338 if (IS_ERR(to)) {
4339 error = PTR_ERR(to);
4340 goto exit1;
4341 }
4342
4343 error = -EXDEV;
4344 if (old_path.mnt != new_path.mnt)
4345 goto exit2;
4346
4347 error = -EBUSY;
4348 if (old_type != LAST_NORM)
4349 goto exit2;
4350
4351 if (flags & RENAME_NOREPLACE)
4352 error = -EEXIST;
4353 if (new_type != LAST_NORM)
4354 goto exit2;
4355
4356 error = mnt_want_write(old_path.mnt);
4357 if (error)
4358 goto exit2;
4359
4360 retry_deleg:
4361 trap = lock_rename(new_path.dentry, old_path.dentry);
4362
4363 old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags);
4364 error = PTR_ERR(old_dentry);
4365 if (IS_ERR(old_dentry))
4366 goto exit3;
4367 /* source must exist */
4368 error = -ENOENT;
4369 if (d_is_negative(old_dentry))
4370 goto exit4;
4371 new_dentry = __lookup_hash(&new_last, new_path.dentry, lookup_flags | target_flags);
4372 error = PTR_ERR(new_dentry);
4373 if (IS_ERR(new_dentry))
4374 goto exit4;
4375 error = -EEXIST;
4376 if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
4377 goto exit5;
4378 if (flags & RENAME_EXCHANGE) {
4379 error = -ENOENT;
4380 if (d_is_negative(new_dentry))
4381 goto exit5;
4382
4383 if (!d_is_dir(new_dentry)) {
4384 error = -ENOTDIR;
4385 if (new_last.name[new_last.len])
4386 goto exit5;
4387 }
4388 }
4389 /* unless the source is a directory trailing slashes give -ENOTDIR */
4390 if (!d_is_dir(old_dentry)) {
4391 error = -ENOTDIR;
4392 if (old_last.name[old_last.len])
4393 goto exit5;
4394 if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len])
4395 goto exit5;
4396 }
4397 /* source should not be ancestor of target */
4398 error = -EINVAL;
4399 if (old_dentry == trap)
4400 goto exit5;
4401 /* target should not be an ancestor of source */
4402 if (!(flags & RENAME_EXCHANGE))
4403 error = -ENOTEMPTY;
4404 if (new_dentry == trap)
4405 goto exit5;
4406
4407 error = security_path_rename(&old_path, old_dentry,
4408 &new_path, new_dentry, flags);
4409 if (error)
4410 goto exit5;
4411 error = vfs_rename(old_path.dentry->d_inode, old_dentry,
4412 new_path.dentry->d_inode, new_dentry,
4413 &delegated_inode, flags);
4414 exit5:
4415 dput(new_dentry);
4416 exit4:
4417 dput(old_dentry);
4418 exit3:
4419 unlock_rename(new_path.dentry, old_path.dentry);
4420 if (delegated_inode) {
4421 error = break_deleg_wait(&delegated_inode);
4422 if (!error)
4423 goto retry_deleg;
4424 }
4425 mnt_drop_write(old_path.mnt);
4426 exit2:
4427 if (retry_estale(error, lookup_flags))
4428 should_retry = true;
4429 path_put(&new_path);
4430 putname(to);
4431 exit1:
4432 path_put(&old_path);
4433 putname(from);
4434 if (should_retry) {
4435 should_retry = false;
4436 lookup_flags |= LOOKUP_REVAL;
4437 goto retry;
4438 }
4439 exit:
4440 return error;
4441 }
4442
4443 SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4444 int, newdfd, const char __user *, newname)
4445 {
4446 return sys_renameat2(olddfd, oldname, newdfd, newname, 0);
4447 }
4448
4449 SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
4450 {
4451 return sys_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
4452 }
4453
4454 int vfs_whiteout(struct inode *dir, struct dentry *dentry)
4455 {
4456 int error = may_create(dir, dentry);
4457 if (error)
4458 return error;
4459
4460 if (!dir->i_op->mknod)
4461 return -EPERM;
4462
4463 return dir->i_op->mknod(dir, dentry,
4464 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
4465 }
4466 EXPORT_SYMBOL(vfs_whiteout);
4467
4468 int readlink_copy(char __user *buffer, int buflen, const char *link)
4469 {
4470 int len = PTR_ERR(link);
4471 if (IS_ERR(link))
4472 goto out;
4473
4474 len = strlen(link);
4475 if (len > (unsigned) buflen)
4476 len = buflen;
4477 if (copy_to_user(buffer, link, len))
4478 len = -EFAULT;
4479 out:
4480 return len;
4481 }
4482 EXPORT_SYMBOL(readlink_copy);
4483
4484 /*
4485 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
4486 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
4487 * using) it for any given inode is up to filesystem.
4488 */
4489 int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4490 {
4491 void *cookie;
4492 const char *link = dentry->d_inode->i_link;
4493 int res;
4494
4495 if (!link) {
4496 link = dentry->d_inode->i_op->follow_link(dentry, &cookie, NULL);
4497 if (IS_ERR(link))
4498 return PTR_ERR(link);
4499 }
4500 res = readlink_copy(buffer, buflen, link);
4501 if (cookie && dentry->d_inode->i_op->put_link)
4502 dentry->d_inode->i_op->put_link(dentry, cookie);
4503 return res;
4504 }
4505 EXPORT_SYMBOL(generic_readlink);
4506
4507 /* get the link contents into pagecache */
4508 static char *page_getlink(struct dentry * dentry, struct page **ppage)
4509 {
4510 char *kaddr;
4511 struct page *page;
4512 struct address_space *mapping = dentry->d_inode->i_mapping;
4513 page = read_mapping_page(mapping, 0, NULL);
4514 if (IS_ERR(page))
4515 return (char*)page;
4516 *ppage = page;
4517 kaddr = kmap(page);
4518 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
4519 return kaddr;
4520 }
4521
4522 int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4523 {
4524 struct page *page = NULL;
4525 int res = readlink_copy(buffer, buflen, page_getlink(dentry, &page));
4526 if (page) {
4527 kunmap(page);
4528 page_cache_release(page);
4529 }
4530 return res;
4531 }
4532 EXPORT_SYMBOL(page_readlink);
4533
4534 const char *page_follow_link_light(struct dentry *dentry, void **cookie, struct nameidata *nd)
4535 {
4536 struct page *page = NULL;
4537 char *res = page_getlink(dentry, &page);
4538 if (!IS_ERR(res))
4539 *cookie = page;
4540 return res;
4541 }
4542 EXPORT_SYMBOL(page_follow_link_light);
4543
4544 void page_put_link(struct dentry *dentry, void *cookie)
4545 {
4546 struct page *page = cookie;
4547 kunmap(page);
4548 page_cache_release(page);
4549 }
4550 EXPORT_SYMBOL(page_put_link);
4551
4552 /*
4553 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4554 */
4555 int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
4556 {
4557 struct address_space *mapping = inode->i_mapping;
4558 struct page *page;
4559 void *fsdata;
4560 int err;
4561 char *kaddr;
4562 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
4563 if (nofs)
4564 flags |= AOP_FLAG_NOFS;
4565
4566 retry:
4567 err = pagecache_write_begin(NULL, mapping, 0, len-1,
4568 flags, &page, &fsdata);
4569 if (err)
4570 goto fail;
4571
4572 kaddr = kmap_atomic(page);
4573 memcpy(kaddr, symname, len-1);
4574 kunmap_atomic(kaddr);
4575
4576 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4577 page, fsdata);
4578 if (err < 0)
4579 goto fail;
4580 if (err < len-1)
4581 goto retry;
4582
4583 mark_inode_dirty(inode);
4584 return 0;
4585 fail:
4586 return err;
4587 }
4588 EXPORT_SYMBOL(__page_symlink);
4589
4590 int page_symlink(struct inode *inode, const char *symname, int len)
4591 {
4592 return __page_symlink(inode, symname, len,
4593 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
4594 }
4595 EXPORT_SYMBOL(page_symlink);
4596
4597 const struct inode_operations page_symlink_inode_operations = {
4598 .readlink = generic_readlink,
4599 .follow_link = page_follow_link_light,
4600 .put_link = page_put_link,
4601 };
4602 EXPORT_SYMBOL(page_symlink_inode_operations);
This page took 0.14438 seconds and 6 git commands to generate.