blob: 74a2799574642efb845b0eb60ac39c8f19f20b2b [file] [log] [blame]
Petko Manolov41c89b62015-12-02 17:47:55 +02001/*
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
14#include <linux/export.h>
15#include <linux/kernel.h>
16#include <linux/sched.h>
17#include <linux/cred.h>
18#include <linux/err.h>
Paul Gortmaker92cc9162015-12-09 17:37:16 -050019#include <linux/init.h>
David Howellsa511e1a2016-04-06 16:14:26 +010020#include <keys/system_keyring.h>
Petko Manolov41c89b62015-12-02 17:47:55 +020021
22
Petko Manolov41c89b62015-12-02 17:47:55 +020023struct key *ima_blacklist_keyring;
24
25/*
David Howells56104cf2016-04-07 09:45:23 +010026 * Allocate the IMA blacklist keyring
Petko Manolov41c89b62015-12-02 17:47:55 +020027 */
28__init int ima_mok_init(void)
29{
David Howells56104cf2016-04-07 09:45:23 +010030 pr_notice("Allocating IMA blacklist keyring.\n");
Petko Manolov41c89b62015-12-02 17:47:55 +020031
32 ima_blacklist_keyring = keyring_alloc(".ima_blacklist",
33 KUIDT_INIT(0), KGIDT_INIT(0), current_cred(),
34 (KEY_POS_ALL & ~KEY_POS_SETATTR) |
35 KEY_USR_VIEW | KEY_USR_READ |
36 KEY_USR_WRITE | KEY_USR_SEARCH,
David Howells5ac7eac2016-04-06 16:14:24 +010037 KEY_ALLOC_NOT_IN_QUOTA,
David Howellsa511e1a2016-04-06 16:14:26 +010038 restrict_link_by_builtin_trusted, NULL);
Petko Manolov41c89b62015-12-02 17:47:55 +020039
David Howells56104cf2016-04-07 09:45:23 +010040 if (IS_ERR(ima_blacklist_keyring))
41 panic("Can't allocate IMA blacklist keyring.");
Mimi Zohar501f1bd2015-11-10 09:00:38 -050042
Mimi Zohar501f1bd2015-11-10 09:00:38 -050043 set_bit(KEY_FLAG_KEEP, &ima_blacklist_keyring->flags);
Petko Manolov41c89b62015-12-02 17:47:55 +020044 return 0;
45}
Paul Gortmaker92cc9162015-12-09 17:37:16 -050046device_initcall(ima_mok_init);