ima_mok.c 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Copyright (C) 2015 Juniper Networks, Inc.
  3. *
  4. * Author:
  5. * Petko Manolov <petko.manolov@konsulko.com>
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation, version 2 of the
  10. * License.
  11. *
  12. */
  13. #include <linux/export.h>
  14. #include <linux/kernel.h>
  15. #include <linux/sched.h>
  16. #include <linux/cred.h>
  17. #include <linux/err.h>
  18. #include <linux/init.h>
  19. #include <keys/system_keyring.h>
  20. struct key *ima_blacklist_keyring;
  21. /*
  22. * Allocate the IMA blacklist keyring
  23. */
  24. __init int ima_mok_init(void)
  25. {
  26. pr_notice("Allocating IMA blacklist keyring.\n");
  27. ima_blacklist_keyring = keyring_alloc(".ima_blacklist",
  28. KUIDT_INIT(0), KGIDT_INIT(0), current_cred(),
  29. (KEY_POS_ALL & ~KEY_POS_SETATTR) |
  30. KEY_USR_VIEW | KEY_USR_READ |
  31. KEY_USR_WRITE | KEY_USR_SEARCH,
  32. KEY_ALLOC_NOT_IN_QUOTA,
  33. restrict_link_by_builtin_trusted, NULL);
  34. if (IS_ERR(ima_blacklist_keyring))
  35. panic("Can't allocate IMA blacklist keyring.");
  36. set_bit(KEY_FLAG_KEEP, &ima_blacklist_keyring->flags);
  37. return 0;
  38. }
  39. device_initcall(ima_mok_init);