1 /* ioctl commands which must be done in the C library.
2 Copyright (C) 1994-2015 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 Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the 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 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
21 #include <sys/ioctl.h>
22 #include <hurd/ioctl.h>
26 /* Symbol set of ioctl handler lists. If there are user-registered
27 handlers, one of these lists will contain them. The other lists are
28 handlers built into the library. */
29 symbol_set_define (_hurd_ioctl_handler_lists
)
31 /* Look up REQUEST in the set of handlers. */
33 _hurd_lookup_ioctl_handler (int request
)
36 const struct ioctl_handler
*h
;
38 /* Mask off the type bits, so that we see requests in a single group as a
39 contiguous block of values. */
40 request
= _IOC_NOTYPE (request
);
42 for (ptr
= symbol_set_first_element (_hurd_ioctl_handler_lists
);
43 !symbol_set_end_p (_hurd_ioctl_handler_lists
, ptr
);
45 for (h
= *ptr
; h
!= NULL
; h
= h
->next
)
46 if (request
>= h
->first_request
&& request
<= h
->last_request
)
54 /* Find out how many bytes may be read from FD without blocking. */
63 *(volatile int *) arg
= *arg
;
73 mach_msg_type_number_t navail
;
74 err
= HURD_DPORT_USE (fd
, __io_readable (port
, &navail
));
81 err
= HURD_DPORT_USE (fd
, (*arg
?
82 __io_set_some_openmodes
:
83 __io_clear_some_openmodes
)
88 err
= HURD_DPORT_USE (fd
, (*arg
?
89 __io_set_some_openmodes
:
90 __io_clear_some_openmodes
)
95 err
= HURD_DPORT_USE (fd
, __io_mod_owner (port
, *arg
));
99 err
= HURD_DPORT_USE (fd
, __io_get_owner (port
, arg
));
103 return err
? __hurd_dfail (fd
, err
) : 0;
106 _HURD_HANDLE_IOCTLS (fioctl
, FIOGETOWN
, FIONREAD
);
118 return __hurd_fail (ENOTTY
);
127 return __fcntl (fd
, F_SETFD
, flag
);
129 _HURD_HANDLE_IOCTLS (fioclex
, FIOCLEX
, FIONCLEX
);
131 #include <hurd/term.h>
132 #include <hurd/tioctl.h>
134 /* Install a new CTTYID port, atomically updating the dtable appropriately.
135 This consumes the send right passed in. */
138 _hurd_locked_install_cttyid (mach_port_t cttyid
)
141 struct hurd_port
*const port
= &_hurd_ports
[INIT_PORT_CTTYID
];
142 struct hurd_userlink ulink
;
145 /* Install the new cttyid port, and preserve it with a ulink.
146 We unroll the _hurd_port_set + _hurd_port_get here so that
147 there is no window where the cell is unlocked and CTTYID could
148 be changed by another thread. (We also delay the deallocation
149 of the old port until the end, to minimize the duration of the
152 It is important that changing the cttyid port is only ever done by
153 holding the dtable lock continuously while updating the port cell and
154 re-ctty'ing the dtable; dtable.c assumes we do this. Otherwise, the
155 pgrp-change notification code in dtable.c has to worry about racing
156 against us here in odd situations. The one exception to this is
157 setsid, which holds the dtable lock while changing the pgrp and
158 clearing the cttyid port, and then unlocks the dtable lock to allow
163 __spin_lock (&port
->lock
);
164 old
= _hurd_userlink_clear (&port
->users
) ? port
->port
: MACH_PORT_NULL
;
166 cttyid
= _hurd_port_locked_get (port
, &ulink
);
168 for (i
= 0; i
< _hurd_dtablesize
; ++i
)
170 struct hurd_fd
*const d
= _hurd_dtable
[i
];
171 mach_port_t newctty
= MACH_PORT_NULL
;
174 /* Nothing to do for an unused descriptor cell. */
177 if (cttyid
!= MACH_PORT_NULL
)
178 /* We do have some controlling tty. */
179 HURD_PORT_USE (&d
->port
,
181 /* Get the io object's cttyid port. */
182 if (! __term_getctty (port
, &id
))
184 if (id
== cttyid
/* Is it ours? */
185 /* Get the ctty io port. */
186 && __term_open_ctty (port
,
187 _hurd_pid
, _hurd_pgrp
,
189 /* XXX it is our ctty but the call failed? */
190 newctty
= MACH_PORT_NULL
;
191 __mach_port_deallocate (__mach_task_self (), id
);
196 /* Install the new ctty port. */
197 _hurd_port_set (&d
->ctty
, newctty
);
200 __mutex_unlock (&_hurd_dtable_lock
);
202 if (old
!= MACH_PORT_NULL
)
203 __mach_port_deallocate (__mach_task_self (), old
);
204 _hurd_port_free (port
, &ulink
, cttyid
);
208 install_ctty (mach_port_t cttyid
)
211 __mutex_lock (&_hurd_dtable_lock
);
212 _hurd_locked_install_cttyid (cttyid
);
217 /* Called when we have received a message saying to use a new ctty ID port. */
220 _hurd_setcttyid (mach_port_t cttyid
)
224 if (cttyid
!= MACH_PORT_NULL
)
226 /* Give the new send right a user reference.
227 This is a good way to check that it is valid. */
228 if (err
= __mach_port_mod_refs (__mach_task_self (), cttyid
,
229 MACH_PORT_RIGHT_SEND
, 1))
233 /* Install the port, consuming the reference we just created. */
234 install_ctty (cttyid
);
240 static inline error_t
241 do_tiocsctty (io_t port
, io_t ctty
)
246 if (ctty
!= MACH_PORT_NULL
)
247 /* PORT is already the ctty. Nothing to do. */
250 /* Get PORT's cttyid port. */
251 err
= __term_getctty (port
, &cttyid
);
255 /* Change the terminal's pgrp to ours. */
256 err
= __tioctl_tiocspgrp (port
, _hurd_pgrp
);
258 __mach_port_deallocate (__mach_task_self (), cttyid
);
260 /* Make it our own. */
261 install_ctty (cttyid
);
266 /* Make FD be the controlling terminal.
267 This function is called for `ioctl (fd, TCIOSCTTY)'. */
271 int request
) /* Always TIOCSCTTY. */
273 return __hurd_fail (HURD_DPORT_USE (fd
, do_tiocsctty (port
, ctty
)));
275 _HURD_HANDLE_IOCTL (tiocsctty
, TIOCSCTTY
);
277 /* Dissociate from the controlling terminal. */
281 int request
) /* Always TIOCNOTTY. */
283 mach_port_t fd_cttyid
;
286 if (err
= HURD_DPORT_USE (fd
, __term_getctty (port
, &fd_cttyid
)))
287 return __hurd_fail (err
);
289 if (__USEPORT (CTTYID
, port
!= fd_cttyid
))
292 __mach_port_deallocate (__mach_task_self (), fd_cttyid
);
295 return __hurd_fail (err
);
297 /* Clear our cttyid port. */
298 install_ctty (MACH_PORT_NULL
);
302 _HURD_HANDLE_IOCTL (tiocnotty
, TIOCNOTTY
);
304 #include <hurd/pfinet.h>
306 #include <netinet/in.h>
308 /* Fill in the buffer IFC->IFC_BUF of length IFC->IFC_LEN with a list
309 of ifr structures, one for each network interface. */
311 siocgifconf (int fd
, int request
, struct ifconf
*ifc
)
314 size_t data_len
= ifc
->ifc_len
;
315 char *data
= ifc
->ifc_buf
;
320 err
= HURD_DPORT_USE (fd
, __pfinet_siocgifconf (port
, ifc
->ifc_len
,
322 if (data_len
< ifc
->ifc_len
)
323 ifc
->ifc_len
= data_len
;
324 if (data
!= ifc
->ifc_buf
)
326 memcpy (ifc
->ifc_buf
, data
, ifc
->ifc_len
);
327 __vm_deallocate (__mach_task_self (), (vm_address_t
) data
, data_len
);
329 return err
? __hurd_dfail (fd
, err
) : 0;
331 _HURD_HANDLE_IOCTL (siocgifconf
, SIOCGIFCONF
);