1995-02-18 01:27:10 +00:00
|
|
|
|
/* ioctl commands which must be done in the C library.
|
2024-01-01 18:12:26 +00:00
|
|
|
|
Copyright (C) 1994-2024 Free Software Foundation, Inc.
|
1997-02-15 04:31:36 +00:00
|
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1997-02-15 04:31:36 +00:00
|
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:58:11 +00:00
|
|
|
|
Lesser General Public License for more details.
|
1997-02-15 04:31:36 +00:00
|
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
|
<https://www.gnu.org/licenses/>. */
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
|
|
#include <hurd.h>
|
|
|
|
|
#include <hurd/fd.h>
|
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
#include <hurd/ioctl.h>
|
2001-07-04 22:57:50 +00:00
|
|
|
|
#include <string.h>
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Symbol set of ioctl handler lists. If there are user-registered
|
|
|
|
|
handlers, one of these lists will contain them. The other lists are
|
|
|
|
|
handlers built into the library. */
|
|
|
|
|
symbol_set_define (_hurd_ioctl_handler_lists)
|
|
|
|
|
|
|
|
|
|
/* Look up REQUEST in the set of handlers. */
|
|
|
|
|
ioctl_handler_t
|
|
|
|
|
_hurd_lookup_ioctl_handler (int request)
|
|
|
|
|
{
|
|
|
|
|
void *const *ptr;
|
|
|
|
|
const struct ioctl_handler *h;
|
|
|
|
|
|
1996-02-16 02:19:52 +00:00
|
|
|
|
/* Mask off the type bits, so that we see requests in a single group as a
|
|
|
|
|
contiguous block of values. */
|
|
|
|
|
request = _IOC_NOTYPE (request);
|
|
|
|
|
|
1995-02-18 01:27:10 +00:00
|
|
|
|
for (ptr = symbol_set_first_element (_hurd_ioctl_handler_lists);
|
|
|
|
|
!symbol_set_end_p (_hurd_ioctl_handler_lists, ptr);
|
|
|
|
|
++ptr)
|
|
|
|
|
for (h = *ptr; h != NULL; h = h->next)
|
|
|
|
|
if (request >= h->first_request && request <= h->last_request)
|
|
|
|
|
return h->handler;
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
|
|
/* Find out how many bytes may be read from FD without blocking. */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
fioctl (int fd,
|
|
|
|
|
int request,
|
|
|
|
|
int *arg)
|
|
|
|
|
{
|
|
|
|
|
error_t err;
|
|
|
|
|
|
|
|
|
|
*(volatile int *) arg = *arg;
|
|
|
|
|
|
|
|
|
|
switch (request)
|
|
|
|
|
{
|
|
|
|
|
default:
|
1996-02-16 02:19:52 +00:00
|
|
|
|
err = ENOTTY;
|
1995-02-18 01:27:10 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case FIONREAD:
|
|
|
|
|
{
|
2022-08-28 23:42:47 +00:00
|
|
|
|
vm_size_t navail;
|
1995-02-18 01:27:10 +00:00
|
|
|
|
err = HURD_DPORT_USE (fd, __io_readable (port, &navail));
|
|
|
|
|
if (!err)
|
|
|
|
|
*arg = (int) navail;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case FIONBIO:
|
Break some lines before not after operators.
The GNU Coding Standards specify that line breaks in expressions
should go before an operator, not after one. This patch fixes various
code to do this. It only changes code that appears to be mostly
following GNU style anyway, not files and directories with
substantially different formatting. It is not exhaustive even for
files using GNU style (for example, changes to sysdeps files are
deferred for subsequent cleanups). Some files changed are shared with
gnulib, but most are specific to glibc. Changes were made manually,
with places to change found by grep (so some cases, e.g. where the
operator was followed by a comment at end of line, are particularly
liable to have been missed by grep, but I did include cases where the
operator was followed by backslash-newline).
This patch generally does not attempt to address other coding style
issues in the expressions changed (for example, missing spaces before
'(', or lack of parentheses to ensure indentation of continuation
lines properly reflects operator precedence).
Tested for x86_64, and with build-many-glibcs.py.
* benchtests/bench-memmem.c (simple_memmem): Break lines before
rather than after operators.
* benchtests/bench-skeleton.c (TIMESPEC_AFTER): Likewise.
* crypt/md5.c (md5_finish_ctx): Likewise.
* crypt/sha256.c (__sha256_finish_ctx): Likewise.
* crypt/sha512.c (__sha512_finish_ctx): Likewise.
* elf/cache.c (load_aux_cache): Likewise.
* elf/dl-load.c (open_verify): Likewise.
* elf/get-dynamic-info.h (elf_get_dynamic_info): Likewise.
* elf/readelflib.c (process_elf_file): Likewise.
* elf/rtld.c (dl_main): Likewise.
* elf/sprof.c (generate_call_graph): Likewise.
* hurd/ctty-input.c (_hurd_ctty_input): Likewise.
* hurd/ctty-output.c (_hurd_ctty_output): Likewise.
* hurd/dtable.c (reauth_dtable): Likewise.
* hurd/getdport.c (__getdport): Likewise.
* hurd/hurd/signal.h (_hurd_interrupted_rpc_timeout): Likewise.
* hurd/hurd/sigpreempt.h (HURD_PREEMPT_SIGNAL_P): Likewise.
* hurd/hurdfault.c (_hurdsig_fault_catch_exception_raise):
Likewise.
* hurd/hurdioctl.c (fioctl): Likewise.
* hurd/hurdselect.c (_hurd_select): Likewise.
* hurd/hurdsig.c (_hurdsig_abort_rpcs): Likewise.
(STOPSIGS): Likewise.
* hurd/hurdstartup.c (_hurd_startup): Likewise.
* hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): Likewise.
* hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Likewise.
* hurd/msgportdemux.c (msgport_server): Likewise.
* hurd/setauth.c (_hurd_setauth): Likewise.
* include/features.h (__GLIBC_USE_DEPRECATED_SCANF): Likewise.
* libio/libioP.h [IO_DEBUG] (CHECK_FILE): Likewise.
* locale/programs/ld-ctype.c (set_class_defaults): Likewise.
* localedata/tests-mbwc/tst_swscanf.c (tst_swscanf): Likewise.
* login/tst-utmp.c (do_check): Likewise.
(simulate_login): Likewise.
* mach/lowlevellock.h (lll_lock): Likewise.
(lll_trylock): Likewise.
* math/test-fenv.c (ALL_EXC): Likewise.
* math/test-fenvinline.c (ALL_EXC): Likewise.
* misc/sys/cdefs.h (__attribute_deprecated_msg__): Likewise.
* nis/nis_call.c (__do_niscall3): Likewise.
* nis/nis_callback.c (cb_prog_1): Likewise.
* nis/nis_defaults.c (searchaccess): Likewise.
* nis/nis_findserv.c (__nis_findfastest_with_timeout): Likewise.
* nis/nis_ismember.c (internal_ismember): Likewise.
* nis/nis_local_names.c (nis_local_principal): Likewise.
* nis/nss_nis/nis-rpc.c (_nss_nis_getrpcbyname_r): Likewise.
* nis/nss_nisplus/nisplus-netgrp.c (_nss_nisplus_getnetgrent_r):
Likewise.
* nis/ypclnt.c (yp_match): Likewise.
(yp_first): Likewise.
(yp_next): Likewise.
(yp_master): Likewise.
(yp_order): Likewise.
* nscd/hstcache.c (cache_addhst): Likewise.
* nscd/initgrcache.c (addinitgroupsX): Likewise.
* nss/nss_compat/compat-pwd.c (copy_pwd_changes): Likewise.
(internal_getpwuid_r): Likewise.
* nss/nss_compat/compat-spwd.c (copy_spwd_changes): Likewise.
* posix/glob.h (__GLOB_FLAGS): Likewise.
* posix/regcomp.c (peek_token): Likewise.
(peek_token_bracket): Likewise.
(parse_expression): Likewise.
* posix/regexec.c (sift_states_iter_mb): Likewise.
(check_node_accept_bytes): Likewise.
* posix/tst-spawn3.c (do_test): Likewise.
* posix/wordexp-test.c (testit): Likewise.
* posix/wordexp.c (parse_tilde): Likewise.
(exec_comm): Likewise.
* posix/wordexp.h (__WRDE_FLAGS): Likewise.
* resource/vtimes.c (TIMEVAL_TO_VTIMES): Likewise.
* setjmp/sigjmp.c (__sigjmp_save): Likewise.
* stdio-common/printf_fp.c (__printf_fp_l): Likewise.
* stdio-common/tst-fileno.c (do_test): Likewise.
* stdio-common/vfprintf-internal.c (vfprintf): Likewise.
* stdlib/strfmon_l.c (__vstrfmon_l_internal): Likewise.
* stdlib/strtod_l.c (round_and_return): Likewise.
(____STRTOF_INTERNAL): Likewise.
* stdlib/tst-strfrom.h (TEST_STRFROM): Likewise.
* string/strcspn.c (STRCSPN): Likewise.
* string/test-memmem.c (simple_memmem): Likewise.
* termios/tcsetattr.c (tcsetattr): Likewise.
* time/alt_digit.c (_nl_parse_alt_digit): Likewise.
* time/asctime.c (asctime_internal): Likewise.
* time/strptime_l.c (__strptime_internal): Likewise.
* time/sys/time.h (timercmp): Likewise.
* time/tzfile.c (__tzfile_compute): Likewise.
2019-02-22 01:32:36 +00:00
|
|
|
|
err = HURD_DPORT_USE (fd, (*arg
|
|
|
|
|
? __io_set_some_openmodes
|
|
|
|
|
: __io_clear_some_openmodes)
|
1995-02-18 01:27:10 +00:00
|
|
|
|
(port, O_NONBLOCK));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case FIOASYNC:
|
Break some lines before not after operators.
The GNU Coding Standards specify that line breaks in expressions
should go before an operator, not after one. This patch fixes various
code to do this. It only changes code that appears to be mostly
following GNU style anyway, not files and directories with
substantially different formatting. It is not exhaustive even for
files using GNU style (for example, changes to sysdeps files are
deferred for subsequent cleanups). Some files changed are shared with
gnulib, but most are specific to glibc. Changes were made manually,
with places to change found by grep (so some cases, e.g. where the
operator was followed by a comment at end of line, are particularly
liable to have been missed by grep, but I did include cases where the
operator was followed by backslash-newline).
This patch generally does not attempt to address other coding style
issues in the expressions changed (for example, missing spaces before
'(', or lack of parentheses to ensure indentation of continuation
lines properly reflects operator precedence).
Tested for x86_64, and with build-many-glibcs.py.
* benchtests/bench-memmem.c (simple_memmem): Break lines before
rather than after operators.
* benchtests/bench-skeleton.c (TIMESPEC_AFTER): Likewise.
* crypt/md5.c (md5_finish_ctx): Likewise.
* crypt/sha256.c (__sha256_finish_ctx): Likewise.
* crypt/sha512.c (__sha512_finish_ctx): Likewise.
* elf/cache.c (load_aux_cache): Likewise.
* elf/dl-load.c (open_verify): Likewise.
* elf/get-dynamic-info.h (elf_get_dynamic_info): Likewise.
* elf/readelflib.c (process_elf_file): Likewise.
* elf/rtld.c (dl_main): Likewise.
* elf/sprof.c (generate_call_graph): Likewise.
* hurd/ctty-input.c (_hurd_ctty_input): Likewise.
* hurd/ctty-output.c (_hurd_ctty_output): Likewise.
* hurd/dtable.c (reauth_dtable): Likewise.
* hurd/getdport.c (__getdport): Likewise.
* hurd/hurd/signal.h (_hurd_interrupted_rpc_timeout): Likewise.
* hurd/hurd/sigpreempt.h (HURD_PREEMPT_SIGNAL_P): Likewise.
* hurd/hurdfault.c (_hurdsig_fault_catch_exception_raise):
Likewise.
* hurd/hurdioctl.c (fioctl): Likewise.
* hurd/hurdselect.c (_hurd_select): Likewise.
* hurd/hurdsig.c (_hurdsig_abort_rpcs): Likewise.
(STOPSIGS): Likewise.
* hurd/hurdstartup.c (_hurd_startup): Likewise.
* hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): Likewise.
* hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Likewise.
* hurd/msgportdemux.c (msgport_server): Likewise.
* hurd/setauth.c (_hurd_setauth): Likewise.
* include/features.h (__GLIBC_USE_DEPRECATED_SCANF): Likewise.
* libio/libioP.h [IO_DEBUG] (CHECK_FILE): Likewise.
* locale/programs/ld-ctype.c (set_class_defaults): Likewise.
* localedata/tests-mbwc/tst_swscanf.c (tst_swscanf): Likewise.
* login/tst-utmp.c (do_check): Likewise.
(simulate_login): Likewise.
* mach/lowlevellock.h (lll_lock): Likewise.
(lll_trylock): Likewise.
* math/test-fenv.c (ALL_EXC): Likewise.
* math/test-fenvinline.c (ALL_EXC): Likewise.
* misc/sys/cdefs.h (__attribute_deprecated_msg__): Likewise.
* nis/nis_call.c (__do_niscall3): Likewise.
* nis/nis_callback.c (cb_prog_1): Likewise.
* nis/nis_defaults.c (searchaccess): Likewise.
* nis/nis_findserv.c (__nis_findfastest_with_timeout): Likewise.
* nis/nis_ismember.c (internal_ismember): Likewise.
* nis/nis_local_names.c (nis_local_principal): Likewise.
* nis/nss_nis/nis-rpc.c (_nss_nis_getrpcbyname_r): Likewise.
* nis/nss_nisplus/nisplus-netgrp.c (_nss_nisplus_getnetgrent_r):
Likewise.
* nis/ypclnt.c (yp_match): Likewise.
(yp_first): Likewise.
(yp_next): Likewise.
(yp_master): Likewise.
(yp_order): Likewise.
* nscd/hstcache.c (cache_addhst): Likewise.
* nscd/initgrcache.c (addinitgroupsX): Likewise.
* nss/nss_compat/compat-pwd.c (copy_pwd_changes): Likewise.
(internal_getpwuid_r): Likewise.
* nss/nss_compat/compat-spwd.c (copy_spwd_changes): Likewise.
* posix/glob.h (__GLOB_FLAGS): Likewise.
* posix/regcomp.c (peek_token): Likewise.
(peek_token_bracket): Likewise.
(parse_expression): Likewise.
* posix/regexec.c (sift_states_iter_mb): Likewise.
(check_node_accept_bytes): Likewise.
* posix/tst-spawn3.c (do_test): Likewise.
* posix/wordexp-test.c (testit): Likewise.
* posix/wordexp.c (parse_tilde): Likewise.
(exec_comm): Likewise.
* posix/wordexp.h (__WRDE_FLAGS): Likewise.
* resource/vtimes.c (TIMEVAL_TO_VTIMES): Likewise.
* setjmp/sigjmp.c (__sigjmp_save): Likewise.
* stdio-common/printf_fp.c (__printf_fp_l): Likewise.
* stdio-common/tst-fileno.c (do_test): Likewise.
* stdio-common/vfprintf-internal.c (vfprintf): Likewise.
* stdlib/strfmon_l.c (__vstrfmon_l_internal): Likewise.
* stdlib/strtod_l.c (round_and_return): Likewise.
(____STRTOF_INTERNAL): Likewise.
* stdlib/tst-strfrom.h (TEST_STRFROM): Likewise.
* string/strcspn.c (STRCSPN): Likewise.
* string/test-memmem.c (simple_memmem): Likewise.
* termios/tcsetattr.c (tcsetattr): Likewise.
* time/alt_digit.c (_nl_parse_alt_digit): Likewise.
* time/asctime.c (asctime_internal): Likewise.
* time/strptime_l.c (__strptime_internal): Likewise.
* time/sys/time.h (timercmp): Likewise.
* time/tzfile.c (__tzfile_compute): Likewise.
2019-02-22 01:32:36 +00:00
|
|
|
|
err = HURD_DPORT_USE (fd, (*arg
|
|
|
|
|
? __io_set_some_openmodes
|
|
|
|
|
: __io_clear_some_openmodes)
|
1995-02-18 01:27:10 +00:00
|
|
|
|
(port, O_ASYNC));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case FIOSETOWN:
|
|
|
|
|
err = HURD_DPORT_USE (fd, __io_mod_owner (port, *arg));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case FIOGETOWN:
|
|
|
|
|
err = HURD_DPORT_USE (fd, __io_get_owner (port, arg));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
1996-02-16 02:19:52 +00:00
|
|
|
|
return err ? __hurd_dfail (fd, err) : 0;
|
1995-02-18 01:27:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_HURD_HANDLE_IOCTLS (fioctl, FIOGETOWN, FIONREAD);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
fioclex (int fd,
|
|
|
|
|
int request)
|
|
|
|
|
{
|
|
|
|
|
int flag;
|
|
|
|
|
|
|
|
|
|
switch (request)
|
|
|
|
|
{
|
|
|
|
|
default:
|
1996-02-16 02:19:52 +00:00
|
|
|
|
return __hurd_fail (ENOTTY);
|
1995-02-18 01:27:10 +00:00
|
|
|
|
case FIOCLEX:
|
|
|
|
|
flag = FD_CLOEXEC;
|
|
|
|
|
break;
|
|
|
|
|
case FIONCLEX:
|
|
|
|
|
flag = 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return __fcntl (fd, F_SETFD, flag);
|
|
|
|
|
}
|
1996-02-16 15:14:24 +00:00
|
|
|
|
_HURD_HANDLE_IOCTLS (fioclex, FIOCLEX, FIONCLEX);
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
|
|
#include <hurd/term.h>
|
1996-02-09 10:00:23 +00:00
|
|
|
|
#include <hurd/tioctl.h>
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
1999-11-18 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdsig.c (_hurdsig_init): If __hurd_threadvar_stack_mask is
nonzero, use cthread_fork to create the signal thread.
* hurd/msgportdemux.c (_hurd_msgport_receive): Initialize
_hurd_msgport_thread here (to self).
* sysdeps/mach/hurd/fork.c (__fork): When __hurd_sigthread_stack_end
is zero, instead compute child signal thread's starting SP from parent
signal thread's current SP and the threadvar_stack variables.
* hurd/Versions (GLIBC_2.1.3): Add cthread_fork, cthread_detach.
These are now referenced weakly by _hurdsig_init.
* hurd/report-wait.c (_S_msg_report_wait): Fix typo:
&_hurd_itimer_thread not &_hurd_msgport_thread.
1999-10-01 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdfchdir.c (_hurd_change_directory_port_from_fd): Rewrite
without HURD_DPORT_USE to clean up warnings.
* hurd/dtable.c (get_dtable_port): Likewise.
* hurd/hurdioctl.c (rectty_dtable): Renamed to install_ctty.
(install_ctty): Do the changing of the cttyid port cell here, inside
the critical section while we holding the dtable lock.
(_hurd_setcttyid, tiocsctty, tiocnotty): Use that instead of changing
the port cell and calling rectty_dtable.
(_hurd_locked_install_cttyid): New function, split out of install_ctty.
(install_ctty): Use it inside a critical section, with the lock held.
* sysdeps/mach/hurd/setsid.c (__setsid): Use
_hurd_locked_install_cttyid to effect the cttyid and dtable changes
after proc_setsid, having held the dtable lock throughout.
* hurd/dtable.c (ctty_new_pgrp): With the dtable lock held, check the
cttyid port for null and bail out early if so. The dtable lock
serializes us after any cttyid change and its associated dtable update.
1999-12-03 05:01:23 +00:00
|
|
|
|
/* Install a new CTTYID port, atomically updating the dtable appropriately.
|
|
|
|
|
This consumes the send right passed in. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
_hurd_locked_install_cttyid (mach_port_t cttyid)
|
1995-02-18 01:27:10 +00:00
|
|
|
|
{
|
1999-11-18 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdsig.c (_hurdsig_init): If __hurd_threadvar_stack_mask is
nonzero, use cthread_fork to create the signal thread.
* hurd/msgportdemux.c (_hurd_msgport_receive): Initialize
_hurd_msgport_thread here (to self).
* sysdeps/mach/hurd/fork.c (__fork): When __hurd_sigthread_stack_end
is zero, instead compute child signal thread's starting SP from parent
signal thread's current SP and the threadvar_stack variables.
* hurd/Versions (GLIBC_2.1.3): Add cthread_fork, cthread_detach.
These are now referenced weakly by _hurdsig_init.
* hurd/report-wait.c (_S_msg_report_wait): Fix typo:
&_hurd_itimer_thread not &_hurd_msgport_thread.
1999-10-01 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdfchdir.c (_hurd_change_directory_port_from_fd): Rewrite
without HURD_DPORT_USE to clean up warnings.
* hurd/dtable.c (get_dtable_port): Likewise.
* hurd/hurdioctl.c (rectty_dtable): Renamed to install_ctty.
(install_ctty): Do the changing of the cttyid port cell here, inside
the critical section while we holding the dtable lock.
(_hurd_setcttyid, tiocsctty, tiocnotty): Use that instead of changing
the port cell and calling rectty_dtable.
(_hurd_locked_install_cttyid): New function, split out of install_ctty.
(install_ctty): Use it inside a critical section, with the lock held.
* sysdeps/mach/hurd/setsid.c (__setsid): Use
_hurd_locked_install_cttyid to effect the cttyid and dtable changes
after proc_setsid, having held the dtable lock throughout.
* hurd/dtable.c (ctty_new_pgrp): With the dtable lock held, check the
cttyid port for null and bail out early if so. The dtable lock
serializes us after any cttyid change and its associated dtable update.
1999-12-03 05:01:23 +00:00
|
|
|
|
mach_port_t old;
|
|
|
|
|
struct hurd_port *const port = &_hurd_ports[INIT_PORT_CTTYID];
|
|
|
|
|
struct hurd_userlink ulink;
|
1995-02-18 01:27:10 +00:00
|
|
|
|
int i;
|
1996-02-09 10:00:23 +00:00
|
|
|
|
|
1999-11-18 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdsig.c (_hurdsig_init): If __hurd_threadvar_stack_mask is
nonzero, use cthread_fork to create the signal thread.
* hurd/msgportdemux.c (_hurd_msgport_receive): Initialize
_hurd_msgport_thread here (to self).
* sysdeps/mach/hurd/fork.c (__fork): When __hurd_sigthread_stack_end
is zero, instead compute child signal thread's starting SP from parent
signal thread's current SP and the threadvar_stack variables.
* hurd/Versions (GLIBC_2.1.3): Add cthread_fork, cthread_detach.
These are now referenced weakly by _hurdsig_init.
* hurd/report-wait.c (_S_msg_report_wait): Fix typo:
&_hurd_itimer_thread not &_hurd_msgport_thread.
1999-10-01 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdfchdir.c (_hurd_change_directory_port_from_fd): Rewrite
without HURD_DPORT_USE to clean up warnings.
* hurd/dtable.c (get_dtable_port): Likewise.
* hurd/hurdioctl.c (rectty_dtable): Renamed to install_ctty.
(install_ctty): Do the changing of the cttyid port cell here, inside
the critical section while we holding the dtable lock.
(_hurd_setcttyid, tiocsctty, tiocnotty): Use that instead of changing
the port cell and calling rectty_dtable.
(_hurd_locked_install_cttyid): New function, split out of install_ctty.
(install_ctty): Use it inside a critical section, with the lock held.
* sysdeps/mach/hurd/setsid.c (__setsid): Use
_hurd_locked_install_cttyid to effect the cttyid and dtable changes
after proc_setsid, having held the dtable lock throughout.
* hurd/dtable.c (ctty_new_pgrp): With the dtable lock held, check the
cttyid port for null and bail out early if so. The dtable lock
serializes us after any cttyid change and its associated dtable update.
1999-12-03 05:01:23 +00:00
|
|
|
|
/* Install the new cttyid port, and preserve it with a ulink.
|
|
|
|
|
We unroll the _hurd_port_set + _hurd_port_get here so that
|
|
|
|
|
there is no window where the cell is unlocked and CTTYID could
|
|
|
|
|
be changed by another thread. (We also delay the deallocation
|
|
|
|
|
of the old port until the end, to minimize the duration of the
|
|
|
|
|
critical section.)
|
|
|
|
|
|
|
|
|
|
It is important that changing the cttyid port is only ever done by
|
|
|
|
|
holding the dtable lock continuously while updating the port cell and
|
|
|
|
|
re-ctty'ing the dtable; dtable.c assumes we do this. Otherwise, the
|
|
|
|
|
pgrp-change notification code in dtable.c has to worry about racing
|
|
|
|
|
against us here in odd situations. The one exception to this is
|
|
|
|
|
setsid, which holds the dtable lock while changing the pgrp and
|
|
|
|
|
clearing the cttyid port, and then unlocks the dtable lock to allow
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
__spin_lock (&port->lock);
|
|
|
|
|
old = _hurd_userlink_clear (&port->users) ? port->port : MACH_PORT_NULL;
|
|
|
|
|
port->port = cttyid;
|
|
|
|
|
cttyid = _hurd_port_locked_get (port, &ulink);
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
|
|
for (i = 0; i < _hurd_dtablesize; ++i)
|
|
|
|
|
{
|
|
|
|
|
struct hurd_fd *const d = _hurd_dtable[i];
|
2009-12-22 19:51:44 +00:00
|
|
|
|
mach_port_t newctty = MACH_PORT_NULL;
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
|
|
if (d == NULL)
|
|
|
|
|
/* Nothing to do for an unused descriptor cell. */
|
|
|
|
|
continue;
|
|
|
|
|
|
2009-12-22 19:51:44 +00:00
|
|
|
|
if (cttyid != MACH_PORT_NULL)
|
|
|
|
|
/* We do have some controlling tty. */
|
1995-02-18 01:27:10 +00:00
|
|
|
|
HURD_PORT_USE (&d->port,
|
|
|
|
|
({ mach_port_t id;
|
|
|
|
|
/* Get the io object's cttyid port. */
|
|
|
|
|
if (! __term_getctty (port, &id))
|
|
|
|
|
{
|
2009-12-22 19:51:44 +00:00
|
|
|
|
if (id == cttyid /* Is it ours? */
|
1995-02-18 01:27:10 +00:00
|
|
|
|
/* Get the ctty io port. */
|
2009-12-22 19:51:44 +00:00
|
|
|
|
&& __term_open_ctty (port,
|
|
|
|
|
_hurd_pid, _hurd_pgrp,
|
|
|
|
|
&newctty))
|
1995-02-18 01:27:10 +00:00
|
|
|
|
/* XXX it is our ctty but the call failed? */
|
|
|
|
|
newctty = MACH_PORT_NULL;
|
2009-12-22 19:51:44 +00:00
|
|
|
|
__mach_port_deallocate (__mach_task_self (), id);
|
1995-02-18 01:27:10 +00:00
|
|
|
|
}
|
|
|
|
|
0;
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
/* Install the new ctty port. */
|
|
|
|
|
_hurd_port_set (&d->ctty, newctty);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
__mutex_unlock (&_hurd_dtable_lock);
|
1999-11-18 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdsig.c (_hurdsig_init): If __hurd_threadvar_stack_mask is
nonzero, use cthread_fork to create the signal thread.
* hurd/msgportdemux.c (_hurd_msgport_receive): Initialize
_hurd_msgport_thread here (to self).
* sysdeps/mach/hurd/fork.c (__fork): When __hurd_sigthread_stack_end
is zero, instead compute child signal thread's starting SP from parent
signal thread's current SP and the threadvar_stack variables.
* hurd/Versions (GLIBC_2.1.3): Add cthread_fork, cthread_detach.
These are now referenced weakly by _hurdsig_init.
* hurd/report-wait.c (_S_msg_report_wait): Fix typo:
&_hurd_itimer_thread not &_hurd_msgport_thread.
1999-10-01 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdfchdir.c (_hurd_change_directory_port_from_fd): Rewrite
without HURD_DPORT_USE to clean up warnings.
* hurd/dtable.c (get_dtable_port): Likewise.
* hurd/hurdioctl.c (rectty_dtable): Renamed to install_ctty.
(install_ctty): Do the changing of the cttyid port cell here, inside
the critical section while we holding the dtable lock.
(_hurd_setcttyid, tiocsctty, tiocnotty): Use that instead of changing
the port cell and calling rectty_dtable.
(_hurd_locked_install_cttyid): New function, split out of install_ctty.
(install_ctty): Use it inside a critical section, with the lock held.
* sysdeps/mach/hurd/setsid.c (__setsid): Use
_hurd_locked_install_cttyid to effect the cttyid and dtable changes
after proc_setsid, having held the dtable lock throughout.
* hurd/dtable.c (ctty_new_pgrp): With the dtable lock held, check the
cttyid port for null and bail out early if so. The dtable lock
serializes us after any cttyid change and its associated dtable update.
1999-12-03 05:01:23 +00:00
|
|
|
|
|
|
|
|
|
if (old != MACH_PORT_NULL)
|
|
|
|
|
__mach_port_deallocate (__mach_task_self (), old);
|
|
|
|
|
_hurd_port_free (port, &ulink, cttyid);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
install_ctty (mach_port_t cttyid)
|
|
|
|
|
{
|
|
|
|
|
HURD_CRITICAL_BEGIN;
|
|
|
|
|
__mutex_lock (&_hurd_dtable_lock);
|
|
|
|
|
_hurd_locked_install_cttyid (cttyid);
|
1995-02-18 01:27:10 +00:00
|
|
|
|
HURD_CRITICAL_END;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Called when we have received a message saying to use a new ctty ID port. */
|
|
|
|
|
|
|
|
|
|
error_t
|
|
|
|
|
_hurd_setcttyid (mach_port_t cttyid)
|
|
|
|
|
{
|
|
|
|
|
error_t err;
|
|
|
|
|
|
|
|
|
|
if (cttyid != MACH_PORT_NULL)
|
|
|
|
|
{
|
|
|
|
|
/* Give the new send right a user reference.
|
|
|
|
|
This is a good way to check that it is valid. */
|
|
|
|
|
if (err = __mach_port_mod_refs (__mach_task_self (), cttyid,
|
|
|
|
|
MACH_PORT_RIGHT_SEND, 1))
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Install the port, consuming the reference we just created. */
|
1999-11-18 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdsig.c (_hurdsig_init): If __hurd_threadvar_stack_mask is
nonzero, use cthread_fork to create the signal thread.
* hurd/msgportdemux.c (_hurd_msgport_receive): Initialize
_hurd_msgport_thread here (to self).
* sysdeps/mach/hurd/fork.c (__fork): When __hurd_sigthread_stack_end
is zero, instead compute child signal thread's starting SP from parent
signal thread's current SP and the threadvar_stack variables.
* hurd/Versions (GLIBC_2.1.3): Add cthread_fork, cthread_detach.
These are now referenced weakly by _hurdsig_init.
* hurd/report-wait.c (_S_msg_report_wait): Fix typo:
&_hurd_itimer_thread not &_hurd_msgport_thread.
1999-10-01 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdfchdir.c (_hurd_change_directory_port_from_fd): Rewrite
without HURD_DPORT_USE to clean up warnings.
* hurd/dtable.c (get_dtable_port): Likewise.
* hurd/hurdioctl.c (rectty_dtable): Renamed to install_ctty.
(install_ctty): Do the changing of the cttyid port cell here, inside
the critical section while we holding the dtable lock.
(_hurd_setcttyid, tiocsctty, tiocnotty): Use that instead of changing
the port cell and calling rectty_dtable.
(_hurd_locked_install_cttyid): New function, split out of install_ctty.
(install_ctty): Use it inside a critical section, with the lock held.
* sysdeps/mach/hurd/setsid.c (__setsid): Use
_hurd_locked_install_cttyid to effect the cttyid and dtable changes
after proc_setsid, having held the dtable lock throughout.
* hurd/dtable.c (ctty_new_pgrp): With the dtable lock held, check the
cttyid port for null and bail out early if so. The dtable lock
serializes us after any cttyid change and its associated dtable update.
1999-12-03 05:01:23 +00:00
|
|
|
|
install_ctty (cttyid);
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2010-02-17 20:41:11 +00:00
|
|
|
|
static inline error_t
|
|
|
|
|
do_tiocsctty (io_t port, io_t ctty)
|
1995-02-18 01:27:10 +00:00
|
|
|
|
{
|
|
|
|
|
mach_port_t cttyid;
|
|
|
|
|
error_t err;
|
|
|
|
|
|
2010-02-17 20:41:11 +00:00
|
|
|
|
if (ctty != MACH_PORT_NULL)
|
|
|
|
|
/* PORT is already the ctty. Nothing to do. */
|
1995-02-18 01:27:10 +00:00
|
|
|
|
return 0;
|
2010-02-17 20:41:11 +00:00
|
|
|
|
|
|
|
|
|
/* Get PORT's cttyid port. */
|
|
|
|
|
err = __term_getctty (port, &cttyid);
|
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
1996-02-09 10:00:23 +00:00
|
|
|
|
/* Change the terminal's pgrp to ours. */
|
2010-02-17 20:41:11 +00:00
|
|
|
|
err = __tioctl_tiocspgrp (port, _hurd_pgrp);
|
1996-02-09 10:00:23 +00:00
|
|
|
|
if (err)
|
2010-02-17 20:41:11 +00:00
|
|
|
|
__mach_port_deallocate (__mach_task_self (), cttyid);
|
|
|
|
|
else
|
|
|
|
|
/* Make it our own. */
|
|
|
|
|
install_ctty (cttyid);
|
1996-02-09 10:00:23 +00:00
|
|
|
|
|
2010-02-17 20:41:11 +00:00
|
|
|
|
return err;
|
|
|
|
|
}
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
2010-02-17 20:41:11 +00:00
|
|
|
|
/* Make FD be the controlling terminal.
|
|
|
|
|
This function is called for `ioctl (fd, TCIOSCTTY)'. */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
tiocsctty (int fd,
|
|
|
|
|
int request) /* Always TIOCSCTTY. */
|
|
|
|
|
{
|
2010-02-19 19:08:00 +00:00
|
|
|
|
return __hurd_fail (HURD_DPORT_USE (fd, do_tiocsctty (port, ctty)));
|
1995-02-18 01:27:10 +00:00
|
|
|
|
}
|
|
|
|
|
_HURD_HANDLE_IOCTL (tiocsctty, TIOCSCTTY);
|
|
|
|
|
|
|
|
|
|
/* Dissociate from the controlling terminal. */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
tiocnotty (int fd,
|
|
|
|
|
int request) /* Always TIOCNOTTY. */
|
|
|
|
|
{
|
|
|
|
|
mach_port_t fd_cttyid;
|
|
|
|
|
error_t err;
|
|
|
|
|
|
|
|
|
|
if (err = HURD_DPORT_USE (fd, __term_getctty (port, &fd_cttyid)))
|
|
|
|
|
return __hurd_fail (err);
|
|
|
|
|
|
|
|
|
|
if (__USEPORT (CTTYID, port != fd_cttyid))
|
|
|
|
|
err = EINVAL;
|
|
|
|
|
|
|
|
|
|
__mach_port_deallocate (__mach_task_self (), fd_cttyid);
|
|
|
|
|
|
|
|
|
|
if (err)
|
|
|
|
|
return __hurd_fail (err);
|
|
|
|
|
|
1999-11-18 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdsig.c (_hurdsig_init): If __hurd_threadvar_stack_mask is
nonzero, use cthread_fork to create the signal thread.
* hurd/msgportdemux.c (_hurd_msgport_receive): Initialize
_hurd_msgport_thread here (to self).
* sysdeps/mach/hurd/fork.c (__fork): When __hurd_sigthread_stack_end
is zero, instead compute child signal thread's starting SP from parent
signal thread's current SP and the threadvar_stack variables.
* hurd/Versions (GLIBC_2.1.3): Add cthread_fork, cthread_detach.
These are now referenced weakly by _hurdsig_init.
* hurd/report-wait.c (_S_msg_report_wait): Fix typo:
&_hurd_itimer_thread not &_hurd_msgport_thread.
1999-10-01 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdfchdir.c (_hurd_change_directory_port_from_fd): Rewrite
without HURD_DPORT_USE to clean up warnings.
* hurd/dtable.c (get_dtable_port): Likewise.
* hurd/hurdioctl.c (rectty_dtable): Renamed to install_ctty.
(install_ctty): Do the changing of the cttyid port cell here, inside
the critical section while we holding the dtable lock.
(_hurd_setcttyid, tiocsctty, tiocnotty): Use that instead of changing
the port cell and calling rectty_dtable.
(_hurd_locked_install_cttyid): New function, split out of install_ctty.
(install_ctty): Use it inside a critical section, with the lock held.
* sysdeps/mach/hurd/setsid.c (__setsid): Use
_hurd_locked_install_cttyid to effect the cttyid and dtable changes
after proc_setsid, having held the dtable lock throughout.
* hurd/dtable.c (ctty_new_pgrp): With the dtable lock held, check the
cttyid port for null and bail out early if so. The dtable lock
serializes us after any cttyid change and its associated dtable update.
1999-12-03 05:01:23 +00:00
|
|
|
|
/* Clear our cttyid port. */
|
|
|
|
|
install_ctty (MACH_PORT_NULL);
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
_HURD_HANDLE_IOCTL (tiocnotty, TIOCNOTTY);
|
2001-06-26 10:21:56 +00:00
|
|
|
|
|
|
|
|
|
#include <hurd/pfinet.h>
|
|
|
|
|
#include <net/if.h>
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
|
|
|
|
|
|
/* Fill in the buffer IFC->IFC_BUF of length IFC->IFC_LEN with a list
|
|
|
|
|
of ifr structures, one for each network interface. */
|
|
|
|
|
static int
|
|
|
|
|
siocgifconf (int fd, int request, struct ifconf *ifc)
|
|
|
|
|
{
|
|
|
|
|
error_t err;
|
2023-02-12 11:10:33 +00:00
|
|
|
|
mach_msg_type_number_t data_len = ifc->ifc_len;
|
2001-06-26 10:21:56 +00:00
|
|
|
|
char *data = ifc->ifc_buf;
|
|
|
|
|
|
|
|
|
|
if (data_len <= 0)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
err = HURD_DPORT_USE (fd, __pfinet_siocgifconf (port, ifc->ifc_len,
|
|
|
|
|
&data, &data_len));
|
|
|
|
|
if (data_len < ifc->ifc_len)
|
|
|
|
|
ifc->ifc_len = data_len;
|
|
|
|
|
if (data != ifc->ifc_buf)
|
|
|
|
|
{
|
|
|
|
|
memcpy (ifc->ifc_buf, data, ifc->ifc_len);
|
|
|
|
|
__vm_deallocate (__mach_task_self (), (vm_address_t) data, data_len);
|
|
|
|
|
}
|
|
|
|
|
return err ? __hurd_dfail (fd, err) : 0;
|
|
|
|
|
}
|
|
|
|
|
_HURD_HANDLE_IOCTL (siocgifconf, SIOCGIFCONF);
|