system_keyring.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /* System keyring containing trusted public keys.
  2. *
  3. * Copyright (C) 2013 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public Licence
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the Licence, or (at your option) any later version.
  10. */
  11. #ifndef _KEYS_SYSTEM_KEYRING_H
  12. #define _KEYS_SYSTEM_KEYRING_H
  13. #include <linux/key.h>
  14. #ifdef CONFIG_SYSTEM_TRUSTED_KEYRING
  15. extern int restrict_link_by_builtin_trusted(struct key *keyring,
  16. const struct key_type *type,
  17. const union key_payload *payload);
  18. #else
  19. #define restrict_link_by_builtin_trusted restrict_link_reject
  20. #endif
  21. #ifdef CONFIG_SECONDARY_TRUSTED_KEYRING
  22. extern int restrict_link_by_builtin_and_secondary_trusted(
  23. struct key *keyring,
  24. const struct key_type *type,
  25. const union key_payload *payload);
  26. #else
  27. #define restrict_link_by_builtin_and_secondary_trusted restrict_link_by_builtin_trusted
  28. #endif
  29. #ifdef CONFIG_IMA_MOK_KEYRING
  30. extern struct key *ima_mok_keyring;
  31. extern struct key *ima_blacklist_keyring;
  32. static inline struct key *get_ima_mok_keyring(void)
  33. {
  34. return ima_mok_keyring;
  35. }
  36. static inline struct key *get_ima_blacklist_keyring(void)
  37. {
  38. return ima_blacklist_keyring;
  39. }
  40. #else
  41. static inline struct key *get_ima_mok_keyring(void)
  42. {
  43. return NULL;
  44. }
  45. static inline struct key *get_ima_blacklist_keyring(void)
  46. {
  47. return NULL;
  48. }
  49. #endif /* CONFIG_IMA_MOK_KEYRING */
  50. #endif /* _KEYS_SYSTEM_KEYRING_H */