Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Startup Init Lite
提交
aaf98910
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看板
未验证
提交
aaf98910
编写于
1月 28, 2022
作者:
O
openharmony_ci
提交者:
Gitee
1月 28, 2022
浏览文件
操作
浏览文件
下载
差异文件
!281 Add 支持在配置文件中配置服务进程的绑核
Merge pull request !281 from 熊磊/01288
上级
45a41a1b
2bd16c2b
变更
6
显示空白变更内容
内联
并排
Showing
6 changed file
with
98 addition
and
1 deletion
+98
-1
services/init/include/init_service.h
services/init/include/init_service.h
+6
-0
services/init/include/init_service_manager.h
services/init/include/init_service_manager.h
+1
-0
services/init/init_common_service.c
services/init/init_common_service.c
+39
-0
services/init/init_service_manager.c
services/init/init_service_manager.c
+50
-1
test/unittest/BUILD.gn
test/unittest/BUILD.gn
+1
-0
test/unittest/common/BUILD.gn
test/unittest/common/BUILD.gn
+1
-0
未找到文件。
services/init/include/init_service.h
浏览文件 @
aaf98910
...
@@ -78,6 +78,11 @@ typedef enum {
...
@@ -78,6 +78,11 @@ typedef enum {
END_RECV_READY
,
END_RECV_READY
,
}
ServiceEndMode
;
}
ServiceEndMode
;
typedef
struct
{
int
*
cpus
;
int
cpuNum
;
}
CpuArgs
;
typedef
struct
{
typedef
struct
{
uid_t
uID
;
uid_t
uID
;
gid_t
*
gIDArray
;
gid_t
*
gIDArray
;
...
@@ -130,6 +135,7 @@ typedef struct Service_ {
...
@@ -130,6 +135,7 @@ typedef struct Service_ {
int
*
fds
;
int
*
fds
;
size_t
fdCount
;
size_t
fdCount
;
ServiceJobs
serviceJobs
;
ServiceJobs
serviceJobs
;
CpuArgs
cpuInfo
;
}
Service
;
}
Service
;
int
ServiceStart
(
Service
*
service
);
int
ServiceStart
(
Service
*
service
);
...
...
services/init/include/init_service_manager.h
浏览文件 @
aaf98910
...
@@ -35,6 +35,7 @@ extern "C" {
...
@@ -35,6 +35,7 @@ extern "C" {
#define CONSOLE_STR_IN_CFG "console"
#define CONSOLE_STR_IN_CFG "console"
#define D_CAPS_STR_IN_CFG "d-caps"
#define D_CAPS_STR_IN_CFG "d-caps"
#define APL_STR_IN_CFG "apl"
#define APL_STR_IN_CFG "apl"
#define CPU_CORE_STR_IN_CFG "cpucore"
#define MAX_SERVICES_CNT_IN_FILE 100
#define MAX_SERVICES_CNT_IN_FILE 100
...
...
services/init/init_common_service.c
浏览文件 @
aaf98910
...
@@ -18,6 +18,8 @@
...
@@ -18,6 +18,8 @@
#include <signal.h>
#include <signal.h>
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
#include <sched.h>
#include <stdio.h>
#ifdef __MUSL__
#ifdef __MUSL__
#include <stropts.h>
#include <stropts.h>
#endif
#endif
...
@@ -225,6 +227,41 @@ static void PublishHoldFds(Service *service)
...
@@ -225,6 +227,41 @@ static void PublishHoldFds(Service *service)
}
}
}
}
static
int
SetAffinityBetweenProcAndCore
(
pid_t
pid
,
int
cpuIndex
)
{
cpu_set_t
setMask
;
CPU_ZERO
(
&
setMask
);
CPU_SET
(
cpuIndex
,
&
setMask
);
int
ret
=
sched_setaffinity
(
pid
,
sizeof
(
cpu_set_t
),
&
setMask
);
if
(
ret
!=
0
)
{
INIT_LOGI
(
"Set affinity between process(pid=%d) with CPU's core %d failed"
,
pid
,
cpuIndex
);
return
SERVICE_FAILURE
;
}
else
{
INIT_LOGE
(
"Set affinity between process(pid=%d) with CPU's core %d successfully"
,
pid
,
cpuIndex
);
}
return
SERVICE_SUCCESS
;
}
static
int
BindCpuCore
(
Service
*
service
)
{
if
(
service
==
NULL
||
service
->
cpuInfo
.
cpuNum
<=
0
)
{
return
SERVICE_SUCCESS
;
}
long
cpuNum
=
sysconf
(
_SC_NPROCESSORS_CONF
);
INIT_ERROR_CHECK
(
service
->
cpuInfo
.
cpuNum
<=
cpuNum
,
return
SERVICE_FAILURE
,
"%s cpus cores exceeds total number of device cores"
,
service
->
name
);
int
index
=
0
;
for
(
int
i
=
0
;
i
<
service
->
cpuInfo
.
cpuNum
;
i
++
)
{
index
=
(
int
)
service
->
cpuInfo
.
cpus
[
i
];
if
((
int
)
cpuNum
<=
index
)
{
INIT_LOGW
(
"%s core number %d of CPU cores does not exist"
,
service
->
name
,
index
);
continue
;
}
(
void
)
SetAffinityBetweenProcAndCore
(
getpid
(),
index
);
}
return
SERVICE_SUCCESS
;
}
int
ServiceStart
(
Service
*
service
)
int
ServiceStart
(
Service
*
service
)
{
{
INIT_ERROR_CHECK
(
service
!=
NULL
,
return
SERVICE_FAILURE
,
"start service failed! null ptr."
);
INIT_ERROR_CHECK
(
service
!=
NULL
,
return
SERVICE_FAILURE
,
"start service failed! null ptr."
);
...
@@ -263,6 +300,8 @@ int ServiceStart(Service *service)
...
@@ -263,6 +300,8 @@ int ServiceStart(Service *service)
OpenConsole
();
OpenConsole
();
}
}
PublishHoldFds
(
service
);
PublishHoldFds
(
service
);
INIT_CHECK_ONLY_ELOG
(
BindCpuCore
(
service
)
==
SERVICE_SUCCESS
,
"binding core number failed for service %s"
,
service
->
name
);
// permissions
// permissions
INIT_ERROR_CHECK
(
SetPerms
(
service
)
==
SERVICE_SUCCESS
,
_exit
(
PROCESS_EXIT_CODE
),
INIT_ERROR_CHECK
(
SetPerms
(
service
)
==
SERVICE_SUCCESS
,
_exit
(
PROCESS_EXIT_CODE
),
"service %s exit! set perms failed! err %d."
,
service
->
name
,
errno
);
"service %s exit! set perms failed! err %d."
,
service
->
name
,
errno
);
...
...
services/init/init_service_manager.c
浏览文件 @
aaf98910
...
@@ -170,6 +170,11 @@ void ReleaseService(Service *service)
...
@@ -170,6 +170,11 @@ void ReleaseService(Service *service)
FreeServiceArg
(
&
service
->
writePidArgs
);
FreeServiceArg
(
&
service
->
writePidArgs
);
FreeServiceArg
(
&
service
->
capsArgs
);
FreeServiceArg
(
&
service
->
capsArgs
);
if
(
service
->
cpuInfo
.
cpus
!=
NULL
)
{
free
(
service
->
cpuInfo
.
cpus
);
service
->
cpuInfo
.
cpus
=
NULL
;
}
service
->
cpuInfo
.
cpuNum
=
0
;
if
(
service
->
servPerm
.
caps
!=
NULL
)
{
if
(
service
->
servPerm
.
caps
!=
NULL
)
{
free
(
service
->
servPerm
.
caps
);
free
(
service
->
servPerm
.
caps
);
service
->
servPerm
.
caps
=
NULL
;
service
->
servPerm
.
caps
=
NULL
;
...
@@ -602,7 +607,7 @@ static int CheckServiceKeyName(const cJSON *curService)
...
@@ -602,7 +607,7 @@ static int CheckServiceKeyName(const cJSON *curService)
char
*
cfgServiceKeyList
[]
=
{
char
*
cfgServiceKeyList
[]
=
{
"name"
,
"path"
,
"uid"
,
"gid"
,
"once"
,
"importance"
,
"caps"
,
"disabled"
,
"name"
,
"path"
,
"uid"
,
"gid"
,
"once"
,
"importance"
,
"caps"
,
"disabled"
,
"writepid"
,
"critical"
,
"socket"
,
"console"
,
"dynamic"
,
"file"
,
"ondemand"
,
"writepid"
,
"critical"
,
"socket"
,
"console"
,
"dynamic"
,
"file"
,
"ondemand"
,
"d-caps"
,
"apl"
,
"jobs"
,
"start-mode"
,
"end-mode"
,
"d-caps"
,
"apl"
,
"jobs"
,
"start-mode"
,
"end-mode"
,
"cpucore"
,
#ifdef WITH_SELINUX
#ifdef WITH_SELINUX
SECON_STR_IN_CFG
,
SECON_STR_IN_CFG
,
#endif // WITH_SELINUX
#endif // WITH_SELINUX
...
@@ -723,6 +728,49 @@ int GetCritical(const cJSON *curArrItem, Service *curServ, const char *attrName
...
@@ -723,6 +728,49 @@ int GetCritical(const cJSON *curArrItem, Service *curServ, const char *attrName
return
SERVICE_SUCCESS
;
return
SERVICE_SUCCESS
;
}
}
static
int
Comparefunc
(
const
void
*
before
,
const
void
*
after
)
{
return
(
*
(
int
*
)
before
-
*
(
int
*
)
after
);
}
static
int
GetCpuArgs
(
const
cJSON
*
argJson
,
const
char
*
name
,
CpuArgs
*
args
)
{
INIT_ERROR_CHECK
(
argJson
!=
NULL
,
return
SERVICE_FAILURE
,
"Invalid argJson"
);
cJSON
*
obj
=
cJSON_GetObjectItem
(
argJson
,
name
);
INIT_CHECK
(
obj
!=
NULL
,
return
SERVICE_FAILURE
);
int
ret
=
cJSON_IsArray
(
obj
);
INIT_ERROR_CHECK
(
ret
,
return
SERVICE_FAILURE
,
"Invalid type"
);
int
count
=
cJSON_GetArraySize
(
obj
);
int
tmpArray
[
count
];
for
(
int
i
=
0
;
i
<
count
;
++
i
)
{
cJSON
*
item
=
cJSON_GetArrayItem
(
obj
,
i
);
INIT_ERROR_CHECK
(
item
!=
NULL
,
return
SERVICE_FAILURE
,
"prase invalid"
);
tmpArray
[
i
]
=
(
int
)
cJSON_GetNumberValue
(
item
);
}
qsort
(
tmpArray
,
count
,
sizeof
(
int
),
Comparefunc
);
int
cpuCount
=
0
;
for
(
int
j
=
0
;
j
<
count
;
j
++
)
{
if
(
j
==
0
&&
tmpArray
[
0
]
==
0
)
{
tmpArray
[
cpuCount
++
]
=
0
;
continue
;
}
if
(
tmpArray
[
j
]
!=
tmpArray
[
j
-
1
])
{
tmpArray
[
cpuCount
++
]
=
tmpArray
[
j
];
}
}
args
->
cpus
=
(
int
*
)
malloc
(
cpuCount
*
sizeof
(
int
));
INIT_ERROR_CHECK
(
args
->
cpus
!=
NULL
,
return
SERVICE_FAILURE
,
"Failed to malloc for argv"
);
for
(
int
i
=
0
;
i
<
cpuCount
;
++
i
)
{
args
->
cpus
[
i
]
=
-
1
;
}
args
->
cpuNum
=
cpuCount
;
for
(
int
i
=
0
;
i
<
count
;
++
i
)
{
args
->
cpus
[
i
]
=
tmpArray
[
i
];
}
return
SERVICE_SUCCESS
;
}
int
ParseOneService
(
const
cJSON
*
curItem
,
Service
*
service
)
int
ParseOneService
(
const
cJSON
*
curItem
,
Service
*
service
)
{
{
INIT_CHECK_RETURN_VALUE
(
curItem
!=
NULL
&&
service
!=
NULL
,
SERVICE_FAILURE
);
INIT_CHECK_RETURN_VALUE
(
curItem
!=
NULL
&&
service
!=
NULL
,
SERVICE_FAILURE
);
...
@@ -756,6 +804,7 @@ int ParseOneService(const cJSON *curItem, Service *service)
...
@@ -756,6 +804,7 @@ int ParseOneService(const cJSON *curItem, Service *service)
(
void
)
GetServiceArgs
(
curItem
,
"writepid"
,
MAX_WRITEPID_FILES
,
&
service
->
writePidArgs
);
(
void
)
GetServiceArgs
(
curItem
,
"writepid"
,
MAX_WRITEPID_FILES
,
&
service
->
writePidArgs
);
(
void
)
GetServiceArgs
(
curItem
,
D_CAPS_STR_IN_CFG
,
MAX_WRITEPID_FILES
,
&
service
->
capsArgs
);
(
void
)
GetServiceArgs
(
curItem
,
D_CAPS_STR_IN_CFG
,
MAX_WRITEPID_FILES
,
&
service
->
capsArgs
);
(
void
)
GetStringItem
(
curItem
,
APL_STR_IN_CFG
,
service
->
apl
,
MAX_APL_NAME
);
(
void
)
GetStringItem
(
curItem
,
APL_STR_IN_CFG
,
service
->
apl
,
MAX_APL_NAME
);
(
void
)
GetCpuArgs
(
curItem
,
CPU_CORE_STR_IN_CFG
,
&
service
->
cpuInfo
);
ret
=
GetServiceCaps
(
curItem
,
service
);
ret
=
GetServiceCaps
(
curItem
,
service
);
INIT_ERROR_CHECK
(
ret
==
0
,
return
SERVICE_FAILURE
,
"Failed to get caps for service %s"
,
service
->
name
);
INIT_ERROR_CHECK
(
ret
==
0
,
return
SERVICE_FAILURE
,
"Failed to get caps for service %s"
,
service
->
name
);
ret
=
GetDynamicService
(
curItem
,
service
);
ret
=
GetDynamicService
(
curItem
,
service
);
...
...
test/unittest/BUILD.gn
浏览文件 @
aaf98910
...
@@ -183,6 +183,7 @@ ohos_unittest("init_ut") {
...
@@ -183,6 +183,7 @@ ohos_unittest("init_ut") {
"STARTUP_INIT_TEST",
"STARTUP_INIT_TEST",
"PARAM_SUPPORT_SAVE_PERSIST",
"PARAM_SUPPORT_SAVE_PERSIST",
"PARAM_SUPPORT_DAC",
"PARAM_SUPPORT_DAC",
"_GNU_SOURCE",
]
]
defines += [ "_GNU_SOURCE" ]
defines += [ "_GNU_SOURCE" ]
...
...
test/unittest/common/BUILD.gn
浏览文件 @
aaf98910
...
@@ -25,6 +25,7 @@ if (defined(ohos_lite)) {
...
@@ -25,6 +25,7 @@ if (defined(ohos_lite)) {
defines = [
defines = [
"OHOS_LITE",
"OHOS_LITE",
"__MUSL__",
"__MUSL__",
"_GNU_SOURCE",
]
]
if (storage_type == "emmc") {
if (storage_type == "emmc") {
defines += [ "USE_EMMC_STORAGE" ]
defines += [ "USE_EMMC_STORAGE" ]
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录