ima_policy 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. What: security/ima/policy
  2. Date: May 2008
  3. Contact: Mimi Zohar <zohar@us.ibm.com>
  4. Description:
  5. The Trusted Computing Group(TCG) runtime Integrity
  6. Measurement Architecture(IMA) maintains a list of hash
  7. values of executables and other sensitive system files
  8. loaded into the run-time of this system. At runtime,
  9. the policy can be constrained based on LSM specific data.
  10. Policies are loaded into the securityfs file ima/policy
  11. by opening the file, writing the rules one at a time and
  12. then closing the file. The new policy takes effect after
  13. the file ima/policy is closed.
  14. IMA appraisal, if configured, uses these file measurements
  15. for local measurement appraisal.
  16. rule format: action [condition ...]
  17. action: measure | dont_measure | appraise | dont_appraise | audit
  18. condition:= base | lsm [option]
  19. base: [[func=] [mask=] [fsmagic=] [fsuuid=] [uid=]
  20. [fowner]]
  21. lsm: [[subj_user=] [subj_role=] [subj_type=]
  22. [obj_user=] [obj_role=] [obj_type=]]
  23. option: [[appraise_type=]]
  24. base: func:= [BPRM_CHECK][MMAP_CHECK][FILE_CHECK][MODULE_CHECK]
  25. mask:= [MAY_READ] [MAY_WRITE] [MAY_APPEND] [MAY_EXEC]
  26. fsmagic:= hex value
  27. fsuuid:= file system UUID (e.g 8bcbe394-4f13-4144-be8e-5aa9ea2ce2f6)
  28. uid:= decimal value
  29. fowner:=decimal value
  30. lsm: are LSM specific
  31. option: appraise_type:= [imasig]
  32. default policy:
  33. # PROC_SUPER_MAGIC
  34. dont_measure fsmagic=0x9fa0
  35. dont_appraise fsmagic=0x9fa0
  36. # SYSFS_MAGIC
  37. dont_measure fsmagic=0x62656572
  38. dont_appraise fsmagic=0x62656572
  39. # DEBUGFS_MAGIC
  40. dont_measure fsmagic=0x64626720
  41. dont_appraise fsmagic=0x64626720
  42. # TMPFS_MAGIC
  43. dont_measure fsmagic=0x01021994
  44. dont_appraise fsmagic=0x01021994
  45. # RAMFS_MAGIC
  46. dont_measure fsmagic=0x858458f6
  47. dont_appraise fsmagic=0x858458f6
  48. # SECURITYFS_MAGIC
  49. dont_measure fsmagic=0x73636673
  50. dont_appraise fsmagic=0x73636673
  51. measure func=BPRM_CHECK
  52. measure func=FILE_MMAP mask=MAY_EXEC
  53. measure func=FILE_CHECK mask=MAY_READ uid=0
  54. measure func=MODULE_CHECK uid=0
  55. appraise fowner=0
  56. The default policy measures all executables in bprm_check,
  57. all files mmapped executable in file_mmap, and all files
  58. open for read by root in do_filp_open. The default appraisal
  59. policy appraises all files owned by root.
  60. Examples of LSM specific definitions:
  61. SELinux:
  62. # SELINUX_MAGIC
  63. dont_measure fsmagic=0xf97cff8c
  64. dont_appraise fsmagic=0xf97cff8c
  65. dont_measure obj_type=var_log_t
  66. dont_appraise obj_type=var_log_t
  67. dont_measure obj_type=auditd_log_t
  68. dont_appraise obj_type=auditd_log_t
  69. measure subj_user=system_u func=FILE_CHECK mask=MAY_READ
  70. measure subj_role=system_r func=FILE_CHECK mask=MAY_READ
  71. Smack:
  72. measure subj_user=_ func=FILE_CHECK mask=MAY_READ