diff options
| author | Eric W. Biederman <ebiederm@xmission.com> | 2012-05-25 20:22:35 -0400 |
|---|---|---|
| committer | Eric W. Biederman <ebiederm@xmission.com> | 2012-09-21 06:13:24 -0400 |
| commit | cf9c93526f4517581a9e8f1c0d9093a4c7748ec6 (patch) | |
| tree | 9e9eba640d957fe83e081602f7c227480fb413b5 /security/integrity | |
| parent | 29f82ae56e8798f7907d60145e0186082800d130 (diff) | |
userns: Convert EVM to deal with kuids and kgids in it's hmac computation
Cc: Mimi Zohar <zohar@us.ibm.com>
Acked-by: Serge Hallyn <serge.hallyn@canonical.com>
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Diffstat (limited to 'security/integrity')
| -rw-r--r-- | security/integrity/evm/evm_crypto.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/integrity/evm/evm_crypto.c b/security/integrity/evm/evm_crypto.c index 49a464f5595..dfb26918699 100644 --- a/security/integrity/evm/evm_crypto.c +++ b/security/integrity/evm/evm_crypto.c | |||
| @@ -106,8 +106,8 @@ static void hmac_add_misc(struct shash_desc *desc, struct inode *inode, | |||
| 106 | memset(&hmac_misc, 0, sizeof hmac_misc); | 106 | memset(&hmac_misc, 0, sizeof hmac_misc); |
| 107 | hmac_misc.ino = inode->i_ino; | 107 | hmac_misc.ino = inode->i_ino; |
| 108 | hmac_misc.generation = inode->i_generation; | 108 | hmac_misc.generation = inode->i_generation; |
| 109 | hmac_misc.uid = inode->i_uid; | 109 | hmac_misc.uid = from_kuid(&init_user_ns, inode->i_uid); |
| 110 | hmac_misc.gid = inode->i_gid; | 110 | hmac_misc.gid = from_kgid(&init_user_ns, inode->i_gid); |
| 111 | hmac_misc.mode = inode->i_mode; | 111 | hmac_misc.mode = inode->i_mode; |
| 112 | crypto_shash_update(desc, (const u8 *)&hmac_misc, sizeof hmac_misc); | 112 | crypto_shash_update(desc, (const u8 *)&hmac_misc, sizeof hmac_misc); |
| 113 | crypto_shash_final(desc, digest); | 113 | crypto_shash_final(desc, digest); |
