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