Home
last modified time | relevance | path

Searched refs:iint (Results 1 – 10 of 10) sorted by relevance

/security/integrity/
Diint.c35 struct integrity_iint_cache *iint; in __integrity_iint_find() local
39 iint = rb_entry(n, struct integrity_iint_cache, rb_node); in __integrity_iint_find()
41 if (inode < iint->inode) in __integrity_iint_find()
43 else if (inode > iint->inode) in __integrity_iint_find()
51 return iint; in __integrity_iint_find()
59 struct integrity_iint_cache *iint; in integrity_iint_find() local
65 iint = __integrity_iint_find(inode); in integrity_iint_find()
68 return iint; in integrity_iint_find()
71 static void iint_free(struct integrity_iint_cache *iint) in iint_free() argument
73 kfree(iint->ima_hash); in iint_free()
[all …]
DMakefile8 integrity-y := iint.o
/security/integrity/ima/
Dima_appraise.c60 struct integrity_iint_cache *iint) in ima_fix_xattr() argument
63 u8 algo = iint->ima_hash->algo; in ima_fix_xattr()
67 iint->ima_hash->xattr.sha1.type = IMA_XATTR_DIGEST; in ima_fix_xattr()
70 iint->ima_hash->xattr.ng.type = IMA_XATTR_DIGEST_NG; in ima_fix_xattr()
71 iint->ima_hash->xattr.ng.algo = algo; in ima_fix_xattr()
74 &iint->ima_hash->xattr.data[offset], in ima_fix_xattr()
75 (sizeof(iint->ima_hash->xattr) - offset) + in ima_fix_xattr()
76 iint->ima_hash->length, 0); in ima_fix_xattr()
81 enum integrity_status ima_get_cache_status(struct integrity_iint_cache *iint, in ima_get_cache_status() argument
86 return iint->ima_mmap_status; in ima_get_cache_status()
[all …]
Dima_main.c87 struct integrity_iint_cache *iint, in ima_rdwr_violation_check() argument
99 if (!iint) in ima_rdwr_violation_check()
100 iint = integrity_iint_find(inode); in ima_rdwr_violation_check()
102 if (iint && test_bit(IMA_MUST_MEASURE, in ima_rdwr_violation_check()
103 &iint->atomic_flags)) in ima_rdwr_violation_check()
108 set_bit(IMA_MUST_MEASURE, &iint->atomic_flags); in ima_rdwr_violation_check()
119 ima_add_violation(file, *pathname, iint, in ima_rdwr_violation_check()
122 ima_add_violation(file, *pathname, iint, in ima_rdwr_violation_check()
126 static void ima_check_last_writer(struct integrity_iint_cache *iint, in ima_check_last_writer() argument
135 mutex_lock(&iint->mutex); in ima_check_last_writer()
[all …]
Dima_api.c130 struct integrity_iint_cache *iint, in ima_add_violation() argument
135 struct ima_event_data event_data = {iint, file, filename, NULL, 0, in ima_add_violation()
194 int ima_collect_measurement(struct integrity_iint_cache *iint, in ima_collect_measurement() argument
210 if (iint->flags & IMA_COLLECTED) in ima_collect_measurement()
233 tmpbuf = krealloc(iint->ima_hash, length, GFP_NOFS); in ima_collect_measurement()
239 iint->ima_hash = tmpbuf; in ima_collect_measurement()
240 memcpy(iint->ima_hash, &hash, length); in ima_collect_measurement()
241 iint->version = i_version; in ima_collect_measurement()
245 iint->flags |= IMA_COLLECTED; in ima_collect_measurement()
273 void ima_store_measurement(struct integrity_iint_cache *iint, in ima_store_measurement() argument
[all …]
Dima_init.c51 struct integrity_iint_cache tmp_iint, *iint = &tmp_iint; in ima_add_boot_aggregate() local
52 struct ima_event_data event_data = {iint, NULL, boot_aggregate_name, in ima_add_boot_aggregate()
61 memset(iint, 0, sizeof(*iint)); in ima_add_boot_aggregate()
63 iint->ima_hash = &hash.hdr; in ima_add_boot_aggregate()
64 iint->ima_hash->algo = HASH_ALGO_SHA1; in ima_add_boot_aggregate()
65 iint->ima_hash->length = SHA1_DIGEST_SIZE; in ima_add_boot_aggregate()
Dima.h63 struct integrity_iint_cache *iint; member
145 struct integrity_iint_cache *iint,
197 int ima_collect_measurement(struct integrity_iint_cache *iint,
200 void ima_store_measurement(struct integrity_iint_cache *iint, struct file *file,
204 void ima_audit_measurement(struct integrity_iint_cache *iint,
238 struct integrity_iint_cache *iint,
243 void ima_update_xattr(struct integrity_iint_cache *iint, struct file *file);
244 enum integrity_status ima_get_cache_status(struct integrity_iint_cache *iint,
253 struct integrity_iint_cache *iint, in ima_appraise_measurement() argument
268 static inline void ima_update_xattr(struct integrity_iint_cache *iint, in ima_update_xattr() argument
[all …]
Dima_template_lib.c279 if (ima_template_hash_algo_allowed(event_data->iint->ima_hash->algo)) { in ima_eventdigest_init()
280 cur_digest = event_data->iint->ima_hash->digest; in ima_eventdigest_init()
281 cur_digestsize = event_data->iint->ima_hash->length; in ima_eventdigest_init()
317 cur_digest = event_data->iint->ima_hash->digest; in ima_eventdigest_ng_init()
318 cur_digestsize = event_data->iint->ima_hash->length; in ima_eventdigest_ng_init()
320 hash_algo = event_data->iint->ima_hash->algo; in ima_eventdigest_ng_init()
/security/integrity/evm/
Devm_main.c116 struct integrity_iint_cache *iint) in evm_verify_hmac() argument
123 if (iint && (iint->evm_status == INTEGRITY_PASS || in evm_verify_hmac()
124 iint->evm_status == INTEGRITY_PASS_IMMUTABLE)) in evm_verify_hmac()
125 return iint->evm_status; in evm_verify_hmac()
176 if (iint) in evm_verify_hmac()
177 iint->flags |= EVM_IMMUTABLE_DIGSIG; in evm_verify_hmac()
196 if (iint) in evm_verify_hmac()
197 iint->evm_status = evm_status; in evm_verify_hmac()
244 struct integrity_iint_cache *iint) in evm_verifyxattr() argument
249 if (!iint) { in evm_verifyxattr()
[all …]
Devm_crypto.c269 struct integrity_iint_cache *iint; in evm_is_immutable() local
272 iint = integrity_iint_find(inode); in evm_is_immutable()
273 if (iint && (iint->flags & EVM_IMMUTABLE_DIGSIG)) in evm_is_immutable()