Skip to content

Commit

Permalink
New AT_... flag: AT_EMPTY_PATH
Browse files Browse the repository at this point in the history
For name_to_handle_at(2) we'll want both ...at()-style syscall that
would be usable for non-directory descriptors (with empty relative
pathname).  Introduce new flag (AT_EMPTY_PATH) to deal with that and
corresponding LOOKUP_EMPTY; teach user_path_at() and path_init() to
deal with the latter.

Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
Al Viro committed Mar 14, 2011
1 parent 5fe0c23 commit f52e0c1
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 10 deletions.
29 changes: 19 additions & 10 deletions fs/namei.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ static int do_getname(const char __user *filename, char *page)
return retval;
}

char * getname(const char __user * filename)
static char *getname_flags(const char __user * filename, int flags)
{
char *tmp, *result;

Expand All @@ -147,14 +147,21 @@ char * getname(const char __user * filename)

result = tmp;
if (retval < 0) {
__putname(tmp);
result = ERR_PTR(retval);
if (retval != -ENOENT || !(flags & LOOKUP_EMPTY)) {
__putname(tmp);
result = ERR_PTR(retval);
}
}
}
audit_getname(result);
return result;
}

char *getname(const char __user * filename)
{
return getname_flags(filename, 0);
}

#ifdef CONFIG_AUDITSYSCALL
void putname(const char *name)
{
Expand Down Expand Up @@ -1544,13 +1551,15 @@ static int path_init(int dfd, const char *name, unsigned int flags,

dentry = file->f_path.dentry;

retval = -ENOTDIR;
if (!S_ISDIR(dentry->d_inode->i_mode))
goto fput_fail;
if (*name) {
retval = -ENOTDIR;
if (!S_ISDIR(dentry->d_inode->i_mode))
goto fput_fail;

retval = file_permission(file, MAY_EXEC);
if (retval)
goto fput_fail;
retval = file_permission(file, MAY_EXEC);
if (retval)
goto fput_fail;
}

nd->path = file->f_path;
if (flags & LOOKUP_RCU) {
Expand Down Expand Up @@ -1759,7 +1768,7 @@ int user_path_at(int dfd, const char __user *name, unsigned flags,
struct path *path)
{
struct nameidata nd;
char *tmp = getname(name);
char *tmp = getname_flags(name, flags);
int err = PTR_ERR(tmp);
if (!IS_ERR(tmp)) {

Expand Down
1 change: 1 addition & 0 deletions include/linux/fcntl.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
unlinking file. */
#define AT_SYMLINK_FOLLOW 0x400 /* Follow symbolic links. */
#define AT_NO_AUTOMOUNT 0x800 /* Suppress terminal automount traversal */
#define AT_EMPTY_PATH 0x1000 /* Allow empty relative pathname */

#ifdef __KERNEL__

Expand Down
1 change: 1 addition & 0 deletions include/linux/namei.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ enum {LAST_NORM, LAST_ROOT, LAST_DOT, LAST_DOTDOT, LAST_BIND};

#define LOOKUP_JUMPED 0x1000
#define LOOKUP_ROOT 0x2000
#define LOOKUP_EMPTY 0x4000

extern int user_path_at(int, const char __user *, unsigned, struct path *);

Expand Down

0 comments on commit f52e0c1

Please sign in to comment.