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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
|
/* SPDX-License-Identifier: GPL-2.0 */
/** \file fd.c Helper functions for file descriptor handling. */
#include <sys/types.h>
#include <dirent.h>
#include <sys/mman.h>
#include "para.h"
#include "error.h"
#include "string.h"
#include "fd.h"
/**
* Write an array of buffers, handling non-fatal errors.
*
* \param fd The file descriptor to write to.
* \param iov Pointer to one or more buffers.
* \param iovcnt The number of buffers.
*
* EAGAIN, EWOULDBLOCK and EINTR are not considered error conditions. If a
* write operation fails with EAGAIN or EWOULDBLOCK, the number of bytes that
* have been written so far is returned. In the EINTR case the operation is
* retried. Short writes are handled by issuing a subsequent write operation
* for the remaining part.
*
* \return Negative on fatal errors, number of bytes written else.
*
* For blocking file descriptors, this function returns either the sum of all
* buffer sizes or a negative error code which indicates the fatal error that
* caused a write call to fail.
*
* For nonblocking file descriptors there is a third possibility: Any
* non-negative return value less than the sum of the buffer sizes indicates
* that a write operation returned EAGAIN/EWOULDBLOCK.
*
* \sa writev(2), \ref xwrite().
*/
int xwritev(int fd, struct iovec *iov, int iovcnt)
{
size_t written = 0;
int i;
struct iovec saved_iov, *curiov;
i = 0;
curiov = iov;
saved_iov = *curiov;
while (i < iovcnt && curiov->iov_len > 0) {
ssize_t ret = writev(fd, curiov, iovcnt - i);
if (ret >= 0) {
written += ret;
while (ret > 0) {
if (ret < curiov->iov_len) {
curiov->iov_base += ret;
curiov->iov_len -= ret;
break;
}
ret -= curiov->iov_len;
*curiov = saved_iov;
i++;
if (i >= iovcnt)
return written;
curiov++;
saved_iov = *curiov;
}
continue;
}
if (errno == EINTR)
/*
* The write() call was interrupted by a signal before
* any data was written. Try again.
*/
continue;
if (errno == EAGAIN || errno == EWOULDBLOCK)
/*
* We don't consider this an error. Note that POSIX
* allows either error to be returned, and does not
* require these constants to have the same value.
*/
return written;
/* fatal error */
return -ERRNO_TO_PARA_ERROR(errno);
}
return written;
}
/**
* Write a buffer to a file descriptor, re-writing on short writes.
*
* \param fd The file descriptor.
* \param buf The buffer to write.
* \param len The number of bytes to write.
*
* This is a simple wrapper for \ref xwritev().
*
* \return The return value of the underlying call to \ref xwritev().
*/
int xwrite(int fd, const void *buf, size_t len)
{
struct iovec iov = {.iov_base = (void *)buf, .iov_len = len};
return xwritev(fd, &iov, 1);
}
/**
* Write to a file descriptor, fail on short writes.
*
* \param fd The file descriptor.
* \param buf The buffer to be written.
* \param len The length of the buffer.
*
* For blocking file descriptors this function behaves identical to \ref
* xwrite(). For non-blocking file descriptors it returns -E_SHORT_WRITE
* (rather than a value less than len) if not all data could be written.
*
* \return Number of bytes written on success, negative error code else.
*/
int write_all(int fd, const void *buf, size_t len)
{
int ret = xwrite(fd, buf, len);
if (ret < 0)
return ret;
if (ret != len) {
PARA_CRIT_LOG("wrote only %d/%zu\n", ret, len);
return -E_SHORT_WRITE;
}
return ret;
}
/**
* A fprintf-like function for raw file descriptors.
*
* This function creates a string buffer according to the given format and
* writes this buffer to a file descriptor.
*
* \param fd The file descriptor.
* \param fmt A format string.
*
* The difference to fprintf(3) is that the first argument is a file
* descriptor, not a FILE pointer. This function does not rely on stdio.
*
* \return The return value of the underlying call to \ref write_all().
*
* \sa fprintf(3), \ref xvasprintf().
*/
__printf_2_3 int write_va_buffer(int fd, const char *fmt, ...)
{
char *msg;
int ret;
va_list ap;
va_start(ap, fmt);
ret = xvasprintf(&msg, fmt, ap);
va_end(ap);
ret = write_all(fd, msg, ret);
free(msg);
return ret;
}
/**
* Read from a non-blocking file descriptor into multiple buffers.
*
* \param fd The file descriptor to read from.
* \param iov Scatter/gather array used in readv().
* \param iovcnt Number of elements in \a iov.
* \param num_bytes Result pointer. Contains the number of bytes read from \a fd.
*
* This function tries to read up to sz bytes from fd, where sz is the sum of
* the lengths of all vectors in iov. Like \ref xwrite(), EAGAIN and EINTR are
* not considered error conditions. However, EOF is.
*
* \return Zero or a negative error code. If the underlying call to readv(2)
* returned zero (indicating an end of file condition) or failed for some
* reason other than EAGAIN or EINTR, a negative error code is returned.
*
* In any case, \a num_bytes contains the number of bytes that have been
* successfully read from \a fd (zero if the first readv() call failed with
* EAGAIN). Note that even if the function returns negative, some data might
* have been read before the error occurred. In this case \a num_bytes is
* positive.
*
* \sa \ref xwrite(), read(2), readv(2).
*/
int readv_nonblock(int fd, struct iovec *iov, int iovcnt, size_t *num_bytes)
{
int ret, i, j;
*num_bytes = 0;
for (i = 0, j = 0; i < iovcnt;) {
/* fix up the first iov */
assert(j < iov[i].iov_len);
iov[i].iov_base += j;
iov[i].iov_len -= j;
ret = readv(fd, iov + i, iovcnt - i);
iov[i].iov_base -= j;
iov[i].iov_len += j;
if (ret == 0)
return -E_EOF;
if (ret < 0) {
if (errno == EAGAIN || errno == EINTR)
return 0;
return -ERRNO_TO_PARA_ERROR(errno);
}
*num_bytes += ret;
while (ret > 0) {
if (ret < iov[i].iov_len - j) {
j += ret;
break;
}
ret -= iov[i].iov_len - j;
j = 0;
if (++i >= iovcnt)
break;
}
}
return 0;
}
/**
* Read from a non-blocking file descriptor into a single buffer.
*
* \param fd The file descriptor to read from.
* \param buf The buffer to read data to.
* \param sz The size of \a buf.
* \param num_bytes \see \ref readv_nonblock().
*
* This is a simple wrapper for readv_nonblock() which uses an iovec with a single
* buffer.
*
* \return The return value of the underlying call to readv_nonblock().
*/
int read_nonblock(int fd, void *buf, size_t sz, size_t *num_bytes)
{
struct iovec iov = {.iov_base = buf, .iov_len = sz};
return readv_nonblock(fd, &iov, 1, num_bytes);
}
/**
* Read a buffer and compare its contents to a string, ignoring case.
*
* \param fd The file descriptor to read from.
* \param expectation The expected string to compare to.
*
* The given file descriptor is expected to be in non-blocking mode. The string
* comparison is performed using strncasecmp(3).
*
* \return Zero if no data was available, positive if a buffer was read whose
* contents compare as equal to the expected string, negative otherwise.
* Possible errors: (a) not enough data was read, (b) the buffer contents
* compared as non-equal, (c) a read error occurred. In the first two cases,
* -E_READ_PATTERN is returned. In the read error case the (negative) return
* value of the underlying call to \ref read_nonblock() is returned.
*/
int read_and_compare(int fd, const char *expectation)
{
size_t n, len = strlen(expectation);
char *buf = alloc(len + 1);
int ret = read_nonblock(fd, buf, len, &n);
if (ret < 0)
goto out;
buf[n] = '\0';
ret = 0;
if (n == 0)
goto out;
ret = -E_READ_PATTERN;
if (n < len)
goto out;
if (strncasecmp(buf, expectation, len) != 0)
goto out;
ret = 1;
out:
free(buf);
return ret;
}
/**
* Set a file descriptor to blocking mode.
*
* \param fd The file descriptor.
*
* \return Standard.
*/
__must_check int mark_fd_blocking(int fd)
{
int flags = fcntl(fd, F_GETFL);
if (flags < 0)
return -ERRNO_TO_PARA_ERROR(errno);
flags = fcntl(fd, F_SETFL, ((long)flags) & ~O_NONBLOCK);
if (flags < 0)
return -ERRNO_TO_PARA_ERROR(errno);
return 1;
}
/**
* Set a file descriptor to non-blocking mode.
*
* \param fd The file descriptor.
*
* \return Standard.
*/
__must_check int mark_fd_nonblocking(int fd)
{
int flags = fcntl(fd, F_GETFL);
if (flags < 0)
return -ERRNO_TO_PARA_ERROR(errno);
flags = fcntl(fd, F_SETFL, ((long)flags) | O_NONBLOCK);
if (flags < 0)
return -ERRNO_TO_PARA_ERROR(errno);
return 1;
}
/**
* Wrapper for mmap(2) with sanitized return value.
*
* This special-cases the "length == 0" and "map failed" cases.
*
* \param length Number of bytes to mmap.
* \param prot Passed to mmap().
* \param flags Passed to mmap().
* \param fd Passed to mmap().
* \param map Result pointer.
*
* \return -E_EMPTY if length is zero, the negative paraslash error code
* which corresponds to errno if the mmap call failed, one otherwise.
*/
int para_mmap(size_t length, int prot, int flags, int fd, void **map)
{
/*
* If the file is empty, mmap() returns EINVAL (Invalid argument). This
* error is common enough to spend an extra error code which explicitly
* states the problem.
*/
if (length == 0)
return -E_EMPTY;
*map = mmap(NULL, length, prot, flags, fd, (off_t)0);
return *map == MAP_FAILED? -ERRNO_TO_PARA_ERROR(errno) : 1;
}
/**
* Wrapper for the open(2) system call.
*
* \param path The filename.
* \param flags The usual open(2) flags.
* \param mode Specifies the permissions to use.
*
* The mode parameter must be specified when O_CREAT is in the flags, and is
* ignored otherwise.
*
* \return The file descriptor on success, negative on errors.
*
* \sa open(2).
*/
int para_open(const char *path, int flags, mode_t mode)
{
int ret = open(path, flags, mode);
if (ret >= 0)
return ret;
return -ERRNO_TO_PARA_ERROR(errno);
}
/**
* Create the $HOME/.paraslash directory, don't fail if it already exists.
*
* This function passes the fixed mode value 0777 to mkdir(3) (which consults
* the file creation mask and restricts this value). The function either
* succeeds or terminates the calling process.
*
* \return The expansion of $HOME/.paraslash, must be freed by the caller.
*/
char *create_dot_paraslash(void)
{
char *path = make_message("%s/.paraslash", para_homedir());
/*
* We call opendir(3) rather than relying on stat(2) because this way
* we don't need extra code to get the symlink case right.
*/
DIR *dir = opendir(path);
if (dir) {
closedir(dir);
return path;
}
if (errno != ENOENT || mkdir(path, 0777) != 0) {
PARA_EMERG_LOG("%s: %s\n", path, strerror(errno));
exit(EXIT_FAILURE);
}
return path;
}
/**
* Open a file and map it into memory.
*
* \param path Name of the regular file to map.
* \param open_mode Either \p O_RDONLY or \p O_RDWR.
* \param map On success, the mapping is returned here.
* \param size size of the mapping.
* \param fd_ptr The file descriptor of the mapping.
*
* If \a fd_ptr is \p NULL, the file descriptor resulting from the underlying
* open call is closed after mmap(). Otherwise the file is kept open and the
* file descriptor is returned in \a fd_ptr.
*
* \return Standard.
*
* \sa para_open(), mmap(2).
*/
int mmap_full_file(const char *path, int open_mode, void **map,
size_t *size, int *fd_ptr)
{
int fd, ret, mmap_prot, mmap_flags;
struct stat file_status;
if (open_mode == O_RDONLY) {
mmap_prot = PROT_READ;
mmap_flags = MAP_PRIVATE;
} else {
mmap_prot = PROT_READ | PROT_WRITE;
mmap_flags = MAP_SHARED;
}
ret = para_open(path, open_mode, 0);
if (ret < 0)
return ret;
fd = ret;
if (fstat(fd, &file_status) < 0) {
ret = -ERRNO_TO_PARA_ERROR(errno);
goto out;
}
*size = file_status.st_size;
/*
* If fd refers to a directory, mmap() returns ENODEV (No such device),
* at least on Linux. "Is a directory" seems to be more to the point.
*/
ret = -ERRNO_TO_PARA_ERROR(EISDIR);
if (S_ISDIR(file_status.st_mode))
goto out;
ret = para_mmap(*size, mmap_prot, mmap_flags, fd, map);
out:
if (ret < 0 || !fd_ptr)
close(fd);
else
*fd_ptr = fd;
return ret;
}
/**
* A wrapper for munmap(2).
*
* \param start The start address of the memory mapping.
* \param length The size of the mapping.
*
* If NULL is passed as the start address, the length value is ignored and the
* function does nothing.
*
* \return Zero if NULL was passed, one if the memory area was successfully
* unmapped, a negative error code otherwise.
*
* \sa munmap(2), \ref mmap_full_file().
*/
int para_munmap(void *start, size_t length)
{
if (!start)
return 0;
if (munmap(start, length) >= 0)
return 1;
return -ERRNO_TO_PARA_ERROR(errno);
}
/**
* Simple wrapper for poll(2).
*
* It calls poll(2) and starts over if the call was interrupted by a signal.
*
* \param fds See poll(2).
* \param nfds See poll(2).
* \param timeout See poll(2).
*
* \return The return value of the underlying poll() call on success, the
* negative paraslash error code on errors.
*
* All arguments are passed verbatim to poll(2).
*/
int xpoll(struct pollfd *fds, nfds_t nfds, int timeout)
{
int ret;
do
ret = poll(fds, nfds, timeout);
while (ret < 0 && errno == EINTR);
return ret < 0? -ERRNO_TO_PARA_ERROR(errno) : ret;
}
/**
* Check a file descriptor for readability.
*
* \param fd The file descriptor.
*
* \return positive if fd is ready for reading, zero if it isn't, negative if
* an error occurred.
*
* \sa \ref write_ok().
*/
int read_ok(int fd)
{
struct pollfd pfd = {.fd = fd, .events = POLLIN};
int ret = xpoll(&pfd, 1, 0);
return ret < 0? ret : pfd.revents & POLLIN;
}
/**
* Check a file descriptor for writability.
*
* \param fd The file descriptor.
*
* \return positive if fd is ready for writing, zero if it isn't, negative if
* an error occurred.
*
* \sa \ref read_ok().
*/
int write_ok(int fd)
{
struct pollfd pfd = {.fd = fd, .events = POLLOUT};
int ret = xpoll(&pfd, 1, 0);
return ret < 0? ret : pfd.revents & POLLOUT;
}
/**
* Ensure that file descriptors 0, 1, and 2 are valid.
*
* Common approach that opens /dev/null until it gets a file descriptor greater
* than two.
*/
void valid_fd_012(void)
{
while (1) {
int fd = open("/dev/null", O_RDWR);
if (fd < 0)
exit(EXIT_FAILURE);
if (fd > 2) {
close(fd);
break;
}
}
}
|