]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/sys/codesign.h
xnu-4570.1.46.tar.gz
[apple/xnu.git] / bsd / sys / codesign.h
index e72c25044f6e557d45c076c7ff73734a62f19a3f..15a39365bf586b46d30524ed9e6d1525f74d18a9 100644 (file)
 #ifndef _SYS_CODESIGN_H_
 #define _SYS_CODESIGN_H_
 
-#include <sys/types.h>
+#if KERNEL
+#include <kern/cs_blobs.h>
+#else
+#include <System/kern/cs_blobs.h>
+#endif
 
-/* code signing attributes of a process */
-#define        CS_VALID                0x0001  /* dynamically valid */
-#define        CS_HARD                 0x0100  /* don't load invalid pages */
-#define        CS_KILL                 0x0200  /* kill process if it becomes invalid */
-#define CS_EXEC_SET_HARD       0x1000  /* set CS_HARD on any exec'ed process */
-#define CS_EXEC_SET_KILL       0x2000  /* set CS_KILL on any exec'ed process */
-#define CS_KILLED              0x10000 /* was killed by kernel for invalidity */
-#define CS_RESTRICT            0x20000 /* tell dyld to treat restricted */
+/* MAC flags used by F_ADDFILESIGS_* */
+#define MAC_VNODE_CHECK_DYLD_SIM 0x1   /* tells the MAC framework that dyld-sim is being loaded */
 
 /* csops  operations */
 #define        CS_OPS_STATUS           0       /* return status */
 #define        CS_OPS_MARKINVALID      1       /* invalidate process */
 #define        CS_OPS_MARKHARD         2       /* set HARD flag */
 #define        CS_OPS_MARKKILL         3       /* set KILL flag (sticky) */
-#define        CS_OPS_PIDPATH          4       /* get executable's pathname */
+#ifdef KERNEL_PRIVATE
+/* CS_OPS_PIDPATH              4       */
+#endif
 #define        CS_OPS_CDHASH           5       /* get code directory hash */
 #define CS_OPS_PIDOFFSET       6       /* get offset of active Mach-o slice */
 #define CS_OPS_ENTITLEMENTS_BLOB 7     /* get entitlements blob */
 #define CS_OPS_MARKRESTRICT    8       /* set RESTRICT flag (sticky) */
+#define CS_OPS_SET_STATUS      9       /* set codesign flags */
+#define CS_OPS_BLOB            10      /* get codesign blob */
+#define CS_OPS_IDENTITY                11      /* get codesign identity */
+#define CS_OPS_CLEARINSTALLER  12      /* clear INSTALLER flag */
+#define CS_OPS_CLEARPLATFORM 13 /* clear platform binary status (DEVELOPMENT-only) */
+
+#define CS_MAX_TEAMID_LEN      64
 
 #ifndef KERNEL
 
-__BEGIN_DECLS
+#include <sys/types.h>
+#include <mach/message.h>
 
+__BEGIN_DECLS
 /* code sign operations */
 int csops(pid_t pid, unsigned int  ops, void * useraddr, size_t usersize);
+int csops_audittoken(pid_t pid, unsigned int  ops, void * useraddr, size_t usersize, audit_token_t * token);
+__END_DECLS
+
+#else /* !KERNEL */
+
+#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_enforcement(struct proc *);
+int    cs_require_lv(struct proc *);
+int    cs_system_require_lv(void);
+uint32_t cs_entitlement_flags(struct proc *p);
+int    cs_entitlements_blob_get(struct proc *, void **, size_t *);
+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
+
+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 *);
+unsigned int csproc_get_signer_type(struct proc *);
+
+extern int cs_debug;
+
+#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 */
+
 
 __END_DECLS
 
-#endif /* ! KERNEL */
+
+
+#endif /* KERNEL */
 
 #endif /* _SYS_CODESIGN_H_ */