ueventd_read_cfg.c 11.6 KB
Newer Older
S
sun_fan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * 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>
S
sun_fan 已提交
18
#include <limits.h>
S
sun_fan 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <fcntl.h>
#include <sys/stat.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 (100)
S
sun_fan 已提交
33 34 35 36 37 38 39 40 41 42 43 44

#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 已提交
45 46 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 81 82 83 84 85 86 87 88 89
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 void FreeConfigItems(char **items, int count)
{
    if (items != NULL) {
        for (int i = 0; i < count; i++) {
            if (items[i] != NULL) {
                free(items[i]);
            }
        }
        free(items);
        items = NULL;
    }
}

static char **SplitUeventConfig(char *buffer, const char *del, int *returnCount, int maxItemCount)
{
    char *rest = NULL;
    int count = 0;
S
sun_fan 已提交
90
    int average = 2;
S
sun_fan 已提交
91
    char *p = strtok_r(buffer, del, &rest);
S
sun_fan 已提交
92 93
    int maxItemCountTmp = maxItemCount;
    if (maxItemCountTmp < 0) {
S
sun_fan 已提交
94 95
        return NULL;
    }
S
sun_fan 已提交
96 97
    if (maxItemCountTmp > DEFAULTITEMCOUNT) {
        maxItemCountTmp = DEFAULTITEMCOUNT;
S
sun_fan 已提交
98
    }
S
sun_fan 已提交
99
    char **items = (char **)malloc(sizeof(char*) * maxItemCountTmp);
S
sun_fan 已提交
100 101 102 103 104
    if (items == NULL) {
        INIT_LOGE("No enough memory to store uevent config");
        return NULL;
    }
    while (p != NULL) {
S
sun_fan 已提交
105 106
        if (count > (maxItemCountTmp - 1)) {
            maxItemCountTmp += (maxItemCountTmp / average) + 1;
S
sun_fan 已提交
107
            INIT_LOGD("Too many items,expand size");
S
sun_fan 已提交
108
            char **expand = (char **)(realloc(items, sizeof(char *) * maxItemCountTmp));
S
sun_fan 已提交
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
            if (expand == NULL) {
                INIT_LOGE("Failed to expand memory for uevent config parser");
                FreeConfigItems(items, count);
                return NULL;
            }
            items = expand;
        }
        size_t len = strlen(p);
        items[count] = (char *)malloc(len + 1);
        if (items[count] == NULL) {
            FreeConfigItems(items, count);
            return NULL;
        }
        if (strncpy_s(items[count], len + 1, p, len) != EOK) {
            INIT_LOGE("Copy string failed");
            FreeConfigItems(items, count);
            return NULL;
        }
        items[count][strlen(p)] = '\0';
        count++;
        p = strtok_r(NULL, del, &rest);
    }
    items[count] = NULL;
    *returnCount = count;
    return items;
}

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 已提交
142
    const int expectedCount = 4;
S
sun_fan 已提交
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159

    if (INVALIDSTRING(p)) {
        INIT_LOGE("Invalid argument");
    }
    items = SplitUeventConfig(p, " ", &count, expectedCount);
    if (count != expectedCount) {
        INIT_LOGE("Ignore invalid item: %s", p);
        FreeConfigItems(items, count);
        return 0;
    }

    struct DeviceUdevConf *config = calloc(1, sizeof(struct DeviceUdevConf));
    if (config == NULL) {
        errno = ENOMEM;
        FreeConfigItems(items, count);
        return -1;
    }
S
sun_fan 已提交
160
    config->name = strdup(items[DEVICE_CONFIG_NAME_NUM]); // device node
S
sun_fan 已提交
161
    errno = 0;
S
sun_fan 已提交
162
    config->mode = strtoul(items[DEVICE_CONFIG_MODE_NUM], NULL, OCTONARY);
S
sun_fan 已提交
163 164 165 166
    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 已提交
167 168
    config->uid = (uid_t)StringToInt(items[DEVICE_CONFIG_UID_NUM], 0);
    config->gid = (gid_t)StringToInt(items[DEVICE_CONFIG_GID_NUM], 0);
S
sun_fan 已提交
169 170 171 172 173 174 175 176 177 178 179
    ListAddTail(&g_devices, &config->list);
    FreeConfigItems(items, count);
    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 已提交
180
    const int expectedCount = 5;
S
sun_fan 已提交
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196

    if (INVALIDSTRING(p)) {
        INIT_LOGE("Invalid argument");
    }
    items = SplitUeventConfig(p, " ", &count, expectedCount);
    if (count != expectedCount) {
        INIT_LOGE("Ignore invalid item: %s", p);
        FreeConfigItems(items, count);
        return 0;
    }
    struct SysUdevConf *config = calloc(1, sizeof(struct SysUdevConf));
    if (config == NULL) {
        errno = ENOMEM;
        FreeConfigItems(items, count);
        return -1;
    }
S
sun_fan 已提交
197 198
    config->sysPath = strdup(items[SYS_CONFIG_PATH_NUM]); // sys path
    config->attr = strdup(items[SYS_CONFIG_ATTR_NUM]);  // attribute
S
sun_fan 已提交
199
    errno = 0;
S
sun_fan 已提交
200
    config->mode = strtoul(items[SYS_CONFIG_MODE_NUM], NULL, OCTONARY);
S
sun_fan 已提交
201 202 203 204
    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 已提交
205 206
    config->uid = (uid_t)StringToInt(items[SYS_CONFIG_UID_NUM], 0);
    config->gid = (gid_t)StringToInt(items[SYS_CONFIG_GID_NUM], 0);
S
sun_fan 已提交
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 232 233 234 235 236 237 238 239
    ListAddTail(&g_sysDevices, &config->list);
    return 0;
}

static int ParseFirmwareConfig(char *p)
{
    INIT_LOGD("Parse firmware config info: %s", p);
    if (INVALIDSTRING(p)) {
        INIT_LOGE("Invalid argument");
    }
    struct FirmwareUdevConf *config = calloc(1, sizeof(struct FirmwareUdevConf));
    if (config == NULL) {
        errno = ENOMEM;
        return -1;
    }

    // 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;
    }

    config->fmPath = strdup(p);
    ListAddTail(&g_firmwares, &config->list);
    return 0;
}

S
sun_fan 已提交
240
static SECTION GetSection(const char *section)
S
sun_fan 已提交
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
{
    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;
    }
    return callback != NULL ? callback(p) : -1;
}

S
sun_fan 已提交
294
static void DoUeventConfigParse(char *buffer, size_t length)
S
sun_fan 已提交
295
{
S
sun_fan 已提交
296 297 298
    if (length < 0) {
        return;
    }
S
sun_fan 已提交
299 300
    char **items = NULL;
    int count = -1;
S
sun_fan 已提交
301
    const int maxItemCount = DEFAULTITEMCOUNT;
S
sun_fan 已提交
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329

    items = SplitUeventConfig(buffer, "\n", &count, maxItemCount);
    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
    FreeConfigItems(items, count);
}

void ParseUeventdConfigFile(const char *file)
{
    if (INVALIDSTRING(file)) {
        return;
    }
S
sun_fan 已提交
330 331 332 333 334 335
    char *config = realpath(file, NULL);
    if (config == NULL) {
        return;
    }
    int fd = open(config, O_RDONLY | O_CLOEXEC, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
    free(config);
S
sun_fan 已提交
336 337 338 339 340 341 342 343 344
    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 已提交
345
        fd = -1;
S
sun_fan 已提交
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
        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 已提交
363
        fd = -1;
S
sun_fan 已提交
364 365 366 367
        return;
    }

    buffer[size] = '\0';
S
sun_fan 已提交
368
    DoUeventConfigParse(buffer, size);
S
sun_fan 已提交
369 370 371
    free(buffer);
    buffer = NULL;
    close(fd);
S
sun_fan 已提交
372
    fd = -1;
S
sun_fan 已提交
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
}

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);
            if (STRINGEQUAL(config->name, devNode)) {
                *uid = config->uid;
                *gid = config->gid;
                *mode = config->mode;
S
sun_fan 已提交
389
                break;
S
sun_fan 已提交
390 391 392
            }
        }
    }
S
sun_fan 已提交
393
    return;
S
sun_fan 已提交
394 395 396 397 398 399 400 401 402 403 404 405 406 407
}

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

    struct ListNode *node = NULL;
    struct SysUdevConf *config = NULL;
    if (!ListEmpty(g_sysDevices)) {
        ForEachListEntry(&g_sysDevices, node) {
            config = ListEntry(node, struct SysUdevConf, list);
            if (STRINGEQUAL(config->sysPath, sysPath)) {
S
sun_fan 已提交
408
                break;
S
sun_fan 已提交
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
            }
        }
    }

    if (config == NULL) {
        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);
    }
}