summaryrefslogtreecommitdiff
path: root/src/libexecline/el_pushenv.c
blob: 9af5ec572b48c740b64abb374d901b884c5d6538 (plain)
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
/* ISC license. */

#include <string.h>
#include <errno.h>
#include <skalibs/bytestr.h>
#include <skalibs/stralloc.h>
#include <skalibs/types.h>
#include <execline/execline.h>

int el_pushenv (stralloc *sa, char const *const *envp, size_t envlen, char const *const *list, size_t listlen)
{
  size_t i = 0, salen = sa->len ;
  int count = 0 ;
  for (; i < envlen ; i++)
  {
    size_t equal, colon, j = 0 ;
    for (; j < listlen ; j++) if (str_start(envp[i], list[j])) break ;
    if (j == listlen) goto copyit ;
    count++ ;
    j = strlen(list[j]) ;
    colon = j + str_chr(envp[i] + j, ':') ;
    equal = j + str_chr(envp[i] + j, '=') ;
    if (!envp[i][equal]) goto badenv ;
    if (colon >= equal)
    {
      if (!stralloc_catb(sa, envp[i], equal)
       || !stralloc_catb(sa, ":1", 2)) goto err ;
    }
    else
    {
      size_t n ;
      char fmt[UINT_FMT+1] = ":" ;
      if (colon + 1 + uint_scan(envp[i] + colon + 1, &n) != equal) goto copyit ;
      n = 1 + uint_fmt(fmt+1, n+1) ;
      if (!stralloc_catb(sa, envp[i], colon)) goto err ;
      if (!stralloc_catb(sa, fmt, n)) goto err ;
    }
    if (!stralloc_catb(sa, envp[i] + equal, strlen(envp[i] + equal) + 1)) goto err ;
    continue ;
copyit:
    if (!stralloc_catb(sa, envp[i], strlen(envp[i]) + 1)) goto err ;
  }
  return count ;

badenv :
  errno = EINVAL ;
err:
  sa->len = salen ;
  return -1 ;
}