Signed-off-by: David Goulet <dgoulet@efficios.com>
#include <assert.h>
#include <errno.h>
+#include <limits.h>
#include <unistd.h>
#include "readwrite.h"
assert(buf);
+ /*
+ * Deny a read count that can be bigger then the returned value max size.
+ * This makes the function to never return an overflow value.
+ */
+ if (count > SSIZE_MAX) {
+ return -EINVAL;
+ }
+
do {
ret = read(fd, buf + i, count - i);
if (ret < 0) {
assert(buf);
+ /*
+ * Deny a write count that can be bigger then the returned value max size.
+ * This makes the function to never return an overflow value.
+ */
+ if (count > SSIZE_MAX) {
+ return -EINVAL;
+ }
+
do {
ret = write(fd, buf + i, count - i);
if (ret < 0) {