17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate * CDDL HEADER START
37c478bd9Sstevel@tonic-gate *
47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the
55aefb655Srie * Common Development and Distribution License (the "License").
65aefb655Srie * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate *
87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate * and limitations under the License.
127c478bd9Sstevel@tonic-gate *
137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate *
197c478bd9Sstevel@tonic-gate * CDDL HEADER END
207c478bd9Sstevel@tonic-gate */
215aefb655Srie
227c478bd9Sstevel@tonic-gate /*
23*de777a60Sab196087 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
247c478bd9Sstevel@tonic-gate * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate */
265aefb655Srie
277c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI"
287c478bd9Sstevel@tonic-gate
297c478bd9Sstevel@tonic-gate /*
307c478bd9Sstevel@tonic-gate * String conversion routine for Elf data buffer types.
317c478bd9Sstevel@tonic-gate */
327c478bd9Sstevel@tonic-gate #include "_conv.h"
337c478bd9Sstevel@tonic-gate #include "data_msg.h"
347c478bd9Sstevel@tonic-gate
355aefb655Srie const char *
conv_elfdata_type(Elf_Type type,Conv_inv_buf_t * inv_buf)36*de777a60Sab196087 conv_elfdata_type(Elf_Type type, Conv_inv_buf_t *inv_buf)
375aefb655Srie {
387c478bd9Sstevel@tonic-gate static const Msg types[] = {
395aefb655Srie MSG_DATA_BYTE, MSG_DATA_ADDR,
405aefb655Srie MSG_DATA_DYN, MSG_DATA_EHDR,
415aefb655Srie MSG_DATA_HALF, MSG_DATA_OFF,
425aefb655Srie MSG_DATA_PHDR, MSG_DATA_RELA,
435aefb655Srie MSG_DATA_REL, MSG_DATA_SHDR,
445aefb655Srie MSG_DATA_SWORD, MSG_DATA_SYM,
455aefb655Srie MSG_DATA_WORD, MSG_DATA_VDEF,
465aefb655Srie MSG_DATA_VNEED, MSG_DATA_SXWORD,
475aefb655Srie MSG_DATA_XWORD, MSG_DATA_SYMINFO,
485aefb655Srie MSG_DATA_NOTE, MSG_DATA_MOVE,
495aefb655Srie MSG_DATA_MOVEP, MSG_DATA_CAP
507c478bd9Sstevel@tonic-gate };
517c478bd9Sstevel@tonic-gate
527c478bd9Sstevel@tonic-gate if (type >= ELF_T_NUM)
53*de777a60Sab196087 return (conv_invalid_val(inv_buf, type, 0));
547c478bd9Sstevel@tonic-gate else
557c478bd9Sstevel@tonic-gate return (MSG_ORIG(types[type]));
567c478bd9Sstevel@tonic-gate }
57