2 * Copyright (c) 2006 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
30 * Copyright (c) 2004 Networks Associates Technology, Inc.
31 * All rights reserved.
33 * Redistribution and use in source and binary forms, with or without
34 * modification, are permitted provided that the following conditions
36 * 1. Redistributions of source code must retain the above copyright
37 * notice, this list of conditions and the following disclaimer.
38 * 2. Redistributions in binary form must reproduce the above copyright
39 * notice, this list of conditions and the following disclaimer in the
40 * documentation and/or other materials provided with the distribution.
42 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
43 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
44 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
45 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
46 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
47 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
48 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
49 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
50 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
51 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
55 #include <mach/mach_types.h>
56 #include <mach-o/mach_header.h>
57 #include <mach-o/nlist.h>
58 #include <mach/kmod.h>
59 #include <libsa/stdlib.h>
60 #include <kern/misc_protos.h>
62 static const struct nlist
*
63 syms_find(const struct nlist
*syms
, int nsyms
, vm_offset_t addr
,
66 const struct nlist
*best
= 0;
69 for (i
= 0; i
< nsyms
; i
++) {
70 int st
= syms
[i
].n_type
& N_TYPE
;
72 if (st
== N_SECT
|| st
== N_ABS
) {
73 if (syms
[i
].n_value
== addr
) {
77 else if (syms
[i
].n_value
< addr
&&
79 (syms
[i
].n_value
> best
->n_value
))) {
80 *ofs
= addr
- syms
[i
].n_value
;
90 syms_getname(const struct symtab_command
*sc
, const char *ss
,
91 const struct nlist
*sp
)
93 if (sp
->n_un
.n_strx
== 0)
95 else if ((unsigned)sp
->n_un
.n_strx
> sc
->strsize
)
96 return ("*bad string*");
98 return (ss
+ sp
->n_un
.n_strx
);
101 /* Search for a symbol in the given object file, which must either
102 * have a LINKEDIT segment or have been read directly into memory
103 * and isload passed as 1.
105 * If mh has a LINKEDIT segment, an object file loaded in the normal
106 * way will have the symbol table available at the load address.
110 syms_nameforaddr1(const struct mach_header
*mh
, int isload
,
111 vm_offset_t addr
, vm_offset_t
*ofs
)
113 const struct symtab_command
*sc
= NULL
;
114 const struct segment_command
*le
= NULL
;
115 const struct segment_command
*p
;
116 const struct segment_command
*sym
= NULL
;
117 const struct nlist
*syms
;
121 p
= (const struct segment_command
*) (&mh
[1]);
123 for (i
= 0; i
< mh
->ncmds
; i
++) {
124 if (p
->cmd
== LC_SYMTAB
)
125 sc
= (const struct symtab_command
*) p
;
126 else if (p
->cmd
== LC_SEGMENT
&&
127 !strncmp(p
->segname
, "__LINKEDIT", sizeof(p
->segname
)))
130 /* only try to find a name for an address that came from
133 if (p
->cmd
== LC_SEGMENT
&&
134 addr
>= p
->vmaddr
&& addr
< p
->vmaddr
+ p
->vmsize
) {
137 const struct section
*sp
= (const struct section
*)
138 (((const char *) p
) + sizeof(struct segment_command
));
140 for (j
= 0; j
< p
->nsects
; j
++) {
141 if (addr
>= sp
[j
].addr
&&
142 addr
< sp
[j
].addr
+ sp
[j
].size
&&
143 !strncmp (sp
[j
].sectname
, "__text",
144 sizeof(sp
[j
].sectname
))) {
150 p
= (const struct segment_command
*)
151 (((const char *) p
) + p
->cmdsize
);
154 if (sc
== 0 || sym
== NULL
)
158 syms
= (const struct nlist
*) (((const char *) mh
) + sc
->symoff
);
159 strings
= ((const char *) mh
) + sc
->stroff
;
162 syms
= (const struct nlist
*) le
->vmaddr
;
163 strings
= (const char *)
164 (le
->vmaddr
+ sc
->nsyms
* sizeof(struct nlist
));
168 const struct nlist
*sp
= syms_find(syms
, sc
->nsyms
, addr
, ofs
);
170 return syms_getname(sc
, strings
, sp
);
175 extern struct mach_header _mh_execute_header
;
176 extern kmod_info_t
*kmod
;
178 /* Search for a symbol and return the name, offset, and module in which the
179 * address was found. A null module means the kernel itself.
183 syms_nameforaddr(vm_offset_t addr
, vm_offset_t
*ofs
, kmod_info_t
**km
)
185 const char *name
= NULL
;
187 name
= syms_nameforaddr1(&_mh_execute_header
, 1, addr
, ofs
);
197 /* Format the results of calling syms_nameforaddr into a single string.
198 * The buffer must be at least 13 bytes long; 80 is recommended.
202 syms_formataddr(vm_offset_t addr
, char *out
, vm_offset_t outsize
)
205 kmod_info_t
*k
= NULL
;
208 name
= syms_nameforaddr(addr
, &ofs
, &k
);
215 snprintf(out
, outsize
, "0x%08X <%s:%s + %d>", addr
,
218 snprintf(out
, outsize
, "0x%08X <%s + %d>", addr
, name
,
224 snprintf(out
, outsize
, "0x%08X", addr
);