mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-29 16:21:07 +00:00
5a82c74822
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
212 lines
5.4 KiB
C
212 lines
5.4 KiB
C
/* Copyright (C) 1992-2019 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 <errno.h>
|
|
#include <fcntl.h>
|
|
#include <hurd.h>
|
|
#include <hurd/fd.h>
|
|
#include <stdarg.h>
|
|
#include <sys/file.h> /* XXX for LOCK_* */
|
|
#include "f_setlk.h"
|
|
|
|
/* Perform file control operations on FD. */
|
|
int
|
|
__libc_fcntl (int fd, int cmd, ...)
|
|
{
|
|
va_list ap;
|
|
struct hurd_fd *d;
|
|
int result;
|
|
|
|
d = _hurd_fd_get (fd);
|
|
|
|
if (d == NULL)
|
|
return __hurd_fail (EBADF);
|
|
|
|
va_start (ap, cmd);
|
|
|
|
switch (cmd)
|
|
{
|
|
error_t err;
|
|
|
|
default: /* Bad command. */
|
|
errno = EINVAL;
|
|
result = -1;
|
|
break;
|
|
|
|
/* First the descriptor-based commands, which do no RPCs. */
|
|
|
|
case F_DUPFD: /* Duplicate the file descriptor. */
|
|
case F_DUPFD_CLOEXEC:
|
|
{
|
|
struct hurd_fd *new;
|
|
io_t port, ctty;
|
|
struct hurd_userlink ulink, ctty_ulink;
|
|
int flags;
|
|
|
|
HURD_CRITICAL_BEGIN;
|
|
|
|
/* Extract the ports and flags from the file descriptor. */
|
|
__spin_lock (&d->port.lock);
|
|
flags = d->flags;
|
|
ctty = _hurd_port_get (&d->ctty, &ctty_ulink);
|
|
port = _hurd_port_locked_get (&d->port, &ulink); /* Unlocks D. */
|
|
|
|
if (cmd == F_DUPFD_CLOEXEC)
|
|
flags |= FD_CLOEXEC;
|
|
else
|
|
/* Duplication clears the FD_CLOEXEC flag. */
|
|
flags &= ~FD_CLOEXEC;
|
|
|
|
/* Get a new file descriptor. The third argument to __fcntl is the
|
|
minimum file descriptor number for it. */
|
|
new = _hurd_alloc_fd (&result, va_arg (ap, int));
|
|
if (new == NULL)
|
|
/* _hurd_alloc_fd has set errno. */
|
|
result = -1;
|
|
else
|
|
{
|
|
/* Give the ports each a user ref for the new descriptor. */
|
|
__mach_port_mod_refs (__mach_task_self (), port,
|
|
MACH_PORT_RIGHT_SEND, 1);
|
|
if (ctty != MACH_PORT_NULL)
|
|
__mach_port_mod_refs (__mach_task_self (), ctty,
|
|
MACH_PORT_RIGHT_SEND, 1);
|
|
|
|
/* Install the ports and flags in the new descriptor. */
|
|
if (ctty != MACH_PORT_NULL)
|
|
_hurd_port_set (&new->ctty, ctty);
|
|
new->flags = flags;
|
|
_hurd_port_locked_set (&new->port, port); /* Unlocks NEW. */
|
|
}
|
|
|
|
HURD_CRITICAL_END;
|
|
|
|
_hurd_port_free (&d->port, &ulink, port);
|
|
if (ctty != MACH_PORT_NULL)
|
|
_hurd_port_free (&d->ctty, &ctty_ulink, port);
|
|
|
|
break;
|
|
}
|
|
|
|
/* Set RESULT by evaluating EXPR with the descriptor locked.
|
|
Check for an empty descriptor and return EBADF. */
|
|
#define LOCKED(expr) \
|
|
HURD_CRITICAL_BEGIN; \
|
|
__spin_lock (&d->port.lock); \
|
|
if (d->port.port == MACH_PORT_NULL) \
|
|
result = __hurd_fail (EBADF); \
|
|
else \
|
|
result = (expr); \
|
|
__spin_unlock (&d->port.lock); \
|
|
HURD_CRITICAL_END;
|
|
|
|
case F_GETFD: /* Get descriptor flags. */
|
|
LOCKED (d->flags);
|
|
break;
|
|
|
|
case F_SETFD: /* Set descriptor flags. */
|
|
LOCKED ((d->flags = va_arg (ap, int), 0));
|
|
break;
|
|
|
|
|
|
/* Now the real io operations, done by RPCs to io servers. */
|
|
|
|
case F_GETLK:
|
|
case F_SETLK:
|
|
case F_SETLKW:
|
|
{
|
|
struct flock *fl = va_arg (ap, struct flock *);
|
|
int wait = 0;
|
|
va_end (ap);
|
|
switch (cmd)
|
|
{
|
|
case F_GETLK:
|
|
errno = ENOSYS;
|
|
return -1;
|
|
case F_SETLKW:
|
|
wait = 1;
|
|
/* FALLTHROUGH */
|
|
case F_SETLK:
|
|
return __f_setlk (fd, fl->l_type, fl->l_whence,
|
|
fl->l_start, fl->l_len, wait);
|
|
default:
|
|
errno = EINVAL;
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
case F_GETLK64:
|
|
case F_SETLK64:
|
|
case F_SETLKW64:
|
|
{
|
|
struct flock64 *fl = va_arg (ap, struct flock64 *);
|
|
int wait = 0;
|
|
va_end (ap);
|
|
switch (cmd)
|
|
{
|
|
case F_GETLK64:
|
|
errno = ENOSYS;
|
|
return -1;
|
|
case F_SETLKW64:
|
|
wait = 1;
|
|
/* FALLTHROUGH */
|
|
case F_SETLK64:
|
|
return __f_setlk (fd, fl->l_type, fl->l_whence,
|
|
fl->l_start, fl->l_len, wait);
|
|
default:
|
|
errno = EINVAL;
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
case F_GETFL: /* Get per-open flags. */
|
|
if (err = HURD_FD_PORT_USE (d, __io_get_openmodes (port, &result)))
|
|
result = __hurd_dfail (fd, err);
|
|
break;
|
|
|
|
case F_SETFL: /* Set per-open flags. */
|
|
err = HURD_FD_PORT_USE (d, __io_set_all_openmodes (port,
|
|
va_arg (ap, int)));
|
|
result = err ? __hurd_dfail (fd, err) : 0;
|
|
break;
|
|
|
|
case F_GETOWN: /* Get owner. */
|
|
if (err = HURD_FD_PORT_USE (d, __io_get_owner (port, &result)))
|
|
result = __hurd_dfail (fd, err);
|
|
break;
|
|
|
|
case F_SETOWN: /* Set owner. */
|
|
err = HURD_FD_PORT_USE (d, __io_mod_owner (port, va_arg (ap, pid_t)));
|
|
result = err ? __hurd_dfail (fd, err) : 0;
|
|
break;
|
|
}
|
|
|
|
va_end (ap);
|
|
|
|
return result;
|
|
}
|
|
libc_hidden_def (__libc_fcntl)
|
|
weak_alias (__libc_fcntl, __fcntl)
|
|
libc_hidden_weak (__fcntl)
|
|
weak_alias (__libc_fcntl, fcntl)
|
|
|
|
strong_alias (__libc_fcntl, __libc_fcntl64)
|
|
libc_hidden_def (__libc_fcntl64)
|
|
weak_alias (__libc_fcntl64, __fcntl64)
|
|
libc_hidden_weak (__fcntl64)
|
|
weak_alias (__fcntl64, fcntl64)
|