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 (mdb_lookup_by_addr(addr, MDB_SYM_FUZZY, &c, 1, &sym) < 0) 246 return (-1); 247 if (start != NULL) 248 *start = sym.st_value; 249 if (len != NULL) 250 *len = sym.st_size; 251 252 return (0); 253 } 254 255 /* 256 * Disassembler support routine for reading from the target. Rather than having 257 * to read one byte at a time, we read from the address space in chunks. If the 258 * current address doesn't lie within our buffer range, we read in the chunk 259 * starting from the given address. 260 */ 261 static int 262 libdisasm_read(void *data, uint64_t pc, void *buf, size_t buflen) 263 { 264 dis_buf_t *db = data; 265 size_t offset; 266 size_t len; 267 268 if (pc - db->db_addr >= db->db_bufsize) { 269 if (mdb_tgt_aread(db->db_tgt, db->db_as, db->db_buf, 270 sizeof (db->db_buf), pc) != -1) { 271 db->db_bufsize = sizeof (db->db_buf); 272 } else if (mdb_tgt_aread(db->db_tgt, db->db_as, db->db_buf, 273 buflen, pc) != -1) { 274 db->db_bufsize = buflen; 275 } else { 276 if (!db->db_readerr) 277 mdb_warn("failed to read instruction at %#lr", 278 (uintptr_t)pc); 279 db->db_readerr = B_TRUE; 280 return (-1); 281 } 282 db->db_addr = pc; 283 } 284 285 offset = pc - db->db_addr; 286 287 len = MIN(buflen, db->db_bufsize - offset); 288 289 memcpy(buf, (char *)db->db_buf + offset, len); 290 db->db_nextaddr = pc + len; 291 292 return (len); 293 } 294 295 static mdb_tgt_addr_t 296 libdisasm_ins2str(mdb_disasm_t *dp, mdb_tgt_t *t, mdb_tgt_as_t as, 297 char *buf, size_t len, mdb_tgt_addr_t pc) 298 { 299 dis_handle_t *dhp = dp->dis_data; 300 dis_buf_t db = { 0 }; 301 302 /* 303 * Set the libdisasm data to point to our buffer. This will be 304 * passed as the first argument to the lookup and read functions. 305 */ 306 db.db_tgt = t; 307 db.db_as = as; 308 309 dis_set_data(dhp, &db); 310 311 /* 312 * Attempt to disassemble the instruction. If this fails because of an 313 * unknown opcode, drive on anyway. If it fails because we couldn't 314 * read from the target, bail out immediately. 315 */ 316 if (dis_disassemble(dhp, pc, buf, len) != 0) 317 (void) mdb_snprintf(buf, len, 318 "***ERROR--unknown op code***"); 319 320 if (db.db_readerr) 321 return (pc); 322 323 /* 324 * Return the updated location 325 */ 326 return (db.db_nextaddr); 327 } 328 329 static mdb_tgt_addr_t 330 libdisasm_previns(mdb_disasm_t *dp, mdb_tgt_t *t, mdb_tgt_as_t as, 331 mdb_tgt_addr_t pc, uint_t n) 332 { 333 dis_handle_t *dhp = dp->dis_data; 334 dis_buf_t db = { 0 }; 335 336 /* 337 * Set the libdisasm data to point to our buffer. This will be 338 * passed as the first argument to the lookup and read functions. 339 * We set 'readerr' to B_TRUE to turn off the mdb_warn() in 340 * libdisasm_read, because the code works by probing backwards until a 341 * valid address is found. 342 */ 343 db.db_tgt = t; 344 db.db_as = as; 345 db.db_readerr = B_TRUE; 346 347 dis_set_data(dhp, &db); 348 349 return (dis_previnstr(dhp, pc, n)); 350 } 351 352 /*ARGSUSED*/ 353 static mdb_tgt_addr_t 354 libdisasm_nextins(mdb_disasm_t *dp, mdb_tgt_t *t, mdb_tgt_as_t as, 355 mdb_tgt_addr_t pc) 356 { 357 mdb_tgt_addr_t npc; 358 char c; 359 360 if ((npc = libdisasm_ins2str(dp, t, as, &c, 1, pc)) == pc) 361 return (pc); 362 363 /* 364 * Probe the address to make sure we can read something from it - we 365 * want the address we return to actually contain something. 366 */ 367 if (mdb_tgt_aread(t, as, &c, 1, npc) != 1) 368 return (pc); 369 370 return (npc); 371 } 372 373 static void 374 libdisasm_destroy(mdb_disasm_t *dp) 375 { 376 dis_handle_t *dhp = dp->dis_data; 377 378 dis_handle_destroy(dhp); 379 } 380 381 static const mdb_dis_ops_t libdisasm_ops = { 382 libdisasm_destroy, 383 libdisasm_ins2str, 384 libdisasm_previns, 385 libdisasm_nextins 386 }; 387 388 /* 389 * Generic function for creating a libdisasm-backed disassembler. Creates an 390 * MDB disassembler with the given name backed by libdis with the given flags. 391 */ 392 static int 393 libdisasm_create(mdb_disasm_t *dp, const char *name, 394 const char *desc, int flags) 395 { 396 if ((dp->dis_data = dis_handle_create(flags, NULL, libdisasm_lookup, 397 libdisasm_read)) == NULL) 398 return (-1); 399 400 dp->dis_name = name; 401 dp->dis_ops = &libdisasm_ops; 402 dp->dis_desc = desc; 403 404 return (0); 405 } 406 407 408 #if defined(__i386) || defined(__amd64) 409 static int 410 ia32_create(mdb_disasm_t *dp) 411 { 412 return (libdisasm_create(dp, 413 "ia32", 414 "Intel 32-bit disassembler", 415 DIS_X86_SIZE32)); 416 } 417 #endif 418 419 #if defined(__amd64) 420 static int 421 amd64_create(mdb_disasm_t *dp) 422 { 423 return (libdisasm_create(dp, 424 "amd64", 425 "AMD64 and IA32e 64-bit disassembler", 426 DIS_X86_SIZE64)); 427 } 428 #endif 429 430 #if defined(__sparc) 431 static int 432 sparc1_create(mdb_disasm_t *dp) 433 { 434 return (libdisasm_create(dp, 435 "1", 436 "SPARC-v8 disassembler", 437 DIS_SPARC_V8)); 438 } 439 440 static int 441 sparc2_create(mdb_disasm_t *dp) 442 { 443 return (libdisasm_create(dp, 444 "2", 445 "SPARC-v9 disassembler", 446 DIS_SPARC_V9)); 447 } 448 449 static int 450 sparc4_create(mdb_disasm_t *dp) 451 { 452 return (libdisasm_create(dp, 453 "4", 454 "UltraSPARC1-v9 disassembler", 455 DIS_SPARC_V9 | DIS_SPARC_V9_SGI)); 456 } 457 458 static int 459 sparcv8_create(mdb_disasm_t *dp) 460 { 461 return (libdisasm_create(dp, 462 "v8", 463 "SPARC-v8 disassembler", 464 DIS_SPARC_V8)); 465 } 466 467 static int 468 sparcv9_create(mdb_disasm_t *dp) 469 { 470 return (libdisasm_create(dp, 471 "v9", 472 "SPARC-v9 disassembler", 473 DIS_SPARC_V9)); 474 } 475 476 static int 477 sparcv9plus_create(mdb_disasm_t *dp) 478 { 479 return (libdisasm_create(dp, 480 "v9plus", 481 "UltraSPARC1-v9 disassembler", 482 DIS_SPARC_V9 | DIS_SPARC_V9_SGI)); 483 } 484 #endif 485 486 /*ARGSUSED*/ 487 static void 488 defdis_destroy(mdb_disasm_t *dp) 489 { 490 /* Nothing to do here */ 491 } 492 493 /*ARGSUSED*/ 494 static mdb_tgt_addr_t 495 defdis_ins2str(mdb_disasm_t *dp, mdb_tgt_t *t, mdb_tgt_as_t as, 496 char *buf, size_t len, mdb_tgt_addr_t addr) 497 { 498 return (addr); 499 } 500 501 /*ARGSUSED*/ 502 static mdb_tgt_addr_t 503 defdis_previns(mdb_disasm_t *dp, mdb_tgt_t *t, mdb_tgt_as_t as, 504 mdb_tgt_addr_t addr, uint_t n) 505 { 506 return (addr); 507 } 508 509 /*ARGSUSED*/ 510 static mdb_tgt_addr_t 511 defdis_nextins(mdb_disasm_t *dp, mdb_tgt_t *t, mdb_tgt_as_t as, 512 mdb_tgt_addr_t addr) 513 { 514 return (addr); 515 } 516 517 static const mdb_dis_ops_t defdis_ops = { 518 defdis_destroy, 519 defdis_ins2str, 520 defdis_previns, 521 defdis_nextins 522 }; 523 524 static int 525 defdis_create(mdb_disasm_t *dp) 526 { 527 dp->dis_name = "default"; 528 dp->dis_desc = "default no-op disassembler"; 529 dp->dis_ops = &defdis_ops; 530 531 return (0); 532 } 533 534 mdb_dis_ctor_f *const mdb_dis_builtins[] = { 535 defdis_create, 536 #if defined(__amd64) 537 ia32_create, 538 amd64_create, 539 #elif defined(__i386) 540 ia32_create, 541 #elif defined(__sparc) 542 sparc1_create, 543 sparc2_create, 544 sparc4_create, 545 sparcv8_create, 546 sparcv9_create, 547 sparcv9plus_create, 548 #endif 549 NULL 550 }; 551