blob: b34cec78ffb3d69b9d65a104420ed1a12323064c [file] [log] [blame]
Mimi Zoharbab73932009-02-04 09:06:59 -05001/*
2 * Copyright (C) 2005,2006,2007,2008 IBM Corporation
3 *
4 * Authors:
5 * Kylene Hall <kjhall@us.ibm.com>
6 * Reiner Sailer <sailer@us.ibm.com>
7 * Mimi Zohar <zohar@us.ibm.com>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation, version 2 of the
12 * License.
13 *
14 * File: ima_fs.c
15 * implemenents security file system for reporting
16 * current measurement list and IMA statistics
17 */
Petr Vorelde636762018-04-24 16:30:38 +020018
19#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20
Eric Parisf850a7c2009-05-12 15:13:55 -040021#include <linux/fcntl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Mimi Zoharbab73932009-02-04 09:06:59 -050023#include <linux/module.h>
24#include <linux/seq_file.h>
25#include <linux/rculist.h>
26#include <linux/rcupdate.h>
Mimi Zohar4af46622009-02-04 09:07:00 -050027#include <linux/parser.h>
Dmitry Kasatkin7429b0922014-04-11 17:47:01 +030028#include <linux/vmalloc.h>
Mimi Zoharbab73932009-02-04 09:06:59 -050029
30#include "ima.h"
31
Petko Manolov38d859f2015-12-02 17:47:54 +020032static DEFINE_MUTEX(ima_write_mutex);
33
Mimi Zohard68a6fe2016-12-19 16:22:57 -080034bool ima_canonical_fmt;
35static int __init default_canonical_fmt_setup(char *str)
36{
37#ifdef __BIG_ENDIAN
Thomas Meyer39adb922017-10-07 16:02:21 +020038 ima_canonical_fmt = true;
Mimi Zohard68a6fe2016-12-19 16:22:57 -080039#endif
40 return 1;
41}
42__setup("ima_canonical_fmt", default_canonical_fmt_setup);
43
Mimi Zohar4af46622009-02-04 09:07:00 -050044static int valid_policy = 1;
Mimi Zoharbab73932009-02-04 09:06:59 -050045#define TMPBUFLEN 12
46static ssize_t ima_show_htable_value(char __user *buf, size_t count,
47 loff_t *ppos, atomic_long_t *val)
48{
49 char tmpbuf[TMPBUFLEN];
50 ssize_t len;
51
52 len = scnprintf(tmpbuf, TMPBUFLEN, "%li\n", atomic_long_read(val));
53 return simple_read_from_buffer(buf, count, ppos, tmpbuf, len);
54}
55
56static ssize_t ima_show_htable_violations(struct file *filp,
57 char __user *buf,
58 size_t count, loff_t *ppos)
59{
60 return ima_show_htable_value(buf, count, ppos, &ima_htable.violations);
61}
62
Alexey Dobriyan828c0952009-10-01 15:43:56 -070063static const struct file_operations ima_htable_violations_ops = {
Arnd Bergmanncdcd90f2010-07-07 23:40:15 +020064 .read = ima_show_htable_violations,
65 .llseek = generic_file_llseek,
Mimi Zoharbab73932009-02-04 09:06:59 -050066};
67
68static ssize_t ima_show_measurements_count(struct file *filp,
69 char __user *buf,
70 size_t count, loff_t *ppos)
71{
72 return ima_show_htable_value(buf, count, ppos, &ima_htable.len);
73
74}
75
Alexey Dobriyan828c0952009-10-01 15:43:56 -070076static const struct file_operations ima_measurements_count_ops = {
Arnd Bergmanncdcd90f2010-07-07 23:40:15 +020077 .read = ima_show_measurements_count,
78 .llseek = generic_file_llseek,
Mimi Zoharbab73932009-02-04 09:06:59 -050079};
80
81/* returns pointer to hlist_node */
82static void *ima_measurements_start(struct seq_file *m, loff_t *pos)
83{
84 loff_t l = *pos;
85 struct ima_queue_entry *qe;
86
87 /* we need a lock since pos could point beyond last element */
88 rcu_read_lock();
89 list_for_each_entry_rcu(qe, &ima_measurements, later) {
90 if (!l--) {
91 rcu_read_unlock();
92 return qe;
93 }
94 }
95 rcu_read_unlock();
96 return NULL;
97}
98
99static void *ima_measurements_next(struct seq_file *m, void *v, loff_t *pos)
100{
101 struct ima_queue_entry *qe = v;
102
103 /* lock protects when reading beyond last element
104 * against concurrent list-extension
105 */
106 rcu_read_lock();
Dmitry Kasatkin089bc8e2013-10-10 15:56:13 +0900107 qe = list_entry_rcu(qe->later.next, struct ima_queue_entry, later);
Mimi Zoharbab73932009-02-04 09:06:59 -0500108 rcu_read_unlock();
109 (*pos)++;
110
111 return (&qe->later == &ima_measurements) ? NULL : qe;
112}
113
114static void ima_measurements_stop(struct seq_file *m, void *v)
115{
116}
117
Roberto Sassu3ce1217d2013-06-07 12:16:30 +0200118void ima_putc(struct seq_file *m, void *data, int datalen)
Mimi Zoharbab73932009-02-04 09:06:59 -0500119{
120 while (datalen--)
121 seq_putc(m, *(char *)data++);
122}
123
124/* print format:
125 * 32bit-le=pcr#
126 * char[20]=template digest
127 * 32bit-le=template name size
128 * char[n]=template name
Roberto Sassua71dc652013-06-07 12:16:33 +0200129 * [eventdata length]
Mimi Zoharbab73932009-02-04 09:06:59 -0500130 * eventdata[n]=template specific data
131 */
Mimi Zohar7b8589c2016-12-19 16:22:48 -0800132int ima_measurements_show(struct seq_file *m, void *v)
Mimi Zoharbab73932009-02-04 09:06:59 -0500133{
134 /* the list never shrinks, so we don't need a lock here */
135 struct ima_queue_entry *qe = v;
136 struct ima_template_entry *e;
Roberto Sassu7dbdb422014-10-13 14:08:39 +0200137 char *template_name;
Mimi Zohard68a6fe2016-12-19 16:22:57 -0800138 u32 pcr, namelen, template_data_len; /* temporary fields */
Roberto Sassu3e8e5502013-11-08 19:21:40 +0100139 bool is_ima_template = false;
Roberto Sassua71dc652013-06-07 12:16:33 +0200140 int i;
Mimi Zoharbab73932009-02-04 09:06:59 -0500141
142 /* get entry */
143 e = qe->entry;
144 if (e == NULL)
145 return -1;
146
Roberto Sassu7dbdb422014-10-13 14:08:39 +0200147 template_name = (e->template_desc->name[0] != '\0') ?
148 e->template_desc->name : e->template_desc->fmt;
149
Mimi Zoharbab73932009-02-04 09:06:59 -0500150 /*
151 * 1st: PCRIndex
Eric Richter5f6f0272016-06-01 13:14:04 -0500152 * PCR used defaults to the same (config option) in
153 * little-endian format, unless set in policy
Mimi Zoharbab73932009-02-04 09:06:59 -0500154 */
Mimi Zohard68a6fe2016-12-19 16:22:57 -0800155 pcr = !ima_canonical_fmt ? e->pcr : cpu_to_le32(e->pcr);
156 ima_putc(m, &pcr, sizeof(e->pcr));
Mimi Zoharbab73932009-02-04 09:06:59 -0500157
158 /* 2nd: template digest */
Mimi Zohar140d8022013-03-11 20:29:47 -0400159 ima_putc(m, e->digest, TPM_DIGEST_SIZE);
Mimi Zoharbab73932009-02-04 09:06:59 -0500160
161 /* 3rd: template name size */
Mimi Zohard68a6fe2016-12-19 16:22:57 -0800162 namelen = !ima_canonical_fmt ? strlen(template_name) :
163 cpu_to_le32(strlen(template_name));
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200164 ima_putc(m, &namelen, sizeof(namelen));
Mimi Zoharbab73932009-02-04 09:06:59 -0500165
166 /* 4th: template name */
Mimi Zohard68a6fe2016-12-19 16:22:57 -0800167 ima_putc(m, template_name, strlen(template_name));
Mimi Zoharbab73932009-02-04 09:06:59 -0500168
Roberto Sassua71dc652013-06-07 12:16:33 +0200169 /* 5th: template length (except for 'ima' template) */
Roberto Sassu7dbdb422014-10-13 14:08:39 +0200170 if (strcmp(template_name, IMA_TEMPLATE_IMA_NAME) == 0)
Roberto Sassu3e8e5502013-11-08 19:21:40 +0100171 is_ima_template = true;
172
Mimi Zohard68a6fe2016-12-19 16:22:57 -0800173 if (!is_ima_template) {
174 template_data_len = !ima_canonical_fmt ? e->template_data_len :
175 cpu_to_le32(e->template_data_len);
176 ima_putc(m, &template_data_len, sizeof(e->template_data_len));
177 }
Roberto Sassua71dc652013-06-07 12:16:33 +0200178
179 /* 6th: template specific data */
180 for (i = 0; i < e->template_desc->num_fields; i++) {
Roberto Sassu3e8e5502013-11-08 19:21:40 +0100181 enum ima_show_type show = IMA_SHOW_BINARY;
182 struct ima_template_field *field = e->template_desc->fields[i];
183
184 if (is_ima_template && strcmp(field->field_id, "d") == 0)
185 show = IMA_SHOW_BINARY_NO_FIELD_LEN;
Roberto Sassuc019e302014-02-03 13:56:04 +0100186 if (is_ima_template && strcmp(field->field_id, "n") == 0)
187 show = IMA_SHOW_BINARY_OLD_STRING_FMT;
Roberto Sassu3e8e5502013-11-08 19:21:40 +0100188 field->field_show(m, show, &e->template_data[i]);
Roberto Sassua71dc652013-06-07 12:16:33 +0200189 }
Mimi Zoharbab73932009-02-04 09:06:59 -0500190 return 0;
191}
192
James Morris88e9d342009-09-22 16:43:43 -0700193static const struct seq_operations ima_measurments_seqops = {
Mimi Zoharbab73932009-02-04 09:06:59 -0500194 .start = ima_measurements_start,
195 .next = ima_measurements_next,
196 .stop = ima_measurements_stop,
197 .show = ima_measurements_show
198};
199
200static int ima_measurements_open(struct inode *inode, struct file *file)
201{
202 return seq_open(file, &ima_measurments_seqops);
203}
204
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700205static const struct file_operations ima_measurements_ops = {
Mimi Zoharbab73932009-02-04 09:06:59 -0500206 .open = ima_measurements_open,
207 .read = seq_read,
208 .llseek = seq_lseek,
209 .release = seq_release,
210};
211
Mimi Zohar45b26132015-06-11 11:54:42 -0400212void ima_print_digest(struct seq_file *m, u8 *digest, u32 size)
Mimi Zoharbab73932009-02-04 09:06:59 -0500213{
Mimi Zohar45b26132015-06-11 11:54:42 -0400214 u32 i;
Mimi Zoharbab73932009-02-04 09:06:59 -0500215
Mimi Zohar140d8022013-03-11 20:29:47 -0400216 for (i = 0; i < size; i++)
Mimi Zoharbab73932009-02-04 09:06:59 -0500217 seq_printf(m, "%02x", *(digest + i));
218}
219
Mimi Zoharbab73932009-02-04 09:06:59 -0500220/* print in ascii */
221static int ima_ascii_measurements_show(struct seq_file *m, void *v)
222{
223 /* the list never shrinks, so we don't need a lock here */
224 struct ima_queue_entry *qe = v;
225 struct ima_template_entry *e;
Roberto Sassu7dbdb422014-10-13 14:08:39 +0200226 char *template_name;
Roberto Sassua71dc652013-06-07 12:16:33 +0200227 int i;
Mimi Zoharbab73932009-02-04 09:06:59 -0500228
229 /* get entry */
230 e = qe->entry;
231 if (e == NULL)
232 return -1;
233
Roberto Sassu7dbdb422014-10-13 14:08:39 +0200234 template_name = (e->template_desc->name[0] != '\0') ?
235 e->template_desc->name : e->template_desc->fmt;
236
Mimi Zoharbab73932009-02-04 09:06:59 -0500237 /* 1st: PCR used (config option) */
Eric Richter5f6f0272016-06-01 13:14:04 -0500238 seq_printf(m, "%2d ", e->pcr);
Mimi Zoharbab73932009-02-04 09:06:59 -0500239
240 /* 2nd: SHA1 template hash */
Mimi Zohar140d8022013-03-11 20:29:47 -0400241 ima_print_digest(m, e->digest, TPM_DIGEST_SIZE);
Mimi Zoharbab73932009-02-04 09:06:59 -0500242
243 /* 3th: template name */
Roberto Sassu7dbdb422014-10-13 14:08:39 +0200244 seq_printf(m, " %s", template_name);
Mimi Zoharbab73932009-02-04 09:06:59 -0500245
246 /* 4th: template specific data */
Roberto Sassua71dc652013-06-07 12:16:33 +0200247 for (i = 0; i < e->template_desc->num_fields; i++) {
248 seq_puts(m, " ");
249 if (e->template_data[i].len == 0)
250 continue;
251
252 e->template_desc->fields[i]->field_show(m, IMA_SHOW_ASCII,
253 &e->template_data[i]);
254 }
255 seq_puts(m, "\n");
Mimi Zoharbab73932009-02-04 09:06:59 -0500256 return 0;
257}
258
James Morris88e9d342009-09-22 16:43:43 -0700259static const struct seq_operations ima_ascii_measurements_seqops = {
Mimi Zoharbab73932009-02-04 09:06:59 -0500260 .start = ima_measurements_start,
261 .next = ima_measurements_next,
262 .stop = ima_measurements_stop,
263 .show = ima_ascii_measurements_show
264};
265
266static int ima_ascii_measurements_open(struct inode *inode, struct file *file)
267{
268 return seq_open(file, &ima_ascii_measurements_seqops);
269}
270
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700271static const struct file_operations ima_ascii_measurements_ops = {
Mimi Zoharbab73932009-02-04 09:06:59 -0500272 .open = ima_ascii_measurements_open,
273 .read = seq_read,
274 .llseek = seq_lseek,
275 .release = seq_release,
276};
277
Dmitry Kasatkin7429b0922014-04-11 17:47:01 +0300278static ssize_t ima_read_policy(char *path)
279{
280 void *data;
281 char *datap;
282 loff_t size;
283 int rc, pathlen = strlen(path);
284
285 char *p;
286
287 /* remove \n */
288 datap = path;
289 strsep(&datap, "\n");
290
291 rc = kernel_read_file_from_path(path, &data, &size, 0, READING_POLICY);
292 if (rc < 0) {
293 pr_err("Unable to open file: %s (%d)", path, rc);
294 return rc;
295 }
296
297 datap = data;
298 while (size > 0 && (p = strsep(&datap, "\n"))) {
299 pr_debug("rule: %s\n", p);
300 rc = ima_parse_add_rule(p);
301 if (rc < 0)
302 break;
303 size -= rc;
304 }
305
306 vfree(data);
307 if (rc < 0)
308 return rc;
309 else if (size)
310 return -EINVAL;
311 else
312 return pathlen;
313}
314
Mimi Zohar4af46622009-02-04 09:07:00 -0500315static ssize_t ima_write_policy(struct file *file, const char __user *buf,
316 size_t datalen, loff_t *ppos)
317{
Petko Manolov6427e6c2016-01-03 17:36:38 +0200318 char *data;
Eric Paris6ccd0452010-04-20 10:20:54 -0400319 ssize_t result;
Mimi Zohar4af46622009-02-04 09:07:00 -0500320
321 if (datalen >= PAGE_SIZE)
Eric Paris6ccd0452010-04-20 10:20:54 -0400322 datalen = PAGE_SIZE - 1;
323
324 /* No partial writes. */
325 result = -EINVAL;
326 if (*ppos != 0)
327 goto out;
328
Geliang Tangb4e28032017-05-06 23:40:18 +0800329 data = memdup_user_nul(buf, datalen);
330 if (IS_ERR(data)) {
331 result = PTR_ERR(data);
Eric Paris6ccd0452010-04-20 10:20:54 -0400332 goto out;
Geliang Tangb4e28032017-05-06 23:40:18 +0800333 }
Eric Paris6ccd0452010-04-20 10:20:54 -0400334
Petko Manolov6427e6c2016-01-03 17:36:38 +0200335 result = mutex_lock_interruptible(&ima_write_mutex);
336 if (result < 0)
337 goto out_free;
Petko Manolov6427e6c2016-01-03 17:36:38 +0200338
Mimi Zohar19f8a842016-01-15 10:17:12 -0500339 if (data[0] == '/') {
Dmitry Kasatkin7429b0922014-04-11 17:47:01 +0300340 result = ima_read_policy(data);
Mimi Zohar19f8a842016-01-15 10:17:12 -0500341 } else if (ima_appraise & IMA_APPRAISE_POLICY) {
Petr Vorelde636762018-04-24 16:30:38 +0200342 pr_err("signed policy file (specified as an absolute pathname) required\n");
Mimi Zohar19f8a842016-01-15 10:17:12 -0500343 integrity_audit_msg(AUDIT_INTEGRITY_STATUS, NULL, NULL,
344 "policy_update", "signed policy required",
345 1, 0);
346 if (ima_appraise & IMA_APPRAISE_ENFORCE)
347 result = -EACCES;
348 } else {
Dmitry Kasatkin7429b0922014-04-11 17:47:01 +0300349 result = ima_parse_add_rule(data);
Mimi Zohar19f8a842016-01-15 10:17:12 -0500350 }
Dmitry Kasatkin7429b0922014-04-11 17:47:01 +0300351 mutex_unlock(&ima_write_mutex);
Petko Manolov6427e6c2016-01-03 17:36:38 +0200352out_free:
353 kfree(data);
Eric Paris6ccd0452010-04-20 10:20:54 -0400354out:
355 if (result < 0)
356 valid_policy = 0;
Petko Manolov38d859f2015-12-02 17:47:54 +0200357
Eric Paris6ccd0452010-04-20 10:20:54 -0400358 return result;
Mimi Zohar4af46622009-02-04 09:07:00 -0500359}
360
Mimi Zoharbab73932009-02-04 09:06:59 -0500361static struct dentry *ima_dir;
362static struct dentry *binary_runtime_measurements;
363static struct dentry *ascii_runtime_measurements;
364static struct dentry *runtime_measurements_count;
365static struct dentry *violations;
Mimi Zohar4af46622009-02-04 09:07:00 -0500366static struct dentry *ima_policy;
367
Dmitry Kasatkin0716abb2014-10-03 14:40:21 +0300368enum ima_fs_flags {
369 IMA_FS_BUSY,
370};
371
372static unsigned long ima_fs_flags;
373
Petko Manolov80eae202015-12-02 17:47:56 +0200374#ifdef CONFIG_IMA_READ_POLICY
375static const struct seq_operations ima_policy_seqops = {
376 .start = ima_policy_start,
377 .next = ima_policy_next,
378 .stop = ima_policy_stop,
379 .show = ima_policy_show,
380};
381#endif
382
Mimi Zoharf4bd8572009-02-04 09:07:01 -0500383/*
384 * ima_open_policy: sequentialize access to the policy file
385 */
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200386static int ima_open_policy(struct inode *inode, struct file *filp)
Mimi Zoharf4bd8572009-02-04 09:07:01 -0500387{
Petko Manolov80eae202015-12-02 17:47:56 +0200388 if (!(filp->f_flags & O_WRONLY)) {
389#ifndef CONFIG_IMA_READ_POLICY
Eric Parisf850a7c2009-05-12 15:13:55 -0400390 return -EACCES;
Petko Manolov80eae202015-12-02 17:47:56 +0200391#else
392 if ((filp->f_flags & O_ACCMODE) != O_RDONLY)
393 return -EACCES;
394 if (!capable(CAP_SYS_ADMIN))
395 return -EPERM;
396 return seq_open(filp, &ima_policy_seqops);
397#endif
398 }
Dmitry Kasatkin0716abb2014-10-03 14:40:21 +0300399 if (test_and_set_bit(IMA_FS_BUSY, &ima_fs_flags))
400 return -EBUSY;
401 return 0;
Mimi Zoharf4bd8572009-02-04 09:07:01 -0500402}
403
Mimi Zohar4af46622009-02-04 09:07:00 -0500404/*
405 * ima_release_policy - start using the new measure policy rules.
406 *
407 * Initially, ima_measure points to the default policy rules, now
Mimi Zoharf4bd8572009-02-04 09:07:01 -0500408 * point to the new policy rules, and remove the securityfs policy file,
409 * assuming a valid policy.
Mimi Zohar4af46622009-02-04 09:07:00 -0500410 */
411static int ima_release_policy(struct inode *inode, struct file *file)
412{
Dmitry Kasatkin0716abb2014-10-03 14:40:21 +0300413 const char *cause = valid_policy ? "completed" : "failed";
414
Petko Manolov80eae202015-12-02 17:47:56 +0200415 if ((file->f_flags & O_ACCMODE) == O_RDONLY)
Eric Richter9a11a182016-10-13 17:47:36 -0500416 return seq_release(inode, file);
Petko Manolov80eae202015-12-02 17:47:56 +0200417
Sasha Levin01127212015-12-22 08:51:23 -0500418 if (valid_policy && ima_check_policy() < 0) {
419 cause = "failed";
420 valid_policy = 0;
421 }
422
Petr Vorelde636762018-04-24 16:30:38 +0200423 pr_info("policy update %s\n", cause);
Dmitry Kasatkin0716abb2014-10-03 14:40:21 +0300424 integrity_audit_msg(AUDIT_INTEGRITY_STATUS, NULL, NULL,
425 "policy_update", cause, !valid_policy, 0);
426
Mimi Zohar4af46622009-02-04 09:07:00 -0500427 if (!valid_policy) {
428 ima_delete_rules();
Mimi Zoharf4bd8572009-02-04 09:07:01 -0500429 valid_policy = 1;
Dmitry Kasatkin0716abb2014-10-03 14:40:21 +0300430 clear_bit(IMA_FS_BUSY, &ima_fs_flags);
Mimi Zohar4af46622009-02-04 09:07:00 -0500431 return 0;
432 }
Petko Manolov80eae202015-12-02 17:47:56 +0200433
Mimi Zohar4af46622009-02-04 09:07:00 -0500434 ima_update_policy();
Mimi Zohar20686262017-06-27 16:10:39 -0400435#if !defined(CONFIG_IMA_WRITE_POLICY) && !defined(CONFIG_IMA_READ_POLICY)
Mimi Zohar4af46622009-02-04 09:07:00 -0500436 securityfs_remove(ima_policy);
437 ima_policy = NULL;
Mimi Zohar20686262017-06-27 16:10:39 -0400438#elif defined(CONFIG_IMA_WRITE_POLICY)
Petko Manolov38d859f2015-12-02 17:47:54 +0200439 clear_bit(IMA_FS_BUSY, &ima_fs_flags);
Petr Vorelffb122d2018-04-20 15:28:57 +0200440#elif defined(CONFIG_IMA_READ_POLICY)
441 inode->i_mode &= ~S_IWUSR;
Petko Manolov38d859f2015-12-02 17:47:54 +0200442#endif
Mimi Zohar4af46622009-02-04 09:07:00 -0500443 return 0;
444}
445
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700446static const struct file_operations ima_measure_policy_ops = {
Mimi Zoharf4bd8572009-02-04 09:07:01 -0500447 .open = ima_open_policy,
Mimi Zohar4af46622009-02-04 09:07:00 -0500448 .write = ima_write_policy,
Petko Manolov80eae202015-12-02 17:47:56 +0200449 .read = seq_read,
Arnd Bergmanncdcd90f2010-07-07 23:40:15 +0200450 .release = ima_release_policy,
451 .llseek = generic_file_llseek,
Mimi Zohar4af46622009-02-04 09:07:00 -0500452};
Mimi Zoharbab73932009-02-04 09:06:59 -0500453
Eric Paris932995f2009-05-21 15:43:32 -0400454int __init ima_fs_init(void)
Mimi Zoharbab73932009-02-04 09:06:59 -0500455{
456 ima_dir = securityfs_create_dir("ima", NULL);
457 if (IS_ERR(ima_dir))
458 return -1;
459
460 binary_runtime_measurements =
461 securityfs_create_file("binary_runtime_measurements",
462 S_IRUSR | S_IRGRP, ima_dir, NULL,
463 &ima_measurements_ops);
464 if (IS_ERR(binary_runtime_measurements))
465 goto out;
466
467 ascii_runtime_measurements =
468 securityfs_create_file("ascii_runtime_measurements",
469 S_IRUSR | S_IRGRP, ima_dir, NULL,
470 &ima_ascii_measurements_ops);
471 if (IS_ERR(ascii_runtime_measurements))
472 goto out;
473
474 runtime_measurements_count =
475 securityfs_create_file("runtime_measurements_count",
476 S_IRUSR | S_IRGRP, ima_dir, NULL,
477 &ima_measurements_count_ops);
478 if (IS_ERR(runtime_measurements_count))
479 goto out;
480
481 violations =
482 securityfs_create_file("violations", S_IRUSR | S_IRGRP,
483 ima_dir, NULL, &ima_htable_violations_ops);
484 if (IS_ERR(violations))
485 goto out;
486
Petko Manolov80eae202015-12-02 17:47:56 +0200487 ima_policy = securityfs_create_file("policy", POLICY_FILE_FLAGS,
Mimi Zohar4af46622009-02-04 09:07:00 -0500488 ima_dir, NULL,
489 &ima_measure_policy_ops);
490 if (IS_ERR(ima_policy))
491 goto out;
Mimi Zoharbab73932009-02-04 09:06:59 -0500492
Mimi Zohar4af46622009-02-04 09:07:00 -0500493 return 0;
Mimi Zoharbab73932009-02-04 09:06:59 -0500494out:
Dmitry Kasatkin0ea4f8a2012-01-29 19:19:08 -0500495 securityfs_remove(violations);
Mimi Zoharbab73932009-02-04 09:06:59 -0500496 securityfs_remove(runtime_measurements_count);
497 securityfs_remove(ascii_runtime_measurements);
498 securityfs_remove(binary_runtime_measurements);
499 securityfs_remove(ima_dir);
Mimi Zohar4af46622009-02-04 09:07:00 -0500500 securityfs_remove(ima_policy);
Mimi Zoharbab73932009-02-04 09:06:59 -0500501 return -1;
502}