/*-*- 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                              │
│                                                                              │
│ 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/bits/bits.h"
#include "libc/calls/calls.h"
#include "libc/calls/internal.h"
#include "libc/calls/struct/iovec.h"
#include "libc/dce.h"
#include "libc/errno.h"
#include "libc/macros.h"
#include "libc/sysv/consts/iov.h"
#include "libc/sysv/errfuns.h"

#define __NR_preadv_linux 0x0127

/**
 * Reads data from multiple buffers from file descriptor at offset.
 *
 * @param count is recommended to be 16 or fewer; if it exceeds IOV_MAX
 *     then the extra buffers are simply ignored
 * @return number of bytes actually read, or -1 w/ errno
 * @asyncsignalsafe
 * @vforksafe
 */
ssize_t preadv(int fd, struct iovec *iovec, int count, int64_t off) {
  static bool once, demodernize;
  int olderr;
  ssize_t rc;
  if (!count) return 0;
  if ((count = MIN(count, IOV_MAX)) < 0) return einval();

  /*
   * NT, XNU, and 2007-era Linux don't support this system call.
   */
  if (!once) {
    once = true;
    if (IsModeDbg() || (IsLinux() && iovec->iov_len >= __NR_preadv_linux)) {
      /*
       * Read size is too large to detect older kernels safely without
       * introducing nontrivial mechanics. We'll try again later.
       */
      once = false;
      demodernize = true;
    } else {
      olderr = errno;
      rc = sys_preadv(fd, iovec, count, off, off);
      if (rc == -1 && errno == ENOSYS) {
        errno = olderr;
        demodernize = true;
      } else if (IsLinux() && rc == __NR_preadv_linux /*RHEL5:CVE-2010-3301*/) {
        demodernize = true;
      } else {
        return rc;
      }
    }
  }

  if (!demodernize) {
    return sys_preadv(fd, iovec, count, off, off);
  } else {
    return pread(fd, iovec[0].iov_base, iovec[0].iov_len, off);
  }
}