2 * Copyright (C) 2013 Politecnico di Torino, Italy
3 * TORSEC group -- http://security.polito.it
5 * Author: Roberto Sassu <roberto.sassu@polito.it>
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
12 * File: ima_template_lib.c
13 * Library of supported template fields.
15 #include <crypto/hash_info.h>
17 #include "ima_template_lib.h"
19 static bool ima_template_hash_algo_allowed(u8 algo
)
21 if (algo
== HASH_ALGO_SHA1
|| algo
== HASH_ALGO_MD5
)
29 DATA_FMT_DIGEST_WITH_ALGO
,
34 static int ima_write_template_field_data(const void *data
, const u32 datalen
,
35 enum data_formats datafmt
,
36 struct ima_field_data
*field_data
)
41 if (datafmt
== DATA_FMT_STRING
)
44 buf
= kzalloc(buflen
, GFP_KERNEL
);
48 memcpy(buf
, data
, datalen
);
51 * Replace all space characters with underscore for event names and
52 * strings. This avoid that, during the parsing of a measurements list,
53 * filenames with spaces or that end with the suffix ' (deleted)' are
54 * split into multiple template fields (the space is the delimitator
55 * character for measurements lists in ASCII format).
57 if (datafmt
== DATA_FMT_STRING
) {
58 for (buf_ptr
= buf
; buf_ptr
- buf
< datalen
; buf_ptr
++)
63 field_data
->data
= buf
;
64 field_data
->len
= buflen
;
68 static void ima_show_template_data_ascii(struct seq_file
*m
,
69 enum ima_show_type show
,
70 enum data_formats datafmt
,
71 struct ima_field_data
*field_data
)
73 u8
*buf_ptr
= field_data
->data
;
74 u32 buflen
= field_data
->len
;
77 case DATA_FMT_DIGEST_WITH_ALGO
:
78 buf_ptr
= strnchr(field_data
->data
, buflen
, ':');
79 if (buf_ptr
!= field_data
->data
)
80 seq_printf(m
, "%s", field_data
->data
);
82 /* skip ':' and '\0' */
84 buflen
-= buf_ptr
- field_data
->data
;
89 ima_print_digest(m
, buf_ptr
, buflen
);
92 seq_printf(m
, "%s", buf_ptr
);
99 static void ima_show_template_data_binary(struct seq_file
*m
,
100 enum ima_show_type show
,
101 enum data_formats datafmt
,
102 struct ima_field_data
*field_data
)
104 u32 len
= (show
== IMA_SHOW_BINARY_OLD_STRING_FMT
) ?
105 strlen(field_data
->data
) : field_data
->len
;
107 if (show
!= IMA_SHOW_BINARY_NO_FIELD_LEN
)
108 ima_putc(m
, &len
, sizeof(len
));
113 ima_putc(m
, field_data
->data
, len
);
116 static void ima_show_template_field_data(struct seq_file
*m
,
117 enum ima_show_type show
,
118 enum data_formats datafmt
,
119 struct ima_field_data
*field_data
)
123 ima_show_template_data_ascii(m
, show
, datafmt
, field_data
);
125 case IMA_SHOW_BINARY
:
126 case IMA_SHOW_BINARY_NO_FIELD_LEN
:
127 case IMA_SHOW_BINARY_OLD_STRING_FMT
:
128 ima_show_template_data_binary(m
, show
, datafmt
, field_data
);
135 void ima_show_template_digest(struct seq_file
*m
, enum ima_show_type show
,
136 struct ima_field_data
*field_data
)
138 ima_show_template_field_data(m
, show
, DATA_FMT_DIGEST
, field_data
);
141 void ima_show_template_digest_ng(struct seq_file
*m
, enum ima_show_type show
,
142 struct ima_field_data
*field_data
)
144 ima_show_template_field_data(m
, show
, DATA_FMT_DIGEST_WITH_ALGO
,
148 void ima_show_template_string(struct seq_file
*m
, enum ima_show_type show
,
149 struct ima_field_data
*field_data
)
151 ima_show_template_field_data(m
, show
, DATA_FMT_STRING
, field_data
);
154 void ima_show_template_sig(struct seq_file
*m
, enum ima_show_type show
,
155 struct ima_field_data
*field_data
)
157 ima_show_template_field_data(m
, show
, DATA_FMT_HEX
, field_data
);
160 static int ima_eventdigest_init_common(u8
*digest
, u32 digestsize
, u8 hash_algo
,
161 struct ima_field_data
*field_data
)
165 * - DATA_FMT_DIGEST: digest
166 * - DATA_FMT_DIGEST_WITH_ALGO: [<hash algo>] + ':' + '\0' + digest,
167 * where <hash algo> is provided if the hash algoritm is not
170 u8 buffer
[CRYPTO_MAX_ALG_NAME
+ 2 + IMA_MAX_DIGEST_SIZE
] = { 0 };
171 enum data_formats fmt
= DATA_FMT_DIGEST
;
174 if (hash_algo
< HASH_ALGO__LAST
) {
175 fmt
= DATA_FMT_DIGEST_WITH_ALGO
;
176 offset
+= snprintf(buffer
, CRYPTO_MAX_ALG_NAME
+ 1, "%s",
177 hash_algo_name
[hash_algo
]);
178 buffer
[offset
] = ':';
183 memcpy(buffer
+ offset
, digest
, digestsize
);
186 * If digest is NULL, the event being recorded is a violation.
187 * Make room for the digest by increasing the offset of
190 offset
+= IMA_DIGEST_SIZE
;
192 return ima_write_template_field_data(buffer
, offset
+ digestsize
,
197 * This function writes the digest of an event (with size limit).
199 int ima_eventdigest_init(struct ima_event_data
*event_data
,
200 struct ima_field_data
*field_data
)
203 struct ima_digest_data hdr
;
204 char digest
[IMA_MAX_DIGEST_SIZE
];
206 u8
*cur_digest
= NULL
;
207 u32 cur_digestsize
= 0;
211 memset(&hash
, 0, sizeof(hash
));
213 if (event_data
->violation
) /* recording a violation. */
216 if (ima_template_hash_algo_allowed(event_data
->iint
->ima_hash
->algo
)) {
217 cur_digest
= event_data
->iint
->ima_hash
->digest
;
218 cur_digestsize
= event_data
->iint
->ima_hash
->length
;
222 if (!event_data
->file
) /* missing info to re-calculate the digest */
225 inode
= file_inode(event_data
->file
);
226 hash
.hdr
.algo
= ima_template_hash_algo_allowed(ima_hash_algo
) ?
227 ima_hash_algo
: HASH_ALGO_SHA1
;
228 result
= ima_calc_file_hash(event_data
->file
, &hash
.hdr
);
230 integrity_audit_msg(AUDIT_INTEGRITY_DATA
, inode
,
231 event_data
->filename
, "collect_data",
232 "failed", result
, 0);
235 cur_digest
= hash
.hdr
.digest
;
236 cur_digestsize
= hash
.hdr
.length
;
238 return ima_eventdigest_init_common(cur_digest
, cur_digestsize
,
239 HASH_ALGO__LAST
, field_data
);
243 * This function writes the digest of an event (without size limit).
245 int ima_eventdigest_ng_init(struct ima_event_data
*event_data
,
246 struct ima_field_data
*field_data
)
248 u8
*cur_digest
= NULL
, hash_algo
= HASH_ALGO_SHA1
;
249 u32 cur_digestsize
= 0;
251 if (event_data
->violation
) /* recording a violation. */
254 cur_digest
= event_data
->iint
->ima_hash
->digest
;
255 cur_digestsize
= event_data
->iint
->ima_hash
->length
;
257 hash_algo
= event_data
->iint
->ima_hash
->algo
;
259 return ima_eventdigest_init_common(cur_digest
, cur_digestsize
,
260 hash_algo
, field_data
);
263 static int ima_eventname_init_common(struct ima_event_data
*event_data
,
264 struct ima_field_data
*field_data
,
267 const char *cur_filename
= NULL
;
268 u32 cur_filename_len
= 0;
270 BUG_ON(event_data
->filename
== NULL
&& event_data
->file
== NULL
);
272 if (event_data
->filename
) {
273 cur_filename
= event_data
->filename
;
274 cur_filename_len
= strlen(event_data
->filename
);
276 if (!size_limit
|| cur_filename_len
<= IMA_EVENT_NAME_LEN_MAX
)
280 if (event_data
->file
) {
281 cur_filename
= event_data
->file
->f_path
.dentry
->d_name
.name
;
282 cur_filename_len
= strlen(cur_filename
);
285 * Truncate filename if the latter is too long and
286 * the file descriptor is not available.
288 cur_filename_len
= IMA_EVENT_NAME_LEN_MAX
;
290 return ima_write_template_field_data(cur_filename
, cur_filename_len
,
291 DATA_FMT_STRING
, field_data
);
295 * This function writes the name of an event (with size limit).
297 int ima_eventname_init(struct ima_event_data
*event_data
,
298 struct ima_field_data
*field_data
)
300 return ima_eventname_init_common(event_data
, field_data
, true);
304 * This function writes the name of an event (without size limit).
306 int ima_eventname_ng_init(struct ima_event_data
*event_data
,
307 struct ima_field_data
*field_data
)
309 return ima_eventname_init_common(event_data
, field_data
, false);
313 * ima_eventsig_init - include the file signature as part of the template data
315 int ima_eventsig_init(struct ima_event_data
*event_data
,
316 struct ima_field_data
*field_data
)
318 enum data_formats fmt
= DATA_FMT_HEX
;
319 struct evm_ima_xattr_data
*xattr_value
= event_data
->xattr_value
;
320 int xattr_len
= event_data
->xattr_len
;
323 if ((!xattr_value
) || (xattr_value
->type
!= EVM_IMA_XATTR_DIGSIG
))
326 rc
= ima_write_template_field_data(xattr_value
, xattr_len
, fmt
,