Commit | Line | Data |
---|---|---|
33b14136 | 1 | /* |
ab5be9fa | 2 | * Copyright (C) 2013 Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
33b14136 | 3 | * |
ab5be9fa | 4 | * SPDX-License-Identifier: LGPL-2.1-only |
33b14136 | 5 | * |
33b14136 MD |
6 | */ |
7 | ||
6c1c0768 | 8 | #define _LGPL_SOURCE |
6cd525e8 | 9 | #include <assert.h> |
aeb16260 | 10 | #include <errno.h> |
636ae5db | 11 | #include <limits.h> |
aeb16260 DG |
12 | #include <unistd.h> |
13 | ||
33b14136 MD |
14 | #include "readwrite.h" |
15 | ||
16 | /* | |
17 | * lttng_read and lttng_write take care of EINTR and partial read/write. | |
18 | * Upon success, they return the "count" received as parameter. | |
19 | * They can return a negative value if an error occurs. | |
20 | * If a value lower than the requested "count" is returned, it means an | |
83f4233d | 21 | * error occurred. |
33b14136 MD |
22 | * The error can be checked by querying errno. |
23 | */ | |
73ec1cf9 | 24 | LTTNG_HIDDEN |
33b14136 MD |
25 | ssize_t lttng_read(int fd, void *buf, size_t count) |
26 | { | |
27 | size_t i = 0; | |
28 | ssize_t ret; | |
29 | ||
aeb16260 DG |
30 | assert(buf); |
31 | ||
636ae5db DG |
32 | /* |
33 | * Deny a read count that can be bigger then the returned value max size. | |
34 | * This makes the function to never return an overflow value. | |
35 | */ | |
36 | if (count > SSIZE_MAX) { | |
37 | return -EINVAL; | |
38 | } | |
39 | ||
33b14136 | 40 | do { |
6cd525e8 | 41 | ret = read(fd, buf + i, count - i); |
33b14136 MD |
42 | if (ret < 0) { |
43 | if (errno == EINTR) { | |
44 | continue; /* retry operation */ | |
45 | } else { | |
46 | goto error; | |
47 | } | |
48 | } | |
49 | i += ret; | |
50 | assert(i <= count); | |
51 | } while (count - i > 0 && ret > 0); | |
52 | return i; | |
53 | ||
54 | error: | |
55 | if (i == 0) { | |
56 | return -1; | |
57 | } else { | |
58 | return i; | |
59 | } | |
60 | } | |
61 | ||
73ec1cf9 | 62 | LTTNG_HIDDEN |
33b14136 MD |
63 | ssize_t lttng_write(int fd, const void *buf, size_t count) |
64 | { | |
65 | size_t i = 0; | |
66 | ssize_t ret; | |
67 | ||
aeb16260 DG |
68 | assert(buf); |
69 | ||
636ae5db DG |
70 | /* |
71 | * Deny a write count that can be bigger then the returned value max size. | |
72 | * This makes the function to never return an overflow value. | |
73 | */ | |
74 | if (count > SSIZE_MAX) { | |
75 | return -EINVAL; | |
76 | } | |
77 | ||
33b14136 | 78 | do { |
6cd525e8 | 79 | ret = write(fd, buf + i, count - i); |
33b14136 MD |
80 | if (ret < 0) { |
81 | if (errno == EINTR) { | |
82 | continue; /* retry operation */ | |
83 | } else { | |
84 | goto error; | |
85 | } | |
86 | } | |
87 | i += ret; | |
88 | assert(i <= count); | |
89 | } while (count - i > 0 && ret > 0); | |
90 | return i; | |
91 | ||
92 | error: | |
93 | if (i == 0) { | |
94 | return -1; | |
95 | } else { | |
96 | return i; | |
97 | } | |
98 | } |