ima_queue.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. #include <linux/module.h>
  22. #include <linux/rculist.h>
  23. #include <linux/slab.h>
  24. #include "ima.h"
  25. LIST_HEAD(ima_measurements); /* list of all measurements */
  26. /* key: inode (before secure-hashing a file) */
  27. struct ima_h_table ima_htable = {
  28. .len = ATOMIC_LONG_INIT(0),
  29. .violations = ATOMIC_LONG_INIT(0),
  30. .queue[0 ... IMA_MEASURE_HTABLE_SIZE - 1] = HLIST_HEAD_INIT
  31. };
  32. /* mutex protects atomicity of extending measurement list
  33. * and extending the TPM PCR aggregate. Since tpm_extend can take
  34. * long (and the tpm driver uses a mutex), we can't use the spinlock.
  35. */
  36. static DEFINE_MUTEX(ima_extend_list_mutex);
  37. /* lookup up the digest value in the hash table, and return the entry */
  38. static struct ima_queue_entry *ima_lookup_digest_entry(u8 *digest_value)
  39. {
  40. struct ima_queue_entry *qe, *ret = NULL;
  41. unsigned int key;
  42. struct hlist_node *pos;
  43. int rc;
  44. key = ima_hash_key(digest_value);
  45. rcu_read_lock();
  46. hlist_for_each_entry_rcu(qe, pos, &ima_htable.queue[key], hnext) {
  47. rc = memcmp(qe->entry->digest, digest_value, IMA_DIGEST_SIZE);
  48. if (rc == 0) {
  49. ret = qe;
  50. break;
  51. }
  52. }
  53. rcu_read_unlock();
  54. return ret;
  55. }
  56. /* ima_add_template_entry helper function:
  57. * - Add template entry to measurement list and hash table.
  58. *
  59. * (Called with ima_extend_list_mutex held.)
  60. */
  61. static int ima_add_digest_entry(struct ima_template_entry *entry)
  62. {
  63. struct ima_queue_entry *qe;
  64. unsigned int key;
  65. qe = kmalloc(sizeof(*qe), GFP_KERNEL);
  66. if (qe == NULL) {
  67. pr_err("IMA: OUT OF MEMORY ERROR creating queue entry.\n");
  68. return -ENOMEM;
  69. }
  70. qe->entry = entry;
  71. INIT_LIST_HEAD(&qe->later);
  72. list_add_tail_rcu(&qe->later, &ima_measurements);
  73. atomic_long_inc(&ima_htable.len);
  74. key = ima_hash_key(entry->digest);
  75. hlist_add_head_rcu(&qe->hnext, &ima_htable.queue[key]);
  76. return 0;
  77. }
  78. static int ima_pcr_extend(const u8 *hash)
  79. {
  80. int result = 0;
  81. if (!ima_used_chip)
  82. return result;
  83. result = tpm_pcr_extend(TPM_ANY_NUM, CONFIG_IMA_MEASURE_PCR_IDX, hash);
  84. if (result != 0)
  85. pr_err("IMA: Error Communicating to TPM chip\n");
  86. return result;
  87. }
  88. /* Add template entry to the measurement list and hash table,
  89. * and extend the pcr.
  90. */
  91. int ima_add_template_entry(struct ima_template_entry *entry, int violation,
  92. const char *op, struct inode *inode)
  93. {
  94. u8 digest[IMA_DIGEST_SIZE];
  95. const char *audit_cause = "hash_added";
  96. int audit_info = 1;
  97. int result = 0;
  98. mutex_lock(&ima_extend_list_mutex);
  99. if (!violation) {
  100. memcpy(digest, entry->digest, sizeof digest);
  101. if (ima_lookup_digest_entry(digest)) {
  102. audit_cause = "hash_exists";
  103. goto out;
  104. }
  105. }
  106. result = ima_add_digest_entry(entry);
  107. if (result < 0) {
  108. audit_cause = "ENOMEM";
  109. audit_info = 0;
  110. goto out;
  111. }
  112. if (violation) /* invalidate pcr */
  113. memset(digest, 0xff, sizeof digest);
  114. result = ima_pcr_extend(digest);
  115. if (result != 0) {
  116. audit_cause = "TPM error";
  117. audit_info = 0;
  118. }
  119. out:
  120. mutex_unlock(&ima_extend_list_mutex);
  121. integrity_audit_msg(AUDIT_INTEGRITY_PCR, inode,
  122. entry->template.file_name,
  123. op, audit_cause, result, audit_info);
  124. return result;
  125. }