1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License, Version 1.0 only 6 * (the "License"). You may not use this file except in compliance 7 * with the License. 8 * 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10 * or http://www.opensolaris.org/os/licensing. 11 * See the License for the specific language governing permissions 12 * and limitations under the License. 13 * 14 * When distributing Covered Code, include this CDDL HEADER in each 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16 * If applicable, add the following below this CDDL HEADER, with the 17 * fields enclosed by brackets "[]" replaced with your own identifying 18 * information: Portions Copyright [yyyy] [name of copyright owner] 19 * 20 * CDDL HEADER END 21 */ 22 /* 23 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 24 * Use is subject to license terms. 25 */ 26 #pragma ident "%Z%%M% %I% %E% SMI" 27 28 /* 29 * String conversion routine for Elf data buffer types. 30 */ 31 #include <stdio.h> 32 #include "_conv.h" 33 #include "data_msg.h" 34 35 static const Msg types[] = { 36 MSG_DATA_BYTE, MSG_DATA_ADDR, MSG_DATA_DYN, 37 MSG_DATA_EHDR, MSG_DATA_HALF, MSG_DATA_OFF, 38 MSG_DATA_PHDR, MSG_DATA_RELA, MSG_DATA_REL, 39 MSG_DATA_SHDR, MSG_DATA_SWORD, MSG_DATA_SYM, 40 MSG_DATA_WORD, MSG_DATA_VDEF, MSG_DATA_VNEED, 41 MSG_DATA_SXWORD, MSG_DATA_XWORD, MSG_DATA_SYMINFO, 42 MSG_DATA_NOTE, MSG_DATA_MOVE, MSG_DATA_MOVEP 43 }; 44 45 const char * 46 conv_d_type_str(Elf_Type type) 47 { 48 static char string[STRSIZE] = { '\0' }; 49 50 if (type >= ELF_T_NUM) 51 return (conv_invalid_str(string, STRSIZE, type, 0)); 52 else 53 return (MSG_ORIG(types[type])); 54 } 55