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
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.
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]
23 * Copyright 2001-2003 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 * Copyright (c) 2015, Joyent, Inc.
31 * This header file defines the interfaces available from the CTF debugger
32 * library, libctf. This library provides functions that a debugger can
33 * use to operate on data in the Compact ANSI-C Type Format (CTF). This
34 * is NOT a public interface, although it may eventually become one in
35 * the fullness of time after we gain more experience with the interfaces.
37 * In the meantime, be aware that any program linked with libctf in this
38 * release of illumos is almost guaranteed to break in the next release.
40 * In short, do not user this header file or libctf for any purpose.
46 #include <sys/ctf_api.h>
54 * This flag can be used to enable debug messages.
56 extern int _libctf_debug
;
58 typedef enum ctf_diff_flag
{
59 CTF_DIFF_F_IGNORE_INTNAMES
= 0x01
62 typedef struct ctf_diff ctf_diff_t
;
63 typedef void (*ctf_diff_type_f
)(ctf_file_t
*, ctf_id_t
, boolean_t
, ctf_file_t
*,
65 typedef void (*ctf_diff_func_f
)(ctf_file_t
*, ulong_t
, boolean_t
, ctf_file_t
*,
67 typedef void (*ctf_diff_obj_f
)(ctf_file_t
*, ulong_t
, ctf_id_t
, boolean_t
,
68 ctf_file_t
*, ulong_t
, ctf_id_t
, void *);
70 extern int ctf_diff_init(ctf_file_t
*, ctf_file_t
*, ctf_diff_t
**);
71 extern uint_t
ctf_diff_getflags(ctf_diff_t
*);
72 extern int ctf_diff_setflags(ctf_diff_t
*, uint_t
);
73 extern int ctf_diff_types(ctf_diff_t
*, ctf_diff_type_f
, void *);
74 extern int ctf_diff_functions(ctf_diff_t
*, ctf_diff_func_f
, void *);
75 extern int ctf_diff_objects(ctf_diff_t
*, ctf_diff_obj_f
, void *);
76 extern void ctf_diff_fini(ctf_diff_t
*);
78 #define CTF_CONVERT_F_IGNNONC 0x01
79 extern ctf_file_t
*ctf_elfconvert(int, Elf
*, const char *, uint_t
, uint_t
,
80 int *, char *, size_t);
81 extern ctf_file_t
*ctf_fdconvert(int, const char *, uint_t
, uint_t
, int *,
84 typedef struct ctf_merge_handle ctf_merge_t
;
85 extern ctf_merge_t
*ctf_merge_init(int, int *);
86 extern int ctf_merge_add(ctf_merge_t
*, ctf_file_t
*);
87 extern int ctf_merge_set_nthreads(ctf_merge_t
*, const uint_t
);
88 extern int ctf_merge_label(ctf_merge_t
*, const char *);
89 extern int ctf_merge_uniquify(ctf_merge_t
*, ctf_file_t
*, const char *);
90 extern int ctf_merge_merge(ctf_merge_t
*, ctf_file_t
**);
91 extern int ctf_merge_dedup(ctf_merge_t
*, ctf_file_t
**);
92 extern void ctf_merge_fini(ctf_merge_t
*);
94 #define CTF_ELFWRITE_F_COMPRESS 0x1
95 extern int ctf_elffdwrite(ctf_file_t
*, int, int, int);
96 extern int ctf_elfwrite(ctf_file_t
*, const char *, const char *, int);
102 #endif /* _LIBCTF_H */