mirror of
https://gitee.com/openharmony/startup_init
synced 2024-11-24 00:30:12 +00:00
51379f94bd
1) add trigger and listening mode for ueventd 2) add get log level api 3) add string array api Signed-off-by: handyohos <zhangxiaotian@huawei.com> #I7KQM1
430 lines
12 KiB
C
430 lines
12 KiB
C
/*
|
|
* Copyright (c) 2021 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 "ueventd_read_cfg.h"
|
|
|
|
#include <ctype.h>
|
|
#include <string.h>
|
|
#include <stdbool.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <sys/stat.h>
|
|
#include "init_utils.h"
|
|
#include "list.h"
|
|
#include "ueventd_utils.h"
|
|
#include "securec.h"
|
|
#define INIT_LOG_TAG "ueventd"
|
|
#include "init_log.h"
|
|
|
|
// default item count in config files
|
|
#define DEFAULTITEMCOUNT (50)
|
|
|
|
typedef enum SECTION {
|
|
SECTION_INVALID = -1,
|
|
SECTION_DEVICE = 0,
|
|
SECTION_SYSFS,
|
|
SECTION_FIRMWARE
|
|
} SECTION;
|
|
|
|
typedef int (*ParseConfigFunc)(char *);
|
|
typedef struct FunctionMapper {
|
|
const char *name;
|
|
ParseConfigFunc func;
|
|
} FUNCTIONMAPPER;
|
|
|
|
struct ListNode g_devices = {
|
|
.next = &g_devices,
|
|
.prev = &g_devices,
|
|
};
|
|
|
|
struct ListNode g_sysDevices = {
|
|
.next = &g_sysDevices,
|
|
.prev = &g_sysDevices,
|
|
};
|
|
|
|
struct ListNode g_firmwares = {
|
|
.next = &g_firmwares,
|
|
.prev = &g_firmwares,
|
|
};
|
|
|
|
static int ParseDeviceConfig(char *p)
|
|
{
|
|
INIT_LOGV("Parse device config info: %s", p);
|
|
char **items = NULL;
|
|
int count = -1;
|
|
// format: <device node> <mode> <uid> <gid> <parameter>
|
|
const int expectedCount = 5;
|
|
|
|
INIT_CHECK_ONLY_ELOG(!INVALIDSTRING(p), "Invalid argument");
|
|
items = SplitStringExt(p, " ", &count, expectedCount);
|
|
if ((count != expectedCount) && (count != expectedCount - 1)) {
|
|
INIT_LOGE("Ignore invalid item: %s", p);
|
|
FreeStringVector(items, count);
|
|
return 0;
|
|
}
|
|
|
|
struct DeviceUdevConf *config = calloc(1, sizeof(struct DeviceUdevConf));
|
|
if (config == NULL) {
|
|
errno = ENOMEM;
|
|
FreeStringVector(items, count);
|
|
return -1;
|
|
}
|
|
config->name = strdup(items[0]); // device node
|
|
errno = 0;
|
|
config->mode = strtoul(items[1], NULL, OCTAL_BASE); // mode
|
|
INIT_ERROR_CHECK(errno == 0, config->mode = DEVMODE,
|
|
"Invalid mode in config file for device node %s. use default mode", config->name);
|
|
config->uid = (uid_t)DecodeUid(items[2]); // uid
|
|
config->gid = (gid_t)DecodeGid(items[3]); // gid
|
|
if (count == expectedCount) {
|
|
config->parameter = strdup(items[4]); // device parameter
|
|
} else {
|
|
config->parameter = NULL;
|
|
}
|
|
OH_ListInit(&config->paramNode);
|
|
OH_ListAddTail(&g_devices, &config->list);
|
|
FreeStringVector(items, count);
|
|
return 0;
|
|
}
|
|
|
|
static int ParseSysfsConfig(char *p)
|
|
{
|
|
INIT_LOGV("Parse sysfs config info: %s", p);
|
|
char **items = NULL;
|
|
int count = -1;
|
|
// format: <syspath> <attribute> <mode> <uid> <gid>
|
|
const int expectedCount = 5;
|
|
|
|
INIT_CHECK_ONLY_ELOG(!INVALIDSTRING(p), "Invalid argument");
|
|
items = SplitStringExt(p, " ", &count, expectedCount);
|
|
if (count != expectedCount) {
|
|
INIT_LOGE("Ignore invalid item: %s", p);
|
|
FreeStringVector(items, count);
|
|
return 0;
|
|
}
|
|
struct SysUdevConf *config = calloc(1, sizeof(struct SysUdevConf));
|
|
if (config == NULL) {
|
|
errno = ENOMEM;
|
|
FreeStringVector(items, count);
|
|
return -1;
|
|
}
|
|
config->sysPath = strdup(items[0]); // sys path
|
|
config->attr = strdup(items[1]); // attribute
|
|
errno = 0;
|
|
config->mode = strtoul(items[2], NULL, OCTAL_BASE); // mode
|
|
INIT_ERROR_CHECK(errno == 0, config->mode = DEVMODE,
|
|
"Invalid mode in config file for sys path %s. use default mode", config->sysPath);
|
|
config->uid = (uid_t)DecodeUid(items[3]); // uid
|
|
config->gid = (gid_t)DecodeGid(items[4]); // gid
|
|
OH_ListAddTail(&g_sysDevices, &config->list);
|
|
FreeStringVector(items, count);
|
|
return 0;
|
|
}
|
|
|
|
static int ParseFirmwareConfig(char *p)
|
|
{
|
|
INIT_LOGV("Parse firmware config info: %s", p);
|
|
INIT_ERROR_CHECK(!INVALIDSTRING(p), return -1, "Invalid argument");
|
|
|
|
// Sanity checks
|
|
struct stat st = {};
|
|
INIT_ERROR_CHECK(stat(p, &st) == 0, return -1, "Invalid firmware file: %s, err = %d", p, errno);
|
|
INIT_ERROR_CHECK(S_ISDIR(st.st_mode), return -1, "Expect directory in firmware config");
|
|
struct FirmwareUdevConf *config = calloc(1, sizeof(struct FirmwareUdevConf));
|
|
INIT_CHECK(config != NULL, errno = ENOMEM;
|
|
return -1);
|
|
config->fmPath = strdup(p);
|
|
OH_ListAddTail(&g_firmwares, &config->list);
|
|
return 0;
|
|
}
|
|
|
|
static SECTION GetSection(const char *section)
|
|
{
|
|
INIT_CHECK_RETURN_VALUE(!INVALIDSTRING(section), SECTION_INVALID);
|
|
if (STRINGEQUAL(section, "device")) {
|
|
return SECTION_DEVICE;
|
|
} else if (STRINGEQUAL(section, "sysfs")) {
|
|
return SECTION_SYSFS;
|
|
} else if (STRINGEQUAL(section, "firmware")) {
|
|
return SECTION_FIRMWARE;
|
|
} else {
|
|
return SECTION_INVALID;
|
|
}
|
|
}
|
|
|
|
static const FUNCTIONMAPPER funcMapper[3] = {
|
|
{"device", ParseDeviceConfig},
|
|
{"sysfs", ParseSysfsConfig},
|
|
{"firmware", ParseFirmwareConfig}
|
|
};
|
|
|
|
ParseConfigFunc callback;
|
|
int ParseUeventConfig(char *buffer)
|
|
{
|
|
char *section = NULL;
|
|
char *right = NULL;
|
|
char *p = buffer;
|
|
SECTION type;
|
|
|
|
INIT_CHECK_RETURN_VALUE(!INVALIDSTRING(buffer), -1);
|
|
if (*p == '[') {
|
|
p++;
|
|
if ((right = strchr(p, ']')) == NULL) {
|
|
INIT_LOGE("Invalid line \"%s\", miss ']'", buffer);
|
|
return -1;
|
|
}
|
|
*right = '\0'; // Replace ']' with '\0';
|
|
section = p;
|
|
INIT_LOGV("section is [%s]", section);
|
|
if ((type = GetSection(section)) == SECTION_INVALID) {
|
|
INIT_LOGE("Invalid section \" %s \"", section);
|
|
callback = NULL; // reset callback
|
|
return -1;
|
|
}
|
|
callback = funcMapper[type].func;
|
|
return 0;
|
|
}
|
|
return (callback != NULL) ? callback(p) : -1;
|
|
}
|
|
|
|
static void DoUeventConfigParse(char *buffer, size_t length)
|
|
{
|
|
char **items = NULL;
|
|
int count = -1;
|
|
const int maxItemCount = DEFAULTITEMCOUNT;
|
|
|
|
items = SplitStringExt(buffer, "\n", &count, maxItemCount);
|
|
INIT_LOGV("Dump items count = %d", count);
|
|
for (int i = 0; i < count; i++) {
|
|
char *p = items[i];
|
|
// Skip lead white space
|
|
while (isspace(*p)) {
|
|
p++;
|
|
}
|
|
|
|
// Skip comment or empty line
|
|
if (*p == '\0' || *p == '#') {
|
|
continue;
|
|
}
|
|
int rc = ParseUeventConfig(p);
|
|
if (rc < 0) {
|
|
INIT_LOGE("Parse uevent config from %s failed", p);
|
|
}
|
|
}
|
|
// release memory
|
|
FreeStringVector(items, count);
|
|
}
|
|
|
|
void ParseUeventdConfigFile(const char *file)
|
|
{
|
|
INIT_CHECK_ONLY_RETURN(!INVALIDSTRING(file));
|
|
char *config = GetRealPath(file);
|
|
INIT_CHECK_ONLY_RETURN(config != NULL);
|
|
int fd = open(config, O_RDONLY | O_CLOEXEC, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
|
|
free(config);
|
|
INIT_ERROR_CHECK(fd >= 0, return, "Read from %s failed", file);
|
|
|
|
struct stat st;
|
|
if (fstat(fd, &st) < 0) {
|
|
INIT_LOGE("Failed to get file stat. err = %d", errno);
|
|
close(fd);
|
|
return;
|
|
}
|
|
|
|
// st_size should never be less than 0
|
|
size_t size = (size_t)st.st_size;
|
|
char *buffer = malloc(size + 1);
|
|
if (buffer == NULL) {
|
|
INIT_LOGE("Failed to malloc memory. err = %d", errno);
|
|
close(fd);
|
|
return;
|
|
}
|
|
|
|
if (read(fd, buffer, size) != (ssize_t)size) {
|
|
INIT_LOGE("Read from file %s failed. err = %d", file, errno);
|
|
free(buffer);
|
|
buffer = NULL;
|
|
close(fd);
|
|
return;
|
|
}
|
|
|
|
buffer[size] = '\0';
|
|
DoUeventConfigParse(buffer, size);
|
|
free(buffer);
|
|
buffer = NULL;
|
|
close(fd);
|
|
}
|
|
|
|
// support '*' to match all characters
|
|
// '?' match one character.
|
|
bool IsMatch(const char *target, const char *pattern)
|
|
{
|
|
INIT_CHECK_RETURN_VALUE(target != NULL, false);
|
|
INIT_CHECK_RETURN_VALUE(pattern != NULL, true);
|
|
|
|
const char *t = target;
|
|
const char *p = pattern;
|
|
const char *plast = NULL;
|
|
bool reMatch = false;
|
|
while (*t != '\0') {
|
|
if (*t == *p) {
|
|
t++;
|
|
p++;
|
|
continue;
|
|
}
|
|
|
|
// Match one character.
|
|
if (*p == '?') {
|
|
p++;
|
|
t++;
|
|
continue;
|
|
}
|
|
|
|
if (*p == '\0') {
|
|
return reMatch;
|
|
}
|
|
|
|
if (*p == '*') {
|
|
reMatch = true;
|
|
// Met '*', record where we will start over.
|
|
// plast point to next character that we will compare it again.
|
|
plast = ++p;
|
|
t++;
|
|
continue;
|
|
}
|
|
|
|
if (reMatch) {
|
|
// Start over.
|
|
p = plast;
|
|
t++;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
while (*p == '*') {
|
|
p++;
|
|
}
|
|
return (*p == '\0');
|
|
}
|
|
|
|
struct DeviceUdevConf *GetDeviceUdevConfByDevNode(const char *devNode)
|
|
{
|
|
if (INVALIDSTRING(devNode)) {
|
|
return NULL;
|
|
}
|
|
|
|
struct ListNode *node = NULL;
|
|
if (!ListEmpty(g_devices)) {
|
|
ForEachListEntry(&g_devices, node) {
|
|
struct DeviceUdevConf *config = ListEntry(node, struct DeviceUdevConf, list);
|
|
if (IsMatch(devNode, config->name)) {
|
|
return config;
|
|
}
|
|
}
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
int GetDeviceNodePermissions(const char *devNode, uid_t *uid, gid_t *gid, mode_t *mode)
|
|
{
|
|
if (INVALIDSTRING(devNode)) {
|
|
return -1;
|
|
}
|
|
|
|
struct ListNode *node = NULL;
|
|
if (!ListEmpty(g_devices)) {
|
|
ForEachListEntry(&g_devices, node) {
|
|
struct DeviceUdevConf *config = ListEntry(node, struct DeviceUdevConf, list);
|
|
if (IsMatch(devNode, config->name)) {
|
|
*uid = config->uid;
|
|
*gid = config->gid;
|
|
*mode = config->mode;
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
void ChangeSysAttributePermissions(const char *sysPath)
|
|
{
|
|
if (INVALIDSTRING(sysPath)) {
|
|
return;
|
|
}
|
|
|
|
struct ListNode *node = NULL;
|
|
struct SysUdevConf *config = NULL;
|
|
int matched = 0;
|
|
if (!ListEmpty(g_sysDevices)) {
|
|
ForEachListEntry(&g_sysDevices, node) {
|
|
config = ListEntry(node, struct SysUdevConf, list);
|
|
if (STRINGEQUAL(config->sysPath, sysPath)) {
|
|
matched = 1;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (matched == 0) {
|
|
return;
|
|
}
|
|
char sysAttr[SYSPATH_SIZE] = {};
|
|
if (snprintf_s(sysAttr, SYSPATH_SIZE, SYSPATH_SIZE - 1, "/sys%s/%s", config->sysPath, config->attr) == -1) {
|
|
INIT_LOGE("Failed to build sys attribute for sys path %s, attr: %s", config->sysPath, config->attr);
|
|
return;
|
|
}
|
|
if (chown(sysAttr, config->uid, config->gid) < 0) {
|
|
INIT_LOGE("chown for file %s failed, err = %d", sysAttr, errno);
|
|
}
|
|
|
|
if (chmod(sysAttr, config->mode) < 0) {
|
|
INIT_LOGE("[uevent][error] chmod for file %s failed, err = %d", sysAttr, errno);
|
|
}
|
|
}
|
|
|
|
static void FreeDeviceConfig(ListNode *node)
|
|
{
|
|
struct DeviceUdevConf *config = ListEntry(node, struct DeviceUdevConf, list);
|
|
free((void *)config->name);
|
|
free((void *)config->parameter);
|
|
OH_ListRemove(&config->paramNode);
|
|
free(config);
|
|
}
|
|
|
|
static void FreeSysUdevConf(ListNode *node)
|
|
{
|
|
struct SysUdevConf *config = ListEntry(node, struct SysUdevConf, list);
|
|
free((void *)config->sysPath);
|
|
free((void *)config->attr);
|
|
free(config);
|
|
}
|
|
|
|
static void FreeFirmwareUdevConf(ListNode *node)
|
|
{
|
|
struct FirmwareUdevConf *config = ListEntry(node, struct FirmwareUdevConf, list);
|
|
free((void *)config->fmPath);
|
|
free(config);
|
|
}
|
|
|
|
void CloseUeventConfig(void)
|
|
{
|
|
OH_ListRemoveAll(&g_devices, FreeDeviceConfig);
|
|
OH_ListRemoveAll(&g_sysDevices, FreeSysUdevConf);
|
|
OH_ListRemoveAll(&g_firmwares, FreeFirmwareUdevConf);
|
|
} |