2015-10-06 20:08:13 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 The Android Open Source Project
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
2016-03-04 20:53:09 +01:00
|
|
|
|
2015-10-06 20:08:13 +02:00
|
|
|
#ifndef _PRIVATE_BIONIC_GLOBALS_H
|
|
|
|
#define _PRIVATE_BIONIC_GLOBALS_H
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
2016-03-04 20:53:09 +01:00
|
|
|
|
2018-06-02 00:30:54 +02:00
|
|
|
#include "private/bionic_fdsan.h"
|
2015-10-08 23:49:26 +02:00
|
|
|
#include "private/bionic_malloc_dispatch.h"
|
2015-10-06 20:08:13 +02:00
|
|
|
#include "private/bionic_vdso.h"
|
|
|
|
#include "private/WriteProtected.h"
|
|
|
|
|
|
|
|
struct libc_globals {
|
|
|
|
vdso_entry vdso[VDSO_END];
|
2015-10-07 23:32:36 +02:00
|
|
|
long setjmp_cookie;
|
2015-11-17 02:30:32 +01:00
|
|
|
MallocDispatch malloc_dispatch;
|
2015-10-06 20:08:13 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
__LIBC_HIDDEN__ extern WriteProtected<libc_globals> __libc_globals;
|
|
|
|
|
2018-06-02 00:30:54 +02:00
|
|
|
// Globals shared between the dynamic linker and libc.so.
|
|
|
|
struct libc_shared_globals {
|
2018-08-07 03:47:29 +02:00
|
|
|
FdTable fd_table;
|
2018-10-02 08:10:05 +02:00
|
|
|
|
|
|
|
// When the linker is invoked on a binary (e.g. `linker64 /system/bin/date`),
|
|
|
|
// record the number of arguments passed to the linker itself rather than to
|
|
|
|
// the program it's loading. Typically 0, sometimes 1.
|
|
|
|
int initial_linker_arg_count;
|
2018-06-02 00:30:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
__LIBC_HIDDEN__ extern libc_shared_globals* __libc_shared_globals;
|
|
|
|
__LIBC_HIDDEN__ void __libc_init_shared_globals(libc_shared_globals*);
|
|
|
|
__LIBC_HIDDEN__ void __libc_init_fdsan();
|
|
|
|
|
2015-10-06 20:08:13 +02:00
|
|
|
class KernelArgumentBlock;
|
2015-10-08 23:49:26 +02:00
|
|
|
__LIBC_HIDDEN__ void __libc_init_malloc(libc_globals* globals);
|
2016-03-04 20:53:09 +01:00
|
|
|
__LIBC_HIDDEN__ void __libc_init_setjmp_cookie(libc_globals* globals, KernelArgumentBlock& args);
|
|
|
|
__LIBC_HIDDEN__ void __libc_init_vdso(libc_globals* globals, KernelArgumentBlock& args);
|
|
|
|
|
2015-11-12 08:02:14 +01:00
|
|
|
#if defined(__i386__)
|
|
|
|
__LIBC_HIDDEN__ extern void* __libc_sysinfo;
|
|
|
|
__LIBC_HIDDEN__ void __libc_init_sysinfo(KernelArgumentBlock& args);
|
|
|
|
#endif
|
|
|
|
|
2015-10-06 20:08:13 +02:00
|
|
|
#endif
|