xref: /titanic_52/usr/src/common/elfcap/elfcap.h (revision b8f64308335364cdb74ab04fe1d23b3d6c2f21dd)
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
599f63845Sab196087  * Common Development and Distribution License (the "License").
699f63845Sab196087  * 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  */
21bebb829dSRod Evans 
227c478bd9Sstevel@tonic-gate /*
237af88ac7SKuriakose Kuruvilla  * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
24*b8f64308SRobert Mustacchi  * Copyright (c) 2018, Joyent, Inc.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate #ifndef _ELFCAP_DOT_H
287c478bd9Sstevel@tonic-gate #define	_ELFCAP_DOT_H
297c478bd9Sstevel@tonic-gate 
307c478bd9Sstevel@tonic-gate #include <sys/types.h>
317c478bd9Sstevel@tonic-gate 
327c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
337c478bd9Sstevel@tonic-gate extern "C" {
347c478bd9Sstevel@tonic-gate #endif
357c478bd9Sstevel@tonic-gate 
367c478bd9Sstevel@tonic-gate /*
3769112eddSAli Bahrami  * Type used to represent capability bitmasks. This 32-bit type cannot be
3869112eddSAli Bahrami  * widened without breaking the ability to use them in ELFCLASS32 objects.
3969112eddSAli Bahrami  */
4069112eddSAli Bahrami typedef uint32_t elfcap_mask_t;
4169112eddSAli Bahrami 
4269112eddSAli Bahrami /*
4399f63845Sab196087  * The elfcap code handles mappings to and from several string styles.
4499f63845Sab196087  * The caller uses elfcap_style_t to specify the style to use.
4569112eddSAli Bahrami  *
4669112eddSAli Bahrami  * The bottom 16 bits are used to represent styles, and the upper 16
4769112eddSAli Bahrami  * bits are used for flags to modify default behavior.
4899f63845Sab196087  */
4969112eddSAli Bahrami #define	ELFCAP_STYLE_MASK(_style) (_style & 0xff)
5069112eddSAli Bahrami 
5199f63845Sab196087 typedef enum {
5299f63845Sab196087 	ELFCAP_STYLE_FULL =	1,	/* Full formal name (e.g. AV_386_SSE) */
5399f63845Sab196087 	ELFCAP_STYLE_UC = 	2,	/* Informal upper case (e.g. SSE) */
5469112eddSAli Bahrami 	ELFCAP_STYLE_LC = 	3,	/* Informal lower case (e.g. sse) */
5569112eddSAli Bahrami 
5669112eddSAli Bahrami 	ELFCAP_STYLE_F_ICMP =	0x0100	 /* Use case insensitive strcmp */
5799f63845Sab196087 } elfcap_style_t;
5899f63845Sab196087 
5999f63845Sab196087 /*
6099f63845Sab196087  * String descriptor: Contains the string and strlen(string). elfcap can
6199f63845Sab196087  * be used in contexts (ld.so.1) where we do not want to make calls to
6299f63845Sab196087  * string processing functions, so the length is calculated at compile time.
637c478bd9Sstevel@tonic-gate  */
647c478bd9Sstevel@tonic-gate typedef	struct {
6599f63845Sab196087 	const char	*s_str;
6699f63845Sab196087 	size_t		s_len;
6799f63845Sab196087 } elfcap_str_t;
687c478bd9Sstevel@tonic-gate 
697c478bd9Sstevel@tonic-gate /*
7099f63845Sab196087  * Capabilities descriptor: This maps the integer bit value
7199f63845Sab196087  * (c_val) to/from the various strings that represent it.
7299f63845Sab196087  *
7399f63845Sab196087  * c_val is normally expected to be a non-zero power of 2
7499f63845Sab196087  * value (i.e. a single set bit). The value 0 is special, and
7599f63845Sab196087  * used to represent a "reserved" placeholder in an array of
7699f63845Sab196087  * capabilities. These reserved values have NULL string pointers,
7799f63845Sab196087  * and are intended to be ignored by the processing code.
787c478bd9Sstevel@tonic-gate  */
797c478bd9Sstevel@tonic-gate typedef	struct {
8069112eddSAli Bahrami 	elfcap_mask_t	c_val;		/* Bit value */
8199f63845Sab196087 	elfcap_str_t	c_full;		/* ELFCAP_STYLE_FULL */
8299f63845Sab196087 	elfcap_str_t	c_uc;		/* ELFCAP_STYLE_UC */
8399f63845Sab196087 	elfcap_str_t	c_lc;		/* ELFCAP_STYLE_LC */
8499f63845Sab196087 } elfcap_desc_t;
857c478bd9Sstevel@tonic-gate 
867c478bd9Sstevel@tonic-gate /*
8799f63845Sab196087  * Valid format values: The various formats in which a generated
8899f63845Sab196087  * string representing bitmap values can be displayed.
8999f63845Sab196087  *
9099f63845Sab196087  * This must be kept in sync with the format[] array in elfcap.c.
917c478bd9Sstevel@tonic-gate  */
9299f63845Sab196087 typedef enum {
9399f63845Sab196087 	ELFCAP_FMT_SNGSPACE =		0,
9499f63845Sab196087 	ELFCAP_FMT_DBLSPACE =		1,
9599f63845Sab196087 	ELFCAP_FMT_PIPSPACE =		2
9699f63845Sab196087 } elfcap_fmt_t;
977c478bd9Sstevel@tonic-gate 
987c478bd9Sstevel@tonic-gate /*
9999f63845Sab196087  * Error codes:
1007c478bd9Sstevel@tonic-gate  */
10199f63845Sab196087 typedef enum {
10299f63845Sab196087 	ELFCAP_ERR_NONE =		0,	/* no error */
10399f63845Sab196087 	ELFCAP_ERR_BUFOVFL =		1,	/* buffer overfow */
10499f63845Sab196087 	ELFCAP_ERR_INVFMT =		2,	/* invalid format */
10599f63845Sab196087 	ELFCAP_ERR_UNKTAG =		3,	/* unknown capabilities tag */
10699f63845Sab196087 	ELFCAP_ERR_UNKMACH =		4,	/* unknown machine type */
10799f63845Sab196087 	ELFCAP_ERR_INVSTYLE =		5	/* unknown style */
10899f63845Sab196087 } elfcap_err_t;
1097c478bd9Sstevel@tonic-gate 
1107c478bd9Sstevel@tonic-gate 
11199f63845Sab196087 /*
11299f63845Sab196087  * # of each type of capability known to the system. These values
1134a8d0ea7SAli Bahrami  * must be kept in sync with the arrays found in elfcap.c.
11499f63845Sab196087  */
115bebb829dSRod Evans #define	ELFCAP_NUM_SF1			3
116b1593d50SJason Beloro #define	ELFCAP_NUM_HW1_SPARC		17
117faa20166SBryan Cantrill #define	ELFCAP_NUM_HW1_386		32
118*b8f64308SRobert Mustacchi #define	ELFCAP_NUM_HW2_386		9
11999f63845Sab196087 
12099f63845Sab196087 
12199f63845Sab196087 /*
12299f63845Sab196087  * Given a capability section tag and value, call the proper underlying
12399f63845Sab196087  * "to str" function to generate the string description.
12499f63845Sab196087  */
12599f63845Sab196087 extern elfcap_err_t elfcap_tag_to_str(elfcap_style_t, uint64_t,
12669112eddSAli Bahrami     elfcap_mask_t, char *, size_t, elfcap_fmt_t, ushort_t);
12799f63845Sab196087 
12899f63845Sab196087 /*
12999f63845Sab196087  * The functions that convert from a specific capability value to
13099f63845Sab196087  * a string representation all use the same common prototype.
13199f63845Sab196087  */
13269112eddSAli Bahrami typedef elfcap_err_t elfcap_to_str_func_t(elfcap_style_t, elfcap_mask_t, char *,
13399f63845Sab196087     size_t, elfcap_fmt_t, ushort_t);
13499f63845Sab196087 
13599f63845Sab196087 extern elfcap_to_str_func_t elfcap_hw1_to_str;
13669112eddSAli Bahrami extern elfcap_to_str_func_t elfcap_hw2_to_str;
13799f63845Sab196087 extern elfcap_to_str_func_t elfcap_sf1_to_str;
13899f63845Sab196087 
13999f63845Sab196087 /*
14099f63845Sab196087  * The reverse mapping: Given a string representation, turn it back into
14199f63845Sab196087  * integer form.
14299f63845Sab196087  */
14369112eddSAli Bahrami typedef elfcap_mask_t elfcap_from_str_func_t(elfcap_style_t,
14499f63845Sab196087     const char *, ushort_t mach);
14599f63845Sab196087 
14669112eddSAli Bahrami /*
14769112eddSAli Bahrami  * Given a capability section tag and string, call the proper underlying
14869112eddSAli Bahrami  * "from str" function to generate the numeric value.
14969112eddSAli Bahrami  */
15069112eddSAli Bahrami extern elfcap_mask_t elfcap_tag_from_str(elfcap_style_t, uint64_t,
15169112eddSAli Bahrami     const char *, ushort_t);
15269112eddSAli Bahrami 
15399f63845Sab196087 extern elfcap_from_str_func_t elfcap_hw1_from_str;
15469112eddSAli Bahrami extern elfcap_from_str_func_t elfcap_hw2_from_str;
15599f63845Sab196087 extern elfcap_from_str_func_t elfcap_sf1_from_str;
15699f63845Sab196087 
15799f63845Sab196087 /*
15899f63845Sab196087  * These functions give access to the individual descriptor arrays.
15999f63845Sab196087  * The caller is allowed to copy and use the string pointers contained
16099f63845Sab196087  * in the descriptors, but must not alter them. Functions are used instead
16199f63845Sab196087  * of making the arrays directly visible to preclude copy relocations in
16299f63845Sab196087  * non-pic code.
16399f63845Sab196087  */
16499f63845Sab196087 extern const elfcap_desc_t *elfcap_getdesc_hw1_sparc(void);
16599f63845Sab196087 extern const elfcap_desc_t *elfcap_getdesc_hw1_386(void);
16699f63845Sab196087 extern const elfcap_desc_t *elfcap_getdesc_sf1(void);
1677c478bd9Sstevel@tonic-gate 
1687c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
1697c478bd9Sstevel@tonic-gate }
1707c478bd9Sstevel@tonic-gate #endif
1717c478bd9Sstevel@tonic-gate 
1727c478bd9Sstevel@tonic-gate #endif /* _ELFCAP_DOT_H */
173