digsig.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /*
  2. * Copyright (C) 2011 Intel Corporation
  3. *
  4. * Author:
  5. * Dmitry Kasatkin <dmitry.kasatkin@intel.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, version 2 of the License.
  10. *
  11. */
  12. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  13. #include <linux/err.h>
  14. #include <linux/sched.h>
  15. #include <linux/slab.h>
  16. #include <linux/cred.h>
  17. #include <linux/key-type.h>
  18. #include <linux/digsig.h>
  19. #include <crypto/public_key.h>
  20. #include <keys/system_keyring.h>
  21. #include "integrity.h"
  22. static struct key *keyring[INTEGRITY_KEYRING_MAX];
  23. static const char *keyring_name[INTEGRITY_KEYRING_MAX] = {
  24. #ifndef CONFIG_INTEGRITY_TRUSTED_KEYRING
  25. "_evm",
  26. "_ima",
  27. #else
  28. ".evm",
  29. ".ima",
  30. #endif
  31. "_module",
  32. };
  33. #ifdef CONFIG_INTEGRITY_TRUSTED_KEYRING
  34. static bool init_keyring __initdata = true;
  35. #else
  36. static bool init_keyring __initdata;
  37. #endif
  38. #ifdef CONFIG_IMA_KEYRINGS_PERMIT_SIGNED_BY_BUILTIN_OR_SECONDARY
  39. #define restrict_link_to_ima restrict_link_by_builtin_and_secondary_trusted
  40. #else
  41. #define restrict_link_to_ima restrict_link_by_builtin_trusted
  42. #endif
  43. int integrity_digsig_verify(const unsigned int id, const char *sig, int siglen,
  44. const char *digest, int digestlen)
  45. {
  46. if (id >= INTEGRITY_KEYRING_MAX)
  47. return -EINVAL;
  48. if (!keyring[id]) {
  49. keyring[id] =
  50. request_key(&key_type_keyring, keyring_name[id], NULL);
  51. if (IS_ERR(keyring[id])) {
  52. int err = PTR_ERR(keyring[id]);
  53. pr_err("no %s keyring: %d\n", keyring_name[id], err);
  54. keyring[id] = NULL;
  55. return err;
  56. }
  57. }
  58. switch (sig[1]) {
  59. case 1:
  60. /* v1 API expect signature without xattr type */
  61. return digsig_verify(keyring[id], sig + 1, siglen - 1,
  62. digest, digestlen);
  63. case 2:
  64. return asymmetric_verify(keyring[id], sig, siglen,
  65. digest, digestlen);
  66. }
  67. return -EOPNOTSUPP;
  68. }
  69. int __init integrity_init_keyring(const unsigned int id)
  70. {
  71. const struct cred *cred = current_cred();
  72. int err = 0;
  73. if (!init_keyring)
  74. return 0;
  75. keyring[id] = keyring_alloc(keyring_name[id], KUIDT_INIT(0),
  76. KGIDT_INIT(0), cred,
  77. ((KEY_POS_ALL & ~KEY_POS_SETATTR) |
  78. KEY_USR_VIEW | KEY_USR_READ |
  79. KEY_USR_WRITE | KEY_USR_SEARCH),
  80. KEY_ALLOC_NOT_IN_QUOTA,
  81. restrict_link_to_ima, NULL);
  82. if (IS_ERR(keyring[id])) {
  83. err = PTR_ERR(keyring[id]);
  84. pr_info("Can't allocate %s keyring (%d)\n",
  85. keyring_name[id], err);
  86. keyring[id] = NULL;
  87. }
  88. return err;
  89. }
  90. int __init integrity_load_x509(const unsigned int id, const char *path)
  91. {
  92. key_ref_t key;
  93. char *data;
  94. int rc;
  95. if (!keyring[id])
  96. return -EINVAL;
  97. rc = integrity_read_file(path, &data);
  98. if (rc < 0)
  99. return rc;
  100. key = key_create_or_update(make_key_ref(keyring[id], 1),
  101. "asymmetric",
  102. NULL,
  103. data,
  104. rc,
  105. ((KEY_POS_ALL & ~KEY_POS_SETATTR) |
  106. KEY_USR_VIEW | KEY_USR_READ),
  107. KEY_ALLOC_NOT_IN_QUOTA);
  108. if (IS_ERR(key)) {
  109. rc = PTR_ERR(key);
  110. pr_err("Problem loading X.509 certificate (%d): %s\n",
  111. rc, path);
  112. } else {
  113. pr_notice("Loaded X.509 cert '%s': %s\n",
  114. key_ref_to_ptr(key)->description, path);
  115. key_ref_put(key);
  116. }
  117. kfree(data);
  118. return 0;
  119. }