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
|
// Copyright (c) 2022-2023, Sylabs Inc. All rights reserved.
// 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 oci
import (
"context"
"fmt"
"os"
"path/filepath"
"strings"
"syscall"
imgspecv1 "github.com/opencontainers/image-spec/specs-go/v1"
"github.com/opencontainers/runtime-spec/specs-go"
"github.com/samber/lo"
"github.com/sylabs/singularity/v4/internal/pkg/fakeroot"
"github.com/sylabs/singularity/v4/internal/pkg/runtime/engine/config/oci"
"github.com/sylabs/singularity/v4/internal/pkg/runtime/engine/config/oci/generate"
"github.com/sylabs/singularity/v4/internal/pkg/runtime/launcher"
"github.com/sylabs/singularity/v4/internal/pkg/util/env"
"github.com/sylabs/singularity/v4/pkg/sylog"
"github.com/sylabs/singularity/v4/pkg/util/capabilities"
"golang.org/x/term"
)
const (
singularityLibs = "/.singularity.d/libs"
scifExecutableName = "scif"
)
// Script that can be run by /bin/sh to emulate native mode shell behavior.
// Set Singularity> prompt, try bash --norc, fall back to sh.
var ociShellScript = "export PS1='Singularity> '; test -x /bin/bash && exec /bin/bash --norc || exec /bin/sh"
// getProcess creates and returns an specs.Process struct defining the execution behavior of the container.
// The userEnv map returned also holds all user-requested environment variables (i.e. not those from the image).
func (l *Launcher) getProcess(ctx context.Context, imgSpec imgspecv1.Image, bundle string, ep launcher.ExecParams, u specs.User) (process *specs.Process, userEnv map[string]string, err error) {
// Assemble the runtime & user-requested environment, which will be merged
// with the image ENV and set in the container at runtime.
rtEnv := defaultEnv(ep.Image, bundle)
// SINGULARITYENV_ has lowest priority
rtEnv = env.MergeMap(rtEnv, env.SingularityEnvMap(os.Environ()))
// --env-file can override SINGULARITYENV_
if l.cfg.EnvFile != "" {
currentEnv := append(
os.Environ(),
"SINGULARITY_IMAGE="+l.image,
)
e, err := env.FileMap(ctx, l.cfg.EnvFile, []string{}, currentEnv)
if err != nil {
return nil, nil, err
}
rtEnv = env.MergeMap(rtEnv, e)
}
// --env flag can override --env-file and SINGULARITYENV_
rtEnv = env.MergeMap(rtEnv, l.cfg.Env)
// Ensure HOME points to the required home directory, even if it is a custom one, unless the container explicitly specifies its USER, in which case we don't want to touch HOME.
if imgSpec.Config.User == "" {
rtEnv["HOME"] = l.homeDest
}
cwd, err := l.getProcessCwd(imgSpec)
if err != nil {
return nil, nil, err
}
// OCI default is NoNewPrivileges = false
noNewPrivs := false
// --no-privs sets NoNewPrivileges
if l.cfg.NoPrivs {
noNewPrivs = true
}
caps, err := l.getProcessCapabilities(u.UID)
if err != nil {
return nil, nil, err
}
var args []string
switch {
case l.nativeSIF:
// Native SIF image must run via in-container action script
args, err = ep.ActionScriptArgs()
if err != nil {
return nil, nil, fmt.Errorf("while getting ProcessArgs: %w", err)
}
sylog.Debugf("Native SIF container process/args: %v", args)
case l.cfg.AppName != "":
sylog.Debugf("SCIF app %q requested", l.cfg.AppName)
specArgs := getSpecArgs(imgSpec)
if len(specArgs) < 1 {
return nil, nil, fmt.Errorf("could not determine executable for container")
}
if filepath.Base(specArgs[0]) != scifExecutableName {
sylog.Warningf("OCI mode: SCIF app requested (%q) but container entrypoint does not seem to be a %s executable (container command-line: %q)", l.cfg.AppName, scifExecutableName, strings.Join(specArgs, " "))
}
args, err = l.argsForSCIF(specArgs, ep)
if err != nil {
return nil, nil, err
}
sylog.Debugf("args after prepareArgsForSCIF(): %v", args)
case ep.Action == "shell":
// OCI-SIF shell handling to emulate native runtime shell
args = []string{"/bin/sh", "-c", ociShellScript}
default:
// OCI-SIF, inheriting from image config
args = getProcessArgs(imgSpec, ep)
}
p := specs.Process{
Args: args,
Capabilities: caps,
Cwd: cwd,
Env: l.getProcessEnv(imgSpec, os.Environ(), rtEnv),
NoNewPrivileges: noNewPrivs,
User: u,
Terminal: getProcessTerminal(),
}
return &p, rtEnv, nil
}
func (l *Launcher) argsForSCIF(specArgs []string, ep launcher.ExecParams) ([]string, error) {
switch ep.Action {
case "run", "exec", "shell":
args := []string{specArgs[0], ep.Action, l.cfg.AppName}
args = append(args, specArgs[1:]...)
if ep.Process != "" {
args = append(args, ep.Process)
}
if len(ep.Args) > 0 {
args = append(args, ep.Args...)
}
return args, nil
}
return []string{}, fmt.Errorf("unrecognized action %q", ep.Action)
}
// getProcessTerminal determines whether the container process should run with a terminal.
func getProcessTerminal() bool {
// Sets the default Process.Terminal to false if our stdin is not a terminal.
return term.IsTerminal(syscall.Stdin)
}
// getProcessArgs returns the process args for a container, with reference to the OCI Image Spec.
// The process and image parameters may override the image CMD and/or ENTRYPOINT.
func getProcessArgs(imageSpec imgspecv1.Image, ep launcher.ExecParams) []string {
var processArgs []string
if ep.Process != "" {
processArgs = []string{ep.Process}
} else {
processArgs = imageSpec.Config.Entrypoint
}
if len(ep.Args) > 0 {
processArgs = append(processArgs, ep.Args...)
} else {
if ep.Process == "" {
processArgs = append(processArgs, imageSpec.Config.Cmd...)
}
}
return processArgs
}
// getSpecArgs attempts to get the command-line args that the OCI container was
// built to run.
func getSpecArgs(imageSpec imgspecv1.Image) []string {
return append(imageSpec.Config.Entrypoint, imageSpec.Config.Cmd...)
}
// getProcessCwd computes the Cwd that the container process should start in.
// Default in OCI mode is the value in the image config, or $HOME.
// In native emulation (--no-compat), we use the CWD.
// Can be overridden with a custom value via --cwd/pwd.
// Because this is called after mounts have already been computed, we can count on homeDest containing the right value, incorporating any custom home dir overrides (i.e., --home).
func (l *Launcher) getProcessCwd(imgSpec imgspecv1.Image) (dir string, err error) {
if len(l.cfg.CwdPath) > 0 {
return l.cfg.CwdPath, nil
}
if l.cfg.NoCompat {
return os.Getwd()
}
if imgSpec.Config.WorkingDir != "" {
return imgSpec.Config.WorkingDir, nil
}
return l.homeDest, nil
}
// getReverseUserMaps returns uid and gid mappings that re-map container uid to target
// uid. This 'reverses' the host user to container root mapping in the initial
// userns from which the OCI runtime is launched.
//
// e.g. host 1001 -> fakeroot userns 0 -> container targetUID
func getReverseUserMaps(hostUID, targetUID, targetGID uint32) (uidMap, gidMap []specs.LinuxIDMapping, err error) {
// Get user's configured subuid & subgid ranges
subuidRange, err := fakeroot.GetIDRange(fakeroot.SubUIDFile, hostUID)
if err != nil {
return nil, nil, err
}
// We must always be able to map at least 0->65535 inside the container, so we cover 'nobody'.
if subuidRange.Size < 65536 {
return nil, nil, fmt.Errorf("subuid range size (%d) must be at least 65536", subuidRange.Size)
}
subgidRange, err := fakeroot.GetIDRange(fakeroot.SubGIDFile, hostUID)
if err != nil {
return nil, nil, err
}
if subgidRange.Size < 65536 {
return nil, nil, fmt.Errorf("subuid range size (%d) must be at least 65536", subgidRange.Size)
}
uidMap, gidMap = reverseMapByRange(targetUID, targetGID, *subuidRange, *subgidRange)
return uidMap, gidMap, nil
}
func reverseMapByRange(targetUID, targetGID uint32, subuidRange, subgidRange specs.LinuxIDMapping) (uidMap, gidMap []specs.LinuxIDMapping) {
if targetUID < subuidRange.Size {
uidMap = []specs.LinuxIDMapping{
{
ContainerID: 0,
HostID: 1,
Size: targetUID,
},
{
ContainerID: targetUID,
HostID: 0,
Size: 1,
},
{
ContainerID: targetUID + 1,
HostID: targetUID + 1,
Size: subuidRange.Size - targetUID,
},
}
} else {
uidMap = []specs.LinuxIDMapping{
{
ContainerID: 0,
HostID: 1,
Size: subuidRange.Size,
},
{
ContainerID: targetUID,
HostID: 0,
Size: 1,
},
}
}
if targetGID < subgidRange.Size {
gidMap = []specs.LinuxIDMapping{
{
ContainerID: 0,
HostID: 1,
Size: targetGID,
},
{
ContainerID: targetGID,
HostID: 0,
Size: 1,
},
{
ContainerID: targetGID + 1,
HostID: targetGID + 1,
Size: subgidRange.Size - targetGID,
},
}
} else {
gidMap = []specs.LinuxIDMapping{
{
ContainerID: 0,
HostID: 1,
Size: subgidRange.Size,
},
{
ContainerID: targetGID,
HostID: 0,
Size: 1,
},
}
}
return uidMap, gidMap
}
// getProcessEnv combines the image config ENV with the ENV requested by the user.
// APPEND_PATH and PREPEND_PATH are honored as with the native singularity runtime.
// LD_LIBRARY_PATH is modified to always include the singularity lib bind directory.
func (l *Launcher) getProcessEnv(imageSpec imgspecv1.Image, hostEnv []string, userEnv map[string]string) []string {
path := ""
appendPath := ""
prependPath := ""
ldLibraryPath := ""
envAdded := map[string]bool{}
// Start with image config ENV, reserving PATH, and LD_LIBRARY_PATH, for special handling.
g := generate.New(nil)
g.Config.Process = &specs.Process{Env: imageSpec.Config.Env}
for _, env := range imageSpec.Config.Env {
e := strings.SplitN(env, "=", 2)
if len(e) < 2 {
continue
}
// The image config PATH is not accurate for native SIF images - it is a
// default, and a PATH may be declared in the image /.singularity.d/env
// scripts. Ignore, so we can pick that up.
switch {
case e[0] == "PATH" && !l.nativeSIF:
path = e[1]
case e[0] == "LD_LIBRARY_PATH":
ldLibraryPath = e[1]
default:
envAdded[e[0]] = true
}
}
// Apply user requested env vars, except PATH and LD_LIBRARY_PATH releated.
for k, v := range userEnv {
switch k {
case "PATH":
path = v
case "APPEND_PATH":
appendPath = v
case "PREPEND_PATH":
prependPath = v
case "LD_LIBRARY_PATH":
ldLibraryPath = v
default:
g.AddProcessEnv(k, v)
envAdded[k] = true
}
}
// If we aren't a native SIF, add back required host env vars now, provided they haven't been set by the image or user.
// In --compat (default implied) we are only adding host proxy env vars.
// In --no-compat we are adding almost all host env vars.
if !l.nativeSIF {
cleanEnv := !l.cfg.NoCompat || l.cfg.CleanEnv
for k, v := range env.HostEnvMap(hostEnv, cleanEnv) {
if !envAdded[k] {
g.AddProcessEnv(k, v)
envAdded[k] = true
}
}
}
// Handle PATH differently beteween OCI and native images
if l.nativeSIF {
setNativePath(g, prependPath, path, appendPath)
} else {
setOCIPath(g, prependPath, path, appendPath)
}
// Ensure LD_LIBRARY_PATH always contains singularity lib binding dir.
// This is handled by environment scripts in native SIF images.
if !l.nativeSIF && !strings.Contains(ldLibraryPath, singularityLibs) {
ldLibraryPath = strings.TrimPrefix(ldLibraryPath+":"+singularityLibs, ":")
}
if ldLibraryPath != "" {
g.AddProcessEnv("LD_LIBRARY_PATH", ldLibraryPath)
}
return g.Config.Process.Env
}
func setOCIPath(g *generate.Generator, prependPath, path, appendPath string) {
// If we have no PATH at this point, then the image didn't define one, and
// the user didn't specify a full PATH override. We need to use a default,
// to find bare `CMD`s e.g. issue #2721.
if path == "" {
path = env.DefaultPath
}
// Compute and set optionally APPEND-ed / PREPEND-ed PATH.
if appendPath != "" {
path = strings.TrimSuffix(path, ":") + ":" + appendPath
}
if prependPath != "" {
path = prependPath + ":" + strings.TrimPrefix(path, ":")
}
g.AddProcessEnv("PATH", path)
}
func setNativePath(g *generate.Generator, prependPath, path, appendPath string) {
// Set env vars used by Singularity env script to handle PATH.
if prependPath != "" {
g.AddProcessEnv("SING_USER_DEFINED_PREPEND_PATH", prependPath)
}
if path != "" {
g.AddProcessEnv("SING_USER_DEFINED_PATH", path)
}
if appendPath != "" {
g.AddProcessEnv("SING_USER_DEFINED_APPEND_PATH", appendPath)
}
}
// defaultEnv returns default environment variables set in the container.
func defaultEnv(image, bundle string) map[string]string {
return map[string]string{
env.SingularityPrefix + "CONTAINER": bundle,
env.SingularityPrefix + "NAME": image,
}
}
// getBaseCapabilities returns the capabilities that are enabled for the user
// prior to processing AddCaps / DropCaps.
func (l *Launcher) getBaseCapabilities() ([]string, error) {
if l.cfg.NoPrivs {
return []string{}, nil
}
if l.cfg.KeepPrivs {
c, err := capabilities.GetProcessEffective()
if err != nil {
return nil, err
}
return capabilities.ToStrings(c), nil
}
return oci.DefaultCaps, nil
}
// getProcessCapabilities returns the capabilities that are enabled for the
// user, after applying all capabilities related options.
func (l *Launcher) getProcessCapabilities(targetUID uint32) (*specs.LinuxCapabilities, error) {
caps, err := l.getBaseCapabilities()
if err != nil {
return nil, err
}
addCaps, ignoredCaps := capabilities.Split(l.cfg.AddCaps)
if len(ignoredCaps) > 0 {
sylog.Warningf("Ignoring unknown --add-caps: %s", strings.Join(ignoredCaps, ","))
}
dropCaps, ignoredCaps := capabilities.Split(l.cfg.DropCaps)
if len(ignoredCaps) > 0 {
sylog.Warningf("Ignoring unknown --drop-caps: %s", strings.Join(ignoredCaps, ","))
}
caps = append(caps, addCaps...)
caps = capabilities.RemoveDuplicated(caps)
caps = lo.Without(caps, dropCaps...)
// If root inside the container, Permitted==Effective==Bounding.
if targetUID == 0 {
return &specs.LinuxCapabilities{
Permitted: caps,
Effective: caps,
Bounding: caps,
Inheritable: []string{},
Ambient: []string{},
}, nil
}
// If non-root inside the container, Permitted/Effective/Inheritable/Ambient
// are only the explicitly requested capabilities.
explicitCaps := lo.Without(addCaps, dropCaps...)
return &specs.LinuxCapabilities{
Permitted: explicitCaps,
Effective: explicitCaps,
Bounding: caps,
Inheritable: explicitCaps,
Ambient: explicitCaps,
}, nil
}
|