blob: a076a967ec4768f64ebfcd0a84509080e7eb6b18 [file] [log] [blame]
Roberto Sassuadf53a72013-06-07 12:16:29 +02001/*
2 * Copyright (C) 2013 Politecnico di Torino, Italy
3 * TORSEC group -- http://security.polito.it
4 *
5 * Author: Roberto Sassu <roberto.sassu@polito.it>
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 * File: ima_template.c
13 * Helpers to manage template descriptors.
14 */
Joe Perches20ee4512014-02-24 13:59:56 -080015
16#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17
Roberto Sassu9b9d4ce2013-06-07 12:16:35 +020018#include <crypto/hash_info.h>
19
Roberto Sassuadf53a72013-06-07 12:16:29 +020020#include "ima.h"
Roberto Sassu3ce1217d2013-06-07 12:16:30 +020021#include "ima_template_lib.h"
Roberto Sassuadf53a72013-06-07 12:16:29 +020022
23static struct ima_template_desc defined_templates[] = {
Roberto Sassu4d7aeee2013-06-07 12:16:32 +020024 {.name = IMA_TEMPLATE_IMA_NAME, .fmt = IMA_TEMPLATE_IMA_FMT},
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +020025 {.name = "ima-ng", .fmt = "d-ng|n-ng"},
26 {.name = "ima-sig", .fmt = "d-ng|n-ng|sig"},
Roberto Sassuadf53a72013-06-07 12:16:29 +020027};
28
29static struct ima_template_field supported_fields[] = {
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +020030 {.field_id = "d", .field_init = ima_eventdigest_init,
Roberto Sassu3ce1217d2013-06-07 12:16:30 +020031 .field_show = ima_show_template_digest},
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +020032 {.field_id = "n", .field_init = ima_eventname_init,
Roberto Sassu3ce1217d2013-06-07 12:16:30 +020033 .field_show = ima_show_template_string},
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +020034 {.field_id = "d-ng", .field_init = ima_eventdigest_ng_init,
Roberto Sassu4d7aeee2013-06-07 12:16:32 +020035 .field_show = ima_show_template_digest_ng},
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +020036 {.field_id = "n-ng", .field_init = ima_eventname_ng_init,
Roberto Sassu4d7aeee2013-06-07 12:16:32 +020037 .field_show = ima_show_template_string},
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +020038 {.field_id = "sig", .field_init = ima_eventsig_init,
Mimi Zoharbcbc9b02013-07-23 11:15:00 -040039 .field_show = ima_show_template_sig},
Roberto Sassuadf53a72013-06-07 12:16:29 +020040};
41
Roberto Sassua71dc652013-06-07 12:16:33 +020042static struct ima_template_desc *ima_template;
Roberto Sassu9b9d4ce2013-06-07 12:16:35 +020043static struct ima_template_desc *lookup_template_desc(const char *name);
44
45static int __init ima_template_setup(char *str)
46{
47 struct ima_template_desc *template_desc;
48 int template_len = strlen(str);
49
50 /*
51 * Verify that a template with the supplied name exists.
52 * If not, use CONFIG_IMA_DEFAULT_TEMPLATE.
53 */
54 template_desc = lookup_template_desc(str);
55 if (!template_desc)
56 return 1;
57
58 /*
59 * Verify whether the current hash algorithm is supported
60 * by the 'ima' template.
61 */
62 if (template_len == 3 && strcmp(str, IMA_TEMPLATE_IMA_NAME) == 0 &&
63 ima_hash_algo != HASH_ALGO_SHA1 && ima_hash_algo != HASH_ALGO_MD5) {
Joe Perches20ee4512014-02-24 13:59:56 -080064 pr_err("template does not support hash alg\n");
Roberto Sassu9b9d4ce2013-06-07 12:16:35 +020065 return 1;
66 }
67
68 ima_template = template_desc;
69 return 1;
70}
71__setup("ima_template=", ima_template_setup);
Roberto Sassua71dc652013-06-07 12:16:33 +020072
73static struct ima_template_desc *lookup_template_desc(const char *name)
74{
75 int i;
76
77 for (i = 0; i < ARRAY_SIZE(defined_templates); i++) {
78 if (strcmp(defined_templates[i].name, name) == 0)
79 return defined_templates + i;
80 }
81
82 return NULL;
83}
84
Roberto Sassu3ce1217d2013-06-07 12:16:30 +020085static struct ima_template_field *lookup_template_field(const char *field_id)
Roberto Sassuadf53a72013-06-07 12:16:29 +020086{
87 int i;
88
89 for (i = 0; i < ARRAY_SIZE(supported_fields); i++)
90 if (strncmp(supported_fields[i].field_id, field_id,
91 IMA_TEMPLATE_FIELD_ID_MAX_LEN) == 0)
92 return &supported_fields[i];
93 return NULL;
94}
95
Roberto Sassudbc335d2013-11-25 20:18:52 +010096static int template_fmt_size(const char *template_fmt)
Roberto Sassuadf53a72013-06-07 12:16:29 +020097{
98 char c;
99 int template_fmt_len = strlen(template_fmt);
100 int i = 0, j = 0;
101
102 while (i < template_fmt_len) {
103 c = template_fmt[i];
104 if (c == '|')
105 j++;
106 i++;
107 }
108
109 return j + 1;
110}
111
Roberto Sassudbc335d2013-11-25 20:18:52 +0100112static int template_desc_init_fields(const char *template_fmt,
Roberto Sassuadf53a72013-06-07 12:16:29 +0200113 struct ima_template_field ***fields,
114 int *num_fields)
115{
Roberto Sassuaf917062013-11-27 14:40:41 +0100116 char *c, *template_fmt_copy, *template_fmt_ptr;
Roberto Sassu3ce1217d2013-06-07 12:16:30 +0200117 int template_num_fields = template_fmt_size(template_fmt);
Roberto Sassuadf53a72013-06-07 12:16:29 +0200118 int i, result = 0;
119
120 if (template_num_fields > IMA_TEMPLATE_NUM_FIELDS_MAX)
121 return -EINVAL;
122
Roberto Sassudbc335d2013-11-25 20:18:52 +0100123 /* copying is needed as strsep() modifies the original buffer */
124 template_fmt_copy = kstrdup(template_fmt, GFP_KERNEL);
125 if (template_fmt_copy == NULL)
126 return -ENOMEM;
127
Roberto Sassuadf53a72013-06-07 12:16:29 +0200128 *fields = kzalloc(template_num_fields * sizeof(*fields), GFP_KERNEL);
129 if (*fields == NULL) {
130 result = -ENOMEM;
131 goto out;
132 }
Roberto Sassuaf917062013-11-27 14:40:41 +0100133
134 template_fmt_ptr = template_fmt_copy;
135 for (i = 0; (c = strsep(&template_fmt_ptr, "|")) != NULL &&
Roberto Sassuadf53a72013-06-07 12:16:29 +0200136 i < template_num_fields; i++) {
Roberto Sassu3ce1217d2013-06-07 12:16:30 +0200137 struct ima_template_field *f = lookup_template_field(c);
Roberto Sassuadf53a72013-06-07 12:16:29 +0200138
139 if (!f) {
140 result = -ENOENT;
141 goto out;
142 }
143 (*fields)[i] = f;
144 }
145 *num_fields = i;
Roberto Sassuadf53a72013-06-07 12:16:29 +0200146out:
Roberto Sassudbc335d2013-11-25 20:18:52 +0100147 if (result < 0) {
148 kfree(*fields);
149 *fields = NULL;
150 }
151 kfree(template_fmt_copy);
Roberto Sassuadf53a72013-06-07 12:16:29 +0200152 return result;
153}
154
155static int init_defined_templates(void)
156{
157 int i = 0;
158 int result = 0;
159
160 /* Init defined templates. */
161 for (i = 0; i < ARRAY_SIZE(defined_templates); i++) {
162 struct ima_template_desc *template = &defined_templates[i];
163
164 result = template_desc_init_fields(template->fmt,
165 &(template->fields),
166 &(template->num_fields));
167 if (result < 0)
168 return result;
169 }
170 return result;
171}
172
Roberto Sassua71dc652013-06-07 12:16:33 +0200173struct ima_template_desc *ima_template_desc_current(void)
174{
175 if (!ima_template)
Mimi Zohar42865872013-06-07 12:16:34 +0200176 ima_template =
177 lookup_template_desc(CONFIG_IMA_DEFAULT_TEMPLATE);
Roberto Sassua71dc652013-06-07 12:16:33 +0200178 return ima_template;
179}
180
Roberto Sassuadf53a72013-06-07 12:16:29 +0200181int ima_init_template(void)
182{
183 int result;
184
185 result = init_defined_templates();
186 if (result < 0)
187 return result;
188
189 return 0;
190}