-
Notifications
You must be signed in to change notification settings - Fork 63
/
packager_kraftfile_unikraft.go
216 lines (180 loc) · 5.83 KB
/
packager_kraftfile_unikraft.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
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
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2023, Unikraft GmbH and The KraftKit Authors.
// Licensed under the BSD-3-Clause License (the "License").
// You may not use this file except in compliance with the License.
package pkg
import (
"context"
"fmt"
"os"
"slices"
"strings"
"github.com/mattn/go-shellwords"
"kraftkit.sh/config"
"kraftkit.sh/internal/cli/kraft/utils"
"kraftkit.sh/log"
"kraftkit.sh/pack"
"kraftkit.sh/packmanager"
"kraftkit.sh/tui/multiselect"
"kraftkit.sh/tui/processtree"
"kraftkit.sh/unikraft"
"kraftkit.sh/unikraft/target"
)
type packagerKraftfileUnikraft struct{}
// String implements fmt.Stringer.
func (p *packagerKraftfileUnikraft) String() string {
return "kraftfile-unikraft"
}
// Buildable implements packager.
func (p *packagerKraftfileUnikraft) Packagable(ctx context.Context, opts *PkgOptions, args ...string) (bool, error) {
if opts.Project == nil {
if err := opts.initProject(ctx); err != nil {
return false, err
}
}
if opts.Project.Unikraft(ctx) == nil {
return false, fmt.Errorf("cannot package without unikraft core specification")
}
if opts.Project.Rootfs() != "" && opts.Rootfs == "" {
opts.Rootfs = opts.Project.Rootfs()
}
return true, nil
}
// Build implements packager.
func (p *packagerKraftfileUnikraft) Pack(ctx context.Context, opts *PkgOptions, args ...string) ([]pack.Package, error) {
var err error
var tree []*processtree.ProcessTreeItem
norender := log.LoggerTypeFromString(config.G[config.KraftKit](ctx).Log.Type) != log.FANCY
selected := opts.Project.Targets()
if len(opts.Target) > 0 || len(opts.Architecture) > 0 || len(opts.Platform) > 0 {
selected = target.Filter(opts.Project.Targets(), opts.Architecture, opts.Platform, opts.Target)
}
if len(selected) > 1 && !config.G[config.KraftKit](ctx).NoPrompt {
// Remove targets which do not have a compiled kernel.
targets := slices.DeleteFunc(opts.Project.Targets(), func(targ target.Target) bool {
_, err := os.Stat(targ.Kernel())
return err != nil
})
if len(targets) == 0 {
return nil, fmt.Errorf("no targets with a compiled kernel found")
} else if len(targets) == 1 {
selected = targets
} else {
selected, err = multiselect.MultiSelect[target.Target]("select built kernel to package", targets...)
if err != nil {
return nil, err
}
}
}
if len(selected) == 0 {
return nil, fmt.Errorf("nothing selected to package")
}
i := 0
var result []pack.Package
for _, targ := range selected {
var cmds []string
var envs []string
rootfs := opts.Rootfs
// Reset the rootfs, such that it is not packaged as an initrd if it is
// already embedded inside of the kernel.
if opts.Project.KConfig().AnyYes(
"CONFIG_LIBVFSCORE_ROOTFS_EINITRD", // Deprecated
"CONFIG_LIBVFSCORE_AUTOMOUNT_EINITRD",
"CONFIG_LIBVFSCORE_AUTOMOUNT_CI_EINITRD",
) {
rootfs = ""
} else {
if rootfs, cmds, envs, err = utils.BuildRootfs(ctx, opts.Workdir, rootfs, opts.Compress, targ); err != nil {
return nil, fmt.Errorf("could not build rootfs: %w", err)
}
}
// See: https://github.com/golang/go/wiki/CommonMistakes#using-reference-to-loop-iterator-variable
targ := targ
baseopts := opts.packopts
name := "packaging " + targ.Name() + " (" + opts.Format + ")"
if envs != nil {
opts.Env = append(opts.Env, envs...)
}
// If no arguments have been specified, use the ones which are default and
// that have been included in the package.
if len(opts.Args) == 0 {
if len(opts.Project.Command()) > 0 {
opts.Args = opts.Project.Command()
} else if len(targ.Command()) > 0 {
opts.Args = targ.Command()
} else if cmds != nil {
opts.Args = cmds
}
}
cmdShellArgs, err := shellwords.Parse(strings.Join(opts.Args, " "))
if err != nil {
return nil, err
}
// When i > 0, we have already applied the merge strategy. Now, for all
// targets, we actually do wish to merge these because they are part of
// the same execution lifecycle.
if i > 0 {
baseopts = []packmanager.PackOption{
packmanager.PackMergeStrategy(packmanager.StrategyMerge),
}
}
tree = append(tree, processtree.NewProcessTreeItem(
name,
targ.Architecture().Name()+"/"+targ.Platform().Name(),
func(ctx context.Context) error {
popts := append(baseopts,
packmanager.PackArgs(cmdShellArgs...),
packmanager.PackInitrd(rootfs),
packmanager.PackKConfig(!opts.NoKConfig),
packmanager.PackName(opts.Name),
packmanager.PackOutput(opts.Output),
)
if ukversion, ok := targ.KConfig().Get(unikraft.UK_FULLVERSION); ok {
popts = append(popts,
packmanager.PackWithKernelVersion(ukversion.Value),
)
}
envs := opts.aggregateEnvs()
if len(envs) > 0 {
popts = append(popts, packmanager.PackWithEnvs(envs))
} else if len(opts.Env) > 0 {
popts = append(popts, packmanager.PackWithEnvs(opts.Env))
}
more, err := opts.pm.Pack(ctx, targ, popts...)
if err != nil {
return err
}
result = append(result, more...)
return nil
},
))
i++
}
if len(tree) == 0 {
switch true {
case len(opts.Target) > 0:
return nil, fmt.Errorf("no matching targets found for: %s", opts.Target)
case len(opts.Architecture) > 0 && len(opts.Platform) == 0:
return nil, fmt.Errorf("no matching targets found for architecture: %s", opts.Architecture)
case len(opts.Architecture) == 0 && len(opts.Platform) > 0:
return nil, fmt.Errorf("no matching targets found for platform: %s", opts.Platform)
default:
return nil, fmt.Errorf("no matching targets found for: %s/%s", opts.Platform, opts.Architecture)
}
}
model, err := processtree.NewProcessTree(
ctx,
[]processtree.ProcessTreeOption{
processtree.IsParallel(false),
processtree.WithRenderer(norender),
},
tree...,
)
if err != nil {
return nil, err
}
if err := model.Start(); err != nil {
return nil, err
}
return result, nil
}