Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
848f5bda
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
848f5bda
编写于
5月 25, 2012
作者:
T
Trond Myklebust
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
NFSv4.1: Ensure we use the correct credentials for session create/destroy
Signed-off-by:
N
Trond Myklebust
<
Trond.Myklebust@netapp.com
>
上级
ad24ecfb
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
26 addition
and
15 deletion
+26
-15
fs/nfs/nfs4_fs.h
fs/nfs/nfs4_fs.h
+2
-2
fs/nfs/nfs4proc.c
fs/nfs/nfs4proc.c
+17
-10
fs/nfs/nfs4state.c
fs/nfs/nfs4state.c
+7
-3
未找到文件。
fs/nfs/nfs4_fs.h
浏览文件 @
848f5bda
...
...
@@ -241,8 +241,8 @@ extern int nfs41_setup_sequence(struct nfs4_session *session,
struct
rpc_task
*
task
);
extern
void
nfs4_destroy_session
(
struct
nfs4_session
*
session
);
extern
struct
nfs4_session
*
nfs4_alloc_session
(
struct
nfs_client
*
clp
);
extern
int
nfs4_proc_create_session
(
struct
nfs_client
*
);
extern
int
nfs4_proc_destroy_session
(
struct
nfs4_session
*
);
extern
int
nfs4_proc_create_session
(
struct
nfs_client
*
,
struct
rpc_cred
*
);
extern
int
nfs4_proc_destroy_session
(
struct
nfs4_session
*
,
struct
rpc_cred
*
);
extern
int
nfs4_init_session
(
struct
nfs_server
*
server
);
extern
int
nfs4_proc_get_lease_time
(
struct
nfs_client
*
clp
,
struct
nfs_fsinfo
*
fsinfo
);
...
...
fs/nfs/nfs4proc.c
浏览文件 @
848f5bda
...
...
@@ -5480,8 +5480,12 @@ struct nfs4_session *nfs4_alloc_session(struct nfs_client *clp)
void
nfs4_destroy_session
(
struct
nfs4_session
*
session
)
{
struct
rpc_xprt
*
xprt
;
struct
rpc_cred
*
cred
;
nfs4_proc_destroy_session
(
session
);
cred
=
nfs4_get_exchange_id_cred
(
session
->
clp
);
nfs4_proc_destroy_session
(
session
,
cred
);
if
(
cred
)
put_rpccred
(
cred
);
rcu_read_lock
();
xprt
=
rcu_dereference
(
session
->
clp
->
cl_rpcclient
->
cl_xprt
);
...
...
@@ -5591,7 +5595,8 @@ static int nfs4_verify_channel_attrs(struct nfs41_create_session_args *args,
return
nfs4_verify_back_channel_attrs
(
args
,
session
);
}
static
int
_nfs4_proc_create_session
(
struct
nfs_client
*
clp
)
static
int
_nfs4_proc_create_session
(
struct
nfs_client
*
clp
,
struct
rpc_cred
*
cred
)
{
struct
nfs4_session
*
session
=
clp
->
cl_session
;
struct
nfs41_create_session_args
args
=
{
...
...
@@ -5605,6 +5610,7 @@ static int _nfs4_proc_create_session(struct nfs_client *clp)
.
rpc_proc
=
&
nfs4_procedures
[
NFSPROC4_CLNT_CREATE_SESSION
],
.
rpc_argp
=
&
args
,
.
rpc_resp
=
&
res
,
.
rpc_cred
=
cred
,
};
int
status
;
...
...
@@ -5629,7 +5635,7 @@ static int _nfs4_proc_create_session(struct nfs_client *clp)
* It is the responsibility of the caller to verify the session is
* expired before calling this routine.
*/
int
nfs4_proc_create_session
(
struct
nfs_client
*
clp
)
int
nfs4_proc_create_session
(
struct
nfs_client
*
clp
,
struct
rpc_cred
*
cred
)
{
int
status
;
unsigned
*
ptr
;
...
...
@@ -5637,7 +5643,7 @@ int nfs4_proc_create_session(struct nfs_client *clp)
dprintk
(
"--> %s clp=%p session=%p
\n
"
,
__func__
,
clp
,
session
);
status
=
_nfs4_proc_create_session
(
clp
);
status
=
_nfs4_proc_create_session
(
clp
,
cred
);
if
(
status
)
goto
out
;
...
...
@@ -5659,10 +5665,15 @@ int nfs4_proc_create_session(struct nfs_client *clp)
* Issue the over-the-wire RPC DESTROY_SESSION.
* The caller must serialize access to this routine.
*/
int
nfs4_proc_destroy_session
(
struct
nfs4_session
*
session
)
int
nfs4_proc_destroy_session
(
struct
nfs4_session
*
session
,
struct
rpc_cred
*
cred
)
{
struct
rpc_message
msg
=
{
.
rpc_proc
=
&
nfs4_procedures
[
NFSPROC4_CLNT_DESTROY_SESSION
],
.
rpc_argp
=
session
,
.
rpc_cred
=
cred
,
};
int
status
=
0
;
struct
rpc_message
msg
;
dprintk
(
"--> nfs4_proc_destroy_session
\n
"
);
...
...
@@ -5670,10 +5681,6 @@ int nfs4_proc_destroy_session(struct nfs4_session *session)
if
(
session
->
clp
->
cl_cons_state
!=
NFS_CS_READY
)
return
status
;
msg
.
rpc_proc
=
&
nfs4_procedures
[
NFSPROC4_CLNT_DESTROY_SESSION
];
msg
.
rpc_argp
=
session
;
msg
.
rpc_resp
=
NULL
;
msg
.
rpc_cred
=
NULL
;
status
=
rpc_call_sync
(
session
->
clp
->
cl_rpcclient
,
&
msg
,
RPC_TASK_TIMEOUT
);
if
(
status
)
...
...
fs/nfs/nfs4state.c
浏览文件 @
848f5bda
...
...
@@ -256,7 +256,7 @@ int nfs41_init_clientid(struct nfs_client *clp, struct rpc_cred *cred)
goto
out
;
set_bit
(
NFS4CLNT_LEASE_CONFIRM
,
&
clp
->
cl_state
);
do_confirm:
status
=
nfs4_proc_create_session
(
clp
);
status
=
nfs4_proc_create_session
(
clp
,
cred
);
if
(
status
!=
0
)
goto
out
;
clear_bit
(
NFS4CLNT_LEASE_CONFIRM
,
&
clp
->
cl_state
);
...
...
@@ -1717,10 +1717,12 @@ void nfs41_handle_sequence_flag_errors(struct nfs_client *clp, u32 flags)
static
int
nfs4_reset_session
(
struct
nfs_client
*
clp
)
{
struct
rpc_cred
*
cred
;
int
status
;
nfs4_begin_drain_session
(
clp
);
status
=
nfs4_proc_destroy_session
(
clp
->
cl_session
);
cred
=
nfs4_get_exchange_id_cred
(
clp
);
status
=
nfs4_proc_destroy_session
(
clp
->
cl_session
,
cred
);
if
(
status
&&
status
!=
-
NFS4ERR_BADSESSION
&&
status
!=
-
NFS4ERR_DEADSESSION
)
{
status
=
nfs4_recovery_handle_error
(
clp
,
status
);
...
...
@@ -1728,7 +1730,7 @@ static int nfs4_reset_session(struct nfs_client *clp)
}
memset
(
clp
->
cl_session
->
sess_id
.
data
,
0
,
NFS4_MAX_SESSIONID_LEN
);
status
=
nfs4_proc_create_session
(
clp
);
status
=
nfs4_proc_create_session
(
clp
,
cred
);
if
(
status
)
{
status
=
nfs4_recovery_handle_error
(
clp
,
status
);
goto
out
;
...
...
@@ -1742,6 +1744,8 @@ static int nfs4_reset_session(struct nfs_client *clp)
if
(
!
test_bit
(
NFS4CLNT_LEASE_EXPIRED
,
&
clp
->
cl_state
))
nfs41_setup_state_renewal
(
clp
);
out:
if
(
cred
)
put_rpccred
(
cred
);
return
status
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录