cpp

Coverage Report

Created: 2024-03-13 14:13

/home/andy/git/oilshell/oil/cpp/stdlib.cc
Line
Count
Source (jump to first uncovered line)
1
// stdlib.cc: Replacement for standard library modules
2
// and native/posixmodule.c
3
4
#include "stdlib.h"
5
6
#include <dirent.h>  // closedir(), opendir(), readdir()
7
#include <errno.h>
8
#include <fcntl.h>      // open
9
#include <signal.h>     // kill
10
#include <sys/stat.h>   // umask
11
#include <sys/types.h>  // umask
12
#include <sys/wait.h>   // WUNTRACED
13
#include <time.h>
14
#include <unistd.h>
15
16
#include "mycpp/runtime.h"
17
// To avoid circular dependency with e_die()
18
#include "prebuilt/core/error.mycpp.h"
19
20
using error::e_die;
21
22
namespace fcntl_ {
23
24
0
int fcntl(int fd, int cmd) {
25
0
  int result = ::fcntl(fd, cmd);
26
0
  if (result < 0) {
27
0
    throw Alloc<IOError>(errno);
28
0
  }
29
0
  return result;
30
0
}
31
32
0
int fcntl(int fd, int cmd, int arg) {
33
0
  int result = ::fcntl(fd, cmd, arg);
34
0
  if (result < 0) {
35
0
    throw Alloc<IOError>(errno);
36
0
  }
37
0
  return result;
38
0
}
39
40
}  // namespace fcntl_
41
42
namespace posix {
43
44
0
mode_t umask(mode_t mask) {
45
  // No error case: always succeeds
46
0
  return ::umask(mask);
47
0
}
48
49
2
int open(BigStr* path, int flags, int perms) {
50
2
  int result = ::open(path->data_, flags, perms);
51
2
  if (result < 0) {
52
1
    throw Alloc<OSError>(errno);
53
1
  }
54
1
  return result;
55
2
}
56
57
0
void dup2(int oldfd, int newfd) {
58
0
  if (::dup2(oldfd, newfd) < 0) {
59
0
    throw Alloc<OSError>(errno);
60
0
  }
61
0
}
62
1
void putenv(BigStr* name, BigStr* value) {
63
1
  int overwrite = 1;
64
1
  int ret = ::setenv(name->data_, value->data_, overwrite);
65
1
  if (ret < 0) {
66
0
    throw Alloc<IOError>(errno);
67
0
  }
68
1
}
69
70
0
mylib::File* fdopen(int fd, BigStr* c_mode) {
71
  // CPython checks if it's a directory first
72
0
  struct stat buf;
73
0
  if (fstat(fd, &buf) == 0 && S_ISDIR(buf.st_mode)) {
74
0
    throw Alloc<OSError>(EISDIR);
75
0
  }
76
77
  // CPython does some fcntl() stuff with mode == 'a', which we don't support
78
0
  DCHECK(c_mode->data_[0] != 'a');
79
80
0
  FILE* f = ::fdopen(fd, c_mode->data_);
81
0
  if (f == nullptr) {
82
0
    throw Alloc<OSError>(errno);
83
0
  }
84
85
0
  return Alloc<mylib::CFile>(f);
86
0
}
87
88
void execve(BigStr* argv0, List<BigStr*>* argv,
89
0
            Dict<BigStr*, BigStr*>* environ) {
90
0
  int n_args = len(argv);
91
  // never deallocated
92
0
  char** _argv = static_cast<char**>(malloc((n_args + 1) * sizeof(char*)));
93
94
  // Annoying const_cast
95
  // https://stackoverflow.com/questions/190184/execv-and-const-ness
96
0
  for (int i = 0; i < n_args; ++i) {
97
0
    _argv[i] = const_cast<char*>(argv->at(i)->data_);
98
0
  }
99
0
  _argv[n_args] = nullptr;
100
101
  // Convert environ into an array of pointers to strings of the form: "k=v".
102
0
  int n_env = len(environ);
103
0
  char** envp = static_cast<char**>(malloc((n_env + 1) * sizeof(char*)));
104
105
0
  int env_index = 0;
106
0
  for (DictIter<BigStr*, BigStr*> it(environ); !it.Done(); it.Next()) {
107
0
    BigStr* k = it.Key();
108
0
    BigStr* v = it.Value();
109
110
0
    int joined_len = len(k) + len(v) + 1;
111
0
    char* buf = static_cast<char*>(malloc(joined_len + 1));
112
0
    memcpy(buf, k->data_, len(k));
113
0
    buf[len(k)] = '=';
114
0
    memcpy(buf + len(k) + 1, v->data_, len(v));
115
0
    buf[joined_len] = '\0';
116
117
0
    envp[env_index++] = buf;
118
0
  }
119
0
  envp[n_env] = nullptr;
120
121
0
  int ret = ::execve(argv0->data_, _argv, envp);
122
0
  if (ret == -1) {
123
0
    throw Alloc<OSError>(errno);
124
0
  }
125
126
  // ::execve() never returns on success
127
0
  FAIL(kShouldNotGetHere);
128
0
}
129
130
0
void kill(int pid, int sig) {
131
0
  if (::kill(pid, sig) != 0) {
132
0
    throw Alloc<OSError>(errno);
133
0
  }
134
0
}
135
136
0
void killpg(int pgid, int sig) {
137
0
  if (::killpg(pgid, sig) != 0) {
138
0
    throw Alloc<OSError>(errno);
139
0
  }
140
0
}
141
142
2
List<BigStr*>* listdir(BigStr* path) {
143
2
  DIR* dirp = opendir(path->data());
144
2
  if (dirp == NULL) {
145
1
    throw Alloc<OSError>(errno);
146
1
  }
147
148
1
  auto* ret = Alloc<List<BigStr*>>();
149
34
  while (true) {
150
34
    errno = 0;
151
34
    struct dirent* ep = readdir(dirp);
152
34
    if (ep == NULL) {
153
1
      if (errno != 0) {
154
0
        closedir(dirp);
155
0
        throw Alloc<OSError>(errno);
156
0
      }
157
1
      break;  // no more files
158
1
    }
159
    // Skip . and ..
160
33
    int name_len = strlen(ep->d_name);
161
33
    if (ep->d_name[0] == '.' &&
162
33
        (name_len == 1 || (ep->d_name[1] == '.' && name_len == 2))) {
163
2
      continue;
164
2
    }
165
31
    ret->append(StrFromC(ep->d_name, name_len));
166
31
  }
167
168
1
  closedir(dirp);
169
170
1
  return ret;
171
1
}
172
173
}  // namespace posix
174
175
namespace time_ {
176
177
1
void tzset() {
178
  // No error case: no return value
179
1
  ::tzset();
180
1
}
181
182
1
time_t time() {
183
1
  time_t result = ::time(nullptr);
184
1
  if (result < 0) {
185
0
    throw Alloc<IOError>(errno);
186
0
  }
187
1
  return result;
188
1
}
189
190
// NOTE(Jesse): time_t is specified to be an arithmetic type by C++. On most
191
// systems it's a 64-bit integer.  64 bits is used because 32 will overflow in
192
// 2038.  Someone on a committee somewhere thought of that when moving to
193
// 64-bit architectures to prevent breaking ABI again; on 32-bit systems it's
194
// usually 32 bits.  Point being, using anything but the time_t typedef here
195
// could (unlikely, but possible) produce weird behavior.
196
0
time_t localtime(time_t ts) {
197
  // localtime returns a pointer to a static buffer
198
0
  tm* loc_time = ::localtime(&ts);
199
200
0
  time_t result = mktime(loc_time);
201
0
  if (result < 0) {
202
0
    throw Alloc<IOError>(errno);
203
0
  }
204
0
  return result;
205
0
}
206
207
3
BigStr* strftime(BigStr* s, time_t ts) {
208
3
  tm* loc_time = ::localtime(&ts);
209
210
3
  const int max_len = 1024;
211
3
  BigStr* result = OverAllocatedStr(max_len);
212
3
  int n = strftime(result->data(), max_len, s->data_, loc_time);
213
3
  if (n == 0) {
214
    // bash silently truncates on large format string like
215
    //   printf '%(%Y)T'
216
    // Oil doesn't mask errors
217
    // Leaving out location info points to 'printf' builtin
218
219
0
    e_die(StrFromC("strftime() result exceeds 1024 bytes"));
220
0
  }
221
3
  result->MaybeShrink(n);
222
3
  return result;
223
3
}
224
225
1
void sleep(int seconds) {
226
1
  ::sleep(seconds);
227
1
}
228
229
}  // namespace time_