ima_audit.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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/gfp.h>
  14. #include <linux/audit.h>
  15. #include "ima.h"
  16. static int ima_audit;
  17. #ifdef CONFIG_IMA_AUDIT
  18. /* ima_audit_setup - enable informational auditing messages */
  19. static int __init ima_audit_setup(char *str)
  20. {
  21. unsigned long audit;
  22. if (!strict_strtoul(str, 0, &audit))
  23. ima_audit = audit ? 1 : 0;
  24. return 1;
  25. }
  26. __setup("ima_audit=", ima_audit_setup);
  27. #endif
  28. void integrity_audit_msg(int audit_msgno, struct inode *inode,
  29. const unsigned char *fname, const char *op,
  30. const char *cause, int result, int audit_info)
  31. {
  32. struct audit_buffer *ab;
  33. if (!ima_audit && audit_info == 1) /* Skip informational messages */
  34. return;
  35. ab = audit_log_start(current->audit_context, GFP_KERNEL, audit_msgno);
  36. audit_log_format(ab, "pid=%d uid=%u auid=%u ses=%u",
  37. current->pid, current_cred()->uid,
  38. audit_get_loginuid(current),
  39. audit_get_sessionid(current));
  40. audit_log_task_context(ab);
  41. audit_log_format(ab, " op=");
  42. audit_log_string(ab, op);
  43. audit_log_format(ab, " cause=");
  44. audit_log_string(ab, cause);
  45. audit_log_format(ab, " comm=");
  46. audit_log_untrustedstring(ab, current->comm);
  47. if (fname) {
  48. audit_log_format(ab, " name=");
  49. audit_log_untrustedstring(ab, fname);
  50. }
  51. if (inode) {
  52. audit_log_format(ab, " dev=");
  53. audit_log_untrustedstring(ab, inode->i_sb->s_id);
  54. audit_log_format(ab, " ino=%lu", inode->i_ino);
  55. }
  56. audit_log_format(ab, " res=%d", !result);
  57. audit_log_end(ab);
  58. }