]> git.sesse.net Git - vlc/blob - src/network/poll.c
luarc: simplify
[vlc] / src / network / poll.c
1 /*****************************************************************************
2  * poll.c: I/O event multiplexing
3  *****************************************************************************
4  * Copyright © 2007 Rémi Denis-Courmont
5  * $Id$
6  *
7  * Author: Rémi Denis-Courmont
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include <vlc_common.h>
29
30 #ifdef HAVE_MAEMO
31 # include <vlc_network.h>
32 # include <signal.h>
33 # include <errno.h>
34 # include <poll.h>
35
36 int vlc_poll (struct pollfd *fds, unsigned nfds, int timeout)
37 {
38     struct timespec tsbuf, *ts;
39     sigset_t set;
40     int canc, ret;
41
42     if (timeout != -1)
43     {
44         div_t d = div (timeout, 1000);
45         tsbuf.tv_sec = d.quot;
46         tsbuf.tv_nsec = d.rem * 1000000;
47         ts = &tsbuf;
48     }
49     else
50         ts = NULL;
51
52     pthread_sigmask (SIG_BLOCK, NULL, &set);
53     sigdelset (&set, SIGRTMIN);
54
55     canc = vlc_savecancel ();
56     ret = ppoll (fds, nfds, ts, &set);
57     vlc_restorecancel (canc);
58
59     vlc_testcancel ();
60     return ret;
61 }
62
63 #elif defined (HAVE_POLL)
64 # include <vlc_network.h>
65
66 struct pollfd;
67
68 int vlc_poll (struct pollfd *fds, unsigned nfds, int timeout)
69 {
70     (void)fds; (void)nfds; (void)timeout;
71     abort ();
72 }
73
74 #elif defined (WIN32)
75
76 #include <stdlib.h>
77 #include <string.h>
78 #include <errno.h>
79 #ifdef FD_SETSIZE
80 /* No, it's not as simple as #undef FD_SETSIZE */
81 # error Header inclusion order compromised!
82 #endif
83 #define FD_SETSIZE 0
84 #include <vlc_network.h>
85
86 int vlc_poll (struct pollfd *fds, unsigned nfds, int timeout)
87 {
88     size_t setsize = sizeof (fd_set) + nfds * sizeof (SOCKET);
89     fd_set *rdset = malloc (setsize);
90     fd_set *wrset = malloc (setsize);
91     fd_set *exset = malloc (setsize);
92     struct timeval tv = { 0, 0 };
93     int val;
94
95     if (unlikely(rdset == NULL || wrset == NULL || exset == NULL))
96     {
97         free (rdset);
98         free (wrset);
99         free (exset);
100         errno = ENOMEM;
101         return -1;
102     }
103
104 /* Winsock FD_SET uses FD_SETSIZE in its expansion */
105 #undef FD_SETSIZE
106 #define FD_SETSIZE (nfds)
107
108 resume:
109     val = -1;
110     vlc_testcancel ();
111
112     FD_ZERO (rdset);
113     FD_ZERO (wrset);
114     FD_ZERO (exset);
115     for (unsigned i = 0; i < nfds; i++)
116     {
117         int fd = fds[i].fd;
118         if (val < fd)
119             val = fd;
120
121         /* With POSIX, FD_SET & FD_ISSET are not defined if fd is negative or
122          * bigger or equal than FD_SETSIZE. That is one of the reasons why VLC
123          * uses poll() rather than select(). Most POSIX systems implement
124          * fd_set has a bit field with no sanity checks. This is especially bad
125          * on systems (such as BSD) that have no process open files limit by
126          * default, such that it is quite feasible to get fd >= FD_SETSIZE.
127          * The next instructions will result in a buffer overflow if run on
128          * a POSIX system, and the later FD_ISSET would perform an undefined
129          * memory read.
130          *
131          * With Winsock, fd_set is a table of integers. This is awfully slow.
132          * However, FD_SET and FD_ISSET silently and safely discard excess
133          * entries. Here, overflow cannot happen anyway: fd_set of adequate
134          * size are allocated.
135          * Note that Vista has a much nicer WSAPoll(), but Mingw does not
136          * support it yet.
137          */
138         if (fds[i].events & POLLIN)
139             FD_SET ((SOCKET)fd, rdset);
140         if (fds[i].events & POLLOUT)
141             FD_SET ((SOCKET)fd, wrset);
142         if (fds[i].events & POLLPRI)
143             FD_SET ((SOCKET)fd, exset);
144     }
145
146 #ifndef HAVE_ALERTABLE_SELECT
147 # warning FIXME! Fix cancellation and remove this crap.
148     if ((timeout < 0) || (timeout > 50))
149     {
150         tv.tv_sec = 0;
151         tv.tv_usec = 50000;
152     }
153     else
154 #endif
155     if (timeout >= 0)
156     {
157         div_t d = div (timeout, 1000);
158         tv.tv_sec = d.quot;
159         tv.tv_usec = d.rem * 1000;
160     }
161
162     val = select (val + 1, rdset, wrset, exset,
163                   /*(timeout >= 0) ?*/ &tv /*: NULL*/);
164
165 #ifndef HAVE_ALERTABLE_SELECT
166     if (val == 0)
167     {
168         if (timeout > 0)
169             timeout -= (timeout > 50) ? 50 : timeout;
170         if (timeout != 0)
171             goto resume;
172     }
173 #endif
174
175     if (val == -1)
176         return -1;
177
178     for (unsigned i = 0; i < nfds; i++)
179     {
180         int fd = fds[i].fd;
181         fds[i].revents = (FD_ISSET (fd, rdset) ? POLLIN : 0)
182                        | (FD_ISSET (fd, wrset) ? POLLOUT : 0)
183                        | (FD_ISSET (fd, exset) ? POLLPRI : 0);
184     }
185     free (exset);
186     free (wrset);
187     free (rdset);
188     return val;
189 }
190
191 #else
192 # error poll() not implemented!
193 #endif