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
Kirill Smelkov
linux
Commits
0f705953
Commit
0f705953
authored
Mar 05, 2020
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
link_path_walk(): sample parent's i_uid and i_mode for the last component
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
60ef60c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
10 deletions
+7
-10
fs/namei.c
fs/namei.c
+7
-10
No files found.
fs/namei.c
View file @
0f705953
...
...
@@ -505,6 +505,8 @@ struct nameidata {
struct
nameidata
*
saved
;
unsigned
root_seq
;
int
dfd
;
kuid_t
dir_uid
;
umode_t
dir_mode
;
}
__randomize_layout
;
static
void
set_nameidata
(
struct
nameidata
*
p
,
int
dfd
,
struct
filename
*
name
)
...
...
@@ -938,9 +940,6 @@ int sysctl_protected_regular __read_mostly;
*/
static
inline
int
may_follow_link
(
struct
nameidata
*
nd
,
const
struct
inode
*
inode
)
{
const
struct
inode
*
parent
;
kuid_t
puid
;
if
(
!
sysctl_protected_symlinks
)
return
0
;
...
...
@@ -949,13 +948,11 @@ static inline int may_follow_link(struct nameidata *nd, const struct inode *inod
return
0
;
/* Allowed if parent directory not sticky and world-writable. */
parent
=
nd
->
inode
;
if
((
parent
->
i_mode
&
(
S_ISVTX
|
S_IWOTH
))
!=
(
S_ISVTX
|
S_IWOTH
))
if
((
nd
->
dir_mode
&
(
S_ISVTX
|
S_IWOTH
))
!=
(
S_ISVTX
|
S_IWOTH
))
return
0
;
/* Allowed if parent directory and link owner match. */
puid
=
parent
->
i_uid
;
if
(
uid_valid
(
puid
)
&&
uid_eq
(
puid
,
inode
->
i_uid
))
if
(
uid_valid
(
nd
->
dir_uid
)
&&
uid_eq
(
nd
->
dir_uid
,
inode
->
i_uid
))
return
0
;
if
(
nd
->
flags
&
LOOKUP_RCU
)
...
...
@@ -2159,6 +2156,8 @@ static int link_path_walk(const char *name, struct nameidata *nd)
OK:
/* pathname or trailing symlink, done */
if
(
!
depth
)
{
nd
->
dir_uid
=
nd
->
inode
->
i_uid
;
nd
->
dir_mode
=
nd
->
inode
->
i_mode
;
nd
->
flags
&=
~
LOOKUP_PARENT
;
return
0
;
}
...
...
@@ -3224,8 +3223,6 @@ static const char *open_last_lookups(struct nameidata *nd,
static
const
char
*
do_last
(
struct
nameidata
*
nd
,
struct
file
*
file
,
const
struct
open_flags
*
op
)
{
kuid_t
dir_uid
=
nd
->
inode
->
i_uid
;
umode_t
dir_mode
=
nd
->
inode
->
i_mode
;
int
open_flag
=
op
->
open_flag
;
bool
do_truncate
;
int
acc_mode
;
...
...
@@ -3241,7 +3238,7 @@ static const char *do_last(struct nameidata *nd,
if
(
open_flag
&
O_CREAT
)
{
if
(
d_is_dir
(
nd
->
path
.
dentry
))
return
ERR_PTR
(
-
EISDIR
);
error
=
may_create_in_sticky
(
dir_mode
,
dir_uid
,
error
=
may_create_in_sticky
(
nd
->
dir_mode
,
nd
->
dir_uid
,
d_backing_inode
(
nd
->
path
.
dentry
));
if
(
unlikely
(
error
))
return
ERR_PTR
(
error
);
...
...
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