2020-06-15 14:18:57 +00:00
|
|
|
/*-*- 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 2020 Justine Alexandra Roberts Tunney │
|
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ 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. │
|
2020-06-15 14:18:57 +00:00
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ 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. │
|
2020-06-15 14:18:57 +00:00
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
2022-11-06 02:49:41 +00:00
|
|
|
#include "libc/calls/cp.internal.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/calls/internal.h"
|
|
|
|
#include "libc/calls/struct/iovec.h"
|
2022-08-13 20:11:56 +00:00
|
|
|
#include "libc/calls/struct/iovec.internal.h"
|
2022-05-23 22:06:11 +00:00
|
|
|
#include "libc/calls/syscall-sysv.internal.h"
|
2022-09-15 04:29:50 +00:00
|
|
|
#include "libc/calls/syscall_support-sysv.internal.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/dce.h"
|
|
|
|
#include "libc/errno.h"
|
2021-05-14 12:36:58 +00:00
|
|
|
#include "libc/intrin/asan.internal.h"
|
2022-04-21 04:59:25 +00:00
|
|
|
#include "libc/intrin/kprintf.h"
|
2022-08-13 20:11:56 +00:00
|
|
|
#include "libc/intrin/likely.h"
|
2022-09-13 06:10:38 +00:00
|
|
|
#include "libc/intrin/strace.internal.h"
|
2022-08-13 20:11:56 +00:00
|
|
|
#include "libc/intrin/weaken.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/sysv/errfuns.h"
|
2021-03-08 18:07:02 +00:00
|
|
|
#include "libc/zipos/zipos.internal.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
|
2022-04-21 04:59:25 +00:00
|
|
|
static ssize_t Preadv(int fd, struct iovec *iov, int iovlen, int64_t off) {
|
2022-09-15 04:29:50 +00:00
|
|
|
int e, i;
|
|
|
|
size_t got;
|
|
|
|
ssize_t rc, toto;
|
|
|
|
|
|
|
|
if (fd < 0) {
|
|
|
|
return ebadf();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (iovlen < 0) {
|
|
|
|
return einval();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsAsan() && !__asan_is_valid_iov(iov, iovlen)) {
|
|
|
|
return efault();
|
|
|
|
}
|
2021-03-08 18:07:02 +00:00
|
|
|
|
|
|
|
if (fd < g_fds.n && g_fds.p[fd].kind == kFdZip) {
|
2022-09-13 06:10:38 +00:00
|
|
|
return _weaken(__zipos_read)(
|
2021-03-08 18:07:02 +00:00
|
|
|
(struct ZiposHandle *)(intptr_t)g_fds.p[fd].handle, iov, iovlen, off);
|
2022-09-15 04:29:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (IsMetal()) {
|
|
|
|
return espipe(); // must be serial or console if not zipos
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsWindows()) {
|
2021-03-08 18:07:02 +00:00
|
|
|
if (fd < g_fds.n) {
|
|
|
|
return sys_read_nt(g_fds.p + fd, iov, iovlen, off);
|
|
|
|
} else {
|
|
|
|
return ebadf();
|
|
|
|
}
|
|
|
|
}
|
2020-06-15 14:18:57 +00:00
|
|
|
|
2022-09-15 04:29:50 +00:00
|
|
|
while (iovlen && !iov->iov_len) {
|
|
|
|
--iovlen;
|
|
|
|
++iov;
|
2022-04-16 17:40:23 +00:00
|
|
|
}
|
|
|
|
|
2022-09-15 04:29:50 +00:00
|
|
|
if (!iovlen) {
|
|
|
|
return sys_pread(fd, 0, 0, off, off);
|
2020-06-15 14:18:57 +00:00
|
|
|
}
|
|
|
|
|
2022-09-15 04:29:50 +00:00
|
|
|
if (iovlen == 1) {
|
|
|
|
return sys_pread(fd, iov->iov_base, iov->iov_len, off, off);
|
2021-03-08 18:07:02 +00:00
|
|
|
}
|
|
|
|
|
2022-09-15 04:29:50 +00:00
|
|
|
e = errno;
|
|
|
|
rc = sys_preadv(fd, iov, iovlen, off, off);
|
|
|
|
if (rc != -1 || errno != ENOSYS) return rc;
|
|
|
|
errno = e;
|
2021-03-08 18:07:02 +00:00
|
|
|
|
|
|
|
for (toto = i = 0; i < iovlen; ++i) {
|
|
|
|
rc = sys_pread(fd, iov[i].iov_base, iov[i].iov_len, off, off);
|
|
|
|
if (rc == -1) {
|
2022-09-15 04:29:50 +00:00
|
|
|
if (!toto) {
|
|
|
|
toto = -1;
|
2022-10-17 18:02:04 +00:00
|
|
|
} else if (errno != EINTR) {
|
|
|
|
notpossible;
|
2021-03-08 18:07:02 +00:00
|
|
|
}
|
2022-09-15 04:29:50 +00:00
|
|
|
break;
|
2021-03-08 18:07:02 +00:00
|
|
|
}
|
|
|
|
got = rc;
|
|
|
|
toto += got;
|
2022-09-15 04:29:50 +00:00
|
|
|
off += got;
|
2021-03-08 18:07:02 +00:00
|
|
|
if (got != iov[i].iov_len) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return toto;
|
2020-06-15 14:18:57 +00:00
|
|
|
}
|
2022-04-21 04:59:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads with maximum generality.
|
|
|
|
*
|
|
|
|
* @return number of bytes actually read, or -1 w/ errno
|
2022-11-04 08:04:43 +00:00
|
|
|
* @cancellationpoint
|
2022-04-21 04:59:25 +00:00
|
|
|
* @asyncsignalsafe
|
|
|
|
* @vforksafe
|
|
|
|
*/
|
|
|
|
ssize_t preadv(int fd, struct iovec *iov, int iovlen, int64_t off) {
|
|
|
|
ssize_t rc;
|
2022-11-06 02:49:41 +00:00
|
|
|
BEGIN_CANCELLATION_POINT;
|
2022-04-21 04:59:25 +00:00
|
|
|
rc = Preadv(fd, iov, iovlen, off);
|
2022-11-06 02:49:41 +00:00
|
|
|
END_CANCELLATION_POINT;
|
2022-10-12 04:06:27 +00:00
|
|
|
STRACE("preadv(%d, [%s], %d, %'ld) → %'ld% m", fd,
|
|
|
|
DescribeIovec(rc, iov, iovlen), iovlen, off, rc);
|
2022-04-21 04:59:25 +00:00
|
|
|
return rc;
|
|
|
|
}
|