xref: /xnu-8796.141.3/bsd/dev/dtrace/scripts/ptrauth_arm64.d (revision 1b191cb58250d0705d8a51287127505aa4bc0789)
1*1b191cb5SApple OSS Distributions /*
2*1b191cb5SApple OSS Distributions  * Copyright (c) 2019 Apple Computer, Inc. All rights reserved.
3*1b191cb5SApple OSS Distributions  *
4*1b191cb5SApple OSS Distributions  * @APPLE_LICENSE_HEADER_START@
5*1b191cb5SApple OSS Distributions  *
6*1b191cb5SApple OSS Distributions  * The contents of this file constitute Original Code as defined in and
7*1b191cb5SApple OSS Distributions  * are subject to the Apple Public Source License Version 1.1 (the
8*1b191cb5SApple OSS Distributions  * "License").  You may not use this file except in compliance with the
9*1b191cb5SApple OSS Distributions  * License.  Please obtain a copy of the License at
10*1b191cb5SApple OSS Distributions  * http://www.apple.com/publicsource and read it before using this file.
11*1b191cb5SApple OSS Distributions  *
12*1b191cb5SApple OSS Distributions  * This Original Code and all software distributed under the License are
13*1b191cb5SApple OSS Distributions  * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14*1b191cb5SApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15*1b191cb5SApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16*1b191cb5SApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT.  Please see the
17*1b191cb5SApple OSS Distributions  * License for the specific language governing rights and limitations
18*1b191cb5SApple OSS Distributions  * under the License.
19*1b191cb5SApple OSS Distributions  *
20*1b191cb5SApple OSS Distributions  * @APPLE_LICENSE_HEADER_END@
21*1b191cb5SApple OSS Distributions  */
22*1b191cb5SApple OSS Distributions 
23*1b191cb5SApple OSS Distributions enum ptrauth_key {
24*1b191cb5SApple OSS Distributions   ptrauth_key_asia = 0,
25*1b191cb5SApple OSS Distributions   ptrauth_key_asib = 1,
26*1b191cb5SApple OSS Distributions   ptrauth_key_asda = 2,
27*1b191cb5SApple OSS Distributions   ptrauth_key_asdb = 3,
28*1b191cb5SApple OSS Distributions 
29*1b191cb5SApple OSS Distributions   /* A process-independent key which can be used to sign code pointers.
30*1b191cb5SApple OSS Distributions      Signing and authenticating with this key is a no-op in processes
31*1b191cb5SApple OSS Distributions      which disable ABI pointer authentication. */
32*1b191cb5SApple OSS Distributions   ptrauth_key_process_independent_code = ptrauth_key_asia,
33*1b191cb5SApple OSS Distributions 
34*1b191cb5SApple OSS Distributions   /* A process-specific key which can be used to sign code pointers.
35*1b191cb5SApple OSS Distributions      Signing and authenticating with this key is enforced even in processes
36*1b191cb5SApple OSS Distributions      which disable ABI pointer authentication. */
37*1b191cb5SApple OSS Distributions   ptrauth_key_process_dependent_code = ptrauth_key_asib,
38*1b191cb5SApple OSS Distributions 
39*1b191cb5SApple OSS Distributions   /* A process-independent key which can be used to sign data pointers.
40*1b191cb5SApple OSS Distributions      Signing and authenticating with this key is a no-op in processes
41*1b191cb5SApple OSS Distributions      which disable ABI pointer authentication. */
42*1b191cb5SApple OSS Distributions   ptrauth_key_process_independent_data = ptrauth_key_asda,
43*1b191cb5SApple OSS Distributions 
44*1b191cb5SApple OSS Distributions   /* A process-specific key which can be used to sign data pointers.
45*1b191cb5SApple OSS Distributions      Signing and authenticating with this key is a no-op in processes
46*1b191cb5SApple OSS Distributions      which disable ABI pointer authentication. */
47*1b191cb5SApple OSS Distributions   ptrauth_key_process_dependent_data = ptrauth_key_asdb,
48*1b191cb5SApple OSS Distributions 
49*1b191cb5SApple OSS Distributions   /* The key used to sign C function pointers.
50*1b191cb5SApple OSS Distributions      The extra data is always 0. */
51*1b191cb5SApple OSS Distributions   ptrauth_key_function_pointer = ptrauth_key_process_independent_code,
52*1b191cb5SApple OSS Distributions 
53*1b191cb5SApple OSS Distributions   /* The key used to sign return addresses on the stack.
54*1b191cb5SApple OSS Distributions      The extra data is based on the storage address of the return address.
55*1b191cb5SApple OSS Distributions      On ARM64, that is always the storage address of the return address plus 8
56*1b191cb5SApple OSS Distributions      (or, in other words, the value of the stack pointer on function entry) */
57*1b191cb5SApple OSS Distributions   ptrauth_key_return_address = ptrauth_key_process_dependent_code,
58*1b191cb5SApple OSS Distributions 
59*1b191cb5SApple OSS Distributions   /* The key used to sign frame pointers on the stack.
60*1b191cb5SApple OSS Distributions      The extra data is based on the storage address of the frame pointer.
61*1b191cb5SApple OSS Distributions      On ARM64, that is always the storage address of the frame pointer plus 16
62*1b191cb5SApple OSS Distributions      (or, in other words, the value of the stack pointer on function entry) */
63*1b191cb5SApple OSS Distributions   ptrauth_key_frame_pointer = ptrauth_key_process_dependent_data,
64*1b191cb5SApple OSS Distributions 
65*1b191cb5SApple OSS Distributions   /* The key used to sign block function pointers, including:
66*1b191cb5SApple OSS Distributions        invocation functions,
67*1b191cb5SApple OSS Distributions        block object copy functions,
68*1b191cb5SApple OSS Distributions        block object destroy functions,
69*1b191cb5SApple OSS Distributions        __block variable copy functions, and
70*1b191cb5SApple OSS Distributions        __block variable destroy functions.
71*1b191cb5SApple OSS Distributions      The extra data is always the address at which the function pointer
72*1b191cb5SApple OSS Distributions      is stored.
73*1b191cb5SApple OSS Distributions 
74*1b191cb5SApple OSS Distributions      Note that block object pointers themselves (i.e. the direct
75*1b191cb5SApple OSS Distributions      representations of values of block-pointer type) are not signed. */
76*1b191cb5SApple OSS Distributions   ptrauth_key_block_function = ptrauth_key_asia,
77*1b191cb5SApple OSS Distributions 
78*1b191cb5SApple OSS Distributions   /* The key used to sign C++ v-table pointers.
79*1b191cb5SApple OSS Distributions      The extra data is always 0. */
80*1b191cb5SApple OSS Distributions   ptrauth_key_cxx_vtable_pointer = ptrauth_key_asda
81*1b191cb5SApple OSS Distributions 
82*1b191cb5SApple OSS Distributions };
83*1b191cb5SApple OSS Distributions 
84