clang 19.0.0git
Macros | Typedefs | Enumerations
ptrauth.h File Reference

Go to the source code of this file.

Macros

#define ptrauth_strip(__value, __key)
 
#define ptrauth_blend_discriminator(__pointer, __integer)
 
#define ptrauth_sign_unauthenticated(__value, __key, __data)
 
#define ptrauth_auth_and_resign(__value, __old_key, __old_data, __new_key, __new_data)
 
#define ptrauth_auth_data(__value, __old_key, __old_data)
 
#define ptrauth_sign_generic_data(__value, __data)
 

Typedefs

typedef __UINTPTR_TYPE__ ptrauth_extra_data_t
 
typedef __UINTPTR_TYPE__ ptrauth_generic_signature_t
 

Enumerations

enum  ptrauth_key { ptrauth_key_asia = 0 , ptrauth_key_asib = 1 , ptrauth_key_asda = 2 , ptrauth_key_asdb = 3 }
 

Macro Definition Documentation

◆ ptrauth_auth_and_resign

#define ptrauth_auth_and_resign (   __value,
  __old_key,
  __old_data,
  __new_key,
  __new_data 
)
Value:
({ \
(void)__old_key; \
(void)__old_data; \
(void)__new_key; \
(void)__new_data; \
})
static __inline__ void unsigned int __value
Definition: movdirintrin.h:20

Definition at line 159 of file ptrauth.h.

◆ ptrauth_auth_data

#define ptrauth_auth_data (   __value,
  __old_key,
  __old_data 
)
Value:
({ \
(void)__old_key; \
(void)__old_data; \
})

Definition at line 169 of file ptrauth.h.

◆ ptrauth_blend_discriminator

#define ptrauth_blend_discriminator (   __pointer,
  __integer 
)
Value:
({ \
(void)__pointer; \
(void)__integer; \
})
__UINTPTR_TYPE__ ptrauth_extra_data_t
Definition: ptrauth.h:21

Definition at line 145 of file ptrauth.h.

◆ ptrauth_sign_generic_data

#define ptrauth_sign_generic_data (   __value,
  __data 
)
Value:
({ \
(void)__value; \
(void)__data; \
})
__UINTPTR_TYPE__ ptrauth_generic_signature_t
Definition: ptrauth.h:24

Definition at line 176 of file ptrauth.h.

◆ ptrauth_sign_unauthenticated

#define ptrauth_sign_unauthenticated (   __value,
  __key,
  __data 
)
Value:
({ \
(void)__key; \
(void)__data; \
})

Definition at line 152 of file ptrauth.h.

◆ ptrauth_strip

#define ptrauth_strip (   __value,
  __key 
)
Value:
({ \
(void)__key; \
})

Definition at line 139 of file ptrauth.h.

Typedef Documentation

◆ ptrauth_extra_data_t

typedef __UINTPTR_TYPE__ ptrauth_extra_data_t

Definition at line 21 of file ptrauth.h.

◆ ptrauth_generic_signature_t

typedef __UINTPTR_TYPE__ ptrauth_generic_signature_t

Definition at line 24 of file ptrauth.h.

Enumeration Type Documentation

◆ ptrauth_key

Enumerator
ptrauth_key_asia 
ptrauth_key_asib 
ptrauth_key_asda 
ptrauth_key_asdb 

Definition at line 13 of file ptrauth.h.