Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Startup Init Lite
提交
ab0b3090
S
Startup Init Lite
项目概览
OpenHarmony
/
Startup Init Lite
大约 1 年 前同步成功
通知
3
Star
37
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Startup Init Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
ab0b3090
编写于
6月 22, 2022
作者:
M
Mupceet
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
decodeuidgid0622
Signed-off-by:
N
Mupceet
<
laiguizhong@huawei.com
>
上级
df7c96b8
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
56 addition
and
23 deletion
+56
-23
services/include/init_utils.h
services/include/init_utils.h
+1
-0
services/utils/init_utils.c
services/utils/init_utils.c
+55
-23
未找到文件。
services/include/init_utils.h
浏览文件 @
ab0b3090
...
...
@@ -60,6 +60,7 @@ void WaitForFile(const char *source, unsigned int maxSecond);
size_t
WriteAll
(
int
fd
,
const
char
*
buffer
,
size_t
size
);
char
*
GetRealPath
(
const
char
*
source
);
int
StringToInt
(
const
char
*
str
,
int
defaultValue
);
int
StringToUint
(
const
char
*
name
,
unsigned
int
*
value
);
int
MakeDirRecursive
(
const
char
*
dir
,
mode_t
mode
);
void
CheckAndCreateDir
(
const
char
*
fileName
);
int
CheckAndCreatFile
(
const
char
*
file
,
mode_t
mode
);
...
...
services/utils/init_utils.c
浏览文件 @
ab0b3090
...
...
@@ -18,6 +18,7 @@
#include <errno.h>
#include <dirent.h>
#include <fcntl.h>
#include <grp.h>
#include <limits.h>
#include <pwd.h>
#include <stdlib.h>
...
...
@@ -48,43 +49,74 @@ float ConvertMicrosecondToSecond(int x)
return
((
x
/
THOUSAND_UNIT_INT
)
/
THOUSAND_UNIT_FLOAT
);
}
static
uid_t
DecodeId
(
const
char
*
name
,
bool
isUid
)
static
bool
CheckDigit
(
const
char
*
name
)
{
#ifndef __LITEOS_M__
INIT_CHECK_RETURN_VALUE
(
name
!=
NULL
,
-
1
);
int
digitFlag
=
1
;
size_t
nameLen
=
strlen
(
name
);
for
(
unsigned
int
i
=
0
;
i
<
nameLen
;
++
i
)
{
if
(
isalpha
(
name
[
i
]))
{
digitFlag
=
0
;
break
;
for
(
size_t
i
=
0
;
i
<
nameLen
;
++
i
)
{
if
(
!
isdigit
(
name
[
i
]))
{
return
false
;
}
}
if
(
digitFlag
)
{
errno
=
0
;
uid_t
result
=
strtoul
(
name
,
0
,
DECIMAL_BASE
);
INIT_CHECK_RETURN_VALUE
(
errno
==
0
,
-
1
);
return
result
;
}
else
{
struct
passwd
*
userInf
=
getpwnam
(
name
);
if
(
userInf
==
NULL
)
{
return
true
;
}
int
StringToUint
(
const
char
*
name
,
unsigned
int
*
value
)
{
errno
=
0
;
*
value
=
(
unsigned
int
)
strtoul
(
name
,
0
,
DECIMAL_BASE
);
INIT_CHECK_RETURN_VALUE
(
errno
==
0
,
-
1
);
return
0
;
}
uid_t
DecodeUid
(
const
char
*
name
)
{
#ifndef __LITEOS_M__
INIT_CHECK_RETURN_VALUE
(
name
!=
NULL
,
-
1
);
uid_t
uid
=
-
1
;
if
(
CheckDigit
(
name
))
{
if
(
!
StringToUint
(
name
,
&
uid
))
{
return
uid
;
}
else
{
INIT_LOGE
(
"Failed to decode uid"
);
return
-
1
;
}
return
isUid
?
userInf
->
pw_uid
:
userInf
->
pw_gid
;
}
struct
passwd
*
p
=
getpwnam
(
name
);
if
(
p
==
NULL
)
{
INIT_LOGE
(
"Failed to decode uid"
);
return
-
1
;
}
return
p
->
pw_uid
;
#else
return
-
1
;
#endif
}
uid_t
DecodeUid
(
const
char
*
name
)
{
return
DecodeId
(
name
,
true
);
}
gid_t
DecodeGid
(
const
char
*
name
)
{
return
DecodeId
(
name
,
false
);
#ifndef __LITEOS_M__
INIT_CHECK_RETURN_VALUE
(
name
!=
NULL
,
-
1
);
gid_t
gid
=
-
1
;
if
(
CheckDigit
(
name
))
{
if
(
!
StringToUint
(
name
,
&
gid
))
{
return
gid
;
}
else
{
INIT_LOGE
(
"Failed to decode gid"
);
return
-
1
;
}
}
struct
group
*
data
=
NULL
;
while
((
data
=
getgrent
())
!=
NULL
)
{
if
((
data
->
gr_name
!=
NULL
)
&&
(
strcmp
(
data
->
gr_name
,
name
)
==
0
))
{
gid
=
data
->
gr_gid
;
break
;
}
}
endgrent
();
return
gid
;
#else
return
-
1
;
#endif
}
char
*
ReadFileToBuf
(
const
char
*
configFile
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录