-
Notifications
You must be signed in to change notification settings - Fork 783
/
convertcw_test.go
162 lines (157 loc) · 5.38 KB
/
convertcw_test.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
package buildah
import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
"io"
"net"
"net/http"
"os"
"path/filepath"
"sync"
"testing"
"github.com/containers/buildah/internal/mkcw"
mkcwtypes "github.com/containers/buildah/internal/mkcw/types"
"github.com/containers/storage"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
// dummyAttestationHandler replies with a fixed response code to requests to
// the right path, and caches passphrases indexed by workload ID
type dummyAttestationHandler struct {
t *testing.T
status int
passphrases map[string]string
passphrasesLock sync.Mutex
}
func (d *dummyAttestationHandler) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
var body bytes.Buffer
if req.Body != nil {
if _, err := io.Copy(&body, req.Body); err != nil {
d.t.Logf("reading request body: %v", err)
return
}
req.Body.Close()
}
if req.URL != nil && req.URL.Path == "/kbs/v0/register_workload" {
var registrationRequest mkcwtypes.RegistrationRequest
// if we can't decode the client request, bail
if err := json.Unmarshal(body.Bytes(), ®istrationRequest); err != nil {
rw.WriteHeader(http.StatusInternalServerError)
return
}
// cache the passphrase
d.passphrasesLock.Lock()
if d.passphrases == nil {
d.passphrases = make(map[string]string)
}
d.passphrases[registrationRequest.WorkloadID] = registrationRequest.Passphrase
d.passphrasesLock.Unlock()
// return the predetermined status
status := d.status
if status == 0 {
status = http.StatusOK
}
rw.WriteHeader(status)
return
}
// no such handler
rw.WriteHeader(http.StatusInternalServerError)
}
func TestCWConvertImage(t *testing.T) {
ctx := context.TODO()
for _, status := range []int{http.StatusOK, http.StatusInternalServerError} {
for _, ignoreChainRetrievalErrors := range []bool{false, true} {
for _, ignoreAttestationErrors := range []bool{false, true} {
t.Run(fmt.Sprintf("status~%d~ignoreChainRetrievalErrors~%v~ignoreAttestationErrors~%v", status, ignoreChainRetrievalErrors, ignoreAttestationErrors), func(t *testing.T) {
// create a per-test Store object
storeOptions := storage.StoreOptions{
GraphRoot: t.TempDir(),
RunRoot: t.TempDir(),
GraphDriverName: "vfs",
}
store, err := storage.GetStore(storeOptions)
require.NoError(t, err)
t.Cleanup(func() {
if _, err := store.Shutdown(true); err != nil {
t.Logf("store.Shutdown(%q): %v", t.Name(), err)
}
})
// listen on a system-assigned port
listener, err := net.Listen("tcp", ":0")
require.NoError(t, err)
// keep track of our listener address
addr := listener.Addr()
// serve requests on that listener
handler := &dummyAttestationHandler{t: t, status: status}
server := http.Server{
Handler: handler,
}
go func() {
if err := server.Serve(listener); err != nil && !errors.Is(err, http.ErrServerClosed) {
t.Logf("serve: %v", err)
}
}()
// clean up at the end of this test
t.Cleanup(func() { assert.NoError(t, server.Close()) })
// convert an image
options := CWConvertImageOptions{
InputImage: "docker.io/library/busybox",
Tag: "localhost/busybox:encrypted",
AttestationURL: "http://" + addr.String(),
IgnoreAttestationErrors: ignoreAttestationErrors,
Slop: "16MB",
SignaturePolicyPath: testSystemContext.SignaturePolicyPath,
}
id, _, _, err := CWConvertImage(ctx, &testSystemContext, store, options)
if status != http.StatusOK && !ignoreAttestationErrors {
assert.Error(t, err)
return
}
if ignoreChainRetrievalErrors && ignoreAttestationErrors {
assert.NoError(t, err)
}
if err != nil {
t.Skipf("%s: %v", t.Name(), err)
return
}
// mount the image
path, err := store.MountImage(id, nil, "")
require.NoError(t, err)
t.Cleanup(func() {
if _, err := store.UnmountImage(id, true); err != nil {
t.Logf("store.UnmountImage(%q): %v", t.Name(), err)
}
})
// check that the image's contents look like what we expect: disk
disk := filepath.Join(path, "disk.img")
require.FileExists(t, disk)
workloadConfig, err := mkcw.ReadWorkloadConfigFromImage(disk)
require.NoError(t, err)
handler.passphrasesLock.Lock()
decryptionPassphrase := handler.passphrases[workloadConfig.WorkloadID]
handler.passphrasesLock.Unlock()
err = mkcw.CheckLUKSPassphrase(disk, decryptionPassphrase)
assert.NoError(t, err)
// check that the image's contents look like what we expect: config file
config := filepath.Join(path, "krun-sev.json")
require.FileExists(t, config)
workloadConfigBytes, err := os.ReadFile(config)
require.NoError(t, err)
var workloadConfigTwo mkcwtypes.WorkloadConfig
err = json.Unmarshal(workloadConfigBytes, &workloadConfigTwo)
require.NoError(t, err)
assert.Equal(t, workloadConfig, workloadConfigTwo)
// check that the image's contents look like what we expect: an executable entry point
entrypoint := filepath.Join(path, "entrypoint")
require.FileExists(t, entrypoint)
st, err := os.Stat(entrypoint)
require.NoError(t, err)
assert.Equal(t, st.Mode().Type(), os.FileMode(0)) // regular file
})
}
}
}
}