* Copyright (c) 2024 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <fcntl.h>
#include <grp.h>
#include <inttypes.h>
#include <limits.h>
#include <linux/ioctl.h>
#include <sys/capability.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mount.h>
#include <sys/prctl.h>
#include <sys/signalfd.h>
#include <sys/stat.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include <dirent.h>
#undef _GNU_SOURCE
#define _GNU_SOURCE
#include <dlfcn.h>
#include <malloc.h>
#include <sched.h>
#include "appspawn_adapter.h"
#include "appspawn_hook.h"
#include "appspawn_service.h"
#include "appspawn_msg.h"
#include "appspawn_manager.h"
#include "appspawn_silk.h"
#include "appspawn_trace.h"
#include "appspawn_utils.h"
#include "init_param.h"
#include "parameter.h"
#include "securec.h"
#ifdef APPSPAWN_HITRACE_OPTION
#include "hitrace_option/hitrace_option.h"
#endif
#ifdef CODE_SIGNATURE_ENABLE
#include "code_sign_attr_utils.h"
#endif
#ifdef SECURITY_COMPONENT_ENABLE
#include "sec_comp_enhance_kit_c.h"
#endif
#ifdef WITH_SELINUX
#include "selinux/selinux.h"
#endif
#define PROVISION_TYPE_DEBUG "debug"
#define DEVICE_NULL_STR "/dev/null"
#define PROCESS_START_TIME_ENV "PROCESS_START_TIME"
#define BITLEN32 32
#define PID_NS_INIT_UID 100000
#define PID_NS_INIT_GID 100000
#define PREINSTALLED_HAP_FLAG 0x01
#define MIN_VALID_APP_UID 10000
#define MIN_VALID_APP_GID 10000
#define APP_SIGN_TYPE_DEFAULT "none"
int __attribute__((weak)) SetUserId(char *userIdStr)
{
APPSPAWN_LOGV("SetUserId called (weak implementation)");
return 0;
}
static int SetProcessName(const AppSpawnMgr *content, const AppSpawningCtx *property)
{
const char *processName = GetProcessName(property);
APPSPAWN_CHECK(processName != NULL, return -EINVAL, "Can not get process name");
size_t len = strlen(processName);
char shortName[MAX_LEN_SHORT_NAME] = {0};
size_t copyLen = len;
const char *pos = processName;
if (len >= MAX_LEN_SHORT_NAME) {
copyLen = MAX_LEN_SHORT_NAME - 1;
pos += (len - copyLen);
}
bool isRet = strncpy_s(shortName, MAX_LEN_SHORT_NAME, pos, copyLen) != EOK;
APPSPAWN_CHECK(!isRet, return EINVAL, "strncpy_s short name error: %{public}d", errno);
isRet = prctl(PR_SET_NAME, shortName) == -1;
APPSPAWN_CHECK(!isRet, return errno, "prctl(PR_SET_NAME) error: %{public}d", errno);
isRet = memset_s(content->content.longProcName,
(size_t)content->content.longProcNameLen, 0, (size_t)content->content.longProcNameLen) != EOK;
APPSPAWN_CHECK(!isRet, return EINVAL, "Failed to memset long process name");
isRet = strncpy_s(content->content.longProcName, content->content.longProcNameLen, processName, len) != EOK;
APPSPAWN_CHECK(!isRet, return EINVAL,
"strncpy_s long name error: %{public}d longProcNameLen %{public}u", errno, content->content.longProcNameLen);
return 0;
}
static int SetKeepCapabilities(const AppSpawnMgr *content, const AppSpawningCtx *property)
{
AppSpawnMsgDacInfo *dacInfo = (AppSpawnMsgDacInfo *)GetAppProperty(property, TLV_DAC_INFO);
APPSPAWN_CHECK(dacInfo != NULL, return APPSPAWN_TLV_NONE,
"No tlv %{public}d in msg %{public}s", TLV_DOMAIN_INFO, GetProcessName(property));
if (dacInfo->uid != 0) {
bool isRet = prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0) == -1;
APPSPAWN_CHECK(!isRet, return errno, "set keepcaps failed: %{public}d", errno);
}
return 0;
}
static int SetAmbientCapability(int cap)
{
if (prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_RAISE, cap, 0, 0)) {
APPSPAWN_LOGE("prctl PR_CAP_AMBIENT failed: %{public}d", errno);
return -1;
}
return 0;
}
static int SetAmbientCapabilities(const AppSpawningCtx *property)
{
if (!IsNoShareFsEnable()) {
return 0;
}
if (SetAmbientCapability(CAP_DAC_OVERRIDE) != 0) {
APPSPAWN_LOGE("set ambient failed:%{public}d", CAP_DAC_OVERRIDE);
return -1;
}
if (CheckAppMsgFlagsSet(property, APP_FLAGS_CUSTOM_SANDBOX)) {
APPSPAWN_CHECK(SetAmbientCapability(CAP_KILL) == 0, return -1, "set ambient failed:%{public}d", CAP_KILL);
}
if (CheckAppMsgFlagsSet(property, APP_FLAGS_SET_CAPS_FOWNER)) {
APPSPAWN_CHECK(SetAmbientCapability(CAP_FOWNER) == 0, return -1, "set ambient failed:%{public}d", CAP_FOWNER);
}
return 0;
}
APPSPAWN_STATIC int SetCapabilities(const AppSpawnMgr *content, const AppSpawningCtx *property)
{
struct __user_cap_header_struct capHeader;
bool isRet = memset_s(&capHeader, sizeof(capHeader), 0, sizeof(capHeader)) != EOK;
APPSPAWN_CHECK(!isRet, return -EINVAL, "Failed to memset cap header");
capHeader.version = _LINUX_CAPABILITY_VERSION_3;
capHeader.pid = 0;
struct __user_cap_data_struct capData[2];
isRet = memset_s(&capData, sizeof(capData), 0, sizeof(capData)) != EOK;
APPSPAWN_CHECK(!isRet, return -EINVAL, "Failed to memset cap data");
#ifdef GRAPHIC_PERMISSION_CHECK
u_int64_t baseCaps = 0;
if (IsNoShareFsEnable() &&
!CheckAppMsgFlagsSet(property, APP_FLAGS_ISOLATED_SANDBOX_TYPE) &&
(IsAppSpawnMode(content) || IsNativeSpawnMode(content))) {
baseCaps = CAP_TO_MASK(CAP_DAC_OVERRIDE);
baseCaps |= CheckAppMsgFlagsSet(property, APP_FLAGS_CUSTOM_SANDBOX) ? CAP_TO_MASK(CAP_KILL) : 0;
baseCaps |= CheckAppMsgFlagsSet(property, APP_FLAGS_SET_CAPS_FOWNER) ? CAP_TO_MASK(CAP_FOWNER) : 0;
}
const uint64_t inheriTable = baseCaps;
const uint64_t permitted = baseCaps;
const uint64_t effective = baseCaps;
#else
const uint64_t inheriTable = 0x3fffffffff;
const uint64_t permitted = 0x3fffffffff;
const uint64_t effective = 0x3fffffffff;
#endif
capData[0].inheritable = (__u32)(inheriTable);
capData[1].inheritable = (__u32)(inheriTable >> BITLEN32);
capData[0].permitted = (__u32)(permitted);
capData[1].permitted = (__u32)(permitted >> BITLEN32);
capData[0].effective = (__u32)(effective);
capData[1].effective = (__u32)(effective >> BITLEN32);
isRet = capset(&capHeader, &capData[0]) != 0;
APPSPAWN_CHECK(!isRet, return -errno, "Failed to capset errno: %{public}d", errno);
if (IsNoShareFsEnable() &&
!CheckAppMsgFlagsSet(property, APP_FLAGS_ISOLATED_SANDBOX_TYPE) &&
(IsAppSpawnMode(content) || IsNativeSpawnMode(content))) {
APPSPAWN_CHECK(SetAmbientCapabilities(property) == 0, return -1, "Failed to set ambient");
}
return 0;
}
static void InitDebugParams(const AppSpawnMgr *content, const AppSpawningCtx *property)
{
#if defined(__aarch64__) || defined(__x86_64__)
const char *debugSoPath = "/system/lib64/libhidebug.so";
#else
const char *debugSoPath = "/system/lib/libhidebug.so";
#endif
const char *processName = GetProcessName(property);
APPSPAWN_CHECK(processName != NULL, return, "Can not get process name");
bool isRet = access(debugSoPath, F_OK) != 0;
APPSPAWN_CHECK(!isRet, return,
"access failed, errno: %{public}d debugSoPath: %{public}s", errno, debugSoPath);
void *handle = dlopen(debugSoPath, RTLD_LAZY);
APPSPAWN_CHECK(handle != NULL, return, "Failed to dlopen libhidebug.so errno: %{public}s", dlerror());
bool (*initParam)(const char *name);
initParam = (bool (*)(const char *name))dlsym(handle, "InitEnvironmentParam");
APPSPAWN_CHECK(initParam != NULL, dlclose(handle);
return, "Failed to dlsym errno: %{public}s", dlerror());
(*initParam)(processName);
dlclose(handle);
}
static void ClearEnvironment(const AppSpawnMgr *content, const AppSpawningCtx *property)
{
sigset_t mask;
sigemptyset(&mask);
sigaddset(&mask, SIGCHLD);
sigaddset(&mask, SIGTERM);
sigprocmask(SIG_UNBLOCK, &mask, NULL);
AppSpawningCtx *ctx = (AppSpawningCtx *)property;
close(ctx->forkCtx.fd[0]);
ctx->forkCtx.fd[0] = -1;
return;
}
#ifdef CODE_SIGNATURE_ENABLE
static char *GetProvisionType(const AppSpawningCtx *property, uint32_t *len)
{
char *provisionType = GetAppPropertyExt(property, MSG_EXT_NAME_PROVISION_TYPE, len);
if (provisionType == NULL) {
APPSPAWN_LOGE("get provision type failed, defaut is %{public}s", PROVISION_TYPE_DEBUG);
return PROVISION_TYPE_DEBUG;
}
return provisionType;
}
static char *GetXpmDefaultInfo(const AppSpawningCtx *property, const char *name, uint32_t *len,
const char *defaultValue, const char *logName)
{
char *value = GetAppPropertyExt(property, name, len);
if (value == NULL) {
APPSPAWN_LOGE("get %{public}s failed, default is %{public}s", logName, defaultValue);
return (char *)defaultValue;
}
return value;
}
#endif
APPSPAWN_STATIC int SetXpmConfig(const AppSpawnMgr *content, const AppSpawningCtx *property)
{
#ifdef CODE_SIGNATURE_ENABLE
if (IsNWebSpawnMode(content)) {
return 0;
}
uint32_t len = 0;
char *provisionType = GetProvisionType(property, &len);
char *appSignType = GetXpmDefaultInfo(
property, MSG_EXT_NAME_APP_SIGN_TYPE, &len, APP_SIGN_TYPE_DEFAULT, "app sign type");
char *appDistributionType = GetXpmDefaultInfo(property, MSG_EXT_NAME_APP_DISTRIBUTION_TYPE,
&len, XPM_DISTRIBUTION_STR_NONE, "app distribution type");
AppSpawnMsgOwnerId *ownerInfo = (AppSpawnMsgOwnerId *)GetAppProperty(property, TLV_OWNER_INFO);
const char *ownerId = ownerInfo ? ownerInfo->ownerId : NULL;
char *apiTargetVersionStr = GetAppPropertyExt(property, MSG_EXT_NAME_API_TARGET_VERSION, &len);
int jitfortEnable = IsJitFortModeOn(property) ? 1 : 0;
int idType = PROCESS_OWNERID_APP;
uint32_t *xpmIdType = (uint32_t *)GetAppPropertyExt(property, MSG_EXT_NAME_XPM_ID_TYPE, &len);
if (xpmIdType != NULL && len == sizeof(uint32_t)) {
idType = (int)*xpmIdType;
APPSPAWN_LOGV("SetXpmConfig: Using idType=%{public}d from XPM_ID_TYPE ext TLV", idType);
} else if (strcmp(provisionType, PROVISION_TYPE_DEBUG) == 0) {
idType = PROCESS_OWNERID_DEBUG;
} else if (ownerInfo == NULL) {
idType = PROCESS_OWNERID_COMPAT;
} else if (CheckAppMsgFlagsSet(property, APP_FLAGS_TEMP_JIT)) {
idType = PROCESS_OWNERID_APP_TEMP_ALLOW;
}
#ifdef ALLOW_DEBUG_PLATFORM
bool enableNativeDebug = (strcmp(provisionType, PROVISION_TYPE_DEBUG) != 0) && (ownerInfo != NULL) &&
!CheckAppMsgFlagsSet(property, APP_FLAGS_TEMP_JIT) &&
(GetAppSpawnMsgType(property) == MSG_SPAWN_NATIVE_PROCESS);
APPSPAWN_ONLY_EXPER(enableNativeDebug, idType = PROCESS_OWNERID_DEBUG_PLATFORM);
#endif
struct XpmInitParam xpmInitParam = XPM_INIT_PARAM_DEFAULT;
xpmInitParam.enableJitFort = jitfortEnable;
xpmInitParam.idType = (uint32_t)idType;
xpmInitParam.ownerId = ownerId;
xpmInitParam.apiTargetVersionStr = apiTargetVersionStr;
xpmInitParam.appSignType = appSignType;
xpmInitParam.appDistributionType = appDistributionType;
int ret = InitXpmWithParam(&xpmInitParam);
APPSPAWN_CHECK(ret == 0, return ret, "set xpm region failed: %{public}d", ret);
#endif
return 0;
}
APPSPAWN_STATIC int SetUidGid(const AppSpawnMgr *content, const AppSpawningCtx *property)
{
AppSpawnMsgDacInfo *dacInfo = (AppSpawnMsgDacInfo *)GetAppProperty(property, TLV_DAC_INFO);
APPSPAWN_CHECK(dacInfo != NULL, return APPSPAWN_TLV_NONE,
"No tlv %{public}d in msg %{public}s", TLV_DAC_INFO, GetProcessName(property));
APPSPAWN_CHECK(dacInfo->uid >= MIN_VALID_APP_UID && dacInfo->gid >= MIN_VALID_APP_GID &&
dacInfo->gidCount <= APP_MAX_GIDS, return APPSPAWN_MSG_INVALID,
"uid %{public}u or gid %{public}u gidCount %{public}u is invalid ",
dacInfo->uid, dacInfo->gid, dacInfo->gidCount);
int ret = setgroups(dacInfo->gidCount, (const gid_t *)(&dacInfo->gidTable[0]));
APPSPAWN_CHECK(ret == 0, return errno,
"setgroups failed: %{public}d, gids.size=%{public}u", errno, dacInfo->gidCount);
ret = setresgid(dacInfo->gid, dacInfo->gid, dacInfo->gid);
APPSPAWN_CHECK(ret == 0, return errno, "setgid(%{public}u) failed: %{public}d", dacInfo->gid, errno);
StartAppspawnTrace("SetSeccompFilter");
ret = SetSeccompFilter(content, property);
FinishAppspawnTrace();
APPSPAWN_CHECK(ret == 0, return ret, "Failed to set setSeccompFilter");
* then all capabilities are cleared from the effective set
*/
ret = setresuid(dacInfo->uid, dacInfo->uid, dacInfo->uid);
APPSPAWN_CHECK(ret == 0, return errno, "setuid(%{public}u) failed: %{public}d", dacInfo->uid, errno);
char *userIdStr = (char *)GetAppSpawnMsgExtInfo(property->message, MSG_EXT_NAME_USERID, NULL);
if (userIdStr != NULL) {
APPSPAWN_LOGV("Set userId to %{public}s for process %{public}s", userIdStr, GetProcessName(property));
ret = SetUserId(userIdStr);
APPSPAWN_CHECK_ONLY_LOGW(ret == 0, "SetUserId(%{public}s) failed", userIdStr);
}
* uses the HAP_DEBUGGABLE env as the basis for determining whether the application process name has been set.
*/
if ((CheckAppMsgFlagsSet(property, APP_FLAGS_DEBUGGABLE) || property->allowDumpable) &&
IsDeveloperModeOn(property)) {
setenv("HAP_DEBUGGABLE", "true", 1);
if (prctl(PR_SET_DUMPABLE, 1, 0, 0, 0) == -1) {
APPSPAWN_LOGE("Failed to set app dumpable: %{public}s", strerror(errno));
}
} else {
setenv("HAP_DEBUGGABLE", "false", 1);
}
return 0;
}
#ifndef APPSPAWN_CHANGE_SCHED_ENABLE
typedef struct TaskConfig {
pid_t pid;
int32_t value;
} TaskConfig;
#define QOS_CTRL_SET_QOS_PROC_THREAD _IOWR('q', 2, struct TaskConfig)
#define QOS_LEVEL 7
static void SetProcessQos(void)
{
int fd = open("/dev/qos_sched_ctrl", O_RDWR | O_CLOEXEC);
APPSPAWN_CHECK(fd >= 0, return, "Failed to open qos_sched_ctrl file, errno: %{public}d", errno);
pid_t currPid = getpid();
APPSPAWN_CHECK(currPid > 0, close(fd);
return, "Failed to get current pid, errno: %{public}d", errno);
TaskConfig config = {
.pid = currPid,
.value = QOS_LEVEL
};
APPSPAWN_CHECK(ioctl(fd, QOS_CTRL_SET_QOS_PROC_THREAD, &config) >= 0, close(fd);
return, "Failed to set qos proc thread, errno: %{public}d", errno);
close(fd);
}
#endif
APPSPAWN_STATIC int SetSchedPriority(const AppSpawnMgr *content, const AppSpawningCtx *property)
{
#ifdef APPSPAWN_CHANGE_SCHED_ENABLE
if (IsAppSpawnMode(content) || IsHybridSpawnMode(content)) {
struct sched_param param = { 0 };
param.sched_priority = 0;
int ret = sched_setscheduler(0, SCHED_OTHER, ¶m);
APPSPAWN_CHECK_ONLY_LOG(ret == 0, "UpdateSchedPrio failed ret: %{public}d, %{public}d", ret, errno);
}
#else
if (IsAppSpawnMode(content) || IsHybridSpawnMode(content)) {
struct sched_param param = { 0 };
param.sched_priority = 1;
int ret = sched_setscheduler(0, SCHED_FIFO | SCHED_RESET_ON_FORK, ¶m);
APPSPAWN_CHECK_ONLY_LOG(ret == 0, "UpdateSchedPrio failed ret: %{public}d, %{public}d", ret, errno);
SetProcessQos();
}
#endif
return 0;
}
static int32_t SetFileDescriptors(const AppSpawnMgr *content, const AppSpawningCtx *property)
{
#ifndef APPSPAWN_TEST
int devNullFd = open(DEVICE_NULL_STR, O_RDWR);
if (devNullFd == -1) {
APPSPAWN_LOGE("open dev_null error: %{public}d", errno);
return (-errno);
}
if (dup2(devNullFd, STDIN_FILENO) == -1) {
APPSPAWN_LOGE("dup2 STDIN error: %{public}d", errno);
return (-errno);
}
if (dup2(devNullFd, STDOUT_FILENO) == -1) {
APPSPAWN_LOGE("dup2 STDOUT error: %{public}d", errno);
return (-errno);
}
if (dup2(devNullFd, STDERR_FILENO) == -1) {
APPSPAWN_LOGE("dup2 STDERR error: %{public}d", errno);
return (-errno);
}
if (devNullFd > STDERR_FILENO) {
close(devNullFd);
}
#endif
return 0;
}
static int32_t CheckTraceStatus(void)
{
int fd = open("/proc/self/status", O_RDONLY);
APPSPAWN_CHECK(fd >= 0, return errno, "Failed to open /proc/self/status error: %{public}d", errno);
char data[1024] = {0};
ssize_t dataNum = read(fd, data, sizeof(data) - 1);
(void)close(fd);
APPSPAWN_CHECK(dataNum > 0, return -1, "Failed to read file /proc/self/status error: %{public}d", errno);
const char *tracerPid = "TracerPid:\t";
data[dataNum] = '\0';
char *traceStr = strstr(data, tracerPid);
APPSPAWN_CHECK(traceStr != NULL, return -1, "Not found %{public}s", tracerPid);
char *separator = strchr(traceStr, '\n');
APPSPAWN_CHECK(separator != NULL, return -1, "Not found %{public}s", "\n");
int len = separator - traceStr - strlen(tracerPid);
char pid = *(traceStr + strlen(tracerPid));
if (len > 1 || pid != '0') {
return 0;
}
return -1;
}
static int32_t WaitForDebugger(const AppSpawningCtx *property)
{
if (CheckAppMsgFlagsSet(property, APP_FLAGS_NATIVEDEBUG) && CheckAppMsgFlagsSet(property, APP_FLAGS_DEBUGGABLE)) {
uint32_t count = 0;
while (CheckTraceStatus() != 0) {
#ifndef APPSPAWN_TEST
usleep(1000 * 100);
#else
if (count > 0) {
break;
}
#endif
count++;
if (count % (10 * 60) == 0) {
count = 0;
APPSPAWN_LOGI("wait for debugger, please attach the process");
}
}
}
return 0;
}
static int SpawnSetPreInstalledFlag(AppSpawningCtx *property)
{
AppSpawnMsgDomainInfo *msgDomainInfo = (AppSpawnMsgDomainInfo *)GetAppProperty(property, TLV_DOMAIN_INFO);
APPSPAWN_CHECK(msgDomainInfo != NULL, return APPSPAWN_TLV_NONE, "No domain info in req from %{public}s",
GetProcessName(property));
if ((msgDomainInfo->hapFlags & PREINSTALLED_HAP_FLAG) != 0) {
int ret = SetAppSpawnMsgFlag(property->message, TLV_MSG_FLAGS, APP_FLAGS_PRE_INSTALLED_HAP);
if (ret != 0) {
APPSPAWN_LOGE("Set appspawn msg flag failed");
return ret;
}
}
return 0;
}
static int SpawnInitSpawningEnv(AppSpawnMgr *content, AppSpawningCtx *property)
{
APPSPAWN_LOGV("Spawning: clear env");
int ret = SetProcessName(content, property);
APPSPAWN_CHECK_ONLY_EXPER(ret == 0, return ret);
ClearEnvironment(content, property);
ResetParamSecurityLabel();
ret = SetAppAccessToken(content, property);
APPSPAWN_CHECK_ONLY_EXPER(ret == 0, return ret);
ret = SpawnSetPreInstalledFlag(property);
APPSPAWN_CHECK_ONLY_EXPER(ret == 0, return ret);
return 0;
}
static int SpawnSetAppEnv(AppSpawnMgr *content, AppSpawningCtx *property)
{
APPSPAWN_LOGV("Spawning: set appEnv");
int ret = SetEnvInfo(content, property);
APPSPAWN_CHECK_ONLY_EXPER(ret == 0, return ret);
return 0;
}
static int SpawnEnableCache(AppSpawnMgr *content, AppSpawningCtx *property)
{
APPSPAWN_LOGV("Spawning: enable cache for app process");
mallopt(M_OHOS_CONFIG, M_TCACHE_PERFORMANCE_MODE);
mallopt(M_OHOS_CONFIG, M_ENABLE_OPT_TCACHE);
mallopt(M_SET_THREAD_CACHE, M_THREAD_CACHE_ENABLE);
mallopt(M_DELAYED_FREE, M_DELAYED_FREE_ENABLE);
int ret = SetInternetPermission(property);
APPSPAWN_CHECK_ONLY_EXPER(ret == 0, return ret);
return ret;
}
static void SpawnLoadSilk(const AppSpawnMgr *content, const AppSpawningCtx *property)
{
const char *processName = GetBundleName(property);
APPSPAWN_CHECK(processName != NULL, return, "Can not get bundle name");
(void)LoadSilkLibrary(processName);
}
#ifdef APPSPAWN_HITRACE_OPTION
APPSPAWN_STATIC int FilterAppSpawnTrace(AppSpawnMgr *content, AppSpawningCtx *property)
{
const char *processName = GetProcessName(property);
if (processName != NULL) {
pid_t pid = getpid();
APPSPAWN_LOGV("processName: %{public}s pid: %{public}d", processName, pid);
FilterAppTrace(processName, pid);
} else {
APPSPAWN_LOGI("processName is NULL");
}
return 0;
}
#endif
static int SpawnSetProperties(AppSpawnMgr *content, AppSpawningCtx *property)
{
APPSPAWN_LOGV("Spawning: set child property");
SpawnLoadSilk(content, property);
(void)umask(DEFAULT_UMASK);
int ret = SetKeepCapabilities(content, property);
APPSPAWN_CHECK_ONLY_EXPER(ret == 0, return ret);
ret = SetXpmConfig(content, property);
APPSPAWN_CHECK_ONLY_EXPER(ret == 0, return ret);
ret = SetProcessName(content, property);
APPSPAWN_CHECK_ONLY_EXPER(ret == 0, return ret);
ret = SetSchedPriority(content, property);
APPSPAWN_CHECK_ONLY_EXPER(ret == 0, return ret);
ret = SetUidGid(content, property);
APPSPAWN_CHECK_ONLY_EXPER(ret == 0, return ret);
ret = SetFileDescriptors(content, property);
APPSPAWN_CHECK_ONLY_EXPER(ret == 0, return ret);
ret = SetCapabilities(content, property);
APPSPAWN_CHECK_ONLY_EXPER(ret == 0, return ret);
StartAppspawnTrace("SetSelinuxCon");
ret = SetSelinuxCon(content, property);
FinishAppspawnTrace();
APPSPAWN_CHECK_ONLY_EXPER(ret == 0, return ret);
ret = WaitForDebugger(property);
APPSPAWN_CHECK_ONLY_EXPER(ret == 0, return ret);
APPSPAWN_ONLY_EXPER(GetAppSpawnMsgType(property) == MSG_SPAWN_NATIVE_PROCESS, return 0);
#ifdef SECURITY_COMPONENT_ENABLE
StartAppspawnTrace("InitSecCompClientEnhance");
InitSecCompClientEnhance();
FinishAppspawnTrace();
#endif
return 0;
}
static int PreLoadSetSeccompFilter(AppSpawnMgr *content)
{
int ret = SetUidGidFilter(content);
APPSPAWN_CHECK_ONLY_EXPER(ret == 0, return ret);
return ret;
}
static int SpawnComplete(AppSpawnMgr *content, AppSpawningCtx *property)
{
InitDebugParams(content, property);
return 0;
}
static int SpawnGetSpawningFlag(AppSpawnMgr *content, AppSpawningCtx *property)
{
APPSPAWN_LOGV("Spawning: prepare app %{public}s", GetProcessName(property));
if (CheckAppMsgFlagsSet(property, APP_FLAGS_COLD_BOOT)) {
property->client.flags |= CheckEnabled("startup.appspawn.cold.boot", "true") ? APP_COLD_START : 0;
}
if (CheckAppMsgFlagsSet(property, APP_FLAGS_BEGETCTL_BOOT)) {
property->client.flags |= APP_BEGETCTL_BOOT;
APPSPAWN_LOGI("Spawning: prepare app %{public}s, start from begetctl", GetProcessName(property));
}
property->client.flags |= content->flags;
return 0;
}
static int SpawnLoadConfig(AppSpawnMgr *content)
{
LoadSilkConfig();
content->flags |= CheckEnabled("const.security.developermode.state", "true") ? APP_DEVELOPER_MODE : 0;
content->flags |= CheckEnabled("persist.security.jitfort.disabled", "true") ? 0 : APP_JITFORT_MODE;
bool noShareFs = CheckEnabled("const.startup.appspawn_support_nosharefs.enable", "true");
SetNoShareFsEnable(noShareFs);
return 0;
}
static int SpawnLoadSeLinuxConfig(AppSpawnMgr *content)
{
APPSPAWN_CHECK_LOGV(LoadSeLinuxConfig() == 0, return -1, "Failed to load selinux config");
return 0;
}
static int CloseFdArgs(AppSpawnMgr *content, AppSpawningCtx *property)
{
APPSPAWN_CHECK(property != NULL && property->message != NULL
&& property->message->connection != NULL,
return -1, "Get connection info failed");
int fdCount = property->message->connection->receiverCtx.fdCount;
int *fds = property->message->connection->receiverCtx.fds;
if (fds != NULL && fdCount > 0) {
for (int i = 0; i < fdCount; i++) {
if (fds[i] > 0) {
close(fds[i]);
}
}
}
property->message->connection->receiverCtx.fdCount = 0;
return 0;
}
APPSPAWN_STATIC int SetFdEnv(AppSpawnMgr *content, AppSpawningCtx *property)
{
APPSPAWN_CHECK_ONLY_EXPER(property != NULL, return -1);
APPSPAWN_CHECK_ONLY_EXPER(!property->isPrefork, return 0);
AppSpawnMsgNode *message = property->message;
APPSPAWN_CHECK_ONLY_EXPER(message != NULL && message->buffer != NULL && message->connection != NULL, return -1);
APPSPAWN_CHECK_ONLY_EXPER(message->tlvOffset != NULL, return -1);
int findFdIndex = 0;
AppSpawnMsgReceiverCtx recvCtx = message->connection->receiverCtx;
APPSPAWN_CHECK_LOGV(recvCtx.fds != NULL && recvCtx.fdCount > 0, return 0,
"no need set fd info %{public}d, %{public}d", recvCtx.fds != NULL, recvCtx.fdCount);
char keyBuffer[APP_FDNAME_MAXLEN + sizeof(APP_FDENV_PREFIX)];
char value[sizeof(int)];
for (uint32_t index = TLV_MAX; index < (TLV_MAX + message->tlvCount); index++) {
if (message->tlvOffset[index] == INVALID_OFFSET) {
return -1;
}
uint8_t *data = message->buffer + message->tlvOffset[index];
if (((AppSpawnTlv *)data)->tlvType != TLV_MAX) {
continue;
}
AppSpawnTlvExt *tlv = (AppSpawnTlvExt *)data;
if (strcmp(tlv->tlvName, MSG_EXT_NAME_APP_FD) != 0) {
continue;
}
APPSPAWN_CHECK(findFdIndex < recvCtx.fdCount && recvCtx.fds[findFdIndex] > 0, return -1,
"check set env args failed %{public}d, %{public}d, %{public}d",
findFdIndex, recvCtx.fdCount, recvCtx.fds[findFdIndex]);
APPSPAWN_CHECK(snprintf_s(keyBuffer, sizeof(keyBuffer), sizeof(keyBuffer) - 1, APP_FDENV_PREFIX"%s",
data + sizeof(AppSpawnTlvExt)) >= 0, return -1, "failed print env key %{public}d", errno);
APPSPAWN_CHECK(snprintf_s(value, sizeof(value), sizeof(value) - 1,
"%d", recvCtx.fds[findFdIndex++]) >= 0, return -1, "failed print env key %{public}d", errno);
int ret = setenv(keyBuffer, value, 1);
APPSPAWN_CHECK(ret == 0, return -1, "failed setenv %{public}s, %{public}s", keyBuffer, value);
if (findFdIndex >= recvCtx.fdCount) {
break;
}
}
return 0;
}
APPSPAWN_STATIC int RecordStartTime(AppSpawnMgr *content, AppSpawningCtx *property)
{
struct timespec ts;
int ret = clock_gettime(CLOCK_MONOTONIC, &ts);
APPSPAWN_CHECK(ret == 0, return 0, "clock_gettime failed %{public}d,%{public}d", ret, errno);
long long startTime = (ts.tv_sec * 1000LL) + (ts.tv_nsec / 1000000);
char timeChar[32];
ret = snprintf_s(timeChar, sizeof(timeChar), sizeof(timeChar) - 1, "%lld", startTime);
APPSPAWN_CHECK(ret > 0, return 0, "failed to snprintf_s %{public}d,%{public}d", ret, errno);
ret = setenv(PROCESS_START_TIME_ENV, timeChar, 1);
APPSPAWN_CHECK_ONLY_LOG(ret == 0, "set env failed %{public}d,%{public}d", ret, errno);
return 0;
}
MODULE_CONSTRUCTOR(void)
{
APPSPAWN_LOGV("Load common module ...");
AddPreloadHook(HOOK_PRIO_COMMON, PreLoadSetSeccompFilter);
AddPreloadHook(HOOK_PRIO_COMMON, SpawnLoadConfig);
AddPreloadHook(HOOK_PRIO_COMMON, SpawnLoadSeLinuxConfig);
AddAppSpawnHook(STAGE_PARENT_PRE_FORK, HOOK_PRIO_HIGHEST, SpawnGetSpawningFlag);
AddAppSpawnHook(STAGE_CHILD_PRE_COLDBOOT, HOOK_PRIO_HIGHEST, SpawnInitSpawningEnv);
AddAppSpawnHook(STAGE_CHILD_PRE_COLDBOOT, HOOK_PRIO_COMMON + 1, SpawnSetAppEnv);
AddAppSpawnHook(STAGE_CHILD_EXECUTE, HOOK_PRIO_HIGHEST, SpawnEnableCache);
#ifdef APPSPAWN_HITRACE_OPTION
AddAppSpawnHook(STAGE_CHILD_EXECUTE, HOOK_PRIO_COMMON, FilterAppSpawnTrace);
#endif
AddAppSpawnHook(STAGE_CHILD_EXECUTE, HOOK_PRIO_PROPERTY, SpawnSetProperties);
AddAppSpawnHook(STAGE_CHILD_POST_RELY, HOOK_PRIO_HIGHEST, SpawnComplete);
AddAppSpawnHook(STAGE_PARENT_POST_FORK, HOOK_PRIO_HIGHEST, CloseFdArgs);
AddAppSpawnHook(STAGE_CHILD_PRE_COLDBOOT, HOOK_PRIO_HIGHEST, SetFdEnv);
AddAppSpawnHook(STAGE_CHILD_PRE_RUN, HOOK_PRIO_HIGHEST, RecordStartTime);
}