Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Startup Init Lite
提交
c772e32e
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看板
未验证
提交
c772e32e
编写于
8月 16, 2022
作者:
O
openharmony_ci
提交者:
Gitee
8月 16, 2022
浏览文件
操作
浏览文件
下载
差异文件
!1080 fix: pid 获取错误
Merge pull request !1080 from cheng_jinsong/bugpid
上级
9951551e
1a49880e
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
18 addition
and
4 deletion
+18
-4
interfaces/innerkits/init_module_engine/BUILD.gn
interfaces/innerkits/init_module_engine/BUILD.gn
+4
-0
interfaces/innerkits/modulemgr/modulemgr.c
interfaces/innerkits/modulemgr/modulemgr.c
+7
-4
services/param/base/param_comm.c
services/param/base/param_comm.c
+7
-0
未找到文件。
interfaces/innerkits/init_module_engine/BUILD.gn
100755 → 100644
浏览文件 @
c772e32e
...
...
@@ -57,6 +57,10 @@ if (defined(ohos_lite)) {
stub_description_file = "./stub/libinit.stub.empty.json"
part_name = "init"
install_enable = true
install_images = [
"system",
"updater",
]
symlink_target_name = [ "libinit_module_engine.so" ]
}
...
...
interfaces/innerkits/modulemgr/modulemgr.c
浏览文件 @
c772e32e
...
...
@@ -13,14 +13,15 @@
* limitations under the License.
*/
#include <dirent.h>
#include <dlfcn.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <dirent.h>
#include <linux/limits.h>
#include "beget_ext.h"
#include "init_utils.h"
#include "list.h"
#include "securec.h"
#include "modulemgr.h"
...
...
@@ -107,8 +108,9 @@ static void *moduleInstall(MODULE_ITEM *module, int argc, const char *argv[])
return
NULL
;
}
}
else
{
if
(
snprintf_s
(
path
,
sizeof
(
path
),
sizeof
(
path
)
-
1
,
"/system/"
MODULE_LIB_NAME
"/%s/lib%s"
MODULE_SUFFIX_D
,
module
->
moduleMgr
->
name
,
module
->
name
)
<
0
)
{
const
char
*
fmt
=
(
InUpdaterMode
()
==
0
)
?
"/system/"
MODULE_LIB_NAME
:
"/"
MODULE_LIB_NAME
;
if
(
snprintf_s
(
path
,
sizeof
(
path
),
sizeof
(
path
)
-
1
,
"%s/%s/lib%s"
MODULE_SUFFIX_D
,
fmt
,
module
->
moduleMgr
->
name
,
module
->
name
)
<
0
)
{
return
NULL
;
}
}
...
...
@@ -225,8 +227,9 @@ MODULE_MGR *ModuleMgrScan(const char *modulePath)
if
(
modulePath
[
0
]
==
'/'
)
{
BEGET_CHECK
(
!
(
snprintf_s
(
path
,
sizeof
(
path
),
sizeof
(
path
)
-
1
,
"%s"
,
modulePath
)
<
0
),
return
NULL
);
}
else
{
const
char
*
fmt
=
(
InUpdaterMode
()
==
0
)
?
"/system/"
MODULE_LIB_NAME
:
"/"
MODULE_LIB_NAME
;
BEGET_CHECK
(
!
(
snprintf_s
(
path
,
sizeof
(
path
),
sizeof
(
path
)
-
1
,
"
/system/"
MODULE_LIB_NAME
"/%s"
,
modulePath
)
<
0
),
return
NULL
);
"
%s/%s"
,
fmt
,
modulePath
)
<
0
),
return
NULL
);
}
scanModules
(
moduleMgr
,
path
);
...
...
services/param/base/param_comm.c
浏览文件 @
c772e32e
...
...
@@ -392,6 +392,13 @@ INIT_LOCAL_API ParamSecurityLabel *GetParamSecurityLabel()
{
ParamWorkSpace
*
paramSpace
=
GetParamWorkSpace
();
PARAM_CHECK
(
paramSpace
!=
NULL
,
return
NULL
,
"Invalid paramSpace"
);
#if !(defined __LITEOS_A__ || defined __LITEOS_M__)
#ifndef STARTUP_INIT_TEST
paramSpace
->
securityLabel
.
cred
.
pid
=
getpid
();
paramSpace
->
securityLabel
.
cred
.
uid
=
geteuid
();
paramSpace
->
securityLabel
.
cred
.
gid
=
getegid
();
#endif
#endif
return
&
paramSpace
->
securityLabel
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录