forked from uobikiemukot/yasp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.h
393 lines (313 loc) · 7.58 KB
/
error.h
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
/* See LICENSE for licence details. */
enum error_setting_t {
SLEEP_TIME = 30000, /* sleep time at EAGAIN, EWOULDBLOCK (usec) */
};
/* logging functions */
enum loglevel_t {
DEBUG = 0,
INFO,
WARN,
ERROR,
FATAL,
LOG_LEVEL = INFO,
};
void logging(enum loglevel_t loglevel, char *format, ...)
{
va_list arg;
static const char *loglevel2str[] = {
[DEBUG] = "DEBUG",
[WARN] = "WARN",
[ERROR] = "ERROR",
[FATAL] = "FATAL",
};
/* debug message is available on verbose mode */
if (loglevel < LOG_LEVEL)
return;
fprintf(stderr, ">>%s<<\t", loglevel2str[loglevel]);
va_start(arg, format);
vfprintf(stderr, format, arg);
va_end(arg);
}
/* wrapper of C functions */
int eopen(const char *path, int flag)
{
int fd;
errno = 0;
if ((fd = open(path, flag)) < 0) {
logging(ERROR, "couldn't open \"%s\"\n", path);
logging(ERROR, "open: %s\n", strerror(errno));
}
return fd;
}
int eclose(int fd)
{
int ret;
errno = 0;
if ((ret = close(fd)) < 0)
logging(ERROR, "close: %s\n", strerror(errno));
return ret;
}
int efseek(FILE *stream, long offset, int whence)
{
int ret;
errno = 0;
if ((ret = fseek(stream, offset, whence)) < 0)
logging(ERROR, "fseek: %s\n", strerror(errno));
return ret;
}
FILE *efopen(const char *path, char *mode)
{
FILE *fp;
errno = 0;
if ((fp = fopen(path, mode)) == NULL) {
logging(ERROR, "couldn't open \"%s\"\n", path);
logging(ERROR, "fopen: %s\n", strerror(errno));
}
return fp;
}
int efclose(FILE *fp)
{
int ret;
errno = 0;
if ((ret = fclose(fp)) < 0)
logging(ERROR, "fclose: %s\n", strerror(errno));
return ret;
}
/*
void *emmap(void *addr, size_t len, int prot, int flag, int fd, off_t offset)
{
void *fp;
errno = 0;
if ((fp = mmap(addr, len, prot, flag, fd, offset)) == MAP_FAILED)
logging(ERROR, "mmap: %s\n", strerror(errno));
return fp;
}
int emunmap(void *ptr, size_t len)
{
int ret;
errno = 0;
if ((ret = munmap(ptr, len)) < 0)
logging(ERROR, "munmap: %s\n", strerror(errno));
return ret;
}
void *ecalloc(size_t nmemb, size_t size)
{
void *ptr;
errno = 0;
if ((ptr = calloc(nmemb, size)) == NULL)
logging(ERROR, "calloc: %s\n", strerror(errno));
return ptr;
}
void *erealloc(void *ptr, size_t size)
{
void *new;
errno = 0;
if ((new = realloc(ptr, size)) == NULL)
logging(ERROR, "realloc: %s\n", strerror(errno));
return new;
}
*/
int eselect(int maxfd, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *tv)
{
int ret;
errno = 0;
if ((ret = select(maxfd, readfds, writefds, errorfds, tv)) < 0) {
if (errno == EINTR)
return eselect(maxfd, readfds, writefds, errorfds, tv);
else
logging(ERROR, "select: %s\n", strerror(errno));
}
return ret;
}
size_t efread(void *ptr, size_t size, size_t nmemb, FILE *stream)
{
size_t ret;
errno = 0;
if ((ret = fread(ptr, size, nmemb, stream)) != nmemb)
logging(ERROR, "fread: nmemb (%d) != ret (%d)\n%s\n", nmemb, ret, strerror(errno));
return ret;
}
ssize_t eread(int fd, void *buf, size_t size)
{
ssize_t ret;
errno = 0;
if ((ret = read(fd, buf, size)) < 0) {
if (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK) {
logging(ERROR, "read(): interrupt! (EINTR or EAGAIN or EWOULDBLOCK occured), sleep %d usec\n", SLEEP_TIME);
usleep(SLEEP_TIME);
return eread(fd, buf, size);
} else {
logging(ERROR, "read(): %s\n", strerror(errno));
return ret;
}
}
/*
else if (ret < (ssize_t) size) {
logging(WARN, "request size:%zu read size:%zd, try to read again\n", size, ret);
return eread(fd, (char *) buf + ret, size - ret);
}
*/
return ret;
}
ssize_t ewrite(int fd, const void *buf, size_t size)
{
ssize_t ret;
errno = 0;
if ((ret = write(fd, buf, size)) < 0) {
if (errno == EINTR) {
logging(ERROR, "write: EINTR occurred\n");
return ewrite(fd, buf, size);
} else if (errno == EAGAIN || errno == EWOULDBLOCK) {
logging(ERROR, "write: EAGAIN or EWOULDBLOCK occurred, sleep %d usec\n", SLEEP_TIME);
usleep(SLEEP_TIME);
return ewrite(fd, buf, size);
} else {
logging(ERROR, "write: %s\n", strerror(errno));
return ret;
}
} else if (ret < (ssize_t) size) {
logging(ERROR, "data size:%zu write size:%zd\n", size, ret);
return ewrite(fd, (char *) buf + ret, size - ret);
}
return ret;
}
int esigaction(int signo, struct sigaction *act, struct sigaction *oact)
{
int ret;
errno = 0;
if ((ret = sigaction(signo, act, oact)) < 0)
logging(ERROR, "sigaction: %s\n", strerror(errno));
return ret;
}
int etcgetattr(int fd, struct termios *tm)
{
int ret;
errno = 0;
if ((ret = tcgetattr(fd, tm)) < 0)
logging(ERROR, "tcgetattr: %s\n", strerror(errno));
return ret;
}
int etcsetattr(int fd, int action, const struct termios *tm)
{
int ret;
errno = 0;
if ((ret = tcsetattr(fd, action, tm)) < 0)
logging(ERROR, "tcgetattr: %s\n", strerror(errno));
return ret;
}
int ecfsetispeed(struct termios *tm, speed_t speed)
{
int ret;
errno = 0;
if ((ret = cfsetispeed(tm, speed)) < 0)
logging(ERROR, "cfsetispeed: %s\n", strerror(errno));
return ret;
}
/*
int eopenpty(int *amaster, int *aslave, char *aname,
const struct termios *termp, const struct winsize *winsize)
{
int master;
char *name = NULL;
errno = 0;
if ((master = posix_openpt(O_RDWR | O_NOCTTY)) < 0
|| grantpt(master) < 0
|| unlockpt(master) < 0
|| (name = ptsname(master)) == NULL) {
logging(ERROR, "openpty: %s\n", strerror(errno));
return -1;
}
*amaster = master;
*aslave = eopen(name, O_RDWR | O_NOCTTY);
if (aname)
// XXX: we don't use the slave's name, do nothing
(void) aname;
//strncpy(aname, name, _POSIX_TTY_NAME_MAX - 1);
//snprintf(aname, _POSIX_TTY_NAME_MAX, "%s", name);
if (termp)
etcsetattr(*aslave, TCSAFLUSH, termp);
if (winsize)
ioctl(*aslave, TIOCSWINSZ, winsize);
return 0;
}
pid_t eforkpty(int *amaster, char *name,
const struct termios *termp, const struct winsize *winsize)
{
int master, slave;
pid_t pid;
if (eopenpty(&master, &slave, name, termp, winsize) < 0)
return -1;
errno = 0;
pid = fork();
if (pid < 0) {
logging(ERROR, "fork: %s\n", strerror(errno));
return pid;
} else if (pid == 0) { // child
close(master);
setsid();
dup2(slave, STDIN_FILENO);
dup2(slave, STDOUT_FILENO);
dup2(slave, STDERR_FILENO);
// XXX: this ioctl may fail in Mac OS X
// ref http://www.opensource.apple.com/source/Libc/Libc-825.25/util/pty.c?txt
if (ioctl(slave, TIOCSCTTY, NULL))
logging(WARN, "ioctl: TIOCSCTTY faild\n");
close(slave);
return 0;
}
// parent
close(slave);
*amaster = master;
return pid;
}
int esetenv(const char *name, const char *value, int overwrite)
{
int ret;
errno = 0;
if ((ret = setenv(name, value, overwrite)) < 0)
logging(ERROR, "setenv: %s\n", strerror(errno));
return ret;
}
int eexecvp(const char *file, const char *argv[])
{
int ret;
errno = 0;
if ((ret = execvp(file, (char * const *) argv)) < 0)
logging(ERROR, "execvp: %s\n", strerror(errno));
return ret;
}
int eexecl(const char *path)
{
int ret;
errno = 0;
// XXX: assume only one argument is given
if ((ret = execl(path, path, NULL)) < 0)
logging(ERROR, "execl: %s\n", strerror(errno));
return ret;
}
int esetitimer(int which, const struct itimerval *restrict value, struct itimerval *restrict ovalue)
{
int ret;
errno = 0;
if ((ret = setitimer(which, value, ovalue)) < 0)
logging(ERROR, "setitimer: %s\n", strerror(errno));
return ret;
}
long estrtol(const char *nptr, char **endptr, int base)
{
long int ret;
errno = 0;
ret = strtol(nptr, endptr, base);
if (ret == LONG_MIN || ret == LONG_MAX) {
logging(ERROR, "strtol: %s\n", strerror(errno));
return 0;
}
return ret;
}
int dec2num(char *str)
{
if (str == NULL)
return 0;
return estrtol(str, NULL, 10);
}
*/