maint: update all copyright year number ranges
[gnulib.git] / lib / ioctl.c
1 /* ioctl.c --- wrappers for Windows ioctl function
2
3    Copyright (C) 2008-2012 Free Software Foundation, Inc.
4
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 /* Written by Paolo Bonzini */
19
20 #include <config.h>
21
22 #include <sys/ioctl.h>
23
24 #include <stdarg.h>
25
26 #if HAVE_IOCTL
27
28 /* Provide a wrapper with the POSIX prototype.  */
29 # undef ioctl
30 int
31 rpl_ioctl (int fd, int request, ... /* {void *,char *} arg */)
32 {
33   void *buf;
34   va_list args;
35
36   va_start (args, request);
37   buf = va_arg (args, void *);
38   va_end (args);
39
40   /* Cast 'request' so that when the system's ioctl function takes a 64-bit
41      request argument, the value gets zero-extended, not sign-extended.  */
42   return ioctl (fd, (unsigned int) request, buf);
43 }
44
45 #else /* mingw */
46
47 # include <errno.h>
48
49 # include "fd-hook.h"
50
51 static int
52 primary_ioctl (int fd, int request, void *arg)
53 {
54   /* We don't support FIONBIO on pipes here.  If you want to make pipe
55      fds non-blocking, use the gnulib 'nonblocking' module, until
56      gnulib implements fcntl F_GETFL / F_SETFL with O_NONBLOCK.  */
57
58   errno = ENOSYS;
59   return -1;
60 }
61
62 int
63 ioctl (int fd, int request, ... /* {void *,char *} arg */)
64 {
65   void *arg;
66   va_list args;
67
68   va_start (args, request);
69   arg = va_arg (args, void *);
70   va_end (args);
71
72 # if WINDOWS_SOCKETS
73   return execute_all_ioctl_hooks (primary_ioctl, fd, request, arg);
74 # else
75   return primary_ioctl (fd, request, arg);
76 # endif
77 }
78
79 #endif