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 * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 23 * Use is subject to license terms. 24 */ 25 26 #pragma ident "%Z%%M% %I% %E% SMI" 27 28 #include <mdb/mdb_disasm_impl.h> 29 #include <mdb/mdb_modapi.h> 30 #include <mdb/mdb_string.h> 31 #include <mdb/mdb_debug.h> 32 #include <mdb/mdb_err.h> 33 #include <mdb/mdb_nv.h> 34 #include <mdb/mdb.h> 35 36 #include <libdisasm.h> 37 38 int 39 mdb_dis_select(const char *name) 40 { 41 mdb_var_t *v = mdb_nv_lookup(&mdb.m_disasms, name); 42 43 if (v != NULL) { 44 mdb.m_disasm = mdb_nv_get_cookie(v); 45 return (0); 46 } 47 48 if (mdb.m_target == NULL) { 49 if (mdb.m_defdisasm != NULL) 50 strfree(mdb.m_defdisasm); 51 mdb.m_defdisasm = strdup(name); 52 return (0); 53 } 54 55 return (set_errno(EMDB_NODIS)); 56 } 57 58 mdb_disasm_t * 59 mdb_dis_create(mdb_dis_ctor_f *ctor) 60 { 61 mdb_disasm_t *dp = mdb_zalloc(sizeof (mdb_disasm_t), UM_SLEEP); 62 63 if ((dp->dis_module = mdb.m_lmod) == NULL) 64 dp->dis_module = &mdb.m_rmod; 65 66 if (ctor(dp) == 0) { 67 mdb_var_t *v = mdb_nv_lookup(&mdb.m_disasms, dp->dis_name); 68 69 if (v != NULL) { 70 dp->dis_ops->dis_destroy(dp); 71 mdb_free(dp, sizeof (mdb_disasm_t)); 72 (void) set_errno(EMDB_DISEXISTS); 73 return (NULL); 74 } 75 76 (void) mdb_nv_insert(&mdb.m_disasms, dp->dis_name, NULL, 77 (uintptr_t)dp, MDB_NV_RDONLY | MDB_NV_SILENT); 78 79 if (mdb.m_disasm == NULL) { 80 mdb.m_disasm = dp; 81 } else if (mdb.m_defdisasm != NULL && 82 strcmp(mdb.m_defdisasm, dp->dis_name) == 0) { 83 mdb.m_disasm = dp; 84 strfree(mdb.m_defdisasm); 85 mdb.m_defdisasm = NULL; 86 } 87 88 return (dp); 89 } 90 91 mdb_free(dp, sizeof (mdb_disasm_t)); 92 return (NULL); 93 } 94 95 void 96 mdb_dis_destroy(mdb_disasm_t *dp) 97 { 98 mdb_var_t *v = mdb_nv_lookup(&mdb.m_disasms, dp->dis_name); 99 100 ASSERT(v != NULL); 101 mdb_nv_remove(&mdb.m_disasms, v); 102 dp->dis_ops->dis_destroy(dp); 103 mdb_free(dp, sizeof (mdb_disasm_t)); 104 105 if (mdb.m_disasm == dp) 106 (void) mdb_dis_select("default"); 107 } 108 109 mdb_tgt_addr_t 110 mdb_dis_ins2str(mdb_disasm_t *dp, mdb_tgt_t *t, mdb_tgt_as_t as, 111 char *buf, size_t len, mdb_tgt_addr_t addr) 112 { 113 return (dp->dis_ops->dis_ins2str(dp, t, as, buf, len, addr)); 114 } 115 116 mdb_tgt_addr_t 117 mdb_dis_previns(mdb_disasm_t *dp, mdb_tgt_t *t, mdb_tgt_as_t as, 118 mdb_tgt_addr_t addr, uint_t n) 119 { 120 return (dp->dis_ops->dis_previns(dp, t, as, addr, n)); 121 } 122 123 mdb_tgt_addr_t 124 mdb_dis_nextins(mdb_disasm_t *dp, mdb_tgt_t *t, mdb_tgt_as_t as, 125 mdb_tgt_addr_t addr) 126 { 127 return (dp->dis_ops->dis_nextins(dp, t, as, addr)); 128 } 129 130 /*ARGSUSED*/ 131 int 132 cmd_dismode(uintptr_t addr, uint_t flags, int argc, const mdb_arg_t *argv) 133 { 134 if ((flags & DCMD_ADDRSPEC) || argc > 1) 135 return (DCMD_USAGE); 136 137 if (argc != 0) { 138 const char *name; 139 140 if (argv->a_type == MDB_TYPE_STRING) 141 name = argv->a_un.a_str; 142 else 143 name = numtostr(argv->a_un.a_val, 10, NTOS_UNSIGNED); 144 145 if (mdb_dis_select(name) == -1) { 146 warn("failed to set disassembly mode"); 147 return (DCMD_ERR); 148 } 149 } 150 151 mdb_printf("disassembly mode is %s (%s)\n", 152 mdb.m_disasm->dis_name, mdb.m_disasm->dis_desc); 153 154 return (DCMD_OK); 155 } 156 157 /*ARGSUSED*/ 158 static int 159 print_dis(mdb_var_t *v, void *ignore) 160 { 161 mdb_disasm_t *dp = mdb_nv_get_cookie(v); 162 163 mdb_printf("%-24s - %s\n", dp->dis_name, dp->dis_desc); 164 return (0); 165 } 166 167 /*ARGSUSED*/ 168 int 169 cmd_disasms(uintptr_t addr, uint_t flags, int argc, const mdb_arg_t *argv) 170 { 171 if ((flags & DCMD_ADDRSPEC) || argc != 0) 172 return (DCMD_USAGE); 173 174 mdb_nv_sort_iter(&mdb.m_disasms, print_dis, NULL, UM_SLEEP | UM_GC); 175 return (DCMD_OK); 176 } 177 178 /* 179 * Generic libdisasm disassembler interfaces. 180 */ 181 182 #define DISBUFSZ 64 183 184 /* 185 * Internal structure used by the read and lookup routines. 186 */ 187 typedef struct dis_buf { 188 mdb_tgt_t *db_tgt; 189 mdb_tgt_as_t db_as; 190 mdb_tgt_addr_t db_addr; 191 mdb_tgt_addr_t db_nextaddr; 192 uchar_t db_buf[DISBUFSZ]; 193 ssize_t db_bufsize; 194 boolean_t db_readerr; 195 } dis_buf_t; 196 197 /* 198 * Disassembler support routine for lookup up an address. Rely on mdb's "%a" 199 * qualifier to convert the address to a symbol. 200 */ 201 /*ARGSUSED*/ 202 static int 203 libdisasm_lookup(void *data, uint64_t addr, char *buf, size_t buflen, 204 uint64_t *start, size_t *len) 205 { 206 char c; 207 GElf_Sym sym; 208 209 if (buf != NULL) { 210 #ifdef __sparc 211 uint32_t instr[3]; 212 uint32_t dtrace_id; 213 214 /* 215 * On SPARC, DTrace FBT trampoline entries have a sethi/or pair 216 * that indicates the dtrace probe id; this may appear as the 217 * first two instructions or one instruction into the 218 * trampoline. 219 */ 220 if (mdb_vread(instr, sizeof (instr), (uintptr_t)addr) == 221 sizeof (instr)) { 222 if ((instr[0] & 0xfffc0000) == 0x11000000 && 223 (instr[1] & 0xffffe000) == 0x90122000) { 224 dtrace_id = (instr[0] << 10) | 225 (instr[1] & 0x1fff); 226 (void) mdb_snprintf(buf, sizeof (buf), "dt=%#x", 227 dtrace_id); 228 goto out; 229 } else if ((instr[1] & 0xfffc0000) == 0x11000000 && 230 (instr[2] & 0xffffe000) == 0x90122000) { 231 dtrace_id = (instr[1] << 10) | 232 (instr[2] & 0x1fff); 233 (void) mdb_snprintf(buf, sizeof (buf), "dt=%#x", 234 dtrace_id); 235 goto out; 236 } 237 } 238 #endif 239 (void) mdb_snprintf(buf, buflen, "%a", (uintptr_t)addr); 240 } 241 242 #ifdef __sparc 243 out: 244 #endif 245 if (start != NULL || len != NULL) { 246 if (mdb_lookup_by_addr(addr, MDB_SYM_FUZZY, &c, 1, &sym) < 0) 247 return (-1); 248 if (start != NULL) 249 *start = sym.st_value; 250 if (len != NULL) 251 *len = sym.st_size; 252 } 253 254 return (0); 255 } 256 257 /* 258 * Disassembler support routine for reading from the target. Rather than having 259 * to read one byte at a time, we read from the address space in chunks. If the 260 * current address doesn't lie within our buffer range, we read in the chunk 261 * starting from the given address. 262 */ 263 static int 264 libdisasm_read(void *data, uint64_t pc, void *buf, size_t buflen) 265 { 266 dis_buf_t *db = data; 267 size_t offset; 268 size_t len; 269 270 if (pc - db->db_addr >= db->db_bufsize) { 271 if (mdb_tgt_aread(db->db_tgt, db->db_as, db->db_buf, 272 sizeof (db->db_buf), pc) != -1) { 273 db->db_bufsize = sizeof (db->db_buf); 274 } else if (mdb_tgt_aread(db->db_tgt, db->db_as, db->db_buf, 275 buflen, pc) != -1) { 276 db->db_bufsize = buflen; 277 } else { 278 if (!db->db_readerr) 279 mdb_warn("failed to read instruction at %#lr", 280 (uintptr_t)pc); 281 db->db_readerr = B_TRUE; 282 return (-1); 283 } 284 db->db_addr = pc; 285 } 286 287 offset = pc - db->db_addr; 288 289 len = MIN(buflen, db->db_bufsize - offset); 290 291 memcpy(buf, (char *)db->db_buf + offset, len); 292 db->db_nextaddr = pc + len; 293 294 return (len); 295 } 296 297 static mdb_tgt_addr_t 298 libdisasm_ins2str(mdb_disasm_t *dp, mdb_tgt_t *t, mdb_tgt_as_t as, 299 char *buf, size_t len, mdb_tgt_addr_t pc) 300 { 301 dis_handle_t *dhp = dp->dis_data; 302 dis_buf_t db = { 0 }; 303 304 /* 305 * Set the libdisasm data to point to our buffer. This will be 306 * passed as the first argument to the lookup and read functions. 307 */ 308 db.db_tgt = t; 309 db.db_as = as; 310 311 dis_set_data(dhp, &db); 312 313 /* 314 * Attempt to disassemble the instruction. If this fails because of an 315 * unknown opcode, drive on anyway. If it fails because we couldn't 316 * read from the target, bail out immediately. 317 */ 318 if (dis_disassemble(dhp, pc, buf, len) != 0) 319 (void) mdb_snprintf(buf, len, 320 "***ERROR--unknown op code***"); 321 322 if (db.db_readerr) 323 return (pc); 324 325 /* 326 * Return the updated location 327 */ 328 return (db.db_nextaddr); 329 } 330 331 static mdb_tgt_addr_t 332 libdisasm_previns(mdb_disasm_t *dp, mdb_tgt_t *t, mdb_tgt_as_t as, 333 mdb_tgt_addr_t pc, uint_t n) 334 { 335 dis_handle_t *dhp = dp->dis_data; 336 dis_buf_t db = { 0 }; 337 338 /* 339 * Set the libdisasm data to point to our buffer. This will be 340 * passed as the first argument to the lookup and read functions. 341 * We set 'readerr' to B_TRUE to turn off the mdb_warn() in 342 * libdisasm_read, because the code works by probing backwards until a 343 * valid address is found. 344 */ 345 db.db_tgt = t; 346 db.db_as = as; 347 db.db_readerr = B_TRUE; 348 349 dis_set_data(dhp, &db); 350 351 return (dis_previnstr(dhp, pc, n)); 352 } 353 354 /*ARGSUSED*/ 355 static mdb_tgt_addr_t 356 libdisasm_nextins(mdb_disasm_t *dp, mdb_tgt_t *t, mdb_tgt_as_t as, 357 mdb_tgt_addr_t pc) 358 { 359 mdb_tgt_addr_t npc; 360 char c; 361 362 if ((npc = libdisasm_ins2str(dp, t, as, &c, 1, pc)) == pc) 363 return (pc); 364 365 /* 366 * Probe the address to make sure we can read something from it - we 367 * want the address we return to actually contain something. 368 */ 369 if (mdb_tgt_aread(t, as, &c, 1, npc) != 1) 370 return (pc); 371 372 return (npc); 373 } 374 375 static void 376 libdisasm_destroy(mdb_disasm_t *dp) 377 { 378 dis_handle_t *dhp = dp->dis_data; 379 380 dis_handle_destroy(dhp); 381 } 382 383 static const mdb_dis_ops_t libdisasm_ops = { 384 libdisasm_destroy, 385 libdisasm_ins2str, 386 libdisasm_previns, 387 libdisasm_nextins 388 }; 389 390 /* 391 * Generic function for creating a libdisasm-backed disassembler. Creates an 392 * MDB disassembler with the given name backed by libdis with the given flags. 393 */ 394 static int 395 libdisasm_create(mdb_disasm_t *dp, const char *name, 396 const char *desc, int flags) 397 { 398 if ((dp->dis_data = dis_handle_create(flags, NULL, libdisasm_lookup, 399 libdisasm_read)) == NULL) 400 return (-1); 401 402 dp->dis_name = name; 403 dp->dis_ops = &libdisasm_ops; 404 dp->dis_desc = desc; 405 406 return (0); 407 } 408 409 410 #if defined(__i386) || defined(__amd64) 411 static int 412 ia32_create(mdb_disasm_t *dp) 413 { 414 return (libdisasm_create(dp, 415 "ia32", 416 "Intel 32-bit disassembler", 417 DIS_X86_SIZE32)); 418 } 419 #endif 420 421 #if defined(__amd64) 422 static int 423 amd64_create(mdb_disasm_t *dp) 424 { 425 return (libdisasm_create(dp, 426 "amd64", 427 "AMD64 and IA32e 64-bit disassembler", 428 DIS_X86_SIZE64)); 429 } 430 #endif 431 432 #if defined(__sparc) 433 static int 434 sparc1_create(mdb_disasm_t *dp) 435 { 436 return (libdisasm_create(dp, 437 "1", 438 "SPARC-v8 disassembler", 439 DIS_SPARC_V8)); 440 } 441 442 static int 443 sparc2_create(mdb_disasm_t *dp) 444 { 445 return (libdisasm_create(dp, 446 "2", 447 "SPARC-v9 disassembler", 448 DIS_SPARC_V9)); 449 } 450 451 static int 452 sparc4_create(mdb_disasm_t *dp) 453 { 454 return (libdisasm_create(dp, 455 "4", 456 "UltraSPARC1-v9 disassembler", 457 DIS_SPARC_V9 | DIS_SPARC_V9_SGI)); 458 } 459 460 static int 461 sparcv8_create(mdb_disasm_t *dp) 462 { 463 return (libdisasm_create(dp, 464 "v8", 465 "SPARC-v8 disassembler", 466 DIS_SPARC_V8)); 467 } 468 469 static int 470 sparcv9_create(mdb_disasm_t *dp) 471 { 472 return (libdisasm_create(dp, 473 "v9", 474 "SPARC-v9 disassembler", 475 DIS_SPARC_V9)); 476 } 477 478 static int 479 sparcv9plus_create(mdb_disasm_t *dp) 480 { 481 return (libdisasm_create(dp, 482 "v9plus", 483 "UltraSPARC1-v9 disassembler", 484 DIS_SPARC_V9 | DIS_SPARC_V9_SGI)); 485 } 486 #endif 487 488 /*ARGSUSED*/ 489 static void 490 defdis_destroy(mdb_disasm_t *dp) 491 { 492 /* Nothing to do here */ 493 } 494 495 /*ARGSUSED*/ 496 static mdb_tgt_addr_t 497 defdis_ins2str(mdb_disasm_t *dp, mdb_tgt_t *t, mdb_tgt_as_t as, 498 char *buf, size_t len, mdb_tgt_addr_t addr) 499 { 500 return (addr); 501 } 502 503 /*ARGSUSED*/ 504 static mdb_tgt_addr_t 505 defdis_previns(mdb_disasm_t *dp, mdb_tgt_t *t, mdb_tgt_as_t as, 506 mdb_tgt_addr_t addr, uint_t n) 507 { 508 return (addr); 509 } 510 511 /*ARGSUSED*/ 512 static mdb_tgt_addr_t 513 defdis_nextins(mdb_disasm_t *dp, mdb_tgt_t *t, mdb_tgt_as_t as, 514 mdb_tgt_addr_t addr) 515 { 516 return (addr); 517 } 518 519 static const mdb_dis_ops_t defdis_ops = { 520 defdis_destroy, 521 defdis_ins2str, 522 defdis_previns, 523 defdis_nextins 524 }; 525 526 static int 527 defdis_create(mdb_disasm_t *dp) 528 { 529 dp->dis_name = "default"; 530 dp->dis_desc = "default no-op disassembler"; 531 dp->dis_ops = &defdis_ops; 532 533 return (0); 534 } 535 536 mdb_dis_ctor_f *const mdb_dis_builtins[] = { 537 defdis_create, 538 #if defined(__amd64) 539 ia32_create, 540 amd64_create, 541 #elif defined(__i386) 542 ia32_create, 543 #elif defined(__sparc) 544 sparc1_create, 545 sparc2_create, 546 sparc4_create, 547 sparcv8_create, 548 sparcv9_create, 549 sparcv9plus_create, 550 #endif 551 NULL 552 }; 553