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
3c95f0dc
Commit
3c95f0dc
authored
Apr 06, 2018
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merge common parts of lookup_one_len{,_unlocked} into common helper
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
04bbc979
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
56 deletions
+34
-56
fs/namei.c
fs/namei.c
+34
-56
No files found.
fs/namei.c
View file @
3c95f0dc
...
@@ -2417,52 +2417,57 @@ int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
...
@@ -2417,52 +2417,57 @@ int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
}
}
EXPORT_SYMBOL
(
vfs_path_lookup
);
EXPORT_SYMBOL
(
vfs_path_lookup
);
/**
static
int
lookup_one_len_common
(
const
char
*
name
,
struct
dentry
*
base
,
* lookup_one_len - filesystem helper to lookup single pathname component
int
len
,
struct
qstr
*
this
)
* @name: pathname component to lookup
* @base: base directory to lookup from
* @len: maximum length @len should be interpreted to
*
* Note that this routine is purely a helper for filesystem usage and should
* not be called by generic code.
*
* The caller must hold base->i_mutex.
*/
struct
dentry
*
lookup_one_len
(
const
char
*
name
,
struct
dentry
*
base
,
int
len
)
{
{
struct
qstr
this
;
this
->
name
=
name
;
unsigned
int
c
;
this
->
len
=
len
;
int
err
;
this
->
hash
=
full_name_hash
(
base
,
name
,
len
);
WARN_ON_ONCE
(
!
inode_is_locked
(
base
->
d_inode
));
this
.
name
=
name
;
this
.
len
=
len
;
this
.
hash
=
full_name_hash
(
base
,
name
,
len
);
if
(
!
len
)
if
(
!
len
)
return
ERR_PTR
(
-
EACCES
)
;
return
-
EACCES
;
if
(
unlikely
(
name
[
0
]
==
'.'
))
{
if
(
unlikely
(
name
[
0
]
==
'.'
))
{
if
(
len
<
2
||
(
len
==
2
&&
name
[
1
]
==
'.'
))
if
(
len
<
2
||
(
len
==
2
&&
name
[
1
]
==
'.'
))
return
ERR_PTR
(
-
EACCES
)
;
return
-
EACCES
;
}
}
while
(
len
--
)
{
while
(
len
--
)
{
c
=
*
(
const
unsigned
char
*
)
name
++
;
unsigned
int
c
=
*
(
const
unsigned
char
*
)
name
++
;
if
(
c
==
'/'
||
c
==
'\0'
)
if
(
c
==
'/'
||
c
==
'\0'
)
return
ERR_PTR
(
-
EACCES
)
;
return
-
EACCES
;
}
}
/*
/*
* See if the low-level filesystem might want
* See if the low-level filesystem might want
* to use its own hash..
* to use its own hash..
*/
*/
if
(
base
->
d_flags
&
DCACHE_OP_HASH
)
{
if
(
base
->
d_flags
&
DCACHE_OP_HASH
)
{
int
err
=
base
->
d_op
->
d_hash
(
base
,
&
this
);
int
err
=
base
->
d_op
->
d_hash
(
base
,
this
);
if
(
err
<
0
)
if
(
err
<
0
)
return
ERR_PTR
(
err
)
;
return
err
;
}
}
err
=
inode_permission
(
base
->
d_inode
,
MAY_EXEC
);
return
inode_permission
(
base
->
d_inode
,
MAY_EXEC
);
}
/**
* lookup_one_len - filesystem helper to lookup single pathname component
* @name: pathname component to lookup
* @base: base directory to lookup from
* @len: maximum length @len should be interpreted to
*
* Note that this routine is purely a helper for filesystem usage and should
* not be called by generic code.
*
* The caller must hold base->i_mutex.
*/
struct
dentry
*
lookup_one_len
(
const
char
*
name
,
struct
dentry
*
base
,
int
len
)
{
struct
qstr
this
;
int
err
;
WARN_ON_ONCE
(
!
inode_is_locked
(
base
->
d_inode
));
err
=
lookup_one_len_common
(
name
,
base
,
len
,
&
this
);
if
(
err
)
if
(
err
)
return
ERR_PTR
(
err
);
return
ERR_PTR
(
err
);
...
@@ -2486,37 +2491,10 @@ struct dentry *lookup_one_len_unlocked(const char *name,
...
@@ -2486,37 +2491,10 @@ struct dentry *lookup_one_len_unlocked(const char *name,
struct
dentry
*
base
,
int
len
)
struct
dentry
*
base
,
int
len
)
{
{
struct
qstr
this
;
struct
qstr
this
;
unsigned
int
c
;
int
err
;
int
err
;
struct
dentry
*
ret
;
struct
dentry
*
ret
;
this
.
name
=
name
;
err
=
lookup_one_len_common
(
name
,
base
,
len
,
&
this
);
this
.
len
=
len
;
this
.
hash
=
full_name_hash
(
base
,
name
,
len
);
if
(
!
len
)
return
ERR_PTR
(
-
EACCES
);
if
(
unlikely
(
name
[
0
]
==
'.'
))
{
if
(
len
<
2
||
(
len
==
2
&&
name
[
1
]
==
'.'
))
return
ERR_PTR
(
-
EACCES
);
}
while
(
len
--
)
{
c
=
*
(
const
unsigned
char
*
)
name
++
;
if
(
c
==
'/'
||
c
==
'\0'
)
return
ERR_PTR
(
-
EACCES
);
}
/*
* See if the low-level filesystem might want
* to use its own hash..
*/
if
(
base
->
d_flags
&
DCACHE_OP_HASH
)
{
int
err
=
base
->
d_op
->
d_hash
(
base
,
&
this
);
if
(
err
<
0
)
return
ERR_PTR
(
err
);
}
err
=
inode_permission
(
base
->
d_inode
,
MAY_EXEC
);
if
(
err
)
if
(
err
)
return
ERR_PTR
(
err
);
return
ERR_PTR
(
err
);
...
...
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