-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsks_linux.go
144 lines (120 loc) · 3.91 KB
/
sks_linux.go
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
// Package sks implements the Secure Key Store for Go
// Copyright (c) Facebook, Inc. and its affiliates.
//
// 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 sks
import (
"errors"
"fmt"
"github.com/facebookincubator/sks/attest"
"github.com/facebookincubator/sks/linux"
)
// getCryptoProcessor is a wrapper that returns an initialized
// Cryptoprocessor.
func getCryptoProcessor() (linux.Cryptoprocessor, error) {
tpm, err := linux.GetCryptoprocessor("/dev/tpmrm0")
if err != nil {
return nil, err
}
err = tpm.Initialize()
if err != nil {
return nil, err
}
return tpm, nil
}
// genKeyPair creates a key with the given label and tag
// Returns public key raw data.
// tag, useBiometrics, and accessibleWhenUnlockedOnly are ignored
func genKeyPair(label, tag string, _, _ bool) ([]byte, error) {
tpm, err := getCryptoProcessor()
if err != nil {
return nil, fmt.Errorf(ErrGenKeyPair, label, tag, err)
}
defer tpm.Close()
res, err := tpm.GenKeyPair(label)
if err != nil {
return nil, fmt.Errorf(ErrGenKeyPair, label, tag, err)
}
return res, nil
}
// attestKey performs a TPM 2.0 handshake using the underlying Endorsement
// key, creates a TPM Attestation key bound to the EK
// which further certifies that the TPM key represented by the provided label
// is attested & from the same TPM as the EK.
func attestKey(label, tag string, attestor attest.Attestor) (*attest.Resp, error) {
if attestor == nil {
return nil, fmt.Errorf(ErrAttestationFailure, label, tag, errors.New("nil attestor handle"))
}
tpm, err := getCryptoProcessor()
if err != nil {
return nil, fmt.Errorf(ErrAttestationFailure, label, tag, err)
}
defer tpm.Close()
resp, err := tpm.AttestKey(label, attestor)
if err != nil {
return nil, fmt.Errorf(ErrAttestationFailure, label, tag, err)
}
return resp, nil
}
// signWithKey signs arbitrary data pointed to by data with the key described by
// label and tag. Returns the signed data.
// tag and hash are not used.
func signWithKey(label, tag string, _, data []byte) ([]byte, error) {
tpm, err := getCryptoProcessor()
if err != nil {
return nil, fmt.Errorf(ErrSignWithKey, label, tag, err)
}
defer tpm.Close()
res, err := tpm.SignWithKey(label, data)
if err != nil {
return nil, fmt.Errorf(ErrSignWithKey, label, tag, err)
}
return res, nil
}
// findPubKey returns the raw public key described by label and tag
// tag and hash are not used
func findPubKey(label, tag string, _ []byte) ([]byte, error) {
tpm, err := getCryptoProcessor()
if err != nil {
return nil, fmt.Errorf(ErrFindPubKey, label, tag, err)
}
defer tpm.Close()
res, err := tpm.FindPubKey(label)
if err != nil {
return nil, fmt.Errorf(ErrFindPubKey, label, tag, err)
}
return res, nil
}
// removeKey tries to delete a key identified by label, tag and hash.
// tag and hash are not used
// Returns true if the key was found and deleted successfully
func removeKey(label, tag string, _ []byte) (bool, error) {
tpm, err := getCryptoProcessor()
if err != nil {
return false, fmt.Errorf(ErrRemoveKey, label, tag, err)
}
defer tpm.Close()
err = tpm.DeleteKey(label)
if err != nil {
return false, fmt.Errorf(ErrRemoveKey, label, tag, err)
}
return true, nil
}
func getSecureHardwareVendorData() (*attest.SecureHardwareVendorData, error) {
tpm, err := getCryptoProcessor()
if err != nil {
return nil, fmt.Errorf(ErrGetSecureHardwareVendorData, err)
}
defer tpm.Close()
return tpm.GetSecureHardwareVendorData()
}