aboutsummaryrefslogtreecommitdiff
path: root/lib/portability.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2020-06-01 03:29:47 -0500
committerRob Landley <rob@landley.net>2020-06-01 03:29:47 -0500
commita0849e8645a197179a5411a2e5b6478a38feff1f (patch)
tree17547ba514dcb5523dbf3758b6cf404dc546866f /lib/portability.c
parent9078931262538847f34d2a76c154ecdd5ad0efe1 (diff)
downloadtoybox-a0849e8645a197179a5411a2e5b6478a38feff1f.tar.gz
Use copy_file_range() when available.
Diffstat (limited to 'lib/portability.c')
-rw-r--r--lib/portability.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/portability.c b/lib/portability.c
index 0b6a2d9b..91c01900 100644
--- a/lib/portability.c
+++ b/lib/portability.c
@@ -606,3 +606,33 @@ int get_block_device_size(int fd, unsigned long long* size)
return (ioctl(fd, BLKGETSIZE64, size) >= 0);
}
#endif
+
+// TODO copy_file_range
+// Return bytes copied from in to out. If bytes <0 copy all of in to out.
+// If consuemd isn't null, amount read saved there (return is written or error)
+long long sendfile_len(int in, int out, long long bytes, long long *consumed)
+{
+ long long total = 0, len, ww;
+
+ if (consumed) *consumed = 0;
+ if (in<0) return 0;
+ while (bytes != total) {
+ ww = 0;
+ len = bytes-total;
+ if (bytes<0 || len>sizeof(libbuf)) len = sizeof(libbuf);
+
+#if CFG_TOYBOX_COPYFILERANGE
+ len = copy_file_range(in, 0, out, 0, bytes, 0);
+#else
+ ww = len = read(in, libbuf, len);
+#endif
+ if (!len && errno==EAGAIN) continue;
+ if (len<1) break;
+ if (consumed) *consumed += len;
+ if (ww && writeall(out, libbuf, len) != len) return -1;
+ total += len;
+ }
+
+ return total;
+}
+