mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-19 11:30:06 +00:00
7a68c94a5b
1998-07-10 18:14 -0400 Zack Weinberg <zack@rabi.phys.columbia.edu> * manual/Makefile: Overhauled. Generate libc.texinfo from the chapter files. Exorcise the chapters, chapters-incl mess. Support inserting doc chapters from add-on modules. (chapters): New variable. (add-chapters): New variable. (appendices): New variable. (libc.texinfo): New target. (clean): Fix bugs. (realclean): Fix bugs. * manual/texis.awk: New file. * manual/libc-texinfo.sh: New file. * manual/libc-texinfo.in: New file. * manual/conf.texi (top @node): Remove next pointer. * manual/lang.texi (top @node): Remove prev pointer. * manual/job.texi (top @node): Add explicit pointers. * manual/message.texi (top @node): Add explicit pointers. * manual/nss.texi (top @node): Add explicit pointers. * manual/process.texi (top @node): Add explicit pointers. * manual/startup.texi (top @node): Add explicit pointers. * manual/terminal.texi (top @node): Add explicit pointers. * manual/users.texi (top @node): Add explicit pointers. * manual/arith.texi: Add %MENU% tag. * manual/conf.texi: Add %MENU% tag. * manual/contrib.texi: Add %MENU% tag. * manual/ctype.texi: Add %MENU% tag. * manual/errno.texi: Add %MENU% tag. * manual/filesys.texi: Add %MENU% tag. * manual/header.texi: Add %MENU% tag. * manual/install.texi: Add %MENU% tag. * manual/intro.texi: Add %MENU% tag. * manual/io.texi: Add %MENU% tag. * manual/job.texi: Add %MENU% tag. * manual/lang.texi: Add %MENU% tag. * manual/llio.texi: Add %MENU% tag. * manual/locale.texi: Add %MENU% tag. * manual/maint.texi: Add %MENU% tag. * manual/math.texi: Add %MENU% tag. * manual/mbyte.texi: Add %MENU% tag. * manual/memory.texi: Add %MENU% tag. * manual/message.texi: Add %MENU% tag. * manual/nss.texi: Add %MENU% tag. * manual/pattern.texi: Add %MENU% tag. * manual/pipe.texi: Add %MENU% tag. * manual/process.texi: Add %MENU% tag. * manual/search.texi: Add %MENU% tag. * manual/setjmp.texi: Add %MENU% tag. * manual/signal.texi: Add %MENU% tag. * manual/socket.texi: Add %MENU% tag. * manual/startup.texi: Add %MENU% tag. * manual/stdio.texi: Add %MENU% tag. * manual/string.texi: Add %MENU% tag. * manual/sysinfo.texi: Add %MENU% tag. * manual/terminal.texi: Add %MENU% tag. * manual/time.texi: Add %MENU% tag. * manual/users.texi: Add %MENU% tag. 1998-07-13 Ulrich Drepper <drepper@cygnus.com> * sysdeps/unix/sysv/linux/i386/dl-procinfo.h (x86_cap_flags): Update. 1998-07-11 Andreas Jaeger <aj@arthur.rhein-neckar.de> * sysdeps/unix/sysv/linux/recvmsg.c (__libc_recvmsg): Use ANSI style declaration to avoid warning. * sysdeps/unix/sysv/linux/sendmsg.c (__libc_sendmsg): Likewise. 1998-07-04 Mark Kettenis <kettenis@phys.uva.nl> * elf/rtld.c (process_dl_debug): Add missing continue. 1998-07-12 Mark Kettenis <kettenis@phys.uva.nl> * elf/rtld.c (_dl_skip_args): Make global because the Hurd startup code needs it. 1998-07-10 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * Makeconfig ($(common-objpfx)sysd-dirs): Write out definition of sysd-dirs-done. * Makerules: Don't generate version maps too early. ($(common-objpfx)sysd-versions): Force regeneration if the list of subdirs has changed. 1998-07-10 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * elf/dlfcn.h (DL_CALL_FCT): Use portable comma expression. 1998-07-11 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * iconv/gconv_db.c (gen_steps): Always set *handle and *nsteps. * iconv/gconv_dl.c (__gconv_find_shlib): Correct use of tfind return value. 1998-07-12 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * elf/dl-open.c (dl_open_worker): New function. (_dl_open): Call it to do the actual work while catching errors. * elf/dl-close.c (_dl_close): Only call termination function if the initialisation function was called. 1998-07-13 Ulrich Drepper <drepper@cygnus.com> * libio/libioP.h (_IO_cleanup_registration_needed): Use __PMT. Reported by Felix von Leitner <leitner@amdiv.de>. 1998-07-13 10:28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * elf/rtld.c (process_dl_debug): Add missing continue. 1998-06-23 Mark Kettenis <kettenis@phys.uva.nl>
94 lines
2.4 KiB
C
94 lines
2.4 KiB
C
/* Copyright (C) 1998 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 Library General Public License as
|
|
published by the Free Software Foundation; either version 2 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
License along with the GNU C Library; see the file COPYING.LIB. If not,
|
|
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
#include <sys/socket.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
|
|
#include <asm/posix_types.h>
|
|
|
|
/* The kernel expects this structure in SCM_CREDS messages.
|
|
* Note: sizeof(struct __kernel_ucred) <= sizeof(struct cmsgcred) must hold.
|
|
*/
|
|
struct __kernel_ucred
|
|
{
|
|
__kernel_pid_t pid;
|
|
__kernel_uid_t uid;
|
|
__kernel_gid_t gid;
|
|
};
|
|
|
|
extern int __syscall_recvmsg (int, struct msghdr *, int);
|
|
|
|
int
|
|
__libc_recvmsg (int fd, struct msghdr *message, int flags)
|
|
{
|
|
struct cmsghdr *cm;
|
|
int ret;
|
|
int found_creds = 0;
|
|
|
|
/* Must check for space first. */
|
|
cm = CMSG_FIRSTHDR (message);
|
|
while (cm)
|
|
{
|
|
if (cm->cmsg_type == SCM_CREDS)
|
|
{
|
|
if (cm->cmsg_len < CMSG_SPACE (sizeof (struct cmsgcred)))
|
|
{
|
|
__set_errno (EINVAL);
|
|
return -1;
|
|
}
|
|
found_creds = 1;
|
|
}
|
|
cm = CMSG_NXTHDR (message, cm);
|
|
}
|
|
|
|
|
|
ret = __syscall_recvmsg (fd, message, flags);
|
|
|
|
if (ret == -1)
|
|
return ret;
|
|
|
|
/* Postprocess the message control block for SCM_CREDS. */
|
|
cm = CMSG_FIRSTHDR (message);
|
|
if (found_creds)
|
|
while (cm)
|
|
{
|
|
if (cm->cmsg_type == SCM_CREDS)
|
|
{
|
|
struct cmsgcred *c = (struct cmsgcred *) CMSG_DATA (cm);
|
|
struct __kernel_ucred u;
|
|
int i;
|
|
memcpy (&u, CMSG_DATA (cm), sizeof (struct __kernel_ucred));
|
|
|
|
c->cmcred_pid = u.pid;
|
|
c->cmcred_uid = u.uid;
|
|
c->cmcred_gid = u.gid;
|
|
|
|
c->cmcred_euid = -1;
|
|
c->cmcred_ngroups = 0;
|
|
for (i = 0; i < CMGROUP_MAX; i++)
|
|
c->cmcred_groups[i] = -1;
|
|
}
|
|
cm = CMSG_NXTHDR (message, cm);
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
weak_alias (__libc_recvmsg, __recvmsg)
|
|
weak_alias (__libc_recvmsg, recvmsg)
|