Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cd179f44 authored by Al Viro's avatar Al Viro
Browse files

namei: move bumping the refcount of link->mnt into pick_link()



update the failure cleanup in may_follow_link() to match that.

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent e8bb73df
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -802,7 +802,7 @@ static inline int may_follow_link(struct path *link, struct nameidata *nd)
		return 0;

	audit_log_link_denied("follow_link", link);
	path_put_conditional(link, nd);
	path_put(link);
	path_put(&nd->path);
	return -EACCES;
}
@@ -887,9 +887,6 @@ const char *get_link(struct nameidata *nd)

	BUG_ON(nd->flags & LOOKUP_RCU);

	if (nd->link.mnt == nd->path.mnt)
		mntget(nd->link.mnt);

	last->link = nd->link;
	last->cookie = NULL;
	nd->depth++;
@@ -1574,9 +1571,11 @@ static int pick_link(struct nameidata *nd, struct path *link)
			return -ECHILD;
		}
	}
	if (link->mnt == nd->path.mnt)
		mntget(link->mnt);
	error = nd_alloc_stack(nd);
	if (unlikely(error)) {
		path_to_nameidata(link, nd);
		path_put(link);
		return error;
	}