mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
ffa8d2a098
name of "", store a null pointer instead. * configure.in (elf): Set to yes for freebsd*, netbsd*. * configure: Regenerated. * locale/xlocale.c [! (USE_TLS && HAVE___THREAD)] (__libc_tsd_LOCALE): Initialize this instead of __libc_tsd_LOCALE_data. * sysdeps/unix/grantpt.c (pts_name): Convert ENOTTY return from ptsname_r to EINVAL. * sysdeps/generic/ptsname.c (__ptsname_r): Return ENOSYS instead of 0. * rt/Makefile: Revert last change, it was inappropriate to presume aio implementations depend on pthreads. * rt/tst-aio.c (do_test): Exit happy if first failure is ENOSYS. * rt/tst-aio64.c (do_test): Likewise. * rt/tst-aio2.c (do_test): Likewise. * rt/tst-aio3.c (do_test): Likewise. * rt/tst-aio4.c (do_test): Likewise. * rt/tst-aio5.c (do_test): Likewise. * rt/tst-aio6.c (do_test): Likewise. * rt/tst-aio7.c (do_test): Likewise. * sysdeps/generic/bits/libc-lock.h (__libc_setspecific): Use a cast to void so as to avoid compiler warnings. * libio/oldstdfiles.c [! _IO_MTSAFE_IO] (DEF_STDFILE): Don't define _IO_wide_data_FD, which is never used here. * libio/iofread.c [! _IO_MTSAFE_IO] (fread_unlocked): Add libc_hidden_ver defn. * libio/iofputs.c [! _IO_MTSAFE_IO] (fputs_unlocked): Likewise. * libio/iofgets.c [! _IO_MTSAFE_IO] (fgets_unlocked): Likewise. * include/resolv.h [! _LIBC_REENTRANT] (_res): #undef it before decl. * include/netdb.h [! _LIBC_REENTRANT] (h_errno): Declare normal extern. * misc/syslog.c (openlog): Conditionalize locking on [_LIBC_REENTRANT]. (closelog): Likewise. 2002-07-06 Bruno Haible <bruno@clisp.org> * sysdeps/alpha/fpu/fpu_control.h: Comment fix. * sysdeps/unix/sysv/linux/alpha/pipe.S: Moved to ... * sysdeps/unix/alpha/pipe.S: ... here. * sysdeps/unix/bsd/osf/alpha/pipe.S: File removed. * sysdeps/unix/i386/brk.S: Rename local label to '.Lhere' in ELF. * sysdeps/unix/i386/brk.S: Add PSEUDO_END invocation. * sysdeps/unix/i386/fork.S: Likewise. * sysdeps/unix/i386/pipe.S: Likewise. * sysdeps/unix/i386/wait.S: Likewise. * sysdeps/unix/fork.S: Fix PSEUDO_END argument. * sysdeps/unix/arm/fork.S: Likewise. * sysdeps/unix/sysv/linux/arm/sysdep.h (PSEUDO): Swap DO_CALL arguments. (DO_CALL): Swap argument order. * sysdeps/unix/sysv/linux/hppa/sysdep.h (PSEUDO): Swap DO_CALL arguments. (DO_CALL): Swap argument order. * sysdeps/unix/sysv/linux/i386/sysdep.h (PSEUDO): Swap DO_CALL arguments. (DO_CALL): Swap argument order. * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h (PSEUDO): Swap DO_CALL arguments. (DO_CALL): Swap argument order. * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h (PSEUDO): Swap DO_CALL arguments. (DO_CALL): Swap argument order. * sysdeps/unix/sysv/linux/sh/sysdep.h (PSEUDO): Swap DO_CALL arguments. (DO_CALL): Swap argument order. * sysdeps/unix/sysv/linux/x86_64/sysdep.h (PSEUDO): Swap DO_CALL arguments. (DO_CALL): Swap argument order. * sysdeps/i386/sysdep.h (PSEUDO): Fix syntax error. (L): Define right for ELF. * sysdeps/unix/sysv/linux/i386/sysdep.h (L): Remove definition. Now defined in sysdeps/i386/sysdep.h. * sysdeps/posix/readv.c: Ansify function definition. * sysdeps/posix/writev.c: Likewise. * stdio-common/tst-fseek.c (main): Don't assume that off_t and size_t have the same size. Avoid direct cast from size_t to off_t. * login/tst-utmp.c (simulate_login): Don't leave garbage after the nul byte in entry[n].ut_user. (simulate_logout): Likewise. * login/programs/utmpdump.c (print_entry): Test _HAVE_UT_TYPE, _HAVE_UT_PID, _HAVE_UT_ID, _HAVE_UT_HOST, instead of assuming the existence of corresponding members of 'struct utmp'. * login/tst-utmp.c: Trivialize the test if testing 'struct utmp' and !_HAVE_UT_TYPE. * sysdeps/unix/opendir.c (__opendir): If st_blksize is 0 or too small, allocate a buffer of at least BUFSIZ bytes, not just of sizeof (struct dirent). * sysdeps/generic/glob.c: Include <limits.h>. (NAME_MAX): Define a fallback. (glob_in_dir): Allocate enough room for a 'struct dirent64' on the stack. * posix/tst-dir.c: Include <stddef.h>, for offsetof. (main): Allocate enough room for a 'struct dirent64' on the stack. * posix/tst-gnuglob.c (my_DIR): Allocate enough room for a 'struct dirent'. * sysdeps/unix/sysv/linux/init-first.c: Don't include kernel-features.h. * inet/htontest.c: Include <sys/types.h>. * sysdeps/generic/sys/sysinfo.h: Surround with __{BEGIN,END}_DECLS. * include/sys/sysctl.h: Comment fix. * elf/rtld.c (_rtld_global) [! _LIBC_REENTRANT]: Don't initialize _dl_load_lock. * libio/fileno.c (fileno_unlocked): Define regardless of _IO_MTSAFE_IO. * sysdeps/unix/bsd/bsd4.4/syscalls.list (__sigaltstack): New alias. * sysdeps/unix/inet/syscalls.list (__connect_internal): New alias. (__getpeername): New alias. (__getsockname): New alias. (__socket): New alias. * sysdeps/unix/common/syscalls.list (getpgid): Remove. * sysdeps/unix/syscalls.list (__chown_internal): New alias. (__fcntl_internal): New alias. (__profil): New alias.
278 lines
12 KiB
C
278 lines
12 KiB
C
#ifndef _NETDB_H
|
|
#include <resolv/netdb.h>
|
|
|
|
/* Macros for accessing h_errno from inside libc. */
|
|
# ifdef _LIBC_REENTRANT
|
|
# include <tls.h>
|
|
# if USE_TLS && HAVE___THREAD
|
|
# undef h_errno
|
|
# define h_errno h_errno /* For #ifndef h_errno tests. */
|
|
extern __thread int h_errno;
|
|
# define __set_h_errno(x) (h_errno = (x))
|
|
# else
|
|
static inline int
|
|
__set_h_errno (int __err)
|
|
{
|
|
return *__h_errno_location () = __err;
|
|
}
|
|
# endif
|
|
# else
|
|
# undef h_errno
|
|
# define __set_h_errno(x) (h_errno = (x))
|
|
extern int h_errno;
|
|
# endif /* _LIBC_REENTRANT */
|
|
|
|
libc_hidden_proto (hstrerror)
|
|
libc_hidden_proto (innetgr)
|
|
libc_hidden_proto (rcmd_af)
|
|
libc_hidden_proto (rexec_af)
|
|
libc_hidden_proto (rresvport_af)
|
|
libc_hidden_proto (ruserok_af)
|
|
|
|
libc_hidden_proto (getaddrinfo)
|
|
libc_hidden_proto (getnameinfo)
|
|
libc_hidden_proto (freeaddrinfo)
|
|
libc_hidden_proto (gai_strerror)
|
|
|
|
/* Document internal interfaces. */
|
|
extern int __gethostent_r (struct hostent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct hostent **__restrict __result,
|
|
int *__restrict __h_errnop) attribute_hidden;
|
|
extern int __old_gethostent_r (struct hostent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct hostent **__restrict __result,
|
|
int *__restrict __h_errnop);
|
|
|
|
extern int __gethostbyaddr_r (__const void *__restrict __addr,
|
|
socklen_t __len, int __type,
|
|
struct hostent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct hostent **__restrict __result,
|
|
int *__restrict __h_errnop);
|
|
extern int __old_gethostbyaddr_r (__const void *__restrict __addr,
|
|
socklen_t __len, int __type,
|
|
struct hostent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct hostent **__restrict __result,
|
|
int *__restrict __h_errnop);
|
|
|
|
extern int __gethostbyname_r (__const char *__restrict __name,
|
|
struct hostent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct hostent **__restrict __result,
|
|
int *__restrict __h_errnop);
|
|
extern int __old_gethostbyname_r (__const char *__restrict __name,
|
|
struct hostent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct hostent **__restrict __result,
|
|
int *__restrict __h_errnop);
|
|
|
|
extern int __gethostbyname2_r (__const char *__restrict __name, int __af,
|
|
struct hostent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct hostent **__restrict __result,
|
|
int *__restrict __h_errnop);
|
|
extern int __old_gethostbyname2_r (__const char *__restrict __name, int __af,
|
|
struct hostent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct hostent **__restrict __result,
|
|
int *__restrict __h_errnop);
|
|
|
|
extern int __getnetent_r (struct netent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct netent **__restrict __result,
|
|
int *__restrict __h_errnop) attribute_hidden;
|
|
extern int __old_getnetent_r (struct netent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct netent **__restrict __result,
|
|
int *__restrict __h_errnop);
|
|
|
|
extern int __getnetbyaddr_r (uint32_t __net, int __type,
|
|
struct netent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct netent **__restrict __result,
|
|
int *__restrict __h_errnop);
|
|
extern int __old_getnetbyaddr_r (uint32_t __net, int __type,
|
|
struct netent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct netent **__restrict __result,
|
|
int *__restrict __h_errnop);
|
|
|
|
extern int __getnetbyname_r (__const char *__restrict __name,
|
|
struct netent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct netent **__restrict __result,
|
|
int *__restrict __h_errnop);
|
|
extern int __old_getnetbyname_r (__const char *__restrict __name,
|
|
struct netent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct netent **__restrict __result,
|
|
int *__restrict __h_errnop);
|
|
|
|
extern int __getservent_r (struct servent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct servent **__restrict __result)
|
|
attribute_hidden;
|
|
extern int __old_getservent_r (struct servent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct servent **__restrict __result);
|
|
|
|
extern int __getservbyname_r (__const char *__restrict __name,
|
|
__const char *__restrict __proto,
|
|
struct servent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct servent **__restrict __result);
|
|
extern int __old_getservbyname_r (__const char *__restrict __name,
|
|
__const char *__restrict __proto,
|
|
struct servent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct servent **__restrict __result);
|
|
|
|
extern int __getservbyport_r (int __port,
|
|
__const char *__restrict __proto,
|
|
struct servent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct servent **__restrict __result);
|
|
extern int __old_getservbyport_r (int __port,
|
|
__const char *__restrict __proto,
|
|
struct servent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct servent **__restrict __result);
|
|
|
|
extern int __getprotoent_r (struct protoent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct protoent **__restrict __result)
|
|
attribute_hidden;
|
|
extern int __old_getprotoent_r (struct protoent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct protoent **__restrict __result);
|
|
|
|
extern int __getprotobyname_r (__const char *__restrict __name,
|
|
struct protoent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct protoent **__restrict __result);
|
|
extern int __old_getprotobyname_r (__const char *__restrict __name,
|
|
struct protoent *__restrict __result_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct protoent **__restrict __result);
|
|
|
|
extern int __getprotobynumber_r (int __proto,
|
|
struct protoent *__restrict __res_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct protoent **__restrict __result);
|
|
extern int __old_getprotobynumber_r (int __proto,
|
|
struct protoent *__restrict __res_buf,
|
|
char *__restrict __buf, size_t __buflen,
|
|
struct protoent **__restrict __result);
|
|
|
|
extern int __getnetgrent_r (char **__restrict __hostp,
|
|
char **__restrict __userp,
|
|
char **__restrict __domainp,
|
|
char *__restrict __buffer, size_t __buflen);
|
|
|
|
extern int ruserpass (const char *host, const char **aname,
|
|
const char **apass);
|
|
libc_hidden_proto (ruserpass)
|
|
|
|
|
|
/* The following declarations and definitions have been removed from
|
|
the public header since we don't want people to use them. */
|
|
|
|
#define AI_V4MAPPED 0x0008 /* IPv4-mapped addresses are acceptable. */
|
|
#define AI_ALL 0x0010 /* Return both IPv4 and IPv6 addresses. */
|
|
#define AI_ADDRCONFIG 0x0020 /* Use configuration of this host to choose
|
|
returned address type. */
|
|
#define AI_DEFAULT (AI_V4MAPPED | AI_ADDRCONFIG)
|
|
|
|
#include <inet/netgroup.h>
|
|
|
|
struct parser_data;
|
|
extern int _nss_files_parse_protoent (char *line, struct protoent *result,
|
|
struct parser_data *data,
|
|
size_t datalen, int *errnop);
|
|
extern int _nss_files_parse_servent (char *line, struct servent *result,
|
|
struct parser_data *data,
|
|
size_t datalen, int *errnop);
|
|
extern int _nss_files_parse_netent (char *line, struct netent *result,
|
|
struct parser_data *data,
|
|
size_t datalen, int *errnop);
|
|
extern enum nss_status _nss_netgroup_parseline (char **cursor,
|
|
struct __netgrent *result,
|
|
char *buffer, size_t buflen,
|
|
int *errnop);
|
|
libc_hidden_proto (_nss_files_parse_protoent)
|
|
libc_hidden_proto (_nss_files_parse_servent)
|
|
libc_hidden_proto (_nss_files_parse_netent)
|
|
|
|
#define DECLARE_NSS_PROTOTYPES(service) \
|
|
extern enum nss_status _nss_ ## service ## _setprotoent (int); \
|
|
extern enum nss_status _nss_ ## service ## _endprotoent (void); \
|
|
extern enum nss_status _nss_ ## service ## _getprotoent_r \
|
|
(struct protoent *proto, char *buffer, size_t buflen, \
|
|
int *errnop); \
|
|
extern enum nss_status _nss_ ## service ## _getprotobyname_r \
|
|
(const char *name, struct protoent *proto, \
|
|
char *buffer, size_t buflen, int *errnop); \
|
|
extern enum nss_status _nss_ ## service ## _getprotobynumber_r \
|
|
(int number, struct protoent *proto, \
|
|
char *buffer, size_t buflen, int *errnop); \
|
|
extern enum nss_status _nss_ ## service ## _sethostent (int); \
|
|
extern enum nss_status _nss_ ## service ## _endhostent (void); \
|
|
extern enum nss_status _nss_ ## service ## _gethostent_r \
|
|
(struct hostent *host, char *buffer, size_t buflen, \
|
|
int *errnop, int *h_errnop); \
|
|
extern enum nss_status _nss_ ## service ## _gethostbyname2_r \
|
|
(const char *name, int af, struct hostent *host, \
|
|
char *buffer, size_t buflen, int *errnop, \
|
|
int *h_errnop); \
|
|
extern enum nss_status _nss_ ## service ## _gethostbyname_r \
|
|
(const char *name, struct hostent *host, char *buffer, \
|
|
size_t buflen, int *errnop, int *h_errnop); \
|
|
extern enum nss_status _nss_ ## service ## _gethostbyaddr_r \
|
|
(const void *addr, socklen_t addrlen, int af, \
|
|
struct hostent *host, char *buffer, size_t buflen, \
|
|
int *errnop, int *h_errnop); \
|
|
extern enum nss_status _nss_ ## service ## _setservent (int); \
|
|
extern enum nss_status _nss_ ## service ## _endservent (void); \
|
|
extern enum nss_status _nss_ ## service ## _getservent_r \
|
|
(struct servent *serv, char *buffer, size_t buflen, \
|
|
int *errnop); \
|
|
extern enum nss_status _nss_ ## service ## _getservbyname_r \
|
|
(const char *name, const char *protocol, \
|
|
struct servent *serv, char *buffer, size_t buflen, \
|
|
int *errnop); \
|
|
extern enum nss_status _nss_ ## service ## _getservbyport_r \
|
|
(int port, const char *protocol, struct servent *serv, \
|
|
char *buffer, size_t buflen, int *errnop); \
|
|
extern enum nss_status _nss_ ## service ## _setnetgrent \
|
|
(const char *group, struct __netgrent *result); \
|
|
extern enum nss_status _nss_ ## service ## _endnetgrent \
|
|
(struct __netgrent *result); \
|
|
extern enum nss_status _nss_ ## service ## _getnetgrent_r \
|
|
(struct __netgrent *result, char *buffer, \
|
|
size_t buflen, int *errnop); \
|
|
extern enum nss_status _nss_ ## service ## _setnetent (int stayopen); \
|
|
extern enum nss_status _nss_ ## service ## _endnetent (void); \
|
|
extern enum nss_status _nss_ ## service ## _getnetent_r \
|
|
(struct netent *net, char *buffer, size_t buflen, \
|
|
int *errnop, int *herrnop); \
|
|
extern enum nss_status _nss_ ## service ## _getnetbyname_r \
|
|
(const char *name, struct netent *net, char *buffer, \
|
|
size_t buflen, int *errnop, int *herrnop); \
|
|
extern enum nss_status _nss_ ## service ## _getnetbyaddr_r \
|
|
(uint32_t addr, int type, struct netent *net, \
|
|
char *buffer, size_t buflen, int *errnop, \
|
|
int *herrnop);
|
|
|
|
DECLARE_NSS_PROTOTYPES (compat)
|
|
DECLARE_NSS_PROTOTYPES (dns)
|
|
DECLARE_NSS_PROTOTYPES (files)
|
|
DECLARE_NSS_PROTOTYPES (hesiod)
|
|
DECLARE_NSS_PROTOTYPES (nis)
|
|
DECLARE_NSS_PROTOTYPES (nisplus)
|
|
|
|
#undef DECLARE_NSS_PROTOTYPES
|
|
|
|
#endif /* !_NETDB_H */
|