forked from kaniini/envsubst
-
Notifications
You must be signed in to change notification settings - Fork 1
/
envsubst.c
270 lines (228 loc) · 4.26 KB
/
envsubst.c
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
/*
* Copyright (c) 2021 Ariadne Conill <ariadne@dereferenced.org>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* This software is provided 'as is' and without any warranty, express or
* implied. In no event shall the authors be liable for any damages arising
* from the use of this software.
*/
#include <getopt.h>
#include <errno.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void
usage(void)
{
printf("usage: envsubst [OPTIONS] [VARIABLE-NAMES...]\n");
printf(" VARIABLE-NAMES can be specified in shell format or bare.\n");
exit(EXIT_SUCCESS);
}
void
version(void)
{
printf("envsubst " ENVSUBST_VERSION "\n");
exit(EXIT_SUCCESS);
}
static char **variables = NULL;
static size_t variable_count = 0;
void
dump_variables(void)
{
if (!variable_count)
{
fprintf(stderr, "envsubst: no variables defined\n");
exit(EXIT_FAILURE);
}
for (size_t i = 0; i < variable_count; i++)
{
printf("%s\n", variables[i]);
}
}
const char *
normalize_variable(const char *var, bool require_sigil)
{
static char scratch[4096];
if (*var == '$')
{
var++;
if (*var == '{')
{
var++;
}
}
else if (require_sigil)
{
return NULL;
}
strlcpy(scratch, var, sizeof scratch);
char *p = strchr(scratch, '}');
if (p != NULL)
{
*p = '\0';
}
return scratch;
}
void *
reallocarray (void *optr, size_t nmemb, size_t elem_size)
{
size_t bytes;
if (__builtin_mul_overflow (nmemb, elem_size, &bytes))
{
fprintf(stderr, "Cannot allocate memory: %s\n", strerror(errno));
return 0;
}
return realloc (optr, bytes);
}
void
push_variable(const char *var)
{
variable_count++;
variables = reallocarray(variables, variable_count + 1, sizeof (void *));
if (variables == NULL)
{
fprintf(stderr, "envsubst: reallocarray: %s\n", strerror(errno));
exit(EXIT_FAILURE);
}
variables[variable_count - 1] = strdup(var);
}
void
process_variable(const char *var)
{
const char *var_token = normalize_variable(var, false);
if (var_token == NULL)
{
fprintf(stderr, "envsubst: failed to process '%s'\n", var_token);
return;
}
push_variable(var_token);
}
void
process_argument(char *arg)
{
char *token = strtok(arg, ",");
for (; token != NULL; token = strtok(NULL, ","))
{
process_variable(token);
}
}
bool
allow_variable(const char *token)
{
if (!variable_count)
{
return true;
}
for (size_t i = 0; i < variable_count; i++)
{
if (!strcmp(token, variables[i]))
{
return true;
}
}
return false;
}
void
free_variables(void)
{
for (size_t i = 0; i < variable_count; i++)
{
free(variables[i]);
}
free(variables);
}
void
print_variable(FILE *stream, const char *token, const char *orig_token)
{
if (allow_variable(token))
{
char *envp = getenv(token);
if (envp == NULL)
{
return;
}
fprintf(stream, "%s", envp);
}
else
{
fprintf(stream, "%s", orig_token);
}
}
void
process_input(FILE *stream)
{
char *line = NULL;
size_t len = 0;
ssize_t nread;
while ((nread = getline(&line, &len, stream)) != -1)
{
for (char *p = line; *p != '\0'; p++)
{
switch (*p)
{
case '$': {
char *end_p = strpbrk(p, " /\t\r\n");
char ospace = *end_p;
*end_p = '\0';
const char *token = normalize_variable(p, true);
print_variable(stdout, token, p);
/* we want to still process the whitespace */
*end_p = ospace;
p = end_p - 1;
break;
}
default:
fputc(*p, stdout);
break;
}
}
}
free(line);
}
int
main(int argc, char *argv[])
{
bool want_variables = false;
const struct option opts[] = {
{"help", no_argument, NULL, 'h'},
{"variables", no_argument, NULL, 'v'},
{"version", no_argument, NULL, 'V'},
{0, 0, 0, 0},
};
for (;;)
{
int c = getopt_long(argc, argv, "hvV", opts, NULL);
if (c == -1)
{
break;
}
else if (c == 'h')
{
usage();
}
else if (c == 'v')
{
want_variables = true;
}
else if (c == 'V')
{
version();
}
}
for (int c = optind; c < argc; c++)
{
process_argument(argv[c]);
}
if (want_variables)
{
dump_variables();
return EXIT_SUCCESS;
}
process_input(stdin);
free_variables();
return EXIT_SUCCESS;
}