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
|
/*
* helpers.h
* This is private to us and not for user consumption
*/
/*
* Copyright (c) 2007-2015 The OpenRC Authors.
* See the Authors file at the top-level directory of this distribution and
* https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
*
* This file is part of OpenRC. It is subject to the license terms in
* the LICENSE file found in the top-level directory of this
* distribution and at https://github.com/OpenRC/openrc/blob/HEAD/LICENSE
* This file may not be copied, modified, propagated, or distributed
* except according to the terms contained in the LICENSE file.
*/
#ifndef __HELPERS_H__
#define __HELPERS_H__
#include <stdarg.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <dirent.h>
#include <unistd.h>
#include <fcntl.h>
#define ERRX do { fprintf (stderr, "out of memory\n"); exit (1); } while (0)
#define UNCONST(a) ((void *)(uintptr_t)(const void *)(a))
#define RC_UNUSED __attribute__((__unused__))
#define RC_NORETURN __attribute__((__noreturn__))
#define RC_PRINTF(a, b) __attribute__((__format__(__printf__, a, b)))
#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
#ifndef HAVE_STRLCPY
# define strlcpy(dst, src, size) snprintf(dst, size, "%s", src)
#endif
#ifndef timespecsub
#define timespecsub(tsp, usp, vsp) \
do { \
(vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
(vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \
if ((vsp)->tv_nsec < 0) { \
(vsp)->tv_sec--; \
(vsp)->tv_nsec += 1000000000L; \
} \
} while (/* CONSTCOND */ 0)
#endif
RC_UNUSED static void *xmalloc (size_t size)
{
void *value = malloc(size);
if (value)
return (value);
ERRX;
/* NOTREACHED */
}
RC_UNUSED static void *xrealloc(void *ptr, size_t size)
{
void *value = realloc(ptr, size);
if (value)
return (value);
ERRX;
/* NOTREACHED */
}
RC_UNUSED static char *xstrdup(const char *str)
{
char *value;
if (!str)
return (NULL);
value = strdup(str);
if (value)
return (value);
ERRX;
/* NOTREACHED */
}
RC_UNUSED static FILE *xopen_memstream(char **ptr, size_t *sizeloc)
{
FILE *f = open_memstream(ptr, sizeloc);
if (f)
return f;
ERRX;
}
RC_UNUSED static void xclose_memstream(FILE *f)
{
fflush(f);
if (ferror(f) || fclose(f) != 0)
ERRX;
}
#undef ERRX
/*
* basename_c never modifies the argument. As such, if there is a trailing
* slash then an empty string is returned.
*/
RC_UNUSED static const char *basename_c(const char *path)
{
const char *slash = strrchr(path, '/');
if (slash)
return (++slash);
return (path);
}
RC_UNUSED static FILE *do_fopenat(int dirfd, const char *pathname, int mode)
{
int fd = openat(dirfd, pathname, mode, 0666);
const char *fmode;
FILE *fp;
if (fd == -1)
return NULL;
/* O_CREAT and O_TRUNC in modes 'a', 'w+', 'a+' don't
* really matter after the file has been opened.
*
* Some implementations have O_RDONLY defined to zero,
* thus making it impossible to detect, so, we default
* to "r" if no other mask fully matches. */
if ((mode & O_RDWR) == O_RDWR)
fmode = "r+";
else if ((mode & O_WRONLY) == O_WRONLY)
fmode = "w";
else
fmode = "r";
if (!(fp = fdopen(fd, fmode)))
close(fd);
return fp;
}
RC_UNUSED static DIR *do_opendirat(int dirfd, const char *pathname)
{
int fd = openat(dirfd, pathname, O_RDONLY | O_DIRECTORY);
DIR *dp;
if (fd == -1)
return NULL;
if (!(dp = fdopendir(fd)))
close(fd);
return dp;
}
RC_UNUSED static DIR *do_dopendir(int dirfd)
{
int fd = dup(dirfd);
DIR *dp;
if (fd == -1)
return NULL;
if (!(dp = fdopendir(fd)))
close(fd);
return dp;
}
/*
* This is an OpenRC specific version of the asprintf() function.
* We do this to avoid defining the _GNU_SOURCE feature test macro on
* glibc systems and to ensure that we have a consistent function across
* platforms. This also allows us to call our xmalloc and xrealloc
* functions to handle memory allocation.
* this function was originally written by Mike Frysinger.
*/
RC_UNUSED RC_PRINTF(2,3) static int xasprintf(char **strp, const char *fmt, ...)
{
va_list ap;
int len;
int memlen;
char *ret;
/*
* Start with a buffer size that should cover the vast majority of uses
* (path construction).
*/
memlen = 4096;
ret = xmalloc(memlen);
va_start(ap, fmt);
len = vsnprintf(ret, memlen, fmt, ap);
va_end(ap);
if (len >= memlen) {
/*
* Output was truncated, so increase buffer to exactly what we need.
*/
memlen = len + 1;
ret = xrealloc(ret, memlen);
va_start(ap, fmt);
len = vsnprintf(ret, len + 1, fmt, ap);
va_end(ap);
}
if (len < 0 || len >= memlen) {
/* Give up! */
fprintf(stderr, "xasprintf: unable to format a buffer\n");
free(ret);
exit(1);
}
*strp = ret;
return len;
}
RC_UNUSED static ssize_t xgetline(char **restrict lineptr, size_t *restrict n, FILE *restrict stream)
{
ssize_t ret = getline(lineptr, n, stream);
if (ret <= 0)
return ret;
if ((*lineptr)[ret - 1] == '\n')
(*lineptr)[--ret] = '\0';
return ret;
}
#endif
|