1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059
|
/*--------------------------------------------------------------------*/
/*--- Platform-specific syscalls stuff. syswrap-arm64-freebsd.c ---*/
/*--------------------------------------------------------------------*/
/*
This file is part of Valgrind, a dynamic binary instrumentation
framework.
Copyright (C) 2024 Paul Floyd
pjfloyd@wanadoo.fr
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, see <http://www.gnu.org/licenses/>.
The GNU General Public License is contained in the file COPYING.
*/
/*
* This port of Valgrind was done in the first quarter of 2024
* The FreeBSD platforms supported at that time were
* 13.3-RELEASE - not tested but should work
* 14.0-RELEASE - the platform used for porting
* 15.0-CURRENT - tested and should work
*
* Old syscalls that are specific releases are not handled. In the
* unlikely event that they are ever needed they can probably just be
* copied from the amd64 implementation. The first FreeBSD version with
* arm64 support was 11.0-RELEASE
*/
#if defined(VGP_arm64_freebsd)
#include "pub_core_aspacemgr.h"
#include "pub_core_basics.h"
#include "pub_core_debuglog.h"
#include "pub_core_libcassert.h"
#include "pub_core_libcbase.h"
#include "pub_core_libcprint.h"
#include "pub_core_libcproc.h"
#include "pub_core_libcsignal.h"
#include "pub_core_machine.h"
#include "pub_core_options.h"
#include "pub_core_scheduler.h"
#include "pub_core_sigframe.h"
#include "pub_core_signals.h"
#include "pub_core_stacks.h" // VG_(register_stack)
#include "pub_core_syscall.h"
#include "pub_core_syswrap.h"
#include "pub_core_threadstate.h"
#include "pub_core_tooliface.h"
#include "pub_core_vki.h"
#include "pub_core_vkiscnums.h"
#include "priv_syswrap-freebsd.h" /* for decls of freebsd-ish wrappers */
#include "priv_syswrap-generic.h" /* for decls of generic wrappers */
#include "priv_syswrap-main.h"
#include "priv_types_n_macros.h"
/* ---------------------------------------------------------------------
clone() handling
------------------------------------------------------------------ */
/* Call f(arg1), but first switch stacks, using 'stack' as the new
stack, and use 'retaddr' as f's return-to address. Also, clear all
the integer registers before entering f. */
__attribute__((noreturn)) void ML_(call_on_new_stack_0_1)(Addr stack,
Addr retaddr,
void (*f)(Word),
Word arg1);
// r0 = stack
// r1 = retaddr
// r2 = f
// r3 = arg1
asm(
".text\n"
".globl vgModuleLocal_call_on_new_stack_0_1\n"
"vgModuleLocal_call_on_new_stack_0_1:\n"
" mov sp, x0\n\t" /* Stack pointer */
" mov x30, x1\n\t" /* Return address (x30 is LR) */
" mov x0, x3\n\t" /* First argument */
" mov x9, x2\n\t" /* 'f': x9 won't be zeroed at start of f. Oh well. */
" mov x1, #0\n\t" /* Clear our GPRs */
" mov x2, #0\n\t"
" mov x3, #0\n\t"
" mov x4, #0\n\t"
" mov x5, #0\n\t"
" mov x6, #0\n\t"
" mov x7, #0\n\t"
" mov x8, #0\n\t"
/* don't zero out x9 */
" mov x10, #0\n\t"
" mov x11, #0\n\t"
" mov x12, #0\n\t"
" mov x13, #0\n\t"
" mov x14, #0\n\t"
" mov x15, #0\n\t"
" mov x16, #0\n\t"
" mov x17, #0\n\t"
/* " mov x18, #0\n\t"*/
" mov x19, #0\n\t"
" mov x20, #0\n\t"
" mov x21, #0\n\t"
" mov x22, #0\n\t"
" mov x23, #0\n\t"
" mov x24, #0\n\t"
" mov x25, #0\n\t"
" mov x26, #0\n\t"
" mov x27, #0\n\t"
" mov x28, #0\n\t"
" mov x29, sp\n\t" /* FP = SP, in the absence of better suggestions */
" br x9\n\t"
/* " ret x30\n" */ // jump to f
" udf #0\n" // should never get here
".previous\n");
/* ---------------------------------------------------------------------
More thread stuff
------------------------------------------------------------------ */
void VG_(cleanup_thread)(ThreadArchState* arch) {}
/* ---------------------------------------------------------------------
PRE/POST wrappers for amd64/FreeBSD-specific syscalls
------------------------------------------------------------------ */
#define PRE(name) DEFN_PRE_TEMPLATE(freebsd, name)
#define POST(name) DEFN_POST_TEMPLATE(freebsd, name)
// SYS_sysarch 165
// int sysarch(int number, void *args);
PRE(sys_sysarch)
{
PRINT("sys_sysarch ( %" FMT_REGWORD "u, %#" FMT_REGWORD "x )", ARG1, ARG2);
PRE_REG_READ2(int, "sysarch", int, number, void*, args);
// returns ENOTSUP on arm64
}
POST(sys_sysarch) {}
// SYS_brk 17
// void *break(char *nsize);
PRE(sys_brk)
{
PRINT("sys_brk ( %#" FMT_REGWORD "x )", ARG1);
// same name as generic rather than the same name as
// FreeBSD syscalls.master
PRE_REG_READ1(void*, "brk", char*, end_data_segment);
}
// SYS_clock_getcpuclockid2 247
// no manpage for this, from syscalls.master
// int clock_getcpuclockid2(id_t id, int which, _Out_ clockid_t *clock_id);
PRE(sys_clock_getcpuclockid2)
{
PRINT("sys_clock_getcpuclockid2( %" FMT_REGWORD "d, %" FMT_REGWORD
"d, %#" FMT_REGWORD "x )",
SARG1, SARG2, ARG3);
PRE_REG_READ3(int, "clock_getcpuclockid2", id_t, id, int, len, clockid_t*,
clock_id);
PRE_MEM_WRITE("clock_getcpuclockid2(clock_id)", ARG3, sizeof(vki_clockid_t));
}
// SYS_rfork 251
// pid_t rfork(int flags);
PRE(sys_rfork)
{
PRINT("sys_rfork ( %#" FMT_REGWORD "x )", ARG1);
PRE_REG_READ1(pid_t, "rfork", int, flags);
VG_(message)(Vg_UserMsg, "warning: rfork() not implemented\n");
if ((UInt)ARG1 == VKI_RFSPAWN) {
// posix_spawn uses RFSPAWN and it will fall back to vfork
// if it sees EINVAL
SET_STATUS_Failure(VKI_EINVAL);
} else {
SET_STATUS_Failure(VKI_ENOSYS);
}
}
// SYS_preadv 289
// ssize_t preadv(int fd, const struct iovec *iov, int iovcnt, off_t offset);
PRE(sys_preadv)
{
Int i;
struct vki_iovec* vec;
char buf[sizeof("preadv(iov[])") + 11];
*flags |= SfMayBlock;
PRINT("sys_preadv ( %" FMT_REGWORD "d, %#" FMT_REGWORD "x, %" FMT_REGWORD
"d, %" FMT_REGWORD "d )",
SARG1, ARG2, SARG3, SARG4);
PRE_REG_READ4(ssize_t, "preadv", int, fd, const struct iovec*, iov, int,
iovcnt, vki_off_t, offset);
if (!ML_(fd_allowed)(ARG1, "preadv", tid, False)) {
SET_STATUS_Failure(VKI_EBADF);
} else {
if ((Int)ARG3 > 0) {
PRE_MEM_READ("preadv(iov)", ARG2, ARG3 * sizeof(struct vki_iovec));
}
if (ML_(safe_to_deref)((struct vki_iovec*)ARG2,
ARG3 * sizeof(struct vki_iovec))) {
vec = (struct vki_iovec*)(Addr)ARG2;
for (i = 0; i < (Int)ARG3; i++) {
VG_(sprintf)(buf, "preadv(iov[%d])", i);
PRE_MEM_WRITE(buf, (Addr)vec[i].iov_base, vec[i].iov_len);
}
}
}
}
POST(sys_preadv)
{
vg_assert(SUCCESS);
if (RES > 0) {
Int i;
struct vki_iovec* vec = (struct vki_iovec*)(Addr)ARG2;
Int remains = RES;
/* RES holds the number of bytes read. */
for (i = 0; i < (Int)ARG3; i++) {
Int nReadThisBuf = vec[i].iov_len;
if (nReadThisBuf > remains) {
nReadThisBuf = remains;
}
POST_MEM_WRITE((Addr)vec[i].iov_base, nReadThisBuf);
remains -= nReadThisBuf;
if (remains < 0) {
VG_(core_panic)("preadv: remains < 0");
}
}
}
}
// SYS_pwritev 290
// ssize_t pwritev(int fd, const struct iovec *iov, int iovcnt, off_t offset);
PRE(sys_pwritev)
{
Int i;
struct vki_iovec* vec;
char buf[sizeof("pwritev(iov[])") + 11];
*flags |= SfMayBlock;
PRINT("sys_pwritev ( %" FMT_REGWORD "d, %#" FMT_REGWORD "x, %" FMT_REGWORD
"d, %" FMT_REGWORD "d )",
SARG1, ARG2, SARG3, SARG4);
PRE_REG_READ4(ssize_t, "pwritev", int, fd, const struct iovec*, iov, int,
iovcnt, vki_off_t, offset);
if (!ML_(fd_allowed)(ARG1, "pwritev", tid, False)) {
SET_STATUS_Failure(VKI_EBADF);
} else {
if ((Int)ARG3 >= 0) {
PRE_MEM_READ("pwritev(vector)", ARG2, ARG3 * sizeof(struct vki_iovec));
}
if (ML_(safe_to_deref)((struct vki_iovec*)ARG2,
ARG3 * sizeof(struct vki_iovec))) {
vec = (struct vki_iovec*)(Addr)ARG2;
for (i = 0; i < (Int)ARG3; i++) {
VG_(sprintf)(buf, "pwritev(iov[%d])", i);
PRE_MEM_READ(buf, (Addr)vec[i].iov_base, vec[i].iov_len);
}
}
}
}
// SYS_sendfile 393
// int sendfile(int fd, int s, off_t offset, size_t nbytes,
// struct sf_hdtr *hdtr, off_t *sbytes, int flags);
PRE(sys_sendfile)
{
*flags |= SfMayBlock;
PRINT("sys_sendfile ( %" FMT_REGWORD "d, %" FMT_REGWORD
"d, %lu, %" FMT_REGWORD "u, %#" FMT_REGWORD "x, %#" FMT_REGWORD
"x, %" FMT_REGWORD "d )",
SARG1, SARG2, ARG3, ARG4, ARG5, ARG6, SARG7);
PRE_REG_READ7(int, "sendfile", int, fd, int, s, vki_off_t, offset, size_t,
nbytes, void*, hdtr, vki_off_t*, sbytes, int, flags);
if (ARG5 != 0) {
PRE_MEM_READ("sendfile(hdtr)", ARG5, sizeof(struct vki_sf_hdtr));
}
if (ARG6 != 0) {
PRE_MEM_WRITE("sendfile(sbytes)", ARG6, sizeof(vki_off_t));
}
}
POST(sys_sendfile)
{
if (ARG6 != 0) {
POST_MEM_WRITE(ARG6, sizeof(vki_off_t));
}
}
// SYS_sigreturn 417
// int sigreturn(const ucontext_t *scp);
PRE(sys_sigreturn)
{
PRINT("sys_sigreturn ( %#" FMT_REGWORD "x )", ARG1);
PRE_REG_READ1(int, "sigreturn", struct vki_ucontext*, scp);
PRE_MEM_READ("sigreturn(scp)", ARG1, sizeof(struct vki_ucontext));
PRE_MEM_WRITE("sigreturn(scp)", ARG1, sizeof(struct vki_ucontext));
}
static void restore_mcontext(ThreadState* tst, struct vki_mcontext* sc)
{
tst->arch.vex.guest_X0 = sc->mc_gpregs.gp_x[0];
tst->arch.vex.guest_X1 = sc->mc_gpregs.gp_x[1];
tst->arch.vex.guest_X2 = sc->mc_gpregs.gp_x[2];
tst->arch.vex.guest_X3 = sc->mc_gpregs.gp_x[3];
tst->arch.vex.guest_X4 = sc->mc_gpregs.gp_x[4];
tst->arch.vex.guest_X5 = sc->mc_gpregs.gp_x[5];
tst->arch.vex.guest_X6 = sc->mc_gpregs.gp_x[6];
tst->arch.vex.guest_X7 = sc->mc_gpregs.gp_x[7];
tst->arch.vex.guest_X8 = sc->mc_gpregs.gp_x[8];
tst->arch.vex.guest_X9 = sc->mc_gpregs.gp_x[9];
tst->arch.vex.guest_X10 = sc->mc_gpregs.gp_x[10];
tst->arch.vex.guest_X11 = sc->mc_gpregs.gp_x[11];
tst->arch.vex.guest_X12 = sc->mc_gpregs.gp_x[12];
tst->arch.vex.guest_X13 = sc->mc_gpregs.gp_x[13];
tst->arch.vex.guest_X14 = sc->mc_gpregs.gp_x[14];
tst->arch.vex.guest_X15 = sc->mc_gpregs.gp_x[15];
tst->arch.vex.guest_X16 = sc->mc_gpregs.gp_x[16];
tst->arch.vex.guest_X17 = sc->mc_gpregs.gp_x[17];
tst->arch.vex.guest_X18 = sc->mc_gpregs.gp_x[18];
tst->arch.vex.guest_X19 = sc->mc_gpregs.gp_x[19];
tst->arch.vex.guest_X20 = sc->mc_gpregs.gp_x[20];
tst->arch.vex.guest_X21 = sc->mc_gpregs.gp_x[21];
tst->arch.vex.guest_X22 = sc->mc_gpregs.gp_x[22];
tst->arch.vex.guest_X23 = sc->mc_gpregs.gp_x[23];
tst->arch.vex.guest_X24 = sc->mc_gpregs.gp_x[24];
tst->arch.vex.guest_X25 = sc->mc_gpregs.gp_x[25];
tst->arch.vex.guest_X26 = sc->mc_gpregs.gp_x[26];
tst->arch.vex.guest_X27 = sc->mc_gpregs.gp_x[27];
tst->arch.vex.guest_X28 = sc->mc_gpregs.gp_x[28];
tst->arch.vex.guest_X29 = sc->mc_gpregs.gp_x[29];
tst->arch.vex.guest_X30 = sc->mc_gpregs.gp_lr;
tst->arch.vex.guest_XSP = sc->mc_gpregs.gp_sp;
tst->arch.vex.guest_PC = sc->mc_gpregs.gp_elr;
/*
* XXX: missing support for other flags.
*/
if (sc->mc_flags & VKI_PSR_C)
LibVEX_GuestARM64_put_nzcv_c(1, &tst->arch.vex);
else
LibVEX_GuestARM64_put_nzcv_c(0, &tst->arch.vex);
}
static void fill_mcontext(ThreadState* tst, struct vki_mcontext* sc)
{
sc->mc_gpregs.gp_x[0] = tst->arch.vex.guest_X0;
sc->mc_gpregs.gp_x[1] = tst->arch.vex.guest_X1;
sc->mc_gpregs.gp_x[2] = tst->arch.vex.guest_X2;
sc->mc_gpregs.gp_x[3] = tst->arch.vex.guest_X3;
sc->mc_gpregs.gp_x[4] = tst->arch.vex.guest_X4;
sc->mc_gpregs.gp_x[5] = tst->arch.vex.guest_X5;
sc->mc_gpregs.gp_x[6] = tst->arch.vex.guest_X6;
sc->mc_gpregs.gp_x[7] = tst->arch.vex.guest_X7;
sc->mc_gpregs.gp_x[8] = tst->arch.vex.guest_X8;
sc->mc_gpregs.gp_x[9] = tst->arch.vex.guest_X9;
sc->mc_gpregs.gp_x[10] = tst->arch.vex.guest_X10;
sc->mc_gpregs.gp_x[11] = tst->arch.vex.guest_X11;
sc->mc_gpregs.gp_x[12] = tst->arch.vex.guest_X12;
sc->mc_gpregs.gp_x[13] = tst->arch.vex.guest_X13;
sc->mc_gpregs.gp_x[14] = tst->arch.vex.guest_X14;
sc->mc_gpregs.gp_x[15] = tst->arch.vex.guest_X15;
sc->mc_gpregs.gp_x[16] = tst->arch.vex.guest_X16;
sc->mc_gpregs.gp_x[17] = tst->arch.vex.guest_X17;
sc->mc_gpregs.gp_x[18] = tst->arch.vex.guest_X18;
sc->mc_gpregs.gp_x[19] = tst->arch.vex.guest_X19;
sc->mc_gpregs.gp_x[20] = tst->arch.vex.guest_X20;
sc->mc_gpregs.gp_x[21] = tst->arch.vex.guest_X21;
sc->mc_gpregs.gp_x[22] = tst->arch.vex.guest_X22;
sc->mc_gpregs.gp_x[23] = tst->arch.vex.guest_X23;
sc->mc_gpregs.gp_x[24] = tst->arch.vex.guest_X24;
sc->mc_gpregs.gp_x[25] = tst->arch.vex.guest_X25;
sc->mc_gpregs.gp_x[26] = tst->arch.vex.guest_X26;
sc->mc_gpregs.gp_x[27] = tst->arch.vex.guest_X27;
sc->mc_gpregs.gp_x[28] = tst->arch.vex.guest_X28;
sc->mc_gpregs.gp_x[29] = tst->arch.vex.guest_X29;
sc->mc_gpregs.gp_lr = tst->arch.vex.guest_X30;
sc->mc_gpregs.gp_sp = tst->arch.vex.guest_XSP;
sc->mc_gpregs.gp_elr = tst->arch.vex.guest_PC;
sc->mc_gpregs.gp_spsr = LibVEX_GuestARM64_get_nzcv(&tst->arch.vex);
// @todo PJF ARM64 floating point
// https://github.com/freebsd/freebsd-src/blob/main/sys/arm64/arm64/exec_machdep.c#L511
}
// SYS_getcontext 421
// int getcontext(ucontext_t *ucp);
PRE(sys_getcontext)
{
ThreadState* tst;
struct vki_ucontext* uc;
PRINT("sys_getcontext ( %#" FMT_REGWORD "x )", ARG1);
PRE_REG_READ1(int, "getcontext", struct vki_ucontext*, ucp);
PRE_MEM_WRITE("getcontext(ucp)", ARG1, sizeof(struct vki_ucontext));
uc = (struct vki_ucontext*)ARG1;
if (!ML_(safe_to_deref)(uc, sizeof(struct vki_ucontext))) {
SET_STATUS_Failure(VKI_EFAULT);
return;
}
tst = VG_(get_ThreadState)(tid);
fill_mcontext(tst, &uc->uc_mcontext);
uc->uc_mcontext.mc_gpregs.gp_x[0] = 0;
uc->uc_mcontext.mc_gpregs.gp_spsr &= ~VKI_PSR_C;
uc->uc_sigmask = tst->sig_mask;
VG_(memset)(uc->__spare__, 0, sizeof(uc->__spare__));
SET_STATUS_Success(0);
}
// SYS_setcontext 422
// int setcontext(const ucontext_t *ucp);
PRE(sys_setcontext)
{
ThreadState* tst;
struct vki_ucontext* uc;
PRINT("sys_setcontext ( %#" FMT_REGWORD "x )", ARG1);
PRE_REG_READ1(long, "setcontext", struct vki_ucontext*, ucp);
PRE_MEM_READ("setcontext(ucp)", ARG1, sizeof(struct vki_ucontext));
PRE_MEM_WRITE("setcontext(ucp)", ARG1, sizeof(struct vki_ucontext));
vg_assert(VG_(is_valid_tid)(tid));
vg_assert(tid >= 1 && tid < VG_N_THREADS);
vg_assert(VG_(is_running_thread)(tid));
tst = VG_(get_ThreadState)(tid);
uc = (struct vki_ucontext*)ARG1;
if (!ML_(safe_to_deref)(uc, sizeof(struct vki_ucontext)) /*|| uc->uc_mcontext.len != sizeof(uc->uc_mcontext)*/) {
SET_STATUS_Failure(VKI_EFAULT);
return;
}
restore_mcontext(tst, &uc->uc_mcontext);
tst->sig_mask = uc->uc_sigmask;
tst->tmp_sig_mask = uc->uc_sigmask;
/* Tell the driver not to update the guest state with the "result",
and set a bogus result to keep it happy. */
*flags |= SfNoWriteResult;
SET_STATUS_Success(0);
/* Check to see if some any signals arose as a result of this. */
*flags |= SfPollAfter;
}
// SYS_swapcontext 423
// int swapcontext(ucontext_t *oucp, const ucontext_t *ucp);
PRE(sys_swapcontext)
{
struct vki_ucontext* ucp;
struct vki_ucontext* oucp;
ThreadState* tst;
PRINT("sys_swapcontext ( %#" FMT_REGWORD "x, %#" FMT_REGWORD "x )", ARG1,
ARG2);
PRE_REG_READ2(long, "swapcontext", struct vki_ucontext*, oucp,
struct vki_ucontext*, ucp);
PRE_MEM_READ("swapcontext(ucp)", ARG2, sizeof(struct vki_ucontext));
PRE_MEM_WRITE("swapcontext(oucp)", ARG1, sizeof(struct vki_ucontext));
oucp = (struct vki_ucontext*)ARG1;
ucp = (struct vki_ucontext*)ARG2;
if (!ML_(safe_to_deref)(oucp, sizeof(struct vki_ucontext)) ||
!ML_(safe_to_deref)(ucp, sizeof(struct vki_ucontext)) /*||
ucp->uc_mcontext.len != sizeof(ucp->uc_mcontext)*/) {
SET_STATUS_Failure(VKI_EINVAL);
return;
}
tst = VG_(get_ThreadState)(tid);
/*
* Save the context.
*/
fill_mcontext(tst, &oucp->uc_mcontext);
oucp->uc_mcontext.mc_gpregs.gp_x[0] = 0;
oucp->uc_mcontext.mc_gpregs.gp_x[1] = 0;
oucp->uc_mcontext.mc_gpregs.gp_spsr &= ~VKI_PSR_C;
oucp->uc_sigmask = tst->sig_mask;
VG_(memset)(oucp->__spare__, 0, sizeof(oucp->__spare__));
/*
* Switch to new one.
*/
restore_mcontext(tst, &ucp->uc_mcontext);
tst->sig_mask = ucp->uc_sigmask;
tst->tmp_sig_mask = ucp->uc_sigmask;
/* Tell the driver not to update the guest state with the "result",
and set a bogus result to keep it happy. */
*flags |= SfNoWriteResult;
SET_STATUS_Success(0);
/* Check to see if some any signals arose as a result of this. */
*flags |= SfPollAfter;
}
// SYS_thr_new 455
// int thr_new(struct thr_param *param, int param_size);
PRE(sys_thr_new)
{
static const Bool debug = False;
ThreadId ctid = VG_(alloc_ThreadState)();
ThreadState* ptst = VG_(get_ThreadState)(tid);
ThreadState* ctst = VG_(get_ThreadState)(ctid);
SysRes res;
vki_sigset_t blockall;
vki_sigset_t savedmask;
struct vki_thr_param tp;
Addr stk;
PRINT("thr_new ( %#" FMT_REGWORD "x, %" FMT_REGWORD "u )", ARG1, ARG2);
PRE_REG_READ2(int, "thr_new", struct thr_param*, param, int, param_size);
PRE_MEM_READ("thr_new(param)", ARG1, offsetof(struct vki_thr_param, spare));
if (!ML_(safe_to_deref)((void*)ARG1,
offsetof(struct vki_thr_param, spare))) {
SET_STATUS_Failure(VKI_EFAULT);
return;
}
VG_(memset)(&tp, 0, sizeof(tp));
VG_(memcpy)(&tp, (void*)ARG1, offsetof(struct vki_thr_param, spare));
PRE_MEM_WRITE("thr_new(parent_tidptr)", (Addr)tp.parent_tid, sizeof(long));
PRE_MEM_WRITE("thr_new(child_tidptr)", (Addr)tp.child_tid, sizeof(long));
VG_(sigfillset)(&blockall);
vg_assert(VG_(is_running_thread)(tid));
vg_assert(VG_(is_valid_tid)(ctid));
/* Copy register state
On linux, both parent and child return to the same place, and the code
following the clone syscall works out which is which, so we
don't need to worry about it.
On FreeBSD, thr_new arranges a direct call. We don't actually need any
of this gunk.
The parent gets the child's new tid returned from clone, but the
child gets 0.
If the clone call specifies a NULL rsp for the new thread, then
it actually gets a copy of the parent's rsp.
*/
/* We inherit our parent's guest state. */
ctst->arch.vex = ptst->arch.vex;
ctst->arch.vex_shadow1 = ptst->arch.vex_shadow1;
ctst->arch.vex_shadow2 = ptst->arch.vex_shadow2;
/* Make thr_new appear to have returned Success(0) in the
child. */
ctst->arch.vex.guest_X0 = 0;
ctst->arch.vex.guest_X1 = 0;
LibVEX_GuestARM64_put_nzcv_c(0, &ctst->arch.vex);
ctst->os_state.parent = tid;
/* inherit signal mask */
ctst->sig_mask = ptst->sig_mask;
ctst->tmp_sig_mask = ptst->sig_mask;
/* Linux has to guess, we don't */
ctst->client_stack_highest_byte = (Addr)tp.stack_base + tp.stack_size;
ctst->client_stack_szB = tp.stack_size;
ctst->os_state.stk_id = VG_(register_stack)(
(Addr)tp.stack_base, (Addr)tp.stack_base + tp.stack_size);
/* Assume the thr_new will succeed, and tell any tool that wants to
know that this thread has come into existence. If the thr_new
fails, we'll send out a ll_exit notification for it at the out:
label below, to clean up. */
VG_TRACK(pre_thread_ll_create, tid, ctid);
if (debug) {
VG_(printf)("clone child has SETTLS: tls at %#lx\n", (Addr)tp.tls_base);
}
ctst->arch.vex.guest_TPIDR_EL0 = (UWord)tp.tls_base;
tp.tls_base = 0; /* Don't have the kernel do it too */
/* start the thread with everything blocked */
VG_(sigprocmask)(VKI_SIG_SETMASK, &blockall, &savedmask);
/* Set the client state for scheduler to run libthr's trampoline */
ctst->arch.vex.guest_X0 = (Addr)tp.arg;
/* XXX: align on 16-byte boundary? */
ctst->arch.vex.guest_XSP = (Addr)tp.stack_base + tp.stack_size - 8;
ctst->arch.vex.guest_PC = (Addr)tp.start_func;
/* But this is for thr_new() to run valgrind's trampoline */
tp.start_func = (void*)ML_(start_thread_NORETURN);
tp.arg = &VG_(threads)[ctid];
/* And valgrind's trampoline on its own stack */
stk = ML_(allocstack)(ctid);
if (stk == (Addr)NULL) {
res = VG_(mk_SysRes_Error)(VKI_ENOMEM);
goto fail;
}
tp.stack_base = (void*)ctst->os_state.valgrind_stack_base;
tp.stack_size = (Addr)stk - (Addr)tp.stack_base;
/* Create the new thread */
res = VG_(do_syscall2)(__NR_thr_new, (UWord)&tp, sizeof(tp));
VG_(sigprocmask)(VKI_SIG_SETMASK, &savedmask, NULL);
fail:
if (sr_isError(res)) {
/* thr_new failed */
VG_(cleanup_thread)(&ctst->arch);
ctst->status = VgTs_Empty;
/* oops. Better tell the tool the thread exited in a hurry :-) */
VG_TRACK(pre_thread_ll_exit, ctid);
} else {
POST_MEM_WRITE((Addr)tp.parent_tid, sizeof(long));
POST_MEM_WRITE((Addr)tp.child_tid, sizeof(long));
/* Thread creation was successful; let the child have the chance
to run */
*flags |= SfYieldAfter;
}
/* "Complete" the syscall so that the wrapper doesn't call the kernel again.
*/
SET_STATUS_from_SysRes(res);
}
// SYS_pread 475
// ssize_t pread(int fd, void *buf, size_t nbytes, off_t offset);
PRE(sys_pread)
{
*flags |= SfMayBlock;
PRINT("sys_pread ( %" FMT_REGWORD "u, %#" FMT_REGWORD "x, %" FMT_REGWORD
"u, %" FMT_REGWORD "u )",
ARG1, ARG2, ARG3, ARG4);
PRE_REG_READ4(ssize_t, "pread", unsigned int, fd, char*, buf, vki_size_t,
count, unsigned long, off);
if (!ML_(fd_allowed)(ARG1, "read", tid, False)) {
SET_STATUS_Failure(VKI_EBADF);
} else {
PRE_MEM_WRITE("pread(buf)", ARG2, ARG3);
}
}
POST(sys_pread)
{
vg_assert(SUCCESS);
POST_MEM_WRITE(ARG2, RES);
}
// SYS_pwrite 476
// ssize_t pwrite(int fd, const void *buf, size_t nbytes, off_t offset);
PRE(sys_pwrite)
{
Bool ok;
*flags |= SfMayBlock;
PRINT("sys_pwrite ( %" FMT_REGWORD "u, %#" FMT_REGWORD "x, %" FMT_REGWORD
"u, %" FMT_REGWORD "u )",
ARG1, ARG2, ARG3, ARG4);
PRE_REG_READ4(ssize_t, "pwrite", int, fd, const char*, buf, vki_size_t,
nbytes, vki_off_t, offset);
/* check to see if it is allowed. If not, try for an exemption from
--sim-hints=enable-outer (used for self hosting). */
ok = ML_(fd_allowed)(ARG1, "pwrite", tid, False);
if (!ok && ARG1 == 2 /*stderr*/
&& SimHintiS(SimHint_enable_outer, VG_(clo_sim_hints)))
ok = True;
if (!ok) {
SET_STATUS_Failure(VKI_EBADF);
} else {
PRE_MEM_READ("pwrite(buf)", ARG2, ARG3);
}
}
// SYS_mmap 477
/* FreeBSD-7 introduces a "regular" version of mmap etc. */
// void * mmap(void *addr, size_t len, int prot, int flags, int fd, off_t
// offset);
PRE(sys_mmap)
{
SysRes r;
PRINT("sys_mmap ( %#" FMT_REGWORD "x, %" FMT_REGWORD "u, %" FMT_REGWORD
"u, %" FMT_REGWORD "u, %" FMT_REGWORD "u, 0x%" FMT_REGWORD "x)",
ARG1, (UWord)ARG2, ARG3, ARG4, ARG5, ARG6);
PRE_REG_READ6(void*, "mmap", void*, addr, size_t, len, int, prot, int, flags,
int, fd, off_t, offset);
r = ML_(generic_PRE_sys_mmap)(tid, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6);
SET_STATUS_from_SysRes(r);
}
// SYS_lseek 478
// off_t lseek(int fildes, off_t offset, int whence);
PRE(sys_lseek)
{
PRINT("sys_lseek ( %" FMT_REGWORD "u, 0x%" FMT_REGWORD "x, %" FMT_REGWORD
"u )",
ARG1, ARG2, ARG3);
PRE_REG_READ3(long, "lseek", unsigned int, fd, unsigned long, offset,
unsigned int, whence);
}
// SYS_truncate 479
// int truncate(const char *path, off_t length);
PRE(sys_truncate)
{
*flags |= SfMayBlock;
PRINT("sys_truncate ( %#" FMT_REGWORD "x(%s), %" FMT_REGWORD "u )", ARG1,
(char*)ARG1, ARG2);
PRE_REG_READ2(long, "truncate", const char*, path, unsigned long, length);
PRE_MEM_RASCIIZ("truncate(path)", ARG1);
}
// SYS_ftruncate 480
// int ftruncate(int fd, off_t length);
PRE(sys_ftruncate)
{
*flags |= SfMayBlock;
PRINT("sys_ftruncate ( %" FMT_REGWORD "u, %" FMT_REGWORD "u )", ARG1, ARG2);
PRE_REG_READ2(long, "ftruncate", unsigned int, fd, unsigned long, length);
}
// SYS_cpuset_setid 485
// int cpuset_setid(cpuwhich_t which, id_t id, cpusetid_t setid);
PRE(sys_cpuset_setid)
{
PRINT("sys_cpuset_setid ( %" FMT_REGWORD "d, %" FMT_REGWORD
"d, %#" FMT_REGWORD "x )",
SARG1, SARG2, ARG3);
PRE_REG_READ3(int, "cpuset_setid", vki_cpuwhich_t, which, vki_id_t, id,
vki_cpusetid_t*, setid);
}
// SYS_cpuset_getid 486
// int cpuset_getid(cpulevel_t level, cpuwhich_t which, id_t id,
// cpusetid_t *setid);
PRE(sys_cpuset_getid)
{
PRINT("sys_cpuset_getid ( %" FMT_REGWORD "d, %" FMT_REGWORD
"d, %" FMT_REGWORD "d, %#" FMT_REGWORD "x )",
SARG1, SARG2, SARG3, ARG4);
PRE_REG_READ4(int, "cpuset_getid", vki_cpulevel_t, level, vki_cpuwhich_t,
which, vki_id_t, id, vki_cpusetid_t, setid);
PRE_MEM_WRITE("cpuset_getid(setid)", ARG4, sizeof(vki_cpusetid_t));
}
POST(sys_cpuset_getid) { POST_MEM_WRITE(ARG4, sizeof(vki_cpusetid_t)); }
// SYS_cpuset_getaffinity 487
// int cpuset_getaffinity(cpulevel_t level, cpuwhich_t which, id_t id,
// size_t setsize, cpuset_t *mask);
PRE(sys_cpuset_getaffinity)
{
PRINT("sys_cpuset_getaffinity ( %" FMT_REGWORD "u, %" FMT_REGWORD
"u, %" FMT_REGWORD "d, %" FMT_REGWORD "u, %#" FMT_REGWORD "x )",
ARG1, ARG2, SARG3, ARG4, ARG5);
PRE_REG_READ5(int, "cpuset_getaffinity", vki_cpulevel_t, level,
vki_cpuwhich_t, which, vki_id_t, id, size_t, setsize, void*,
mask);
PRE_MEM_WRITE("cpuset_getaffinity", ARG5, ARG4);
}
POST(sys_cpuset_getaffinity)
{
vg_assert(SUCCESS);
if (RES == 0)
POST_MEM_WRITE(ARG5, ARG4);
}
// SYS_cpuset_setaffinity 488
// int cpuset_setaffinity(cpulevel_t level, cpuwhich_t which, id_t id,
// size_t setsize, const cpuset_t *mask);
PRE(sys_cpuset_setaffinity)
{
PRINT("sys_cpuset_setaffinity ( %" FMT_REGWORD "u, %" FMT_REGWORD
"u, %" FMT_REGWORD "d, %" FMT_REGWORD "u, %#" FMT_REGWORD "x )",
ARG1, ARG2, SARG3, ARG4, ARG5);
PRE_REG_READ5(int, "cpuset_setaffinity", vki_cpulevel_t, level,
vki_cpuwhich_t, which, vki_id_t, id, size_t, setsize, void*,
mask);
PRE_MEM_READ("cpuset_setaffinity", ARG5, ARG4);
}
// SYS_posix_fallocate 530
// int posix_fallocate(int fd, off_t offset, off_t len);
PRE(sys_posix_fallocate)
{
PRINT("sys_posix_fallocate ( %" FMT_REGWORD "d, %" FMT_REGWORD
"u, %" FMT_REGWORD "u )",
SARG1, ARG2, ARG3);
PRE_REG_READ3(long, "posix_fallocate", int, fd, vki_off_t, offset, vki_off_t,
len);
}
// SYS_posix_fadvise 531
// int posix_fadvise(int fd, off_t offset, off_t len, int advice);
PRE(sys_posix_fadvise)
{
PRINT("sys_posix_fadvise ( %" FMT_REGWORD "d, %" FMT_REGWORD
"u, %" FMT_REGWORD "u, %" FMT_REGWORD "d )",
SARG1, ARG2, ARG3, SARG4);
PRE_REG_READ4(long, "posix_fadvise", int, fd, off_t, offset, off_t, len, int,
advice);
// @todo PJF advice can be 0 to 5 inclusive
}
// SYS_wait6 532
// pid_t wait6(idtype_t idtype, id_t id, int *status, int options,
// struct __wrusage *wrusage, siginfo_t *infop);
PRE(sys_wait6)
{
PRINT("sys_wait6 ( %" FMT_REGWORD "d, %" FMT_REGWORD "d, %#" FMT_REGWORD
"x, %" FMT_REGWORD "d, %#" FMT_REGWORD "x, %#" FMT_REGWORD "x )",
SARG1, SARG2, ARG3, SARG4, ARG5, ARG6);
PRE_REG_READ6(pid_t, "wait6", vki_idtype_t, idtype, vki_id_t, id, int*,
status, int, options, struct vki___wrusage*, wrusage,
vki_siginfo_t*, infop);
PRE_MEM_WRITE("wait6(status)", ARG3, sizeof(int));
if (ARG5) {
PRE_MEM_WRITE("wait6(wrusage)", ARG5, sizeof(struct vki___wrusage));
}
if (ARG6) {
PRE_MEM_WRITE("wait6(infop)", ARG6, sizeof(vki_siginfo_t));
}
}
POST(sys_wait6)
{
POST_MEM_WRITE(ARG3, sizeof(int));
if (ARG5) {
POST_MEM_WRITE(ARG5, sizeof(struct vki___wrusage));
}
if (ARG6) {
POST_MEM_WRITE(ARG6, sizeof(vki_siginfo_t));
}
}
// SYS_procctl 544
// int procctl(idtype_t idtype, id_t id, int cmd, void *data);
PRE(sys_procctl)
{
PRINT("sys_procctl ( %" FMT_REGWORD "d, %" FMT_REGWORD "d, %" FMT_REGWORD
"d, %#" FMT_REGWORD "x )",
SARG1, SARG2, SARG3, ARG4);
PRE_REG_READ4(int, "procctl", vki_idtype_t, idtype, vki_id_t, id, int, cmd,
void*, data);
switch (ARG3) {
case VKI_PROC_ASLR_CTL:
case VKI_PROC_SPROTECT:
case VKI_PROC_TRACE_CTL:
case VKI_PROC_TRAPCAP_CTL:
case VKI_PROC_PDEATHSIG_CTL:
case VKI_PROC_STACKGAP_CTL:
case VKI_PROC_NO_NEW_PRIVS_CTL:
case VKI_PROC_WXMAP_CTL:
PRE_MEM_READ("procctl(data)", ARG4, sizeof(int));
break;
case VKI_PROC_REAP_STATUS:
PRE_MEM_READ("procctl(data)", ARG4,
sizeof(struct vki_procctl_reaper_status));
break;
case VKI_PROC_REAP_GETPIDS:
PRE_MEM_READ("procctl(data)", ARG4,
sizeof(struct vki_procctl_reaper_pids));
break;
case VKI_PROC_REAP_KILL:
/* The first three fields are reads
* int rk_sig;
* u_int rk_flags;
* pid_t rk_subtree;
*
* The last two fields are writes
* u_int rk_killed;
* pid_t rk_fpid;
*
* There is also a pad field
*/
PRE_MEM_READ("procctl(data)", ARG4,
sizeof(int) + sizeof(u_int) + sizeof(vki_pid_t));
PRE_MEM_WRITE("procctl(data)",
ARG4 + offsetof(struct vki_procctl_reaper_kill, rk_killed),
sizeof(u_int) + sizeof(vki_pid_t));
break;
case VKI_PROC_ASLR_STATUS:
case VKI_PROC_PDEATHSIG_STATUS:
case VKI_PROC_STACKGAP_STATUS:
case VKI_PROC_TRAPCAP_STATUS:
case VKI_PROC_TRACE_STATUS:
case VKI_PROC_NO_NEW_PRIVS_STATUS:
case VKI_PROC_WXMAP_STATUS:
PRE_MEM_WRITE("procctl(data)", ARG4, sizeof(int));
case VKI_PROC_REAP_ACQUIRE:
case VKI_PROC_REAP_RELEASE:
default:
break;
}
}
POST(sys_procctl)
{
switch (ARG3) {
case VKI_PROC_REAP_KILL:
POST_MEM_WRITE(ARG4 + offsetof(struct vki_procctl_reaper_kill, rk_killed),
sizeof(u_int) + sizeof(vki_pid_t));
break;
case VKI_PROC_ASLR_STATUS:
case VKI_PROC_PDEATHSIG_STATUS:
case VKI_PROC_STACKGAP_STATUS:
case VKI_PROC_TRAPCAP_STATUS:
case VKI_PROC_TRACE_STATUS:
case VKI_PROC_NO_NEW_PRIVS_STATUS:
case VKI_PROC_WXMAP_STATUS:
POST_MEM_WRITE(ARG4, sizeof(int));
default:
break;
}
}
// SYS_mknodat 559
// int mknodat(int fd, const char *path, mode_t mode, dev_t dev);
PRE(sys_mknodat)
{
PRINT("sys_mknodat ( %" FMT_REGWORD "u, %#" FMT_REGWORD
"x(%s), 0x%" FMT_REGWORD "x, 0x%" FMT_REGWORD "x )",
ARG1, ARG2, (char*)ARG2, ARG3, ARG4);
PRE_REG_READ4(long, "mknodat", int, fd, const char*, path, vki_mode_t, mode,
vki_dev_t, dev);
PRE_MEM_RASCIIZ("mknodat(pathname)", ARG2);
}
// SYS_cpuset_getdomain 561
// int cpuset_getdomain(cpulevel_t level, cpuwhich_t which, id_t id,
// size_t setsize, domainset_t *mask, int *policy);
PRE(sys_cpuset_getdomain)
{
PRINT("sys_cpuset_getdomain ( %" FMT_REGWORD "d, %" FMT_REGWORD
"d, %" FMT_REGWORD "d, %" FMT_REGWORD "u, %#" FMT_REGWORD
"x, %#" FMT_REGWORD "x )",
SARG1, SARG2, SARG3, ARG4, ARG5, ARG6);
PRE_REG_READ6(int, "cpuset_getdomain", cpulevel_t, level, cpuwhich_t, which,
id_t, id, size_t, setsize, vki_domainset_t*, mask, int*,
policy);
// man page says that setsize (ARG4) "is usually provided by calling
// sizeof(mask)"
PRE_MEM_WRITE("cpuset_getdomain(mask)", ARG5, ARG4);
PRE_MEM_WRITE("cpuset_getdomain(policy)", ARG6, sizeof(int));
}
POST(sys_cpuset_getdomain)
{
POST_MEM_WRITE(ARG5, ARG4);
POST_MEM_WRITE(ARG6, sizeof(int));
}
// SYS_cpuset_setdomain 562
// int cuset_setdomain(cpulevel_t level, cpuwhich_t which, id_t id,
// size_t setsize, const domainset_t *mask, int policy);
PRE(sys_cpuset_setdomain)
{
PRINT("sys_cpuget_getdomain ( %" FMT_REGWORD "d, %" FMT_REGWORD
"d, %" FMT_REGWORD "d, %" FMT_REGWORD "u, %#" FMT_REGWORD
"x, %" FMT_REGWORD "d )",
SARG1, SARG2, SARG3, ARG4, ARG5, SARG6);
PRE_REG_READ6(int, "cpuset_getdomain", cpulevel_t, level, cpuwhich_t, which,
id_t, id, size_t, setsize, vki_domainset_t*, mask, int,
policy);
// man page says that setsize (ARG4) "is usually provided by calling
// sizeof(mask)"
PRE_MEM_READ("cpuset_getdomain(mask)", ARG5, ARG4);
}
PRE(sys_fake_sigreturn)
{
ThreadState* tst;
struct vki_ucontext* uc;
ULong rflags;
PRINT("sys_sigreturn ( %#" FMT_REGWORD "x )", ARG1);
PRE_REG_READ1(long, "sigreturn", struct vki_ucontext*, scp);
PRE_MEM_READ("sigreturn(scp)", ARG1, sizeof(struct vki_ucontext));
PRE_MEM_WRITE("sigreturn(scp)", ARG1, sizeof(struct vki_ucontext));
vg_assert(VG_(is_valid_tid)(tid));
vg_assert(tid >= 1 && tid < VG_N_THREADS);
vg_assert(VG_(is_running_thread)(tid));
tst = VG_(get_ThreadState)(tid);
uc = (struct vki_ucontext*)ARG1;
if (uc == NULL) {
SET_STATUS_Failure(VKI_EINVAL);
return;
}
/* This is only so that the EIP is (might be) useful to report if
something goes wrong in the sigreturn */
ML_(fixup_guest_state_to_restart_syscall)(&tst->arch);
VG_(sigframe_destroy)(tid);
/* For unclear reasons, it appears we need the syscall to return
without changing %RAX. Since %RAX is the return value, and can
denote either success or failure, we must set up so that the
driver logic copies it back unchanged. Also, note %RAX is of
the guest registers written by VG_(sigframe_destroy). */
rflags = LibVEX_GuestARM64_get_nzcv(&tst->arch.vex);
SET_STATUS_from_SysRes(VG_(mk_SysRes_amd64_freebsd)(
tst->arch.vex.guest_X0, tst->arch.vex.guest_X1,
(rflags & VKI_PSR_C) != 0U ? True : False));
/*
* Signal handler might have changed the signal mask. Respect that.
*/
tst->sig_mask = uc->uc_sigmask;
tst->tmp_sig_mask = uc->uc_sigmask;
/* Tell the driver not to update the guest state with the "result",
and set a bogus result to keep it happy. */
*flags |= SfNoWriteResult;
SET_STATUS_Success(0);
/* Check to see if some any signals arose as a result of this. */
*flags |= SfPollAfter;
}
#undef PRE
#undef POST
#endif /* defined(VGP_arm64_freebsd) */
/*--------------------------------------------------------------------*/
/*--- end ---*/
/*--------------------------------------------------------------------*/
|