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
|
// Copyright (c) 2018-2022, 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 singularity
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"os"
"os/exec"
"path/filepath"
"runtime"
"strings"
"github.com/sylabs/sif/v2/pkg/sif"
"github.com/sylabs/singularity/v4/internal/pkg/buildcfg"
"github.com/sylabs/singularity/v4/internal/pkg/plugin"
"github.com/sylabs/singularity/v4/internal/pkg/util/bin"
pluginapi "github.com/sylabs/singularity/v4/pkg/plugin"
"github.com/sylabs/singularity/v4/pkg/sylog"
)
// source file that should be present in a valid Singularity source tree
const canaryFile = "pkg/plugin/plugin.go"
const goVersionFile = `package main
import "fmt"
import "runtime"
func main() { fmt.Printf(runtime.Version()) }`
type buildToolchain struct {
workPath string
goPath string
buildTags string
envs []string
}
// getSingularitySrcDir returns the source directory for singularity.
func getSingularitySrcDir() (string, error) {
if buildcfg.IsReproducibleBuild() {
return "", fmt.Errorf("plugin functionality is not available in --reproducible builds of singularity")
}
dir := buildcfg.SOURCEDIR
canary := filepath.Join(dir, canaryFile)
sylog.Debugf("Searching source file %s", canary)
switch _, err := os.Stat(canary); {
case os.IsNotExist(err):
return "", fmt.Errorf("cannot find %q", canary)
case err != nil:
return "", fmt.Errorf("unexpected error while looking for %q: %s", canary, err)
default:
return dir, nil
}
}
// checkGoVersion returns an error if the currently Go toolchain is
// different from the one used to compile singularity. Singularity
// and plugin must be compiled with the same toolchain.
func checkGoVersion(goPath string) error {
var out bytes.Buffer
tmpDir, err := os.MkdirTemp("", "plugin-")
if err != nil {
return errors.New("temporary directory creation failed")
}
defer os.RemoveAll(tmpDir)
path := filepath.Join(tmpDir, "rt_version.go")
if err := os.WriteFile(path, []byte(goVersionFile), 0o600); err != nil {
return fmt.Errorf("while writing go file %s: %s", path, err)
}
defer os.Remove(path)
cmd := exec.Command(goPath, "run", path)
cmd.Dir = tmpDir
cmd.Stdout = &out
if err := cmd.Run(); err != nil {
return fmt.Errorf("while executing go version: %s", err)
}
output := out.String()
runtimeVersion := runtime.Version()
if output != runtimeVersion {
return fmt.Errorf("plugin compilation requires Go runtime %q, current is %q", runtimeVersion, output)
}
return nil
}
// pluginObjPath returns the path of the .so file which is built when
// running `go build -buildmode=plugin [...]`.
func pluginObjPath(sourceDir string) string {
return filepath.Join(sourceDir, "plugin.so")
}
// pluginManifestPath returns the path of the .manifest file created
// in the container after the plugin object is built
func pluginManifestPath(sourceDir string) string {
return filepath.Join(sourceDir, "plugin.manifest")
}
// CompilePlugin compiles a plugin. It takes as input: sourceDir, the path to the
// plugin's source code directory; and destSif, the path to the intended final
// location of the plugin SIF file.
func CompilePlugin(sourceDir, destSif, buildTags string) error {
singularitySrc, err := getSingularitySrcDir()
if err != nil {
return fmt.Errorf("singularity source directory not usable: %w", err)
}
singularitySrc, err = filepath.Abs(singularitySrc)
if err != nil {
return fmt.Errorf("while getting absolute path of %q: %w", singularitySrc, err)
}
sylog.Debugf("Using singularity source: %s", singularitySrc)
pluginSrc, err := filepath.Abs(sourceDir)
if err != nil {
return fmt.Errorf("while getting absolute path of %q: %w", pluginSrc, err)
}
sylog.Debugf("Using plugin source: %s", pluginSrc)
if !strings.HasPrefix(pluginSrc, singularitySrc+string(os.PathSeparator)) {
return fmt.Errorf("plugin source %q must be inside singularity source %q", pluginSrc, singularitySrc)
}
goPath, err := bin.FindBin("go")
if err != nil {
return errors.New("go compiler not found")
}
// we need to use the exact same go runtime version used
// to compile Singularity
if err := checkGoVersion(goPath); err != nil {
return fmt.Errorf("while checking go version: %s", err)
}
bTool := buildToolchain{
buildTags: buildTags,
workPath: singularitySrc,
goPath: goPath,
envs: append(os.Environ(), "GO111MODULE=on"),
}
// build plugin object using go build
soPath, err := buildPlugin(pluginSrc, bTool)
if err != nil {
return fmt.Errorf("while building plugin .so: %v", err)
}
defer os.Remove(soPath)
// generate plugin manifest from .so
mPath, err := generateManifest(pluginSrc, bTool)
if err != nil {
return fmt.Errorf("while generating plugin manifest: %s", err)
}
defer os.Remove(mPath)
// convert the built plugin object into a sif
if err := makeSIF(pluginSrc, destSif); err != nil {
return fmt.Errorf("while making sif file: %s", err)
}
sylog.Infof("Plugin built to: %s", destSif)
return nil
}
// buildPlugin takes sourceDir which is the string path the host which
// contains the source code of the plugin. buildPlugin returns the path
// to the built file, along with an error.
//
// This function essentially runs the `go build -buildmode=plugin [...]`
// command.
func buildPlugin(sourceDir string, bTool buildToolchain) (string, error) {
// assuming that sourceDir is within trimpath for now
out := pluginObjPath(sourceDir)
// set pluginRootDirVar variable if required by the plugin
pluginRootDirVar := fmt.Sprintf("-X main.%s=%s", pluginapi.PluginRootDirSymbol, buildcfg.PLUGIN_ROOTDIR)
args := []string{
"build",
"-a",
"-o", out,
"-mod=readonly",
"-ldflags", pluginRootDirVar,
"-trimpath",
"-buildmode=plugin",
"-tags", bTool.buildTags,
sourceDir,
}
sylog.Debugf("Running: %s %s", bTool.goPath, strings.Join(args, " "))
buildcmd := exec.Command(bTool.goPath, args...)
buildcmd.Dir = bTool.workPath
buildcmd.Stderr = os.Stderr
buildcmd.Stdout = os.Stdout
buildcmd.Stdin = os.Stdin
buildcmd.Env = bTool.envs
return out, buildcmd.Run()
}
// generateManifest takes the path to the plugin source, extracts
// plugin's manifest by loading it into memory and stores it's json
// representation in a separate file.
func generateManifest(sourceDir string, _ buildToolchain) (string, error) {
in := pluginObjPath(sourceDir)
out := pluginManifestPath(sourceDir)
p, err := plugin.LoadObject(in)
if err != nil {
return "", fmt.Errorf("while loading plugin %s: %s", in, err)
}
f, err := os.OpenFile(out, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0o644)
if err != nil {
return "", fmt.Errorf("while creating manifest %s: %s", out, err)
}
defer f.Close()
if err := json.NewEncoder(f).Encode(p.Manifest); err != nil {
return "", fmt.Errorf("while writing manifest %s: %s", out, err)
}
return out, nil
}
// makeSIF takes in two arguments: sourceDir, the path to the plugin source directory;
// and sifPath, the path to the final .sif file which is ready to be used.
func makeSIF(sourceDir, sifPath string) error {
objPath := pluginObjPath(sourceDir)
fp, err := os.Open(objPath)
if err != nil {
return fmt.Errorf("while opening plugin object file %v: %w", objPath, err)
}
defer fp.Close()
plObjInput, err := sif.NewDescriptorInput(sif.DataPartition, fp,
sif.OptObjectName("plugin.so"),
sif.OptPartitionMetadata(sif.FsRaw, sif.PartData, runtime.GOARCH),
)
if err != nil {
return err
}
// create plugin manifest descriptor
manifestPath := pluginManifestPath(sourceDir)
fp, err = os.Open(manifestPath)
if err != nil {
return fmt.Errorf("while opening plugin manifest file %v: %w", manifestPath, err)
}
defer fp.Close()
plManifestInput, err := sif.NewDescriptorInput(sif.DataGenericJSON, fp,
sif.OptObjectName("plugin.manifest"),
)
if err != nil {
return err
}
os.RemoveAll(sifPath)
f, err := sif.CreateContainerAtPath(sifPath,
sif.OptCreateWithDescriptors(plObjInput, plManifestInput),
)
if err != nil {
return fmt.Errorf("while creating sif file: %w", err)
}
if err := f.UnloadContainer(); err != nil {
return fmt.Errorf("while unloading sif file: %w", err)
}
return nil
}
|