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 2002-2003 Sun Microsystems, Inc. All rights reserved.
|
---|
24 | * Use is subject to license terms.
|
---|
25 | */
|
---|
26 |
|
---|
27 | #ifndef VBOX
|
---|
28 | #pragma ident "%Z%%M% %I% %E% SMI"
|
---|
29 | #endif
|
---|
30 |
|
---|
31 | #include <ctf_impl.h>
|
---|
32 |
|
---|
33 | static int
|
---|
34 | extract_label_info(ctf_file_t *fp, const ctf_lblent_t **ctl, uint_t *num_labels)
|
---|
35 | {
|
---|
36 | const ctf_header_t *h;
|
---|
37 |
|
---|
38 | /*
|
---|
39 | * Labels are only supported in V2 or later
|
---|
40 | */
|
---|
41 | if (fp->ctf_version < CTF_VERSION_2) {
|
---|
42 | *ctl = NULL; /* Shup up, GCC! */
|
---|
43 | *num_labels = 0;
|
---|
44 | return (ctf_set_errno(fp, ECTF_NOTSUP));
|
---|
45 | }
|
---|
46 |
|
---|
47 | h = (const ctf_header_t *)fp->ctf_data.cts_data;
|
---|
48 |
|
---|
49 | /* LINTED - pointer alignment */
|
---|
50 | *ctl = (const ctf_lblent_t *)(fp->ctf_buf + h->cth_lbloff);
|
---|
51 | *num_labels = (h->cth_objtoff - h->cth_lbloff) / sizeof (ctf_lblent_t);
|
---|
52 |
|
---|
53 | return (0);
|
---|
54 | }
|
---|
55 |
|
---|
56 | /*
|
---|
57 | * Returns the topmost label, or NULL if any errors are encountered
|
---|
58 | */
|
---|
59 | const char *
|
---|
60 | ctf_label_topmost(ctf_file_t *fp)
|
---|
61 | {
|
---|
62 | const ctf_lblent_t *ctlp;
|
---|
63 | const char *s;
|
---|
64 | uint_t num_labels;
|
---|
65 |
|
---|
66 | if (extract_label_info(fp, &ctlp, &num_labels) == CTF_ERR)
|
---|
67 | return (NULL); /* errno is set */
|
---|
68 |
|
---|
69 | if (num_labels == 0) {
|
---|
70 | (void) ctf_set_errno(fp, ECTF_NOLABELDATA);
|
---|
71 | return (NULL);
|
---|
72 | }
|
---|
73 |
|
---|
74 | if ((s = ctf_strraw(fp, (ctlp + num_labels - 1)->ctl_label)) == NULL)
|
---|
75 | (void) ctf_set_errno(fp, ECTF_CORRUPT);
|
---|
76 |
|
---|
77 | return (s);
|
---|
78 | }
|
---|
79 |
|
---|
80 | /*
|
---|
81 | * Iterate over all labels. We pass the label string and the lblinfo_t struct
|
---|
82 | * to the specified callback function.
|
---|
83 | */
|
---|
84 | int
|
---|
85 | ctf_label_iter(ctf_file_t *fp, ctf_label_f *func, void *arg)
|
---|
86 | {
|
---|
87 | const ctf_lblent_t *ctlp;
|
---|
88 | uint_t i, num_labels;
|
---|
89 | ctf_lblinfo_t linfo;
|
---|
90 | const char *lname;
|
---|
91 | int rc;
|
---|
92 |
|
---|
93 | if (extract_label_info(fp, &ctlp, &num_labels) == CTF_ERR)
|
---|
94 | return (CTF_ERR); /* errno is set */
|
---|
95 |
|
---|
96 | if (num_labels == 0)
|
---|
97 | return (ctf_set_errno(fp, ECTF_NOLABELDATA));
|
---|
98 |
|
---|
99 | for (i = 0; i < num_labels; i++, ctlp++) {
|
---|
100 | if ((lname = ctf_strraw(fp, ctlp->ctl_label)) == NULL) {
|
---|
101 | ctf_dprintf("failed to decode label %u with "
|
---|
102 | "typeidx %u\n", ctlp->ctl_label, ctlp->ctl_typeidx);
|
---|
103 | return (ctf_set_errno(fp, ECTF_CORRUPT));
|
---|
104 | }
|
---|
105 |
|
---|
106 | linfo.ctb_typeidx = ctlp->ctl_typeidx;
|
---|
107 | if ((rc = func(lname, &linfo, arg)) != 0)
|
---|
108 | return (rc);
|
---|
109 | }
|
---|
110 |
|
---|
111 | return (0);
|
---|
112 | }
|
---|
113 |
|
---|
114 | typedef struct linfo_cb_arg {
|
---|
115 | const char *lca_name; /* Label we want to retrieve info for */
|
---|
116 | ctf_lblinfo_t *lca_info; /* Where to store the info about the label */
|
---|
117 | } linfo_cb_arg_t;
|
---|
118 |
|
---|
119 | static int
|
---|
120 | label_info_cb(const char *lname, const ctf_lblinfo_t *linfo, void *arg)
|
---|
121 | {
|
---|
122 | /*
|
---|
123 | * If lname matches the label we are looking for, copy the
|
---|
124 | * lblinfo_t struct for the caller.
|
---|
125 | */
|
---|
126 | if (strcmp(lname, ((linfo_cb_arg_t *)arg)->lca_name) == 0) {
|
---|
127 | /*
|
---|
128 | * Allow caller not to allocate storage to test if label exists
|
---|
129 | */
|
---|
130 | if (((linfo_cb_arg_t *)arg)->lca_info != NULL)
|
---|
131 | bcopy(linfo, ((linfo_cb_arg_t *)arg)->lca_info,
|
---|
132 | sizeof (ctf_lblinfo_t));
|
---|
133 | return (1); /* Indicate we found a match */
|
---|
134 | }
|
---|
135 |
|
---|
136 | return (0);
|
---|
137 | }
|
---|
138 |
|
---|
139 | /*
|
---|
140 | * Retrieve information about the label with name "lname"
|
---|
141 | */
|
---|
142 | int
|
---|
143 | ctf_label_info(ctf_file_t *fp, const char *lname, ctf_lblinfo_t *linfo)
|
---|
144 | {
|
---|
145 | linfo_cb_arg_t cb_arg;
|
---|
146 | int rc;
|
---|
147 |
|
---|
148 | cb_arg.lca_name = lname;
|
---|
149 | cb_arg.lca_info = linfo;
|
---|
150 |
|
---|
151 | if ((rc = ctf_label_iter(fp, label_info_cb, &cb_arg)) == CTF_ERR)
|
---|
152 | return (rc);
|
---|
153 |
|
---|
154 | if (rc != 1)
|
---|
155 | return (ctf_set_errno(fp, ECTF_NOLABEL));
|
---|
156 |
|
---|
157 | return (0);
|
---|
158 | }
|
---|