2021-06-22 07:50:27 +00:00
|
|
|
/* Cancel requests associated with given file descriptor.
|
2023-01-06 21:08:04 +00:00
|
|
|
Copyright (C) 1997-2023 Free Software Foundation, Inc.
|
1997-06-23 21:55:26 +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-06-23 21:55:26 +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-06-23 21:55:26 +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
|
|
|
|
|
|
|
|
2005-12-14 08:43:25 +00:00
|
|
|
/* We use an UGLY hack to prevent gcc from finding us cheating. The
|
|
|
|
implementation of aio_cancel and aio_cancel64 are identical and so
|
|
|
|
we want to avoid code duplication by using aliases. But gcc sees
|
|
|
|
the different parameter lists and prints a warning. We define here
|
|
|
|
a function so that aio_cancel64 has no prototype. */
|
2021-06-22 07:50:27 +00:00
|
|
|
#ifndef aio_cancel
|
2005-12-14 08:43:25 +00:00
|
|
|
#define aio_cancel64 XXX
|
|
|
|
#include <aio.h>
|
|
|
|
/* And undo the hack. */
|
|
|
|
#undef aio_cancel64
|
2021-06-22 07:50:27 +00:00
|
|
|
#endif
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2021-06-22 07:50:27 +00:00
|
|
|
#include <assert.h>
|
2005-12-14 08:43:25 +00:00
|
|
|
#include <errno.h>
|
2021-06-22 07:50:27 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#include <aio_misc.h>
|
2021-06-25 08:30:36 +00:00
|
|
|
#include <pthreadP.h>
|
2021-06-22 07:50:27 +00:00
|
|
|
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2005-12-14 08:43:25 +00:00
|
|
|
int
|
2021-06-25 08:30:36 +00:00
|
|
|
__aio_cancel (int fildes, struct aiocb *aiocbp)
|
2005-12-14 08:43:25 +00:00
|
|
|
{
|
2021-06-22 07:50:27 +00:00
|
|
|
struct requestlist *req = NULL;
|
|
|
|
int result = AIO_ALLDONE;
|
|
|
|
|
|
|
|
/* If fildes is invalid, error. */
|
2021-06-25 08:30:36 +00:00
|
|
|
if (__fcntl (fildes, F_GETFL) < 0)
|
2021-06-22 07:50:27 +00:00
|
|
|
{
|
|
|
|
__set_errno (EBADF);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Request the mutex. */
|
2021-06-25 08:30:36 +00:00
|
|
|
__pthread_mutex_lock (&__aio_requests_mutex);
|
2021-06-22 07:50:27 +00:00
|
|
|
|
|
|
|
/* We are asked to cancel a specific AIO request. */
|
|
|
|
if (aiocbp != NULL)
|
|
|
|
{
|
|
|
|
/* If the AIO request is not for this descriptor it has no value
|
|
|
|
to look for the request block. */
|
|
|
|
if (aiocbp->aio_fildes != fildes)
|
|
|
|
{
|
2021-06-25 08:30:36 +00:00
|
|
|
__pthread_mutex_unlock (&__aio_requests_mutex);
|
2021-06-22 07:50:27 +00:00
|
|
|
__set_errno (EINVAL);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else if (aiocbp->__error_code == EINPROGRESS)
|
|
|
|
{
|
|
|
|
struct requestlist *last = NULL;
|
|
|
|
|
|
|
|
req = __aio_find_req_fd (fildes);
|
|
|
|
|
|
|
|
if (req == NULL)
|
|
|
|
{
|
|
|
|
not_found:
|
2021-06-25 08:30:36 +00:00
|
|
|
__pthread_mutex_unlock (&__aio_requests_mutex);
|
2021-06-22 07:50:27 +00:00
|
|
|
__set_errno (EINVAL);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (req->aiocbp != (aiocb_union *) aiocbp)
|
|
|
|
{
|
|
|
|
last = req;
|
|
|
|
req = req->next_prio;
|
|
|
|
if (req == NULL)
|
|
|
|
goto not_found;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Don't remove the entry if a thread is already working on it. */
|
|
|
|
if (req->running == allocated)
|
|
|
|
{
|
|
|
|
result = AIO_NOTCANCELED;
|
|
|
|
req = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* We can remove the entry. */
|
|
|
|
__aio_remove_request (last, req, 0);
|
|
|
|
|
|
|
|
result = AIO_CANCELED;
|
|
|
|
|
|
|
|
req->next_prio = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Find the beginning of the list of all requests for this
|
|
|
|
desriptor. */
|
|
|
|
req = __aio_find_req_fd (fildes);
|
|
|
|
|
|
|
|
/* If any request is worked on by a thread it must be the first.
|
|
|
|
So either we can delete all requests or all but the first. */
|
|
|
|
if (req != NULL)
|
|
|
|
{
|
|
|
|
if (req->running == allocated)
|
|
|
|
{
|
|
|
|
struct requestlist *old = req;
|
|
|
|
req = req->next_prio;
|
|
|
|
old->next_prio = NULL;
|
|
|
|
|
|
|
|
result = AIO_NOTCANCELED;
|
|
|
|
|
|
|
|
if (req != NULL)
|
|
|
|
__aio_remove_request (old, req, 1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result = AIO_CANCELED;
|
|
|
|
|
|
|
|
/* We can remove the entry. */
|
|
|
|
__aio_remove_request (NULL, req, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mark requests as canceled and send signal. */
|
|
|
|
while (req != NULL)
|
|
|
|
{
|
|
|
|
struct requestlist *old = req;
|
|
|
|
assert (req->running == yes || req->running == queued);
|
|
|
|
req->aiocbp->aiocb.__error_code = ECANCELED;
|
|
|
|
req->aiocbp->aiocb.__return_value = -1;
|
|
|
|
__aio_notify (req);
|
|
|
|
req = req->next_prio;
|
|
|
|
__aio_free_request (old);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Release the mutex. */
|
2021-06-25 08:30:36 +00:00
|
|
|
__pthread_mutex_unlock (&__aio_requests_mutex);
|
2021-06-22 07:50:27 +00:00
|
|
|
|
|
|
|
return result;
|
1995-02-18 01:27:10 +00:00
|
|
|
}
|
2021-06-25 08:30:36 +00:00
|
|
|
#if PTHREAD_IN_LIBC
|
|
|
|
# ifndef __aio_cancel
|
|
|
|
versioned_symbol (libc, __aio_cancel, aio_cancel, GLIBC_2_34);
|
|
|
|
versioned_symbol (libc, __aio_cancel, aio_cancel64, GLIBC_2_34);
|
|
|
|
# if OTHER_SHLIB_COMPAT (librt, GLIBC_2_1, GLIBC_2_34)
|
|
|
|
compat_symbol (librt, __aio_cancel, aio_cancel, GLIBC_2_1);
|
|
|
|
compat_symbol (librt, __aio_cancel, aio_cancel64, GLIBC_2_1);
|
|
|
|
# endif
|
|
|
|
# endif /* __aio_cancel */
|
|
|
|
#else /* !PTHREAD_IN_LIBC */
|
|
|
|
strong_alias (__aio_cancel, aio_cancel)
|
|
|
|
weak_alias (__aio_cancel, aio_cancel64)
|
2021-06-22 07:50:27 +00:00
|
|
|
#endif
|