Fix writev() on the New Technology (#117)

This commit is contained in:
Justine Tunney
2021-03-09 11:21:08 -08:00
parent 6cd1037692
commit 83d0c3b870
8 changed files with 113 additions and 31 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -26,35 +26,37 @@
#include "libc/nt/struct/overlapped.h" #include "libc/nt/struct/overlapped.h"
#include "libc/sysv/errfuns.h" #include "libc/sysv/errfuns.h"
static textwindows ssize_t sys_read_nt_impl(struct Fd *fd, void *data,
size_t size, ssize_t offset) {
uint32_t got;
struct NtOverlapped overlap;
if (ReadFile(fd->handle, data, clampio(size), &got,
offset2overlap(offset, &overlap))) {
return got;
} else if (GetLastError() == kNtErrorBrokenPipe) {
return 0;
} else {
return __winerr();
}
}
textwindows ssize_t sys_read_nt(struct Fd *fd, const struct iovec *iov, textwindows ssize_t sys_read_nt(struct Fd *fd, const struct iovec *iov,
size_t iovlen, ssize_t opt_offset) { size_t iovlen, ssize_t opt_offset) {
ssize_t rc;
uint32_t size;
size_t i, total; size_t i, total;
uint32_t got, size;
struct NtOverlapped overlap;
while (iovlen && !iov[0].iov_len) iov++, iovlen--; while (iovlen && !iov[0].iov_len) iov++, iovlen--;
if (iovlen) { if (iovlen) {
for (total = i = 0; i < iovlen; ++i) { for (total = i = 0; i < iovlen; ++i) {
size = clampio(iov[i].iov_len); if (!iov[i].iov_len) continue;
if (ReadFile(fd->handle, iov[i].iov_base, size, &got, rc = sys_read_nt_impl(fd, iov[i].iov_base, iov[i].iov_len, opt_offset);
offset2overlap(opt_offset, &overlap))) { if (rc == -1) return -1;
total += got; total += rc;
if (opt_offset != -1) opt_offset += got; if (opt_offset != -1) opt_offset += rc;
if (got < iov[i].iov_len) break; if (rc < iov[i].iov_len) break;
} else if (GetLastError() == kNtErrorBrokenPipe) {
break; /* read() doesn't EPIPE lool */
} else {
return __winerr();
}
} }
return total; return total;
} else { } else {
if (ReadFile(fd->handle, NULL, 0, &got, return sys_read_nt_impl(fd, NULL, 0, opt_offset);
offset2overlap(opt_offset, &overlap))) {
return got;
} else if (GetLastError() == kNtErrorBrokenPipe) {
return 0;
} else {
return __winerr();
}
} }
} }

View File

@ -25,8 +25,22 @@
#include "libc/nt/struct/overlapped.h" #include "libc/nt/struct/overlapped.h"
#include "libc/sysv/errfuns.h" #include "libc/sysv/errfuns.h"
static textwindows ssize_t sys_write_nt_impl(struct Fd *fd, void *data,
size_t size, ssize_t offset) {
uint32_t sent;
struct NtOverlapped overlap;
if (WriteFile(fd->handle, data, clampio(size), &sent,
offset2overlap(offset, &overlap))) {
/* TODO(jart): Trigger SIGPIPE on kNtErrorBrokenPipe */
return sent;
} else {
return __winerr();
}
}
textwindows ssize_t sys_write_nt(struct Fd *fd, const struct iovec *iov, textwindows ssize_t sys_write_nt(struct Fd *fd, const struct iovec *iov,
size_t iovlen, ssize_t opt_offset) { size_t iovlen, ssize_t opt_offset) {
ssize_t rc;
size_t i, total; size_t i, total;
uint32_t size, wrote; uint32_t size, wrote;
struct NtOverlapped overlap; struct NtOverlapped overlap;
@ -34,15 +48,11 @@ textwindows ssize_t sys_write_nt(struct Fd *fd, const struct iovec *iov,
if (iovlen) { if (iovlen) {
for (total = i = 0; i < iovlen; ++i) { for (total = i = 0; i < iovlen; ++i) {
if (!iov[i].iov_len) continue; if (!iov[i].iov_len) continue;
size = clampio(iov[0].iov_len); rc = sys_write_nt_impl(fd, iov[i].iov_base, iov[i].iov_len, opt_offset);
if (WriteFile(fd->handle, iov[i].iov_base, size, &wrote, if (rc == -1) return -1;
offset2overlap(opt_offset, &overlap))) { total += rc;
total += wrote; if (opt_offset != -1) opt_offset += rc;
if (opt_offset != -1) opt_offset += wrote; if (rc < iov[i].iov_len) break;
if (wrote < iov[i].iov_len) break;
} else {
return __winerr();
}
} }
if (!total) assert(!__iovec_size(iov, iovlen)); if (!total) assert(!__iovec_size(iov, iovlen));
return total; return total;

View File

@ -0,0 +1,70 @@
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
╞══════════════════════════════════════════════════════════════════════════════╡
│ Copyright 2021 Justine Alexandra Roberts Tunney │
│ │
│ Permission to use, copy, modify, and/or distribute this software for │
│ any purpose with or without fee is hereby granted, provided that the │
│ above copyright notice and this permission notice appear in all copies. │
│ │
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
│ PERFORMANCE OF THIS SOFTWARE. │
╚─────────────────────────────────────────────────────────────────────────────*/
#include "libc/calls/calls.h"
#include "libc/calls/struct/iovec.h"
#include "libc/errno.h"
#include "libc/macros.internal.h"
#include "libc/sock/sock.h"
#include "libc/sysv/consts/o.h"
#include "libc/testlib/testlib.h"
char testlib_enable_tmp_setup_teardown;
TEST(writev, test) {
int fd;
char ba[1] = "a";
char bb[1] = "b";
char bc[2] = "cd";
struct iovec iov[] = {{"", 0}, {ba, 1}, {NULL, 0}, {bb, 1}, {bc, 2}};
ASSERT_NE(-1, (fd = open("file", O_RDWR | O_CREAT | O_TRUNC, 0644)));
EXPECT_EQ(4, writev(fd, iov, ARRAYLEN(iov)));
EXPECT_EQ(1, lseek(fd, 1, SEEK_SET));
EXPECT_EQ(3, readv(fd, iov, ARRAYLEN(iov)));
EXPECT_EQ('b', ba[0]);
EXPECT_EQ('c', bb[0]);
EXPECT_EQ('d', bc[0]);
EXPECT_NE(-1, close(fd));
}
TEST(writev, big_fullCompletion) {
int fd;
char *ba = malloc(2 * 1024 * 1024);
char *bb = malloc(2 * 1024 * 1024);
char *bc = malloc(2 * 1024 * 1024);
struct iovec iov[] = {
{"", 0}, //
{ba, 2 * 1024 * 1024}, //
{NULL, 0}, //
{bb, 2 * 1024 * 1024}, //
{bc, 2 * 1024 * 1024}, //
};
ASSERT_NE(-1, (fd = open("file", O_RDWR | O_CREAT | O_TRUNC, 0644)));
EXPECT_EQ(6 * 1024 * 1024, writev(fd, iov, ARRAYLEN(iov)));
EXPECT_NE(-1, close(fd));
}
TEST(writev, empty_stillPerformsIoOperation) {
int fd;
struct iovec iov[] = {{"", 0}, {NULL, 0}};
ASSERT_NE(-1, touch("file", 0644));
ASSERT_NE(-1, (fd = open("file", O_RDONLY)));
EXPECT_EQ(-1, writev(fd, iov, ARRAYLEN(iov)));
EXPECT_EQ(-1, writev(fd, NULL, 0));
EXPECT_NE(-1, close(fd));
}

View File

@ -61,7 +61,7 @@ const char kTinyLinuxExit[128] = {
0x7f, 0x45, 0x4c, 0x46, 0x02, 0x01, 0x01, 0x00, // ⌂ELF☻☺☺  0x7f, 0x45, 0x4c, 0x46, 0x02, 0x01, 0x01, 0x00, // ⌂ELF☻☺☺ 
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, //          0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, //         
0x02, 0x00, 0x3e, 0x00, 0x01, 0x00, 0x00, 0x00, // ☻ > ☺    0x02, 0x00, 0x3e, 0x00, 0x01, 0x00, 0x00, 0x00, // ☻ > ☺   
0x78, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, // x @      0x78, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, // x @     
0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // @        0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // @       
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, //          0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, //         
0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x38, 0x00, //     @ 8  0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x38, 0x00, //     @ 8