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 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339
|
// Copyright (c) 2019-2024, 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 native implements a Launcher that will configure and launch a
// container with Singularity's own (native) runtime.
package native
import (
"context"
"fmt"
"io"
"os"
"path/filepath"
"strconv"
"strings"
"syscall"
"time"
"github.com/opencontainers/runtime-spec/specs-go"
"github.com/sylabs/sif/v2/pkg/sif"
"github.com/sylabs/singularity/v4/internal/pkg/buildcfg"
"github.com/sylabs/singularity/v4/internal/pkg/cgroups"
"github.com/sylabs/singularity/v4/internal/pkg/image/unpacker"
"github.com/sylabs/singularity/v4/internal/pkg/instance"
"github.com/sylabs/singularity/v4/internal/pkg/plugin"
"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/security"
"github.com/sylabs/singularity/v4/internal/pkg/util/bin"
"github.com/sylabs/singularity/v4/internal/pkg/util/env"
"github.com/sylabs/singularity/v4/internal/pkg/util/fs/fuse"
"github.com/sylabs/singularity/v4/internal/pkg/util/fs/squashfs"
"github.com/sylabs/singularity/v4/internal/pkg/util/gpu"
"github.com/sylabs/singularity/v4/internal/pkg/util/starter"
"github.com/sylabs/singularity/v4/internal/pkg/util/user"
"github.com/sylabs/singularity/v4/pkg/image"
imgutil "github.com/sylabs/singularity/v4/pkg/image"
clicallback "github.com/sylabs/singularity/v4/pkg/plugin/callback/cli"
"github.com/sylabs/singularity/v4/pkg/runtime/engine/config"
singularityConfig "github.com/sylabs/singularity/v4/pkg/runtime/engine/singularity/config"
"github.com/sylabs/singularity/v4/pkg/sylog"
"github.com/sylabs/singularity/v4/pkg/util/bind"
"github.com/sylabs/singularity/v4/pkg/util/capabilities"
"github.com/sylabs/singularity/v4/pkg/util/cryptkey"
"github.com/sylabs/singularity/v4/pkg/util/namespaces"
"github.com/sylabs/singularity/v4/pkg/util/rlimit"
"github.com/sylabs/singularity/v4/pkg/util/singularityconf"
"golang.org/x/sys/unix"
)
// Launcher will holds configuration for, and will launch a container using
// Singularity's own (native) runtime.
type Launcher struct {
uid uint32
gid uint32
cfg launcher.Options
engineConfig *singularityConfig.EngineConfig
generator *generate.Generator
}
// NewLauncher returns a native.Launcher with an initial configuration set by opts.
func NewLauncher(opts ...launcher.Option) (*Launcher, error) {
lo := launcher.Options{}
for _, opt := range opts {
if err := opt(&lo); err != nil {
return nil, fmt.Errorf("%w", err)
}
}
if len(lo.Devices) > 0 {
return nil, fmt.Errorf("CDI device mappings unsupported in native launcher")
}
if len(lo.CdiDirs) > 0 {
return nil, fmt.Errorf("CDI device mappings unsupported in native launcher")
}
if lo.NoCompat {
sylog.Warningf("--no-compat applies to --oci mode only, ignoring")
}
// Initialize empty default Singularity Engine and OCI configuration
engineConfig := singularityConfig.NewConfig()
engineConfig.File = singularityconf.GetCurrentConfig()
if engineConfig.File == nil {
return nil, fmt.Errorf("unable to get singularity configuration")
}
ociConfig := &oci.Config{}
generator := generate.New(&ociConfig.Spec)
engineConfig.OciConfig = ociConfig
l := Launcher{
uid: uint32(os.Getuid()),
gid: uint32(os.Getgid()),
cfg: lo,
engineConfig: engineConfig,
generator: generator,
}
return &l, nil
}
// Exec prepares an EngineConfig defining how a container should be launched, then calls the starter binary to execute it.
// This includes interactive containers, instances, and joining an existing instance.
//
//nolint:maintidx
func (l *Launcher) Exec(ctx context.Context, ep launcher.ExecParams) error {
var err error
args, err := ep.ActionScriptArgs()
if err != nil {
return fmt.Errorf("while getting ProcessArgs: %w", err)
}
// Set arguments to pass to contained process.
l.generator.SetProcessArgs(args)
// NoEval means we will not shell evaluate args / env in action scripts and environment processing.
// This replicates OCI behavior and differes from historic Singularity behavior.
if l.cfg.NoEval {
l.engineConfig.SetNoEval(true)
l.generator.AddProcessEnv("SINGULARITY_NO_EVAL", "1")
}
// Set container Umask w.r.t. our own, before any umask manipulation happens.
l.setUmask()
// Get our effective uid and gid for container execution.
// If root user requests a target uid, gid via --security options, handle them now.
l.uid, l.gid, err = l.setTargetIDs()
if err != nil {
sylog.Fatalf("Could not configure target UID/GID: %s", err)
}
// Set image to run, or instance to join, and SINGULARITY_CONTAINER/SINGULARITY_NAME env vars.
if err := l.setImageOrInstance(ep.Image, ep.Instance); err != nil {
sylog.Errorf("While setting image/instance: %s", err)
}
// Overlay or writable image requested?
l.engineConfig.SetOverlayImage(l.cfg.OverlayPaths)
l.engineConfig.SetWritableImage(l.cfg.Writable)
// Check image is something we can run, and key is available for encrypted image, if applicable.
// If we are joining an instance, then any encrypted image is already mounted.
if !l.engineConfig.GetInstanceJoin() {
err = l.checkImage()
if err != nil {
sylog.Fatalf("While checking image: %s", err)
}
}
// Will we use the suid starter? If not we need to force the user namespace.
useSuid, forceUserNs := l.useSuid()
if forceUserNs {
l.cfg.Namespaces.User = true
}
// In the setuid workflow, set RLIMIT_STACK to its default value, keeping the
// original value to restore it before executing the container process.
if useSuid {
soft, hard, err := rlimit.Get("RLIMIT_STACK")
if err != nil {
sylog.Warningf("can't retrieve stack size limit: %s", err)
}
l.generator.AddProcessRlimits("RLIMIT_STACK", hard, soft)
}
// Handle requested binds, fuse mounts.
if err := l.setBinds(); err != nil {
sylog.Fatalf("While setting bind mount configuration: %s", err)
}
if err := l.setFuseMounts(); err != nil {
sylog.Fatalf("While setting FUSE mount configuration: %s", err)
}
// Set the home directory that should be effective in the container.
if err := l.setHome(); err != nil {
sylog.Fatalf("While setting home directory: %s", err)
}
// Allow user to disable the home mount via --no-home.
l.engineConfig.SetNoHome(l.cfg.NoHome)
// Allow user to disable binds via --no-mount.
l.setNoMountFlags()
// GPU configuration may add library bind to /.singularity.d/libs.
// Note: --nvccli may implicitly add --writable-tmpfs, so handle that *after* GPUs.
if err := l.SetGPUConfig(); err != nil {
// We must fatal on error, as we are checking for correct ownership of nvidia-container-cli,
// which is important to maintain security.
sylog.Fatalf("While setting GPU configuration: %s", err)
}
// --writable-tmpfs is for an ephemeral overlay, doesn't make sense if also asking to write to image itself.
if l.cfg.Writable && l.cfg.WritableTmpfs {
sylog.Warningf("Disabling --writable-tmpfs flag, mutually exclusive with --writable")
l.engineConfig.SetWritableTmpfs(false)
} else {
l.engineConfig.SetWritableTmpfs(l.cfg.WritableTmpfs)
}
// If proot is requested (we are running an unprivileged build, without userns) we must bind it
// into the container /.singularity.d/libs.
if l.cfg.Proot != "" && l.uid != 0 {
sylog.Debugf("Binding proot from %s", l.cfg.Proot)
l.engineConfig.AppendLibrariesPath(l.cfg.Proot)
}
// Additional user requested library binds into /.singularity.d/libs.
l.engineConfig.AppendLibrariesPath(l.cfg.ContainLibs...)
// Additional directory overrides.
l.engineConfig.SetScratchDir(l.cfg.ScratchDirs)
l.engineConfig.SetWorkdir(l.cfg.WorkDir)
// Container networking configuration.
l.engineConfig.SetNetwork(l.cfg.Network)
l.engineConfig.SetDNS(l.cfg.DNS)
l.engineConfig.SetNetworkArgs(l.cfg.NetworkArgs)
// If user wants to set a hostname, it requires the UTS namespace.
if l.cfg.Hostname != "" {
// This is a sanity-check; actionPreRun in actions.go should have prevented this scenario from arising.
if !l.cfg.Namespaces.UTS {
return fmt.Errorf("internal error: trying to set hostname without UTS namespace")
}
l.engineConfig.SetHostname(l.cfg.Hostname)
}
// Set requested capabilities (effective for root, or if sysadmin has permitted to another user).
l.engineConfig.SetAddCaps(l.cfg.AddCaps)
l.engineConfig.SetDropCaps(l.cfg.DropCaps)
// Custom --config file (only effective in non-setuid or as root).
l.engineConfig.SetConfigurationFile(l.cfg.ConfigFile)
// When running as root, the user can optionally allow setuid with container.
err = launcher.WithPrivilege(l.cfg.AllowSUID, "--allow-setuid", func() error {
l.engineConfig.SetAllowSUID(l.cfg.AllowSUID)
return nil
})
if err != nil {
sylog.Fatalf("Could not configure --allow-setuid: %s", err)
}
// When running as root, the user can optionally keep all privs in the container.
err = launcher.WithPrivilege(l.cfg.KeepPrivs, "--keep-privs", func() error {
l.engineConfig.SetKeepPrivs(l.cfg.KeepPrivs)
return nil
})
if err != nil {
sylog.Fatalf("Could not configure --keep-privs: %s", err)
}
// User can optionally force dropping all privs from root in the container.
l.engineConfig.SetNoPrivs(l.cfg.NoPrivs)
// Set engine --security options (selinux, apparmor, seccomp functionality).
l.engineConfig.SetSecurity(l.cfg.SecurityOpts)
// User can override shell used when entering container.
l.engineConfig.SetShell(l.cfg.ShellPath)
if l.cfg.ShellPath != "" {
l.generator.AddProcessEnv("SINGULARITY_SHELL", l.cfg.ShellPath)
}
// Are we running with userns and subuid / subgid fakeroot functionality?
l.engineConfig.SetFakeroot(l.cfg.Fakeroot)
if l.cfg.Fakeroot {
l.cfg.Namespaces.User = true
}
// Allow optional skipping of setgroups in --fakeroot mode.
if l.cfg.NoSetgroups {
if l.cfg.Fakeroot {
l.engineConfig.SetNoSetgroups(l.cfg.NoSetgroups)
} else {
sylog.Warningf("--no-setgroups only applies to --fakeroot mode")
}
}
l.setCgroups(ep.Instance)
// --boot flag requires privilege, so check for this.
err = launcher.WithPrivilege(l.cfg.Boot, "--boot", func() error { return nil })
if err != nil {
sylog.Fatalf("Could not configure --boot: %s", err)
}
// --containall or --boot infer --contain.
if l.cfg.Contain || l.cfg.ContainAll || l.cfg.Boot {
l.engineConfig.SetContain(true)
// --containall infers PID/IPC isolation and a clean environment.
if l.cfg.ContainAll {
l.cfg.Namespaces.PID = true
l.cfg.Namespaces.IPC = true
l.cfg.CleanEnv = true
}
}
// --no-pid disables PID inferred above
if l.cfg.Namespaces.NoPID {
l.cfg.Namespaces.PID = false
}
// Setup instance specific configuration if required.
if ep.Instance != "" {
l.generator.AddProcessEnv("SINGULARITY_INSTANCE", ep.Instance)
l.cfg.Namespaces.PID = true
l.engineConfig.SetInstance(true)
l.engineConfig.SetBootInstance(l.cfg.Boot)
if useSuid && !l.cfg.Namespaces.User && launcher.HidepidProc() {
return fmt.Errorf("hidepid option set on /proc mount, require 'hidepid=0' to start instance with setuid workflow")
}
_, err := instance.Get(ep.Instance, instance.SingSubDir)
if err == nil {
return fmt.Errorf("instance %s already exists", ep.Instance)
}
if l.cfg.Boot {
l.cfg.Namespaces.UTS = true
l.cfg.Namespaces.Net = true
if len(l.cfg.Hostname) < 1 {
l.engineConfig.SetHostname(ep.Instance)
}
if !l.cfg.KeepPrivs {
l.engineConfig.SetDropCaps("CAP_SYS_BOOT,CAP_SYS_RAWIO")
}
l.generator.SetProcessArgs([]string{"/sbin/init"})
}
}
// Set the required namespaces in the engine config.
l.setNamespaces()
// Set the container environment.
if err := l.setEnv(ctx, args); err != nil {
return fmt.Errorf("while setting environment: %s", err)
}
// Set the container process work directory.
l.setProcessCwd()
l.generator.AddProcessEnv("SINGULARITY_APPNAME", l.cfg.AppName)
// Get image ready to run, if needed, via FUSE mount / extraction.
if err := l.prepareImage(ctx, ep.Image); err != nil {
return fmt.Errorf("while preparing image: %s", err)
}
// Call the starter binary using our prepared config.
if l.engineConfig.GetInstance() {
err = l.starterInstance(ep.Instance, useSuid)
} else {
err = l.starterInteractive(useSuid)
}
// Execution is finished.
if err != nil {
return fmt.Errorf("while executing starter: %s", err)
}
return nil
}
// setUmask saves the current umask, to be set for the process run in the container,
// unless the --no-umask option was specified.
// https://github.com/hpcng/singularity/issues/5214
func (l *Launcher) setUmask() {
currMask := syscall.Umask(0o022)
if !l.cfg.NoUmask {
sylog.Debugf("Saving umask %04o for propagation into container", currMask)
l.engineConfig.SetUmask(currMask)
l.engineConfig.SetRestoreUmask(true)
}
}
// setTargetIDs sets engine configuration for any requested target UID and GID (when run as root).
// The effective uid and gid we will run under are returned as uid and gid.
func (l *Launcher) setTargetIDs() (uid, gid uint32, err error) {
// Start with our actual uid / gid as invoked
uid = uint32(os.Getuid())
gid = uint32(os.Getgid())
// Identify requested uid/gif (if any) from --security options
uidParam := security.GetParam(l.cfg.SecurityOpts, "uid")
gidParam := security.GetParam(l.cfg.SecurityOpts, "gid")
targetUID := 0
targetGID := make([]int, 0)
// If a target uid was requested, and we are root, handle that.
err = launcher.WithPrivilege(uidParam != "", "uid security feature", func() error {
u, err := strconv.ParseUint(uidParam, 10, 32)
if err != nil {
return fmt.Errorf("failed to parse provided UID: %w", err)
}
targetUID = int(u)
uid = uint32(targetUID)
l.engineConfig.SetTargetUID(targetUID)
return nil
})
if err != nil {
return 0, 0, err
}
// If any target gids were requested, and we are root, handle that.
err = launcher.WithPrivilege(gidParam != "", "gid security feature", func() error {
gids := strings.Split(gidParam, ":")
for _, id := range gids {
g, err := strconv.ParseUint(id, 10, 32)
if err != nil {
return fmt.Errorf("failed to parse provided GID: %w", err)
}
targetGID = append(targetGID, int(g))
}
if len(gids) > 0 {
gid = uint32(targetGID[0])
}
l.engineConfig.SetTargetGID(targetGID)
return nil
})
if err != nil {
return 0, 0, err
}
// Return the effective uid, gid the container will run with
return uid, gid, nil
}
// setImageOrInstance sets the image to start, or instance and it's image to be joined.
func (l *Launcher) setImageOrInstance(image string, name string) error {
if strings.HasPrefix(image, "instance://") {
if name != "" {
return fmt.Errorf("starting an instance from another is not allowed")
}
instanceName := instance.ExtractName(image)
file, err := instance.Get(instanceName, instance.SingSubDir)
if err != nil {
return err
}
l.cfg.Namespaces.User = file.UserNs
l.generator.AddProcessEnv("SINGULARITY_CONTAINER", file.Image)
l.generator.AddProcessEnv("SINGULARITY_NAME", filepath.Base(file.Image))
l.generator.AddProcessEnv("SINGULARITY_INSTANCE", instanceName)
l.engineConfig.SetImage(image)
l.engineConfig.SetInstanceJoin(true)
// If we are running non-root, join the instance cgroup now, as we
// can't manipulate the ppid cgroup in the engine prepareInstanceJoinConfig().
// This flow is only applicable with the systemd cgroups manager.
if file.Cgroup && l.uid != 0 {
if !l.engineConfig.File.SystemdCgroups {
return fmt.Errorf("joining non-root instance with cgroups requires systemd as cgroups manager")
}
pid := os.Getpid()
// First, we create a new systemd managed cgroup for ourselves. This is so that we will be
// under a common user-owned ancestor, allowing us to move into the instance cgroup next.
// See: https://www.kernel.org/doc/html/v4.18/admin-guide/cgroup-v2.html#delegation-containment
sylog.Debugf("Adding process %d to sibling cgroup", pid)
manager, err := cgroups.NewManagerWithSpec(&specs.LinuxResources{}, pid, "", true)
if err != nil {
return fmt.Errorf("couldn't create cgroup manager: %w", err)
}
cgPath, _ := manager.GetCgroupRelPath()
sylog.Debugf("In sibling cgroup: %s", cgPath)
// Now we should be under the user-owned service directory in the cgroupfs,
// so we can move into the actual instance cgroup that we want.
sylog.Debugf("Moving process %d to instance cgroup", pid)
manager, err = cgroups.GetManagerForPid(file.Pid)
if err != nil {
return fmt.Errorf("couldn't create cgroup manager: %w", err)
}
if err := manager.AddProc(pid); err != nil {
return fmt.Errorf("couldn't add process to instance cgroup: %w", err)
}
cgPath, _ = manager.GetCgroupRelPath()
sylog.Debugf("In instance cgroup: %s", cgPath)
}
} else {
abspath, err := filepath.Abs(image)
l.generator.AddProcessEnv("SINGULARITY_CONTAINER", abspath)
l.generator.AddProcessEnv("SINGULARITY_NAME", filepath.Base(abspath))
if err != nil {
return fmt.Errorf("failed to determine image absolute path for %s: %w", image, err)
}
l.engineConfig.SetImage(abspath)
}
return nil
}
func (l *Launcher) checkImage() error {
img, err := imgutil.Init(l.engineConfig.GetImage(), false)
if err != nil {
return fmt.Errorf("could not open image %s: %w", l.engineConfig.GetImage(), err)
}
if img.Type == image.OCISIF {
return fmt.Errorf("native runtime does not support OCI-SIF images, use --oci mode")
}
if err := l.checkEncryptionKey(img); err != nil {
return err
}
// don't defer this call as in all cases it won't be
// called before execing starter, so it would leak the
// image file descriptor to the container process
img.File.Close()
return nil
}
// checkEncryptionKey verifies key material is available if the image is encrypted.
// Allows us to fail fast if required key material is not available / usable.
func (l *Launcher) checkEncryptionKey(img *imgutil.Image) error {
sylog.Debugf("Checking for encrypted system partition")
part, err := img.GetRootFsPartition()
if err != nil {
return fmt.Errorf("while getting root filesystem in %s: %w", l.engineConfig.GetImage(), err)
}
if part.Type == imgutil.ENCRYPTSQUASHFS {
sylog.Debugf("Encrypted container filesystem detected")
if l.cfg.KeyInfo == nil {
return fmt.Errorf("no key was provided, cannot access encrypted container")
}
plaintextKey, err := cryptkey.PlaintextKey(*l.cfg.KeyInfo, l.engineConfig.GetImage())
if err != nil {
sylog.Errorf("Please check you are providing the correct key for decryption")
return fmt.Errorf("cannot decrypt %s: %w", l.engineConfig.GetImage(), err)
}
l.engineConfig.SetEncryptionKey(plaintextKey)
}
return nil
}
// useSuid checks whether to use the setuid starter binary, and if we need to force the user namespace.
func (l *Launcher) useSuid() (useSuid, forceUserNs bool) {
// privileged installation by default
useSuid = true
// Are we already in a user namespace?
insideUserNs, _ := namespaces.IsInsideUserNamespace(os.Getpid())
// singularity was compiled with '--without-suid' option
if buildcfg.SINGULARITY_SUID_INSTALL == 0 {
useSuid = false
if !l.cfg.Namespaces.User && l.uid != 0 {
sylog.Verbosef("Unprivileged installation: using user namespace")
l.cfg.Namespaces.User = true
}
}
// use non privileged starter binary:
// - if running as root
// - if already running inside a user namespace
// - if user namespace is requested
// - if running as user and 'allow setuid = no' is set in singularity.conf
if l.uid == 0 || insideUserNs || l.cfg.Namespaces.User || !l.engineConfig.File.AllowSetuid {
useSuid = false
// fallback to user namespace:
// - for non root user with setuid installation and 'allow setuid = no'
// - for root user without effective capability CAP_SYS_ADMIN
if l.uid != 0 && buildcfg.SINGULARITY_SUID_INSTALL == 1 && !l.engineConfig.File.AllowSetuid {
sylog.Verbosef("'allow setuid' set to 'no' by configuration, fallback to user namespace")
l.cfg.Namespaces.User = true
} else if l.uid == 0 && !l.cfg.Namespaces.User {
caps, err := capabilities.GetProcessEffective()
if err != nil {
sylog.Fatalf("Could not get process effective capabilities: %s", err)
}
if caps&uint64(1<<unix.CAP_SYS_ADMIN) == 0 {
sylog.Verbosef("Effective capability CAP_SYS_ADMIN is missing, fallback to user namespace")
l.cfg.Namespaces.User = true
}
}
}
return useSuid, forceUserNs
}
// setBinds sets engine configuration for requested bind mounts.
func (l *Launcher) setBinds() error {
// First get binds from -B/--bind and env var
binds, err := bind.ParseBindPath(strings.Join(l.cfg.BindPaths, ","))
if err != nil {
return fmt.Errorf("while parsing bind path: %w", err)
}
// Now add binds from one or more --mount and env var.
for _, m := range l.cfg.Mounts {
bps, err := bind.ParseMountString(m)
if err != nil {
return fmt.Errorf("while parsing mount %q: %w", m, err)
}
binds = append(binds, bps...)
}
l.engineConfig.SetBindPath(binds)
l.generator.AddProcessEnv("SINGULARITY_BIND", strings.Join(l.cfg.BindPaths, ","))
return nil
}
// setFuseMounts sets engine configuration for requested FUSE mounts.
func (l *Launcher) setFuseMounts() error {
if len(l.cfg.FuseMount) > 0 {
/* If --fusemount is given, imply --pid */
l.cfg.Namespaces.PID = true
if err := l.engineConfig.SetFuseMount(l.cfg.FuseMount); err != nil {
return fmt.Errorf("while setting fuse mount: %w", err)
}
}
return nil
}
// Set engine flags to disable mounts, to allow overriding them if they are set true
// in the singularity.conf.
func (l *Launcher) setNoMountFlags() {
skipBinds := []string{}
for _, v := range l.cfg.NoMount {
switch v {
case "proc":
l.engineConfig.SetNoProc(true)
case "sys":
l.engineConfig.SetNoSys(true)
case "dev":
l.engineConfig.SetNoDev(true)
case "devpts":
l.engineConfig.SetNoDevPts(true)
case "home":
l.engineConfig.SetNoHome(true)
case "tmp":
l.engineConfig.SetNoTmp(true)
case "hostfs":
l.engineConfig.SetNoHostfs(true)
case "cwd":
l.engineConfig.SetNoCwd(true)
// All bind path singularity.conf entries
case "bind-paths":
skipBinds = append(skipBinds, "*")
default:
// Single bind path singularity.conf entry by abs path
if filepath.IsAbs(v) {
skipBinds = append(skipBinds, v)
continue
}
sylog.Warningf("Ignoring unknown mount type '%s'", v)
}
}
l.engineConfig.SetSkipBinds(skipBinds)
}
// setHome sets the correct home directory configuration for our circumstance.
// If it is not possible to mount a home directory then the mount will be disabled.
func (l *Launcher) setHome() error {
l.engineConfig.SetCustomHome(l.cfg.CustomHome)
// If we have fakeroot & the home flag has not been used then we have the standard
// /root location for the root user $HOME in the container.
// This doesn't count as a SetCustomHome(true), as we are mounting from the real
// user's standard $HOME -> /root and we want to respect --contain not mounting
// the $HOME in this case.
// See https://github.com/sylabs/singularity/pull/5227
if !l.cfg.CustomHome && l.cfg.Fakeroot {
l.cfg.HomeDir = fmt.Sprintf("%s:/root", l.cfg.HomeDir)
}
// If we are running as sungularity as root, but requesting a target UID in the container,
// handle set the home directory appropriately.
targetUID := l.engineConfig.GetTargetUID()
if l.cfg.CustomHome && targetUID != 0 {
if targetUID > 500 {
if pu, err := user.GetPwUID(uint32(targetUID)); err == nil {
sylog.Debugf("Target UID requested, set home directory to %s", pu.Dir)
l.cfg.HomeDir = pu.Dir
l.engineConfig.SetCustomHome(true)
} else {
sylog.Verbosef("Home directory for UID %d not found, home won't be mounted", targetUID)
l.engineConfig.SetNoHome(true)
l.cfg.HomeDir = "/"
}
} else {
sylog.Verbosef("System UID %d requested, home won't be mounted", targetUID)
l.engineConfig.SetNoHome(true)
l.cfg.HomeDir = "/"
}
}
// Handle any user request to override the home directory source/dest
homeSlice := strings.Split(l.cfg.HomeDir, ":")
if len(homeSlice) < 1 || len(homeSlice) > 2 {
return fmt.Errorf("home argument has incorrect number of elements: %v", homeSlice)
}
l.engineConfig.SetHomeSource(homeSlice[0])
if len(homeSlice) == 1 {
l.engineConfig.SetHomeDest(homeSlice[0])
} else {
l.engineConfig.SetHomeDest(homeSlice[1])
}
return nil
}
// SetGPUConfig sets up EngineConfig entries for NV / ROCm usage, if requested.
func (l *Launcher) SetGPUConfig() error {
if l.engineConfig.File.AlwaysUseNv && !l.cfg.NoNvidia {
l.cfg.Nvidia = true
sylog.Verbosef("'always use nv = yes' found in singularity.conf")
}
if l.engineConfig.File.AlwaysUseRocm && !l.cfg.NoRocm {
l.cfg.Rocm = true
sylog.Verbosef("'always use rocm = yes' found in singularity.conf")
}
if l.cfg.Nvidia && l.cfg.Rocm {
sylog.Warningf("--nv and --rocm cannot be used together. Only --nv will be applied.")
}
if l.cfg.Nvidia {
// If nvccli was not enabled by flag or config, drop down to legacy binds immediately
if !l.engineConfig.File.UseNvCCLI && !l.cfg.NvCCLI {
return l.setNVLegacyConfig()
}
// TODO: In privileged fakeroot mode we don't have the correct namespace context to run nvidia-container-cli
// from starter, so fall back to legacy NV handling until that workflow is refactored heavily.
fakeRootPriv := l.cfg.Fakeroot && l.engineConfig.File.AllowSetuid && (buildcfg.SINGULARITY_SUID_INSTALL == 1)
if !fakeRootPriv {
return l.setNvCCLIConfig()
}
return fmt.Errorf("--fakeroot does not support --nvccli in set-uid installations")
}
if l.cfg.Rocm {
return l.setRocmConfig()
}
return nil
}
// setNvCCLIConfig sets up EngineConfig entries for NVIDIA GPU configuration via nvidia-container-cli.
func (l *Launcher) setNvCCLIConfig() (err error) {
sylog.Debugf("Using nvidia-container-cli for GPU setup")
l.engineConfig.SetNvCCLI(true)
if os.Getenv("NVIDIA_VISIBLE_DEVICES") == "" {
if l.cfg.Contain || l.cfg.ContainAll {
// When we use --contain we don't mount the NV devices by default in the nvidia-container-cli flow,
// they must be mounted via specifying with`NVIDIA_VISIBLE_DEVICES`. This differs from the legacy
// flow which mounts all GPU devices, always... so warn the user.
sylog.Warningf("When using nvidia-container-cli with --contain NVIDIA_VISIBLE_DEVICES must be set or no GPUs will be available in container.")
} else {
// In non-contained mode set NVIDIA_VISIBLE_DEVICES="all" by default, so MIGs are available.
// Otherwise there is a difference vs legacy GPU binding. See Issue #471.
sylog.Infof("Setting 'NVIDIA_VISIBLE_DEVICES=all' to emulate legacy GPU binding.")
os.Setenv("NVIDIA_VISIBLE_DEVICES", "all")
}
}
// Pass NVIDIA_ env vars that will be converted to nvidia-container-cli options
nvCCLIEnv := []string{}
for _, e := range os.Environ() {
if strings.HasPrefix(e, "NVIDIA_") {
nvCCLIEnv = append(nvCCLIEnv, e)
}
}
l.engineConfig.SetNvCCLIEnv(nvCCLIEnv)
if l.cfg.Namespaces.User && !l.cfg.Writable {
return fmt.Errorf("nvidia-container-cli requires --writable with user namespace/fakeroot")
}
if !l.cfg.Writable && !l.cfg.WritableTmpfs {
sylog.Infof("Setting --writable-tmpfs (required by nvidia-container-cli)")
l.cfg.WritableTmpfs = true
}
return nil
}
// setNvLegacyConfig sets up EngineConfig entries for NVIDIA GPU configuration via direct binds of configured bins/libs.
func (l *Launcher) setNVLegacyConfig() error {
sylog.Debugf("Using legacy binds for nv GPU setup")
l.engineConfig.SetNvLegacy(true)
gpuConfFile := filepath.Join(buildcfg.SINGULARITY_CONFDIR, "nvliblist.conf")
// bind persistenced socket if found
ipcs, err := gpu.NvidiaIpcsPath()
if err != nil {
sylog.Warningf("While finding nv ipcs: %v", err)
}
libs, bins, err := gpu.NvidiaPaths(gpuConfFile)
if err != nil {
sylog.Warningf("While finding nv bind points: %v", err)
}
l.setGPUBinds(libs, bins, ipcs, "nv")
return nil
}
// setRocmConfig sets up EngineConfig entries for ROCm GPU configuration via direct binds of configured bins/libs.
func (l *Launcher) setRocmConfig() error {
sylog.Debugf("Using rocm GPU setup")
l.engineConfig.SetRocm(true)
gpuConfFile := filepath.Join(buildcfg.SINGULARITY_CONFDIR, "rocmliblist.conf")
libs, bins, err := gpu.RocmPaths(gpuConfFile)
if err != nil {
sylog.Warningf("While finding ROCm bind points: %v", err)
}
l.setGPUBinds(libs, bins, []string{}, "nv")
return nil
}
// setGPUBinds sets EngineConfig entries to bind the provided list of libs, bins, ipc files.
func (l *Launcher) setGPUBinds(libs, bins, ipcs []string, gpuPlatform string) {
files := make([]string, len(bins)+len(ipcs))
if len(files) == 0 {
sylog.Warningf("Could not find any %s files on this host!", gpuPlatform)
} else {
if l.cfg.Writable {
sylog.Warningf("%s files may not be bound with --writable", gpuPlatform)
}
for i, binary := range bins {
usrBinBinary := filepath.Join("/usr/bin", filepath.Base(binary))
files[i] = strings.Join([]string{binary, usrBinBinary}, ":")
}
for i, ipc := range ipcs {
files[i+len(bins)] = ipc
}
l.engineConfig.SetFilesPath(files)
}
if len(libs) == 0 {
sylog.Warningf("Could not find any %s libraries on this host!", gpuPlatform)
} else {
l.engineConfig.SetLibrariesPath(libs)
}
}
// setNamespaces sets namespace configuration for the engine.
func (l *Launcher) setNamespaces() {
// unprivileged installation could not use fakeroot
// network because it requires a setuid installation
// so we fallback to none
if l.cfg.Namespaces.Net {
if l.cfg.Fakeroot && l.cfg.Network != "none" {
if buildcfg.SINGULARITY_SUID_INSTALL == 0 || !l.engineConfig.File.AllowSetuid {
sylog.Warningf(
"fakeroot with unprivileged installation or 'allow setuid = no' " +
"could not use 'fakeroot' network, fallback to 'none' network",
)
l.engineConfig.SetNetwork("none")
}
}
l.generator.AddOrReplaceLinuxNamespace("network", "")
}
if l.cfg.Namespaces.UTS {
l.generator.AddOrReplaceLinuxNamespace("uts", "")
}
if l.cfg.Namespaces.PID {
l.generator.AddOrReplaceLinuxNamespace("pid", "")
l.engineConfig.SetNoInit(l.cfg.NoInit)
}
if l.cfg.Namespaces.IPC {
l.generator.AddOrReplaceLinuxNamespace("ipc", "")
}
if l.cfg.Namespaces.User {
l.generator.AddOrReplaceLinuxNamespace("user", "")
if !l.cfg.Fakeroot {
l.generator.AddLinuxUIDMapping(l.uid, l.uid, 1)
l.generator.AddLinuxGIDMapping(l.gid, l.gid, 1)
}
}
}
// setEnv sets the environment for the container, from the host environment, glads, env-file.
func (l *Launcher) setEnv(ctx context.Context, args []string) error {
if l.cfg.EnvFile != "" {
currentEnv := append(
os.Environ(),
"SINGULARITY_IMAGE="+l.engineConfig.GetImage(),
)
env, err := env.FileMap(ctx, l.cfg.EnvFile, args, currentEnv)
if err != nil {
return fmt.Errorf("while processing %s: %w", l.cfg.EnvFile, err)
}
// --env variables will take precedence over variables
// defined by the environment file
sylog.Debugf("Setting environment variables from file %s", l.cfg.EnvFile)
// Update Env with those from file
for k, v := range env {
// Ensure we don't overwrite --env variables with environment file
if _, ok := l.cfg.Env[k]; ok {
sylog.Warningf("Ignored environment variable %s from %s: override from --env", k, l.cfg.EnvFile)
} else {
l.cfg.Env[k] = v
}
}
}
// process --env and --env-file variables for injection
// into the environment by prefixing them with SINGULARITYENV_
for envName, envValue := range l.cfg.Env {
// We can allow envValue to be empty (explicit set to empty) but not name!
if envName == "" {
sylog.Warningf("Ignore environment variable %s=%s: variable name missing", envName, envValue)
continue
}
os.Setenv("SINGULARITYENV_"+envName, envValue)
}
// Copy and cache environment
environment := os.Environ()
// Clean environment
singularityEnv := env.SetContainerEnv(l.generator, environment, l.cfg.CleanEnv, l.engineConfig.GetHomeDest())
l.engineConfig.SetSingularityEnv(singularityEnv)
return nil
}
// setProcessCwd sets the container process working directory
func (l *Launcher) setProcessCwd() {
if cwd, err := os.Getwd(); err == nil {
l.engineConfig.SetCwd(cwd)
if l.cfg.CwdPath != "" {
l.generator.SetProcessCwd(l.cfg.CwdPath)
} else {
if l.engineConfig.GetContain() {
l.generator.SetProcessCwd(l.engineConfig.GetHomeDest())
} else {
l.generator.SetProcessCwd(cwd)
}
}
} else {
sylog.Warningf("can't determine current working directory: %s", err)
}
}
// setCgroups sets cgroup related configuration
func (l *Launcher) setCgroups(instanceName string) error {
// If we are not root, we need to pass in XDG / DBUS environment so we can communicate
// with systemd for any cgroups (v2) operations.
if l.uid != 0 {
sylog.Debugf("Recording rootless XDG_RUNTIME_DIR / DBUS_SESSION_BUS_ADDRESS")
l.engineConfig.SetXdgRuntimeDir(os.Getenv("XDG_RUNTIME_DIR"))
l.engineConfig.SetDbusSessionBusAddress(os.Getenv("DBUS_SESSION_BUS_ADDRESS"))
}
if l.cfg.CGroupsJSON != "" {
// Handle cgroups configuration (parsed from file or flags in CLI).
l.engineConfig.SetCgroupsJSON(l.cfg.CGroupsJSON)
return nil
}
if instanceName == "" {
return nil
}
// If we are an instance, always use a cgroup if possible, to enable stats.
useCG := cgroups.CanUseCgroups(l.engineConfig.File.SystemdCgroups, false)
if useCG {
cg := cgroups.Config{}
cgJSON, err := cg.MarshalJSON()
if err != nil {
return err
}
l.engineConfig.SetCgroupsJSON(cgJSON)
return nil
}
sylog.Infof("Instance stats will not be available - system configuration does not support cgroup management.")
return nil
}
// PrepareImage substitutes a provided SIF/SquashFS/extfs image with a directory
// presenting the image rootfs, when it is not possible to directly mount the
// image using a kernel mount. It has no effect when image is already a sandbox
// directory, or can be mounted with a kernel mount.
//
// When a kernel mount of image is not supported, an image will be either:
// - Mounted with a FUSE binary onto a temporary directory.
// - Extracted with unsquashfs into a temporary directory.
//
// The resulting directory is then set as the container to be launched. The
// engine is instructed to remove the temporary directory on container exit.
func (l *Launcher) prepareImage(c context.Context, image string) error {
// Instance join doesn't involve an image.
if strings.HasPrefix(image, "instance://") {
return nil
}
insideUserNs, _ := namespaces.IsInsideUserNamespace(os.Getpid())
isUserNs := insideUserNs || l.cfg.Namespaces.User
// Kernel image mounts should not be used when either:
// - a --tmp-sandbox was explicitly requested -or-
// - we are inside a userns -or-
// - deprecated --sif-fuse flag was specified
noKernelMount := l.cfg.TmpSandbox || isUserNs || l.cfg.SIFFUSE
// A FUSE image mount can be attempted when none of:
// - a --tmp-sandbox was explicitly requested -or-
// - the --writable flag was specified
tryFuse := !(l.cfg.TmpSandbox || l.cfg.Writable)
img, err := imgutil.Init(image, false)
if err != nil {
return fmt.Errorf("could not open image %s: %s", image, err)
}
defer img.File.Close()
part, err := img.GetRootFsPartition()
if err != nil {
return fmt.Errorf("while getting root filesystem in %s: %s", image, err)
}
switch part.Type {
case imgutil.SANDBOX:
return nil
case imgutil.SQUASHFS:
if !l.engineConfig.File.AllowKernelSquashfs || noKernelMount {
return l.prepareSquashfs(c, img, tryFuse)
}
// setuid, kernel squashfs permitted, fuse not requested - no action needed
return nil
case imgutil.ENCRYPTSQUASHFS:
if !l.engineConfig.File.AllowKernelSquashfs || noKernelMount {
return fmt.Errorf("encrypted SIF files are only supported in setuid mode, with kernel mounts")
}
// setuid, kernel squashfs permitted, fuse not requested - no action needed
return nil
case imgutil.EXT3:
if !l.engineConfig.File.AllowKernelExtfs || noKernelMount {
return l.prepareExtfs(c, img, tryFuse)
}
// setuid, kernel extfs permitted, fuse not requested - no action needed
return nil
}
return fmt.Errorf("unsupported image rootfs type: %d", part.Type)
}
func (l *Launcher) prepareSquashfs(ctx context.Context, img *imgutil.Image, tryFuse bool) error {
tempDir, imageDir, err := mkContainerDirs()
if err != nil {
return err
}
if tryFuse {
allowOther := false
// In fakeroot mode, the users is able to assume a subuid/subgid, so allow
// others to access the FUSE mount.
if l.cfg.Fakeroot {
allowOther = true
}
sylog.Infof("Mounting image with FUSE.")
err = squashfuseMount(ctx, img, imageDir, allowOther)
if err == nil {
l.engineConfig.SetImage(imageDir)
l.engineConfig.SetImageFuse(true)
l.engineConfig.SetDeleteTempDir(tempDir)
l.generator.AddProcessEnv("SINGULARITY_CONTAINER", imageDir)
return nil
}
sylog.Warningf("squashfuse mount failed, falling back to extraction: %v", err)
}
if l.cfg.NoTmpSandbox || !l.engineConfig.File.TmpSandboxAllowed {
return fmt.Errorf("unpacking image to temporary sandbox dir required, but is prohibited by 'tmp sandbox = no' in singularity.conf or --no-tmp-sandbox command-line flag")
}
if l.cfg.Writable {
sylog.Warningf("--writable applies to temporary sandbox only, changes will not be written to the original image.")
}
// Due to path traversal issues in older unsquashfs versions, we run it
// wrapped under singularity. If the user has requested --userns/-u then
// that wrapping should also use a user namespace (to support
// container/namespace nesting). An exception is when running as root. As
// root, unsquashfs would attempt chown and fail with the single uid/gid
// mapping.
extractUserns := l.cfg.Namespaces.User && os.Getuid() != 0
err = extractImage(img, imageDir, extractUserns)
if err == nil {
l.engineConfig.SetImage(imageDir)
l.engineConfig.SetDeleteTempDir(tempDir)
l.generator.AddProcessEnv("SINGULARITY_CONTAINER", imageDir)
return nil
}
if err2 := os.RemoveAll(tempDir); err2 != nil {
sylog.Errorf("Couldn't remove temporary directory %s: %s", tempDir, err2)
}
return fmt.Errorf("extraction failed: %v", err)
}
func (l *Launcher) prepareExtfs(ctx context.Context, img *imgutil.Image, tryFuse bool) error {
if !tryFuse {
return fmt.Errorf("extfs images must be kernel or FUSE mounted, extraction to a temporary sandbox is not supported")
}
allowOther := false
// In fakeroot mode, the users is able to assume a subuid/subgid, so allow
// others to access the FUSE mount.
if l.cfg.Fakeroot {
allowOther = true
}
tempDir, imageDir, err := mkContainerDirs()
if err != nil {
return err
}
im := fuse.ImageMount{
Type: image.EXT3,
UID: os.Getuid(),
GID: os.Getgid(),
Readonly: l.cfg.Writable,
SourcePath: filepath.Clean(img.Path),
AllowOther: allowOther,
}
im.SetMountPoint(filepath.Clean(imageDir))
sylog.Infof("Mounting image with FUSE.")
if err := im.Mount(ctx); err != nil {
if err2 := os.RemoveAll(tempDir); err2 != nil {
sylog.Errorf("Couldn't remove temporary directory %s: %s", tempDir, err2)
}
return err
}
l.engineConfig.SetImage(imageDir)
l.engineConfig.SetImageFuse(true)
l.engineConfig.SetDeleteTempDir(tempDir)
l.generator.AddProcessEnv("SINGULARITY_CONTAINER", imageDir)
return nil
}
// mkContainerDirs creates a tempDir, with a nested 'root' imageDir that an image can be placed into.
// The directory nesting is required so that extraction of an image doesn't apply permissions that
// cause the tempDir to be accessible to others.
func mkContainerDirs() (tempDir, imageDir string, err error) {
// keep compatibility with v2
tmpdir := os.Getenv("SINGULARITY_TMPDIR")
if tmpdir == "" {
tmpdir = os.Getenv("SINGULARITY_LOCALCACHEDIR")
if tmpdir == "" {
tmpdir = os.Getenv("SINGULARITY_CACHEDIR")
}
}
// create temporary dir
tempDir, err = os.MkdirTemp(tmpdir, "rootfs-")
if err != nil {
return "", "", fmt.Errorf("could not create temporary directory: %s", err)
}
defer func() {
if err != nil {
os.RemoveAll(tempDir)
}
}()
// create an inner dir to extract to, so we don't clobber the secure permissions on the tmpDir.
imageDir = filepath.Join(tempDir, "root")
if err := os.Mkdir(imageDir, 0o755); err != nil {
return "", "", fmt.Errorf("could not create root directory: %s", err)
}
return tempDir, imageDir, nil
}
// extractImage extracts img to directory dir within a temporary directory
// tempDir. It is the caller's responsibility to remove tempDir when no longer
// needed. If userns is true, then where unsquashfs is wrapped with singularity,
// a user namespace will be used.
func extractImage(img *imgutil.Image, imageDir string, userns bool) error {
sylog.Infof("Converting SIF file to temporary sandbox...")
unsquashfsPath, err := bin.FindBin("unsquashfs")
if err != nil {
return err
}
// create a reader for rootfs partition
reader, err := imgutil.NewPartitionReader(img, "", 0)
if err != nil {
return fmt.Errorf("could not extract root filesystem: %s", err)
}
s := unpacker.NewSquashfs(userns)
if !s.HasUnsquashfs() && unsquashfsPath != "" {
s.UnsquashfsPath = unsquashfsPath
}
// extract root filesystem
if err := s.ExtractAll(reader, imageDir); err != nil {
return fmt.Errorf("root filesystem extraction failed: %s", err)
}
return nil
}
// squashfuseMount mounts img using squashfuse to directory imageDir. It is the
// caller's responsibility to umount imageDir when no longer needed.
func squashfuseMount(ctx context.Context, img *imgutil.Image, imageDir string, allowOther bool) (err error) {
part, err := img.GetRootFsPartition()
if err != nil {
return fmt.Errorf("while getting root filesystem : %s", err)
}
if img.Type != imgutil.SIF && part.Type != imgutil.SQUASHFS {
return fmt.Errorf("only SIF images with a squashfs rootfs are supported")
}
f, err := sif.LoadContainerFromPath(img.Path, sif.OptLoadWithFlag(os.O_RDONLY))
if err != nil {
return fmt.Errorf("failed to load image: %w", err)
}
d, err := f.GetDescriptor(sif.WithPartitionType(sif.PartPrimSys))
if err != nil {
return fmt.Errorf("failed to get partition descriptor: %w", err)
}
_, err = squashfs.FUSEMount(ctx, uint64(d.Offset()), img.Path, imageDir, allowOther)
return err
}
// starterInteractive executes the starter binary to run an image interactively, given the supplied engineConfig
func (l *Launcher) starterInteractive(useSuid bool) error {
loadOverlay := false
if !l.cfg.Namespaces.User && buildcfg.SINGULARITY_SUID_INSTALL == 1 {
loadOverlay = true
}
cfg := &config.Common{
EngineName: singularityConfig.Name,
EngineConfig: l.engineConfig,
}
// Allow any plugins with callbacks to modify the assembled Config
runPluginCallbacks(cfg)
err := starter.Exec(
"Singularity runtime parent",
cfg,
starter.UseSuid(useSuid),
starter.LoadOverlayModule(loadOverlay),
starter.PostStartHost(l.engineConfig.GetImageFuse()),
starter.CleanupHost(l.engineConfig.GetImageFuse()),
)
return err
}
// starterInstance executes the starter binary to run an instance given the supplied engineConfig
func (l *Launcher) starterInstance(name string, useSuid bool) error {
cfg := &config.Common{
EngineName: singularityConfig.Name,
ContainerID: name,
EngineConfig: l.engineConfig,
}
// Allow any plugins with callbacks to modify the assembled Config
runPluginCallbacks(cfg)
pu, err := user.GetPwUID(uint32(os.Getuid()))
if err != nil {
return fmt.Errorf("failed to retrieve user information for UID %d: %w", os.Getuid(), err)
}
procname, err := instance.ProcName(name, pu.Name)
if err != nil {
return err
}
stdout, stderr, err := instance.SetLogFile(name, int(l.uid), instance.LogSubDir)
if err != nil {
return fmt.Errorf("failed to create instance log files: %w", err)
}
start, err := stderr.Seek(0, io.SeekEnd)
if err != nil {
sylog.Warningf("failed to get standard error stream offset: %s", err)
}
loadOverlay := false
if !l.cfg.Namespaces.User && buildcfg.SINGULARITY_SUID_INSTALL == 1 {
loadOverlay = true
}
cmdErr := starter.Run(
procname,
cfg,
starter.UseSuid(useSuid),
starter.WithStdout(stdout),
starter.WithStderr(stderr),
starter.LoadOverlayModule(loadOverlay),
starter.PostStartHost(l.engineConfig.GetImageFuse()),
starter.CleanupHost(l.engineConfig.GetImageFuse()),
)
if sylog.GetLevel() != 0 {
// starter can exit a bit before all errors has been reported
// by instance process, wait a bit to catch all errors
time.Sleep(100 * time.Millisecond)
end, err := stderr.Seek(0, io.SeekEnd)
if err != nil {
sylog.Warningf("failed to get standard error stream offset: %s", err)
}
if end-start > 0 {
output := make([]byte, end-start)
stderr.ReadAt(output, start)
fmt.Println(string(output))
}
}
if cmdErr != nil {
return fmt.Errorf("failed to start instance: %w", cmdErr)
}
sylog.Verbosef("you will find instance output here: %s", stdout.Name())
sylog.Verbosef("you will find instance error here: %s", stderr.Name())
sylog.Infof("instance started successfully")
return nil
}
// runPluginCallbacks executes any plugin callbacks to manipulate the engine config passed in
func runPluginCallbacks(cfg *config.Common) error {
callbackType := (clicallback.SingularityEngineConfig)(nil)
callbacks, err := plugin.LoadCallbacks(callbackType)
if err != nil {
return fmt.Errorf("while loading plugin callbacks '%T': %w", callbackType, err)
}
for _, c := range callbacks {
//nolint:forcetypeassert
c.(clicallback.SingularityEngineConfig)(cfg)
}
return nil
}
|