+int csops_audittoken(pid_t pid, unsigned int ops, void * useraddr, size_t usersize, audit_token_t * token);
+__END_DECLS
+
+#else /* !KERNEL */
+
+#include <mach/machine.h>
+#include <mach/vm_types.h>
+
+#include <sys/cdefs.h>
+#include <sys/_types/_off_t.h>
+
+struct vnode;
+struct cs_blob;
+struct fileglob;
+
+__BEGIN_DECLS
+int cs_valid(struct proc *);
+int cs_process_enforcement(struct proc *);
+int cs_process_global_enforcement(void);
+int cs_system_enforcement(void);
+int cs_require_lv(struct proc *);
+int csproc_forced_lv(struct proc* p);
+int cs_system_require_lv(void);
+uint32_t cs_entitlement_flags(struct proc *p);
+int cs_entitlements_blob_get(struct proc *, void **, size_t *);
+#ifdef KERNEL_PRIVATE
+int cs_entitlements_dictionary_copy(struct proc *, void **);
+#endif
+int cs_restricted(struct proc *);
+uint8_t * cs_get_cdhash(struct proc *);
+
+struct cs_blob * csproc_get_blob(struct proc *);
+struct cs_blob * csvnode_get_blob(struct vnode *, off_t);
+void csvnode_print_debug(struct vnode *);
+
+off_t csblob_get_base_offset(struct cs_blob *);
+vm_size_t csblob_get_size(struct cs_blob *);
+vm_address_t csblob_get_addr(struct cs_blob *);
+const char * csblob_get_teamid(struct cs_blob *);
+const char * csblob_get_identity(struct cs_blob *);
+const uint8_t * csblob_get_cdhash(struct cs_blob *);
+int csblob_get_platform_binary(struct cs_blob *);
+unsigned int csblob_get_flags(struct cs_blob *);
+uint8_t csblob_get_hashtype(struct cs_blob const *);
+unsigned int csblob_get_signer_type(struct cs_blob *);
+#if DEVELOPMENT || DEBUG
+void csproc_clear_platform_binary(struct proc *);
+#endif
+
+void csproc_disable_enforcement(struct proc* p);
+void csproc_mark_invalid_allowed(struct proc* p);
+int csproc_check_invalid_allowed(struct proc* p);
+int csproc_hardened_runtime(struct proc* p);
+
+int csblob_get_entitlements(struct cs_blob *, void **, size_t *);
+
+const CS_GenericBlob *
+ csblob_find_blob(struct cs_blob *, uint32_t, uint32_t);
+const CS_GenericBlob *
+ csblob_find_blob_bytes(const uint8_t *, size_t, uint32_t, uint32_t);
+void * csblob_entitlements_dictionary_copy(struct cs_blob *csblob);
+void csblob_entitlements_dictionary_set(struct cs_blob *csblob, void * entitlements);
+
+/*
+ * Mostly convenience functions below
+ */
+
+const char * csproc_get_teamid(struct proc *);
+const char * csvnode_get_teamid(struct vnode *, off_t);
+int csproc_get_platform_binary(struct proc *);
+int csproc_get_prod_signed(struct proc *);
+const char * csfg_get_teamid(struct fileglob *);
+int csfg_get_path(struct fileglob *, char *, int *);
+int csfg_get_platform_binary(struct fileglob *);
+uint8_t * csfg_get_cdhash(struct fileglob *, uint64_t, size_t *);
+int csfg_get_prod_signed(struct fileglob *);
+unsigned int csfg_get_signer_type(struct fileglob *);
+const char *csfg_get_identity(struct fileglob *fg, off_t offset);
+unsigned int csproc_get_signer_type(struct proc *);
+
+uint8_t csfg_get_platform_identifier(struct fileglob *, off_t);
+uint8_t csvnode_get_platform_identifier(struct vnode *, off_t);
+uint8_t csproc_get_platform_identifier(struct proc *);
+
+extern int cs_debug;
+extern int cs_debug_fail_on_unsigned_code;
+extern unsigned int cs_debug_unsigned_exec_failures;
+extern unsigned int cs_debug_unsigned_mmap_failures;
+
+int cs_blob_create_validated(vm_address_t* addr, vm_size_t size,
+ struct cs_blob ** ret_blob, CS_CodeDirectory const **ret_cd);
+
+void cs_blob_free(struct cs_blob *blob);
+
+#ifdef XNU_KERNEL_PRIVATE
+
+void cs_init(void);
+int cs_allow_invalid(struct proc *);
+int cs_invalid_page(addr64_t vaddr, boolean_t *cs_killed);
+int csproc_get_platform_path(struct proc *);
+
+#if !SECURE_KERNEL
+extern int cs_enforcement_panic;
+#endif
+
+#endif /* XNU_KERNEL_PRIVATE */
+