Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
5cf36cfd
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 3 年多
通知
13
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
5cf36cfd
编写于
2月 22, 2011
作者:
T
Trond Myklebust
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
NFSv4: If the server sends us a numeric uid/gid then accept it
Signed-off-by:
N
Trond Myklebust
<
Trond.Myklebust@netapp.com
>
上级
75247aff
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
26 addition
and
2 deletion
+26
-2
fs/nfs/idmap.c
fs/nfs/idmap.c
+26
-2
未找到文件。
fs/nfs/idmap.c
浏览文件 @
5cf36cfd
...
...
@@ -33,6 +33,24 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <linux/types.h>
#include <linux/string.h>
#include <linux/kernel.h>
static
int
nfs_map_string_to_numeric
(
const
char
*
name
,
size_t
namelen
,
__u32
*
res
)
{
unsigned
long
val
;
char
buf
[
16
];
if
(
memchr
(
name
,
'@'
,
namelen
)
!=
NULL
||
namelen
>=
sizeof
(
buf
))
return
0
;
memcpy
(
buf
,
name
,
namelen
);
buf
[
namelen
]
=
'\0'
;
if
(
strict_strtoul
(
buf
,
0
,
&
val
)
!=
0
)
return
0
;
*
res
=
val
;
return
1
;
}
#ifdef CONFIG_NFS_USE_NEW_IDMAPPER
...
...
@@ -42,7 +60,6 @@
#include <linux/keyctl.h>
#include <linux/key-type.h>
#include <linux/rcupdate.h>
#include <linux/kernel.h>
#include <linux/err.h>
#include <keys/user-type.h>
...
...
@@ -221,11 +238,15 @@ static int nfs_idmap_lookup_id(const char *name, size_t namelen,
int
nfs_map_name_to_uid
(
struct
nfs_client
*
clp
,
const
char
*
name
,
size_t
namelen
,
__u32
*
uid
)
{
if
(
nfs_map_string_to_numeric
(
name
,
namelen
,
uid
))
return
0
;
return
nfs_idmap_lookup_id
(
name
,
namelen
,
"uid"
,
uid
);
}
int
nfs_map_group_to_gid
(
struct
nfs_client
*
clp
,
const
char
*
name
,
size_t
namelen
,
__u32
*
gid
)
{
if
(
nfs_map_string_to_numeric
(
name
,
namelen
,
gid
))
return
0
;
return
nfs_idmap_lookup_id
(
name
,
namelen
,
"gid"
,
gid
);
}
...
...
@@ -243,7 +264,6 @@ int nfs_map_gid_to_group(struct nfs_client *clp, __u32 gid, char *buf, size_t bu
#include <linux/module.h>
#include <linux/mutex.h>
#include <linux/init.h>
#include <linux/types.h>
#include <linux/slab.h>
#include <linux/socket.h>
#include <linux/in.h>
...
...
@@ -699,6 +719,8 @@ int nfs_map_name_to_uid(struct nfs_client *clp, const char *name, size_t namelen
{
struct
idmap
*
idmap
=
clp
->
cl_idmap
;
if
(
nfs_map_string_to_numeric
(
name
,
namelen
,
uid
))
return
0
;
return
nfs_idmap_id
(
idmap
,
&
idmap
->
idmap_user_hash
,
name
,
namelen
,
uid
);
}
...
...
@@ -706,6 +728,8 @@ int nfs_map_group_to_gid(struct nfs_client *clp, const char *name, size_t namele
{
struct
idmap
*
idmap
=
clp
->
cl_idmap
;
if
(
nfs_map_string_to_numeric
(
name
,
namelen
,
uid
))
return
0
;
return
nfs_idmap_id
(
idmap
,
&
idmap
->
idmap_group_hash
,
name
,
namelen
,
uid
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录