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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
// Copyright (c) 2014, Google LLC All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package tpm
import (
"testing"
)
func TestPCRMask(t *testing.T) {
var mask pcrMask
if err := mask.setPCR(-1); err == nil {
t.Fatal("Incorrectly allowed non-existent PCR -1 to be set")
}
if err := mask.setPCR(24); err == nil {
t.Fatal("Incorrectly allowed non-existent PCR 24 to be set")
}
if err := mask.setPCR(0); err != nil {
t.Fatal("Couldn't set PCR 0 in the mask:", err)
}
set, err := mask.isPCRSet(0)
if err != nil {
t.Fatal("Couldn't check to see if PCR 0 was set:", err)
}
if !set {
t.Fatal("Incorrectly said PCR wasn't set when it should have been")
}
if err := mask.setPCR(18); err != nil {
t.Fatal("Couldn't set PCR 18 in the mask:", err)
}
set, err = mask.isPCRSet(18)
if err != nil {
t.Fatal("Couldn't check to see if PCR 18 was set:", err)
}
if !set {
t.Fatal("Incorrectly said PCR wasn't set when it should have been")
}
if _, err := mask.isPCRSet(-1); err == nil {
t.Fatal("Incorrectly permitted a check for PCR -1")
}
if _, err := mask.isPCRSet(400); err == nil {
t.Fatal("Incorrectly permitted a check for PCR 400")
}
}
func TestNewPCRSelection(t *testing.T) {
pcrs, err := newPCRSelection([]int{17, 18})
if err != nil {
t.Fatal("Couldn't set up a PCR selection with PCRs 17 and 18")
}
if pcrs.Size != 3 {
t.Fatal("Incorrectly size in a PCR selection")
}
set, err := pcrs.Mask.isPCRSet(17)
if err != nil {
t.Fatal("Couldn't check a PCR on a mask in a PCR selection")
}
if !set {
t.Fatal("PCR 17 wasn't set in a PCR selection after setting it")
}
set, err = pcrs.Mask.isPCRSet(20)
if err != nil {
t.Fatal("Couldn't check an unset PCR on a mask in a PCR selection")
}
if set {
t.Fatal("PCR 20 was incorrectly set in a PCR mask in a PCR selection")
}
}
func TestIncorrectCreatePCRComposite(t *testing.T) {
pcrs, err := newPCRSelection([]int{17, 18})
if err != nil {
t.Fatal("Couldn't set up a PCR selection with PCRs 17 and 18")
}
// This byte array is far too long and isn't a multiple of PCRSize, since it
// is of prime size.
pcrValues := make([]byte, 541)
if _, err := createPCRComposite(pcrs.Mask, pcrValues); err == nil {
t.Fatal("Incorrectly created a PCR composite with wrong PCR length")
}
}
func TestWrongCreatePCRInfoLong(t *testing.T) {
pcrs, err := newPCRSelection([]int{17, 18})
if err != nil {
t.Fatal("Couldn't set up a PCR selection with PCRs 17 and 18")
}
// This byte array is far too long and isn't a multiple of PCRSize, since it
// is of prime size.
pcrValues := make([]byte, 541)
if _, err := createPCRInfoLong(0, pcrs.Mask, pcrValues); err == nil {
t.Fatal("Incorrectly created a PCR composite with wrong PCR length")
}
}
func TestWrongNewPCRInfoLong(t *testing.T) {
rwc := openTPMOrSkip(t)
defer rwc.Close()
if _, err := newPCRInfoLong(rwc, 0, []int{400}); err == nil {
t.Fatal("Incorrectly created a pcrInfoLong for PCR 400")
}
// This case uses a reasonable PCR value but a nil file.
if _, err := newPCRInfoLong(nil, 0, []int{17}); err == nil {
t.Fatal("Incorrectly created a pcrInfoLong using a nil file")
}
}
func TestNewPCRInfoLongWithHashes(t *testing.T) {
pcrMap := make(map[int][]byte)
pcrMap[23] = make([]byte, 20)
pcrMap[16] = make([]byte, 20)
if _, err := newPCRInfoLongWithHashes(LocZero, pcrMap); err != nil {
t.Fatal("Couldn't create pcrInfoLong structure")
}
}
|