forked from u-root/u-root
-
Notifications
You must be signed in to change notification settings - Fork 2
/
config_test.go
179 lines (154 loc) · 4.35 KB
/
config_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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
// Copyright 2017-2020 the u-root Authors. All rights reserved
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package grub
import (
"bytes"
"context"
"io"
"log"
"os"
"path/filepath"
"strings"
"testing"
"github.com/u-root/u-root/pkg/boot/boottest"
"github.com/u-root/u-root/pkg/mount"
"github.com/u-root/u-root/pkg/mount/block"
)
// fakeDevices returns a list of fake block devices and a pool of mount points.
// The pool is pre-populated so that Mount is never called.
func fakeDevices() (block.BlockDevices, *mount.Pool, error) {
// For some reason, Glob("testdata_new/*/") does not work here.
files, err := os.ReadDir("testdata_new")
if err != nil {
return nil, nil, err
}
dirs := []string{}
for _, f := range files {
if f.IsDir() {
dirs = append(dirs, filepath.Join("testdata_new", f.Name()))
}
}
devices := block.BlockDevices{}
mountPool := &mount.Pool{}
for _, dir := range dirs {
// TODO: Also add LABEL to BlockDev
fsUUID, _ := os.ReadFile(filepath.Join(dir, "UUID"))
devices = append(devices, &block.BlockDev{
Name: dir,
FSType: "test",
FsUUID: strings.TrimSpace(string(fsUUID)),
})
mountPool.Add(&mount.MountPoint{
Path: dir,
Device: filepath.Join("/dev", dir),
FSType: "test",
})
}
return devices, mountPool, nil
}
// Enable this to generate new configs.
func DISABLEDTestGenerateConfigs(t *testing.T) {
tests, err := filepath.Glob("testdata_new/*.json")
if err != nil {
t.Error("Failed to find test config files:", err)
}
for _, test := range tests {
configPath := strings.TrimSuffix(test, ".json")
t.Run(configPath, func(t *testing.T) {
devices, mountPool, err := fakeDevices()
if err != nil {
t.Fatal(err)
}
imgs, err := ParseLocalConfig(context.Background(), configPath, devices, mountPool)
if err != nil {
t.Fatalf("Failed to parse %s: %v", test, err)
}
if err := boottest.ToJSONFile(imgs, test); err != nil {
t.Errorf("failed to generate file: %v", err)
}
})
}
}
func TestConfigs(t *testing.T) {
// find all saved configs
tests, err := filepath.Glob("testdata_new/*.json")
if err != nil {
t.Error("Failed to find test config files:", err)
}
for _, test := range tests {
configPath := strings.TrimSuffix(test, ".json")
t.Run(configPath, func(t *testing.T) {
want, err := os.ReadFile(test)
if err != nil {
t.Errorf("Failed to read test json '%v':%v", test, err)
}
devices, mountPool, err := fakeDevices()
if err != nil {
t.Fatal(err)
}
imgs, err := ParseLocalConfig(context.Background(), configPath, devices, mountPool)
if err != nil {
t.Fatalf("Failed to parse %s: %v", test, err)
}
if err := boottest.CompareImagesToJSON(imgs, want); err != nil {
t.Errorf("ParseLocalConfig(): %v", err)
}
})
}
}
func FuzzParseGrubConfig(f *testing.F) {
baseDir := f.TempDir()
dirPath := filepath.Join(baseDir, "EFI", "uefi")
err := os.MkdirAll(dirPath, 0o777)
if err != nil {
f.Fatalf("failed %v: %v", dirPath, err)
}
path := filepath.Join(dirPath, "grub.cfg")
devices := block.BlockDevices{&block.BlockDev{
Name: dirPath,
FSType: "test",
FsUUID: strings.TrimSpace("07338180-4a96-4611-aa6a-a452600e4cfe"),
}}
mountPool := &mount.Pool{}
mountPool.Add(&mount.MountPoint{
Path: dirPath,
Device: filepath.Join("/dev", dirPath),
FSType: "test",
})
//no log output
log.SetOutput(io.Discard)
log.SetFlags(0)
// get seed corpora from testdata_new files
seeds, err := filepath.Glob("testdata_new/*/*/*/grub.cfg")
if err != nil {
f.Fatalf("failed to find seed corpora files: %v", err)
}
seeds2, err := filepath.Glob("testdata_new/*/*/grub.cfg")
if err != nil {
f.Fatalf("failed to find seed corpora files: %v", err)
}
seeds = append(seeds, seeds2...)
for _, seed := range seeds {
seedBytes, err := os.ReadFile(seed)
if err != nil {
f.Fatalf("failed read seed corpora from files %v: %v", seed, err)
}
f.Add(seedBytes)
}
f.Add([]byte("multiBoot 0\nmodule --nounzip"))
f.Fuzz(func(t *testing.T, data []byte) {
if len(data) > 4096 {
return
}
// do not allow arbitrary files reads
if bytes.Contains(data, []byte("include")) {
return
}
err = os.WriteFile(path, data, 0o777)
if err != nil {
t.Fatalf("Failed to create configfile '%v':%v", path, err)
}
ParseLocalConfig(context.Background(), baseDir, devices, mountPool)
})
}