ima_queue.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /*
  2. * Copyright (C) 2005,2006,2007,2008 IBM Corporation
  3. *
  4. * Authors:
  5. * Serge Hallyn <serue@us.ibm.com>
  6. * Reiner Sailer <sailer@watson.ibm.com>
  7. * Mimi Zohar <zohar@us.ibm.com>
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation, version 2 of the
  12. * License.
  13. *
  14. * File: ima_queue.c
  15. * Implements queues that store template measurements and
  16. * maintains aggregate over the stored measurements
  17. * in the pre-configured TPM PCR (if available).
  18. * The measurement list is append-only. No entry is
  19. * ever removed or changed during the boot-cycle.
  20. */
  21. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  22. #include <linux/module.h>
  23. #include <linux/rculist.h>
  24. #include <linux/slab.h>
  25. #include "ima.h"
  26. #define AUDIT_CAUSE_LEN_MAX 32
  27. LIST_HEAD(ima_measurements); /* list of all measurements */
  28. /* key: inode (before secure-hashing a file) */
  29. struct ima_h_table ima_htable = {
  30. .len = ATOMIC_LONG_INIT(0),
  31. .violations = ATOMIC_LONG_INIT(0),
  32. .queue[0 ... IMA_MEASURE_HTABLE_SIZE - 1] = HLIST_HEAD_INIT
  33. };
  34. /* mutex protects atomicity of extending measurement list
  35. * and extending the TPM PCR aggregate. Since tpm_extend can take
  36. * long (and the tpm driver uses a mutex), we can't use the spinlock.
  37. */
  38. static DEFINE_MUTEX(ima_extend_list_mutex);
  39. /* lookup up the digest value in the hash table, and return the entry */
  40. static struct ima_queue_entry *ima_lookup_digest_entry(u8 *digest_value,
  41. int pcr)
  42. {
  43. struct ima_queue_entry *qe, *ret = NULL;
  44. unsigned int key;
  45. int rc;
  46. key = ima_hash_key(digest_value);
  47. rcu_read_lock();
  48. hlist_for_each_entry_rcu(qe, &ima_htable.queue[key], hnext) {
  49. rc = memcmp(qe->entry->digest, digest_value, TPM_DIGEST_SIZE);
  50. if ((rc == 0) && (qe->entry->pcr == pcr)) {
  51. ret = qe;
  52. break;
  53. }
  54. }
  55. rcu_read_unlock();
  56. return ret;
  57. }
  58. /* ima_add_template_entry helper function:
  59. * - Add template entry to measurement list and hash table.
  60. *
  61. * (Called with ima_extend_list_mutex held.)
  62. */
  63. static int ima_add_digest_entry(struct ima_template_entry *entry)
  64. {
  65. struct ima_queue_entry *qe;
  66. unsigned int key;
  67. qe = kmalloc(sizeof(*qe), GFP_KERNEL);
  68. if (qe == NULL) {
  69. pr_err("OUT OF MEMORY ERROR creating queue entry\n");
  70. return -ENOMEM;
  71. }
  72. qe->entry = entry;
  73. INIT_LIST_HEAD(&qe->later);
  74. list_add_tail_rcu(&qe->later, &ima_measurements);
  75. atomic_long_inc(&ima_htable.len);
  76. key = ima_hash_key(entry->digest);
  77. hlist_add_head_rcu(&qe->hnext, &ima_htable.queue[key]);
  78. return 0;
  79. }
  80. static int ima_pcr_extend(const u8 *hash, int pcr)
  81. {
  82. int result = 0;
  83. if (!ima_used_chip)
  84. return result;
  85. result = tpm_pcr_extend(TPM_ANY_NUM, pcr, hash);
  86. if (result != 0)
  87. pr_err("Error Communicating to TPM chip, result: %d\n", result);
  88. return result;
  89. }
  90. /* Add template entry to the measurement list and hash table,
  91. * and extend the pcr.
  92. */
  93. int ima_add_template_entry(struct ima_template_entry *entry, int violation,
  94. const char *op, struct inode *inode,
  95. const unsigned char *filename)
  96. {
  97. u8 digest[TPM_DIGEST_SIZE];
  98. const char *audit_cause = "hash_added";
  99. char tpm_audit_cause[AUDIT_CAUSE_LEN_MAX];
  100. int audit_info = 1;
  101. int result = 0, tpmresult = 0;
  102. mutex_lock(&ima_extend_list_mutex);
  103. if (!violation) {
  104. memcpy(digest, entry->digest, sizeof(digest));
  105. if (ima_lookup_digest_entry(digest, entry->pcr)) {
  106. audit_cause = "hash_exists";
  107. result = -EEXIST;
  108. goto out;
  109. }
  110. }
  111. result = ima_add_digest_entry(entry);
  112. if (result < 0) {
  113. audit_cause = "ENOMEM";
  114. audit_info = 0;
  115. goto out;
  116. }
  117. if (violation) /* invalidate pcr */
  118. memset(digest, 0xff, sizeof(digest));
  119. tpmresult = ima_pcr_extend(digest, entry->pcr);
  120. if (tpmresult != 0) {
  121. snprintf(tpm_audit_cause, AUDIT_CAUSE_LEN_MAX, "TPM_error(%d)",
  122. tpmresult);
  123. audit_cause = tpm_audit_cause;
  124. audit_info = 0;
  125. }
  126. out:
  127. mutex_unlock(&ima_extend_list_mutex);
  128. integrity_audit_msg(AUDIT_INTEGRITY_PCR, inode, filename,
  129. op, audit_cause, result, audit_info);
  130. return result;
  131. }