digsig.c 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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/rbtree.h>
  16. #include <linux/cred.h>
  17. #include <linux/key-type.h>
  18. #include <linux/digsig.h>
  19. #include "integrity.h"
  20. static struct key *keyring[INTEGRITY_KEYRING_MAX];
  21. #ifdef CONFIG_IMA_TRUSTED_KEYRING
  22. static const char *keyring_name[INTEGRITY_KEYRING_MAX] = {
  23. ".evm",
  24. ".module",
  25. ".ima",
  26. };
  27. #else
  28. static const char *keyring_name[INTEGRITY_KEYRING_MAX] = {
  29. "_evm",
  30. "_module",
  31. "_ima",
  32. };
  33. #endif
  34. int integrity_digsig_verify(const unsigned int id, const char *sig, int siglen,
  35. const char *digest, int digestlen)
  36. {
  37. if (id >= INTEGRITY_KEYRING_MAX)
  38. return -EINVAL;
  39. if (!keyring[id]) {
  40. keyring[id] =
  41. request_key(&key_type_keyring, keyring_name[id], NULL);
  42. if (IS_ERR(keyring[id])) {
  43. int err = PTR_ERR(keyring[id]);
  44. pr_err("no %s keyring: %d\n", keyring_name[id], err);
  45. keyring[id] = NULL;
  46. return err;
  47. }
  48. }
  49. switch (sig[1]) {
  50. case 1:
  51. /* v1 API expect signature without xattr type */
  52. return digsig_verify(keyring[id], sig + 1, siglen - 1,
  53. digest, digestlen);
  54. case 2:
  55. return asymmetric_verify(keyring[id], sig, siglen,
  56. digest, digestlen);
  57. }
  58. return -EOPNOTSUPP;
  59. }
  60. int integrity_init_keyring(const unsigned int id)
  61. {
  62. const struct cred *cred = current_cred();
  63. const struct user_struct *user = cred->user;
  64. keyring[id] = keyring_alloc(keyring_name[id], KUIDT_INIT(0),
  65. KGIDT_INIT(0), cred,
  66. ((KEY_POS_ALL & ~KEY_POS_SETATTR) |
  67. KEY_USR_VIEW | KEY_USR_READ),
  68. KEY_ALLOC_NOT_IN_QUOTA, user->uid_keyring);
  69. if (!IS_ERR(keyring[id]))
  70. set_bit(KEY_FLAG_TRUSTED_ONLY, &keyring[id]->flags);
  71. else
  72. pr_info("Can't allocate %s keyring (%ld)\n",
  73. keyring_name[id], PTR_ERR(keyring[id]));
  74. return 0;
  75. }