Blame sysdeps/posix/readv.c

Packit 6c4009
/* Copyright (C) 1991-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#include <stdlib.h>
Packit 6c4009
#include <unistd.h>
Packit 6c4009
#include <string.h>
Packit 6c4009
#include <limits.h>
Packit 6c4009
#include <stdbool.h>
Packit 6c4009
#include <sys/param.h>
Packit 6c4009
#include <sys/uio.h>
Packit 6c4009
#include <errno.h>
Packit 6c4009
Packit 6c4009
Packit 6c4009
static void
Packit 6c4009
ifree (char **ptrp)
Packit 6c4009
{
Packit 6c4009
  free (*ptrp);
Packit 6c4009
}
Packit 6c4009
Packit 6c4009
/* Read data from file descriptor FD, and put the result in the
Packit 6c4009
   buffers described by VECTOR, which is a vector of COUNT 'struct iovec's.
Packit 6c4009
   The buffers are filled in the order specified.
Packit 6c4009
   Operates just like 'read' (see <unistd.h>) except that data are
Packit 6c4009
   put in VECTOR instead of a contiguous buffer.  */
Packit 6c4009
ssize_t
Packit 6c4009
__readv (int fd, const struct iovec *vector, int count)
Packit 6c4009
{
Packit 6c4009
  /* Find the total number of bytes to be read.  */
Packit 6c4009
  size_t bytes = 0;
Packit 6c4009
  for (int i = 0; i < count; ++i)
Packit 6c4009
    {
Packit 6c4009
      /* Check for ssize_t overflow.  */
Packit 6c4009
      if (SSIZE_MAX - bytes < vector[i].iov_len)
Packit 6c4009
	{
Packit 6c4009
	  __set_errno (EINVAL);
Packit 6c4009
	  return -1;
Packit 6c4009
	}
Packit 6c4009
      bytes += vector[i].iov_len;
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  /* Allocate a temporary buffer to hold the data.  We should normally
Packit 6c4009
     use alloca since it's faster and does not require synchronization
Packit 6c4009
     with other threads.  But we cannot if the amount of memory
Packit 6c4009
     required is too large.  */
Packit 6c4009
  char *buffer;
Packit 6c4009
  char *malloced_buffer __attribute__ ((__cleanup__ (ifree))) = NULL;
Packit 6c4009
  if (__libc_use_alloca (bytes))
Packit 6c4009
    buffer = (char *) __alloca (bytes);
Packit 6c4009
  else
Packit 6c4009
    {
Packit 6c4009
      malloced_buffer = buffer = (char *) malloc (bytes);
Packit 6c4009
      if (buffer == NULL)
Packit 6c4009
	return -1;
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  /* Read the data.  */
Packit 6c4009
  ssize_t bytes_read = __read (fd, buffer, bytes);
Packit 6c4009
  if (bytes_read < 0)
Packit 6c4009
    return -1;
Packit 6c4009
Packit 6c4009
  /* Copy the data from BUFFER into the memory specified by VECTOR.  */
Packit 6c4009
  bytes = bytes_read;
Packit 6c4009
  for (int i = 0; i < count; ++i)
Packit 6c4009
    {
Packit 6c4009
      size_t copy = MIN (vector[i].iov_len, bytes);
Packit 6c4009
Packit 6c4009
      (void) memcpy ((void *) vector[i].iov_base, (void *) buffer, copy);
Packit 6c4009
Packit 6c4009
      buffer += copy;
Packit 6c4009
      bytes -= copy;
Packit 6c4009
      if (bytes == 0)
Packit 6c4009
	break;
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  return bytes_read;
Packit 6c4009
}
Packit 6c4009
libc_hidden_def (__readv)
Packit 6c4009
weak_alias (__readv, readv)