1/*
2 * Copyright (c) 2006 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28
29#ifndef _SYS_CODESIGN_H_
30#define _SYS_CODESIGN_H_
31
32#include <sys/types.h>
33
34/* code signing attributes of a process */
35#define	CS_VALID		0x0001	/* dynamically valid */
36#define	CS_HARD			0x0100	/* don't load invalid pages */
37#define	CS_KILL			0x0200	/* kill process if it becomes invalid */
38#define CS_EXEC_SET_HARD	0x1000	/* set CS_HARD on any exec'ed process */
39#define CS_EXEC_SET_KILL	0x2000	/* set CS_KILL on any exec'ed process */
40#define CS_KILLED		0x10000	/* was killed by kernel for invalidity */
41#define CS_RESTRICT		0x20000 /* tell dyld to treat restricted */
42
43/* csops  operations */
44#define	CS_OPS_STATUS		0	/* return status */
45#define	CS_OPS_MARKINVALID	1	/* invalidate process */
46#define	CS_OPS_MARKHARD		2	/* set HARD flag */
47#define	CS_OPS_MARKKILL		3	/* set KILL flag (sticky) */
48#define	CS_OPS_PIDPATH		4	/* get executable's pathname */
49#define	CS_OPS_CDHASH		5	/* get code directory hash */
50#define CS_OPS_PIDOFFSET	6	/* get offset of active Mach-o slice */
51#define CS_OPS_ENTITLEMENTS_BLOB 7	/* get entitlements blob */
52#define CS_OPS_MARKRESTRICT	8	/* set RESTRICT flag (sticky) */
53
54#ifndef KERNEL
55
56__BEGIN_DECLS
57
58/* code sign operations */
59int csops(pid_t pid, unsigned int  ops, void * useraddr, size_t usersize);
60/* works only with CS_OPS_PIDPATH and CS_OPS_ENTITLEMENTS_BLOB */
61int csops_audittoken(pid_t pid, unsigned int  ops, void * useraddr, size_t usersize, audit_token_t * token);
62
63__END_DECLS
64
65#endif /* ! KERNEL */
66
67#endif /* _SYS_CODESIGN_H_ */
68