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
|
// Copyright (c) 2018-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 starter
/*
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
#include <sys/types.h>
#include "starter.h"
*/
// #cgo CFLAGS: -I../../../../../../cmd/starter/c/include
import "C"
import (
"encoding/json"
"fmt"
"strings"
"syscall"
"unsafe"
"github.com/opencontainers/runtime-spec/specs-go"
"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"
"github.com/sylabs/singularity/v4/pkg/sylog"
"github.com/sylabs/singularity/v4/pkg/util/capabilities"
)
// SConfig is an alias for *C.struct_starterConfig
// (see cmd/starter/c/include/starter.h) introduced for convenience.
type SConfig *C.struct_starterConfig
// Config wraps SConfig. It is used to manipulate starter's config which
// lies in shared memory. Thus the Go part can update the config and
// starter will respect it during container creation. More specifically,
// all SetXXX methods of the Config will modify the shared memory unless
// the Release method was called.
type Config struct {
config SConfig // shared memory area
}
// NewConfig creates a Config based on SConfig. Since SConfig is an alias for
// *C.struct_starterConfig, the underlying memory is shared between C and Go.
func NewConfig(config SConfig) *Config {
return &Config{
config: config,
}
}
// GetIsSUID returns true if the SUID workflow is enabled.
// This field is set by starter at the very beginning of its execution.
func (c *Config) GetIsSUID() bool {
return c.config.starter.isSuid == C.true
}
// GetContainerPid returns the container PID (if any).
// Container PID is set by master process before stage 2 or rpc.
func (c *Config) GetContainerPid() int {
return int(c.config.container.pid)
}
// SetInstance changes starter config so that it will spawn an instance
// instead of a regular container if the passed value is true.
func (c *Config) SetInstance(instance bool) {
if instance {
c.config.container.isInstance = C.true
} else {
c.config.container.isInstance = C.false
}
}
// SetNoNewPrivs changes starter config so that it will set NO_NEW_PRIVS
// flag for a container before it starts up if noprivs is true.
func (c *Config) SetNoNewPrivs(noprivs bool) {
if noprivs {
c.config.container.privileges.noNewPrivs = C.true
} else {
c.config.container.privileges.noNewPrivs = C.false
}
}
// SetMasterPropagateMount changes starter config so that the mount propagation
// between master (process that monitors container) and a container itself
// is set to MS_SHARED if propagate is true.
func (c *Config) SetMasterPropagateMount(propagate bool) {
if propagate {
c.config.starter.masterPropagateMount = C.true
} else {
c.config.starter.masterPropagateMount = C.false
}
}
// SetNamespaceJoinOnly changes starter config so that the created process
// will join an already running container (used for `singularity shell` and
// `singularity oci exec`) if join is true.
func (c *Config) SetNamespaceJoinOnly(join bool) {
if join {
c.config.container.namespace.joinOnly = C.true
} else {
c.config.container.namespace.joinOnly = C.false
}
}
// SetBringLoopbackInterface changes starter config so that it will bring up
// a loopback network interface during container creation if bring is true.
func (c *Config) SetBringLoopbackInterface(bring bool) {
if bring {
c.config.container.namespace.bringLoopbackInterface = C.true
} else {
c.config.container.namespace.bringLoopbackInterface = C.false
}
}
// SetMountPropagation changes starter config and sets container's root
// filesystem mount propagation that will be respected during container creation.
func (c *Config) SetMountPropagation(propagation string) {
var flags uintptr
switch propagation {
case "shared", "rshared":
flags = syscall.MS_SHARED
case "slave", "rslave":
flags = syscall.MS_SLAVE
case "private", "rprivate":
flags = syscall.MS_PRIVATE
case "unbindable", "runbindable":
flags = syscall.MS_UNBINDABLE
}
if strings.HasPrefix(propagation, "r") {
flags |= syscall.MS_REC
}
c.config.container.namespace.mountPropagation = C.ulong(flags)
}
// SetWorkingDirectoryFd changes starter config and sets current working directory
// to the file pointed by file descriptor fd. Starter will use this file descriptor
// to change its working directory with fchdir after stage 1.
func (c *Config) SetWorkingDirectoryFd(fd int) {
c.config.starter.workingDirectoryFd = C.int(fd)
}
// SetImageFd changes starter config and sets fd for the image in use.
func (c *Config) SetImageFd(fd int) {
c.config.starter.imageFd = C.int(fd)
}
// GetImageFd returns the fd for the image in use.
func (c *Config) GetImageFd() int {
return int(c.config.starter.imageFd)
}
// KeepFileDescriptor adds a file descriptor to an array of file
// descriptors that starter will keep open. All files opened during
// stage 1 will be shared with starter process. Once stage 1 returns,
// all file descriptors which are not listed here will be closed.
func (c *Config) KeepFileDescriptor(fd int) error {
if c.config.starter.numfds >= C.MAX_STARTER_FDS {
return fmt.Errorf("maximum number of kept file descriptors reached")
}
c.config.starter.fds[c.config.starter.numfds] = C.int(fd)
c.config.starter.numfds++
return nil
}
// SetNvCCLICaps sets the flag to tell starter container setup
// to configure a bounding capabilities set that will permit execution of
// nvidia-container-cli
func (c *Config) SetNvCCLICaps(enabled bool) {
if enabled {
c.config.starter.nvCCLICaps = C.true
} else {
c.config.starter.nvCCLICaps = C.false
}
}
// SetHybridWorkflow sets the flag to tell starter container setup
// will require a hybrid workflow. Typically used for fakeroot.
// In a hybrid workflow, the master process lives in host user namespace
// with the ability to escalate privileges, while the container process
// lives in its own user namespace.
func (c *Config) SetHybridWorkflow(hybrid bool) {
if hybrid {
c.config.starter.hybridWorkflow = C.true
} else {
c.config.starter.hybridWorkflow = C.false
}
}
// SetAllowSetgroups allows use of setgroups syscall from user namespace.
func (c *Config) SetAllowSetgroups(allow bool) {
if allow {
c.config.container.privileges.allowSetgroups = C.true
} else {
c.config.container.privileges.allowSetgroups = C.false
}
}
// SetNoSetgroups disables the setgroups call for the container process in the
// starter. Preserves access to files that depends on supplementary groups
// outside of the user namespace. The supplementary groups will map to 'nobody'
// inside the container.
func (c *Config) SetNoSetgroups(noSetgroups bool) {
if noSetgroups {
c.config.container.privileges.noSetgroups = C.true
} else {
c.config.container.privileges.noSetgroups = C.false
}
}
// GetJSONConfig returns pointer to the engine's JSON configuration.
// A copy of the original bytes allocated on C heap is returned.
func (c *Config) GetJSONConfig() []byte {
return C.GoBytes(unsafe.Pointer(c.config.engine.config), C.int(c.config.engine.size))
}
// WriteConfig modifies starter config by fully updating engine json
// configuration stored there. If json config is too big the error
// will be returned.
func (c *Config) Write(payload interface{}) error {
jsonConf, err := json.Marshal(payload)
if err != nil {
return fmt.Errorf("failed to marshal payload: %s", err)
}
size := len(jsonConf)
c.config.engine.size = C.size_t(size)
if c.config.engine.size >= c.config.engine.map_size {
return fmt.Errorf("not enough space for json configuration")
}
engineConfig := C.CBytes(jsonConf)
C.memcpy(unsafe.Pointer(c.config.engine.config), engineConfig, c.config.engine.size)
C.free(engineConfig)
return nil
}
// AddUIDMappings sets user namespace UID mapping.
func (c *Config) AddUIDMappings(uids []specs.LinuxIDMapping) error {
uidMap := ""
for _, uid := range uids {
uidMap = uidMap + fmt.Sprintf("%d %d %d\n", uid.ContainerID, uid.HostID, uid.Size)
}
l := len(uidMap)
if l >= C.MAX_MAP_SIZE-1 {
return fmt.Errorf("uid map too big")
}
if l > 0 {
cpath := unsafe.Pointer(C.CString(uidMap))
size := C.size_t(l)
C.memcpy(unsafe.Pointer(&c.config.container.privileges.uidMap[0]), cpath, size)
C.free(cpath)
}
return nil
}
// AddGIDMappings sets user namespace GID mapping.
func (c *Config) AddGIDMappings(gids []specs.LinuxIDMapping) error {
gidMap := ""
for _, gid := range gids {
gidMap = gidMap + fmt.Sprintf("%d %d %d\n", gid.ContainerID, gid.HostID, gid.Size)
}
l := len(gidMap)
if l >= C.MAX_MAP_SIZE-1 {
return fmt.Errorf("gid map too big")
}
if l > 0 {
cpath := unsafe.Pointer(C.CString(gidMap))
size := C.size_t(l)
C.memcpy(unsafe.Pointer(&c.config.container.privileges.gidMap[0]), cpath, size)
C.free(cpath)
}
return nil
}
func setNewIDMapPath(command string, pathPointer unsafe.Pointer) error {
path, err := bin.FindBin(command)
if err != nil {
return fmt.Errorf(
"%s was not found in PATH (%s), required with fakeroot and unprivileged installation",
command, env.DefaultPath,
)
}
if !fs.IsOwner(path, 0) {
return fmt.Errorf("%s must be owned by the root user to setup fakeroot ID mappings in an unprivileged installation", path)
}
lpath := len(path)
size := C.size_t(lpath)
if lpath >= C.MAX_PATH_SIZE-1 {
return fmt.Errorf("%s path too long", command)
}
cpath := unsafe.Pointer(C.CString(path))
C.memcpy(pathPointer, cpath, size)
C.free(cpath)
return nil
}
// SetNewUIDMapPath sets absolute path to newuidmap binary if found.
func (c *Config) SetNewUIDMapPath() error {
return setNewIDMapPath(
"newuidmap",
unsafe.Pointer(&c.config.container.privileges.newuidmapPath[0]),
)
}
// SetNewGIDMapPath sets absolute path to newgidmap binary if found.
func (c *Config) SetNewGIDMapPath() error {
return setNewIDMapPath(
"newgidmap",
unsafe.Pointer(&c.config.container.privileges.newgidmapPath[0]),
)
}
// SetNsFlags sets namespace flags directly from flags argument.
func (c *Config) SetNsFlags(flags int) {
c.config.container.namespace.flags = C.uint(flags)
}
// SetNsFlagsFromSpec sets namespace flags from OCI spec.
func (c *Config) SetNsFlagsFromSpec(namespaces []specs.LinuxNamespace) {
c.config.container.namespace.flags = 0
for _, namespace := range namespaces {
if namespace.Path == "" {
switch namespace.Type {
case specs.UserNamespace:
c.config.container.namespace.flags |= syscall.CLONE_NEWUSER
case specs.IPCNamespace:
c.config.container.namespace.flags |= syscall.CLONE_NEWIPC
case specs.UTSNamespace:
c.config.container.namespace.flags |= syscall.CLONE_NEWUTS
case specs.PIDNamespace:
c.config.container.namespace.flags |= syscall.CLONE_NEWPID
case specs.NetworkNamespace:
c.config.container.namespace.flags |= syscall.CLONE_NEWNET
case specs.MountNamespace:
c.config.container.namespace.flags |= syscall.CLONE_NEWNS
case specs.CgroupNamespace:
c.config.container.namespace.flags |= 0x2000000
}
}
}
}
// SetNsPath sets namespaces to be joined.
func (c *Config) SetNsPath(nstype specs.LinuxNamespaceType, path string) error {
cpath := unsafe.Pointer(C.CString(path))
l := len(path)
size := C.size_t(l)
if l > C.MAX_PATH_SIZE-1 {
return fmt.Errorf("%s namespace path too big", nstype)
}
switch nstype {
case specs.UserNamespace:
C.memcpy(unsafe.Pointer(&c.config.container.namespace.user[0]), cpath, size)
case specs.IPCNamespace:
C.memcpy(unsafe.Pointer(&c.config.container.namespace.ipc[0]), cpath, size)
case specs.UTSNamespace:
C.memcpy(unsafe.Pointer(&c.config.container.namespace.uts[0]), cpath, size)
case specs.PIDNamespace:
C.memcpy(unsafe.Pointer(&c.config.container.namespace.pid[0]), cpath, size)
case specs.NetworkNamespace:
C.memcpy(unsafe.Pointer(&c.config.container.namespace.network[0]), cpath, size)
case specs.MountNamespace:
C.memcpy(unsafe.Pointer(&c.config.container.namespace.mount[0]), cpath, size)
case specs.CgroupNamespace:
C.memcpy(unsafe.Pointer(&c.config.container.namespace.cgroup[0]), cpath, size)
}
C.free(cpath)
return nil
}
// SetNsPathFromSpec sets namespaces to be joined from OCI spec.
func (c *Config) SetNsPathFromSpec(namespaces []specs.LinuxNamespace) error {
for _, namespace := range namespaces {
if namespace.Path != "" {
if err := c.SetNsPath(namespace.Type, namespace.Path); err != nil {
return err
}
}
}
return nil
}
// SetCapabilities sets corresponding capability set identified by ctype
// from a capability string list identified by ctype.
func (c *Config) SetCapabilities(ctype string, caps []string) {
switch ctype {
case capabilities.Permitted:
c.config.container.privileges.capabilities.permitted = 0
for _, v := range caps {
c.config.container.privileges.capabilities.permitted |= C.ulonglong(1 << capabilities.Map[v].Value)
}
case capabilities.Effective:
c.config.container.privileges.capabilities.effective = 0
for _, v := range caps {
c.config.container.privileges.capabilities.effective |= C.ulonglong(1 << capabilities.Map[v].Value)
}
case capabilities.Inheritable:
c.config.container.privileges.capabilities.inheritable = 0
for _, v := range caps {
c.config.container.privileges.capabilities.inheritable |= C.ulonglong(1 << capabilities.Map[v].Value)
}
case capabilities.Bounding:
c.config.container.privileges.capabilities.bounding = 0
for _, v := range caps {
c.config.container.privileges.capabilities.bounding |= C.ulonglong(1 << capabilities.Map[v].Value)
}
case capabilities.Ambient:
c.config.container.privileges.capabilities.ambient = 0
for _, v := range caps {
c.config.container.privileges.capabilities.ambient |= C.ulonglong(1 << capabilities.Map[v].Value)
}
}
}
// SetTargetUID sets target UID to execute the container process as user ID.
func (c *Config) SetTargetUID(uid int) {
c.config.container.privileges.targetUID = C.uid_t(uid)
}
// SetTargetGID sets target GIDs to execute container process as group IDs.
func (c *Config) SetTargetGID(gids []int) {
c.config.container.privileges.numGID = C.int(len(gids))
for i, gid := range gids {
if i >= C.MAX_GID {
sylog.Warningf("you can't specify more than %d group IDs", C.MAX_GID)
c.config.container.privileges.numGID = C.MAX_GID
break
}
c.config.container.privileges.targetGID[i] = C.gid_t(gid)
}
}
// Release performs an unmap of a shared starter config and releases the mapped memory.
// This method should be called as soon as the process doesn't need to access or modify
// the underlying starter configuration. Attempt to modify the underlying config after
// the call to Release will result in a segmentation fault.
func (c *Config) Release() error {
if C.munmap(unsafe.Pointer(c.config.engine.config), c.config.engine.map_size) != 0 {
return fmt.Errorf("failed to release engine config memory")
}
if C.munmap(unsafe.Pointer(c.config), C.sizeof_struct_starterConfig) != 0 {
return fmt.Errorf("failed to release starter memory")
}
return nil
}
|