135 lines
2.1 KiB
C
Raw Normal View History

/*
* <sys/uio.h> wrapper functions.
*
* Authors:
* Steffen Kiess (s-kiess@web.de)
*
* Copyright (C) 2012 Steffen Kiess
*/
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif /* ndef _GNU_SOURCE */
#include <config.h>
#if defined(TARGET_MACH)
/* So we can use the declaration of preadv () */
#define _DARWIN_C_SOURCE
#endif
#include "sys-uio.h"
#include <sys/uio.h>
#include "map.h"
#include "mph.h"
G_BEGIN_DECLS
struct iovec*
_mph_from_iovec_array (struct Mono_Posix_Iovec *iov, gint32 iovcnt)
{
struct iovec* v;
gint32 i;
if (iovcnt < 0) {
errno = EINVAL;
return NULL;
}
v = malloc (iovcnt * sizeof (struct iovec));
if (!v) {
return NULL;
}
for (i = 0; i < iovcnt; i++) {
if (Mono_Posix_FromIovec (&iov[i], &v[i]) != 0) {
free (v);
return NULL;
}
}
return v;
}
#ifdef HAVE_READV
gint64
Mono_Posix_Syscall_readv (int dirfd, struct Mono_Posix_Iovec *iov, gint32 iovcnt)
{
struct iovec* v;
gint64 res;
v = _mph_from_iovec_array (iov, iovcnt);
if (!v) {
return -1;
}
res = readv(dirfd, v, iovcnt);
free (v);
return res;
}
#endif /* def HAVE_READV */
#ifdef HAVE_WRITEV
gint64
Mono_Posix_Syscall_writev (int dirfd, struct Mono_Posix_Iovec *iov, gint32 iovcnt)
{
struct iovec* v;
gint64 res;
v = _mph_from_iovec_array (iov, iovcnt);
if (!v) {
return -1;
}
res = writev (dirfd, v, iovcnt);
free (v);
return res;
}
#endif /* def HAVE_WRITEV */
#ifdef HAVE_PREADV
gint64
Mono_Posix_Syscall_preadv (int dirfd, struct Mono_Posix_Iovec *iov, gint32 iovcnt, gint64 off)
{
struct iovec* v;
gint64 res;
mph_return_if_off_t_overflow (off);
v = _mph_from_iovec_array (iov, iovcnt);
if (!v) {
return -1;
}
res = preadv (dirfd, v, iovcnt, (off_t) off);
free (v);
return res;
}
#endif /* def HAVE_PREADV */
#ifdef HAVE_PWRITEV
gint64
Mono_Posix_Syscall_pwritev (int dirfd, struct Mono_Posix_Iovec *iov, gint32 iovcnt, gint64 off)
{
struct iovec* v;
gint64 res;
mph_return_if_off_t_overflow (off);
v = _mph_from_iovec_array (iov, iovcnt);
if (!v) {
return -1;
}
res = pwritev (dirfd, v, iovcnt, (off_t) off);
free (v);
return res;
}
#endif /* def HAVE_PWRITEV */
/*
* vim: noexpandtab
*/