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
91c9fa8f
Commit
91c9fa8f
authored
Apr 18, 2009
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
switch rqst_exp_get_by_name()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
5bf3bd2b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
27 deletions
+23
-27
fs/nfsd/export.c
fs/nfsd/export.c
+6
-9
fs/nfsd/vfs.c
fs/nfsd/vfs.c
+16
-16
include/linux/nfsd/export.h
include/linux/nfsd/export.h
+1
-2
No files found.
fs/nfsd/export.c
View file @
91c9fa8f
...
...
@@ -1240,18 +1240,15 @@ __be32 check_nfsd_access(struct svc_export *exp, struct svc_rqst *rqstp)
* use exp_get_by_name() or exp_find().
*/
struct
svc_export
*
rqst_exp_get_by_name
(
struct
svc_rqst
*
rqstp
,
struct
vfsmount
*
mnt
,
struct
dentry
*
dentry
)
rqst_exp_get_by_name
(
struct
svc_rqst
*
rqstp
,
struct
path
*
path
)
{
struct
svc_export
*
gssexp
,
*
exp
=
ERR_PTR
(
-
ENOENT
);
struct
path
path
=
{.
mnt
=
mnt
,
.
dentry
=
dentry
};
if
(
rqstp
->
rq_client
==
NULL
)
goto
gss
;
/* First try the auth_unix client: */
exp
=
exp_get_by_name
(
rqstp
->
rq_client
,
&
path
,
&
rqstp
->
rq_chandle
);
exp
=
exp_get_by_name
(
rqstp
->
rq_client
,
path
,
&
rqstp
->
rq_chandle
);
if
(
PTR_ERR
(
exp
)
==
-
ENOENT
)
goto
gss
;
if
(
IS_ERR
(
exp
))
...
...
@@ -1263,8 +1260,7 @@ rqst_exp_get_by_name(struct svc_rqst *rqstp, struct vfsmount *mnt,
/* Otherwise, try falling back on gss client */
if
(
rqstp
->
rq_gssclient
==
NULL
)
return
exp
;
gssexp
=
exp_get_by_name
(
rqstp
->
rq_gssclient
,
&
path
,
&
rqstp
->
rq_chandle
);
gssexp
=
exp_get_by_name
(
rqstp
->
rq_gssclient
,
path
,
&
rqstp
->
rq_chandle
);
if
(
PTR_ERR
(
gssexp
)
==
-
ENOENT
)
return
exp
;
if
(
!
IS_ERR
(
exp
))
...
...
@@ -1307,9 +1303,10 @@ rqst_exp_parent(struct svc_rqst *rqstp, struct vfsmount *mnt,
struct
dentry
*
dentry
)
{
struct
svc_export
*
exp
;
struct
path
path
=
{.
mnt
=
mnt
,
.
dentry
=
dentry
};
dget
(
dentry
);
exp
=
rqst_exp_get_by_name
(
rqstp
,
mnt
,
dentry
);
exp
=
rqst_exp_get_by_name
(
rqstp
,
&
path
);
while
(
PTR_ERR
(
exp
)
==
-
ENOENT
&&
!
IS_ROOT
(
dentry
))
{
struct
dentry
*
parent
;
...
...
@@ -1317,7 +1314,7 @@ rqst_exp_parent(struct svc_rqst *rqstp, struct vfsmount *mnt,
parent
=
dget_parent
(
dentry
);
dput
(
dentry
);
dentry
=
parent
;
exp
=
rqst_exp_get_by_name
(
rqstp
,
mnt
,
dentry
);
exp
=
rqst_exp_get_by_name
(
rqstp
,
&
path
);
}
dput
(
dentry
);
return
exp
;
...
...
fs/nfsd/vfs.c
View file @
91c9fa8f
...
...
@@ -101,36 +101,36 @@ nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp,
{
struct
svc_export
*
exp
=
*
expp
,
*
exp2
=
NULL
;
struct
dentry
*
dentry
=
*
dpp
;
struct
vfsmount
*
mnt
=
mntget
(
exp
->
ex_path
.
mnt
);
struct
dentry
*
mounts
=
dget
(
dentry
)
;
struct
path
path
=
{.
mnt
=
mntget
(
exp
->
ex_path
.
mnt
),
.
dentry
=
dget
(
dentry
)}
;
int
err
=
0
;
while
(
follow_down
(
&
mnt
,
&
mounts
)
&&
d_mountpoint
(
mounts
));
while
(
follow_down
(
&
path
.
mnt
,
&
path
.
dentry
)
&&
d_mountpoint
(
path
.
dentry
))
;
exp2
=
rqst_exp_get_by_name
(
rqstp
,
mnt
,
mounts
);
exp2
=
rqst_exp_get_by_name
(
rqstp
,
&
path
);
if
(
IS_ERR
(
exp2
))
{
if
(
PTR_ERR
(
exp2
)
!=
-
ENOENT
)
err
=
PTR_ERR
(
exp2
);
dput
(
mounts
);
mntput
(
mnt
);
path_put
(
&
path
);
goto
out
;
}
if
((
exp
->
ex_flags
&
NFSEXP_CROSSMOUNT
)
||
EX_NOHIDE
(
exp2
))
{
/* successfully crossed mount point */
/*
* This is subtle: dentry is *not* under mnt at this point.
* The only reason we are safe is that original mnt is pinned
* down by exp, so we should dput before putting exp.
* This is subtle: path.dentry is *not* on path.mnt
* at this point. The only reason we are safe is that
* original mnt is pinned down by exp, so we should
* put path *before* putting exp
*/
dput
(
dentry
);
*
dpp
=
mounts
;
exp_put
(
exp
);
*
dpp
=
path
.
dentry
;
path
.
dentry
=
dentry
;
*
expp
=
exp2
;
}
else
{
exp_put
(
exp2
);
dput
(
mounts
);
exp2
=
exp
;
}
mntput
(
mnt
);
path_put
(
&
path
);
exp_put
(
exp2
);
out:
return
err
;
}
...
...
include/linux/nfsd/export.h
View file @
91c9fa8f
...
...
@@ -125,8 +125,7 @@ void nfsd_export_flush(void);
void
exp_readlock
(
void
);
void
exp_readunlock
(
void
);
struct
svc_export
*
rqst_exp_get_by_name
(
struct
svc_rqst
*
,
struct
vfsmount
*
,
struct
dentry
*
);
struct
path
*
);
struct
svc_export
*
rqst_exp_parent
(
struct
svc_rqst
*
,
struct
vfsmount
*
mnt
,
struct
dentry
*
dentry
);
...
...
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