1 /* Guts of both `select' and `poll' for Hurd.
2 Copyright (C) 1991,92,93,94,95,96,97,98, 99 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 The GNU C Library 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 GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
20 #include <sys/types.h>
29 /* All user select types. */
30 #define SELECT_ALL (SELECT_READ | SELECT_WRITE | SELECT_URG)
32 /* Used to record that a particular select rpc returned. Must be distinct
33 from SELECT_ALL (which better not have the high bit set). */
34 #define SELECT_RETURNED ((SELECT_ALL << 1) & ~SELECT_ALL)
36 /* Check the first NFDS descriptors either in POLLFDS (if nonnnull) or in
37 each of READFDS, WRITEFDS, EXCEPTFDS that is nonnull. If TIMEOUT is not
38 NULL, time out after waiting the interval specified therein. Returns
39 the number of ready descriptors, or -1 for errors. */
41 _hurd_select (int nfds
,
42 struct pollfd
*pollfds
,
43 fd_set
*readfds
, fd_set
*writefds
, fd_set
*exceptfds
,
44 const struct timespec
*timeout
, const sigset_t
*sigmask
)
50 fd_set rfds
, wfds
, xfds
;
52 mach_msg_timeout_t to
= (timeout
!= NULL
?
53 (timeout
->tv_sec
* 1000 +
54 timeout
->tv_nsec
/ 1000000) :
58 struct hurd_userlink ulink
;
62 mach_port_t reply_port
;
66 if (sigmask
&& __sigprocmask (SIG_SETMASK
, sigmask
, &oset
))
71 /* Collect interesting descriptors from the user's `pollfd' array.
72 We do a first pass that reads the user's array before taking
73 any locks. The second pass then only touches our own stack,
74 and gets the port references. */
76 for (i
= 0; i
< nfds
; ++i
)
77 if (pollfds
[i
].fd
>= 0)
80 if (pollfds
[i
].events
& POLLIN
)
82 if (pollfds
[i
].events
& POLLOUT
)
84 if (pollfds
[i
].events
& POLLPRI
)
87 d
[i
].io_port
= pollfds
[i
].fd
;
94 __mutex_lock (&_hurd_dtable_lock
);
96 for (i
= 0; i
< nfds
; ++i
)
99 const int fd
= (int) d
[i
].io_port
;
101 if (fd
< _hurd_dtablesize
)
103 d
[i
].cell
= _hurd_dtable
[fd
];
104 d
[i
].io_port
= _hurd_port_get (&d
[i
].cell
->port
, &d
[i
].ulink
);
105 if (d
[i
].io_port
!= MACH_PORT_NULL
)
109 /* If one descriptor is bogus, we fail completely. */
112 _hurd_port_free (&d
[i
].cell
->port
,
113 &d
[i
].ulink
, d
[i
].io_port
);
117 __mutex_unlock (&_hurd_dtable_lock
);
123 __sigprocmask (SIG_SETMASK
, &oset
, NULL
);
129 firstfd
= i
== 0 ? lastfd
: 0;
133 /* Collect interested descriptors from the user's fd_set arguments.
134 Use local copies so we can't crash from user bogosity. */
140 if (writefds
== NULL
)
144 if (exceptfds
== NULL
)
150 __mutex_lock (&_hurd_dtable_lock
);
152 if (nfds
> _hurd_dtablesize
)
153 nfds
= _hurd_dtablesize
;
155 /* Collect the ports for interesting FDs. */
156 firstfd
= lastfd
= -1;
157 for (i
= 0; i
< nfds
; ++i
)
160 if (readfds
!= NULL
&& FD_ISSET (i
, &rfds
))
162 if (writefds
!= NULL
&& FD_ISSET (i
, &wfds
))
163 type
|= SELECT_WRITE
;
164 if (exceptfds
!= NULL
&& FD_ISSET (i
, &xfds
))
169 d
[i
].cell
= _hurd_dtable
[i
];
170 d
[i
].io_port
= _hurd_port_get (&d
[i
].cell
->port
, &d
[i
].ulink
);
171 if (d
[i
].io_port
== MACH_PORT_NULL
)
173 /* If one descriptor is bogus, we fail completely. */
176 _hurd_port_free (&d
[i
].cell
->port
, &d
[i
].ulink
,
186 __mutex_unlock (&_hurd_dtable_lock
);
192 __sigprocmask (SIG_SETMASK
, &oset
, NULL
);
202 /* Send them all io_select request messages. */
205 /* But not if there were no ports to deal with at all.
206 We are just a pure timeout. */
207 portset
= __mach_reply_port ();
210 portset
= MACH_PORT_NULL
;
212 for (i
= firstfd
; i
<= lastfd
; ++i
)
215 int type
= d
[i
].type
;
216 d
[i
].reply_port
= __mach_reply_port ();
217 err
= __io_select (d
[i
].io_port
, d
[i
].reply_port
,
218 /* Poll only if there's a single descriptor. */
219 (firstfd
== lastfd
) ? to
: 0,
223 case MACH_RCV_TIMED_OUT
:
224 /* No immediate response. This is normal. */
226 if (firstfd
== lastfd
)
227 /* When there's a single descriptor, we don't need a
228 portset, so just pretend we have one, but really
229 use the single reply port. */
230 portset
= d
[i
].reply_port
;
232 /* We've got multiple reply ports, so we need a port set to
235 /* We will wait again for a reply later. */
236 if (portset
== MACH_PORT_NULL
)
237 /* Create the portset to receive all the replies on. */
238 err
= __mach_port_allocate (__mach_task_self (),
239 MACH_PORT_RIGHT_PORT_SET
,
242 /* Put this reply port in the port set. */
243 __mach_port_move_member (__mach_task_self (),
244 d
[i
].reply_port
, portset
);
249 /* No other error should happen. Callers of select
250 don't expect to see errors, so we simulate
251 readiness of the erring object and the next call
252 hopefully will get the error again. */
257 /* We got an answer. */
258 if ((type
& SELECT_ALL
) == 0)
259 /* Bogus answer; treat like an error, as a fake positive. */
262 /* This port is already ready already. */
264 d
[i
].type
|= SELECT_RETURNED
;
268 _hurd_port_free (&d
[i
].cell
->port
, &d
[i
].ulink
, d
[i
].io_port
);
272 /* Now wait for reply messages. */
273 if (!err
&& got
== 0)
275 /* Now wait for io_select_reply messages on PORT,
276 timing out as appropriate. */
280 mach_msg_header_t head
;
283 mach_msg_header_t head
;
284 mach_msg_type_t err_type
;
289 mach_msg_header_t head
;
290 mach_msg_type_t err_type
;
292 mach_msg_type_t result_type
;
296 mach_msg_option_t options
= (timeout
== NULL
? 0 : MACH_RCV_TIMEOUT
);
298 while ((msgerr
= __mach_msg (&msg
.head
,
299 MACH_RCV_MSG
| options
,
300 0, sizeof msg
, portset
, to
,
301 MACH_PORT_NULL
)) == MACH_MSG_SUCCESS
)
303 /* We got a message. Decode it. */
304 #define IO_SELECT_REPLY_MSGID (21012 + 100) /* XXX */
305 const mach_msg_type_t inttype
=
306 { MACH_MSG_TYPE_INTEGER_T
, sizeof (MACH_MSG_TYPE_INTEGER_T
) * 8,
308 if (msg
.head
.msgh_id
== IO_SELECT_REPLY_MSGID
&&
309 msg
.head
.msgh_size
>= sizeof msg
.error
&&
310 !(msg
.head
.msgh_bits
& MACH_MSGH_BITS_COMPLEX
) &&
311 *(int *) &msg
.error
.err_type
== *(int *) &inttype
)
313 /* This is a properly formatted message so far.
314 See if it is a success or a failure. */
315 if (msg
.error
.err
== EINTR
&&
316 msg
.head
.msgh_size
== sizeof msg
.error
)
318 /* EINTR response; poll for further responses
319 and then return quickly. */
324 msg
.head
.msgh_size
!= sizeof msg
.success
||
325 *(int *) &msg
.success
.result_type
!= *(int *) &inttype
||
326 (msg
.success
.result
& SELECT_ALL
) == 0)
328 /* Error or bogus reply. Simulate readiness. */
329 __mach_msg_destroy (&msg
.head
);
330 msg
.success
.result
= SELECT_ALL
;
333 /* Look up the respondent's reply port and record its
338 for (i
= firstfd
; i
<= lastfd
; ++i
)
340 && d
[i
].reply_port
== msg
.head
.msgh_local_port
)
342 d
[i
].type
&= msg
.success
.result
;
343 d
[i
].type
|= SELECT_RETURNED
;
350 if (msg
.head
.msgh_remote_port
!= MACH_PORT_NULL
)
351 __mach_port_deallocate (__mach_task_self (),
352 msg
.head
.msgh_remote_port
);
357 /* Poll for another message. */
359 options
|= MACH_RCV_TIMEOUT
;
363 if (err
== MACH_RCV_TIMED_OUT
)
364 /* This is the normal value for ERR. We might have timed out and
365 read no messages. Otherwise, after receiving the first message,
366 we poll for more messages. We receive with a timeout of 0 to
367 effect a poll, so ERR is MACH_RCV_TIMED_OUT when the poll finds no
372 /* At least one descriptor is known to be ready now, so we will
378 for (i
= firstfd
; i
<= lastfd
; ++i
)
380 __mach_port_destroy (__mach_task_self (), d
[i
].reply_port
);
381 if (firstfd
== -1 || (firstfd
!= lastfd
&& portset
!= MACH_PORT_NULL
))
382 /* Destroy PORTSET, but only if it's not actually the reply port for a
383 single descriptor (in which case it's destroyed in the previous loop;
384 not doing it here is just a bit more efficient). */
385 __mach_port_destroy (__mach_task_self (), portset
);
390 __sigprocmask (SIG_SETMASK
, &oset
, NULL
);
391 return __hurd_fail (err
);
395 /* Fill in the `revents' members of the user's array. */
396 for (i
= 0; i
< nfds
; ++i
)
398 const int type
= d
[i
].type
;
399 int_fast16_t revents
= 0;
401 if (type
& SELECT_READ
)
403 if (type
& SELECT_WRITE
)
405 if (type
& SELECT_URG
)
408 pollfds
[i
].revents
= revents
;
412 /* Below we recalculate GOT to include an increment for each operation
413 allowed on each fd. */
416 /* Set the user bitarrays. We only ever have to clear bits, as all
417 desired ones are initially set. */
419 for (i
= firstfd
; i
<= lastfd
; ++i
)
421 int type
= d
[i
].type
;
423 if ((type
& SELECT_RETURNED
) == 0)
426 if (type
& SELECT_READ
)
430 if (type
& SELECT_WRITE
)
433 FD_CLR (i
, writefds
);
434 if (type
& SELECT_URG
)
437 FD_CLR (i
, exceptfds
);
441 if (sigmask
&& __sigprocmask (SIG_SETMASK
, &oset
, NULL
))