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

📄 rtld.h

📁 早期freebsd实现
💻 H
字号:
/* * This source code is a product of Sun Microsystems, Inc. and is provided * for unrestricted use provided that this legend is included on all tape * media and as a part of the software program in whole or part.  Users * may copy or modify this source code without charge, but are not authorized * to license or distribute it to anyone else except as part of a product or * program developed by the user. * * THIS PROGRAM CONTAINS SOURCE CODE COPYRIGHTED BY SUN MICROSYSTEMS, INC. * SUN MICROSYSTEMS, INC., MAKES NO REPRESENTATIONS ABOUT THE SUITABLITY * OF SUCH SOURCE CODE FOR ANY PURPOSE.  IT IS PROVIDED "AS IS" WITHOUT * EXPRESS OR IMPLIED WARRANTY OF ANY KIND.  SUN MICROSYSTEMS, INC. DISCLAIMS * ALL WARRANTIES WITH REGARD TO SUCH SOURCE CODE, INCLUDING ALL IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  IN * NO EVENT SHALL SUN MICROSYSTEMS, INC. BE LIABLE FOR ANY SPECIAL, INDIRECT, * INCIDENTAL, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING * FROM USE OF SUCH SOURCE CODE, REGARDLESS OF THE THEORY OF LIABILITY. *  * This source code is provided with no support and without any obligation on * the part of Sun Microsystems, Inc. to assist in its use, correction,  * modification or enhancement. * * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY THIS * SOURCE CODE OR ANY PART THEREOF. * * Sun Microsystems, Inc. * 2550 Garcia Avenue * Mountain View, California 94043 *//* @(#)rtld.h 1.11 91/03/16 SMI *//* * Copyright (c) 1991 by Sun Microsystems, Inc. *//* * Global definitions for run-time link editor. *//* * General macros. */#define PROUND(x) (((x) + PAGESIZE - 1) & ~(PAGESIZE - 1))					/* round to page size */#define	MAIN_BASE	PAGSIZ		/* place where "main" is mapped */#define SROUND(x) ((x + SEGSIZ - 1) &~ (SEGSIZ - 1))					/* round to segment size */#define	SIZE(x) (SROUND((x).a_text) + (x).a_data + (x).a_bss)					/* address space "claim" */#define max(a,b) ((a) < (b) ? (b) : (a))/* * Code collapsing macros. */#define	LM2LP(lmp)	((struct ld_private *)lmp->lm_lpd)/* * Define our own versions of ctype macros to avoid hauling in the * ctype_ array. */#define isdigit(c)	(((c) >= '0') && ((c) <= '9'))#define	isspace(c)	(((c) == ' ') || (((c) >= '\t') && ((c) <= '\015')))/* * State descriptor for object accessed via "dlopen". */#define	DL_MAGIC 0x580331		/* unlikely quantity */#define	DL_CIGAM 0x830504		/* matching unlikely quantity */struct dl_object {	long	dl_magic;		/* DL_MAGIC */	struct	dl_object *dl_next;	/* next dlopen object */	struct	dl_object *dl_dep;	/* next dependent object */	struct	link_map *dl_lmp;	/* point back to the link map */	long	dl_refcnt;		/* reference count */	long	dl_cigam;		/* DL_CIGAM */};/* * Loader link_map private data.  Generally a cache for relocated items * fetched from the object's link_dynamic structure. * * N.B. lp_lobase is a hack to overcome a problem in version #2 __DYNAMIC * programs.  For main programs, ld-generated data structures in the text * segment are relocated against "0" rather than the actual text base * address.   */struct	ld_private {	struct	jbind *lp_plt;		/* procedure linkage table */	struct	relocation_info *lp_rp;	/* relocation table */	struct	fshash *lp_hash;	/* hash table */	struct	nlist *lp_symtab;	/* symbol table */	char	*lp_symstr;		/* symbol strings */	caddr_t	lp_textbase;		/* base address for text addressing */	struct	nlist *(*lp_interp)();	/* link map interpreter */	long	lp_refcnt;		/* reference count of link map */	struct 	dl_object *lp_dlp;	/* pointer to a dlopen object */	struct	dl_object *lp_dlh;	/* pointer to head of a dl chain */	caddr_t	lp_symbol_base;		/* base address for symbols */};/* * macro off which to base text addressing -- use this to access * link_object lists and addresses and other things which are sensitive * to the "main program" bug. */#define	TEXTBASE(lmp)	(LM2LP(lmp)->lp_textbase)/* * General global declarations */extern int stdout;			/* file descriptor for results */extern int stderr;			/* file descriptor for errors */extern int errno;			/* system call error value */extern char **environ;			/* environment strings */extern void getreuid();			/* system call jacket for r/euid */extern void getregid();			/* ditto for r/egid */extern char *rtmalloc();		/* heap allocation */extern char *getenv();			/* access to environment variables */extern caddr_t mmap();			/* memory mapping system call */extern int secure_objects();		/* indicates setu/gid or not */extern void panic();			/* fatal error handling *//* * Error code (strings). */extern	char DLE_none[];		/* no error */extern	char DLE_mode_error[];		/* dlopen mode */extern	char DLE_bad_handle[];		/* invalid dl object handle */extern	char DLE_can_not_open[];	/* unable to map */extern	char DLE_undefined[];		/* undefined symbol reference */extern	char DLE_conflict[];		/* conflicting use of dependent .so */

⌨️ 快捷键说明

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