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