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
|
/*-
* redshift-ng - Automatically adjust display colour temperature according the Sun
*
* Copyright (c) 2009-2018 Jon Lund Steffensen <jonlst@gmail.com>
* Copyright (c) 2014-2016, 2025 Mattias Andrée <m@maandree.se>
*
* 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/>.
*/
#include "common.h"
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;
}
char *
ltrim(char *s)
{
while (*s == ' ' || *s == '\t')
s++;
return s;
}
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 in some manner
*
* @param path_spec Specification for the path to try
* @param path_out Output parameter for the found file
* @param pathbuf_out Output parameter for the memory allocation for `*path_out`;
* shall be free(3)d by the caller
* @param open_cb Pointer to function used to open the file, unless it
* returns `NULL` it's return value is returned by the
* function (`try_path`); `NULL` shall be returned if the
* file `path` does not exist
* @return File access object to the found file; `NULL` if not found
*/
static void *
try_path(const struct env_path *path_spec, const char **path_out, char **pathbuf_out, void *(*open_cb)(const char *path))
{
const char *prefix, *p, *q;
char *path;
size_t len;
void *f = NULL;
*path_out = NULL;
*pathbuf_out = NULL;
if (!path_spec->prefix_env) {
prefix = get_home();
} else if (*path_spec->prefix_env) {
prefix = getenv(path_spec->prefix_env);
} else {
f = (*open_cb)(path_spec->suffix);
if (f)
*path_out = path_spec->suffix;
return f;
}
if (!prefix || !*prefix)
return NULL;
path = emalloc(strlen(prefix) + strlen(path_spec->suffix) + 1U);
if (path_spec->multidir_env) {
for (p = prefix; !f && *p; p = &q[!!*q]) {
#ifdef strchrnul
q = strchrnul(p, PATH_DELIMITER);
#else
q = strchr(p, PATH_DELIMITER);
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 = (*open_cb)(path);
}
} else {
stpcpy(stpcpy(path, prefix), path_spec->suffix);
f = (*open_cb)(path);
}
if (f)
*path_out = *pathbuf_out = path;
else
free(path);
return f;
}
/**
* Open a file for reading, if it exists
*
* @param path The path to the file
* @return `FILE` object for reading the file,
* `NULL` if it doesn't exist
*/
static void *
open_file(const char *path)
{
FILE *f = fopen(path, "r");
if (!f && errno != ENOENT)
eprintf("fopen %s \"r\":", path);
return f;
}
FILE *
try_path_fopen(const struct env_path *path_spec, const char **path_out, char **pathbuf_out)
{
return try_path(path_spec, path_out, pathbuf_out, &open_file);
}
/**
* Open a directory for reading, if it exists
*
* @param path The path to the directory
* @return `DIR` object for reading the directory,
* `NULL` if it doesn't exist
*/
static void *
open_dir(const char *path)
{
DIR *f = opendir(path);
if (!f && errno != ENOENT)
eprintf("opendir %s:", path);
return f;
}
DIR *
try_path_opendir(const struct env_path *path_spec, const char **path_out, char **pathbuf_out)
{
return try_path(path_spec, path_out, pathbuf_out, &open_dir);
}
#ifndef WINDOWS
void
pipe_rdnonblock(int pipefds[2])
{
int i, flags;
/* Try to use pipe2(2) create O_CLOEXEC pipe */
# if defined(__linux__) && !defined(MISSING_PIPE2)
if (!pipe2(pipefds, O_CLOEXEC))
goto apply_nonblock;
else if (errno != ENOSYS)
eprintf("pipe2 <buffer> O_CLOEXEC:");
# endif
/* Fallback for when pipe2(2) is not available */
if (pipe(pipefds))
eprintf("pipe:");
for (i = 0; i < 2; i++) {
flags = fcntl(pipefds[i], F_GETFD);
if (flags == -1)
eprintf("fcntl <pipe> F_GETFD:");
if (fcntl(pipefds[i], F_SETFD, flags | O_CLOEXEC))
eprintf("fcntl <pipe> F_SETFD +O_CLOEXEC:");
}
/* Make the read-end non-blocking */
# if defined(__linux__) && !defined(MISSING_PIPE2)
apply_nonblock:
# endif
flags = fcntl(pipefds[0], F_GETFL);
if (flags == -1)
eprintf("fcntl <pipe> F_GETFL:");
if (fcntl(pipefds[0], F_SETFL, flags | O_NONBLOCK))
eprintf("fcntl <pipe> F_SETFL +O_NONBLOCK:");
}
#endif
void *
ecalloc(size_t n, size_t m)
{
char *ret = calloc(n, m);
if (!ret)
eprintf("calloc:");
return ret;
}
void *
emalloc(size_t n)
{
char *ret = malloc(n);
if (!ret)
eprintf("malloc:");
return ret;
}
void *
erealloc(void *ptr, size_t n)
{
char *ret = realloc(ptr, n);
if (!ret)
eprintf("realloc:");
return ret;
}
char *
estrdup(const char *s)
{
char *ret = strdup(s);
if (!ret)
eprintf("strdup:");
return ret;
}
void
vweprintf(const char *fmt, va_list args)
{
int saved_errno;
const char *errstrprefix, *errstr;
saved_errno = errno;
if (!*fmt) {
errstrprefix = "";
errstr = strerror(saved_errno);
} else if (strchr(fmt, '\0')[-1] == '\n') {
errstrprefix = "";
errstr = NULL;
} else if (strchr(fmt, '\0')[-1] == ':') {
errstrprefix = " ";
errstr = strerror(saved_errno);
} else {
errstrprefix = "";
errstr = "";
}
fprintf(stderr, "%s: ", argv0);
vfprintf(stderr, fmt, args);
if (errstr)
fprintf(stderr, "%s%s\n", errstrprefix, errstr);
errno = saved_errno;
}
void
weprintf(const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
vweprintf(fmt, args);
va_end(args);
}
void
eprintf(const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
vweprintf(fmt, args);
va_end(args);
exit(1);
}
|