codesign.h 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. #ifndef _SYS_CODESIGN_H_
  29. #define _SYS_CODESIGN_H_
  30. #include <sys/types.h>
  31. /* code signing attributes of a process */
  32. #define CS_VALID 0x0000001 /* dynamically valid */
  33. #define CS_ADHOC 0x0000002 /* ad hoc signed */
  34. #define CS_GET_TASK_ALLOW 0x0000004 /* has get-task-allow entitlement */
  35. #define CS_INSTALLER 0x0000008 /* has installer entitlement */
  36. #define CS_HARD 0x0000100 /* don't load invalid pages */
  37. #define CS_KILL 0x0000200 /* kill process if it becomes invalid */
  38. #define CS_CHECK_EXPIRATION 0x0000400 /* force expiration checking */
  39. #define CS_RESTRICT 0x0000800 /* tell dyld to treat restricted */
  40. #define CS_ENFORCEMENT 0x0001000 /* require enforcement */
  41. #define CS_REQUIRE_LV 0x0002000 /* require library validation */
  42. #define CS_ENTITLEMENTS_VALIDATED 0x0004000
  43. #define CS_ALLOWED_MACHO 0x00ffffe
  44. #define CS_EXEC_SET_HARD 0x0100000 /* set CS_HARD on any exec'ed process */
  45. #define CS_EXEC_SET_KILL 0x0200000 /* set CS_KILL on any exec'ed process */
  46. #define CS_EXEC_SET_ENFORCEMENT 0x0400000 /* set CS_ENFORCEMENT on any exec'ed process */
  47. #define CS_EXEC_SET_INSTALLER 0x0800000 /* set CS_INSTALLER on any exec'ed process */
  48. #define CS_KILLED 0x1000000 /* was killed by kernel for invalidity */
  49. #define CS_DYLD_PLATFORM 0x2000000 /* dyld used to load this is a platform binary */
  50. #define CS_PLATFORM_BINARY 0x4000000 /* this is a platform binary */
  51. #define CS_PLATFORM_PATH 0x8000000 /* platform binary by the fact of path (osx only) */
  52. /* csops operations */
  53. #define CS_OPS_STATUS 0 /* return status */
  54. #define CS_OPS_MARKINVALID 1 /* invalidate process */
  55. #define CS_OPS_MARKHARD 2 /* set HARD flag */
  56. #define CS_OPS_MARKKILL 3 /* set KILL flag (sticky) */
  57. #define CS_OPS_PIDPATH 4 /* get executable's pathname */
  58. #define CS_OPS_CDHASH 5 /* get code directory hash */
  59. #define CS_OPS_PIDOFFSET 6 /* get offset of active Mach-o slice */
  60. #define CS_OPS_ENTITLEMENTS_BLOB 7 /* get entitlements blob */
  61. #define CS_OPS_MARKRESTRICT 8 /* set RESTRICT flag (sticky) */
  62. #ifndef KERNEL
  63. __BEGIN_DECLS
  64. /* code sign operations */
  65. int csops(pid_t pid, unsigned int ops, void * useraddr, size_t usersize);
  66. __END_DECLS
  67. #endif /* ! KERNEL */
  68. #endif /* _SYS_CODESIGN_H_ */