1 /* ioctl commands which must be done in the C library.
2 Copyright (C) 1994,95,96,97,99,2001,2002,2009,2010
3 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
23 #include <sys/ioctl.h>
24 #include <hurd/ioctl.h>
28 /* Symbol set of ioctl handler lists. If there are user-registered
29 handlers, one of these lists will contain them. The other lists are
30 handlers built into the library. */
31 symbol_set_define (_hurd_ioctl_handler_lists
)
33 /* Look up REQUEST in the set of handlers. */
35 _hurd_lookup_ioctl_handler (int request
)
38 const struct ioctl_handler
*h
;
40 /* Mask off the type bits, so that we see requests in a single group as a
41 contiguous block of values. */
42 request
= _IOC_NOTYPE (request
);
44 for (ptr
= symbol_set_first_element (_hurd_ioctl_handler_lists
);
45 !symbol_set_end_p (_hurd_ioctl_handler_lists
, ptr
);
47 for (h
= *ptr
; h
!= NULL
; h
= h
->next
)
48 if (request
>= h
->first_request
&& request
<= h
->last_request
)
56 /* Find out how many bytes may be read from FD without blocking. */
65 *(volatile int *) arg
= *arg
;
75 mach_msg_type_number_t navail
;
76 err
= HURD_DPORT_USE (fd
, __io_readable (port
, &navail
));
83 err
= HURD_DPORT_USE (fd
, (*arg
?
84 __io_set_some_openmodes
:
85 __io_clear_some_openmodes
)
90 err
= HURD_DPORT_USE (fd
, (*arg
?
91 __io_set_some_openmodes
:
92 __io_clear_some_openmodes
)
97 err
= HURD_DPORT_USE (fd
, __io_mod_owner (port
, *arg
));
101 err
= HURD_DPORT_USE (fd
, __io_get_owner (port
, arg
));
105 return err
? __hurd_dfail (fd
, err
) : 0;
108 _HURD_HANDLE_IOCTLS (fioctl
, FIOGETOWN
, FIONREAD
);
120 return __hurd_fail (ENOTTY
);
129 return __fcntl (fd
, F_SETFD
, flag
);
131 _HURD_HANDLE_IOCTLS (fioclex
, FIOCLEX
, FIONCLEX
);
133 #include <hurd/term.h>
134 #include <hurd/tioctl.h>
136 /* Install a new CTTYID port, atomically updating the dtable appropriately.
137 This consumes the send right passed in. */
140 _hurd_locked_install_cttyid (mach_port_t cttyid
)
143 struct hurd_port
*const port
= &_hurd_ports
[INIT_PORT_CTTYID
];
144 struct hurd_userlink ulink
;
147 /* Install the new cttyid port, and preserve it with a ulink.
148 We unroll the _hurd_port_set + _hurd_port_get here so that
149 there is no window where the cell is unlocked and CTTYID could
150 be changed by another thread. (We also delay the deallocation
151 of the old port until the end, to minimize the duration of the
154 It is important that changing the cttyid port is only ever done by
155 holding the dtable lock continuously while updating the port cell and
156 re-ctty'ing the dtable; dtable.c assumes we do this. Otherwise, the
157 pgrp-change notification code in dtable.c has to worry about racing
158 against us here in odd situations. The one exception to this is
159 setsid, which holds the dtable lock while changing the pgrp and
160 clearing the cttyid port, and then unlocks the dtable lock to allow
165 __spin_lock (&port
->lock
);
166 old
= _hurd_userlink_clear (&port
->users
) ? port
->port
: MACH_PORT_NULL
;
168 cttyid
= _hurd_port_locked_get (port
, &ulink
);
170 for (i
= 0; i
< _hurd_dtablesize
; ++i
)
172 struct hurd_fd
*const d
= _hurd_dtable
[i
];
173 mach_port_t newctty
= MACH_PORT_NULL
;
176 /* Nothing to do for an unused descriptor cell. */
179 if (cttyid
!= MACH_PORT_NULL
)
180 /* We do have some controlling tty. */
181 HURD_PORT_USE (&d
->port
,
183 /* Get the io object's cttyid port. */
184 if (! __term_getctty (port
, &id
))
186 if (id
== cttyid
/* Is it ours? */
187 /* Get the ctty io port. */
188 && __term_open_ctty (port
,
189 _hurd_pid
, _hurd_pgrp
,
191 /* XXX it is our ctty but the call failed? */
192 newctty
= MACH_PORT_NULL
;
193 __mach_port_deallocate (__mach_task_self (), id
);
198 /* Install the new ctty port. */
199 _hurd_port_set (&d
->ctty
, newctty
);
202 __mutex_unlock (&_hurd_dtable_lock
);
204 if (old
!= MACH_PORT_NULL
)
205 __mach_port_deallocate (__mach_task_self (), old
);
206 _hurd_port_free (port
, &ulink
, cttyid
);
210 install_ctty (mach_port_t cttyid
)
213 __mutex_lock (&_hurd_dtable_lock
);
214 _hurd_locked_install_cttyid (cttyid
);
219 /* Called when we have received a message saying to use a new ctty ID port. */
222 _hurd_setcttyid (mach_port_t cttyid
)
226 if (cttyid
!= MACH_PORT_NULL
)
228 /* Give the new send right a user reference.
229 This is a good way to check that it is valid. */
230 if (err
= __mach_port_mod_refs (__mach_task_self (), cttyid
,
231 MACH_PORT_RIGHT_SEND
, 1))
235 /* Install the port, consuming the reference we just created. */
236 install_ctty (cttyid
);
242 static inline error_t
243 do_tiocsctty (io_t port
, io_t ctty
)
248 if (ctty
!= MACH_PORT_NULL
)
249 /* PORT is already the ctty. Nothing to do. */
252 /* Get PORT's cttyid port. */
253 err
= __term_getctty (port
, &cttyid
);
257 /* Change the terminal's pgrp to ours. */
258 err
= __tioctl_tiocspgrp (port
, _hurd_pgrp
);
260 __mach_port_deallocate (__mach_task_self (), cttyid
);
262 /* Make it our own. */
263 install_ctty (cttyid
);
268 /* Make FD be the controlling terminal.
269 This function is called for `ioctl (fd, TCIOSCTTY)'. */
273 int request
) /* Always TIOCSCTTY. */
275 return __hurd_fail (HURD_DPORT_USE (fd
, do_tiocsctty (port
, ctty
)));
277 _HURD_HANDLE_IOCTL (tiocsctty
, TIOCSCTTY
);
279 /* Dissociate from the controlling terminal. */
283 int request
) /* Always TIOCNOTTY. */
285 mach_port_t fd_cttyid
;
288 if (err
= HURD_DPORT_USE (fd
, __term_getctty (port
, &fd_cttyid
)))
289 return __hurd_fail (err
);
291 if (__USEPORT (CTTYID
, port
!= fd_cttyid
))
294 __mach_port_deallocate (__mach_task_self (), fd_cttyid
);
297 return __hurd_fail (err
);
299 /* Clear our cttyid port. */
300 install_ctty (MACH_PORT_NULL
);
304 _HURD_HANDLE_IOCTL (tiocnotty
, TIOCNOTTY
);
306 #include <hurd/pfinet.h>
308 #include <netinet/in.h>
310 /* Fill in the buffer IFC->IFC_BUF of length IFC->IFC_LEN with a list
311 of ifr structures, one for each network interface. */
313 siocgifconf (int fd
, int request
, struct ifconf
*ifc
)
316 size_t data_len
= ifc
->ifc_len
;
317 char *data
= ifc
->ifc_buf
;
322 err
= HURD_DPORT_USE (fd
, __pfinet_siocgifconf (port
, ifc
->ifc_len
,
324 if (data_len
< ifc
->ifc_len
)
325 ifc
->ifc_len
= data_len
;
326 if (data
!= ifc
->ifc_buf
)
328 memcpy (ifc
->ifc_buf
, data
, ifc
->ifc_len
);
329 __vm_deallocate (__mach_task_self (), (vm_address_t
) data
, data_len
);
331 return err
? __hurd_dfail (fd
, err
) : 0;
333 _HURD_HANDLE_IOCTL (siocgifconf
, SIOCGIFCONF
);