Skip to content

Commit

Permalink
Simplify exec_permission_lite() further
Browse files Browse the repository at this point in the history
This function is only called for path components that are already known
to be directories (they have a '->lookup' method).  So don't bother
doing that whole S_ISDIR() testing, the whole point of the 'lite()'
version is that we know that we are looking at a directory component,
and that we're only checking name lookup permission.

Reviewed-by: James Morris <[email protected]>
Acked-by: Serge Hallyn <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
torvalds committed Sep 8, 2009
1 parent b7a437b commit f1ac9f6
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions fs/namei.c
Original file line number Diff line number Diff line change
Expand Up @@ -445,13 +445,7 @@ static int exec_permission_lite(struct inode *inode)
if (mode & MAY_EXEC)
goto ok;

if ((inode->i_mode & S_IXUGO) && capable(CAP_DAC_OVERRIDE))
goto ok;

if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_OVERRIDE))
goto ok;

if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_READ_SEARCH))
if (capable(CAP_DAC_OVERRIDE) || capable(CAP_DAC_READ_SEARCH))
goto ok;

return -EACCES;
Expand Down

0 comments on commit f1ac9f6

Please sign in to comment.