1*7c478bd9Sstevel@tonic-gate /* 2*7c478bd9Sstevel@tonic-gate * CDDL HEADER START 3*7c478bd9Sstevel@tonic-gate * 4*7c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*7c478bd9Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 6*7c478bd9Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 7*7c478bd9Sstevel@tonic-gate * with the License. 8*7c478bd9Sstevel@tonic-gate * 9*7c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*7c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 11*7c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 12*7c478bd9Sstevel@tonic-gate * and limitations under the License. 13*7c478bd9Sstevel@tonic-gate * 14*7c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 15*7c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*7c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 17*7c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 18*7c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 19*7c478bd9Sstevel@tonic-gate * 20*7c478bd9Sstevel@tonic-gate * CDDL HEADER END 21*7c478bd9Sstevel@tonic-gate */ 22*7c478bd9Sstevel@tonic-gate /* 23*7c478bd9Sstevel@tonic-gate * Copyright (c) 1988 AT&T 24*7c478bd9Sstevel@tonic-gate * All Rights Reserved 25*7c478bd9Sstevel@tonic-gate * 26*7c478bd9Sstevel@tonic-gate * 27*7c478bd9Sstevel@tonic-gate * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 28*7c478bd9Sstevel@tonic-gate * Use is subject to license terms. 29*7c478bd9Sstevel@tonic-gate */ 30*7c478bd9Sstevel@tonic-gate 31*7c478bd9Sstevel@tonic-gate #ifndef _CONV_H 32*7c478bd9Sstevel@tonic-gate #define _CONV_H 33*7c478bd9Sstevel@tonic-gate 34*7c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 35*7c478bd9Sstevel@tonic-gate 36*7c478bd9Sstevel@tonic-gate /* 37*7c478bd9Sstevel@tonic-gate * Global include file for conversion library. 38*7c478bd9Sstevel@tonic-gate */ 39*7c478bd9Sstevel@tonic-gate 40*7c478bd9Sstevel@tonic-gate #include <stdlib.h> 41*7c478bd9Sstevel@tonic-gate #include <libelf.h> 42*7c478bd9Sstevel@tonic-gate #include <dlfcn.h> 43*7c478bd9Sstevel@tonic-gate #include <libld.h> 44*7c478bd9Sstevel@tonic-gate #include <sgs.h> 45*7c478bd9Sstevel@tonic-gate #include <machdep.h> 46*7c478bd9Sstevel@tonic-gate 47*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 48*7c478bd9Sstevel@tonic-gate extern "C" { 49*7c478bd9Sstevel@tonic-gate #endif 50*7c478bd9Sstevel@tonic-gate 51*7c478bd9Sstevel@tonic-gate /* 52*7c478bd9Sstevel@tonic-gate * Configuration features available - maintained here (instead of debug.h) 53*7c478bd9Sstevel@tonic-gate * to save libconv from having to include debug.h which results in numerous 54*7c478bd9Sstevel@tonic-gate * "declared but not used or defined" lint errors. 55*7c478bd9Sstevel@tonic-gate */ 56*7c478bd9Sstevel@tonic-gate #define CONF_EDLIBPATH 0x000100 /* ELF default library path */ 57*7c478bd9Sstevel@tonic-gate #define CONF_ESLIBPATH 0x000200 /* ELF secure library path */ 58*7c478bd9Sstevel@tonic-gate #define CONF_ADLIBPATH 0x000400 /* AOUT default library path */ 59*7c478bd9Sstevel@tonic-gate #define CONF_ASLIBPATH 0x000800 /* AOUT secure library path */ 60*7c478bd9Sstevel@tonic-gate #define CONF_DIRCFG 0x001000 /* directory configuration available */ 61*7c478bd9Sstevel@tonic-gate #define CONF_OBJALT 0x002000 /* object alternatives available */ 62*7c478bd9Sstevel@tonic-gate #define CONF_MEMRESV 0x004000 /* memory reservation required */ 63*7c478bd9Sstevel@tonic-gate #define CONF_ENVS 0x008000 /* environment variables available */ 64*7c478bd9Sstevel@tonic-gate #define CONF_FLTR 0x010000 /* filter information available */ 65*7c478bd9Sstevel@tonic-gate #define CONF_FEATMSK 0xffff00 66*7c478bd9Sstevel@tonic-gate 67*7c478bd9Sstevel@tonic-gate /* 68*7c478bd9Sstevel@tonic-gate * Functions 69*7c478bd9Sstevel@tonic-gate */ 70*7c478bd9Sstevel@tonic-gate extern void conv_check_native(char **, char **); 71*7c478bd9Sstevel@tonic-gate extern const char *conv_d_type_str(Elf_Type); 72*7c478bd9Sstevel@tonic-gate extern const char *conv_deftag_str(Symref); 73*7c478bd9Sstevel@tonic-gate extern const char *conv_dlflag_str(int, int); 74*7c478bd9Sstevel@tonic-gate extern const char *conv_dlmode_str(int, int); 75*7c478bd9Sstevel@tonic-gate extern const char *conv_dyntag_str(uint64_t, ushort_t); 76*7c478bd9Sstevel@tonic-gate extern const char *conv_dynflag_str(uint_t); 77*7c478bd9Sstevel@tonic-gate extern const char *conv_dynflag_1_str(uint_t); 78*7c478bd9Sstevel@tonic-gate extern const char *conv_dynposflag_1_str(uint_t); 79*7c478bd9Sstevel@tonic-gate extern const char *conv_dynfeature_1_str(uint_t); 80*7c478bd9Sstevel@tonic-gate extern const char *conv_captag_str(uint64_t); 81*7c478bd9Sstevel@tonic-gate extern const char *conv_capval_str(uint64_t, uint64_t, ushort_t); 82*7c478bd9Sstevel@tonic-gate extern const char *conv_config_str(int); 83*7c478bd9Sstevel@tonic-gate extern const char *conv_config_obj(ushort_t); 84*7c478bd9Sstevel@tonic-gate extern const char *conv_dwarf_ehe_str(uint_t); 85*7c478bd9Sstevel@tonic-gate extern const char *conv_eclass_str(uchar_t); 86*7c478bd9Sstevel@tonic-gate extern const char *conv_edata_str(uchar_t); 87*7c478bd9Sstevel@tonic-gate extern const char *conv_emach_str(ushort_t); 88*7c478bd9Sstevel@tonic-gate extern const char *conv_ever_str(uint_t); 89*7c478bd9Sstevel@tonic-gate extern const char *conv_etype_str(ushort_t); 90*7c478bd9Sstevel@tonic-gate extern const char *conv_eflags_str(ushort_t, uint_t); 91*7c478bd9Sstevel@tonic-gate extern const char *conv_hwcap_1_str(uint64_t, ushort_t); 92*7c478bd9Sstevel@tonic-gate extern const char *conv_hwcap_1_386_str(uint64_t); 93*7c478bd9Sstevel@tonic-gate extern const char *conv_hwcap_1_SPARC_str(uint64_t); 94*7c478bd9Sstevel@tonic-gate extern const char *conv_sfcap_1_str(uint64_t, ushort_t); 95*7c478bd9Sstevel@tonic-gate extern const char *conv_grphdrflags_str(uint_t); 96*7c478bd9Sstevel@tonic-gate extern const char *conv_info_bind_str(uchar_t); 97*7c478bd9Sstevel@tonic-gate extern const char *conv_info_type_str(ushort_t, uchar_t); 98*7c478bd9Sstevel@tonic-gate extern const char *conv_invalid_str(char *, size_t, uint64_t, int); 99*7c478bd9Sstevel@tonic-gate extern Isa_desc *conv_isalist(void); 100*7c478bd9Sstevel@tonic-gate extern const char *conv_lddstub(int); 101*7c478bd9Sstevel@tonic-gate extern const char *conv_phdrflg_str(uint_t); 102*7c478bd9Sstevel@tonic-gate extern const char *conv_phdrtyp_str(ushort_t, uint_t); 103*7c478bd9Sstevel@tonic-gate extern const char *conv_reloc_type_str(ushort_t, uint_t); 104*7c478bd9Sstevel@tonic-gate extern const char *conv_reloc_SPARC_type_str(uint_t); 105*7c478bd9Sstevel@tonic-gate extern const char *conv_reloc_386_type_str(uint_t); 106*7c478bd9Sstevel@tonic-gate extern const char *conv_reloc_amd64_type_str(uint_t); 107*7c478bd9Sstevel@tonic-gate extern const char *conv_reject_str(Rej_desc *); 108*7c478bd9Sstevel@tonic-gate extern const char *conv_sym_dem(const char *); 109*7c478bd9Sstevel@tonic-gate extern const char *conv_sym_value_str(ushort_t, uint_t, uint64_t); 110*7c478bd9Sstevel@tonic-gate extern const char *conv_sym_SPARC_value_str(uint64_t); 111*7c478bd9Sstevel@tonic-gate extern const char *conv_sym_stother(uchar_t); 112*7c478bd9Sstevel@tonic-gate extern const char *conv_secflg_str(ushort_t, uint_t); 113*7c478bd9Sstevel@tonic-gate extern const char *conv_secinfo_str(uint_t, uint_t); 114*7c478bd9Sstevel@tonic-gate extern const char *conv_sectyp_str(ushort_t, uint_t); 115*7c478bd9Sstevel@tonic-gate extern const char *conv_segaflg_str(uint_t); 116*7c478bd9Sstevel@tonic-gate extern const char *conv_shndx_str(ushort_t); 117*7c478bd9Sstevel@tonic-gate extern int conv_sys_eclass(); 118*7c478bd9Sstevel@tonic-gate extern const char *conv_upm_string(const char *, const char *, 119*7c478bd9Sstevel@tonic-gate const char *, size_t); 120*7c478bd9Sstevel@tonic-gate extern Uts_desc *conv_uts(void); 121*7c478bd9Sstevel@tonic-gate extern const char *conv_verflg_str(ushort_t); 122*7c478bd9Sstevel@tonic-gate 123*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 124*7c478bd9Sstevel@tonic-gate } 125*7c478bd9Sstevel@tonic-gate #endif 126*7c478bd9Sstevel@tonic-gate 127*7c478bd9Sstevel@tonic-gate #endif /* _CONV_H */ 128