]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/strv.c
hostnamed: introduce systemd-hostnamed
[thirdparty/systemd.git] / src / strv.c
CommitLineData
d6c9574f 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
60918275 2
a7334b09
LP
3/***
4 This file is part of systemd.
5
6 Copyright 2010 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
60918275
LP
22#include <assert.h>
23#include <stdlib.h>
24#include <stdarg.h>
25#include <string.h>
2e6c9e6b 26#include <errno.h>
60918275
LP
27
28#include "util.h"
29#include "strv.h"
30
31char *strv_find(char **l, const char *name) {
5f9a22c3
LP
32 char **i;
33
60918275
LP
34 assert(name);
35
5f9a22c3
LP
36 STRV_FOREACH(i, l)
37 if (streq(*i, name))
38 return *i;
60918275
LP
39
40 return NULL;
41}
42
a4bfb399
LP
43char *strv_find_prefix(char **l, const char *name) {
44 char **i;
45
46 assert(name);
47
48 STRV_FOREACH(i, l)
49 if (startswith(*i, name))
50 return *i;
51
52 return NULL;
53}
54
60918275
LP
55void strv_free(char **l) {
56 char **k;
57
58 if (!l)
59 return;
60
61 for (k = l; *k; k++)
62 free(*k);
63
64 free(l);
65}
66
67char **strv_copy(char **l) {
68 char **r, **k;
69
70 if (!(r = new(char*, strv_length(l)+1)))
71 return NULL;
72
ede27aab
LP
73 if (l)
74 for (k = r; *l; k++, l++)
75 if (!(*k = strdup(*l)))
76 goto fail;
60918275
LP
77
78 *k = NULL;
79 return r;
80
81fail:
da19d5c1 82 for (k--; k >= r; k--)
60918275
LP
83 free(*k);
84
da19d5c1
LP
85 free(r);
86
60918275
LP
87 return NULL;
88}
89
90unsigned strv_length(char **l) {
91 unsigned n = 0;
92
93 if (!l)
94 return 0;
95
96 for (; *l; l++)
97 n++;
98
99 return n;
100}
101
257eca1a 102char **strv_new_ap(const char *x, va_list ap) {
60918275
LP
103 const char *s;
104 char **a;
105 unsigned n = 0, i = 0;
257eca1a
LP
106 va_list aq;
107
60918275
LP
108
109 if (x) {
110 n = 1;
111
257eca1a
LP
112 va_copy(aq, ap);
113 while (va_arg(aq, const char*))
60918275 114 n++;
257eca1a 115 va_end(aq);
60918275
LP
116 }
117
118 if (!(a = new(char*, n+1)))
119 return NULL;
120
121 if (x) {
122 if (!(a[i] = strdup(x))) {
123 free(a);
124 return NULL;
125 }
126
127 i++;
128
60918275
LP
129 while ((s = va_arg(ap, const char*))) {
130 if (!(a[i] = strdup(s)))
131 goto fail;
132
133 i++;
134 }
60918275
LP
135 }
136
137 a[i] = NULL;
257eca1a 138
60918275
LP
139 return a;
140
141fail:
142
143 for (; i > 0; i--)
144 if (a[i-1])
145 free(a[i-1]);
146
147 free(a);
257eca1a 148
60918275
LP
149 return NULL;
150}
034c6ed7 151
257eca1a
LP
152char **strv_new(const char *x, ...) {
153 char **r;
154 va_list ap;
155
156 va_start(ap, x);
157 r = strv_new_ap(x, ap);
158 va_end(ap);
159
160 return r;
161}
162
034c6ed7
LP
163char **strv_merge(char **a, char **b) {
164 char **r, **k;
165
166 if (!a)
167 return strv_copy(b);
168
169 if (!b)
170 return strv_copy(a);
171
172 if (!(r = new(char*, strv_length(a)+strv_length(b)+1)))
173 return NULL;
174
175 for (k = r; *a; k++, a++)
176 if (!(*k = strdup(*a)))
177 goto fail;
178 for (; *b; k++, b++)
179 if (!(*k = strdup(*b)))
180 goto fail;
181
182 *k = NULL;
183 return r;
184
185fail:
186 for (k--; k >= r; k--)
187 free(*k);
188
100a76ee
LP
189 free(r);
190
034c6ed7 191 return NULL;
5f9a22c3
LP
192}
193
194char **strv_merge_concat(char **a, char **b, const char *suffix) {
195 char **r, **k;
196
197 /* Like strv_merge(), but appends suffix to all strings in b, before adding */
198
199 if (!b)
200 return strv_copy(a);
201
202 if (!(r = new(char*, strv_length(a)+strv_length(b)+1)))
203 return NULL;
204
205 for (k = r; *a; k++, a++)
206 if (!(*k = strdup(*a)))
207 goto fail;
208 for (; *b; k++, b++)
209 if (!(*k = strappend(*b, suffix)))
210 goto fail;
211
212 *k = NULL;
213 return r;
214
215fail:
216 for (k--; k >= r; k--)
217 free(*k);
218
100a76ee
LP
219 free(r);
220
5f9a22c3
LP
221 return NULL;
222
223}
224
225char **strv_split(const char *s, const char *separator) {
226 char *state;
227 char *w;
228 size_t l;
229 unsigned n, i;
230 char **r;
231
232 assert(s);
233
234 n = 0;
235 FOREACH_WORD_SEPARATOR(w, l, s, separator, state)
236 n++;
237
238 if (!(r = new(char*, n+1)))
239 return NULL;
240
241 i = 0;
242 FOREACH_WORD_SEPARATOR(w, l, s, separator, state)
243 if (!(r[i++] = strndup(w, l))) {
244 strv_free(r);
245 return NULL;
246 }
247
248 r[i] = NULL;
249 return r;
250}
251
252char **strv_split_quoted(const char *s) {
253 char *state;
254 char *w;
255 size_t l;
256 unsigned n, i;
257 char **r;
258
259 assert(s);
260
261 n = 0;
262 FOREACH_WORD_QUOTED(w, l, s, state)
263 n++;
264
265 if (!(r = new(char*, n+1)))
266 return NULL;
267
268 i = 0;
269 FOREACH_WORD_QUOTED(w, l, s, state)
f60f22df 270 if (!(r[i++] = cunescape_length(w, l))) {
5f9a22c3
LP
271 strv_free(r);
272 return NULL;
273 }
274
275 r[i] = NULL;
276 return r;
277}
278
279char *strv_join(char **l, const char *separator) {
280 char *r, *e;
281 char **s;
282 size_t n, k;
283
284 if (!separator)
285 separator = " ";
286
287 k = strlen(separator);
288
289 n = 0;
290 STRV_FOREACH(s, l) {
291 if (n != 0)
292 n += k;
293 n += strlen(*s);
294 }
295
296 if (!(r = new(char, n+1)))
297 return NULL;
298
299 e = r;
300 STRV_FOREACH(s, l) {
301 if (e != r)
302 e = stpcpy(e, separator);
303
304 e = stpcpy(e, *s);
305 }
306
8d49745c
LP
307 *e = 0;
308
5f9a22c3
LP
309 return r;
310}
311
312char **strv_append(char **l, const char *s) {
313 char **r, **k;
314
315 if (!l)
316 return strv_new(s, NULL);
317
318 if (!s)
319 return strv_copy(l);
320
321 if (!(r = new(char*, strv_length(l)+2)))
322 return NULL;
034c6ed7 323
5f9a22c3
LP
324 for (k = r; *l; k++, l++)
325 if (!(*k = strdup(*l)))
326 goto fail;
2e6c9e6b 327
5f9a22c3
LP
328 if (!(*(k++) = strdup(s)))
329 goto fail;
330
331 *k = NULL;
332 return r;
333
334fail:
335 for (k--; k >= r; k--)
336 free(*k);
337
100a76ee
LP
338 free(r);
339
5f9a22c3 340 return NULL;
034c6ed7 341}
cba8922f 342
5f9a22c3 343char **strv_uniq(char **l) {
cba8922f
LP
344 char **i;
345
5f9a22c3
LP
346 /* Drops duplicate entries. The first identical string will be
347 * kept, the others dropped */
348
cba8922f 349 STRV_FOREACH(i, l)
5f9a22c3
LP
350 strv_remove(i+1, *i);
351
352 return l;
353}
354
355char **strv_remove(char **l, const char *s) {
356 char **f, **t;
357
358 if (!l)
359 return NULL;
360
5d6ab905
LP
361 assert(s);
362
363 /* Drops every occurrence of s in the string list, edits
364 * in-place. */
5f9a22c3
LP
365
366 for (f = t = l; *f; f++) {
367
368 if (streq(*f, s)) {
369 free(*f);
370 continue;
371 }
372
373 *(t++) = *f;
374 }
cba8922f 375
5f9a22c3
LP
376 *t = NULL;
377 return l;
cba8922f 378}
2e6c9e6b
LP
379
380static int env_append(char **r, char ***k, char **a) {
381 assert(r);
382 assert(k);
5b6319dc
LP
383
384 if (!a)
385 return 0;
2e6c9e6b
LP
386
387 /* Add the entries of a to *k unless they already exist in *r
35b8ca3a 388 * in which case they are overridden instead. This assumes
a6ff950e 389 * there is enough space in the r array. */
2e6c9e6b
LP
390
391 for (; *a; a++) {
392 char **j;
5d6ab905
LP
393 size_t n;
394
395 n = strcspn(*a, "=");
396
397 if ((*a)[n] == '=')
398 n++;
2e6c9e6b
LP
399
400 for (j = r; j < *k; j++)
401 if (strncmp(*j, *a, n) == 0)
402 break;
403
404 if (j >= *k)
405 (*k)++;
406 else
407 free(*j);
408
409 if (!(*j = strdup(*a)))
410 return -ENOMEM;
411 }
412
413 return 0;
414}
415
5b6319dc 416char **strv_env_merge(unsigned n_lists, ...) {
2e6c9e6b
LP
417 size_t n = 0;
418 char **l, **k, **r;
419 va_list ap;
5b6319dc 420 unsigned i;
2e6c9e6b
LP
421
422 /* Merges an arbitrary number of environment sets */
423
5b6319dc
LP
424 va_start(ap, n_lists);
425 for (i = 0; i < n_lists; i++) {
426 l = va_arg(ap, char**);
427 n += strv_length(l);
2e6c9e6b 428 }
5b6319dc 429 va_end(ap);
2e6c9e6b
LP
430
431 if (!(r = new(char*, n+1)))
432 return NULL;
433
434 k = r;
435
5b6319dc
LP
436 va_start(ap, n_lists);
437 for (i = 0; i < n_lists; i++) {
438 l = va_arg(ap, char**);
439 if (env_append(r, &k, l) < 0)
2e6c9e6b 440 goto fail;
2e6c9e6b 441 }
5b6319dc 442 va_end(ap);
2e6c9e6b
LP
443
444 *k = NULL;
445
446 return r;
447
448fail:
da19d5c1
LP
449 va_end(ap);
450
2e6c9e6b
LP
451 for (k--; k >= r; k--)
452 free(*k);
453
454 free(r);
455
456 return NULL;
457}
1137a57c
LP
458
459static bool env_match(const char *t, const char *pattern) {
460 assert(t);
461 assert(pattern);
462
463 /* pattern a matches string a
464 * a matches a=
465 * a matches a=b
466 * a= matches a=
467 * a=b matches a=b
468 * a= does not match a
469 * a=b does not match a=
470 * a=b does not match a
471 * a=b does not match a=c */
472
473 if (streq(t, pattern))
474 return true;
475
476 if (!strchr(pattern, '=')) {
477 size_t l = strlen(pattern);
478
479 return strncmp(t, pattern, l) == 0 && t[l] == '=';
480 }
481
482 return false;
483}
484
5b6319dc 485char **strv_env_delete(char **x, unsigned n_lists, ...) {
1137a57c
LP
486 size_t n = 0, i = 0;
487 char **l, **k, **r, **j;
488 va_list ap;
489
35b8ca3a 490 /* Deletes every entry from x that is mentioned in the other
1137a57c
LP
491 * string lists */
492
493 n = strv_length(x);
494
495 if (!(r = new(char*, n+1)))
496 return NULL;
497
498 STRV_FOREACH(k, x) {
5b6319dc 499 va_start(ap, n_lists);
1137a57c 500
5b6319dc
LP
501 for (i = 0; i < n_lists; i++) {
502 l = va_arg(ap, char**);
1137a57c
LP
503 STRV_FOREACH(j, l)
504 if (env_match(*k, *j))
505 goto delete;
5b6319dc 506 }
1137a57c
LP
507
508 va_end(ap);
509
510 if (!(r[i++] = strdup(*k))) {
511 strv_free(r);
512 return NULL;
513 }
514
515 continue;
516
517 delete:
518 va_end(ap);
519 }
520
521 r[i] = NULL;
522
523 assert(i <= n);
524
525 return r;
526}
ddb26e18 527
7640a5de
LP
528char **strv_env_unset(char **l, const char *p) {
529
530 char **f, **t;
531
532 if (!l)
533 return NULL;
534
535 assert(p);
536
537 /* Drops every occurrence of the env var setting p in the
538 * string list. edits in-place. */
539
540 for (f = t = l; *f; f++) {
541
542 if (env_match(*f, p)) {
543 free(*f);
544 continue;
545 }
546
547 *(t++) = *f;
548 }
549
550 *t = NULL;
551 return l;
552}
553
ddb26e18
LP
554char **strv_env_set(char **x, const char *p) {
555
556 char **k, **r;
e1830b12
LP
557 char* m[2] = { (char*) p, NULL };
558
559 /* Overrides the env var setting of p, returns a new copy */
ddb26e18
LP
560
561 if (!(r = new(char*, strv_length(x)+2)))
562 return NULL;
563
564 k = r;
565 if (env_append(r, &k, x) < 0)
566 goto fail;
567
e1830b12 568 if (env_append(r, &k, m) < 0)
ddb26e18
LP
569 goto fail;
570
571 *k = NULL;
572
573 return r;
574
575fail:
576 for (k--; k >= r; k--)
577 free(*k);
578
579 free(r);
580
581 return NULL;
582
583}
fab56fc5
LP
584
585char *strv_env_get_with_length(char **l, const char *name, size_t k) {
586 char **i;
587
588 assert(name);
589
590 STRV_FOREACH(i, l)
591 if (strncmp(*i, name, k) == 0 &&
592 (*i)[k] == '=')
593 return *i + k + 1;
594
595 return NULL;
596}
597
598char *strv_env_get(char **l, const char *name) {
599 return strv_env_get_with_length(l, name, strlen(name));
600}
a6ff950e
LP
601
602char **strv_env_clean(char **l) {
603 char **r, **ret;
604
605 for (r = ret = l; *l; l++) {
606 const char *equal;
607
608 equal = strchr(*l, '=');
609
610 if (equal && equal[1] == 0) {
611 free(*l);
612 continue;
613 }
614
615 *(r++) = *l;
616 }
617
618 *r = NULL;
619
620 return ret;
621}
21bc923a
LP
622
623char **strv_parse_nulstr(const char *s, size_t l) {
624 const char *p;
625 unsigned c = 0, i = 0;
626 char **v;
627
628 assert(s || l <= 0);
629
630 if (l <= 0)
631 return strv_new(NULL, NULL);
632
633 for (p = s; p < s + l; p++)
634 if (*p == 0)
635 c++;
636
637 if (s[l-1] != 0)
638 c++;
639
640 if (!(v = new0(char*, c+1)))
641 return NULL;
642
643 p = s;
644 while (p < s + l) {
645 const char *e;
646
647 e = memchr(p, 0, s + l - p);
648
649 if (!(v[i++] = strndup(p, e ? e - p : s + l - p))) {
650 strv_free(v);
651 return NULL;
652 }
653
654 if (!e)
655 break;
656
657 p = e + 1;
658 }
659
660 assert(i == c);
661
662 return v;
663}