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
|
// Copyright (c) 2018-2021, 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 sources
import (
"fmt"
"os"
"path/filepath"
"github.com/sylabs/singularity/v4/internal/pkg/util/fs"
"github.com/sylabs/singularity/v4/pkg/sylog"
)
const (
// Contents of /.singularity.d/actions/exec
execFileContent = `#!/bin/sh
for script in /.singularity.d/env/*.sh; do
if [ -f "$script" ]; then
. "$script"
fi
done
exec "$@"
`
// Contents of /.singularity.d/actions/run
runFileContent = `#!/bin/sh
for script in /.singularity.d/env/*.sh; do
if [ -f "$script" ]; then
. "$script"
fi
done
if test -n "${SINGULARITY_APPNAME:-}"; then
if test -x "/scif/apps/${SINGULARITY_APPNAME:-}/scif/runscript"; then
exec "/scif/apps/${SINGULARITY_APPNAME:-}/scif/runscript" "$@"
else
echo "No Singularity runscript for contained app: ${SINGULARITY_APPNAME:-}"
exit 1
fi
elif test -x "/.singularity.d/runscript"; then
exec "/.singularity.d/runscript" "$@"
else
echo "No Singularity runscript found, executing /bin/sh"
exec /bin/sh "$@"
fi
`
// Contents of /.singularity.d/actions/shell
shellFileContent = `#!/bin/sh
for script in /.singularity.d/env/*.sh; do
if [ -f "$script" ]; then
. "$script"
fi
done
if test -n "$SINGULARITY_SHELL" -a -x "$SINGULARITY_SHELL"; then
exec $SINGULARITY_SHELL "$@"
echo "ERROR: Failed running shell as defined by '\$SINGULARITY_SHELL'" 1>&2
exit 1
elif test -x /bin/bash; then
SHELL=/bin/bash
PS1="Singularity $SINGULARITY_NAME:\\w> "
export SHELL PS1
exec /bin/bash --norc "$@"
elif test -x /bin/sh; then
SHELL=/bin/sh
export SHELL
exec /bin/sh "$@"
else
echo "ERROR: /bin/sh does not exist in container" 1>&2
fi
exit 1
`
// Contents of /.singularity.d/actions/start
startFileContent = `#!/bin/sh
# if we are here start notify PID 1 to continue
# DON'T REMOVE
kill -CONT 1
for script in /.singularity.d/env/*.sh; do
if [ -f "$script" ]; then
. "$script"
fi
done
if test -x "/.singularity.d/startscript"; then
exec "/.singularity.d/startscript"
fi
`
// Contents of /.singularity.d/actions/test
testFileContent = `#!/bin/sh
for script in /.singularity.d/env/*.sh; do
if [ -f "$script" ]; then
. "$script"
fi
done
if test -n "${SINGULARITY_APPNAME:-}"; then
if test -x "/scif/apps/${SINGULARITY_APPNAME:-}/scif/test"; then
exec "/scif/apps/${SINGULARITY_APPNAME:-}/scif/test" "$@"
else
echo "No tests for contained app: ${SINGULARITY_APPNAME:-}"
exit 1
fi
elif test -x "/.singularity.d/test"; then
exec "/.singularity.d/test" "$@"
else
echo "No test found in container, executing /bin/sh -c true"
exec /bin/sh -c true
fi
`
// Contents of /.singularity.d/env/01-base.sh
baseShFileContent = `#!/bin/sh
#
# Copyright (c) 2017, SingularityWare, LLC. All rights reserved.
# Copyright (c) 2015-2017, Gregory M. Kurtzer. All rights reserved.
#
# Copyright (c) 2016-2017, The Regents of the University of California,
# through Lawrence Berkeley National Laboratory (subject to receipt of any
# required approvals from the U.S. Dept. of Energy). All rights reserved.
#
# This software is licensed under a customized 3-clause BSD license. Please
# consult LICENSE.md file distributed with the sources of this project regarding
# your rights to use or distribute this software.
#
# NOTICE. This Software was developed under funding from the U.S. Department of
# Energy and the U.S. Government consequently retains certain rights. As such,
# the U.S. Government has been granted for itself and others acting on its
# behalf a paid-up, nonexclusive, irrevocable, worldwide license in the Software
# to reproduce, distribute copies to the public, prepare derivative works, and
# perform publicly and display publicly, and to permit other to do so.
#
#
`
// Contents of /.singularity.d/env/90-environment.sh and /.singularity.d/env/91-environment.sh
environmentShFileContent = `#!/bin/sh
# Custom environment shell code should follow
`
// Contents of /.singularity.d/env/95-apps.sh
appsShFileContent = `#!/bin/sh
#
# Copyright (c) 2017, SingularityWare, LLC. All rights reserved.
#
# This file is part of the Singularity Linux container project. It is subject to the license
# terms in the LICENSE.md file found in the top-level directory of this distribution and
# at https://github.com/sylabs/singularity/blob/main/LICENSE.md. No part
# of Singularity, including this file, may be copied, modified, propagated, or distributed
# except according to the terms contained in the LICENSE.md file.
if test -n "${SINGULARITY_APPNAME:-}"; then
# The active app should be exported
export SINGULARITY_APPNAME
if test -d "/scif/apps/${SINGULARITY_APPNAME:-}/"; then
SCIF_APPS="/scif/apps"
SCIF_APPROOT="/scif/apps/${SINGULARITY_APPNAME:-}"
export SCIF_APPROOT SCIF_APPS
PATH="/scif/apps/${SINGULARITY_APPNAME:-}:$PATH"
# Automatically add application bin to path
if test -d "/scif/apps/${SINGULARITY_APPNAME:-}/bin"; then
PATH="/scif/apps/${SINGULARITY_APPNAME:-}/bin:$PATH"
fi
# Automatically add application lib to LD_LIBRARY_PATH
if test -d "/scif/apps/${SINGULARITY_APPNAME:-}/lib"; then
LD_LIBRARY_PATH="/scif/apps/${SINGULARITY_APPNAME:-}/lib:$LD_LIBRARY_PATH"
export LD_LIBRARY_PATH
fi
# Automatically source environment
if [ -f "/scif/apps/${SINGULARITY_APPNAME:-}/scif/env/01-base.sh" ]; then
. "/scif/apps/${SINGULARITY_APPNAME:-}/scif/env/01-base.sh"
fi
if [ -f "/scif/apps/${SINGULARITY_APPNAME:-}/scif/env/90-environment.sh" ]; then
. "/scif/apps/${SINGULARITY_APPNAME:-}/scif/env/90-environment.sh"
fi
export PATH
else
echo "Could not locate the container application: ${SINGULARITY_APPNAME}"
exit 1
fi
fi
`
// Contents of /.singularity.d/env/99-base.sh
base99ShFileContent = `#!/bin/sh
#
# Copyright (c) 2017, SingularityWare, LLC. All rights reserved.
# Copyright (c) 2015-2017, Gregory M. Kurtzer. All rights reserved.
#
# Copyright (c) 2016-2017, The Regents of the University of California,
# through Lawrence Berkeley National Laboratory (subject to receipt of any
# required approvals from the U.S. Dept. of Energy). All rights reserved.
#
# This software is licensed under a customized 3-clause BSD license. Please
# consult LICENSE.md file distributed with the sources of this project regarding
# your rights to use or distribute this software.
#
# NOTICE. This Software was developed under funding from the U.S. Department of
# Energy and the U.S. Government consequently retains certain rights. As such,
# the U.S. Government has been granted for itself and others acting on its
# behalf a paid-up, nonexclusive, irrevocable, worldwide license in the Software
# to reproduce, distribute copies to the public, prepare derivative works, and
# perform publicly and display publicly, and to permit other to do so.
#
#
if [ -z "$LD_LIBRARY_PATH" ]; then
LD_LIBRARY_PATH="/.singularity.d/libs"
else
LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/.singularity.d/libs"
fi
PS1="Singularity> "
export LD_LIBRARY_PATH PS1
`
// Contents of /.singularity.d/env/99-runtimevars.sh
base99runtimevarsShFileContent = `#!/bin/sh
# Copyright (c) 2017-2019, Sylabs, Inc. All rights reserved.
#
# This software is licensed under a customized 3-clause BSD license. Please
# consult LICENSE.md file distributed with the sources of this project regarding
# your rights to use or distribute this software.
#
#
if [ -n "${SING_USER_DEFINED_PREPEND_PATH:-}" ]; then
PATH="${SING_USER_DEFINED_PREPEND_PATH}:${PATH}"
fi
if [ -n "${SING_USER_DEFINED_APPEND_PATH:-}" ]; then
PATH="${PATH}:${SING_USER_DEFINED_APPEND_PATH}"
fi
if [ -n "${SING_USER_DEFINED_PATH:-}" ]; then
PATH="${SING_USER_DEFINED_PATH}"
fi
unset SING_USER_DEFINED_PREPEND_PATH \
SING_USER_DEFINED_APPEND_PATH \
SING_USER_DEFINED_PATH
export PATH
`
// Contents of /.singularity.d/runscript
runscriptFileContent = `#!/bin/sh
echo "There is no runscript defined for this container\n";
`
// Contents of /.singularity.d/startscript
startscriptFileContent = `#!/bin/sh
`
)
func makeDirs(rootPath string) error {
if err := os.MkdirAll(filepath.Join(rootPath, ".singularity.d", "libs"), 0o755); err != nil {
return err
}
if err := os.MkdirAll(filepath.Join(rootPath, ".singularity.d", "actions"), 0o755); err != nil {
return err
}
if err := os.MkdirAll(filepath.Join(rootPath, ".singularity.d", "env"), 0o755); err != nil {
return err
}
if err := os.MkdirAll(filepath.Join(rootPath, "dev"), 0o755); err != nil {
return err
}
if err := os.MkdirAll(filepath.Join(rootPath, "proc"), 0o755); err != nil {
return err
}
if err := os.MkdirAll(filepath.Join(rootPath, "root"), 0o755); err != nil {
return err
}
if err := os.MkdirAll(filepath.Join(rootPath, "var", "tmp"), 0o755); err != nil {
return err
}
if err := os.MkdirAll(filepath.Join(rootPath, "tmp"), 0o755); err != nil {
return err
}
if err := os.MkdirAll(filepath.Join(rootPath, "etc"), 0o755); err != nil {
return err
}
if err := os.MkdirAll(filepath.Join(rootPath, "sys"), 0o755); err != nil {
return err
}
return os.MkdirAll(filepath.Join(rootPath, "home"), 0o755)
}
func makeSymlinks(rootPath string) error {
if _, err := os.Stat(filepath.Join(rootPath, "singularity")); err != nil {
if err = os.Symlink(".singularity.d/runscript", filepath.Join(rootPath, "singularity")); err != nil {
return err
}
}
if _, err := os.Stat(filepath.Join(rootPath, ".run")); err != nil {
if err = os.Symlink(".singularity.d/actions/run", filepath.Join(rootPath, ".run")); err != nil {
return err
}
}
if _, err := os.Stat(filepath.Join(rootPath, ".exec")); err != nil {
if err = os.Symlink(".singularity.d/actions/exec", filepath.Join(rootPath, ".exec")); err != nil {
return err
}
}
if _, err := os.Stat(filepath.Join(rootPath, ".test")); err != nil {
if err = os.Symlink(".singularity.d/actions/test", filepath.Join(rootPath, ".test")); err != nil {
return err
}
}
if _, err := os.Stat(filepath.Join(rootPath, ".shell")); err != nil {
if err = os.Symlink(".singularity.d/actions/shell", filepath.Join(rootPath, ".shell")); err != nil {
return err
}
}
if _, err := os.Stat(filepath.Join(rootPath, "environment")); err != nil {
if err = os.Symlink(".singularity.d/env/90-environment.sh", filepath.Join(rootPath, "environment")); err != nil {
return err
}
}
return nil
}
func makeFile(name string, perm os.FileMode, s string) (err error) {
// #4532 - If the file already exists ensure it has requested permissions
// as OpenFile won't set on an existing file and some docker
// containers have hosts or resolv.conf without write perm.
if fs.IsFile(name) {
if err = os.Chmod(name, perm); err != nil {
return
}
}
// Create the file if it's not in the container, or truncate and write s
// into it otherwise.
f, err := os.OpenFile(name, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, perm)
if err != nil {
return
}
defer f.Close()
_, err = f.WriteString(s)
return
}
func makeFiles(rootPath string) error {
if err := makeFile(filepath.Join(rootPath, "etc", "hosts"), 0o644, ""); err != nil {
return err
}
if err := makeFile(filepath.Join(rootPath, "etc", "resolv.conf"), 0o644, ""); err != nil {
return err
}
if err := makeFile(filepath.Join(rootPath, ".singularity.d", "actions", "exec"), 0o755, execFileContent); err != nil {
return err
}
if err := makeFile(filepath.Join(rootPath, ".singularity.d", "actions", "run"), 0o755, runFileContent); err != nil {
return err
}
if err := makeFile(filepath.Join(rootPath, ".singularity.d", "actions", "shell"), 0o755, shellFileContent); err != nil {
return err
}
if err := makeFile(filepath.Join(rootPath, ".singularity.d", "actions", "start"), 0o755, startFileContent); err != nil {
return err
}
if err := makeFile(filepath.Join(rootPath, ".singularity.d", "actions", "test"), 0o755, testFileContent); err != nil {
return err
}
if err := makeFile(filepath.Join(rootPath, ".singularity.d", "env", "01-base.sh"), 0o755, baseShFileContent); err != nil {
return err
}
if err := makeFile(filepath.Join(rootPath, ".singularity.d", "env", "90-environment.sh"), 0o755, environmentShFileContent); err != nil {
return err
}
if err := makeFile(filepath.Join(rootPath, ".singularity.d", "env", "95-apps.sh"), 0o755, appsShFileContent); err != nil {
return err
}
if err := makeFile(filepath.Join(rootPath, ".singularity.d", "env", "99-base.sh"), 0o755, base99ShFileContent); err != nil {
return err
}
if err := makeFile(filepath.Join(rootPath, ".singularity.d", "env", "99-runtimevars.sh"), 0o755, base99runtimevarsShFileContent); err != nil {
return err
}
if err := makeFile(filepath.Join(rootPath, ".singularity.d", "runscript"), 0o755, runscriptFileContent); err != nil {
return err
}
return makeFile(filepath.Join(rootPath, ".singularity.d", "startscript"), 0o755, startscriptFileContent)
}
func makeBaseEnv(rootPath string) (err error) {
var info os.FileInfo
// Ensure we can write into the root of rootPath
if info, err = os.Stat(rootPath); err != nil {
err = fmt.Errorf("build: failed to stat rootPath: %v", err)
return err
}
if info.Mode()&0o200 == 0 {
sylog.Infof("Adding owner write permission to build path: %s\n", rootPath)
if err = os.Chmod(rootPath, info.Mode()|0o200); err != nil {
err = fmt.Errorf("build: failed to make rootPath writable: %v", err)
return err
}
}
if err = makeDirs(rootPath); err != nil {
err = fmt.Errorf("build: failed to make environment dirs: %v", err)
return err
}
if err = makeSymlinks(rootPath); err != nil {
err = fmt.Errorf("build: failed to make environment symlinks: %v", err)
return err
}
if err = makeFiles(rootPath); err != nil {
err = fmt.Errorf("build: failed to make environment files: %v", err)
return err
}
return err
}
|