Mimi Zohar | d00a1c7 | 2010-11-23 17:50:34 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 IBM Corporation |
| 3 | * Author: David Safford <safford@us.ibm.com> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License as published by |
| 7 | * the Free Software Foundation, version 2 of the License. |
| 8 | */ |
| 9 | |
| 10 | #ifndef _KEYS_TRUSTED_TYPE_H |
| 11 | #define _KEYS_TRUSTED_TYPE_H |
| 12 | |
| 13 | #include <linux/key.h> |
| 14 | #include <linux/rcupdate.h> |
Jarkko Sakkinen | fe351e8 | 2015-06-12 23:34:01 +0200 | [diff] [blame] | 15 | #include <linux/tpm.h> |
Mimi Zohar | d00a1c7 | 2010-11-23 17:50:34 -0500 | [diff] [blame] | 16 | |
| 17 | #define MIN_KEY_SIZE 32 |
| 18 | #define MAX_KEY_SIZE 128 |
Jarkko Sakkinen | 954650e | 2015-05-30 08:09:04 +0300 | [diff] [blame] | 19 | #define MAX_BLOB_SIZE 512 |
Jarkko Sakkinen | fe351e8 | 2015-06-12 23:34:01 +0200 | [diff] [blame] | 20 | #define MAX_PCRINFO_SIZE 64 |
Jarkko Sakkinen | 5beb0c4 | 2015-10-31 17:53:44 +0200 | [diff] [blame] | 21 | #define MAX_DIGEST_SIZE 64 |
Mimi Zohar | d00a1c7 | 2010-11-23 17:50:34 -0500 | [diff] [blame] | 22 | |
| 23 | struct trusted_key_payload { |
| 24 | struct rcu_head rcu; |
| 25 | unsigned int key_len; |
| 26 | unsigned int blob_len; |
| 27 | unsigned char migratable; |
| 28 | unsigned char key[MAX_KEY_SIZE + 1]; |
| 29 | unsigned char blob[MAX_BLOB_SIZE]; |
| 30 | }; |
| 31 | |
Jarkko Sakkinen | fe351e8 | 2015-06-12 23:34:01 +0200 | [diff] [blame] | 32 | struct trusted_key_options { |
| 33 | uint16_t keytype; |
| 34 | uint32_t keyhandle; |
| 35 | unsigned char keyauth[TPM_DIGEST_SIZE]; |
| 36 | unsigned char blobauth[TPM_DIGEST_SIZE]; |
| 37 | uint32_t pcrinfo_len; |
| 38 | unsigned char pcrinfo[MAX_PCRINFO_SIZE]; |
| 39 | int pcrlock; |
Jarkko Sakkinen | 5ca4c20 | 2015-11-05 21:43:06 +0200 | [diff] [blame] | 40 | uint32_t hash; |
Jarkko Sakkinen | f3c82ad | 2016-01-06 16:43:30 +0200 | [diff] [blame] | 41 | uint32_t policydigest_len; |
Jarkko Sakkinen | 5beb0c4 | 2015-10-31 17:53:44 +0200 | [diff] [blame] | 42 | unsigned char policydigest[MAX_DIGEST_SIZE]; |
| 43 | uint32_t policyhandle; |
Jarkko Sakkinen | fe351e8 | 2015-06-12 23:34:01 +0200 | [diff] [blame] | 44 | }; |
| 45 | |
Mimi Zohar | d00a1c7 | 2010-11-23 17:50:34 -0500 | [diff] [blame] | 46 | extern struct key_type key_type_trusted; |
| 47 | |
| 48 | #endif /* _KEYS_TRUSTED_TYPE_H */ |