diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-06-28 00:15:56 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-06-28 00:38:46 +0000 |
commit | 67a78072e2891b8b16a7bfb20675844a5854cff1 (patch) | |
tree | 9eba275153b88aaca083b65c6c2d746f37f0f2e1 /hurd | |
parent | 6414eef6e013f46ee94d5f961af15659e1933182 (diff) | |
download | glibc-67a78072e2891b8b16a7bfb20675844a5854cff1.tar.gz glibc-67a78072e2891b8b16a7bfb20675844a5854cff1.tar.xz glibc-67a78072e2891b8b16a7bfb20675844a5854cff1.zip |
hurd: clean fd and port on thread cancel
HURD_*PORT_USE link fd and port with a stack-stored structure, so on thread cancel we need to cleanup this. * hurd/fd-cleanup.c: New file. * hurd/port-cleanup.c (_hurd_port_use_cleanup): New function. * hurd/Makefile (routines): Add fd-cleanup. * sysdeps/hurd/include/hurd.h (__USEPORT_CANCEL): New macro. * sysdeps/hurd/include/hurd/fd.h (_hurd_fd_port_use_data): New structure. (_hurd_fd_port_use_cleanup): New prototype. (HURD_DPORT_USE_CANCEL, HURD_FD_PORT_USE_CANCEL): New macros. * sysdeps/hurd/include/hurd/port.h (_hurd_port_use_data): New structure. (_hurd_port_use_cleanup): New prototype. (HURD_PORT_USE_CANCEL): New macro. * hurd/hurd/fd.h (HURD_FD_PORT_USE): Also refer to HURD_FD_PORT_USE_CANCEL. * hurd/hurd.h (__USEPORT): Also refer to __USEPORT_CANCEL. * hurd/hurd/port.h (HURD_PORT_USE): Also refer to HURD_PORT_USE_CANCEL. * hurd/fd-read.c (_hurd_fd_read): Call HURD_FD_PORT_USE_CANCEL instead of HURD_FD_PORT_USE. * hurd/fd-write.c (_hurd_fd_write): Likewise. * sysdeps/mach/hurd/send.c (__send): Call HURD_DPORT_USE_CANCEL instead of HURD_DPORT_USE. * sysdeps/mach/hurd/sendmsg.c (__libc_sendmsg): Likewise. * sysdeps/mach/hurd/sendto.c (__sendto): Likewise. * sysdeps/mach/hurd/recv.c (__recv): Likewise. * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Likewise. * sysdeps/mach/hurd/recvmsg.c (__libc_recvmsg): Call __USEPORT_CANCEL instead of __USEPORT, and HURD_DPORT_USE_CANCEL instead of HURD_DPORT_USE.
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/Makefile | 3 | ||||
-rw-r--r-- | hurd/fd-cleanup.c | 33 | ||||
-rw-r--r-- | hurd/fd-read.c | 2 | ||||
-rw-r--r-- | hurd/fd-write.c | 2 | ||||
-rw-r--r-- | hurd/hurd.h | 1 | ||||
-rw-r--r-- | hurd/hurd/fd.h | 1 | ||||
-rw-r--r-- | hurd/hurd/port.h | 1 | ||||
-rw-r--r-- | hurd/port-cleanup.c | 13 |
8 files changed, 52 insertions, 4 deletions
diff --git a/hurd/Makefile b/hurd/Makefile index 1ace90d10b..861bbf7842 100644 --- a/hurd/Makefile +++ b/hurd/Makefile @@ -56,7 +56,8 @@ routines = hurdstartup hurdinit \ ports-get ports-set hurdports hurdmsg \ errno-loc \ hurdlock \ - $(sig) $(dtable) $(inlines) port-cleanup report-wait xattr + $(sig) $(dtable) $(inlines) \ + fd-cleanup port-cleanup report-wait xattr sig = hurdsig hurdfault siginfo hurd-raise preempt-sig \ trampoline longjmp-ts catch-exc exc2signal hurdkill sigunwind \ thread-self thread-cancel intr-msg catch-signal diff --git a/hurd/fd-cleanup.c b/hurd/fd-cleanup.c new file mode 100644 index 0000000000..83bde6ff44 --- /dev/null +++ b/hurd/fd-cleanup.c @@ -0,0 +1,33 @@ +/* Cleanup function for `struct hurd_fd' users. + Copyright (C) 1995-2020 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + 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. + + 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + <https://www.gnu.org/licenses/>. */ + +#include <mach.h> +#include <hurd/fd.h> + +/* We were cancelled while using an fd, and called from the cleanup unwinding. + */ + +void +_hurd_fd_port_use_cleanup (void *arg) +{ + struct _hurd_fd_port_use_data *data = arg; + + _hurd_port_free (&data->d->port, &data->ulink, data->port); + if (data->ctty != MACH_PORT_NULL) + _hurd_port_free (&data->d->ctty, &data->ctty_ulink, data->ctty); +} diff --git a/hurd/fd-read.c b/hurd/fd-read.c index 11c435f491..1a8f20301e 100644 --- a/hurd/fd-read.c +++ b/hurd/fd-read.c @@ -35,7 +35,7 @@ _hurd_fd_read (struct hurd_fd *fd, void *buf, size_t *nbytes, loff_t offset) data = buf; nread = *nbytes; - if (err = HURD_FD_PORT_USE (fd, _hurd_ctty_input (port, ctty, readfd))) + if (err = HURD_FD_PORT_USE_CANCEL (fd, _hurd_ctty_input (port, ctty, readfd))) return err; if (data != buf) diff --git a/hurd/fd-write.c b/hurd/fd-write.c index f63bae5908..2463cea1c5 100644 --- a/hurd/fd-write.c +++ b/hurd/fd-write.c @@ -33,7 +33,7 @@ _hurd_fd_write (struct hurd_fd *fd, return __io_write (port, buf, *nbytes, offset, &wrote); } - err = HURD_FD_PORT_USE (fd, _hurd_ctty_output (port, ctty, writefd)); + err = HURD_FD_PORT_USE_CANCEL (fd, _hurd_ctty_output (port, ctty, writefd)); if (! err) *nbytes = wrote; diff --git a/hurd/hurd.h b/hurd/hurd.h index cd7a149c5e..8f1fdf4a64 100644 --- a/hurd/hurd.h +++ b/hurd/hurd.h @@ -92,6 +92,7 @@ extern sigset_t _hurdsig_traced; /* Shorthand macro for internal library code referencing _hurd_ports (see <hurd/port.h>). */ +/* Also see __USEPORT_CANCEL. */ #define __USEPORT(which, expr) \ HURD_PORT_USE (&_hurd_ports[INIT_PORT_##which], (expr)) diff --git a/hurd/hurd/fd.h b/hurd/hurd/fd.h index e18c3cef42..d27be21cfd 100644 --- a/hurd/hurd/fd.h +++ b/hurd/hurd/fd.h @@ -115,6 +115,7 @@ _hurd_fd_get (int fd) HURD_FD_USE ((fd), HURD_FD_PORT_USE (descriptor, (expr))) /* Likewise, but FD is a pointer to the file descriptor structure. */ +/* Also see HURD_FD_PORT_USE_CANCEL. */ #define HURD_FD_PORT_USE(fd, expr) \ ({ error_t __result; \ diff --git a/hurd/hurd/port.h b/hurd/hurd/port.h index 33e696a4b2..f91b1d5e26 100644 --- a/hurd/hurd/port.h +++ b/hurd/hurd/port.h @@ -42,6 +42,7 @@ struct hurd_port /* Evaluate EXPR with the variable `port' bound to the port in PORTCELL. */ +/* Also see HURD_PORT_USE_CANCEL. */ #define HURD_PORT_USE(portcell, expr) \ ({ struct hurd_port *const __p = (portcell); \ diff --git a/hurd/port-cleanup.c b/hurd/port-cleanup.c index 0bb8267743..95b019c4c0 100644 --- a/hurd/port-cleanup.c +++ b/hurd/port-cleanup.c @@ -1,4 +1,4 @@ -/* Cleanup function for `struct hurd_port' users who longjmp. +/* Cleanup function for `struct hurd_port' users. Copyright (C) 1995-2020 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -28,3 +28,14 @@ _hurd_port_cleanup (void *cleanup_data, jmp_buf env, int val) { __mach_port_deallocate (__mach_task_self (), (mach_port_t) cleanup_data); } + +/* We were cancelled while using a port, and called from the cleanup unwinding. + */ + +void +_hurd_port_use_cleanup (void *arg) +{ + struct _hurd_port_use_data *data = arg; + + _hurd_port_free (data->p, &data->link, data->port); +} |