mirror of
https://git.musl-libc.org/git/musl
synced 2025-04-05 09:22:54 +03:00
define and use internal macros for hidden visibility, weak refs
this cleans up what had become widespread direct inline use of "GNU C" style attributes directly in the source, and lowers the barrier to increased use of hidden visibility, which will be useful to recovering some of the efficiency lost when the protected visibility hack was dropped in commit dc2f368e565c37728b0d620380b849c3a1ddd78f, especially on archs where the PLT ABI is costly.
This commit is contained in:
parent
2de29bc994
commit
9b95fd0944
arch
crt
ldso
src
env
exit
internal
ldso
multibyte
signal
thread
@ -1,11 +1,12 @@
|
|||||||
|
#include "libc.h"
|
||||||
|
|
||||||
#if __ARM_ARCH_4__ || __ARM_ARCH_4T__ || __ARM_ARCH == 4
|
#if __ARM_ARCH_4__ || __ARM_ARCH_4T__ || __ARM_ARCH == 4
|
||||||
#define BLX "mov lr,pc\n\tbx"
|
#define BLX "mov lr,pc\n\tbx"
|
||||||
#else
|
#else
|
||||||
#define BLX "blx"
|
#define BLX "blx"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern uintptr_t __attribute__((__visibility__("hidden")))
|
extern hidden uintptr_t __a_cas_ptr, __a_barrier_ptr;
|
||||||
__a_cas_ptr, __a_barrier_ptr;
|
|
||||||
|
|
||||||
#if ((__ARM_ARCH_6__ || __ARM_ARCH_6K__ || __ARM_ARCH_6KZ__ || __ARM_ARCH_6ZK__) && !__thumb__) \
|
#if ((__ARM_ARCH_6__ || __ARM_ARCH_6K__ || __ARM_ARCH_6KZ__ || __ARM_ARCH_6ZK__) && !__thumb__) \
|
||||||
|| __ARM_ARCH_6T2__ || __ARM_ARCH_7A__ || __ARM_ARCH_7R__ || __ARM_ARCH >= 7
|
|| __ARM_ARCH_6T2__ || __ARM_ARCH_7A__ || __ARM_ARCH_7R__ || __ARM_ARCH >= 7
|
||||||
|
@ -18,7 +18,7 @@ static inline pthread_t __pthread_self()
|
|||||||
|
|
||||||
static inline pthread_t __pthread_self()
|
static inline pthread_t __pthread_self()
|
||||||
{
|
{
|
||||||
extern uintptr_t __attribute__((__visibility__("hidden"))) __a_gettp_ptr;
|
extern hidden uintptr_t __a_gettp_ptr;
|
||||||
register uintptr_t p __asm__("r0");
|
register uintptr_t p __asm__("r0");
|
||||||
__asm__ __volatile__ ( BLX " %1" : "=r"(p) : "r"(__a_gettp_ptr) : "cc", "lr" );
|
__asm__ __volatile__ ( BLX " %1" : "=r"(p) : "r"(__a_gettp_ptr) : "cc", "lr" );
|
||||||
return (void *)(p-sizeof(struct pthread));
|
return (void *)(p-sizeof(struct pthread));
|
||||||
|
@ -3,8 +3,7 @@
|
|||||||
((union { long long ll; long l[2]; }){ .ll = x }).l[1]
|
((union { long long ll; long l[2]; }){ .ll = x }).l[1]
|
||||||
#define __SYSCALL_LL_O(x) 0, __SYSCALL_LL_E((x))
|
#define __SYSCALL_LL_O(x) 0, __SYSCALL_LL_E((x))
|
||||||
|
|
||||||
__attribute__((visibility("hidden")))
|
hidden long (__syscall)(long, ...);
|
||||||
long (__syscall)(long, ...);
|
|
||||||
|
|
||||||
#define SYSCALL_RLIM_INFINITY (-1UL/2)
|
#define SYSCALL_RLIM_INFINITY (-1UL/2)
|
||||||
|
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
#define __SYSCALL_LL_E(x) (x)
|
#define __SYSCALL_LL_E(x) (x)
|
||||||
#define __SYSCALL_LL_O(x) (x)
|
#define __SYSCALL_LL_O(x) (x)
|
||||||
|
|
||||||
__attribute__((visibility("hidden")))
|
hidden long (__syscall)(long, ...);
|
||||||
long (__syscall)(long, ...);
|
|
||||||
|
|
||||||
#define SYSCALL_RLIM_INFINITY (-1UL/2)
|
#define SYSCALL_RLIM_INFINITY (-1UL/2)
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
#include "libc.h"
|
||||||
|
|
||||||
#if defined(__SH4A__)
|
#if defined(__SH4A__)
|
||||||
|
|
||||||
#define a_ll a_ll
|
#define a_ll a_ll
|
||||||
@ -30,7 +32,7 @@ static inline void a_barrier()
|
|||||||
#else
|
#else
|
||||||
|
|
||||||
#define a_cas a_cas
|
#define a_cas a_cas
|
||||||
__attribute__((__visibility__("hidden"))) extern const void *__sh_cas_ptr;
|
extern hidden const void *__sh_cas_ptr;
|
||||||
static inline int a_cas(volatile int *p, int t, int s)
|
static inline int a_cas(volatile int *p, int t, int s)
|
||||||
{
|
{
|
||||||
register int r1 __asm__("r1");
|
register int r1 __asm__("r1");
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
#include <features.h>
|
#include <features.h>
|
||||||
|
#include "libc.h"
|
||||||
|
|
||||||
#define START "_start"
|
#define START "_start"
|
||||||
|
|
||||||
#include "crt_arch.h"
|
#include "crt_arch.h"
|
||||||
|
|
||||||
int main();
|
int main();
|
||||||
void _init() __attribute__((weak));
|
weak void _init();
|
||||||
void _fini() __attribute__((weak));
|
weak void _fini();
|
||||||
_Noreturn int __libc_start_main(int (*)(), int, char **,
|
_Noreturn int __libc_start_main(int (*)(), int, char **,
|
||||||
void (*)(), void(*)(), void(*)());
|
void (*)(), void(*)(), void(*)());
|
||||||
|
|
||||||
|
@ -3,13 +3,12 @@
|
|||||||
#include "../ldso/dlstart.c"
|
#include "../ldso/dlstart.c"
|
||||||
|
|
||||||
int main();
|
int main();
|
||||||
void _init() __attribute__((weak));
|
weak void _init();
|
||||||
void _fini() __attribute__((weak));
|
weak void _fini();
|
||||||
_Noreturn int __libc_start_main(int (*)(), int, char **,
|
_Noreturn int __libc_start_main(int (*)(), int, char **,
|
||||||
void (*)(), void(*)(), void(*)());
|
void (*)(), void(*)(), void(*)());
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden _Noreturn void __dls2(unsigned char *base, size_t *sp)
|
||||||
_Noreturn void __dls2(unsigned char *base, size_t *sp)
|
|
||||||
{
|
{
|
||||||
__libc_start_main(main, *sp, (void *)(sp+1), _init, _fini, 0);
|
__libc_start_main(main, *sp, (void *)(sp+1), _init, _fini, 0);
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include "dynlink.h"
|
#include "dynlink.h"
|
||||||
|
#include "libc.h"
|
||||||
|
|
||||||
#ifndef START
|
#ifndef START
|
||||||
#define START "_dlstart"
|
#define START "_dlstart"
|
||||||
@ -11,14 +12,13 @@
|
|||||||
|
|
||||||
#ifndef GETFUNCSYM
|
#ifndef GETFUNCSYM
|
||||||
#define GETFUNCSYM(fp, sym, got) do { \
|
#define GETFUNCSYM(fp, sym, got) do { \
|
||||||
__attribute__((__visibility__("hidden"))) void sym(); \
|
hidden void sym(); \
|
||||||
static void (*static_func_ptr)() = sym; \
|
static void (*static_func_ptr)() = sym; \
|
||||||
__asm__ __volatile__ ( "" : "+m"(static_func_ptr) : : "memory"); \
|
__asm__ __volatile__ ( "" : "+m"(static_func_ptr) : : "memory"); \
|
||||||
*(fp) = static_func_ptr; } while(0)
|
*(fp) = static_func_ptr; } while(0)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden void _dlstart_c(size_t *sp, size_t *dynv)
|
||||||
void _dlstart_c(size_t *sp, size_t *dynv)
|
|
||||||
{
|
{
|
||||||
size_t i, aux[AUX_CNT], dyn[DYN_CNT];
|
size_t i, aux[AUX_CNT], dyn[DYN_CNT];
|
||||||
size_t *rel, rel_size, base;
|
size_t *rel, rel_size, base;
|
||||||
|
@ -99,8 +99,7 @@ int __init_tp(void *);
|
|||||||
void __init_libc(char **, char *);
|
void __init_libc(char **, char *);
|
||||||
void *__copy_tls(unsigned char *);
|
void *__copy_tls(unsigned char *);
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden const char *__libc_get_version(void);
|
||||||
const char *__libc_get_version(void);
|
|
||||||
|
|
||||||
static struct builtin_tls {
|
static struct builtin_tls {
|
||||||
char c;
|
char c;
|
||||||
@ -133,14 +132,11 @@ static struct dso *const nodeps_dummy;
|
|||||||
|
|
||||||
struct debug *_dl_debug_addr = &debug;
|
struct debug *_dl_debug_addr = &debug;
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
extern hidden int __malloc_replaced;
|
||||||
extern int __malloc_replaced;
|
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden void (*const __init_array_start)(void)=0, (*const __fini_array_start)(void)=0;
|
||||||
void (*const __init_array_start)(void)=0, (*const __fini_array_start)(void)=0;
|
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
extern hidden void (*const __init_array_end)(void), (*const __fini_array_end)(void);
|
||||||
extern void (*const __init_array_end)(void), (*const __fini_array_end)(void);
|
|
||||||
|
|
||||||
weak_alias(__init_array_start, __init_array_end);
|
weak_alias(__init_array_start, __init_array_end);
|
||||||
weak_alias(__fini_array_start, __fini_array_end);
|
weak_alias(__fini_array_start, __fini_array_end);
|
||||||
@ -306,8 +302,7 @@ static struct symdef find_sym(struct dso *dso, const char *s, int need_def)
|
|||||||
return def;
|
return def;
|
||||||
}
|
}
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden ptrdiff_t __tlsdesc_static(), __tlsdesc_dynamic();
|
||||||
ptrdiff_t __tlsdesc_static(), __tlsdesc_dynamic();
|
|
||||||
|
|
||||||
static void do_relocs(struct dso *dso, size_t *rel, size_t rel_size, size_t stride)
|
static void do_relocs(struct dso *dso, size_t *rel, size_t rel_size, size_t stride)
|
||||||
{
|
{
|
||||||
@ -1332,8 +1327,7 @@ void __init_tls(size_t *auxv)
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden void *__tls_get_new(tls_mod_off_t *v)
|
||||||
void *__tls_get_new(tls_mod_off_t *v)
|
|
||||||
{
|
{
|
||||||
pthread_t self = __pthread_self();
|
pthread_t self = __pthread_self();
|
||||||
|
|
||||||
@ -1401,8 +1395,7 @@ static void update_tls_size()
|
|||||||
* linker itself, but some of the relocations performed may need to be
|
* linker itself, but some of the relocations performed may need to be
|
||||||
* replaced later due to copy relocations in the main program. */
|
* replaced later due to copy relocations in the main program. */
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden void __dls2(unsigned char *base, size_t *sp)
|
||||||
void __dls2(unsigned char *base, size_t *sp)
|
|
||||||
{
|
{
|
||||||
if (DL_FDPIC) {
|
if (DL_FDPIC) {
|
||||||
void *p1 = (void *)sp[-2];
|
void *p1 = (void *)sp[-2];
|
||||||
@ -1860,8 +1853,7 @@ end:
|
|||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden int __dl_invalid_handle(void *h)
|
||||||
int __dl_invalid_handle(void *h)
|
|
||||||
{
|
{
|
||||||
struct dso *p;
|
struct dso *p;
|
||||||
for (p=head; p; p=p->next) if (h==p) return 0;
|
for (p=head; p; p=p->next) if (h==p) return 0;
|
||||||
@ -2027,8 +2019,7 @@ int dladdr(const void *addr_arg, Dl_info *info)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
|
||||||
void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
|
|
||||||
{
|
{
|
||||||
void *res;
|
void *res;
|
||||||
pthread_rwlock_rdlock(&lock);
|
pthread_rwlock_rdlock(&lock);
|
||||||
@ -2063,8 +2054,7 @@ int dl_iterate_phdr(int(*callback)(struct dl_phdr_info *info, size_t size, void
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden void __dl_vseterr(const char *, va_list);
|
||||||
void __dl_vseterr(const char *, va_list);
|
|
||||||
|
|
||||||
static void error(const char *fmt, ...)
|
static void error(const char *fmt, ...)
|
||||||
{
|
{
|
||||||
|
3
src/env/__init_tls.c
vendored
3
src/env/__init_tls.c
vendored
@ -72,8 +72,7 @@ typedef Elf32_Phdr Phdr;
|
|||||||
typedef Elf64_Phdr Phdr;
|
typedef Elf64_Phdr Phdr;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
__attribute__((__weak__, __visibility__("hidden")))
|
extern weak hidden const size_t _DYNAMIC[];
|
||||||
extern const size_t _DYNAMIC[];
|
|
||||||
|
|
||||||
static void static_init_tls(size_t *aux)
|
static void static_init_tls(size_t *aux)
|
||||||
{
|
{
|
||||||
|
3
src/env/__libc_start_main.c
vendored
3
src/env/__libc_start_main.c
vendored
@ -11,8 +11,7 @@ void __init_tls(size_t *);
|
|||||||
static void dummy(void) {}
|
static void dummy(void) {}
|
||||||
weak_alias(dummy, _init);
|
weak_alias(dummy, _init);
|
||||||
|
|
||||||
__attribute__((__weak__, __visibility__("hidden")))
|
extern weak hidden void (*const __init_array_start)(void), (*const __init_array_end)(void);
|
||||||
extern void (*const __init_array_start)(void), (*const __init_array_end)(void);
|
|
||||||
|
|
||||||
static void dummy1(void *p) {}
|
static void dummy1(void *p) {}
|
||||||
weak_alias(dummy1, __init_ssp);
|
weak_alias(dummy1, __init_ssp);
|
||||||
|
3
src/env/__stack_chk_fail.c
vendored
3
src/env/__stack_chk_fail.c
vendored
@ -17,7 +17,6 @@ void __stack_chk_fail(void)
|
|||||||
a_crash();
|
a_crash();
|
||||||
}
|
}
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden void __stack_chk_fail_local(void);
|
||||||
void __stack_chk_fail_local(void);
|
|
||||||
|
|
||||||
weak_alias(__stack_chk_fail, __stack_chk_fail_local);
|
weak_alias(__stack_chk_fail, __stack_chk_fail_local);
|
||||||
|
@ -6,8 +6,7 @@
|
|||||||
#include "libc.h"
|
#include "libc.h"
|
||||||
#include "ksigaction.h"
|
#include "ksigaction.h"
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden volatile int __abort_lock[1];
|
||||||
volatile int __abort_lock[1];
|
|
||||||
|
|
||||||
_Noreturn void abort(void)
|
_Noreturn void abort(void)
|
||||||
{
|
{
|
||||||
|
@ -12,8 +12,7 @@ weak_alias(dummy, __funcs_on_exit);
|
|||||||
weak_alias(dummy, __stdio_exit);
|
weak_alias(dummy, __stdio_exit);
|
||||||
weak_alias(dummy, _fini);
|
weak_alias(dummy, _fini);
|
||||||
|
|
||||||
__attribute__((__weak__, __visibility__("hidden")))
|
extern weak hidden void (*const __fini_array_start)(void), (*const __fini_array_end)(void);
|
||||||
extern void (*const __fini_array_start)(void), (*const __fini_array_end)(void);
|
|
||||||
|
|
||||||
static void libc_exit_fini(void)
|
static void libc_exit_fini(void)
|
||||||
{
|
{
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
#include "libc.h"
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden void *__fdpic_fixup(void *map, uintptr_t *a, uintptr_t *z)
|
||||||
void *__fdpic_fixup(void *map, uintptr_t *a, uintptr_t *z)
|
|
||||||
{
|
{
|
||||||
/* If map is a null pointer, the program was loaded by a
|
/* If map is a null pointer, the program was loaded by a
|
||||||
* non-FDPIC-aware ELF loader, and fixups are not needed,
|
* non-FDPIC-aware ELF loader, and fixups are not needed,
|
||||||
|
@ -33,24 +33,21 @@ struct __libc {
|
|||||||
#define PAGE_SIZE libc.page_size
|
#define PAGE_SIZE libc.page_size
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __PIC__
|
#define weak __attribute__((__weak__))
|
||||||
#define ATTR_LIBC_VISIBILITY __attribute__((visibility("hidden")))
|
#define hidden __attribute__((__visibility__("hidden")))
|
||||||
#else
|
|
||||||
#define ATTR_LIBC_VISIBILITY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
extern struct __libc __libc ATTR_LIBC_VISIBILITY;
|
extern hidden struct __libc __libc;
|
||||||
#define libc __libc
|
#define libc __libc
|
||||||
|
|
||||||
extern size_t __hwcap ATTR_LIBC_VISIBILITY;
|
extern hidden size_t __hwcap;
|
||||||
extern size_t __sysinfo ATTR_LIBC_VISIBILITY;
|
extern hidden size_t __sysinfo;
|
||||||
extern char *__progname, *__progname_full;
|
extern char *__progname, *__progname_full;
|
||||||
|
|
||||||
/* Designed to avoid any overhead in non-threaded processes */
|
/* Designed to avoid any overhead in non-threaded processes */
|
||||||
void __lock(volatile int *) ATTR_LIBC_VISIBILITY;
|
hidden void __lock(volatile int *);
|
||||||
void __unlock(volatile int *) ATTR_LIBC_VISIBILITY;
|
hidden void __unlock(volatile int *);
|
||||||
int __lockfile(FILE *) ATTR_LIBC_VISIBILITY;
|
hidden int __lockfile(FILE *);
|
||||||
void __unlockfile(FILE *) ATTR_LIBC_VISIBILITY;
|
hidden void __unlockfile(FILE *);
|
||||||
#define LOCK(x) __lock(x)
|
#define LOCK(x) __lock(x)
|
||||||
#define UNLOCK(x) __unlock(x)
|
#define UNLOCK(x) __unlock(x)
|
||||||
|
|
||||||
@ -61,7 +58,7 @@ extern char **__environ;
|
|||||||
|
|
||||||
#undef weak_alias
|
#undef weak_alias
|
||||||
#define weak_alias(old, new) \
|
#define weak_alias(old, new) \
|
||||||
extern __typeof(old) new __attribute__((weak, alias(#old)))
|
extern __typeof(old) new __attribute__((__weak__, __alias__(#old)))
|
||||||
|
|
||||||
#undef LFS64_2
|
#undef LFS64_2
|
||||||
#define LFS64_2(x, y) weak_alias(x, y)
|
#define LFS64_2(x, y) weak_alias(x, y)
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
#ifndef MALLOC_IMPL_H
|
#ifndef MALLOC_IMPL_H
|
||||||
#define MALLOC_IMPL_H
|
#define MALLOC_IMPL_H
|
||||||
|
|
||||||
|
#include "libc.h"
|
||||||
|
|
||||||
void *__mmap(void *, size_t, int, int, int, off_t);
|
void *__mmap(void *, size_t, int, int, int, off_t);
|
||||||
int __munmap(void *, size_t);
|
int __munmap(void *, size_t);
|
||||||
void *__mremap(void *, size_t, size_t, int, ...);
|
void *__mremap(void *, size_t, size_t, int, ...);
|
||||||
@ -36,10 +38,8 @@ struct bin {
|
|||||||
|
|
||||||
#define IS_MMAPPED(c) !((c)->csize & (C_INUSE))
|
#define IS_MMAPPED(c) !((c)->csize & (C_INUSE))
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden void __bin_chunk(struct chunk *);
|
||||||
void __bin_chunk(struct chunk *);
|
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden extern int __malloc_replaced;
|
||||||
extern int __malloc_replaced;
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
__attribute__((__visibility__("hidden")))
|
#include "libc.h"
|
||||||
int __shcall(void *arg, int (*func)(void *))
|
|
||||||
|
hidden int __shcall(void *arg, int (*func)(void *))
|
||||||
{
|
{
|
||||||
return func(arg);
|
return func(arg);
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
#define _INTERNAL_SYSCALL_H
|
#define _INTERNAL_SYSCALL_H
|
||||||
|
|
||||||
#include <sys/syscall.h>
|
#include <sys/syscall.h>
|
||||||
|
#include "libc.h"
|
||||||
#include "syscall_arch.h"
|
#include "syscall_arch.h"
|
||||||
|
|
||||||
#ifndef SYSCALL_RLIM_INFINITY
|
#ifndef SYSCALL_RLIM_INFINITY
|
||||||
@ -21,8 +22,7 @@
|
|||||||
typedef long syscall_arg_t;
|
typedef long syscall_arg_t;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
__attribute__((visibility("hidden")))
|
hidden long __syscall_ret(unsigned long), __syscall(syscall_arg_t, ...),
|
||||||
long __syscall_ret(unsigned long), __syscall(syscall_arg_t, ...),
|
|
||||||
__syscall_cp(syscall_arg_t, syscall_arg_t, syscall_arg_t, syscall_arg_t,
|
__syscall_cp(syscall_arg_t, syscall_arg_t, syscall_arg_t, syscall_arg_t,
|
||||||
syscall_arg_t, syscall_arg_t, syscall_arg_t);
|
syscall_arg_t, syscall_arg_t, syscall_arg_t);
|
||||||
|
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
#include "version.h"
|
#include "version.h"
|
||||||
|
#include "libc.h"
|
||||||
|
|
||||||
static const char version[] = VERSION;
|
static const char version[] = VERSION;
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden const char *__libc_get_version()
|
||||||
const char *__libc_get_version()
|
|
||||||
{
|
{
|
||||||
return version;
|
return version;
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
#include <dlfcn.h>
|
#include <dlfcn.h>
|
||||||
#include "libc.h"
|
#include "libc.h"
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden void __dl_seterr(const char *, ...);
|
||||||
void __dl_seterr(const char *, ...);
|
|
||||||
|
|
||||||
static void *stub_dlsym(void *restrict p, const char *restrict s, void *restrict ra)
|
static void *stub_dlsym(void *restrict p, const char *restrict s, void *restrict ra)
|
||||||
{
|
{
|
||||||
|
@ -4,8 +4,7 @@
|
|||||||
|
|
||||||
#define AUX_CNT 38
|
#define AUX_CNT 38
|
||||||
|
|
||||||
__attribute__((__weak__, __visibility__("hidden")))
|
extern weak hidden const size_t _DYNAMIC[];
|
||||||
extern const size_t _DYNAMIC[];
|
|
||||||
|
|
||||||
static int static_dl_iterate_phdr(int(*callback)(struct dl_phdr_info *info, size_t size, void *data), void *data)
|
static int static_dl_iterate_phdr(int(*callback)(struct dl_phdr_info *info, size_t size, void *data), void *data)
|
||||||
{
|
{
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include <dlfcn.h>
|
#include <dlfcn.h>
|
||||||
|
#include "libc.h"
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden int __dl_invalid_handle(void *);
|
||||||
int __dl_invalid_handle(void *);
|
|
||||||
|
|
||||||
int dlclose(void *p)
|
int dlclose(void *p)
|
||||||
{
|
{
|
||||||
|
@ -23,8 +23,7 @@ void __dl_thread_cleanup(void)
|
|||||||
free(self->dlerror_buf);
|
free(self->dlerror_buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden void __dl_vseterr(const char *fmt, va_list ap)
|
||||||
void __dl_vseterr(const char *fmt, va_list ap)
|
|
||||||
{
|
{
|
||||||
va_list ap2;
|
va_list ap2;
|
||||||
va_copy(ap2, ap);
|
va_copy(ap2, ap);
|
||||||
@ -43,8 +42,7 @@ void __dl_vseterr(const char *fmt, va_list ap)
|
|||||||
self->dlerror_flag = 1;
|
self->dlerror_flag = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden void __dl_seterr(const char *fmt, ...)
|
||||||
void __dl_seterr(const char *fmt, ...)
|
|
||||||
{
|
{
|
||||||
va_list ap;
|
va_list ap;
|
||||||
va_start(ap, fmt);
|
va_start(ap, fmt);
|
||||||
@ -52,8 +50,7 @@ void __dl_seterr(const char *fmt, ...)
|
|||||||
va_end(ap);
|
va_end(ap);
|
||||||
}
|
}
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden int __dl_invalid_handle(void *);
|
||||||
int __dl_invalid_handle(void *);
|
|
||||||
|
|
||||||
static int stub_invalid_handle(void *h)
|
static int stub_invalid_handle(void *h)
|
||||||
{
|
{
|
||||||
|
@ -1,11 +1,10 @@
|
|||||||
#define _GNU_SOURCE
|
#define _GNU_SOURCE
|
||||||
#include <dlfcn.h>
|
#include <dlfcn.h>
|
||||||
|
#include "libc.h"
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden int __dl_invalid_handle(void *);
|
||||||
int __dl_invalid_handle(void *);
|
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden void __dl_seterr(const char *, ...);
|
||||||
void __dl_seterr(const char *, ...);
|
|
||||||
|
|
||||||
int dlinfo(void *dso, int req, void *res)
|
int dlinfo(void *dso, int req, void *res)
|
||||||
{
|
{
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
#include <dlfcn.h>
|
#include <dlfcn.h>
|
||||||
#include "libc.h"
|
#include "libc.h"
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden void __dl_seterr(const char *, ...);
|
||||||
void __dl_seterr(const char *, ...);
|
|
||||||
|
|
||||||
static void *stub_dlopen(const char *file, int mode)
|
static void *stub_dlopen(const char *file, int mode)
|
||||||
{
|
{
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include "libc.h"
|
#include "libc.h"
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden ptrdiff_t __tlsdesc_static(), __tlsdesc_dynamic();
|
||||||
ptrdiff_t __tlsdesc_static(), __tlsdesc_dynamic();
|
|
||||||
|
|
||||||
ptrdiff_t __tlsdesc_static()
|
ptrdiff_t __tlsdesc_static()
|
||||||
{
|
{
|
||||||
|
@ -1,11 +1,9 @@
|
|||||||
#define bittab __fsmu8
|
#define bittab __fsmu8
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
#include "libc.h"
|
||||||
|
|
||||||
#ifdef __PIC__
|
extern hidden const uint32_t bittab[];
|
||||||
__attribute__((__visibility__("hidden")))
|
|
||||||
#endif
|
|
||||||
extern const uint32_t bittab[];
|
|
||||||
|
|
||||||
/* Upper 6 state bits are a negative integer offset to bound-check next byte */
|
/* Upper 6 state bits are a negative integer offset to bound-check next byte */
|
||||||
/* equivalent to: ( (b-0x80) | (b+offset) ) & ~0x3f */
|
/* equivalent to: ( (b-0x80) | (b+offset) ) & ~0x3f */
|
||||||
|
@ -8,7 +8,8 @@
|
|||||||
|
|
||||||
volatile int dummy_lock[1] = { 0 };
|
volatile int dummy_lock[1] = { 0 };
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
extern hidden volatile int __abort_lock[1];
|
||||||
|
|
||||||
weak_alias(dummy_lock, __abort_lock);
|
weak_alias(dummy_lock, __abort_lock);
|
||||||
|
|
||||||
static int unmask_done;
|
static int unmask_done;
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
#include <setjmp.h>
|
#include <setjmp.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include "syscall.h"
|
#include "syscall.h"
|
||||||
|
#include "libc.h"
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden int __sigsetjmp_tail(sigjmp_buf jb, int ret)
|
||||||
int __sigsetjmp_tail(sigjmp_buf jb, int ret)
|
|
||||||
{
|
{
|
||||||
void *p = jb->__ss;
|
void *p = jb->__ss;
|
||||||
__syscall(SYS_rt_sigprocmask, SIG_SETMASK, ret?p:0, ret?0:p, _NSIG/8);
|
__syscall(SYS_rt_sigprocmask, SIG_SETMASK, ret?p:0, ret?0:p, _NSIG/8);
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#include "pthread_impl.h"
|
#include "pthread_impl.h"
|
||||||
#include "syscall.h"
|
#include "syscall.h"
|
||||||
|
#include "libc.h"
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden long __syscall_cp_c();
|
||||||
long __syscall_cp_c();
|
|
||||||
|
|
||||||
static long sccp(syscall_arg_t nr,
|
static long sccp(syscall_arg_t nr,
|
||||||
syscall_arg_t u, syscall_arg_t v, syscall_arg_t w,
|
syscall_arg_t u, syscall_arg_t v, syscall_arg_t w,
|
||||||
|
@ -2,8 +2,7 @@
|
|||||||
#include "pthread_impl.h"
|
#include "pthread_impl.h"
|
||||||
#include "libc.h"
|
#include "libc.h"
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden void *__tls_get_new(tls_mod_off_t *);
|
||||||
void *__tls_get_new(tls_mod_off_t *);
|
|
||||||
|
|
||||||
void *__tls_get_addr(tls_mod_off_t *v)
|
void *__tls_get_addr(tls_mod_off_t *v)
|
||||||
{
|
{
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
#define HWCAP_TLS (1 << 15)
|
#define HWCAP_TLS (1 << 15)
|
||||||
|
|
||||||
extern const unsigned char __attribute__((__visibility__("hidden")))
|
extern hidden const unsigned char
|
||||||
__a_barrier_oldkuser[], __a_barrier_v6[], __a_barrier_v7[],
|
__a_barrier_oldkuser[], __a_barrier_v6[], __a_barrier_v7[],
|
||||||
__a_cas_v6[], __a_cas_v7[],
|
__a_cas_v6[], __a_cas_v7[],
|
||||||
__a_gettp_cp15[];
|
__a_gettp_cp15[];
|
||||||
@ -22,8 +22,7 @@ extern const unsigned char __attribute__((__visibility__("hidden")))
|
|||||||
#define __a_gettp_kuser 0xffff0fe0
|
#define __a_gettp_kuser 0xffff0fe0
|
||||||
#define __a_gettp_cp15 (uintptr_t)__a_gettp_cp15
|
#define __a_gettp_cp15 (uintptr_t)__a_gettp_cp15
|
||||||
|
|
||||||
extern uintptr_t __attribute__((__visibility__("hidden")))
|
extern hidden uintptr_t __a_barrier_ptr, __a_cas_ptr, __a_gettp_ptr;
|
||||||
__a_barrier_ptr, __a_cas_ptr, __a_gettp_ptr;
|
|
||||||
|
|
||||||
int __set_thread_area(void *p)
|
int __set_thread_area(void *p)
|
||||||
{
|
{
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#include "pthread_impl.h"
|
#include "pthread_impl.h"
|
||||||
#include "syscall.h"
|
#include "syscall.h"
|
||||||
|
#include "libc.h"
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden void *__start_sched(void *p)
|
||||||
void *__start_sched(void *p)
|
|
||||||
{
|
{
|
||||||
struct start_sched_args *ssa = p;
|
struct start_sched_args *ssa = p;
|
||||||
void *start_arg = ssa->start_arg;
|
void *start_arg = ssa->start_arg;
|
||||||
|
@ -4,8 +4,7 @@
|
|||||||
#include "syscall.h"
|
#include "syscall.h"
|
||||||
#include "libc.h"
|
#include "libc.h"
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden long __cancel(), __syscall_cp_asm(), __syscall_cp_c();
|
||||||
long __cancel(), __syscall_cp_asm(), __syscall_cp_c();
|
|
||||||
|
|
||||||
long __cancel()
|
long __cancel()
|
||||||
{
|
{
|
||||||
@ -45,8 +44,7 @@ static void _sigaddset(sigset_t *set, int sig)
|
|||||||
set->__bits[s/8/sizeof *set->__bits] |= 1UL<<(s&8*sizeof *set->__bits-1);
|
set->__bits[s/8/sizeof *set->__bits] |= 1UL<<(s&8*sizeof *set->__bits-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
extern hidden const char __cp_begin[1], __cp_end[1], __cp_cancel[1];
|
||||||
extern const char __cp_begin[1], __cp_end[1], __cp_cancel[1];
|
|
||||||
|
|
||||||
static void cancel_handler(int sig, siginfo_t *si, void *ctx)
|
static void cancel_handler(int sig, siginfo_t *si, void *ctx)
|
||||||
{
|
{
|
||||||
|
@ -7,14 +7,11 @@
|
|||||||
#define CPU_HAS_LLSC 0x0040
|
#define CPU_HAS_LLSC 0x0040
|
||||||
#define CPU_HAS_CAS_L 0x0400
|
#define CPU_HAS_CAS_L 0x0400
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
extern hidden const char __sh_cas_gusa[], __sh_cas_llsc[], __sh_cas_imask[], __sh_cas_cas_l[];
|
||||||
extern const char __sh_cas_gusa[], __sh_cas_llsc[], __sh_cas_imask[], __sh_cas_cas_l[];
|
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden const void *__sh_cas_ptr;
|
||||||
const void *__sh_cas_ptr;
|
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden unsigned __sh_nommu;
|
||||||
unsigned __sh_nommu;
|
|
||||||
|
|
||||||
int __set_thread_area(void *p)
|
int __set_thread_area(void *p)
|
||||||
{
|
{
|
||||||
|
@ -12,7 +12,7 @@ void __unmapself_sh_nommu(void *, size_t);
|
|||||||
: : "r"(pc), "r"(sp) : "r0", "memory" )
|
: : "r"(pc), "r"(sp) : "r0", "memory" )
|
||||||
#include "../__unmapself.c"
|
#include "../__unmapself.c"
|
||||||
#undef __unmapself
|
#undef __unmapself
|
||||||
extern __attribute__((__visibility__("hidden"))) unsigned __sh_nommu;
|
extern hidden unsigned __sh_nommu;
|
||||||
#else
|
#else
|
||||||
#define __sh_nommu 0
|
#define __sh_nommu 0
|
||||||
#endif
|
#endif
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
#include <sys/syscall.h>
|
#include <sys/syscall.h>
|
||||||
|
#include "libc.h"
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden long __syscall_cp_internal(volatile void*, long long, long long,
|
||||||
long __syscall_cp_internal(volatile void*, long long, long long, long long, long long,
|
long long, long long, long long,
|
||||||
long long, long long, long long);
|
long long, long long);
|
||||||
|
|
||||||
struct __timespec { long long tv_sec; long tv_nsec; };
|
struct __timespec { long long tv_sec; long tv_nsec; };
|
||||||
struct __timespec_kernel { long long tv_sec; long long tv_nsec; };
|
struct __timespec_kernel { long long tv_sec; long long tv_nsec; };
|
||||||
@ -12,9 +13,9 @@ struct __timespec_kernel { long long tv_sec; long long tv_nsec; };
|
|||||||
ts->tv_nsec = __tsc(X)->tv_nsec; \
|
ts->tv_nsec = __tsc(X)->tv_nsec; \
|
||||||
(X) = (unsigned long)ts; } } while(0)
|
(X) = (unsigned long)ts; } } while(0)
|
||||||
|
|
||||||
__attribute__((__visibility__("hidden")))
|
hidden long __syscall_cp_asm (volatile void * foo, long long n, long long a1,
|
||||||
long __syscall_cp_asm (volatile void * foo, long long n, long long a1, long long a2, long long a3,
|
long long a2, long long a3, long long a4,
|
||||||
long long a4, long long a5, long long a6)
|
long long a5, long long a6)
|
||||||
{
|
{
|
||||||
struct __timespec_kernel ts[1];
|
struct __timespec_kernel ts[1];
|
||||||
switch (n) {
|
switch (n) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user