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
|
// Copyright (c) 2019-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 machine
import (
"bufio"
"bytes"
"debug/elf"
"encoding/binary"
"encoding/hex"
"errors"
"fmt"
"os"
"path/filepath"
"runtime"
"strings"
"github.com/sylabs/singularity/v4/internal/pkg/util/fs"
"github.com/sylabs/singularity/v4/pkg/sylog"
)
// ErrUnknownArch is the error returned for unknown architecture.
var ErrUnknownArch = errors.New("architecture not recognized")
type format struct {
Arch string
Compatible string
Machine elf.Machine
Class elf.Class
Endianness binary.ByteOrder
ElfMagic []byte
}
var formats = []format{
{
Arch: "386",
Compatible: "amd64",
Machine: elf.EM_386,
Class: elf.ELFCLASS32,
Endianness: binary.LittleEndian,
ElfMagic: []byte{0x7F, 0x45, 0x4C, 0x46, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x03, 0x00},
},
{
Arch: "386",
Compatible: "amd64",
Machine: elf.EM_486,
Class: elf.ELFCLASS32,
Endianness: binary.LittleEndian,
ElfMagic: []byte{0x7F, 0x45, 0x4C, 0x46, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x06, 0x00},
},
{
Arch: "amd64",
Machine: elf.EM_X86_64,
Class: elf.ELFCLASS64,
Endianness: binary.LittleEndian,
ElfMagic: []byte{0x7F, 0x45, 0x4C, 0x46, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x3e, 0x00},
},
{
Arch: "arm",
Compatible: "arm64",
Machine: elf.EM_ARM,
Class: elf.ELFCLASS32,
Endianness: binary.LittleEndian,
ElfMagic: []byte{0x7F, 0x45, 0x4C, 0x46, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x28, 0x00},
},
{
Arch: "armbe",
Compatible: "arm64be",
Machine: elf.EM_ARM,
Class: elf.ELFCLASS32,
Endianness: binary.BigEndian,
ElfMagic: []byte{0x7F, 0x45, 0x4C, 0x46, 0x01, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x28},
},
{
Arch: "arm64",
Machine: elf.EM_AARCH64,
Class: elf.ELFCLASS64,
Endianness: binary.LittleEndian,
ElfMagic: []byte{0x7F, 0x45, 0x4C, 0x46, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xb7, 0x00},
},
{
Arch: "arm64be",
Machine: elf.EM_AARCH64,
Class: elf.ELFCLASS64,
Endianness: binary.BigEndian,
ElfMagic: []byte{0x7F, 0x45, 0x4C, 0x46, 0x02, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xb7},
},
{
Arch: "s390x",
Machine: elf.EM_S390,
Class: elf.ELFCLASS64,
Endianness: binary.BigEndian,
ElfMagic: []byte{0x7F, 0x45, 0x4C, 0x46, 0x02, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x16},
},
{
Arch: "ppc64",
Machine: elf.EM_PPC64,
Class: elf.ELFCLASS32,
Endianness: binary.BigEndian,
ElfMagic: []byte{0x7F, 0x45, 0x4C, 0x46, 0x02, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x15},
},
{
Arch: "ppc64le",
Machine: elf.EM_PPC64,
Class: elf.ELFCLASS64,
Endianness: binary.LittleEndian,
ElfMagic: []byte{0x7F, 0x45, 0x4C, 0x46, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x15, 0x00},
},
{
Arch: "mips",
Compatible: "mips64",
Machine: elf.EM_MIPS,
Class: elf.ELFCLASS32,
Endianness: binary.BigEndian,
ElfMagic: []byte{0x7F, 0x45, 0x4C, 0x46, 0x01, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x08},
},
{
Arch: "mipsle",
Compatible: "mips64le",
Machine: elf.EM_MIPS,
Class: elf.ELFCLASS32,
Endianness: binary.LittleEndian,
ElfMagic: []byte{0x7F, 0x45, 0x4C, 0x46, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x08, 0x00},
},
{
Arch: "mips64",
Machine: elf.EM_MIPS,
Class: elf.ELFCLASS64,
Endianness: binary.BigEndian,
ElfMagic: []byte{0x7F, 0x45, 0x4C, 0x46, 0x02, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x08},
},
{
Arch: "mips64le",
Machine: elf.EM_MIPS,
Class: elf.ELFCLASS64,
Endianness: binary.LittleEndian,
ElfMagic: []byte{0x7F, 0x45, 0x4C, 0x46, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x08, 0x00},
},
{
Arch: "riscv64",
Machine: elf.EM_RISCV,
Class: elf.ELFCLASS64,
Endianness: binary.LittleEndian,
ElfMagic: []byte{0x7F, 0x45, 0x4C, 0x46, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xf3, 0x00},
},
}
// ArchFromElf returns the architecture string after inspection of the
// provided elf binary.
func ArchFromElf(binary string) (string, error) {
e, err := elf.Open(binary)
if err != nil {
return "", fmt.Errorf("failed to open elf binary %s: %s", binary, err)
}
defer e.Close()
for _, f := range formats {
if f.Machine == e.Machine && f.Class == e.Class && f.Endianness == e.ByteOrder {
return f.Arch, nil
}
}
return "", ErrUnknownArch
}
// ArchFromContainer walks through a container filesystem until it
// find an elf binary to read target architecture from and returns it.
// If there is no suitable elf binary or if the architecture is not
// recognized it will return an empty string.
func ArchFromContainer(container string) string {
// fast path if we can get architecture from shell binary
shell := fs.EvalRelative("/bin/sh", container)
arch, err := ArchFromElf(filepath.Join(container, shell))
if err == nil {
return arch
}
sylog.Verbosef("No /bin/sh in container, looking at executable files to find architecture")
filepath.Walk(container, func(path string, info os.FileInfo, err error) error {
if err != nil || !info.Mode().IsRegular() {
return nil
}
// ignore not executable files
if info.Mode().Perm()&0o111 == 0 {
return nil
}
f, err := os.Open(path)
if err != nil {
return nil
}
defer f.Close()
elfMagic := make([]byte, len(elf.ELFMAG))
if _, err := f.Read(elfMagic); err != nil {
return nil
}
if string(elfMagic) == string(elf.ELFMAG) {
arch, err = ArchFromElf(path)
if err == ErrUnknownArch {
return err
} else if err != nil {
return nil
}
return fmt.Errorf("found elf binary at %s", path)
}
return nil
})
return arch
}
const binfmtMisc = "/proc/sys/fs/binfmt_misc"
type binfmtEntry struct {
magic string
enabled bool
persistent bool
}
func canEmulate(arch string) bool {
var format format
for _, f := range formats {
if arch == f.Arch {
format = f
break
}
}
// no architecture format found
if format.Arch == "" {
return false
}
// look at /proc/sys/fs/binfmt_misc
content, _ := os.ReadFile(filepath.Join(binfmtMisc, "status"))
if string(content) != "enabled\n" {
return false
}
infos, err := os.ReadDir(binfmtMisc)
if err != nil {
return false
}
archMagic := hex.EncodeToString(format.ElfMagic)
for _, fi := range infos {
f := filepath.Join(binfmtMisc, fi.Name())
b, err := os.ReadFile(f)
if err != nil {
continue
}
entry := new(binfmtEntry)
scanner := bufio.NewScanner(bytes.NewReader(b))
for scanner.Scan() {
t := scanner.Text()
if t == "enabled" {
entry.enabled = true
} else if strings.HasPrefix(t, "magic") {
splitted := strings.Split(t, " ")
if len(splitted) > 1 {
entry.magic = splitted[1]
}
} else if strings.HasPrefix(t, "flags") {
splitted := strings.Split(t, " ")
if len(splitted) > 1 {
entry.persistent = strings.Contains(splitted[1], "F")
}
}
}
if entry.enabled && entry.persistent && entry.magic == archMagic {
return true
}
}
return false
}
// CompatibleWith returns if the current machine architecture is
// compatible or can run via emulation the architecture passed in
// argument.
func CompatibleWith(arch string) bool {
currentArch := runtime.GOARCH
if currentArch == arch {
return true
}
for _, f := range formats {
if arch == f.Arch && f.Compatible == currentArch {
return true
}
}
return canEmulate(arch)
}
|