1 /* Guts of both `select' and `poll' for Hurd.
2 Copyright (C) 1991,92,93,94,95,96,97,98 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. */
175 _hurd_port_free (&d
[i
].cell
->port
, &d
[i
].ulink
,
185 __mutex_unlock (&_hurd_dtable_lock
);
191 __sigprocmask (SIG_SETMASK
, &oset
, NULL
);
201 /* Send them all io_select request messages. */
204 /* But not if there were no ports to deal with at all.
205 We are just a pure timeout. */
206 portset
= __mach_reply_port ();
209 portset
= MACH_PORT_NULL
;
211 for (i
= firstfd
; i
<= lastfd
; ++i
)
214 int type
= d
[i
].type
;
215 d
[i
].reply_port
= __mach_reply_port ();
216 err
= __io_select (d
[i
].io_port
, d
[i
].reply_port
,
217 /* Poll only if there's a single descriptor. */
218 (firstfd
== lastfd
) ? to
: 0,
222 case MACH_RCV_TIMED_OUT
:
223 /* No immediate response. This is normal. */
225 if (firstfd
== lastfd
)
226 /* When there's a single descriptor, we don't need a
227 portset, so just pretend we have one, but really
228 use the single reply port. */
229 portset
= d
[i
].reply_port
;
231 /* We've got multiple reply ports, so we need a port set to
234 /* We will wait again for a reply later. */
235 if (portset
== MACH_PORT_NULL
)
236 /* Create the portset to receive all the replies on. */
237 err
= __mach_port_allocate (__mach_task_self (),
238 MACH_PORT_RIGHT_PORT_SET
,
241 /* Put this reply port in the port set. */
242 __mach_port_move_member (__mach_task_self (),
243 d
[i
].reply_port
, portset
);
248 /* No other error should happen. Callers of select
249 don't expect to see errors, so we simulate
250 readiness of the erring object and the next call
251 hopefully will get the error again. */
256 /* We got an answer. */
257 if ((type
& SELECT_ALL
) == 0)
258 /* Bogus answer; treat like an error, as a fake positive. */
261 /* This port is already ready already. */
263 d
[i
].type
|= SELECT_RETURNED
;
267 _hurd_port_free (&d
[i
].cell
->port
, &d
[i
].ulink
, d
[i
].io_port
);
271 /* Now wait for reply messages. */
272 if (!err
&& got
== 0)
274 /* Now wait for io_select_reply messages on PORT,
275 timing out as appropriate. */
279 mach_msg_header_t head
;
282 mach_msg_header_t head
;
283 mach_msg_type_t err_type
;
288 mach_msg_header_t head
;
289 mach_msg_type_t err_type
;
291 mach_msg_type_t result_type
;
295 mach_msg_option_t options
= (timeout
== NULL
? 0 : MACH_RCV_TIMEOUT
);
297 while ((msgerr
= __mach_msg (&msg
.head
,
298 MACH_RCV_MSG
| options
,
299 0, sizeof msg
, portset
, to
,
300 MACH_PORT_NULL
)) == MACH_MSG_SUCCESS
)
302 /* We got a message. Decode it. */
303 #define IO_SELECT_REPLY_MSGID (21012 + 100) /* XXX */
304 const mach_msg_type_t inttype
=
305 { MACH_MSG_TYPE_INTEGER_T
, sizeof (MACH_MSG_TYPE_INTEGER_T
) * 8,
307 if (msg
.head
.msgh_id
== IO_SELECT_REPLY_MSGID
&&
308 msg
.head
.msgh_size
>= sizeof msg
.error
&&
309 !(msg
.head
.msgh_bits
& MACH_MSGH_BITS_COMPLEX
) &&
310 *(int *) &msg
.error
.err_type
== *(int *) &inttype
)
312 /* This is a properly formatted message so far.
313 See if it is a success or a failure. */
314 if (msg
.error
.err
== EINTR
&&
315 msg
.head
.msgh_size
== sizeof msg
.error
)
317 /* EINTR response; poll for further responses
318 and then return quickly. */
323 msg
.head
.msgh_size
!= sizeof msg
.success
||
324 *(int *) &msg
.success
.result_type
!= *(int *) &inttype
||
325 (msg
.success
.result
& SELECT_ALL
) == 0)
327 /* Error or bogus reply. Simulate readiness. */
328 __mach_msg_destroy (&msg
.head
);
329 msg
.success
.result
= SELECT_ALL
;
332 /* Look up the respondent's reply port and record its
337 for (i
= firstfd
; i
<= lastfd
; ++i
)
339 && d
[i
].reply_port
== msg
.head
.msgh_local_port
)
341 d
[i
].type
&= msg
.success
.result
;
342 d
[i
].type
|= SELECT_RETURNED
;
349 if (msg
.head
.msgh_remote_port
!= MACH_PORT_NULL
)
350 __mach_port_deallocate (__mach_task_self (),
351 msg
.head
.msgh_remote_port
);
356 /* Poll for another message. */
358 options
|= MACH_RCV_TIMEOUT
;
362 if (err
== MACH_RCV_TIMED_OUT
)
363 /* This is the normal value for ERR. We might have timed out and
364 read no messages. Otherwise, after receiving the first message,
365 we poll for more messages. We receive with a timeout of 0 to
366 effect a poll, so ERR is MACH_RCV_TIMED_OUT when the poll finds no
371 /* At least one descriptor is known to be ready now, so we will
377 for (i
= firstfd
; i
<= lastfd
; ++i
)
379 __mach_port_destroy (__mach_task_self (), d
[i
].reply_port
);
380 if (firstfd
== -1 || (firstfd
!= lastfd
&& portset
!= MACH_PORT_NULL
))
381 /* Destroy PORTSET, but only if it's not actually the reply port for a
382 single descriptor (in which case it's destroyed in the previous loop;
383 not doing it here is just a bit more efficient). */
384 __mach_port_destroy (__mach_task_self (), portset
);
389 __sigprocmask (SIG_SETMASK
, &oset
, NULL
);
390 return __hurd_fail (err
);
394 /* Fill in the `revents' members of the user's array. */
395 for (i
= 0; i
< nfds
; ++i
)
397 const int type
= d
[i
].type
;
398 int_fast16_t revents
= 0;
400 if (type
& SELECT_READ
)
402 if (type
& SELECT_WRITE
)
404 if (type
& SELECT_URG
)
407 pollfds
[i
].revents
= revents
;
411 /* Below we recalculate GOT to include an increment for each operation
412 allowed on each fd. */
415 /* Set the user bitarrays. We only ever have to clear bits, as all
416 desired ones are initially set. */
418 for (i
= firstfd
; i
<= lastfd
; ++i
)
420 int type
= d
[i
].type
;
422 if ((type
& SELECT_RETURNED
) == 0)
425 if (type
& SELECT_READ
)
429 if (type
& SELECT_WRITE
)
432 FD_CLR (i
, writefds
);
433 if (type
& SELECT_URG
)
436 FD_CLR (i
, exceptfds
);
440 if (sigmask
&& __sigprocmask (SIG_SETMASK
, &oset
, NULL
))