ima_audit.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * Copyright (C) 2008 IBM Corporation
  3. * Author: Mimi Zohar <zohar@us.ibm.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, version 2 of the License.
  8. *
  9. * File: integrity_audit.c
  10. * Audit calls for the integrity subsystem
  11. */
  12. #include <linux/fs.h>
  13. #include <linux/audit.h>
  14. #include "ima.h"
  15. static int ima_audit;
  16. #ifdef CONFIG_IMA_AUDIT
  17. /* ima_audit_setup - enable informational auditing messages */
  18. static int __init ima_audit_setup(char *str)
  19. {
  20. unsigned long audit;
  21. int rc, result = 0;
  22. char *op = "ima_audit";
  23. char *cause;
  24. rc = strict_strtoul(str, 0, &audit);
  25. if (rc || audit > 1)
  26. result = 1;
  27. else
  28. ima_audit = audit;
  29. cause = ima_audit ? "enabled" : "not_enabled";
  30. integrity_audit_msg(AUDIT_INTEGRITY_STATUS, NULL, NULL,
  31. op, cause, result, 0);
  32. return 1;
  33. }
  34. __setup("ima_audit=", ima_audit_setup);
  35. #endif
  36. void integrity_audit_msg(int audit_msgno, struct inode *inode,
  37. const unsigned char *fname, const char *op,
  38. const char *cause, int result, int audit_info)
  39. {
  40. struct audit_buffer *ab;
  41. if (!ima_audit && audit_info == 1) /* Skip informational messages */
  42. return;
  43. ab = audit_log_start(current->audit_context, GFP_KERNEL, audit_msgno);
  44. audit_log_format(ab, "integrity: pid=%d uid=%u auid=%u ses=%u",
  45. current->pid, current->cred->uid,
  46. audit_get_loginuid(current),
  47. audit_get_sessionid(current));
  48. audit_log_task_context(ab);
  49. switch (audit_msgno) {
  50. case AUDIT_INTEGRITY_DATA:
  51. case AUDIT_INTEGRITY_METADATA:
  52. case AUDIT_INTEGRITY_PCR:
  53. case AUDIT_INTEGRITY_STATUS:
  54. audit_log_format(ab, " op=%s cause=%s", op, cause);
  55. break;
  56. case AUDIT_INTEGRITY_HASH:
  57. audit_log_format(ab, " op=%s hash=%s", op, cause);
  58. break;
  59. default:
  60. audit_log_format(ab, " op=%s", op);
  61. }
  62. audit_log_format(ab, " comm=");
  63. audit_log_untrustedstring(ab, current->comm);
  64. if (fname) {
  65. audit_log_format(ab, " name=");
  66. audit_log_untrustedstring(ab, fname);
  67. }
  68. if (inode)
  69. audit_log_format(ab, " dev=%s ino=%lu",
  70. inode->i_sb->s_id, inode->i_ino);
  71. audit_log_format(ab, " res=%d", !result ? 0 : 1);
  72. audit_log_end(ab);
  73. }