segments.c revision 9273:9a0603d78ad3
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 (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21
22/*
23 * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
24 * Use is subject to license terms.
25 */
26
27/*
28 * String conversion routine for segment flags.
29 */
30#include	<string.h>
31#include	<libld.h>
32#include	"_conv.h"
33#include	"segments_msg.h"
34
35#define	SEGSZ	CONV_EXPN_FIELD_DEF_PREFIX_SIZE + \
36		MSG_FLG_SG_VADDR_SIZE	+ CONV_EXPN_FIELD_DEF_SEP_SIZE + \
37		MSG_FLG_SG_PADDR_SIZE	+ CONV_EXPN_FIELD_DEF_SEP_SIZE + \
38		MSG_FLG_SG_LENGTH_SIZE	+ CONV_EXPN_FIELD_DEF_SEP_SIZE + \
39		MSG_FLG_SG_ALIGN_SIZE	+ CONV_EXPN_FIELD_DEF_SEP_SIZE + \
40		MSG_FLG_SG_ROUND_SIZE	+ CONV_EXPN_FIELD_DEF_SEP_SIZE + \
41		MSG_FLG_SG_FLAGS_SIZE	+ CONV_EXPN_FIELD_DEF_SEP_SIZE + \
42		MSG_FLG_SG_TYPE_SIZE	+ CONV_EXPN_FIELD_DEF_SEP_SIZE + \
43		MSG_FLG_SG_ORDER_SIZE	+ CONV_EXPN_FIELD_DEF_SEP_SIZE + \
44		MSG_FLG_SG_NOHDR_SIZE	+ CONV_EXPN_FIELD_DEF_SEP_SIZE + \
45		MSG_FLG_SG_EMPTY_SIZE	+ CONV_EXPN_FIELD_DEF_SEP_SIZE + \
46		MSG_FLG_SG_KEY_SIZE	+ CONV_EXPN_FIELD_DEF_SEP_SIZE + \
47		MSG_FLG_SG_DISABLED_SIZE + CONV_EXPN_FIELD_DEF_SEP_SIZE + \
48		MSG_FLG_SG_PHREQ_SIZE	+ CONV_EXPN_FIELD_DEF_SEP_SIZE + \
49		CONV_INV_BUFSIZE + CONV_EXPN_FIELD_DEF_SUFFIX_SIZE
50
51/*
52 * Ensure that Conv_seg_flags_buf_t is large enough:
53 *
54 * SEGSZ is the real minimum size of the buffer required by conv_seg_flags().
55 * However, Conv_seg_flags_buf_t uses CONV_SEG_FLAGS_BUFSIZE to set the
56 * buffer size. We do things this way because the definition of SEGSZ uses
57 * information that is not available in the environment of other programs
58 * that include the conv.h header file.
59 */
60#if (CONV_SEG_FLAGS_BUFSIZE != SEGSZ) && !defined(__lint)
61#define	REPORT_BUFSIZE SEGSZ
62#include "report_bufsize.h"
63#error "CONV_SEG_FLAGS_BUFSIZE does not match SEGSZ"
64#endif
65
66const char *
67conv_seg_flags(Half flags, Conv_seg_flags_buf_t *seg_flags_buf)
68{
69	static Val_desc vda[] = {
70		{ FLG_SG_VADDR,		MSG_FLG_SG_VADDR },
71		{ FLG_SG_PADDR,		MSG_FLG_SG_PADDR },
72		{ FLG_SG_LENGTH,	MSG_FLG_SG_LENGTH },
73		{ FLG_SG_ALIGN,		MSG_FLG_SG_ALIGN },
74		{ FLG_SG_ROUND,		MSG_FLG_SG_ROUND },
75		{ FLG_SG_FLAGS,		MSG_FLG_SG_FLAGS },
76		{ FLG_SG_TYPE,		MSG_FLG_SG_TYPE },
77		{ FLG_SG_ORDER,		MSG_FLG_SG_ORDER },
78		{ FLG_SG_NOHDR,		MSG_FLG_SG_NOHDR },
79		{ FLG_SG_EMPTY,		MSG_FLG_SG_EMPTY },
80		{ FLG_SG_KEY,		MSG_FLG_SG_KEY },
81		{ FLG_SG_DISABLED,	MSG_FLG_SG_DISABLED },
82		{ FLG_SG_PHREQ,		MSG_FLG_SG_PHREQ },
83		{ 0,			0 }
84	};
85	static CONV_EXPN_FIELD_ARG conv_arg = {
86	    NULL, sizeof (seg_flags_buf->buf) };
87
88	if (flags == 0)
89		return (MSG_ORIG(MSG_GBL_ZERO));
90
91	conv_arg.buf = seg_flags_buf->buf;
92	conv_arg.oflags = conv_arg.rflags = flags;
93	(void) conv_expn_field(&conv_arg, vda, 0);
94
95	return ((const char *)seg_flags_buf->buf);
96}
97