ueventd_read_cfg.c 9.8 KB
Newer Older
S
sun_fan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * 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"
S
sun_fan 已提交
17

S
sun_fan 已提交
18
#include <ctype.h>
S
sun_fan 已提交
19 20
#include <limits.h>
#include <string.h>
21
#include <stdlib.h>
S
sun_fan 已提交
22
#include <unistd.h>
23 24 25
#include <errno.h>
#include <fcntl.h>
#include <sys/stat.h>
S
sun_fan 已提交
26
#include "init_utils.h"
S
sun_fan 已提交
27
#include "list.h"
S
sun_fan 已提交
28
#include "ueventd_utils.h"
29
#include "securec.h"
S
sun_fan 已提交
30 31 32 33
#define INIT_LOG_TAG "ueventd"
#include "init_log.h"

// default item count in config files
34
#define DEFAULTITEMCOUNT (50)
S
sun_fan 已提交
35 36 37 38 39 40 41 42 43 44 45 46

#define SYS_CONFIG_PATH_NUM 0
#define SYS_CONFIG_ATTR_NUM 1
#define SYS_CONFIG_MODE_NUM 2
#define SYS_CONFIG_UID_NUM 3
#define SYS_CONFIG_GID_NUM 4

#define DEVICE_CONFIG_NAME_NUM 0
#define DEVICE_CONFIG_MODE_NUM 1
#define DEVICE_CONFIG_UID_NUM 2
#define DEVICE_CONFIG_GID_NUM 3

S
sun_fan 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
typedef enum SECTION {
    SECTION_INVALID = -1,
    SECTION_DEVICE = 0,
    SECTION_SYSFS,
    SECTION_FIRMWARE
} SECTION;

typedef int (*ParseConfigFunc)(char *);
typedef struct FunctionMapper {
    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_LOGD("Parse device config info: %s", p);
    char **items = NULL;
    int count = -1;
    // format: <device node> <mode> <uid> <gid>
S
sun_fan 已提交
81
    const int expectedCount = 4;
S
sun_fan 已提交
82 83 84 85

    if (INVALIDSTRING(p)) {
        INIT_LOGE("Invalid argument");
    }
86
    items = SplitStringExt(p, " ", &count, expectedCount);
S
sun_fan 已提交
87 88
    if (count != expectedCount) {
        INIT_LOGE("Ignore invalid item: %s", p);
89
        FreeStringVector(items, count);
S
sun_fan 已提交
90 91 92 93 94 95
        return 0;
    }

    struct DeviceUdevConf *config = calloc(1, sizeof(struct DeviceUdevConf));
    if (config == NULL) {
        errno = ENOMEM;
96
        FreeStringVector(items, count);
S
sun_fan 已提交
97 98
        return -1;
    }
S
sun_fan 已提交
99
    config->name = strdup(items[DEVICE_CONFIG_NAME_NUM]); // device node
S
sun_fan 已提交
100
    errno = 0;
S
sun_fan 已提交
101
    config->mode = strtoul(items[DEVICE_CONFIG_MODE_NUM], NULL, OCTAL_BASE);
S
sun_fan 已提交
102 103 104 105
    if (errno != 0) {
        INIT_LOGE("Invalid mode in config file for device node %s. use default mode", config->name);
        config->mode = DEVMODE;
    }
S
sun_fan 已提交
106 107
    config->uid = (uid_t)DecodeUid(items[DEVICE_CONFIG_UID_NUM]);
    config->gid = (gid_t)DecodeUid(items[DEVICE_CONFIG_GID_NUM]);
S
sun_fan 已提交
108
    ListAddTail(&g_devices, &config->list);
109
    FreeStringVector(items, count);
S
sun_fan 已提交
110 111 112 113 114 115 116 117 118
    return 0;
}

static int ParseSysfsConfig(char *p)
{
    INIT_LOGD("Parse sysfs config info: %s", p);
    char **items = NULL;
    int count = -1;
    // format: <syspath> <attribute> <mode> <uid> <gid>
S
sun_fan 已提交
119
    const int expectedCount = 5;
S
sun_fan 已提交
120 121 122 123

    if (INVALIDSTRING(p)) {
        INIT_LOGE("Invalid argument");
    }
124
    items = SplitStringExt(p, " ", &count, expectedCount);
S
sun_fan 已提交
125 126
    if (count != expectedCount) {
        INIT_LOGE("Ignore invalid item: %s", p);
127
        FreeStringVector(items, count);
S
sun_fan 已提交
128 129 130 131 132
        return 0;
    }
    struct SysUdevConf *config = calloc(1, sizeof(struct SysUdevConf));
    if (config == NULL) {
        errno = ENOMEM;
133
        FreeStringVector(items, count);
S
sun_fan 已提交
134 135
        return -1;
    }
S
sun_fan 已提交
136 137
    config->sysPath = strdup(items[SYS_CONFIG_PATH_NUM]); // sys path
    config->attr = strdup(items[SYS_CONFIG_ATTR_NUM]);  // attribute
S
sun_fan 已提交
138
    errno = 0;
S
sun_fan 已提交
139
    config->mode = strtoul(items[SYS_CONFIG_MODE_NUM], NULL, OCTAL_BASE);
S
sun_fan 已提交
140 141 142 143
    if (errno != 0) {
        INIT_LOGE("Invalid mode in config file for sys path %s. use default mode", config->sysPath);
        config->mode = DEVMODE;
    }
S
sun_fan 已提交
144 145
    config->uid = (uid_t)DecodeUid(items[SYS_CONFIG_UID_NUM]);
    config->gid = (gid_t)DecodeUid(items[SYS_CONFIG_GID_NUM]);
S
sun_fan 已提交
146
    ListAddTail(&g_sysDevices, &config->list);
147
    FreeStringVector(items, count);
S
sun_fan 已提交
148 149 150
    return 0;
}

S
sun_fan 已提交
151
static int ParseFirmwareConfig(char *p)
S
sun_fan 已提交
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
{
    INIT_LOGD("Parse firmware config info: %s", p);
    if (INVALIDSTRING(p)) {
        INIT_LOGE("Invalid argument");
    }

    // Sanity checks
    struct stat st = {};
    if (stat(p, &st) != 0) {
        INIT_LOGE("Invalid firware file: %s, err = %d", p, errno);
        return -1;
    }

    if (!S_ISDIR(st.st_mode)) {
        INIT_LOGE("Expect directory in firmware config");
        return -1;
    }

S
sun_fan 已提交
170 171 172 173 174 175
    struct FirmwareUdevConf *config = calloc(1, sizeof(struct FirmwareUdevConf));
    if (config == NULL) {
        errno = ENOMEM;
        return -1;
    }

S
sun_fan 已提交
176 177 178 179 180
    config->fmPath = strdup(p);
    ListAddTail(&g_firmwares, &config->list);
    return 0;
}

S
sun_fan 已提交
181
static SECTION GetSection(const char *section)
S
sun_fan 已提交
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
{
    if (INVALIDSTRING(section)) {
        return 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 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;

    if (INVALIDSTRING(buffer)) {
        return -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_LOGD("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;
    }
232
    return callback != NULL ? callback(p) : -1;
S
sun_fan 已提交
233 234
}

S
sun_fan 已提交
235
static void DoUeventConfigParse(char *buffer, size_t length)
S
sun_fan 已提交
236
{
S
sun_fan 已提交
237 238 239
    if (length < 0) {
        return;
    }
S
sun_fan 已提交
240 241
    char **items = NULL;
    int count = -1;
S
sun_fan 已提交
242
    const int maxItemCount = DEFAULTITEMCOUNT;
S
sun_fan 已提交
243

244
    items = SplitStringExt(buffer, "\n", &count, maxItemCount);
S
sun_fan 已提交
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
    INIT_LOGD("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
263
    FreeStringVector(items, count);
S
sun_fan 已提交
264 265 266 267 268 269 270
}

void ParseUeventdConfigFile(const char *file)
{
    if (INVALIDSTRING(file)) {
        return;
    }
271 272
    char *config = GetRealPath(file);
    if (config == NULL) {
S
sun_fan 已提交
273 274 275
        return;
    }
    int fd = open(config, O_RDONLY | O_CLOEXEC, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
276
    free(config);
S
sun_fan 已提交
277 278 279 280 281 282 283 284 285
    if (fd < 0) {
        INIT_LOGE("Read from %s failed", file);
        return;
    }

    struct stat st;
    if (fstat(fd, &st) < 0) {
        INIT_LOGE("Failed to get file stat. err = %d", errno);
        close(fd);
S
sun_fan 已提交
286
        fd = -1;
S
sun_fan 已提交
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
        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);
S
sun_fan 已提交
304
        fd = -1;
S
sun_fan 已提交
305 306 307 308
        return;
    }

    buffer[size] = '\0';
S
sun_fan 已提交
309
    DoUeventConfigParse(buffer, size);
S
sun_fan 已提交
310 311 312
    free(buffer);
    buffer = NULL;
    close(fd);
S
sun_fan 已提交
313
    fd = -1;
S
sun_fan 已提交
314 315 316 317 318 319 320 321 322 323 324 325
}

void GetDeviceNodePermissions(const char *devNode, uid_t *uid, gid_t *gid, mode_t *mode)
{
    if (INVALIDSTRING(devNode)) {
        return;
    }

    struct ListNode *node = NULL;
    if (!ListEmpty(g_devices)) {
        ForEachListEntry(&g_devices, node) {
            struct DeviceUdevConf *config = ListEntry(node, struct DeviceUdevConf, list);
326 327 328 329 330
            if (STRINGEQUAL(config->name, devNode)) {
                *uid = config->uid;
                *gid = config->gid;
                *mode = config->mode;
                break;
S
sun_fan 已提交
331 332 333
            }
        }
    }
S
sun_fan 已提交
334
    return;
S
sun_fan 已提交
335 336 337 338 339 340 341 342 343 344
}

void ChangeSysAttributePermissions(const char *sysPath)
{
    if (INVALIDSTRING(sysPath)) {
        return;
    }

    struct ListNode *node = NULL;
    struct SysUdevConf *config = NULL;
S
sun_fan 已提交
345
    int matched = 0;
S
sun_fan 已提交
346 347 348 349
    if (!ListEmpty(g_sysDevices)) {
        ForEachListEntry(&g_sysDevices, node) {
            config = ListEntry(node, struct SysUdevConf, list);
            if (STRINGEQUAL(config->sysPath, sysPath)) {
S
sun_fan 已提交
350
                matched = 1;
S
sun_fan 已提交
351
                break;
S
sun_fan 已提交
352 353 354 355
            }
        }
    }

S
sun_fan 已提交
356
    if (matched == 0) {
S
sun_fan 已提交
357 358
        return;
    }
359 360 361 362
    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;
S
sun_fan 已提交
363 364 365 366 367 368 369 370 371
    }
    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);
    }
}