qemu-e2k/util
Daniel P. Berrange a2d96af4bb osdep: add wrappers for socket functions
The windows socket functions look identical to the normal POSIX
sockets functions, but instead of setting errno, the caller needs
to call WSAGetLastError(). QEMU has tried to deal with this
incompatibility by defining a socket_error() method that callers
must use that abstracts the difference between WSAGetLastError()
and errno.

This approach is somewhat error prone though - many callers of
the sockets functions are just using errno directly because it
is easy to forget the need use a QEMU specific wrapper. It is
not always immediately obvious that a particular function will
in fact call into Windows sockets functions, so the dev may not
even realize they need to use socket_error().

This introduces an alternative approach to portability inspired
by the way GNULIB fixes portability problems. We use a macro to
redefine the original socket function names to refer to a QEMU
wrapper function. The wrapper function calls the original Win32
sockets method and then sets errno from the WSAGetLastError()
value.

Thus all code can simply call the normal POSIX sockets APIs are
have standard errno reporting on error, even on Windows. This
makes the socket_error() method obsolete.

We also bring closesocket & ioctlsocket into this approach. Even
though they are non-standard Win32 names, we can't wrap the normal
close/ioctl methods since there's no reliable way to distinguish
between a file descriptor and HANDLE in Win32.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
2016-03-10 17:19:07 +00:00
..
Makefile.objs log: move qemu-log.c into util/ directory 2016-02-03 09:19:10 +00:00
acl.c util: Clean up includes 2016-02-04 17:01:04 +00:00
base64.c util: Clean up includes 2016-02-04 17:01:04 +00:00
bitmap.c util: Clean up includes 2016-02-04 17:01:04 +00:00
bitops.c util: Clean up includes 2016-02-04 17:01:04 +00:00
buffer.c util: Clean up includes 2016-02-04 17:01:04 +00:00
compatfd.c util: Clean up includes 2016-02-04 17:01:04 +00:00
coroutine-gthread.c util: Clean up includes 2016-02-04 17:01:04 +00:00
coroutine-sigaltstack.c util: Clean up includes 2016-02-04 17:01:04 +00:00
coroutine-ucontext.c util: Clean up includes 2016-02-04 17:01:04 +00:00
coroutine-win32.c util: Clean up includes 2016-02-04 17:01:04 +00:00
crc32c.c util: Clean up includes 2016-02-04 17:01:04 +00:00
cutils.c cutils: add avx2 instruction optimization 2016-03-08 16:53:26 +05:30
envlist.c util: Clean up includes 2016-02-04 17:01:04 +00:00
error.c util: Clean up includes 2016-02-04 17:01:04 +00:00
event_notifier-posix.c util: Clean up includes 2016-02-04 17:01:04 +00:00
event_notifier-win32.c util: Clean up includes 2016-02-04 17:01:04 +00:00
fifo8.c util: Clean up includes 2016-02-04 17:01:04 +00:00
getauxval.c util: Clean up includes 2016-02-04 17:01:04 +00:00
hbitmap.c util: Clean up includes 2016-02-04 17:01:04 +00:00
hexdump.c util: Clean up includes 2016-02-04 17:01:04 +00:00
host-utils.c util: Clean up includes 2016-02-04 17:01:04 +00:00
id.c util: Clean up includes 2016-02-04 17:01:04 +00:00
iov.c iov: avoid memcpy for "simple" iov_from_buf/iov_to_buf 2016-02-09 13:52:26 +00:00
log.c log: do not log if QEMU is daemonized but without -D 2016-03-07 13:18:28 +01:00
memfd.c vhost: add migration block if memfd failed 2015-10-22 14:34:49 +03:00
mmap-alloc.c util: Clean up includes 2016-02-04 17:01:04 +00:00
module.c util: Clean up includes 2016-02-04 17:01:04 +00:00
notify.c util: Clean up includes 2016-02-04 17:01:04 +00:00
osdep.c util: Clean up includes 2016-02-04 17:01:04 +00:00
oslib-posix.c oslib-posix.c: Move workaround for OSX daemon() deprecation to osdep.h 2016-02-16 14:29:28 +00:00
oslib-win32.c osdep: add wrappers for socket functions 2016-03-10 17:19:07 +00:00
path.c util: Clean up includes 2016-02-04 17:01:04 +00:00
qemu-config.c util: Clean up includes 2016-02-04 17:01:04 +00:00
qemu-coroutine-io.c util: Clean up includes 2016-02-04 17:01:04 +00:00
qemu-coroutine-lock.c util: Clean up includes 2016-02-04 17:01:04 +00:00
qemu-coroutine-sleep.c util: Clean up includes 2016-02-04 17:01:04 +00:00
qemu-coroutine.c util: Clean up includes 2016-02-04 17:01:04 +00:00
qemu-error.c util: Clean up includes 2016-02-04 17:01:04 +00:00
qemu-openpty.c util: Clean up includes 2016-02-04 17:01:04 +00:00
qemu-option.c util: Clean up includes 2016-02-04 17:01:04 +00:00
qemu-progress.c util: Clean up includes 2016-02-04 17:01:04 +00:00
qemu-sockets.c util: Shorten references into SocketAddress 2016-03-05 10:41:52 +01:00
qemu-thread-posix.c util: Clean up includes 2016-02-04 17:01:04 +00:00
qemu-thread-win32.c util: Clean up includes 2016-02-04 17:01:04 +00:00
qemu-timer-common.c util: Clean up includes 2016-02-04 17:01:04 +00:00
rcu.c util: Clean up includes 2016-02-04 17:01:04 +00:00
readline.c util: Clean up includes 2016-02-04 17:01:04 +00:00
rfifolock.c util: Clean up includes 2016-02-04 17:01:04 +00:00
throttle.c throttle: Add support for burst periods 2016-02-22 14:08:05 +01:00
timed-average.c util: Clean up includes 2016-02-04 17:01:04 +00:00
unicode.c util: Clean up includes 2016-02-04 17:01:04 +00:00
uri.c util: Clean up includes 2016-02-04 17:01:04 +00:00