⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ldsodefs.h

📁 Newlib 嵌入式 C库 标准实现代码
💻 H
📖 第 1 页 / 共 2 页
字号:
   tag showing the PID.  */extern void _dl_debug_printf (const char *fmt, ...)     __attribute__ ((__format__ (__printf__, 1, 2)));/* Write message on the debug file descriptor.  The parameters are   interpreted as for a `printf' call.  All the lines buf the first   start with a tag showing the PID.  */extern void _dl_debug_printf_c (const char *fmt, ...)     __attribute__ ((__format__ (__printf__, 1, 2)));/* Write a message on the specified descriptor FD.  The parameters are   interpreted as for a `printf' call.  */extern void _dl_dprintf (int fd, const char *fmt, ...)     __attribute__ ((__format__ (__printf__, 2, 3)));/* Write a message on the specified descriptor standard output.  The   parameters are interpreted as for a `printf' call.  */#define _dl_printf(fmt, args...) \  _dl_dprintf (STDOUT_FILENO, fmt, ##args)/* Write a message on the specified descriptor standard error.  The   parameters are interpreted as for a `printf' call.  */#define _dl_error_printf(fmt, args...) \  _dl_dprintf (STDERR_FILENO, fmt, ##args)/* Write a message on the specified descriptor standard error and exit   the program.  The parameters are interpreted as for a `printf' call.  */#define _dl_fatal_printf(fmt, args...) \  do									      \    {									      \      _dl_dprintf (STDERR_FILENO, fmt, ##args);				      \      _exit (127);							      \    }									      \  while (1)/* This function is called by all the internal dynamic linker functions   when they encounter an error.  ERRCODE is either an `errno' code or   zero; OBJECT is the name of the problematical shared object, or null if   it is a general problem; ERRSTRING is a string describing the specific   problem.  */extern void _dl_signal_error (int errcode, const char *object,			      const char *occurred, const char *errstring)     internal_function     __attribute__ ((__noreturn__));/* Like _dl_signal_error, but may return when called in the context of   _dl_receive_error.  */extern void _dl_signal_cerror (int errcode, const char *object,			       const char *occation, const char *errstring)     internal_function;/* Call OPERATE, receiving errors from `dl_signal_cerror'.  Unlike   `_dl_catch_error' the operation is resumed after the OPERATE   function returns.   ARGS is passed as argument to OPERATE.  */extern void _dl_receive_error (receiver_fct fct, void (*operate) (void *),			       void *args)     internal_function;/* Open the shared object NAME and map in its segments.   LOADER's DT_RPATH is used in searching for NAME.   If the object is already opened, returns its existing map.   For preloaded shared objects PRELOADED is set to a non-zero   value to allow additional security checks.  */extern struct link_map *_dl_map_object (struct link_map *loader,					const char *name, int preloaded,					int type, int trace_mode, int mode)     internal_function;/* Call _dl_map_object on the dependencies of MAP, and set up   MAP->l_searchlist.  PRELOADS points to a vector of NPRELOADS previously   loaded objects that will be inserted into MAP->l_searchlist after MAP   but before its dependencies.  */extern void _dl_map_object_deps (struct link_map *map,				 struct link_map **preloads,				 unsigned int npreloads, int trace_mode)     internal_function;/* Cache the locations of MAP's hash table.  */extern void _dl_setup_hash (struct link_map *map) internal_function;/* Search loaded objects' symbol tables for a definition of the symbol   referred to by UNDEF.  *SYM is the symbol table entry containing the   reference; it is replaced with the defining symbol, and the base load   address of the defining object is returned.  SYMBOL_SCOPE is a   null-terminated list of object scopes to search; each object's   l_searchlist (i.e. the segment of the dependency tree starting at that   object) is searched in turn.  REFERENCE_NAME should name the object   containing the reference; it is used in error messages.   TYPE_CLASS describes the type of symbol we are looking for.  */extern lookup_t _dl_lookup_symbol (const char *undef,				   struct link_map *undef_map,				   const ElfW(Sym) **sym,				   struct r_scope_elem *symbol_scope[],				   int type_class, int explicit)     internal_function;/* Lookup versioned symbol.  */extern lookup_t _dl_lookup_versioned_symbol (const char *undef,					     struct link_map *undef_map,					     const ElfW(Sym) **sym,					     struct r_scope_elem *symbol_scope[],					     const struct r_found_version *version,					     int type_class, int explicit)     internal_function;/* For handling RTLD_NEXT we must be able to skip shared objects.  */extern lookup_t _dl_lookup_symbol_skip (const char *undef,					struct link_map *undef_map,					const ElfW(Sym) **sym,					struct r_scope_elem *symbol_scope[],					struct link_map *skip_this)     internal_function;/* For handling RTLD_NEXT with versioned symbols we must be able to   skip shared objects.  */extern lookup_t _dl_lookup_versioned_symbol_skip (const char *undef,						  struct link_map *undef_map,						  const ElfW(Sym) **sym,						  struct r_scope_elem *symbol_scope[],						  const struct r_found_version *version,						  struct link_map *skip_this)     internal_function;/* Look up symbol NAME in MAP's scope and return its run-time address.  */extern ElfW(Addr) _dl_symbol_value (struct link_map *map, const char *name)     internal_function;/* Structure describing the dynamic linker itself.  */extern struct link_map _dl_rtld_map;/* And a pointer to the map for the main map.  */extern struct link_map *_dl_loaded;/* Number of object in the _dl_loaded list.  */extern unsigned int _dl_nloaded;/* Array representing global scope.  */extern struct r_scope_elem *_dl_global_scope[2];/* Direct pointer to the searchlist of the main object.  */extern struct r_scope_elem *_dl_main_searchlist;/* Copy of the content of `_dl_main_searchlist'.  */extern struct r_scope_elem _dl_initial_searchlist;/* This is zero at program start to signal that the global scope map is   allocated by rtld.  Later it keeps the size of the map.  It might be   reset if in _dl_close if the last global object is removed.  */extern size_t _dl_global_scope_alloc;/* Allocate a `struct link_map' for a new object being loaded,   and enter it into the _dl_main_map list.  */extern struct link_map *_dl_new_object (char *realname, const char *libname,					int type, struct link_map *loader)     internal_function;/* Relocate the given object (if it hasn't already been).   SCOPE is passed to _dl_lookup_symbol in symbol lookups.   If LAZY is nonzero, don't relocate its PLT.  */extern void _dl_relocate_object (struct link_map *map,				 struct r_scope_elem *scope[],				 int lazy, int consider_profiling);/* Call _dl_signal_error with a message about an unhandled reloc type.   TYPE is the result of ELFW(R_TYPE) (r_info), i.e. an R_<CPU>_* value.   PLT is nonzero if this was a PLT reloc; it just affects the message.  */extern void _dl_reloc_bad_type (struct link_map *map,				unsigned int type, int plt)     internal_function __attribute__ ((__noreturn__));/* Check the version dependencies of all objects available through   MAP.  If VERBOSE print some more diagnostics.  */extern int _dl_check_all_versions (struct link_map *map, int verbose,				   int trace_mode)     internal_function;/* Check the version dependencies for MAP.  If VERBOSE print some more   diagnostics.  */extern int _dl_check_map_versions (struct link_map *map, int verbose,				   int trace_mode)     internal_function;/* Initialize the object in SCOPE by calling the constructors with   ARGC, ARGV, and ENV as the parameters.  */extern void _dl_init (struct link_map *main_map, int argc, char **argv,		      char **env) internal_function;/* Call the finalizer functions of all shared objects whose   initializer functions have completed.  */extern void _dl_fini (void) internal_function;/* The dynamic linker calls this function before and having changing   any shared object mappings.  The `r_state' member of `struct r_debug'   says what change is taking place.  This function's address is   the value of the `r_brk' member.  */extern void _dl_debug_state (void);/* Initialize `struct r_debug' if it has not already been done.  The   argument is the run-time load address of the dynamic linker, to be put   in the `r_ldbase' member.  Returns the address of the structure.  */extern struct r_debug *_dl_debug_initialize (ElfW(Addr) ldbase)     internal_function;/* Initialize the basic data structure for the search paths.  */extern void _dl_init_paths (const char *library_path) internal_function;/* Gather the information needed to install the profiling tables and start   the timers.  */extern void _dl_start_profile (struct link_map *map, const char *output_dir)     internal_function;/* The actual functions used to keep book on the calls.  */extern void _dl_mcount (ElfW(Addr) frompc, ElfW(Addr) selfpc);/* This function is simply a wrapper around the _dl_mcount function   which does not require a FROMPC parameter since this is the   calling function.  */extern void _dl_mcount_wrapper (void *selfpc);/* Show the members of the auxiliary array passed up from the kernel.  */extern void _dl_show_auxv (void) internal_function;/* Return all environment variables starting with `LD_', one after the   other.  */extern char *_dl_next_ld_env_entry (char ***position) internal_function;/* Return an array with the names of the important hardware capabilities.  */extern const struct r_strlenpair *_dl_important_hwcaps (const char *platform,							size_t paltform_len,							size_t *sz,							size_t *max_capstrlen)     internal_function;/* Look up NAME in ld.so.cache and return the file name stored there,   or null if none is found.  */extern const char *_dl_load_cache_lookup (const char *name)     internal_function;/* If the system does not support MAP_COPY we cannot leave the file open   all the time since this would create problems when the file is replaced.   Therefore we provide this function to close the file and open it again   once needed.  */extern void _dl_unload_cache (void);/* System-dependent function to read a file's whole contents in the   most convenient manner available.  *SIZEP gets the size of the   file.  On error MAP_FAILED is returned.  */extern void *_dl_sysdep_read_whole_file (const char *file, size_t *sizep,					 int prot)     internal_function;/* System-specific function to do initial startup for the dynamic linker.   After this, file access calls and getenv must work.  This is responsible   for setting __libc_enable_secure if we need to be secure (e.g. setuid),   and for setting _dl_argc and _dl_argv, and then calling _dl_main.  */extern ElfW(Addr) _dl_sysdep_start (void **start_argptr,				    void (*dl_main) (const ElfW(Phdr) *phdr,						     ElfW(Word) phnum,						     ElfW(Addr) *user_entry));extern void _dl_sysdep_start_cleanup (void)     internal_function;__END_DECLS#endif /* ldsodefs.h */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -