]> git.saurik.com Git - apple/xnu.git/blame - bsd/sys/codesign.h
xnu-1504.9.17.tar.gz
[apple/xnu.git] / bsd / sys / codesign.h
CommitLineData
2d21ac55
A
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
41/* csops operations */
42#define CS_OPS_STATUS 0 /* return status */
43#define CS_OPS_MARKINVALID 1 /* invalidate process */
44#define CS_OPS_MARKHARD 2 /* set HARD flag */
45#define CS_OPS_MARKKILL 3 /* set KILL flag (sticky) */
46#define CS_OPS_PIDPATH 4 /* get executable's pathname */
47#define CS_OPS_CDHASH 5 /* get code directory hash */
b0d623f7 48#define CS_OPS_PIDOFFSET 6 /* get offset of active Mach-o slice */
2d21ac55
A
49
50#ifndef KERNEL
51
52__BEGIN_DECLS
53
54/* code sign operations */
55int csops(pid_t pid, unsigned int ops, void * useraddr, size_t usersize);
56
57__END_DECLS
58
59#endif /* ! KERNEL */
60
61#endif /* _SYS_CODESIGN_H_ */