mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-11 13:50:06 +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
140 lines
3.8 KiB
C
140 lines
3.8 KiB
C
/* Copyright (C) 2008-2019 Free Software Foundation, Inc.
|
|
Contributed by Andreas Krebbel <Andreas.Krebbel@de.ibm.com>.
|
|
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 <sys/types.h>
|
|
#include <utmp.h>
|
|
#include <errno.h>
|
|
#include <libc-symbols.h>
|
|
|
|
#include "utmp32.h"
|
|
#include "utmp-convert.h"
|
|
|
|
#include "utmpx32.h"
|
|
#include "utmpx-convert.h"
|
|
|
|
/* Allocate a static buffer to be returned to the caller. As well as
|
|
with the existing version of these functions the caller has to be
|
|
aware that the contents of this buffer will change with subsequent
|
|
calls. */
|
|
#define ALLOCATE_UTMPX32_OUT(OUT) \
|
|
static struct utmpx32 *OUT = NULL; \
|
|
\
|
|
if (OUT == NULL) \
|
|
{ \
|
|
OUT = malloc (sizeof (struct utmpx32)); \
|
|
if (OUT == NULL) \
|
|
return NULL; \
|
|
}
|
|
|
|
/* Perform a lookup for a utmpx entry matching FIELD using function
|
|
FUNC. FIELD is converted to a 64 bit utmpx and the result is
|
|
converted back to 32 bit utmpx. */
|
|
#define ACCESS_UTMPX_ENTRY(FUNC, FIELD) \
|
|
struct utmpx in64; \
|
|
struct utmpx *out64; \
|
|
ALLOCATE_UTMPX32_OUT (out32); \
|
|
\
|
|
utmpx_convert32to64 (FIELD, &in64); \
|
|
out64 = FUNC (&in64); \
|
|
\
|
|
if (out64 == NULL) \
|
|
return NULL; \
|
|
\
|
|
utmpx_convert64to32 (out64, out32); \
|
|
\
|
|
return out32;
|
|
|
|
|
|
/* Get the next entry from the user accounting database. */
|
|
struct utmpx32 *
|
|
getutxent32 (void)
|
|
{
|
|
struct utmpx *out64;
|
|
ALLOCATE_UTMPX32_OUT (out32);
|
|
|
|
out64 = __getutxent ();
|
|
if (!out64)
|
|
return NULL;
|
|
|
|
utmpx_convert64to32 (out64, out32);
|
|
return out32;
|
|
|
|
}
|
|
symbol_version (getutxent32, getutxent, GLIBC_2.1);
|
|
|
|
/* Get the user accounting database entry corresponding to ID. */
|
|
struct utmpx32 *
|
|
getutxid32 (const struct utmpx32 *id)
|
|
{
|
|
ACCESS_UTMPX_ENTRY (__getutxid, id);
|
|
}
|
|
symbol_version (getutxid32, getutxid, GLIBC_2.1);
|
|
|
|
/* Get the user accounting database entry corresponding to LINE. */
|
|
struct utmpx32 *
|
|
getutxline32 (const struct utmpx32 *line)
|
|
{
|
|
ACCESS_UTMPX_ENTRY (__getutxline, line);
|
|
}
|
|
symbol_version (getutxline32, getutxline, GLIBC_2.1);
|
|
|
|
/* Write the entry UTMPX into the user accounting database. */
|
|
struct utmpx32 *
|
|
pututxline32 (const struct utmpx32 *utmpx)
|
|
{
|
|
ACCESS_UTMPX_ENTRY (__pututxline, utmpx);
|
|
}
|
|
symbol_version (pututxline32, pututxline, GLIBC_2.1);
|
|
|
|
/* Append entry UTMP to the wtmpx-like file WTMPX_FILE. */
|
|
void
|
|
updwtmpx32 (const char *wtmpx_file, const struct utmpx32 *utmpx)
|
|
{
|
|
struct utmpx in64;
|
|
|
|
utmpx_convert32to64 (utmpx, &in64);
|
|
__updwtmpx (wtmpx_file, &in64);
|
|
}
|
|
symbol_version (updwtmpx32, updwtmpx, GLIBC_2.1);
|
|
|
|
/* Copy the information in UTMPX to UTMP. */
|
|
void
|
|
getutmp32 (const struct utmpx32 *utmpx, struct utmp32 *utmp)
|
|
{
|
|
struct utmpx in64;
|
|
struct utmp out64;
|
|
|
|
utmpx_convert32to64 (utmpx, &in64);
|
|
__getutmp (&in64, &out64);
|
|
utmp_convert64to32 (&out64, utmp);
|
|
}
|
|
symbol_version (getutmp32, getutmp, GLIBC_2.1.1);
|
|
|
|
/* Copy the information in UTMP to UTMPX. */
|
|
void
|
|
getutmpx32 (const struct utmp32 *utmp, struct utmpx32 *utmpx)
|
|
{
|
|
struct utmp in64;
|
|
struct utmpx out64;
|
|
|
|
utmp_convert32to64 (utmp, &in64);
|
|
__getutmpx (&in64, &out64);
|
|
utmpx_convert64to32 (&out64, utmpx);
|
|
}
|
|
symbol_version (getutmpx32, getutmpx, GLIBC_2.1.1);
|