2 * Memory tagging, basic fail cases, synchronous signals.
4 * Copyright (c) 2021 Linaro Ltd
5 * SPDX-License-Identifier: GPL-2.0-or-later
10 void pass(int sig
, siginfo_t
*info
, void *uc
)
12 assert(info
->si_code
== SEGV_MTESERR
);
16 int main(int ac
, char **av
)
22 enable_mte(PR_MTE_TCF_SYNC
);
23 p0
= alloc_mte_mem(sizeof(*p0
));
25 /* Create two differently tagged pointers. */
26 asm("irg %0,%1,%2" : "=r"(p1
) : "r"(p0
), "r"(excl
));
27 asm("gmi %0,%1,%0" : "+r"(excl
) : "r" (p1
));
29 asm("irg %0,%1,%2" : "=r"(p2
) : "r"(p0
), "r"(excl
));
32 /* Store the tag from the first pointer. */
33 asm("stg %0, [%0]" : : "r"(p1
));
37 memset(&sa
, 0, sizeof(sa
));
38 sa
.sa_sigaction
= pass
;
39 sa
.sa_flags
= SA_SIGINFO
;
40 sigaction(SIGSEGV
, &sa
, NULL
);