aboutsummaryrefslogtreecommitdiffstats
path: root/src/config-ini.c
blob: c5246056f6ef193c010c817dd1d1ad6d9c658a61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
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
232
233
234
235
236
237
238
239
240
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
294
295
296
297
298
299
300
301
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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
/* config-ini.c -- INI config file parser
 * This file is part of redshift-ng.
 * 
 * redshift-ng is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * redshift-ng is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with redshift-ng.  If not, see <http://www.gnu.org/licenses/>.
 * 
 * Copyright (c) 2010-2018  Jon Lund Steffensen <jonlst@gmail.com>
 * Copyright (c) 2025       Mattias Andrée <m@maandree.se>
 */
#include "common.h"


/**
 * Specification for a path that consists of a two parts:
 * the first being defined by the environment, and the
 * seocnd being a static string
 */
struct env_path {
	/**
	 * Whether the environment variable referenced by `.prefix`
	 * should be split at each colon (:) into multiple paths to
	 * test
	 */
	int multidir_env;

	/**
	 * Environment variable to use as the first part of the path
	 * 
	 * `NULL` if the user's home directory should be used
	 * 
	 * The empty string if `.suffix` should be used as is
	 */
	const char *prefix_env;

	/**
	 * The second part of the path
	 */
	const char *suffix;
};


/**
 * Paths, in order of priority, to test when looking for
 * the configuration file for redshift
 */
static const struct env_path paths[] = {
	{0, "XDG_CONFIG_HOME", "/redshift-ng/redshift.conf"},
	{0, "XDG_CONFIG_HOME", "/redshift/redshift.conf"},
	{0, "XDG_CONFIG_HOME", "/redshift.conf"},
#ifdef WINDOWS
	{0, "localappdata", "/redshift-ng/redshift.conf"},
	{0, "localappdata", "/redshift/redshift.conf"},
	{0, "localappdata", "/redshift.conf"},
#endif
	{0, "HOME", "/.config/redshift-ng/redshift.conf"},
	{0, "HOME", "/.config/redshift/redshift.conf"},
	{0, "HOME", "/.config/redshift.conf"},
	{0, "HOME", "/.redshift.conf"},
	{0, NULL, "/.config/redshift-ng/redshift.conf"},
	{0, NULL, "/.config/redshift/redshift.conf"},
	{0, NULL, "/.config/redshift.conf"},
	{0, NULL, "/.redshift.conf"},
	{1, "XDG_CONFIG_DIRS", "/redshift-ng/redshift.conf"},
	{1, "XDG_CONFIG_DIRS", "/redshift/redshift.conf"},
	{1, "XDG_CONFIG_DIRS", "/redshift.conf"},
	{0, "", "/etc/redshift-ng/redshift.conf"},
	{0, "", "/etc/redshift/redshift.conf"},
	{0, "", "/etc/redshift.conf"}
};


/**
 * Remove trailing whitespace
 * 
 * @param   s    The string to trim, will be truncated
 * @param   end  The current end of `s`; will be looked up if `NULL`
 * @return       `s`
 */
static char *
rtrim(char *s, char *end)
{
	end = end ? end : strchr(s, '\0');
	while (end != s && (end[-1] == ' ' || end[-1] == '\t'))
		end--;
	*end = '\0';
	return s;
}


/**
 * Remove leading whitespace
 * 
 * @param   s  The string to trim (will not be modified)
 * @return     An offset of `s`
 */
GCC_ONLY(__attribute__((__warn_unused_result__)))
static char *
ltrim(char *s)
{
	return &s[strspn(s, " \t")];
}


/**
 * Get the user's home directory
 *
 * This function looks up the user's home directory
 * once and caches the result, later calls to this
 * function will use the cached result
 * 
 * @param  The user's home directory; the empty string if not found
 */
static const char *
get_home(void)
{
#ifdef WINDOWS
	return NULL;
#else
	static const char *home = NULL;
	struct passwd *pw;
	if (!home) {
		pw = getpwuid(getuid());
		if (pw) {
			home = pw->pw_dir;
			if (home && *home)
				return home;
			weprintf(_("Cannot determine your home directory, "
			           "it is from the system's user table."));
		} else if (errno) {
			weprintf("getpwuid:");
		} else {
			weprintf(_("Cannot determine your home directory, your"
			           " user ID is missing from the system's user table."));
			/* `errno` can either be set to any number of error codes,
			 * or be zero if the user does not have a passwd entry */
		}
		home = "";
	}
	return home;
#endif
}


/**
 * Search for a file and open it for reading
 * 
 * @param   path_spec  Specification for the path to try
 * @param   path_out   Output parameter for the file path
 * @return             `FILE` object for the reading the file; `NULL` if not found
 */
static FILE *
try_path(const struct env_path *path_spec, char **path_out)
{
	const char *prefix, *p, *q;
	char *path;
	size_t len;
	FILE *f;

	if (!path_spec->prefix_env)
		prefix = get_home();
	else if (!*path_spec->prefix_env)
		return fopen(path_spec->suffix, "r");
	else
		prefix = getenv(path_spec->prefix_env);
	if (!prefix || !*prefix)
		return NULL;

	path = emalloc(strlen(prefix) + strlen(path_spec->suffix) + 1U);

	if (path_spec->multidir_env) {
		for (p = prefix; *p; p = &q[!!*q]) {
#ifdef strchrnul
			q = strchrnul(p, ':');
#else
			q = strchr(p, ':');
			q = q ? q : strchr(p, '\0');
#endif
			len = (size_t)(q - p);
			if (!len)
				continue;

			memcpy(path, p, len);
			stpcpy(&path[len], path_spec->suffix);
			f = fopen(path, "r");
			if (f) {
				weprintf(_("Found configuration file `%s'."), path);
				break;
			} else if (errno != ENOENT) {
				eprintf("fopen %s \"r\":", path);
			}
		}
	} else {
		stpcpy(stpcpy(path, prefix), path_spec->suffix);
		f = fopen(path, "r");
		if (f)
			weprintf(_("Found configuration file `%s'."), path);
		else if (errno != ENOENT)
			eprintf("fopen %s \"r\":", path);
	}

	if (f) {
		*path_out = path;
	} else {
		free(path);
		*path_out = NULL;
	}
	return f;
}


/**
 * Open the configuration file for reading
 * 
 * @param   path         The path to the configuration file, or `NULL` if the
 *                       application should look for it in the default paths
 * @param   path_out     Output parameter for the configuration file
 * @param   pathbuf_out  Output parameter for the memory allocation for `*path_out`;
 *                       will be set to `NULL` unless `path` is `NULL`
 * @return               `FILE` object for the reading the file; `NULL` if not
 *                       found and `path` is `NULL`
 */
static FILE *
open_config_file(const char *path, const char **path_out, char **pathbuf_out)
{
	FILE *f = NULL;
	size_t i;

	if (!path) {
		for (i = 0; !f && i < ELEMSOF(paths); i++)
			f = try_path(&paths[i], pathbuf_out);
		if (!f)
			weprintf(_("No configuration file found."));
		*path_out = *pathbuf_out;
	} else {
		f = fopen(path, "r");
		if (!f)
			eprintf("fopen %s \"r\":", path);
		*path_out = path;
		*pathbuf_out = NULL;
	}

	return f;
}


void
config_ini_init(struct config_ini_state *state, const char *path)
{
	struct config_ini_section *section = NULL;
	struct config_ini_setting *setting;
	char *line = NULL, *s, *p, *value, *end, *pathbuf;
	char *next_line = NULL, *name;
	size_t size = 0;
	ssize_t len;
	FILE *f;

	state->sections = NULL;

	f = open_config_file(path, &path, &pathbuf);
	if (!f)
		return;
	while ((s = next_line) || (len = getline(&line, &size, f)) >= 0) {
		if (!s && (s = line, strlen(s) != (size_t)len))
			eprintf(_("Config file contains NUL byte."));

		s = ltrim(s);
		next_line = NULL;
		end = &s[strcspn(s, "\r\n")];
		if (*end) {
			p = end;
			do {
				*p++ = '\0';
			} while (*p == '\r' || *p == '\n');
			if (*p)
				next_line = p;
		}
		rtrim(s, end);

		switch (*s) {
		case ';': /* comment line */
		case '#': /* comment line */
		case '\0': /* blank line */
			break;

		case '[': /* "[%s]", section */
			end = strchr(name = &s[1], ']');
			if (!end || end[1] || end == name)
				eprintf(_("Malformed section header in config file."));
			*end = '\0';
			section = emalloc(sizeof(*section));
			section->name = estrdup(name);
			section->settings = NULL;
			section->next = state->sections;
			state->sections = section;
			break;

		default: /* "%s = %s", name, value */
			value = p = strchr(name = s, '=');
			if (!value || value == name)
				eprintf(_("Malformed assignment in config file."));
			*value++ = '\0';
			if (!section)
				eprintf(_("Assignment outside section in config file."));
			setting = emalloc(sizeof(*setting));
			setting->name = estrdup(rtrim(name, p));
			setting->value = estrdup(rtrim(ltrim(value), NULL));
			setting->next = section->settings;
			section->settings = setting;
			break;
		}
	}
	if (ferror(f))
		eprintf("getline %s:", path);
	free(pathbuf);
	free(line);
	fclose(f);
}


void
config_ini_free(struct config_ini_state *state)
{
	struct config_ini_section *section, *section_next;
	struct config_ini_setting *setting, *setting_next;
	for (section = state->sections; section; section = section_next) {
		section_next = section->next;
		for (setting = section->settings; setting; setting = setting_next) {
			setting_next = setting->next;
			free(setting->name);
			free(setting->value);
			free(setting);
		}
		free(section->name);
		free(section);
	}
}


struct config_ini_section *
config_ini_get_section(struct config_ini_state *state, const char *name)
{
	struct config_ini_section *section;
	for (section = state->sections; section; section = section->next)
		if (!strcasecmp(section->name, name))
			return section;
	return NULL;
}