Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
31be5bf1
K
Kernel
项目概览
openeuler
/
Kernel
大约 1 年 前同步成功
通知
6
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
31be5bf1
编写于
6月 24, 2007
作者:
T
Trond Myklebust
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
SUNRPC: Convert the credcache lookup code to use RCU
Signed-off-by:
N
Trond Myklebust
<
Trond.Myklebust@netapp.com
>
上级
e092bdcd
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
91 addition
and
43 deletion
+91
-43
include/linux/sunrpc/auth.h
include/linux/sunrpc/auth.h
+3
-0
net/sunrpc/auth.c
net/sunrpc/auth.c
+57
-34
net/sunrpc/auth_gss/auth_gss.c
net/sunrpc/auth_gss/auth_gss.c
+16
-6
net/sunrpc/auth_unix.c
net/sunrpc/auth_unix.c
+15
-3
未找到文件。
include/linux/sunrpc/auth.h
浏览文件 @
31be5bf1
...
...
@@ -16,6 +16,7 @@
#include <linux/sunrpc/xdr.h>
#include <asm/atomic.h>
#include <linux/rcupdate.h>
/* size of the nodename buffer */
#define UNX_MAXNODENAME 32
...
...
@@ -35,6 +36,7 @@ struct rpc_credops;
struct
rpc_cred
{
struct
hlist_node
cr_hash
;
/* hash chain */
struct
list_head
cr_lru
;
/* lru garbage collection */
struct
rcu_head
cr_rcu
;
struct
rpc_auth
*
cr_auth
;
const
struct
rpc_credops
*
cr_ops
;
#ifdef RPC_DEBUG
...
...
@@ -50,6 +52,7 @@ struct rpc_cred {
};
#define RPCAUTH_CRED_NEW 0
#define RPCAUTH_CRED_UPTODATE 1
#define RPCAUTH_CRED_HASHED 2
#define RPCAUTH_CRED_MAGIC 0x0f4aa4f0
...
...
net/sunrpc/auth.c
浏览文件 @
31be5bf1
...
...
@@ -112,6 +112,14 @@ rpcauth_release(struct rpc_auth *auth)
static
DEFINE_SPINLOCK
(
rpc_credcache_lock
);
static
void
rpcauth_unhash_cred_locked
(
struct
rpc_cred
*
cred
)
{
hlist_del_rcu
(
&
cred
->
cr_hash
);
smp_mb__before_clear_bit
();
clear_bit
(
RPCAUTH_CRED_HASHED
,
&
cred
->
cr_flags
);
}
/*
* Initialize RPC credential cache
*/
...
...
@@ -166,8 +174,7 @@ rpcauth_clear_credcache(struct rpc_cred_cache *cache)
cred
=
hlist_entry
(
head
->
first
,
struct
rpc_cred
,
cr_hash
);
get_rpccred
(
cred
);
list_move_tail
(
&
cred
->
cr_lru
,
&
free
);
smp_wmb
();
hlist_del_init
(
&
cred
->
cr_hash
);
rpcauth_unhash_cred_locked
(
cred
);
}
}
spin_unlock
(
&
rpc_credcache_lock
);
...
...
@@ -207,8 +214,7 @@ rpcauth_prune_expired(struct list_head *free)
continue
;
get_rpccred
(
cred
);
list_add_tail
(
&
cred
->
cr_lru
,
free
);
smp_wmb
();
hlist_del_init
(
&
cred
->
cr_hash
);
rpcauth_unhash_cred_locked
(
cred
);
}
}
...
...
@@ -218,10 +224,12 @@ rpcauth_prune_expired(struct list_head *free)
static
void
rpcauth_gc_credcache
(
struct
rpc_cred_cache
*
cache
,
struct
list_head
*
free
)
{
if
(
time_before
(
jiffies
,
cache
->
nextgc
))
if
(
list_empty
(
&
cred_unused
)
||
time_before
(
jiffies
,
cache
->
nextgc
))
return
;
spin_lock
(
&
rpc_credcache_lock
);
cache
->
nextgc
=
jiffies
+
cache
->
expire
;
rpcauth_prune_expired
(
free
);
spin_unlock
(
&
rpc_credcache_lock
);
}
/*
...
...
@@ -234,42 +242,57 @@ rpcauth_lookup_credcache(struct rpc_auth *auth, struct auth_cred * acred,
LIST_HEAD
(
free
);
struct
rpc_cred_cache
*
cache
=
auth
->
au_credcache
;
struct
hlist_node
*
pos
;
struct
rpc_cred
*
new
=
NULL
,
*
cred
=
NULL
,
*
entry
;
struct
rpc_cred
*
cred
=
NULL
,
*
entry
,
*
new
;
int
nr
=
0
;
if
(
!
(
flags
&
RPCAUTH_LOOKUP_ROOTCREDS
))
nr
=
acred
->
uid
&
RPC_CREDCACHE_MASK
;
retry:
spin_lock
(
&
rpc_credcache_lock
);
hlist_for_each_entry
(
entry
,
pos
,
&
cache
->
hashtable
[
nr
],
cr_hash
)
{
rcu_read_lock
(
);
hlist_for_each_entry
_rcu
(
entry
,
pos
,
&
cache
->
hashtable
[
nr
],
cr_hash
)
{
if
(
!
entry
->
cr_ops
->
crmatch
(
acred
,
entry
,
flags
))
continue
;
spin_lock
(
&
rpc_credcache_lock
);
if
(
test_bit
(
RPCAUTH_CRED_HASHED
,
&
entry
->
cr_flags
)
==
0
)
{
spin_unlock
(
&
rpc_credcache_lock
);
continue
;
}
cred
=
get_rpccred
(
entry
);
hlist_del
(
&
entry
->
cr_hash
);
spin_unlock
(
&
rpc_credcache_lock
);
break
;
}
if
(
new
)
{
if
(
cred
)
list_add_tail
(
&
new
->
cr_lru
,
&
free
);
else
cred
=
new
;
}
if
(
cred
)
{
hlist_add_head
(
&
cred
->
cr_hash
,
&
cache
->
hashtable
[
nr
]);
rcu_read_unlock
();
if
(
cred
!=
NULL
)
{
rpcauth_gc_credcache
(
cache
,
&
free
);
goto
found
;
}
rpcauth_gc_credcache
(
cache
,
&
free
);
spin_unlock
(
&
rpc_credcache_lock
);
rpcauth_destroy_credlist
(
&
free
);
new
=
auth
->
au_ops
->
crcreate
(
auth
,
acred
,
flags
);
if
(
IS_ERR
(
new
))
{
cred
=
new
;
goto
out
;
}
if
(
!
cred
)
{
new
=
auth
->
au_ops
->
crcreate
(
auth
,
acred
,
flags
);
if
(
!
IS_ERR
(
new
))
goto
retry
;
spin_lock
(
&
rpc_credcache_lock
);
hlist_for_each_entry
(
entry
,
pos
,
&
cache
->
hashtable
[
nr
],
cr_hash
)
{
if
(
!
entry
->
cr_ops
->
crmatch
(
acred
,
entry
,
flags
))
continue
;
cred
=
get_rpccred
(
entry
);
break
;
}
if
(
cred
==
NULL
)
{
cred
=
new
;
}
else
if
(
test_bit
(
RPCAUTH_CRED_NEW
,
&
cred
->
cr_flags
)
set_bit
(
RPCAUTH_CRED_HASHED
,
&
cred
->
cr_flags
);
hlist_add_head_rcu
(
&
cred
->
cr_hash
,
&
cache
->
hashtable
[
nr
]);
}
else
list_add_tail
(
&
new
->
cr_lru
,
&
free
);
rpcauth_prune_expired
(
&
free
);
cache
->
nextgc
=
jiffies
+
cache
->
expire
;
spin_unlock
(
&
rpc_credcache_lock
);
found:
if
(
test_bit
(
RPCAUTH_CRED_NEW
,
&
cred
->
cr_flags
)
&&
cred
->
cr_ops
->
cr_init
!=
NULL
&&
!
(
flags
&
RPCAUTH_LOOKUP_NEW
))
{
int
res
=
cred
->
cr_ops
->
cr_init
(
auth
,
cred
);
...
...
@@ -278,8 +301,9 @@ rpcauth_lookup_credcache(struct rpc_auth *auth, struct auth_cred * acred,
cred
=
ERR_PTR
(
res
);
}
}
return
(
struct
rpc_cred
*
)
cred
;
rpcauth_destroy_credlist
(
&
free
);
out:
return
cred
;
}
struct
rpc_cred
*
...
...
@@ -357,21 +381,20 @@ void
put_rpccred
(
struct
rpc_cred
*
cred
)
{
/* Fast path for unhashed credentials */
if
(
!
hlist_unhashed
(
&
cred
->
cr_hash
)
)
if
(
test_bit
(
RPCAUTH_CRED_HASHED
,
&
cred
->
cr_flags
)
!=
0
)
goto
need_lock
;
if
(
!
atomic_dec_and_test
(
&
cred
->
cr_count
))
return
;
goto
out_destroy
;
need_lock:
if
(
!
atomic_dec_and_lock
(
&
cred
->
cr_count
,
&
rpc_credcache_lock
))
return
;
if
(
!
list_empty
(
&
cred
->
cr_lru
))
list_del_init
(
&
cred
->
cr_lru
);
if
(
test_bit
(
RPCAUTH_CRED_UPTODATE
,
&
cred
->
cr_flags
)
==
0
)
hlist_del
(
&
cred
->
cr_hash
);
else
if
(
!
hlist_unhashed
(
&
cred
->
cr_hash
)
)
{
rpcauth_unhash_cred_locked
(
cred
);
else
if
(
test_bit
(
RPCAUTH_CRED_HASHED
,
&
cred
->
cr_flags
)
!=
0
)
{
cred
->
cr_expire
=
jiffies
;
list_add_tail
(
&
cred
->
cr_lru
,
&
cred_unused
);
spin_unlock
(
&
rpc_credcache_lock
);
...
...
net/sunrpc/auth_gss/auth_gss.c
浏览文件 @
31be5bf1
...
...
@@ -694,15 +694,25 @@ gss_destroy_ctx(struct gss_cl_ctx *ctx)
}
static
void
gss_
destroy_cred
(
struct
rpc_cred
*
rc
)
gss_
free_cred
(
struct
gss_cred
*
gss_cred
)
{
struct
gss_cred
*
cred
=
container_of
(
rc
,
struct
gss_cred
,
gc_base
);
dprintk
(
"RPC: gss_free_cred %p
\n
"
,
gss_cred
);
if
(
gss_cred
->
gc_ctx
)
gss_put_ctx
(
gss_cred
->
gc_ctx
);
kfree
(
gss_cred
);
}
dprintk
(
"RPC: gss_destroy_cred
\n
"
);
static
void
gss_free_cred_callback
(
struct
rcu_head
*
head
)
{
struct
gss_cred
*
gss_cred
=
container_of
(
head
,
struct
gss_cred
,
gc_base
.
cr_rcu
);
gss_free_cred
(
gss_cred
);
}
if
(
cred
->
gc_ctx
)
gss_put_ctx
(
cred
->
gc_ctx
);
kfree
(
cred
);
static
void
gss_destroy_cred
(
struct
rpc_cred
*
cred
)
{
call_rcu
(
&
cred
->
cr_rcu
,
gss_free_cred_callback
);
}
/*
...
...
net/sunrpc/auth_unix.c
浏览文件 @
31be5bf1
...
...
@@ -93,11 +93,23 @@ unx_create_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
}
static
void
unx_
destroy_cred
(
struct
rpc_cred
*
r
cred
)
unx_
free_cred
(
struct
unx_cred
*
unx_
cred
)
{
struct
unx_cred
*
cred
=
container_of
(
rcred
,
struct
unx_cred
,
uc_base
);
dprintk
(
"RPC: unx_free_cred %p
\n
"
,
unx_cred
);
kfree
(
unx_cred
);
}
static
void
unx_free_cred_callback
(
struct
rcu_head
*
head
)
{
struct
unx_cred
*
unx_cred
=
container_of
(
head
,
struct
unx_cred
,
uc_base
.
cr_rcu
);
unx_free_cred
(
unx_cred
);
}
kfree
(
cred
);
static
void
unx_destroy_cred
(
struct
rpc_cred
*
cred
)
{
call_rcu
(
&
cred
->
cr_rcu
,
unx_free_cred_callback
);
}
/*
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录