2011-11-15 07:43:37 +04:00
|
|
|
/*
|
|
|
|
* Copyright © 2011 Intel Corporation
|
|
|
|
*
|
2015-06-12 00:20:17 +03:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
2011-11-15 07:43:37 +04:00
|
|
|
*
|
2015-06-12 00:20:17 +03:00
|
|
|
* The above copyright notice and this permission notice (including the
|
|
|
|
* next paragraph) shall be included in all copies or substantial
|
|
|
|
* portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
2011-11-15 07:43:37 +04:00
|
|
|
*/
|
|
|
|
|
2013-05-22 19:03:19 +04:00
|
|
|
#include "config.h"
|
|
|
|
|
2011-11-15 07:43:37 +04:00
|
|
|
#include <string.h>
|
2016-07-19 14:16:27 +03:00
|
|
|
#include <stdint.h>
|
2011-11-15 07:43:37 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <assert.h>
|
2012-08-04 05:56:41 +04:00
|
|
|
#include <ctype.h>
|
2013-05-14 20:48:26 +04:00
|
|
|
#include <limits.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
2013-04-01 20:41:23 +04:00
|
|
|
#include <errno.h>
|
2011-11-15 07:43:37 +04:00
|
|
|
|
2013-04-01 20:41:23 +04:00
|
|
|
#include <wayland-util.h>
|
2020-11-27 15:36:08 +03:00
|
|
|
#include <libweston/zalloc.h>
|
2019-04-04 14:27:31 +03:00
|
|
|
#include <libweston/config-parser.h>
|
2015-06-16 01:37:10 +03:00
|
|
|
#include "helpers.h"
|
2016-08-04 03:40:52 +03:00
|
|
|
#include "string-helpers.h"
|
2013-05-27 04:50:53 +04:00
|
|
|
|
2013-09-22 10:17:35 +04:00
|
|
|
struct weston_config_entry {
|
|
|
|
char *key;
|
|
|
|
char *value;
|
|
|
|
struct wl_list link;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct weston_config_section {
|
|
|
|
char *name;
|
|
|
|
struct wl_list entry_list;
|
|
|
|
struct wl_list link;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct weston_config {
|
|
|
|
struct wl_list section_list;
|
|
|
|
char path[PATH_MAX];
|
|
|
|
};
|
|
|
|
|
2013-09-22 10:02:31 +04:00
|
|
|
static int
|
2013-09-22 10:17:35 +04:00
|
|
|
open_config_file(struct weston_config *c, const char *name)
|
2011-11-15 13:45:40 +04:00
|
|
|
{
|
2013-05-14 20:48:26 +04:00
|
|
|
const char *config_dir = getenv("XDG_CONFIG_HOME");
|
|
|
|
const char *home_dir = getenv("HOME");
|
|
|
|
const char *config_dirs = getenv("XDG_CONFIG_DIRS");
|
|
|
|
const char *p, *next;
|
|
|
|
int fd;
|
|
|
|
|
2013-09-22 10:17:35 +04:00
|
|
|
if (name[0] == '/') {
|
|
|
|
snprintf(c->path, sizeof c->path, "%s", name);
|
2013-09-22 10:02:31 +04:00
|
|
|
return open(name, O_RDONLY | O_CLOEXEC);
|
2013-09-22 10:17:35 +04:00
|
|
|
}
|
2013-09-22 10:02:31 +04:00
|
|
|
|
2013-05-14 20:48:26 +04:00
|
|
|
/* Precedence is given to config files in the home directory,
|
2018-11-15 09:55:22 +03:00
|
|
|
* then to directories listed in XDG_CONFIG_DIRS. */
|
2013-05-14 20:48:26 +04:00
|
|
|
|
|
|
|
/* $XDG_CONFIG_HOME */
|
|
|
|
if (config_dir) {
|
2013-09-22 10:17:35 +04:00
|
|
|
snprintf(c->path, sizeof c->path, "%s/%s", config_dir, name);
|
|
|
|
fd = open(c->path, O_RDONLY | O_CLOEXEC);
|
2013-05-14 20:48:26 +04:00
|
|
|
if (fd >= 0)
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* $HOME/.config */
|
|
|
|
if (home_dir) {
|
2013-09-22 10:17:35 +04:00
|
|
|
snprintf(c->path, sizeof c->path,
|
|
|
|
"%s/.config/%s", home_dir, name);
|
|
|
|
fd = open(c->path, O_RDONLY | O_CLOEXEC);
|
2013-05-14 20:48:26 +04:00
|
|
|
if (fd >= 0)
|
|
|
|
return fd;
|
|
|
|
}
|
2011-11-15 13:45:40 +04:00
|
|
|
|
2013-05-14 20:48:26 +04:00
|
|
|
/* For each $XDG_CONFIG_DIRS: weston/<config_file> */
|
|
|
|
if (!config_dirs)
|
|
|
|
config_dirs = "/etc/xdg"; /* See XDG base dir spec. */
|
2011-11-15 13:45:40 +04:00
|
|
|
|
2013-05-14 20:48:26 +04:00
|
|
|
for (p = config_dirs; *p != '\0'; p = next) {
|
|
|
|
next = strchrnul(p, ':');
|
2013-09-22 10:17:35 +04:00
|
|
|
snprintf(c->path, sizeof c->path,
|
2013-05-14 20:48:26 +04:00
|
|
|
"%.*s/weston/%s", (int)(next - p), p, name);
|
2013-09-22 10:17:35 +04:00
|
|
|
fd = open(c->path, O_RDONLY | O_CLOEXEC);
|
2013-05-14 20:48:26 +04:00
|
|
|
if (fd >= 0)
|
|
|
|
return fd;
|
|
|
|
|
|
|
|
if (*next == ':')
|
|
|
|
next++;
|
2011-11-15 13:45:40 +04:00
|
|
|
}
|
|
|
|
|
2018-11-15 09:55:22 +03:00
|
|
|
return -1;
|
2011-11-15 13:45:40 +04:00
|
|
|
}
|
2013-04-01 20:41:23 +04:00
|
|
|
|
|
|
|
static struct weston_config_entry *
|
|
|
|
config_section_get_entry(struct weston_config_section *section,
|
|
|
|
const char *key)
|
|
|
|
{
|
|
|
|
struct weston_config_entry *e;
|
|
|
|
|
|
|
|
if (section == NULL)
|
|
|
|
return NULL;
|
|
|
|
wl_list_for_each(e, §ion->entry_list, link)
|
|
|
|
if (strcmp(e->key, key) == 0)
|
|
|
|
return e;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-07-01 19:03:08 +04:00
|
|
|
WL_EXPORT
|
2013-04-01 20:41:23 +04:00
|
|
|
struct weston_config_section *
|
|
|
|
weston_config_get_section(struct weston_config *config, const char *section,
|
|
|
|
const char *key, const char *value)
|
|
|
|
{
|
|
|
|
struct weston_config_section *s;
|
|
|
|
struct weston_config_entry *e;
|
|
|
|
|
config-parser: Avoid null dereference when handling config-parser
backtrace:
(gdb) bt
#0 weston_config_get_section (config=0x0, section=0x8062f31 "keyboard", key=0x0, value=0x0)
at config-parser.c:265
#1 0x080535a1 in weston_compositor_init (ec=0x905b690, display=0x9056490, argc=0xbf8bd2f0,
argv=0xbf8bd384, config_fd=-1) at compositor.c:2819
#2 0xb75d72bb in x11_compositor_create (config_fd=-1, argv=0xbf8bd384, argc=<optimized out>,
use_pixman=0, no_input=0, fullscreen=0, display=0x9056490) at compositor-x11.c:1527
#3 backend_init (display=0x9056490, argc=0xbf8bd2f0, argv=0xbf8bd384, config_fd=-1)
at compositor-x11.c:1746
2013-05-24 21:09:13 +04:00
|
|
|
if (config == NULL)
|
|
|
|
return NULL;
|
2013-04-01 20:41:23 +04:00
|
|
|
wl_list_for_each(s, &config->section_list, link) {
|
|
|
|
if (strcmp(s->name, section) != 0)
|
|
|
|
continue;
|
|
|
|
if (key == NULL)
|
|
|
|
return s;
|
|
|
|
e = config_section_get_entry(s, key);
|
|
|
|
if (e && strcmp(e->value, value) == 0)
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-07-01 19:03:08 +04:00
|
|
|
WL_EXPORT
|
2013-04-01 20:41:23 +04:00
|
|
|
int
|
|
|
|
weston_config_section_get_int(struct weston_config_section *section,
|
|
|
|
const char *key,
|
|
|
|
int32_t *value, int32_t default_value)
|
|
|
|
{
|
|
|
|
struct weston_config_entry *entry;
|
|
|
|
|
|
|
|
entry = config_section_get_entry(section, key);
|
|
|
|
if (entry == NULL) {
|
|
|
|
*value = default_value;
|
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-08-04 03:40:52 +03:00
|
|
|
if (!safe_strtoint(entry->value, value)) {
|
2013-04-01 20:41:23 +04:00
|
|
|
*value = default_value;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-07-01 19:03:08 +04:00
|
|
|
WL_EXPORT
|
2013-04-01 20:41:23 +04:00
|
|
|
int
|
|
|
|
weston_config_section_get_uint(struct weston_config_section *section,
|
|
|
|
const char *key,
|
|
|
|
uint32_t *value, uint32_t default_value)
|
|
|
|
{
|
2016-07-15 04:28:04 +03:00
|
|
|
long int ret;
|
2013-04-01 20:41:23 +04:00
|
|
|
struct weston_config_entry *entry;
|
|
|
|
char *end;
|
|
|
|
|
|
|
|
entry = config_section_get_entry(section, key);
|
|
|
|
if (entry == NULL) {
|
|
|
|
*value = default_value;
|
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-07-08 00:08:28 +03:00
|
|
|
errno = 0;
|
2016-07-15 04:28:04 +03:00
|
|
|
ret = strtol(entry->value, &end, 0);
|
2016-07-08 00:08:28 +03:00
|
|
|
if (errno != 0 || end == entry->value || *end != '\0') {
|
2013-04-01 20:41:23 +04:00
|
|
|
*value = default_value;
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-07-15 04:28:04 +03:00
|
|
|
/* check range */
|
|
|
|
if (ret < 0 || ret > INT_MAX) {
|
|
|
|
*value = default_value;
|
|
|
|
errno = ERANGE;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
*value = ret;
|
|
|
|
|
2013-04-01 20:41:23 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
config-parser: Add weston_config_section_get_color
Previously weston_config_section_get_uint was serving dual purpose for
parsing both unsigned decimal integer values (ids, counts, seconds,
etc.) and hexadecimal values (colors), by relying on strtoul's
auto-detection mechanism.
However, this usage is unable to catch certain kinds of error
conditions, such as specifying a negative number where an unsigned
should be used. And for colors in particular, it would misparse hex
values if the leading 0x was omitted. E.g. "background-color=99999999"
would render a near-black background (effectively 0x05f5e0ff) instead of
medium grey, and "background-color=ffffffff" would be treated as an
error rather than white. "background-color=0x01234567",
"background-color=01234567", and "background-color=1234567" each
resulted in the value being parsed as hexadecimal, octal, and decimal
respectively, resulting in colors 0x01234567, 0x00053977, and 0x0012d687
being displayed.
This new routine forces hexadecimal to be used in all cases when parsing
color values, so "0x01234567" and "01234567" result in the same color
value, "99999999" is grey, and "ffffffff" is white. It also requires
exactly 8 or 10 digits (other lengths likely indicate typos), or the
value "0" (black).
Signed-off-by: Bryce Harrington <bryce@osg.samsung.com>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
2016-07-15 04:28:03 +03:00
|
|
|
WL_EXPORT
|
|
|
|
int
|
|
|
|
weston_config_section_get_color(struct weston_config_section *section,
|
|
|
|
const char *key,
|
|
|
|
uint32_t *color, uint32_t default_color)
|
|
|
|
{
|
|
|
|
struct weston_config_entry *entry;
|
|
|
|
int len;
|
|
|
|
char *end;
|
|
|
|
|
|
|
|
entry = config_section_get_entry(section, key);
|
|
|
|
if (entry == NULL) {
|
|
|
|
*color = default_color;
|
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = strlen(entry->value);
|
|
|
|
if (len == 1 && entry->value[0] == '0') {
|
|
|
|
*color = 0;
|
|
|
|
return 0;
|
|
|
|
} else if (len != 8 && len != 10) {
|
|
|
|
*color = default_color;
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
*color = strtoul(entry->value, &end, 16);
|
|
|
|
if (errno != 0 || end == entry->value || *end != '\0') {
|
|
|
|
*color = default_color;
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-07-31 03:41:03 +04:00
|
|
|
WL_EXPORT
|
|
|
|
int
|
|
|
|
weston_config_section_get_double(struct weston_config_section *section,
|
|
|
|
const char *key,
|
|
|
|
double *value, double default_value)
|
|
|
|
{
|
|
|
|
struct weston_config_entry *entry;
|
|
|
|
char *end;
|
|
|
|
|
|
|
|
entry = config_section_get_entry(section, key);
|
|
|
|
if (entry == NULL) {
|
|
|
|
*value = default_value;
|
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
*value = strtod(entry->value, &end);
|
|
|
|
if (*end != '\0') {
|
|
|
|
*value = default_value;
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-07-01 19:03:08 +04:00
|
|
|
WL_EXPORT
|
2013-04-01 20:41:23 +04:00
|
|
|
int
|
|
|
|
weston_config_section_get_string(struct weston_config_section *section,
|
|
|
|
const char *key,
|
|
|
|
char **value, const char *default_value)
|
|
|
|
{
|
|
|
|
struct weston_config_entry *entry;
|
|
|
|
|
|
|
|
entry = config_section_get_entry(section, key);
|
|
|
|
if (entry == NULL) {
|
|
|
|
if (default_value)
|
|
|
|
*value = strdup(default_value);
|
|
|
|
else
|
|
|
|
*value = NULL;
|
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
*value = strdup(entry->value);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-07-01 19:03:08 +04:00
|
|
|
WL_EXPORT
|
2013-04-01 20:41:23 +04:00
|
|
|
int
|
|
|
|
weston_config_section_get_bool(struct weston_config_section *section,
|
|
|
|
const char *key,
|
2019-11-26 03:14:24 +03:00
|
|
|
bool *value, bool default_value)
|
2013-04-01 20:41:23 +04:00
|
|
|
{
|
|
|
|
struct weston_config_entry *entry;
|
|
|
|
|
|
|
|
entry = config_section_get_entry(section, key);
|
|
|
|
if (entry == NULL) {
|
|
|
|
*value = default_value;
|
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(entry->value, "false") == 0)
|
2019-11-26 03:14:24 +03:00
|
|
|
*value = false;
|
2013-04-01 20:41:23 +04:00
|
|
|
else if (strcmp(entry->value, "true") == 0)
|
2019-11-26 03:14:24 +03:00
|
|
|
*value = true;
|
2013-04-01 20:41:23 +04:00
|
|
|
else {
|
|
|
|
*value = default_value;
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-10-08 17:04:44 +03:00
|
|
|
WL_EXPORT
|
2015-03-24 16:56:19 +03:00
|
|
|
const char *
|
|
|
|
weston_config_get_name_from_env(void)
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
name = getenv(WESTON_CONFIG_FILE_ENV_VAR);
|
|
|
|
if (name)
|
|
|
|
return name;
|
|
|
|
|
|
|
|
return "weston.ini";
|
|
|
|
}
|
|
|
|
|
2013-04-01 20:41:23 +04:00
|
|
|
static struct weston_config_section *
|
|
|
|
config_add_section(struct weston_config *config, const char *name)
|
|
|
|
{
|
|
|
|
struct weston_config_section *section;
|
|
|
|
|
2020-11-27 15:36:08 +03:00
|
|
|
section = zalloc(sizeof *section);
|
2016-02-18 07:46:01 +03:00
|
|
|
if (section == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2013-04-01 20:41:23 +04:00
|
|
|
section->name = strdup(name);
|
2016-02-18 07:46:01 +03:00
|
|
|
if (section->name == NULL) {
|
|
|
|
free(section);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-04-01 20:41:23 +04:00
|
|
|
wl_list_init(§ion->entry_list);
|
|
|
|
wl_list_insert(config->section_list.prev, §ion->link);
|
|
|
|
|
|
|
|
return section;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct weston_config_entry *
|
|
|
|
section_add_entry(struct weston_config_section *section,
|
|
|
|
const char *key, const char *value)
|
|
|
|
{
|
|
|
|
struct weston_config_entry *entry;
|
|
|
|
|
2020-11-27 15:36:08 +03:00
|
|
|
entry = zalloc(sizeof *entry);
|
2016-02-18 07:46:01 +03:00
|
|
|
if (entry == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2013-04-01 20:41:23 +04:00
|
|
|
entry->key = strdup(key);
|
2016-02-18 07:46:01 +03:00
|
|
|
if (entry->key == NULL) {
|
|
|
|
free(entry);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-04-01 20:41:23 +04:00
|
|
|
entry->value = strdup(value);
|
2016-02-18 07:46:01 +03:00
|
|
|
if (entry->value == NULL) {
|
|
|
|
free(entry->key);
|
|
|
|
free(entry);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-04-01 20:41:23 +04:00
|
|
|
wl_list_insert(section->entry_list.prev, &entry->link);
|
|
|
|
|
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
|
2018-10-08 17:04:44 +03:00
|
|
|
WL_EXPORT
|
2013-04-01 20:41:23 +04:00
|
|
|
struct weston_config *
|
2013-09-22 10:02:31 +04:00
|
|
|
weston_config_parse(const char *name)
|
2013-04-01 20:41:23 +04:00
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
char line[512], *p;
|
2015-03-24 16:56:17 +03:00
|
|
|
struct stat filestat;
|
2013-04-01 20:41:23 +04:00
|
|
|
struct weston_config *config;
|
|
|
|
struct weston_config_section *section = NULL;
|
2013-09-22 10:02:31 +04:00
|
|
|
int i, fd;
|
2013-04-01 20:41:23 +04:00
|
|
|
|
2020-11-27 15:36:08 +03:00
|
|
|
config = zalloc(sizeof *config);
|
2013-04-01 20:41:23 +04:00
|
|
|
if (config == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
wl_list_init(&config->section_list);
|
|
|
|
|
2013-09-22 10:17:35 +04:00
|
|
|
fd = open_config_file(config, name);
|
2013-09-22 10:02:31 +04:00
|
|
|
if (fd == -1) {
|
2013-04-01 20:41:23 +04:00
|
|
|
free(config);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-03-24 16:56:17 +03:00
|
|
|
if (fstat(fd, &filestat) < 0 ||
|
|
|
|
!S_ISREG(filestat.st_mode)) {
|
|
|
|
close(fd);
|
|
|
|
free(config);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-09-22 10:02:31 +04:00
|
|
|
fp = fdopen(fd, "r");
|
|
|
|
if (fp == NULL) {
|
|
|
|
free(config);
|
|
|
|
return NULL;
|
|
|
|
}
|
2013-04-01 20:41:23 +04:00
|
|
|
|
|
|
|
while (fgets(line, sizeof line, fp)) {
|
|
|
|
switch (line[0]) {
|
|
|
|
case '#':
|
|
|
|
case '\n':
|
|
|
|
continue;
|
|
|
|
case '[':
|
|
|
|
p = strchr(&line[1], ']');
|
|
|
|
if (!p || p[1] != '\n') {
|
|
|
|
fprintf(stderr, "malformed "
|
|
|
|
"section header: %s\n", line);
|
|
|
|
fclose(fp);
|
|
|
|
weston_config_destroy(config);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
p[0] = '\0';
|
|
|
|
section = config_add_section(config, &line[1]);
|
|
|
|
continue;
|
|
|
|
default:
|
|
|
|
p = strchr(line, '=');
|
|
|
|
if (!p || p == line || !section) {
|
|
|
|
fprintf(stderr, "malformed "
|
|
|
|
"config line: %s\n", line);
|
|
|
|
fclose(fp);
|
|
|
|
weston_config_destroy(config);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
p[0] = '\0';
|
|
|
|
p++;
|
|
|
|
while (isspace(*p))
|
|
|
|
p++;
|
|
|
|
i = strlen(p);
|
|
|
|
while (i > 0 && isspace(p[i - 1])) {
|
|
|
|
p[i - 1] = '\0';
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
section_add_entry(section, line, p);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
return config;
|
|
|
|
}
|
|
|
|
|
2019-11-25 13:30:11 +03:00
|
|
|
WL_EXPORT
|
2013-09-22 10:17:35 +04:00
|
|
|
const char *
|
|
|
|
weston_config_get_full_path(struct weston_config *config)
|
|
|
|
{
|
2013-09-26 13:27:16 +04:00
|
|
|
return config == NULL ? NULL : config->path;
|
2013-09-22 10:17:35 +04:00
|
|
|
}
|
|
|
|
|
2017-02-21 14:58:20 +03:00
|
|
|
WL_EXPORT
|
2013-05-27 04:50:53 +04:00
|
|
|
int
|
|
|
|
weston_config_next_section(struct weston_config *config,
|
|
|
|
struct weston_config_section **section,
|
|
|
|
const char **name)
|
|
|
|
{
|
config-parser: Avoid null dereference when handling config-parser ( when weston starts without config file. )
backtrace:
(gdb) bt
#0 weston_config_next_section (config=0x0, section=0xbfb2b608, name=0xbfb2b618) at config-parser.c:485
#1 0xb75b1371 in x11_compositor_create (config=0x1, argv=0xbfb2ba44, argc=<optimized out>, use_pixman=0, no_input=0, fullscreen=0, display=0xb75b55f9)
at compositor-x11.c:1582
#2 backend_init (display=0x8354490, argc=0xbfb2b9b0, argv=0xbfb2ba44, config=0x0) at compositor-x11.c:1674
#3 0x0804df7b in main (argc=1, argv=0xbfb2ba44) at compositor.c:3289
2013-05-27 19:04:26 +04:00
|
|
|
if (config == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2013-05-27 04:50:53 +04:00
|
|
|
if (*section == NULL)
|
|
|
|
*section = container_of(config->section_list.next,
|
|
|
|
struct weston_config_section, link);
|
|
|
|
else
|
|
|
|
*section = container_of((*section)->link.next,
|
|
|
|
struct weston_config_section, link);
|
|
|
|
|
|
|
|
if (&(*section)->link == &config->section_list)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
*name = (*section)->name;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-11-25 13:30:11 +03:00
|
|
|
WL_EXPORT
|
2013-04-01 20:41:23 +04:00
|
|
|
void
|
|
|
|
weston_config_destroy(struct weston_config *config)
|
|
|
|
{
|
|
|
|
struct weston_config_section *s, *next_s;
|
|
|
|
struct weston_config_entry *e, *next_e;
|
|
|
|
|
2013-05-27 19:20:04 +04:00
|
|
|
if (config == NULL)
|
|
|
|
return;
|
|
|
|
|
2013-04-01 20:41:23 +04:00
|
|
|
wl_list_for_each_safe(s, next_s, &config->section_list, link) {
|
|
|
|
wl_list_for_each_safe(e, next_e, &s->entry_list, link) {
|
|
|
|
free(e->key);
|
|
|
|
free(e->value);
|
|
|
|
free(e);
|
|
|
|
}
|
|
|
|
free(s->name);
|
|
|
|
free(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(config);
|
|
|
|
}
|