blob: 63f6b52cb1c26810acaa32f37c5fbb296fac852b [file] [log] [blame]
Roberto Sassu3ce1217d2013-06-07 12:16:30 +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_lib.h
13 * Header for the library of supported template fields.
14 */
15#ifndef __LINUX_IMA_TEMPLATE_LIB_H
16#define __LINUX_IMA_TEMPLATE_LIB_H
17
18#include <linux/seq_file.h>
19#include "ima.h"
20
21void ima_show_template_digest(struct seq_file *m, enum ima_show_type show,
22 struct ima_field_data *field_data);
Roberto Sassu4d7aeee2013-06-07 12:16:32 +020023void ima_show_template_digest_ng(struct seq_file *m, enum ima_show_type show,
24 struct ima_field_data *field_data);
Roberto Sassu3ce1217d2013-06-07 12:16:30 +020025void ima_show_template_string(struct seq_file *m, enum ima_show_type show,
26 struct ima_field_data *field_data);
Mimi Zoharbcbc9b02013-07-23 11:15:00 -040027void ima_show_template_sig(struct seq_file *m, enum ima_show_type show,
28 struct ima_field_data *field_data);
Roberto Sassu3ce1217d2013-06-07 12:16:30 +020029int ima_eventdigest_init(struct integrity_iint_cache *iint, struct file *file,
30 const unsigned char *filename,
Mimi Zoharbcbc9b02013-07-23 11:15:00 -040031 struct evm_ima_xattr_data *xattr_value, int xattr_len,
Roberto Sassu3ce1217d2013-06-07 12:16:30 +020032 struct ima_field_data *field_data);
33int ima_eventname_init(struct integrity_iint_cache *iint, struct file *file,
34 const unsigned char *filename,
Mimi Zoharbcbc9b02013-07-23 11:15:00 -040035 struct evm_ima_xattr_data *xattr_value, int xattr_len,
Roberto Sassu3ce1217d2013-06-07 12:16:30 +020036 struct ima_field_data *field_data);
Roberto Sassu4d7aeee2013-06-07 12:16:32 +020037int ima_eventdigest_ng_init(struct integrity_iint_cache *iint,
38 struct file *file, const unsigned char *filename,
Mimi Zoharbcbc9b02013-07-23 11:15:00 -040039 struct evm_ima_xattr_data *xattr_value,
40 int xattr_len, struct ima_field_data *field_data);
Roberto Sassu4d7aeee2013-06-07 12:16:32 +020041int ima_eventname_ng_init(struct integrity_iint_cache *iint, struct file *file,
42 const unsigned char *filename,
Mimi Zoharbcbc9b02013-07-23 11:15:00 -040043 struct evm_ima_xattr_data *xattr_value, int xattr_len,
Roberto Sassu4d7aeee2013-06-07 12:16:32 +020044 struct ima_field_data *field_data);
Mimi Zoharbcbc9b02013-07-23 11:15:00 -040045int ima_eventsig_init(struct integrity_iint_cache *iint, struct file *file,
46 const unsigned char *filename,
47 struct evm_ima_xattr_data *xattr_value, int xattr_len,
48 struct ima_field_data *field_data);
Roberto Sassu3ce1217d2013-06-07 12:16:30 +020049#endif /* __LINUX_IMA_TEMPLATE_LIB_H */