1 /* 2 * User emulator execution 3 * 4 * Copyright (c) 2003-2005 Fabrice Bellard 5 * 6 * This library is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU Lesser General Public 8 * License as published by the Free Software Foundation; either 9 * version 2.1 of the License, or (at your option) any later version. 10 * 11 * This library is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * Lesser General Public License for more details. 15 * 16 * You should have received a copy of the GNU Lesser General Public 17 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 18 */ 19 #include "qemu/osdep.h" 20 #include "hw/core/tcg-cpu-ops.h" 21 #include "disas/disas.h" 22 #include "exec/exec-all.h" 23 #include "tcg/tcg.h" 24 #include "qemu/bitops.h" 25 #include "qemu/rcu.h" 26 #include "exec/cpu_ldst.h" 27 #include "exec/translate-all.h" 28 #include "exec/helper-proto.h" 29 #include "qemu/atomic128.h" 30 #include "trace/trace-root.h" 31 #include "tcg/tcg-ldst.h" 32 #include "internal.h" 33 34 __thread uintptr_t helper_retaddr; 35 36 //#define DEBUG_SIGNAL 37 38 /* 39 * Adjust the pc to pass to cpu_restore_state; return the memop type. 40 */ 41 MMUAccessType adjust_signal_pc(uintptr_t *pc, bool is_write) 42 { 43 switch (helper_retaddr) { 44 default: 45 /* 46 * Fault during host memory operation within a helper function. 47 * The helper's host return address, saved here, gives us a 48 * pointer into the generated code that will unwind to the 49 * correct guest pc. 50 */ 51 *pc = helper_retaddr; 52 break; 53 54 case 0: 55 /* 56 * Fault during host memory operation within generated code. 57 * (Or, a unrelated bug within qemu, but we can't tell from here). 58 * 59 * We take the host pc from the signal frame. However, we cannot 60 * use that value directly. Within cpu_restore_state_from_tb, we 61 * assume PC comes from GETPC(), as used by the helper functions, 62 * so we adjust the address by -GETPC_ADJ to form an address that 63 * is within the call insn, so that the address does not accidentally 64 * match the beginning of the next guest insn. However, when the 65 * pc comes from the signal frame it points to the actual faulting 66 * host memory insn and not the return from a call insn. 67 * 68 * Therefore, adjust to compensate for what will be done later 69 * by cpu_restore_state_from_tb. 70 */ 71 *pc += GETPC_ADJ; 72 break; 73 74 case 1: 75 /* 76 * Fault during host read for translation, or loosely, "execution". 77 * 78 * The guest pc is already pointing to the start of the TB for which 79 * code is being generated. If the guest translator manages the 80 * page crossings correctly, this is exactly the correct address 81 * (and if the translator doesn't handle page boundaries correctly 82 * there's little we can do about that here). Therefore, do not 83 * trigger the unwinder. 84 */ 85 *pc = 0; 86 return MMU_INST_FETCH; 87 } 88 89 return is_write ? MMU_DATA_STORE : MMU_DATA_LOAD; 90 } 91 92 /** 93 * handle_sigsegv_accerr_write: 94 * @cpu: the cpu context 95 * @old_set: the sigset_t from the signal ucontext_t 96 * @host_pc: the host pc, adjusted for the signal 97 * @guest_addr: the guest address of the fault 98 * 99 * Return true if the write fault has been handled, and should be re-tried. 100 * 101 * Note that it is important that we don't call page_unprotect() unless 102 * this is really a "write to nonwritable page" fault, because 103 * page_unprotect() assumes that if it is called for an access to 104 * a page that's writable this means we had two threads racing and 105 * another thread got there first and already made the page writable; 106 * so we will retry the access. If we were to call page_unprotect() 107 * for some other kind of fault that should really be passed to the 108 * guest, we'd end up in an infinite loop of retrying the faulting access. 109 */ 110 bool handle_sigsegv_accerr_write(CPUState *cpu, sigset_t *old_set, 111 uintptr_t host_pc, abi_ptr guest_addr) 112 { 113 switch (page_unprotect(guest_addr, host_pc)) { 114 case 0: 115 /* 116 * Fault not caused by a page marked unwritable to protect 117 * cached translations, must be the guest binary's problem. 118 */ 119 return false; 120 case 1: 121 /* 122 * Fault caused by protection of cached translation; TBs 123 * invalidated, so resume execution. 124 */ 125 return true; 126 case 2: 127 /* 128 * Fault caused by protection of cached translation, and the 129 * currently executing TB was modified and must be exited immediately. 130 */ 131 sigprocmask(SIG_SETMASK, old_set, NULL); 132 cpu_loop_exit_noexc(cpu); 133 /* NORETURN */ 134 default: 135 g_assert_not_reached(); 136 } 137 } 138 139 typedef struct PageFlagsNode { 140 struct rcu_head rcu; 141 IntervalTreeNode itree; 142 int flags; 143 } PageFlagsNode; 144 145 static IntervalTreeRoot pageflags_root; 146 147 static PageFlagsNode *pageflags_find(target_ulong start, target_long last) 148 { 149 IntervalTreeNode *n; 150 151 n = interval_tree_iter_first(&pageflags_root, start, last); 152 return n ? container_of(n, PageFlagsNode, itree) : NULL; 153 } 154 155 static PageFlagsNode *pageflags_next(PageFlagsNode *p, target_ulong start, 156 target_long last) 157 { 158 IntervalTreeNode *n; 159 160 n = interval_tree_iter_next(&p->itree, start, last); 161 return n ? container_of(n, PageFlagsNode, itree) : NULL; 162 } 163 164 int walk_memory_regions(void *priv, walk_memory_regions_fn fn) 165 { 166 IntervalTreeNode *n; 167 int rc = 0; 168 169 mmap_lock(); 170 for (n = interval_tree_iter_first(&pageflags_root, 0, -1); 171 n != NULL; 172 n = interval_tree_iter_next(n, 0, -1)) { 173 PageFlagsNode *p = container_of(n, PageFlagsNode, itree); 174 175 rc = fn(priv, n->start, n->last + 1, p->flags); 176 if (rc != 0) { 177 break; 178 } 179 } 180 mmap_unlock(); 181 182 return rc; 183 } 184 185 static int dump_region(void *priv, target_ulong start, 186 target_ulong end, unsigned long prot) 187 { 188 FILE *f = (FILE *)priv; 189 190 fprintf(f, TARGET_FMT_lx"-"TARGET_FMT_lx" "TARGET_FMT_lx" %c%c%c\n", 191 start, end, end - start, 192 ((prot & PAGE_READ) ? 'r' : '-'), 193 ((prot & PAGE_WRITE) ? 'w' : '-'), 194 ((prot & PAGE_EXEC) ? 'x' : '-')); 195 return 0; 196 } 197 198 /* dump memory mappings */ 199 void page_dump(FILE *f) 200 { 201 const int length = sizeof(target_ulong) * 2; 202 203 fprintf(f, "%-*s %-*s %-*s %s\n", 204 length, "start", length, "end", length, "size", "prot"); 205 walk_memory_regions(f, dump_region); 206 } 207 208 int page_get_flags(target_ulong address) 209 { 210 PageFlagsNode *p = pageflags_find(address, address); 211 212 /* 213 * See util/interval-tree.c re lockless lookups: no false positives but 214 * there are false negatives. If we find nothing, retry with the mmap 215 * lock acquired. 216 */ 217 if (p) { 218 return p->flags; 219 } 220 if (have_mmap_lock()) { 221 return 0; 222 } 223 224 mmap_lock(); 225 p = pageflags_find(address, address); 226 mmap_unlock(); 227 return p ? p->flags : 0; 228 } 229 230 /* A subroutine of page_set_flags: insert a new node for [start,last]. */ 231 static void pageflags_create(target_ulong start, target_ulong last, int flags) 232 { 233 PageFlagsNode *p = g_new(PageFlagsNode, 1); 234 235 p->itree.start = start; 236 p->itree.last = last; 237 p->flags = flags; 238 interval_tree_insert(&p->itree, &pageflags_root); 239 } 240 241 /* A subroutine of page_set_flags: remove everything in [start,last]. */ 242 static bool pageflags_unset(target_ulong start, target_ulong last) 243 { 244 bool inval_tb = false; 245 246 while (true) { 247 PageFlagsNode *p = pageflags_find(start, last); 248 target_ulong p_last; 249 250 if (!p) { 251 break; 252 } 253 254 if (p->flags & PAGE_EXEC) { 255 inval_tb = true; 256 } 257 258 interval_tree_remove(&p->itree, &pageflags_root); 259 p_last = p->itree.last; 260 261 if (p->itree.start < start) { 262 /* Truncate the node from the end, or split out the middle. */ 263 p->itree.last = start - 1; 264 interval_tree_insert(&p->itree, &pageflags_root); 265 if (last < p_last) { 266 pageflags_create(last + 1, p_last, p->flags); 267 break; 268 } 269 } else if (p_last <= last) { 270 /* Range completely covers node -- remove it. */ 271 g_free_rcu(p, rcu); 272 } else { 273 /* Truncate the node from the start. */ 274 p->itree.start = last + 1; 275 interval_tree_insert(&p->itree, &pageflags_root); 276 break; 277 } 278 } 279 280 return inval_tb; 281 } 282 283 /* 284 * A subroutine of page_set_flags: nothing overlaps [start,last], 285 * but check adjacent mappings and maybe merge into a single range. 286 */ 287 static void pageflags_create_merge(target_ulong start, target_ulong last, 288 int flags) 289 { 290 PageFlagsNode *next = NULL, *prev = NULL; 291 292 if (start > 0) { 293 prev = pageflags_find(start - 1, start - 1); 294 if (prev) { 295 if (prev->flags == flags) { 296 interval_tree_remove(&prev->itree, &pageflags_root); 297 } else { 298 prev = NULL; 299 } 300 } 301 } 302 if (last + 1 != 0) { 303 next = pageflags_find(last + 1, last + 1); 304 if (next) { 305 if (next->flags == flags) { 306 interval_tree_remove(&next->itree, &pageflags_root); 307 } else { 308 next = NULL; 309 } 310 } 311 } 312 313 if (prev) { 314 if (next) { 315 prev->itree.last = next->itree.last; 316 g_free_rcu(next, rcu); 317 } else { 318 prev->itree.last = last; 319 } 320 interval_tree_insert(&prev->itree, &pageflags_root); 321 } else if (next) { 322 next->itree.start = start; 323 interval_tree_insert(&next->itree, &pageflags_root); 324 } else { 325 pageflags_create(start, last, flags); 326 } 327 } 328 329 /* 330 * Allow the target to decide if PAGE_TARGET_[12] may be reset. 331 * By default, they are not kept. 332 */ 333 #ifndef PAGE_TARGET_STICKY 334 #define PAGE_TARGET_STICKY 0 335 #endif 336 #define PAGE_STICKY (PAGE_ANON | PAGE_PASSTHROUGH | PAGE_TARGET_STICKY) 337 338 /* A subroutine of page_set_flags: add flags to [start,last]. */ 339 static bool pageflags_set_clear(target_ulong start, target_ulong last, 340 int set_flags, int clear_flags) 341 { 342 PageFlagsNode *p; 343 target_ulong p_start, p_last; 344 int p_flags, merge_flags; 345 bool inval_tb = false; 346 347 restart: 348 p = pageflags_find(start, last); 349 if (!p) { 350 if (set_flags) { 351 pageflags_create_merge(start, last, set_flags); 352 } 353 goto done; 354 } 355 356 p_start = p->itree.start; 357 p_last = p->itree.last; 358 p_flags = p->flags; 359 /* Using mprotect on a page does not change sticky bits. */ 360 merge_flags = (p_flags & ~clear_flags) | set_flags; 361 362 /* 363 * Need to flush if an overlapping executable region 364 * removes exec, or adds write. 365 */ 366 if ((p_flags & PAGE_EXEC) 367 && (!(merge_flags & PAGE_EXEC) 368 || (merge_flags & ~p_flags & PAGE_WRITE))) { 369 inval_tb = true; 370 } 371 372 /* 373 * If there is an exact range match, update and return without 374 * attempting to merge with adjacent regions. 375 */ 376 if (start == p_start && last == p_last) { 377 if (merge_flags) { 378 p->flags = merge_flags; 379 } else { 380 interval_tree_remove(&p->itree, &pageflags_root); 381 g_free_rcu(p, rcu); 382 } 383 goto done; 384 } 385 386 /* 387 * If sticky bits affect the original mapping, then we must be more 388 * careful about the existing intervals and the separate flags. 389 */ 390 if (set_flags != merge_flags) { 391 if (p_start < start) { 392 interval_tree_remove(&p->itree, &pageflags_root); 393 p->itree.last = start - 1; 394 interval_tree_insert(&p->itree, &pageflags_root); 395 396 if (last < p_last) { 397 if (merge_flags) { 398 pageflags_create(start, last, merge_flags); 399 } 400 pageflags_create(last + 1, p_last, p_flags); 401 } else { 402 if (merge_flags) { 403 pageflags_create(start, p_last, merge_flags); 404 } 405 if (p_last < last) { 406 start = p_last + 1; 407 goto restart; 408 } 409 } 410 } else { 411 if (start < p_start && set_flags) { 412 pageflags_create(start, p_start - 1, set_flags); 413 } 414 if (last < p_last) { 415 interval_tree_remove(&p->itree, &pageflags_root); 416 p->itree.start = last + 1; 417 interval_tree_insert(&p->itree, &pageflags_root); 418 if (merge_flags) { 419 pageflags_create(start, last, merge_flags); 420 } 421 } else { 422 if (merge_flags) { 423 p->flags = merge_flags; 424 } else { 425 interval_tree_remove(&p->itree, &pageflags_root); 426 g_free_rcu(p, rcu); 427 } 428 if (p_last < last) { 429 start = p_last + 1; 430 goto restart; 431 } 432 } 433 } 434 goto done; 435 } 436 437 /* If flags are not changing for this range, incorporate it. */ 438 if (set_flags == p_flags) { 439 if (start < p_start) { 440 interval_tree_remove(&p->itree, &pageflags_root); 441 p->itree.start = start; 442 interval_tree_insert(&p->itree, &pageflags_root); 443 } 444 if (p_last < last) { 445 start = p_last + 1; 446 goto restart; 447 } 448 goto done; 449 } 450 451 /* Maybe split out head and/or tail ranges with the original flags. */ 452 interval_tree_remove(&p->itree, &pageflags_root); 453 if (p_start < start) { 454 p->itree.last = start - 1; 455 interval_tree_insert(&p->itree, &pageflags_root); 456 457 if (p_last < last) { 458 goto restart; 459 } 460 if (last < p_last) { 461 pageflags_create(last + 1, p_last, p_flags); 462 } 463 } else if (last < p_last) { 464 p->itree.start = last + 1; 465 interval_tree_insert(&p->itree, &pageflags_root); 466 } else { 467 g_free_rcu(p, rcu); 468 goto restart; 469 } 470 if (set_flags) { 471 pageflags_create(start, last, set_flags); 472 } 473 474 done: 475 return inval_tb; 476 } 477 478 /* 479 * Modify the flags of a page and invalidate the code if necessary. 480 * The flag PAGE_WRITE_ORG is positioned automatically depending 481 * on PAGE_WRITE. The mmap_lock should already be held. 482 */ 483 void page_set_flags(target_ulong start, target_ulong end, int flags) 484 { 485 target_ulong last; 486 bool reset = false; 487 bool inval_tb = false; 488 489 /* This function should never be called with addresses outside the 490 guest address space. If this assert fires, it probably indicates 491 a missing call to h2g_valid. */ 492 assert(start < end); 493 assert(end - 1 <= GUEST_ADDR_MAX); 494 /* Only set PAGE_ANON with new mappings. */ 495 assert(!(flags & PAGE_ANON) || (flags & PAGE_RESET)); 496 assert_memory_lock(); 497 498 start = start & TARGET_PAGE_MASK; 499 end = TARGET_PAGE_ALIGN(end); 500 last = end - 1; 501 502 if (!(flags & PAGE_VALID)) { 503 flags = 0; 504 } else { 505 reset = flags & PAGE_RESET; 506 flags &= ~PAGE_RESET; 507 if (flags & PAGE_WRITE) { 508 flags |= PAGE_WRITE_ORG; 509 } 510 } 511 512 if (!flags || reset) { 513 page_reset_target_data(start, end); 514 inval_tb |= pageflags_unset(start, last); 515 } 516 if (flags) { 517 inval_tb |= pageflags_set_clear(start, last, flags, 518 ~(reset ? 0 : PAGE_STICKY)); 519 } 520 if (inval_tb) { 521 tb_invalidate_phys_range(start, end); 522 } 523 } 524 525 int page_check_range(target_ulong start, target_ulong len, int flags) 526 { 527 target_ulong last; 528 int locked; /* tri-state: =0: unlocked, +1: global, -1: local */ 529 int ret; 530 531 if (len == 0) { 532 return 0; /* trivial length */ 533 } 534 535 last = start + len - 1; 536 if (last < start) { 537 return -1; /* wrap around */ 538 } 539 540 locked = have_mmap_lock(); 541 while (true) { 542 PageFlagsNode *p = pageflags_find(start, last); 543 int missing; 544 545 if (!p) { 546 if (!locked) { 547 /* 548 * Lockless lookups have false negatives. 549 * Retry with the lock held. 550 */ 551 mmap_lock(); 552 locked = -1; 553 p = pageflags_find(start, last); 554 } 555 if (!p) { 556 ret = -1; /* entire region invalid */ 557 break; 558 } 559 } 560 if (start < p->itree.start) { 561 ret = -1; /* initial bytes invalid */ 562 break; 563 } 564 565 missing = flags & ~p->flags; 566 if (missing & PAGE_READ) { 567 ret = -1; /* page not readable */ 568 break; 569 } 570 if (missing & PAGE_WRITE) { 571 if (!(p->flags & PAGE_WRITE_ORG)) { 572 ret = -1; /* page not writable */ 573 break; 574 } 575 /* Asking about writable, but has been protected: undo. */ 576 if (!page_unprotect(start, 0)) { 577 ret = -1; 578 break; 579 } 580 /* TODO: page_unprotect should take a range, not a single page. */ 581 if (last - start < TARGET_PAGE_SIZE) { 582 ret = 0; /* ok */ 583 break; 584 } 585 start += TARGET_PAGE_SIZE; 586 continue; 587 } 588 589 if (last <= p->itree.last) { 590 ret = 0; /* ok */ 591 break; 592 } 593 start = p->itree.last + 1; 594 } 595 596 /* Release the lock if acquired locally. */ 597 if (locked < 0) { 598 mmap_unlock(); 599 } 600 return ret; 601 } 602 603 void page_protect(tb_page_addr_t address) 604 { 605 PageFlagsNode *p; 606 target_ulong start, last; 607 int prot; 608 609 assert_memory_lock(); 610 611 if (qemu_host_page_size <= TARGET_PAGE_SIZE) { 612 start = address & TARGET_PAGE_MASK; 613 last = start + TARGET_PAGE_SIZE - 1; 614 } else { 615 start = address & qemu_host_page_mask; 616 last = start + qemu_host_page_size - 1; 617 } 618 619 p = pageflags_find(start, last); 620 if (!p) { 621 return; 622 } 623 prot = p->flags; 624 625 if (unlikely(p->itree.last < last)) { 626 /* More than one protection region covers the one host page. */ 627 assert(TARGET_PAGE_SIZE < qemu_host_page_size); 628 while ((p = pageflags_next(p, start, last)) != NULL) { 629 prot |= p->flags; 630 } 631 } 632 633 if (prot & PAGE_WRITE) { 634 pageflags_set_clear(start, last, 0, PAGE_WRITE); 635 mprotect(g2h_untagged(start), qemu_host_page_size, 636 prot & (PAGE_READ | PAGE_EXEC) ? PROT_READ : PROT_NONE); 637 } 638 } 639 640 /* 641 * Called from signal handler: invalidate the code and unprotect the 642 * page. Return 0 if the fault was not handled, 1 if it was handled, 643 * and 2 if it was handled but the caller must cause the TB to be 644 * immediately exited. (We can only return 2 if the 'pc' argument is 645 * non-zero.) 646 */ 647 int page_unprotect(target_ulong address, uintptr_t pc) 648 { 649 PageFlagsNode *p; 650 bool current_tb_invalidated; 651 652 /* 653 * Technically this isn't safe inside a signal handler. However we 654 * know this only ever happens in a synchronous SEGV handler, so in 655 * practice it seems to be ok. 656 */ 657 mmap_lock(); 658 659 p = pageflags_find(address, address); 660 661 /* If this address was not really writable, nothing to do. */ 662 if (!p || !(p->flags & PAGE_WRITE_ORG)) { 663 mmap_unlock(); 664 return 0; 665 } 666 667 current_tb_invalidated = false; 668 if (p->flags & PAGE_WRITE) { 669 /* 670 * If the page is actually marked WRITE then assume this is because 671 * this thread raced with another one which got here first and 672 * set the page to PAGE_WRITE and did the TB invalidate for us. 673 */ 674 #ifdef TARGET_HAS_PRECISE_SMC 675 TranslationBlock *current_tb = tcg_tb_lookup(pc); 676 if (current_tb) { 677 current_tb_invalidated = tb_cflags(current_tb) & CF_INVALID; 678 } 679 #endif 680 } else { 681 target_ulong start, len, i; 682 int prot; 683 684 if (qemu_host_page_size <= TARGET_PAGE_SIZE) { 685 start = address & TARGET_PAGE_MASK; 686 len = TARGET_PAGE_SIZE; 687 prot = p->flags | PAGE_WRITE; 688 pageflags_set_clear(start, start + len - 1, PAGE_WRITE, 0); 689 current_tb_invalidated = tb_invalidate_phys_page_unwind(start, pc); 690 } else { 691 start = address & qemu_host_page_mask; 692 len = qemu_host_page_size; 693 prot = 0; 694 695 for (i = 0; i < len; i += TARGET_PAGE_SIZE) { 696 target_ulong addr = start + i; 697 698 p = pageflags_find(addr, addr); 699 if (p) { 700 prot |= p->flags; 701 if (p->flags & PAGE_WRITE_ORG) { 702 prot |= PAGE_WRITE; 703 pageflags_set_clear(addr, addr + TARGET_PAGE_SIZE - 1, 704 PAGE_WRITE, 0); 705 } 706 } 707 /* 708 * Since the content will be modified, we must invalidate 709 * the corresponding translated code. 710 */ 711 current_tb_invalidated |= 712 tb_invalidate_phys_page_unwind(addr, pc); 713 } 714 } 715 if (prot & PAGE_EXEC) { 716 prot = (prot & ~PAGE_EXEC) | PAGE_READ; 717 } 718 mprotect((void *)g2h_untagged(start), len, prot & PAGE_BITS); 719 } 720 mmap_unlock(); 721 722 /* If current TB was invalidated return to main loop */ 723 return current_tb_invalidated ? 2 : 1; 724 } 725 726 static int probe_access_internal(CPUArchState *env, target_ulong addr, 727 int fault_size, MMUAccessType access_type, 728 bool nonfault, uintptr_t ra) 729 { 730 int acc_flag; 731 bool maperr; 732 733 switch (access_type) { 734 case MMU_DATA_STORE: 735 acc_flag = PAGE_WRITE_ORG; 736 break; 737 case MMU_DATA_LOAD: 738 acc_flag = PAGE_READ; 739 break; 740 case MMU_INST_FETCH: 741 acc_flag = PAGE_EXEC; 742 break; 743 default: 744 g_assert_not_reached(); 745 } 746 747 if (guest_addr_valid_untagged(addr)) { 748 int page_flags = page_get_flags(addr); 749 if (page_flags & acc_flag) { 750 return 0; /* success */ 751 } 752 maperr = !(page_flags & PAGE_VALID); 753 } else { 754 maperr = true; 755 } 756 757 if (nonfault) { 758 return TLB_INVALID_MASK; 759 } 760 761 cpu_loop_exit_sigsegv(env_cpu(env), addr, access_type, maperr, ra); 762 } 763 764 int probe_access_flags(CPUArchState *env, target_ulong addr, int size, 765 MMUAccessType access_type, int mmu_idx, 766 bool nonfault, void **phost, uintptr_t ra) 767 { 768 int flags; 769 770 g_assert(-(addr | TARGET_PAGE_MASK) >= size); 771 flags = probe_access_internal(env, addr, size, access_type, nonfault, ra); 772 *phost = flags ? NULL : g2h(env_cpu(env), addr); 773 return flags; 774 } 775 776 void *probe_access(CPUArchState *env, target_ulong addr, int size, 777 MMUAccessType access_type, int mmu_idx, uintptr_t ra) 778 { 779 int flags; 780 781 g_assert(-(addr | TARGET_PAGE_MASK) >= size); 782 flags = probe_access_internal(env, addr, size, access_type, false, ra); 783 g_assert(flags == 0); 784 785 return size ? g2h(env_cpu(env), addr) : NULL; 786 } 787 788 tb_page_addr_t get_page_addr_code_hostp(CPUArchState *env, target_ulong addr, 789 void **hostp) 790 { 791 int flags; 792 793 flags = probe_access_internal(env, addr, 1, MMU_INST_FETCH, false, 0); 794 g_assert(flags == 0); 795 796 if (hostp) { 797 *hostp = g2h_untagged(addr); 798 } 799 return addr; 800 } 801 802 #ifdef TARGET_PAGE_DATA_SIZE 803 /* 804 * Allocate chunks of target data together. For the only current user, 805 * if we allocate one hunk per page, we have overhead of 40/128 or 40%. 806 * Therefore, allocate memory for 64 pages at a time for overhead < 1%. 807 */ 808 #define TPD_PAGES 64 809 #define TBD_MASK (TARGET_PAGE_MASK * TPD_PAGES) 810 811 typedef struct TargetPageDataNode { 812 struct rcu_head rcu; 813 IntervalTreeNode itree; 814 char data[TPD_PAGES][TARGET_PAGE_DATA_SIZE] __attribute__((aligned)); 815 } TargetPageDataNode; 816 817 static IntervalTreeRoot targetdata_root; 818 819 void page_reset_target_data(target_ulong start, target_ulong end) 820 { 821 IntervalTreeNode *n, *next; 822 target_ulong last; 823 824 assert_memory_lock(); 825 826 start = start & TARGET_PAGE_MASK; 827 last = TARGET_PAGE_ALIGN(end) - 1; 828 829 for (n = interval_tree_iter_first(&targetdata_root, start, last), 830 next = n ? interval_tree_iter_next(n, start, last) : NULL; 831 n != NULL; 832 n = next, 833 next = next ? interval_tree_iter_next(n, start, last) : NULL) { 834 target_ulong n_start, n_last, p_ofs, p_len; 835 TargetPageDataNode *t = container_of(n, TargetPageDataNode, itree); 836 837 if (n->start >= start && n->last <= last) { 838 interval_tree_remove(n, &targetdata_root); 839 g_free_rcu(t, rcu); 840 continue; 841 } 842 843 if (n->start < start) { 844 n_start = start; 845 p_ofs = (start - n->start) >> TARGET_PAGE_BITS; 846 } else { 847 n_start = n->start; 848 p_ofs = 0; 849 } 850 n_last = MIN(last, n->last); 851 p_len = (n_last + 1 - n_start) >> TARGET_PAGE_BITS; 852 853 memset(t->data[p_ofs], 0, p_len * TARGET_PAGE_DATA_SIZE); 854 } 855 } 856 857 void *page_get_target_data(target_ulong address) 858 { 859 IntervalTreeNode *n; 860 TargetPageDataNode *t; 861 target_ulong page, region; 862 863 page = address & TARGET_PAGE_MASK; 864 region = address & TBD_MASK; 865 866 n = interval_tree_iter_first(&targetdata_root, page, page); 867 if (!n) { 868 /* 869 * See util/interval-tree.c re lockless lookups: no false positives 870 * but there are false negatives. If we find nothing, retry with 871 * the mmap lock acquired. We also need the lock for the 872 * allocation + insert. 873 */ 874 mmap_lock(); 875 n = interval_tree_iter_first(&targetdata_root, page, page); 876 if (!n) { 877 t = g_new0(TargetPageDataNode, 1); 878 n = &t->itree; 879 n->start = region; 880 n->last = region | ~TBD_MASK; 881 interval_tree_insert(n, &targetdata_root); 882 } 883 mmap_unlock(); 884 } 885 886 t = container_of(n, TargetPageDataNode, itree); 887 return t->data[(page - region) >> TARGET_PAGE_BITS]; 888 } 889 #else 890 void page_reset_target_data(target_ulong start, target_ulong end) { } 891 #endif /* TARGET_PAGE_DATA_SIZE */ 892 893 /* The softmmu versions of these helpers are in cputlb.c. */ 894 895 /* 896 * Verify that we have passed the correct MemOp to the correct function. 897 * 898 * We could present one function to target code, and dispatch based on 899 * the MemOp, but so far we have worked hard to avoid an indirect function 900 * call along the memory path. 901 */ 902 static void validate_memop(MemOpIdx oi, MemOp expected) 903 { 904 #ifdef CONFIG_DEBUG_TCG 905 MemOp have = get_memop(oi) & (MO_SIZE | MO_BSWAP); 906 assert(have == expected); 907 #endif 908 } 909 910 void helper_unaligned_ld(CPUArchState *env, target_ulong addr) 911 { 912 cpu_loop_exit_sigbus(env_cpu(env), addr, MMU_DATA_LOAD, GETPC()); 913 } 914 915 void helper_unaligned_st(CPUArchState *env, target_ulong addr) 916 { 917 cpu_loop_exit_sigbus(env_cpu(env), addr, MMU_DATA_STORE, GETPC()); 918 } 919 920 static void *cpu_mmu_lookup(CPUArchState *env, target_ulong addr, 921 MemOpIdx oi, uintptr_t ra, MMUAccessType type) 922 { 923 MemOp mop = get_memop(oi); 924 int a_bits = get_alignment_bits(mop); 925 void *ret; 926 927 /* Enforce guest required alignment. */ 928 if (unlikely(addr & ((1 << a_bits) - 1))) { 929 cpu_loop_exit_sigbus(env_cpu(env), addr, type, ra); 930 } 931 932 ret = g2h(env_cpu(env), addr); 933 set_helper_retaddr(ra); 934 return ret; 935 } 936 937 uint8_t cpu_ldb_mmu(CPUArchState *env, abi_ptr addr, 938 MemOpIdx oi, uintptr_t ra) 939 { 940 void *haddr; 941 uint8_t ret; 942 943 validate_memop(oi, MO_UB); 944 haddr = cpu_mmu_lookup(env, addr, oi, ra, MMU_DATA_LOAD); 945 ret = ldub_p(haddr); 946 clear_helper_retaddr(); 947 qemu_plugin_vcpu_mem_cb(env_cpu(env), addr, oi, QEMU_PLUGIN_MEM_R); 948 return ret; 949 } 950 951 uint16_t cpu_ldw_be_mmu(CPUArchState *env, abi_ptr addr, 952 MemOpIdx oi, uintptr_t ra) 953 { 954 void *haddr; 955 uint16_t ret; 956 957 validate_memop(oi, MO_BEUW); 958 haddr = cpu_mmu_lookup(env, addr, oi, ra, MMU_DATA_LOAD); 959 ret = lduw_be_p(haddr); 960 clear_helper_retaddr(); 961 qemu_plugin_vcpu_mem_cb(env_cpu(env), addr, oi, QEMU_PLUGIN_MEM_R); 962 return ret; 963 } 964 965 uint32_t cpu_ldl_be_mmu(CPUArchState *env, abi_ptr addr, 966 MemOpIdx oi, uintptr_t ra) 967 { 968 void *haddr; 969 uint32_t ret; 970 971 validate_memop(oi, MO_BEUL); 972 haddr = cpu_mmu_lookup(env, addr, oi, ra, MMU_DATA_LOAD); 973 ret = ldl_be_p(haddr); 974 clear_helper_retaddr(); 975 qemu_plugin_vcpu_mem_cb(env_cpu(env), addr, oi, QEMU_PLUGIN_MEM_R); 976 return ret; 977 } 978 979 uint64_t cpu_ldq_be_mmu(CPUArchState *env, abi_ptr addr, 980 MemOpIdx oi, uintptr_t ra) 981 { 982 void *haddr; 983 uint64_t ret; 984 985 validate_memop(oi, MO_BEUQ); 986 haddr = cpu_mmu_lookup(env, addr, oi, ra, MMU_DATA_LOAD); 987 ret = ldq_be_p(haddr); 988 clear_helper_retaddr(); 989 qemu_plugin_vcpu_mem_cb(env_cpu(env), addr, oi, QEMU_PLUGIN_MEM_R); 990 return ret; 991 } 992 993 uint16_t cpu_ldw_le_mmu(CPUArchState *env, abi_ptr addr, 994 MemOpIdx oi, uintptr_t ra) 995 { 996 void *haddr; 997 uint16_t ret; 998 999 validate_memop(oi, MO_LEUW); 1000 haddr = cpu_mmu_lookup(env, addr, oi, ra, MMU_DATA_LOAD); 1001 ret = lduw_le_p(haddr); 1002 clear_helper_retaddr(); 1003 qemu_plugin_vcpu_mem_cb(env_cpu(env), addr, oi, QEMU_PLUGIN_MEM_R); 1004 return ret; 1005 } 1006 1007 uint32_t cpu_ldl_le_mmu(CPUArchState *env, abi_ptr addr, 1008 MemOpIdx oi, uintptr_t ra) 1009 { 1010 void *haddr; 1011 uint32_t ret; 1012 1013 validate_memop(oi, MO_LEUL); 1014 haddr = cpu_mmu_lookup(env, addr, oi, ra, MMU_DATA_LOAD); 1015 ret = ldl_le_p(haddr); 1016 clear_helper_retaddr(); 1017 qemu_plugin_vcpu_mem_cb(env_cpu(env), addr, oi, QEMU_PLUGIN_MEM_R); 1018 return ret; 1019 } 1020 1021 uint64_t cpu_ldq_le_mmu(CPUArchState *env, abi_ptr addr, 1022 MemOpIdx oi, uintptr_t ra) 1023 { 1024 void *haddr; 1025 uint64_t ret; 1026 1027 validate_memop(oi, MO_LEUQ); 1028 haddr = cpu_mmu_lookup(env, addr, oi, ra, MMU_DATA_LOAD); 1029 ret = ldq_le_p(haddr); 1030 clear_helper_retaddr(); 1031 qemu_plugin_vcpu_mem_cb(env_cpu(env), addr, oi, QEMU_PLUGIN_MEM_R); 1032 return ret; 1033 } 1034 1035 Int128 cpu_ld16_be_mmu(CPUArchState *env, abi_ptr addr, 1036 MemOpIdx oi, uintptr_t ra) 1037 { 1038 void *haddr; 1039 Int128 ret; 1040 1041 validate_memop(oi, MO_128 | MO_BE); 1042 haddr = cpu_mmu_lookup(env, addr, oi, ra, MMU_DATA_LOAD); 1043 memcpy(&ret, haddr, 16); 1044 clear_helper_retaddr(); 1045 qemu_plugin_vcpu_mem_cb(env_cpu(env), addr, oi, QEMU_PLUGIN_MEM_R); 1046 1047 if (!HOST_BIG_ENDIAN) { 1048 ret = bswap128(ret); 1049 } 1050 return ret; 1051 } 1052 1053 Int128 cpu_ld16_le_mmu(CPUArchState *env, abi_ptr addr, 1054 MemOpIdx oi, uintptr_t ra) 1055 { 1056 void *haddr; 1057 Int128 ret; 1058 1059 validate_memop(oi, MO_128 | MO_LE); 1060 haddr = cpu_mmu_lookup(env, addr, oi, ra, MMU_DATA_LOAD); 1061 memcpy(&ret, haddr, 16); 1062 clear_helper_retaddr(); 1063 qemu_plugin_vcpu_mem_cb(env_cpu(env), addr, oi, QEMU_PLUGIN_MEM_R); 1064 1065 if (HOST_BIG_ENDIAN) { 1066 ret = bswap128(ret); 1067 } 1068 return ret; 1069 } 1070 1071 void cpu_stb_mmu(CPUArchState *env, abi_ptr addr, uint8_t val, 1072 MemOpIdx oi, uintptr_t ra) 1073 { 1074 void *haddr; 1075 1076 validate_memop(oi, MO_UB); 1077 haddr = cpu_mmu_lookup(env, addr, oi, ra, MMU_DATA_STORE); 1078 stb_p(haddr, val); 1079 clear_helper_retaddr(); 1080 qemu_plugin_vcpu_mem_cb(env_cpu(env), addr, oi, QEMU_PLUGIN_MEM_W); 1081 } 1082 1083 void cpu_stw_be_mmu(CPUArchState *env, abi_ptr addr, uint16_t val, 1084 MemOpIdx oi, uintptr_t ra) 1085 { 1086 void *haddr; 1087 1088 validate_memop(oi, MO_BEUW); 1089 haddr = cpu_mmu_lookup(env, addr, oi, ra, MMU_DATA_STORE); 1090 stw_be_p(haddr, val); 1091 clear_helper_retaddr(); 1092 qemu_plugin_vcpu_mem_cb(env_cpu(env), addr, oi, QEMU_PLUGIN_MEM_W); 1093 } 1094 1095 void cpu_stl_be_mmu(CPUArchState *env, abi_ptr addr, uint32_t val, 1096 MemOpIdx oi, uintptr_t ra) 1097 { 1098 void *haddr; 1099 1100 validate_memop(oi, MO_BEUL); 1101 haddr = cpu_mmu_lookup(env, addr, oi, ra, MMU_DATA_STORE); 1102 stl_be_p(haddr, val); 1103 clear_helper_retaddr(); 1104 qemu_plugin_vcpu_mem_cb(env_cpu(env), addr, oi, QEMU_PLUGIN_MEM_W); 1105 } 1106 1107 void cpu_stq_be_mmu(CPUArchState *env, abi_ptr addr, uint64_t val, 1108 MemOpIdx oi, uintptr_t ra) 1109 { 1110 void *haddr; 1111 1112 validate_memop(oi, MO_BEUQ); 1113 haddr = cpu_mmu_lookup(env, addr, oi, ra, MMU_DATA_STORE); 1114 stq_be_p(haddr, val); 1115 clear_helper_retaddr(); 1116 qemu_plugin_vcpu_mem_cb(env_cpu(env), addr, oi, QEMU_PLUGIN_MEM_W); 1117 } 1118 1119 void cpu_stw_le_mmu(CPUArchState *env, abi_ptr addr, uint16_t val, 1120 MemOpIdx oi, uintptr_t ra) 1121 { 1122 void *haddr; 1123 1124 validate_memop(oi, MO_LEUW); 1125 haddr = cpu_mmu_lookup(env, addr, oi, ra, MMU_DATA_STORE); 1126 stw_le_p(haddr, val); 1127 clear_helper_retaddr(); 1128 qemu_plugin_vcpu_mem_cb(env_cpu(env), addr, oi, QEMU_PLUGIN_MEM_W); 1129 } 1130 1131 void cpu_stl_le_mmu(CPUArchState *env, abi_ptr addr, uint32_t val, 1132 MemOpIdx oi, uintptr_t ra) 1133 { 1134 void *haddr; 1135 1136 validate_memop(oi, MO_LEUL); 1137 haddr = cpu_mmu_lookup(env, addr, oi, ra, MMU_DATA_STORE); 1138 stl_le_p(haddr, val); 1139 clear_helper_retaddr(); 1140 qemu_plugin_vcpu_mem_cb(env_cpu(env), addr, oi, QEMU_PLUGIN_MEM_W); 1141 } 1142 1143 void cpu_stq_le_mmu(CPUArchState *env, abi_ptr addr, uint64_t val, 1144 MemOpIdx oi, uintptr_t ra) 1145 { 1146 void *haddr; 1147 1148 validate_memop(oi, MO_LEUQ); 1149 haddr = cpu_mmu_lookup(env, addr, oi, ra, MMU_DATA_STORE); 1150 stq_le_p(haddr, val); 1151 clear_helper_retaddr(); 1152 qemu_plugin_vcpu_mem_cb(env_cpu(env), addr, oi, QEMU_PLUGIN_MEM_W); 1153 } 1154 1155 void cpu_st16_be_mmu(CPUArchState *env, abi_ptr addr, 1156 Int128 val, MemOpIdx oi, uintptr_t ra) 1157 { 1158 void *haddr; 1159 1160 validate_memop(oi, MO_128 | MO_BE); 1161 haddr = cpu_mmu_lookup(env, addr, oi, ra, MMU_DATA_STORE); 1162 if (!HOST_BIG_ENDIAN) { 1163 val = bswap128(val); 1164 } 1165 memcpy(haddr, &val, 16); 1166 clear_helper_retaddr(); 1167 qemu_plugin_vcpu_mem_cb(env_cpu(env), addr, oi, QEMU_PLUGIN_MEM_W); 1168 } 1169 1170 void cpu_st16_le_mmu(CPUArchState *env, abi_ptr addr, 1171 Int128 val, MemOpIdx oi, uintptr_t ra) 1172 { 1173 void *haddr; 1174 1175 validate_memop(oi, MO_128 | MO_LE); 1176 haddr = cpu_mmu_lookup(env, addr, oi, ra, MMU_DATA_STORE); 1177 if (HOST_BIG_ENDIAN) { 1178 val = bswap128(val); 1179 } 1180 memcpy(haddr, &val, 16); 1181 clear_helper_retaddr(); 1182 qemu_plugin_vcpu_mem_cb(env_cpu(env), addr, oi, QEMU_PLUGIN_MEM_W); 1183 } 1184 1185 uint32_t cpu_ldub_code(CPUArchState *env, abi_ptr ptr) 1186 { 1187 uint32_t ret; 1188 1189 set_helper_retaddr(1); 1190 ret = ldub_p(g2h_untagged(ptr)); 1191 clear_helper_retaddr(); 1192 return ret; 1193 } 1194 1195 uint32_t cpu_lduw_code(CPUArchState *env, abi_ptr ptr) 1196 { 1197 uint32_t ret; 1198 1199 set_helper_retaddr(1); 1200 ret = lduw_p(g2h_untagged(ptr)); 1201 clear_helper_retaddr(); 1202 return ret; 1203 } 1204 1205 uint32_t cpu_ldl_code(CPUArchState *env, abi_ptr ptr) 1206 { 1207 uint32_t ret; 1208 1209 set_helper_retaddr(1); 1210 ret = ldl_p(g2h_untagged(ptr)); 1211 clear_helper_retaddr(); 1212 return ret; 1213 } 1214 1215 uint64_t cpu_ldq_code(CPUArchState *env, abi_ptr ptr) 1216 { 1217 uint64_t ret; 1218 1219 set_helper_retaddr(1); 1220 ret = ldq_p(g2h_untagged(ptr)); 1221 clear_helper_retaddr(); 1222 return ret; 1223 } 1224 1225 #include "ldst_common.c.inc" 1226 1227 /* 1228 * Do not allow unaligned operations to proceed. Return the host address. 1229 * 1230 * @prot may be PAGE_READ, PAGE_WRITE, or PAGE_READ|PAGE_WRITE. 1231 */ 1232 static void *atomic_mmu_lookup(CPUArchState *env, target_ulong addr, 1233 MemOpIdx oi, int size, int prot, 1234 uintptr_t retaddr) 1235 { 1236 MemOp mop = get_memop(oi); 1237 int a_bits = get_alignment_bits(mop); 1238 void *ret; 1239 1240 /* Enforce guest required alignment. */ 1241 if (unlikely(addr & ((1 << a_bits) - 1))) { 1242 MMUAccessType t = prot == PAGE_READ ? MMU_DATA_LOAD : MMU_DATA_STORE; 1243 cpu_loop_exit_sigbus(env_cpu(env), addr, t, retaddr); 1244 } 1245 1246 /* Enforce qemu required alignment. */ 1247 if (unlikely(addr & (size - 1))) { 1248 cpu_loop_exit_atomic(env_cpu(env), retaddr); 1249 } 1250 1251 ret = g2h(env_cpu(env), addr); 1252 set_helper_retaddr(retaddr); 1253 return ret; 1254 } 1255 1256 #include "atomic_common.c.inc" 1257 1258 /* 1259 * First set of functions passes in OI and RETADDR. 1260 * This makes them callable from other helpers. 1261 */ 1262 1263 #define ATOMIC_NAME(X) \ 1264 glue(glue(glue(cpu_atomic_ ## X, SUFFIX), END), _mmu) 1265 #define ATOMIC_MMU_CLEANUP do { clear_helper_retaddr(); } while (0) 1266 1267 #define DATA_SIZE 1 1268 #include "atomic_template.h" 1269 1270 #define DATA_SIZE 2 1271 #include "atomic_template.h" 1272 1273 #define DATA_SIZE 4 1274 #include "atomic_template.h" 1275 1276 #ifdef CONFIG_ATOMIC64 1277 #define DATA_SIZE 8 1278 #include "atomic_template.h" 1279 #endif 1280 1281 #if HAVE_ATOMIC128 || HAVE_CMPXCHG128 1282 #define DATA_SIZE 16 1283 #include "atomic_template.h" 1284 #endif 1285