summaryrefslogtreecommitdiff
path: root/src/libenvexec/envdir_noclamp.c
blob: 0741c9da82c70157ea59b14c7844e4c47ba16c34 (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
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
/* ISC license. */

#include <unistd.h>
#include <string.h>
#include <errno.h>

#include <skalibs/bytestr.h>
#include <skalibs/buffer.h>
#include <skalibs/env.h>
#include <skalibs/direntry.h>
#include <skalibs/stralloc.h>
#include <skalibs/djbunix.h>
#include <skalibs/skamisc.h>
#include "envdir-internal.h"

#define N 4096

int envdir_internal_noclamp (char const *path, stralloc *modifs, unsigned int options, char nullis)
{
  unsigned int n = 0 ;
  size_t pathlen = strlen(path) ;
  size_t modifbase = modifs->len ;
  int wasnull = !modifs->s ;
  int fd ;
  DIR *dir = opendir(path) ;
  if (!dir) return -1 ;
  for (;;)
  {
    direntry *d ;
    size_t len, pos ;
    errno = 0 ;
    d = readdir(dir) ;
    if (!d) break ;
    if (d->d_name[0] == '.') continue ;
    len = strlen(d->d_name) ;
    if (str_chr(d->d_name, '=') < len) continue ;
    {
      char tmp[pathlen + len + 2] ;
      memcpy(tmp, path, pathlen) ;
      tmp[pathlen] = '/' ;
      memcpy(tmp + pathlen + 1, d->d_name, len + 1) ;
      fd = openc_readb(tmp) ;
    }
    if (fd < 0)
    {
      if (errno == ENOENT) errno = EIDRM ;
      goto err ;
    }
    if (!stralloc_catb(modifs, d->d_name, len) || !stralloc_catb(modifs, "=", 1)) goto errfd ;
    pos = modifs->len ;
    if (options & SKALIBS_ENVDIR_VERBATIM)
    {
      if (!slurp(modifs, fd)) goto errfd ;
      if (modifs->len == pos) modifs->len = pos - 1 ;
      if (!(options & SKALIBS_ENVDIR_NOCHOMP) && (modifs->s[modifs->len - 1] == '\n')) modifs->len-- ;
    }
    else
    {
      int r ;
      char buf[N] ;
      buffer b = BUFFER_INIT(&buffer_read, fd, buf, N) ;
      r = skagetln(&b, modifs, '\n') ;
      if (r == -1)
      {
        if (errno != EPIPE) goto errfd ;
        if (!(options & SKALIBS_ENVDIR_NOCHOMP)) modifs->len = pos ;
        modifs->len++ ;
      }
      if (!r) modifs->len = pos - 1 ;
      else
      {
        modifs->len-- ;
        if (!(options & SKALIBS_ENVDIR_NOCHOMP))
        {
          while (modifs->len-- > pos)
          {
            char c = modifs->s[modifs->len] ;
            if ((c != ' ') && (c != '\t') && (c != '\r')) break ;
          }
          modifs->len++ ;
        }
      }
    }
    fd_close(fd) ;
    for (; pos < modifs->len ; pos++) if (!modifs->s[pos]) modifs->s[pos] = nullis ;
    if (!stralloc_0(modifs)) goto err ;
    n++ ;
  }
  if (errno) goto err ;
  dir_close(dir) ;
  return n ;

 errfd:
  fd_close(fd) ;
 err:
  {
    int e = errno ;
    dir_close(dir) ;
    if (wasnull) stralloc_free(modifs) ; else modifs->len = modifbase ;
    errno = e ;
    return -1 ;
  }
}