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 470 471 472 473 474 475 476 477 478 479 480 481 482
|
// Copyright 2018 The gVisor Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package cmd
import (
"context"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"math/rand"
"net"
"os"
"os/exec"
"path/filepath"
"strconv"
"strings"
"github.com/google/subcommands"
specs "github.com/opencontainers/runtime-spec/specs-go"
"golang.org/x/sys/unix"
"gvisor.dev/gvisor/pkg/log"
"gvisor.dev/gvisor/runsc/cmd/util"
"gvisor.dev/gvisor/runsc/config"
"gvisor.dev/gvisor/runsc/console"
"gvisor.dev/gvisor/runsc/container"
"gvisor.dev/gvisor/runsc/flag"
"gvisor.dev/gvisor/runsc/specutils"
)
var errNoDefaultInterface = errors.New("no default interface found")
// Do implements subcommands.Command for the "do" command. It sets up a simple
// sandbox and executes the command inside it. See Usage() for more details.
type Do struct {
root string
cwd string
ip string
quiet bool
overlay bool
uidMap idMapSlice
gidMap idMapSlice
}
// Name implements subcommands.Command.Name.
func (*Do) Name() string {
return "do"
}
// Synopsis implements subcommands.Command.Synopsis.
func (*Do) Synopsis() string {
return "Simplistic way to execute a command inside the sandbox. It's to be used for testing only."
}
// Usage implements subcommands.Command.Usage.
func (*Do) Usage() string {
return `do [flags] <cmd> - runs a command.
This command starts a sandbox with host filesystem mounted inside as readonly,
with a writable tmpfs overlay on top of it. The given command is executed inside
the sandbox. It's to be used to quickly test applications without having to
install or run docker. It doesn't give nearly as many options and it's to be
used for testing only.
`
}
type idMapSlice []specs.LinuxIDMapping
// String implements flag.Value.String.
func (is *idMapSlice) String() string {
idMappings := make([]string, 0, len(*is))
for _, m := range *is {
idMappings = append(idMappings, fmt.Sprintf("%d %d %d", m.ContainerID, m.HostID, m.Size))
}
return strings.Join(idMappings, ",")
}
// Get implements flag.Value.Get.
func (is *idMapSlice) Get() any {
return is
}
// Set implements flag.Value.Set. Set(String()) should be idempotent.
func (is *idMapSlice) Set(s string) error {
for _, idMap := range strings.Split(s, ",") {
fs := strings.Fields(idMap)
if len(fs) != 3 {
return fmt.Errorf("invalid mapping: %s", idMap)
}
var cid, hid, size int
var err error
if cid, err = strconv.Atoi(fs[0]); err != nil {
return fmt.Errorf("invalid mapping: %s", idMap)
}
if hid, err = strconv.Atoi(fs[1]); err != nil {
return fmt.Errorf("invalid mapping: %s", idMap)
}
if size, err = strconv.Atoi(fs[2]); err != nil {
return fmt.Errorf("invalid mapping: %s", idMap)
}
m := specs.LinuxIDMapping{
ContainerID: uint32(cid),
HostID: uint32(hid),
Size: uint32(size),
}
*is = append(*is, m)
}
return nil
}
// SetFlags implements subcommands.Command.SetFlags.
func (c *Do) SetFlags(f *flag.FlagSet) {
f.StringVar(&c.root, "root", "/", `path to the root directory, defaults to "/"`)
f.StringVar(&c.cwd, "cwd", ".", "path to the current directory, defaults to the current directory")
f.StringVar(&c.ip, "ip", "192.168.10.2", "IPv4 address for the sandbox")
f.BoolVar(&c.quiet, "quiet", false, "suppress runsc messages to stdout. Application output is still sent to stdout and stderr")
f.BoolVar(&c.overlay, "force-overlay", true, "use an overlay. WARNING: disabling gives the command write access to the host")
f.Var(&c.uidMap, "uid-map", "Add a user id mapping [ContainerID, HostID, Size]")
f.Var(&c.gidMap, "gid-map", "Add a group id mapping [ContainerID, HostID, Size]")
}
// Execute implements subcommands.Command.Execute.
func (c *Do) Execute(_ context.Context, f *flag.FlagSet, args ...any) subcommands.ExitStatus {
if len(f.Args()) == 0 {
f.Usage()
return subcommands.ExitUsageError
}
conf := args[0].(*config.Config)
waitStatus := args[1].(*unix.WaitStatus)
if conf.Rootless {
if err := specutils.MaybeRunAsRoot(); err != nil {
return util.Errorf("Error executing inside namespace: %v", err)
}
// Execution will continue here if no more capabilities are needed...
}
hostname, err := os.Hostname()
if err != nil {
return util.Errorf("Error to retrieve hostname: %v", err)
}
// If c.overlay is set, then enable overlay.
conf.Overlay = false // conf.Overlay is deprecated.
if c.overlay {
conf.Overlay2.Set("all:memory")
} else {
conf.Overlay2.Set("none")
}
absRoot, err := resolvePath(c.root)
if err != nil {
return util.Errorf("Error resolving root: %v", err)
}
absCwd, err := resolvePath(c.cwd)
if err != nil {
return util.Errorf("Error resolving current directory: %v", err)
}
spec := &specs.Spec{
Root: &specs.Root{
Path: absRoot,
},
Process: &specs.Process{
Cwd: absCwd,
Args: f.Args(),
Env: os.Environ(),
Capabilities: specutils.AllCapabilities(),
Terminal: console.IsPty(os.Stdin.Fd()),
},
Hostname: hostname,
}
cid := fmt.Sprintf("runsc-%06d", rand.Int31n(1000000))
if c.uidMap != nil || c.gidMap != nil {
addNamespace(spec, specs.LinuxNamespace{Type: specs.UserNamespace})
spec.Linux.UIDMappings = c.uidMap
spec.Linux.GIDMappings = c.gidMap
}
if conf.Network == config.NetworkNone {
addNamespace(spec, specs.LinuxNamespace{Type: specs.NetworkNamespace})
} else if conf.Rootless {
if conf.Network == config.NetworkSandbox {
c.notifyUser("*** Warning: sandbox network isn't supported with --rootless, switching to host ***")
conf.Network = config.NetworkHost
}
} else {
switch clean, err := c.setupNet(cid, spec); err {
case errNoDefaultInterface:
log.Warningf("Network interface not found, using internal network")
addNamespace(spec, specs.LinuxNamespace{Type: specs.NetworkNamespace})
conf.Network = config.NetworkHost
case nil:
// Setup successfull.
defer clean()
default:
return util.Errorf("Error setting up network: %v", err)
}
}
return startContainerAndWait(spec, conf, cid, waitStatus)
}
func addNamespace(spec *specs.Spec, ns specs.LinuxNamespace) {
if spec.Linux == nil {
spec.Linux = &specs.Linux{}
}
spec.Linux.Namespaces = append(spec.Linux.Namespaces, ns)
}
func (c *Do) notifyUser(format string, v ...any) {
if !c.quiet {
fmt.Printf(format+"\n", v...)
}
log.Warningf(format, v...)
}
func resolvePath(path string) (string, error) {
var err error
path, err = filepath.Abs(path)
if err != nil {
return "", fmt.Errorf("resolving %q: %v", path, err)
}
path = filepath.Clean(path)
if err := unix.Access(path, 0); err != nil {
return "", fmt.Errorf("unable to access %q: %v", path, err)
}
return path, nil
}
// setupNet setups up the sandbox network, including the creation of a network
// namespace, and iptable rules to redirect the traffic. Returns a cleanup
// function to tear down the network. Returns errNoDefaultInterface when there
// is no network interface available to setup the network.
func (c *Do) setupNet(cid string, spec *specs.Spec) (func(), error) {
dev, err := defaultDevice()
if err != nil {
return nil, errNoDefaultInterface
}
mtu, err := deviceMTU(dev)
if err != nil {
return nil, err
}
peerIP, err := calculatePeerIP(c.ip)
if err != nil {
return nil, err
}
veth, peer := deviceNames(cid)
cmds := []string{
fmt.Sprintf("ip link add %s mtu %v type veth peer name %s", veth, mtu, peer),
// Setup device outside the namespace.
fmt.Sprintf("ip addr add %s/24 dev %s", peerIP, peer),
fmt.Sprintf("ip link set %s up", peer),
// Setup device inside the namespace.
fmt.Sprintf("ip netns add %s", cid),
fmt.Sprintf("ip link set %s netns %s", veth, cid),
fmt.Sprintf("ip netns exec %s ip addr add %s/24 dev %s", cid, c.ip, veth),
fmt.Sprintf("ip netns exec %s ip link set %s up", cid, veth),
fmt.Sprintf("ip netns exec %s ip link set lo up", cid),
fmt.Sprintf("ip netns exec %s ip route add default via %s", cid, peerIP),
// Enable network access.
"sysctl -w net.ipv4.ip_forward=1",
fmt.Sprintf("iptables -t nat -A POSTROUTING -s %s -o %s -m comment --comment runsc-%s -j MASQUERADE", c.ip, dev, peer),
fmt.Sprintf("iptables -A FORWARD -i %s -o %s -j ACCEPT", dev, peer),
fmt.Sprintf("iptables -A FORWARD -o %s -i %s -j ACCEPT", dev, peer),
}
for _, cmd := range cmds {
log.Debugf("Run %q", cmd)
args := strings.Split(cmd, " ")
cmd := exec.Command(args[0], args[1:]...)
if err := cmd.Run(); err != nil {
c.cleanupNet(cid, dev, "", "", "")
return nil, fmt.Errorf("failed to run %q: %v", cmd, err)
}
}
resolvPath, err := makeFile("/etc/resolv.conf", "nameserver 8.8.8.8\n", spec)
if err != nil {
c.cleanupNet(cid, dev, "", "", "")
return nil, err
}
hostnamePath, err := makeFile("/etc/hostname", cid+"\n", spec)
if err != nil {
c.cleanupNet(cid, dev, resolvPath, "", "")
return nil, err
}
hosts := fmt.Sprintf("127.0.0.1\tlocalhost\n%s\t%s\n", c.ip, cid)
hostsPath, err := makeFile("/etc/hosts", hosts, spec)
if err != nil {
c.cleanupNet(cid, dev, resolvPath, hostnamePath, "")
return nil, err
}
netns := specs.LinuxNamespace{
Type: specs.NetworkNamespace,
Path: filepath.Join("/var/run/netns", cid),
}
addNamespace(spec, netns)
return func() { c.cleanupNet(cid, dev, resolvPath, hostnamePath, hostsPath) }, nil
}
// cleanupNet tries to cleanup the network setup in setupNet.
//
// It may be called when setupNet is only partially complete, in which case it
// will cleanup as much as possible, logging warnings for the rest.
//
// Unfortunately none of this can be automatically cleaned up on process exit,
// we must do so explicitly.
func (c *Do) cleanupNet(cid, dev, resolvPath, hostnamePath, hostsPath string) {
_, peer := deviceNames(cid)
cmds := []string{
fmt.Sprintf("ip link delete %s", peer),
fmt.Sprintf("ip netns delete %s", cid),
fmt.Sprintf("iptables -t nat -D POSTROUTING -s %s -o %s -m comment --comment runsc-%s -j MASQUERADE", c.ip, dev, peer),
fmt.Sprintf("iptables -D FORWARD -i %s -o %s -j ACCEPT", dev, peer),
fmt.Sprintf("iptables -D FORWARD -o %s -i %s -j ACCEPT", dev, peer),
}
for _, cmd := range cmds {
log.Debugf("Run %q", cmd)
args := strings.Split(cmd, " ")
c := exec.Command(args[0], args[1:]...)
if err := c.Run(); err != nil {
log.Warningf("Failed to run %q: %v", cmd, err)
}
}
tryRemove(resolvPath)
tryRemove(hostnamePath)
tryRemove(hostsPath)
}
func deviceNames(cid string) (string, string) {
// Device name is limited to 15 letters.
return "ve-" + cid, "vp-" + cid
}
func defaultDevice() (string, error) {
out, err := exec.Command("ip", "route", "list", "default").CombinedOutput()
if err != nil {
return "", err
}
parts := strings.Split(string(out), " ")
if len(parts) < 5 {
return "", fmt.Errorf("malformed %q output: %q", "ip route list default", string(out))
}
return parts[4], nil
}
func deviceMTU(dev string) (int, error) {
intf, err := net.InterfaceByName(dev)
if err != nil {
return 0, err
}
return intf.MTU, nil
}
func makeFile(dest, content string, spec *specs.Spec) (string, error) {
tmpFile, err := ioutil.TempFile("", filepath.Base(dest))
if err != nil {
return "", err
}
if _, err := tmpFile.WriteString(content); err != nil {
if err := os.Remove(tmpFile.Name()); err != nil {
log.Warningf("Failed to remove %q: %v", tmpFile, err)
}
return "", err
}
spec.Mounts = append(spec.Mounts, specs.Mount{
Source: tmpFile.Name(),
Destination: dest,
Type: "bind",
Options: []string{"ro"},
})
return tmpFile.Name(), nil
}
func tryRemove(path string) {
if path == "" {
return
}
if err := os.Remove(path); err != nil {
log.Warningf("Failed to remove %q: %v", path, err)
}
}
func calculatePeerIP(ip string) (string, error) {
parts := strings.Split(ip, ".")
if len(parts) != 4 {
return "", fmt.Errorf("invalid IP format %q", ip)
}
n, err := strconv.Atoi(parts[3])
if err != nil {
return "", fmt.Errorf("invalid IP format %q: %v", ip, err)
}
n++
if n > 255 {
n = 1
}
return fmt.Sprintf("%s.%s.%s.%d", parts[0], parts[1], parts[2], n), nil
}
func startContainerAndWait(spec *specs.Spec, conf *config.Config, cid string, waitStatus *unix.WaitStatus) subcommands.ExitStatus {
specutils.LogSpecDebug(spec, conf.OCISeccomp)
out, err := json.Marshal(spec)
if err != nil {
return util.Errorf("Error to marshal spec: %v", err)
}
tmpDir, err := ioutil.TempDir("", "runsc-do")
if err != nil {
return util.Errorf("Error to create tmp dir: %v", err)
}
defer os.RemoveAll(tmpDir)
log.Infof("Changing configuration RootDir to %q", tmpDir)
conf.RootDir = tmpDir
cfgPath := filepath.Join(tmpDir, "config.json")
if err := ioutil.WriteFile(cfgPath, out, 0755); err != nil {
return util.Errorf("Error write spec: %v", err)
}
containerArgs := container.Args{
ID: cid,
Spec: spec,
BundleDir: tmpDir,
Attached: true,
}
ct, err := container.New(conf, containerArgs)
if err != nil {
return util.Errorf("creating container: %v", err)
}
defer ct.Destroy()
if err := ct.Start(conf); err != nil {
return util.Errorf("starting container: %v", err)
}
// Forward signals to init in the container. Thus if we get SIGINT from
// ^C, the container gracefully exit, and we can clean up.
//
// N.B. There is a still a window before this where a signal may kill
// this process, skipping cleanup.
stopForwarding := ct.ForwardSignals(0 /* pid */, spec.Process.Terminal /* fgProcess */)
defer stopForwarding()
ws, err := ct.Wait()
if err != nil {
return util.Errorf("waiting for container: %v", err)
}
*waitStatus = ws
return subcommands.ExitSuccess
}
|