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 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
|
// Copyright (c) 2020, Control Command Inc. All rights reserved.
// Copyright (c) 2018-2023, Sylabs Inc. All rights reserved.
// Copyright (c) Contributors to the Apptainer project, established as
// Apptainer a Series of LF Projects LLC.
// This software is licensed under a 3-clause BSD license. Please consult the
// LICENSE.md file distributed with the sources of this project regarding your
// rights to use or distribute this software.
package cli
import (
"context"
"fmt"
"os"
osExec "os/exec"
"runtime"
"strconv"
"strings"
"syscall"
"github.com/spf13/cobra"
keyclient "github.com/sylabs/scs-key-client/client"
"github.com/sylabs/singularity/v4/internal/pkg/build"
"github.com/sylabs/singularity/v4/internal/pkg/build/args"
"github.com/sylabs/singularity/v4/internal/pkg/build/remotebuilder"
"github.com/sylabs/singularity/v4/internal/pkg/buildcfg"
"github.com/sylabs/singularity/v4/internal/pkg/cache"
"github.com/sylabs/singularity/v4/internal/pkg/ociplatform"
"github.com/sylabs/singularity/v4/internal/pkg/remote/endpoint"
fakerootConfig "github.com/sylabs/singularity/v4/internal/pkg/runtime/engine/fakeroot/config"
"github.com/sylabs/singularity/v4/internal/pkg/util/bin"
"github.com/sylabs/singularity/v4/internal/pkg/util/fs"
"github.com/sylabs/singularity/v4/internal/pkg/util/interactive"
"github.com/sylabs/singularity/v4/internal/pkg/util/rootless"
"github.com/sylabs/singularity/v4/internal/pkg/util/starter"
"github.com/sylabs/singularity/v4/internal/pkg/util/user"
"github.com/sylabs/singularity/v4/pkg/build/types"
"github.com/sylabs/singularity/v4/pkg/image"
"github.com/sylabs/singularity/v4/pkg/runtime/engine/config"
"github.com/sylabs/singularity/v4/pkg/sylog"
"github.com/sylabs/singularity/v4/pkg/util/cryptkey"
)
func fakerootExec() {
if buildArgs.nvccli && !buildArgs.noTest {
sylog.Warningf("Due to writable-tmpfs limitations, %%test sections will fail with --nvccli & --fakeroot")
sylog.Infof("Use -T / --notest to disable running tests during the build")
}
useSuid := buildcfg.SINGULARITY_SUID_INSTALL == 1
short := "-" + buildFakerootFlag.ShortHand
long := "--" + buildFakerootFlag.Name
envKey := fmt.Sprintf("SINGULARITY_%s", buildFakerootFlag.EnvKeys[0])
fakerootEnv := os.Getenv(envKey) != ""
argsLen := len(os.Args) - 1
if fakerootEnv {
argsLen = len(os.Args)
os.Unsetenv(envKey)
}
args := make([]string, argsLen)
idx := 0
for i, arg := range os.Args {
if i == 0 {
path, _ := osExec.LookPath(arg)
arg = path
}
if arg != short && arg != long {
args[idx] = arg
idx++
}
}
user, err := user.GetPwUID(uint32(os.Getuid()))
if err != nil {
sylog.Fatalf("failed to retrieve user information: %s", err)
}
// Append the user's real UID/GID to the environment as _CONTAINERS_ROOTLESS_UID/GID.
// This is required in fakeroot builds that may use containers/image 5.7 and above.
// https://github.com/containers/image/issues/1066
// https://github.com/containers/image/blob/master/internal/rootless/rootless.go
os.Setenv(rootless.UIDEnv, strconv.Itoa(os.Getuid()))
os.Setenv(rootless.GIDEnv, strconv.Itoa(os.Getgid()))
engineConfig := &fakerootConfig.EngineConfig{
Args: args,
Envs: os.Environ(),
Home: user.Dir,
BuildEnv: true,
NoSetgroups: buildArgs.noSetgroups,
}
cfg := &config.Common{
EngineName: fakerootConfig.Name,
ContainerID: "fakeroot",
EngineConfig: engineConfig,
}
err = starter.Exec(
"Singularity fakeroot",
cfg,
starter.UseSuid(useSuid),
)
sylog.Fatalf("%s", err)
}
func runBuild(cmd *cobra.Command, args []string) {
if buildArgs.nvidia {
if buildArgs.remote {
sylog.Fatalf("--nv option is not supported for remote build")
}
os.Setenv("SINGULARITY_NV", "1")
}
if buildArgs.nvccli {
if buildArgs.remote {
sylog.Fatalf("--nvccli option is not supported for remote build")
}
os.Setenv("SINGULARITY_NVCCLI", "1")
}
if buildArgs.rocm {
if buildArgs.remote {
sylog.Fatalf("--rocm option is not supported for remote build")
}
os.Setenv("SINGULARITY_ROCM", "1")
}
if len(buildArgs.bindPaths) > 0 {
if buildArgs.remote {
sylog.Fatalf("-B/--bind option is not supported for remote build")
}
os.Setenv("SINGULARITY_BINDPATH", strings.Join(buildArgs.bindPaths, ","))
}
if len(buildArgs.mounts) > 0 {
if buildArgs.remote {
sylog.Fatalf("--mount option is not supported for remote build")
}
os.Setenv("SINGULARITY_MOUNT", strings.Join(buildArgs.mounts, "\n"))
}
if buildArgs.writableTmpfs {
if buildArgs.remote {
sylog.Fatalf("--writable-tmpfs option is not supported for remote build")
}
if buildArgs.fakeroot {
sylog.Fatalf("--writable-tmpfs option is not supported for fakeroot build")
}
os.Setenv("SINGULARITY_WRITABLE_TMPFS", "1")
}
if buildArgs.arch != runtime.GOARCH && !buildArgs.remote {
sylog.Fatalf("Requested architecture (%s) does not match host (%s). Cannot build locally.", buildArgs.arch, runtime.GOARCH)
}
dest := args[0]
spec := args[1]
// Non-remote build with def file as source
rootNeeded := !buildArgs.remote && fs.IsFile(spec) && !isImage(spec)
if rootNeeded && syscall.Getuid() != 0 && !buildArgs.fakeroot {
prootPath, err := bin.FindBin("proot")
if err != nil {
sylog.Fatalf("--remote, --fakeroot, or the proot command are required to build this source as a non-root user")
}
os.Setenv("SINGULARITY_PROOT", prootPath)
sylog.Infof("Using proot to build unprivileged. Not all builds are supported. If build fails, use --remote or --fakeroot.")
}
// check if target collides with existing file
if err := checkBuildTarget(dest); err != nil {
sylog.Fatalf("While checking build target: %s", err)
}
if buildArgs.remote {
runBuildRemote(cmd.Context(), cmd, dest, spec)
} else {
runBuildLocal(cmd.Context(), cmd, dest, spec)
}
sylog.Infof("Build complete: %s", dest)
}
func runBuildRemote(ctx context.Context, cmd *cobra.Command, dst, spec string) {
// building encrypted containers on the remote builder is not currently supported
if buildArgs.encrypt {
sylog.Fatalf("Building encrypted container with the remote builder is not currently supported.")
}
if (len(buildArgs.buildVarArgs) > 1) || (buildArgs.buildVarArgFile != "") {
sylog.Fatalf("The remote builder does not currently support build-argument substitution (--build-arg / --build-arg-file).")
}
// TODO - the keyserver config needs to go to the remote builder for fingerprint verification at
// build time to be fully supported.
lc, err := getLibraryClientConfig(buildArgs.libraryURL)
if err != nil {
sylog.Fatalf("Unable to get library client configuration: %v", err)
}
buildArgs.libraryURL = lc.BaseURL
baseURI, authToken, err := getBuilderClientConfig(buildArgs.builderURL)
if err != nil {
sylog.Fatalf("Unable to get builder client configuration: %v", err)
}
buildArgs.builderURL = baseURI
// To provide a web link to detached remote builds we need to know the web frontend URI.
// We only know this working forward from a remote config, and not if the user has set custom
// service URLs, since there is no straightforward foolproof way to work back from them to a
// matching frontend URL.
if !cmd.Flag("builder").Changed && !cmd.Flag("library").Changed {
webURL, err := currentRemoteEndpoint.GetURL()
if err != nil {
sylog.Fatalf("Unable to find remote web URI %v", err)
}
buildArgs.webURL = webURL
}
// submitting a remote build requires a valid authToken
if authToken == "" {
sylog.Fatalf("Unable to submit build job: %v", remoteWarning)
}
def, err := definitionFromSpec(spec)
if err != nil {
sylog.Fatalf("Unable to build from %s: %v", spec, err)
}
// Ensure that the definition bootstrap source is valid before we submit a remote build
if _, err := build.NewConveyorPacker(def); err != nil {
sylog.Fatalf("Unable to build from %s: %v", spec, err)
}
if bs, ok := def.Header["bootstrap"]; ok && bs == "localimage" {
sylog.Fatalf("Building from a \"localimage\" source with the remote builder is not supported.")
}
// path SIF from remote builder should be placed
rbDst := dst
if buildArgs.sandbox {
if strings.HasPrefix(dst, "library://") {
// image destination is the library.
sylog.Fatalf("Library URI detected as destination, sandbox builds are incompatible with library destinations.")
}
// create temporary file to download sif
f, err := os.CreateTemp(tmpDir, "remote-build-")
if err != nil {
sylog.Fatalf("Could not create temporary directory: %s", err)
}
f.Close()
// override remote build destation to temporary file for conversion to a sandbox
rbDst = f.Name()
sylog.Debugf("Overriding remote build destination to temporary file: %s", rbDst)
// remove downloaded sif
defer os.Remove(rbDst)
// build from sif downloaded in tmp location
defer func() {
sylog.Debugf("Building sandbox from downloaded SIF")
imgCache := getCacheHandle(cache.Config{Disable: disableCache})
if imgCache == nil {
sylog.Fatalf("failed to create an image cache handle")
}
d, err := types.NewDefinitionFromURI("localimage" + "://" + rbDst)
if err != nil {
sylog.Fatalf("Unable to create definition for sandbox build: %v", err)
}
b, err := build.New(
[]types.Definition{d},
build.Config{
Dest: dst,
Format: "sandbox",
NoCleanUp: buildArgs.noCleanUp,
Opts: types.Options{
ImgCache: imgCache,
NoCache: disableCache,
TmpDir: tmpDir,
Update: buildArgs.update,
Force: forceOverwrite,
},
})
if err != nil {
sylog.Fatalf("Unable to create build: %v", err)
}
if err = b.Full(ctx); err != nil {
sylog.Fatalf("While performing build: %v", err)
}
}()
}
b, err := remotebuilder.New(rbDst, buildArgs.libraryURL, def, buildArgs.detached, forceOverwrite, buildArgs.builderURL, authToken, buildArgs.arch, buildArgs.webURL)
if err != nil {
sylog.Fatalf("Failed to create builder: %v", err)
}
err = b.Build(ctx)
if err != nil {
sylog.Fatalf("While performing build: %v", err)
}
}
func runBuildLocal(ctx context.Context, cmd *cobra.Command, dst, spec string) {
var keyInfo *cryptkey.KeyInfo
if buildArgs.encrypt || promptForPassphrase || cmd.Flags().Lookup("pem-path").Changed {
if os.Getuid() != 0 {
sylog.Fatalf("You must be root to build an encrypted container")
}
k, err := getEncryptionMaterial(cmd)
if err != nil {
sylog.Fatalf("While handling encryption material: %v", err)
}
keyInfo = k
} else {
_, passphraseEnvOK := os.LookupEnv("SINGULARITY_ENCRYPTION_PASSPHRASE")
_, pemPathEnvOK := os.LookupEnv("SINGULARITY_ENCRYPTION_PEM_PATH")
if passphraseEnvOK || pemPathEnvOK {
sylog.Warningf("Encryption related env vars found, but --encrypt was not specified. NOT encrypting container.")
}
}
imgCache := getCacheHandle(cache.Config{Disable: disableCache})
if imgCache == nil {
sylog.Fatalf("Failed to create an image cache handle")
}
err := checkSections()
if err != nil {
sylog.Fatalf("Could not check build sections: %v", err)
}
authConf, err := makeDockerCredentials(cmd)
if err != nil {
sylog.Fatalf("While creating Docker credentials: %v", err)
}
// parse definition to determine build source
buildArgsMap, err := args.ReadBuildArgs(buildArgs.buildVarArgs, buildArgs.buildVarArgFile)
if err != nil {
sylog.Fatalf("While processing the definition file: %v", err)
}
defs, err := build.MakeAllDefs(spec, buildArgsMap)
if err != nil {
sylog.Fatalf("Unable to build from %s: %v", spec, err)
}
authToken := ""
hasLibrary := false
hasSIF := false
for _, d := range defs {
// If there's a library source we need the library client, and it'll be a SIF
if d.Header["bootstrap"] == "library" {
hasLibrary = true
hasSIF = true
break
}
// Certain other bootstrap sources may result in a SIF image source
if d.Header["bootstrap"] == "localimage" || d.Header["bootstrap"] == "oras" || d.Header["bootstrap"] == "shub" {
hasSIF = true
}
}
// We only need to initialize the library client if we have a library source
// in our definition file.
if hasLibrary {
lc, err := getLibraryClientConfig(buildArgs.libraryURL)
if err != nil {
sylog.Fatalf("Unable to get library client configuration: %v", err)
}
buildArgs.libraryURL = lc.BaseURL
authToken = lc.AuthToken
}
// We only need to initialize the key server client if we have a source
// in our definition file that could provide a SIF. Only SIFs verify in the build.
var ko []keyclient.Option
if hasSIF {
ko, err = getKeyserverClientOpts(buildArgs.keyServerURL, endpoint.KeyserverVerifyOp)
if err != nil {
// Do not hard fail if we can't get a keyserver config.
// Verification can use the local keyring still.
sylog.Warningf("Unable to get key server client configuration: %v", err)
}
}
buildFormat := "sif"
sandboxTarget := false
if buildArgs.sandbox {
buildFormat = "sandbox"
sandboxTarget = true
}
dp, err := ociplatform.DefaultPlatform()
if err != nil {
sylog.Fatalf("%v", err)
}
b, err := build.New(
defs,
build.Config{
Dest: dst,
Format: buildFormat,
NoCleanUp: buildArgs.noCleanUp,
Opts: types.Options{
ImgCache: imgCache,
TmpDir: tmpDir,
NoCache: disableCache,
Update: buildArgs.update,
Force: forceOverwrite,
Sections: buildArgs.sections,
NoTest: buildArgs.noTest,
NoHTTPS: noHTTPS,
LibraryURL: buildArgs.libraryURL,
LibraryAuthToken: authToken,
KeyServerOpts: ko,
DockerAuthConfig: authConf,
DockerDaemonHost: dockerHost,
EncryptionKeyInfo: keyInfo,
FixPerms: buildArgs.fixPerms,
SandboxTarget: sandboxTarget,
// Only perform a build with the host DefaultPlatform at present.
// TODO: rework --arch handling for remote builds so that local builds can specify --arch and --platform.
Platform: *dp,
},
})
if err != nil {
sylog.Fatalf("Unable to create build: %v", err)
}
if err = b.Full(ctx); err != nil {
sylog.Fatalf("While performing build: %v", err)
}
}
func checkSections() error {
var all, none bool
for _, section := range buildArgs.sections {
if section == "none" {
none = true
}
if section == "all" {
all = true
}
}
if all && len(buildArgs.sections) > 1 {
return fmt.Errorf("section specification error: cannot have all and any other option")
}
if none && len(buildArgs.sections) > 1 {
return fmt.Errorf("section specification error: cannot have none and any other option")
}
return nil
}
func isImage(spec string) bool {
i, err := image.Init(spec, false)
if i != nil {
_ = i.File.Close()
}
return err == nil
}
// getEncryptionMaterial handles the setting of encryption environment and flag parameters to eventually be
// passed to the crypt package for handling.
// This handles the SINGULARITY_ENCRYPTION_PASSPHRASE/PEM_PATH envvars outside of cobra in order to
// enforce the unique flag/env precedence for the encryption flow
func getEncryptionMaterial(cmd *cobra.Command) (*cryptkey.KeyInfo, error) {
passphraseFlag := cmd.Flags().Lookup("passphrase")
PEMFlag := cmd.Flags().Lookup("pem-path")
passphraseEnv, passphraseEnvOK := os.LookupEnv("SINGULARITY_ENCRYPTION_PASSPHRASE")
pemPathEnv, pemPathEnvOK := os.LookupEnv("SINGULARITY_ENCRYPTION_PEM_PATH")
// checks for no flags/envvars being set
if !(PEMFlag.Changed || pemPathEnvOK || passphraseFlag.Changed || passphraseEnvOK) {
return nil, nil
}
// order of precedence:
// 1. PEM flag
// 2. Passphrase flag
// 3. PEM envvar
// 4. Passphrase envvar
if PEMFlag.Changed {
exists, err := fs.PathExists(encryptionPEMPath)
if err != nil {
sylog.Fatalf("Unable to verify existence of %s: %v", encryptionPEMPath, err)
}
if !exists {
sylog.Fatalf("Specified PEM file %s: does not exist.", encryptionPEMPath)
}
sylog.Verbosef("Using pem path flag for encrypted container")
// Check it's a valid PEM public key we can load, before starting the build (#4173)
if cmd.Name() == "build" {
if _, err := cryptkey.LoadPEMPublicKey(encryptionPEMPath); err != nil {
sylog.Fatalf("Invalid encryption public key: %v", err)
}
// or a valid private key before launching the engine for actions on a container (#5221)
} else {
if _, err := cryptkey.LoadPEMPrivateKey(encryptionPEMPath); err != nil {
sylog.Fatalf("Invalid encryption private key: %v", err)
}
}
return &cryptkey.KeyInfo{Format: cryptkey.PEM, Path: encryptionPEMPath}, nil
}
if passphraseFlag.Changed {
sylog.Verbosef("Using interactive passphrase entry for encrypted container")
passphrase, err := interactive.AskQuestionNoEcho("Enter encryption passphrase: ")
if err != nil {
return nil, err
}
if passphrase == "" {
sylog.Fatalf("Cannot encrypt container with empty passphrase")
}
return &cryptkey.KeyInfo{Format: cryptkey.Passphrase, Material: passphrase}, nil
}
if pemPathEnvOK {
exists, err := fs.PathExists(pemPathEnv)
if err != nil {
sylog.Fatalf("Unable to verify existence of %s: %v", pemPathEnv, err)
}
if !exists {
sylog.Fatalf("Specified PEM file %s: does not exist.", pemPathEnv)
}
sylog.Verbosef("Using pem path environment variable for encrypted container")
return &cryptkey.KeyInfo{Format: cryptkey.PEM, Path: pemPathEnv}, nil
}
if passphraseEnvOK {
sylog.Verbosef("Using passphrase environment variable for encrypted container")
return &cryptkey.KeyInfo{Format: cryptkey.Passphrase, Material: passphraseEnv}, nil
}
return nil, nil
}
|