Skip to content

Commit

Permalink
Merge branch 'main' into cras
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Nov 22, 2024
2 parents 66e8a45 + 011eeab commit 832b021
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@
- Fix regression from 4.1.5 that overwrites source image runscript, environment
etc. in build from local image.

### New Features & Functionality

- In OCI-Mode, accommodate systems configured so that they do not create a
`/run/user` session directory. OCI-Mode will now attempt to use
`$TMPDIR/singularity-oci-<uid>` for runtime state on systems where
`$XDG_RUNTIME_DIR` is not set and the default user session path of
`/run/user/<uid>` does not exist. Note that the `$TMPDIR/singularity-oci-<uid>`
directory is shared between concurrent `--oci` mode invocations, and will not
be removed on exit - an empty directory will remain.

## 4.2.1 \[2024-09-13\]

### Bug Fixes
Expand Down
48 changes: 46 additions & 2 deletions internal/pkg/runtime/launcher/oci/oci_linux.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2022, Sylabs Inc. All rights reserved.
// Copyright (c) 2018-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.
Expand All @@ -13,9 +13,11 @@ import (
"os"
"path"
"path/filepath"
"syscall"
"time"

securejoin "github.com/cyphar/filepath-securejoin"
"github.com/sylabs/singularity/v4/internal/pkg/cgroups"
"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/rootless"
Expand Down Expand Up @@ -58,10 +60,52 @@ func runtimeStateDir() (path string, err error) {
if err != nil {
return "", err
}

// Root - use our own /run directory
if u.Uid == "0" {
return "/run/singularity-oci", nil
}
return fmt.Sprintf("/run/user/%s/singularity-oci", u.Uid), nil

// Prefer XDG_RUNTIME_DIR for non-root, if set and usable.
if ok, _ := cgroups.HasXDGRuntimeDir(); ok {
d := filepath.Join(os.Getenv("XDG_RUNTIME_DIR"), "singularity-oci")
sylog.Debugf("Using XDG_RUNTIME_DIR for runtime state (%s)", d)
return d, nil
}

// If no XDG_RUNTIME_DIR, then try standard user session directory location.
runDir := fmt.Sprintf("/run/user/%s/", u.Uid)
if fs.IsDir(runDir) {
d := filepath.Join(runDir, "singularity-oci")
sylog.Debugf("Using /run/user default for runtime state (%s)", d)
return d, nil
}

// If standard user session directory not available, use TMPDIR as a last resort.
runDir = filepath.Join(os.TempDir(), "singularity-oci-"+u.Uid)
sylog.Infof("No /run/user session directory for user. Using %q for runtime state.", runDir)

// Create if not present
st, err := os.Stat(runDir)
if os.IsNotExist(err) {
return runDir, os.Mkdir(runDir, 0o700)
}
if err != nil {
return "", err
}

// If it exists, verify it's a directory with correct ownership, perms.
if !st.IsDir() {
return "", fmt.Errorf("%s exists, but is not a directory", runDir)
}
if st.Sys().(*syscall.Stat_t).Uid != uint32(os.Geteuid()) { //nolint:forcetypeassert
return "", fmt.Errorf("%s exists, but is not owned by correct user", runDir)
}
if st.Mode().Perm() != 0o700 {
return "", fmt.Errorf("%s exists, but does not have correct permissions (700)", runDir)
}

return runDir, nil
}

// stateDir returns the path to container state handled by conmon/singularity
Expand Down

0 comments on commit 832b021

Please sign in to comment.