summaryrefslogtreecommitdiffstats
path: root/tboot/include/integrity.h
blob: 1051e71be0437898c8e54304afc2c074384a905d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*
 * integrity.h: routines for memory integrity measurement &
 *          verification. Memory integrity is protected with tpm seal
 *
 * Copyright (c) 2007-2009, Intel Corporation
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 *   * Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *   * Redistributions in binary form must reproduce the above
 *     copyright notice, this list of conditions and the following
 *     disclaimer in the documentation and/or other materials provided
 *     with the distribution.
 *   * Neither the name of the Intel Corporation nor the names of its
 *     contributors may be used to endorse or promote products derived
 *     from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 */

#ifndef _TBOOT_INTEGRITY_H_
#define _TBOOT_INTEGRITY_H_

#include <vmac.h>
#include <hash.h>

/*
 * state that must be saved across S3 and will be sealed for integrity
 * before extending PCRs and launching kernel
 */
#define MAX_VL_HASHES 32
#define MAX_ALG_NUM 5 

typedef struct {
    uint16_t  alg;
    tb_hash_t hash;
} hash_entry_t;

typedef struct {
    uint32_t  count;
    hash_entry_t entries[MAX_ALG_NUM];
} hash_list_t;

typedef struct {
    /* low and high memory regions to protect w/ VT-d PMRs */
    uint64_t vtd_pmr_lo_base;
    uint64_t vtd_pmr_lo_size;
    uint64_t vtd_pmr_hi_base;
    uint64_t vtd_pmr_hi_size;
    /* VL policy at time of sealing */
    tb_hash_t pol_hash;
    /* verified launch measurements to be re-extended in DRTM PCRs
     * a given PCR may have more than one hash and will get extended in the
     * order it appears in the list */
    uint8_t num_vl_entries;
    struct {
        uint8_t pcr;
        hash_list_t hl;
    } vl_entries[MAX_VL_HASHES];
} pre_k_s3_state_t;

/*
 * state that must be saved across S3 and will be sealed for integrity
 * just before entering S3 (after kernel shuts down)
 */
typedef struct {
    uint64_t kernel_s3_resume_vector;
    vmac_t   kernel_integ;
} post_k_s3_state_t;


pre_k_s3_state_t g_pre_k_s3_state;
post_k_s3_state_t g_post_k_s3_state;

bool seal_pre_k_state(void);
bool seal_post_k_state(void);
bool verify_integrity(void);

#endif /* _TBOOT_INTEGRITY_H_ */


/*
 * Local variables:
 * mode: C
 * c-set-style: "BSD"
 * c-basic-offset: 4
 * tab-width: 4
 * indent-tabs-mode: nil
 * End:
 */