Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
626de996
Commit
626de996
authored
May 04, 2015
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
namei: move link count check and stack allocation into pick_link()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
d63ff28f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
15 deletions
+12
-15
fs/namei.c
fs/namei.c
+12
-15
No files found.
fs/namei.c
View file @
626de996
...
...
@@ -891,16 +891,10 @@ const char *get_link(struct nameidata *nd)
if
(
nd
->
link
.
mnt
==
nd
->
path
.
mnt
)
mntget
(
nd
->
link
.
mnt
);
if
(
unlikely
(
current
->
total_link_count
>=
MAXSYMLINKS
))
{
path_put
(
&
nd
->
link
);
return
ERR_PTR
(
-
ELOOP
);
}
last
->
link
=
nd
->
link
;
last
->
cookie
=
NULL
;
cond_resched
();
current
->
total_link_count
++
;
touch_atime
(
&
last
->
link
);
...
...
@@ -1568,12 +1562,23 @@ static void terminate_walk(struct nameidata *nd)
static
int
pick_link
(
struct
nameidata
*
nd
,
struct
path
*
link
)
{
int
error
;
if
(
unlikely
(
current
->
total_link_count
++
>=
MAXSYMLINKS
))
{
path_to_nameidata
(
link
,
nd
);
return
-
ELOOP
;
}
if
(
nd
->
flags
&
LOOKUP_RCU
)
{
if
(
unlikely
(
nd
->
path
.
mnt
!=
link
->
mnt
||
unlazy_walk
(
nd
,
link
->
dentry
)))
{
return
-
ECHILD
;
}
}
error
=
nd_alloc_stack
(
nd
);
if
(
unlikely
(
error
))
{
path_to_nameidata
(
link
,
nd
);
return
error
;
}
nd
->
link
=
*
link
;
return
1
;
}
...
...
@@ -1840,15 +1845,7 @@ static int link_path_walk(const char *name, struct nameidata *nd)
break
;
if
(
err
)
{
const
char
*
s
;
err
=
nd_alloc_stack
(
nd
);
if
(
unlikely
(
err
))
{
path_to_nameidata
(
&
nd
->
link
,
nd
);
break
;
}
s
=
get_link
(
nd
);
const
char
*
s
=
get_link
(
nd
);
if
(
unlikely
(
IS_ERR
(
s
)))
{
err
=
PTR_ERR
(
s
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment