-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkernel.go
More file actions
231 lines (196 loc) · 5.62 KB
/
Copy pathkernel.go
File metadata and controls
231 lines (196 loc) · 5.62 KB
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
package monolith
import (
"bytes"
"compress/gzip"
"fmt"
"io"
"net/http"
"os"
"path/filepath"
"github.com/diskfs/go-diskfs"
"github.com/diskfs/go-diskfs/backend/file"
"github.com/diskfs/go-diskfs/filesystem"
)
const (
alpineVersion = "3.21.0"
alpineMinirootfs = "3.21.6"
kernelURL = "https://dl-cdn.alpinelinux.org/alpine/v3.21/releases/aarch64/alpine-virt-" + alpineVersion + "-aarch64.iso"
minirootfsURL = "https://dl-cdn.alpinelinux.org/alpine/v3.21/releases/aarch64/alpine-minirootfs-" + alpineMinirootfs + "-aarch64.tar.gz"
isoName = "alpine-virt.iso"
kernelName = "vmlinuz-virt"
initrdName = "initramfs-virt"
modloopName = "modloop-virt"
minirootfsName = "minirootfs.tar.gz"
)
type KernelAssets struct {
KernelPath string
InitrdPath string
ModloopPath string
}
func DefaultKernel() (*KernelAssets, error) {
alpineDir, err := alpineCacheDir()
if err != nil {
return nil, err
}
kernelPath := filepath.Join(alpineDir, kernelName)
initrdPath := filepath.Join(alpineDir, initrdName)
modloopPath := filepath.Join(alpineDir, modloopName)
if exists(kernelPath) && exists(initrdPath) && exists(modloopPath) {
return &KernelAssets{
KernelPath: kernelPath,
InitrdPath: initrdPath,
ModloopPath: modloopPath,
}, nil
}
isoPath := filepath.Join(alpineDir, isoName)
if err := downloadISO(isoPath); err != nil {
return nil, fmt.Errorf("downloading iso: %w", err)
}
defer os.Remove(isoPath)
if err := extractFromISO(isoPath, alpineDir); err != nil {
return nil, fmt.Errorf("extracting kernel: %w", err)
}
return &KernelAssets{
KernelPath: kernelPath,
InitrdPath: initrdPath,
ModloopPath: modloopPath,
}, nil
}
// DefaultRootFS returns the path to the cached Alpine minirootfs tarball,
// downloading it on first use.
func DefaultRootFS() (string, error) {
alpineDir, err := alpineCacheDir()
if err != nil {
return "", err
}
rootfsPath := filepath.Join(alpineDir, minirootfsName)
if exists(rootfsPath) {
return rootfsPath, nil
}
fmt.Println("Downloading Alpine minirootfs...")
resp, err := http.Get(minirootfsURL)
if err != nil {
return "", fmt.Errorf("downloading minirootfs: %w", err)
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
return "", fmt.Errorf("downloading minirootfs: HTTP %d", resp.StatusCode)
}
f, err := os.Create(rootfsPath)
if err != nil {
return "", err
}
defer f.Close()
if _, err := io.Copy(f, resp.Body); err != nil {
os.Remove(rootfsPath)
return "", fmt.Errorf("writing minirootfs: %w", err)
}
return rootfsPath, nil
}
func cacheDir() (string, error) {
home, err := os.UserHomeDir()
if err != nil {
return "", err
}
dir := filepath.Join(home, ".cache", "monolith")
return dir, os.MkdirAll(dir, 0755)
}
// alpineCacheDir returns the path for shared Alpine assets (kernel, initrd,
// minirootfs) scoped under the "alpine" subdirectory of the cache.
func alpineCacheDir() (string, error) {
base, err := cacheDir()
if err != nil {
return "", err
}
dir := filepath.Join(base, "alpine")
return dir, os.MkdirAll(dir, 0755)
}
func exists(path string) bool {
_, err := os.Stat(path)
return err == nil
}
func downloadISO(dest string) error {
fmt.Println("Downloading Alpine virt ISO...")
resp, err := http.Get(kernelURL)
if err != nil {
return err
}
defer resp.Body.Close()
f, err := os.Create(dest)
if err != nil {
return err
}
defer f.Close()
_, err = io.Copy(f, resp.Body)
return err
}
func extractFromISO(isoPath, destDir string) error {
isoBackend, err := file.OpenFromPath(isoPath, true)
if err != nil {
return fmt.Errorf("opening iso: %w", err)
}
defer isoBackend.Close()
disk, err := diskfs.OpenBackend(isoBackend, diskfs.WithOpenMode(diskfs.ReadOnly))
if err != nil {
return fmt.Errorf("opening iso: %w", err)
}
defer disk.Close()
fs, err := disk.GetFilesystem(0)
if err != nil {
return fmt.Errorf("getting filesystem: %w", err)
}
for _, name := range []string{kernelName, initrdName, modloopName} {
if err := extractFile(fs, "/boot/"+name, filepath.Join(destDir, name)); err != nil {
return fmt.Errorf("extracting %s: %w", name, err)
}
}
// The Alpine aarch64 vmlinuz-virt is an EFI stub with a gzip-compressed
// ARM64 Image payload. VZLinuxBootLoader needs the raw Image, so we
// decompress it in place.
if err := decompressKernel(filepath.Join(destDir, kernelName)); err != nil {
return fmt.Errorf("decompressing kernel: %w", err)
}
return nil
}
func extractFile(fs filesystem.FileSystem, srcPath, destPath string) error {
src, err := fs.OpenFile(srcPath, os.O_RDONLY)
if err != nil {
return err
}
defer src.Close()
dst, err := os.Create(destPath)
if err != nil {
return err
}
defer dst.Close()
_, err = io.Copy(dst, src)
return err
}
// decompressKernel extracts the raw ARM64 Image from an EFI-stub vmlinuz.
// The EFI stub wraps a gzip stream (magic 0x1f 0x8b) containing the
// uncompressed kernel that VZLinuxBootLoader requires.
func decompressKernel(path string) error {
data, err := os.ReadFile(path)
if err != nil {
return err
}
gzipMagic := []byte{0x1f, 0x8b}
idx := bytes.Index(data, gzipMagic)
if idx < 0 {
// Not an EFI stub; assume already a raw Image.
return nil
}
gz, err := gzip.NewReader(bytes.NewReader(data[idx:]))
if err != nil {
return fmt.Errorf("opening gzip stream at offset %d: %w", idx, err)
}
defer gz.Close()
// Disable multistream so the reader stops after the first gzip member
// instead of trying to parse trailing EFI stub data as another member.
gz.Multistream(false)
image, err := io.ReadAll(gz)
if err != nil {
return fmt.Errorf("decompressing kernel: %w", err)
}
return os.WriteFile(path, image, 0644)
}