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
|
// 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 plugin
import (
"crypto/sha256"
"encoding/json"
"fmt"
"os"
"path/filepath"
"github.com/sylabs/singularity/v4/pkg/image"
pluginapi "github.com/sylabs/singularity/v4/pkg/plugin"
"github.com/sylabs/singularity/v4/pkg/sylog"
)
// Install installs a plugin from a SIF image under rootDir. It will:
// 1. Check that the SIF is a valid plugin
// 2. Use name from Manifest and calculate the installation path
// 3. Copy the SIF into the plugin path
// 4. Extract the binary object into the path
// 5. Generate a default config file in the path
// 6. Write the Meta struct onto disk in dirRoot
func Install(sifPath string) error {
sylog.Debugf("Installing plugin from SIF to %q", rootDir)
img, err := image.Init(sifPath, false)
if err != nil {
return fmt.Errorf("could not load plugin: %w", err)
} else if !isPluginFile(img) {
return fmt.Errorf("%s is not a valid plugin", sifPath)
}
manifest, err := getManifest(img)
if err != nil {
return fmt.Errorf("could not get manifest: %s", err)
} else if manifest.Name == "" {
return fmt.Errorf("empty plugin in manifest")
}
// as the name determine the path inside the plugin root
// directory, we first ensure that the name doesn't trick us
// with a path traversal
cleanName := filepath.Join("/", filepath.Clean(manifest.Name))
if manifest.Name[0] != '/' {
cleanName = cleanName[1:]
}
if cleanName != manifest.Name {
return fmt.Errorf("plugin manifest name %q contains path traversal", manifest.Name)
}
m := &Meta{
Name: manifest.Name,
Enabled: true,
}
err = m.install(img)
if err != nil {
return fmt.Errorf("could not install plugin: %w", err)
}
return nil
}
// Uninstall removes the plugin matching "name" from the singularity
// plugin installation directory.
func Uninstall(name string) error {
sylog.Debugf("Uninstalling plugin %q from %q", name, rootDir)
meta, err := loadMetaByName(name)
if err != nil {
return err
}
sylog.Debugf("Found plugin %q, meta=%#v", name, meta)
return meta.uninstall()
}
// List returns all the singularity plugins installed in
// rootDir in the form of a list of Meta information.
func List() ([]*Meta, error) {
pattern := filepath.Join(rootDir, "*.meta")
entries, err := filepath.Glob(pattern)
if err != nil {
return nil, fmt.Errorf("cannot list plugins in directory %q", rootDir)
}
metas := make([]*Meta, 0, len(entries))
for _, entry := range entries {
fi, err := os.Stat(entry)
if err != nil {
sylog.Debugf("Error stating %s: %s. Skip\n", entry, err)
continue
}
if !fi.Mode().IsRegular() {
continue
}
meta, err := loadMetaByFilename(entry)
if err != nil {
sylog.Debugf("Error loading %s: %s. Skip", entry, err)
continue
}
metas = append(metas, meta)
}
return metas, nil
}
// Enable enables the plugin named "name" found under rootDir.
func Enable(name string) error {
sylog.Debugf("Enabling plugin %q in %q", name, rootDir)
meta, err := loadMetaByName(name)
if err != nil {
return err
}
sylog.Debugf("Found plugin %q, meta=%#v", name, meta)
if meta.Enabled {
sylog.Infof("Plugin %q is already enabled", name)
return nil
}
return meta.enable()
}
// Disable disables the plugin named "name" found under rootDir.
func Disable(name string) error {
sylog.Debugf("Disabling plugin %q in %q", name, rootDir)
meta, err := loadMetaByName(name)
if err != nil {
return err
}
sylog.Debugf("Found plugin %q, meta=%#v", name, meta)
if !meta.Enabled {
sylog.Infof("Plugin %q is already disabled", name)
return nil
}
return meta.disable()
}
// Inspect obtains information about the plugin "name".
//
// "name" can be either the name of plugin installed under rootDir
// or the name of an image file corresponding to a plugin.
func Inspect(name string) (pluginapi.Manifest, error) {
var manifest pluginapi.Manifest
// LoadContainer returns a decorated error, no it's not possible
// to ask whether the error happens because the file does not
// exist or something else. Check for the file _before_ trying
// to load it as a container.
_, err := os.Stat(name)
if err != nil {
if !os.IsNotExist(err) {
// There seems to be a file here, but we cannot
// read it.
return manifest, err
}
// no file, try to find the installed plugin
meta, err := loadMetaByName(name)
if err != nil {
// Metafile not found, or we cannot read
// it. There's nothing we can do.
return manifest, err
}
// Replace the original name, which seems to be
// the name of a plugin, by the path to the
// installed manifest file for that plugin.
data, err := os.ReadFile(meta.manifestName())
if err != nil {
return manifest, err
}
if err := json.Unmarshal(data, &manifest); err != nil {
return manifest, err
}
} else {
// at this point, either the file is there under the original
// name or we found one by looking at the metafile.
img, err := image.Init(name, false)
if err != nil {
return manifest, fmt.Errorf("could not load plugin: %w", err)
} else if !isPluginFile(img) {
return manifest, fmt.Errorf("%s is not a valid plugin", name)
}
return getManifest(img)
}
return manifest, nil
}
//
// Misc helper functions
//
// pathFromName returns a partial path for the plugin
// relative to the plugin installation directory.
func pathFromName(name string) string {
return filepath.FromSlash(name)
}
// pluginIDFromName returns a unique ID for the plugin given its name.
func pluginIDFromName(name string) string {
sum := sha256.Sum256([]byte(name))
return fmt.Sprintf("%x", sum)
}
|