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 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
|
// Copyright 2020 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 config provides basic infrastructure to set configuration settings
// for runsc. The configuration is set by flags to the command line. They can
// also propagate to a different process using the same flags.
package config
import (
"fmt"
"path/filepath"
"reflect"
"runtime"
"strconv"
"strings"
"gvisor.dev/gvisor/pkg/log"
"gvisor.dev/gvisor/pkg/refs"
"gvisor.dev/gvisor/pkg/sentry/watchdog"
"gvisor.dev/gvisor/runsc/flag"
"gvisor.dev/gvisor/runsc/version"
)
// Config holds configuration that is not part of the runtime spec.
//
// Follow these steps to add a new flag:
// 1. Create a new field in Config.
// 2. Add a field tag with the flag name
// 3. Register a new flag in flags.go, with same name and add a description
// 4. Add any necessary validation into validate()
// 5. If adding an enum, follow the same pattern as FileAccessType
// 6. Evaluate if the flag can be changed with OCI annotations. See
// overrideAllowlist for more details
type Config struct {
// RootDir is the runtime root directory.
RootDir string `flag:"root"`
// Traceback changes the Go runtime's traceback level.
Traceback string `flag:"traceback"`
// Debug indicates that debug logging should be enabled.
Debug bool `flag:"debug"`
// LogFilename is the filename to log to, if not empty.
LogFilename string `flag:"log"`
// LogFormat is the log format.
LogFormat string `flag:"log-format"`
// DebugLog is the path to log debug information to, if not empty.
// If specified together with `DebugToUserLog`, debug logs are emitted
// to both.
DebugLog string `flag:"debug-log"`
// DebugToUserLog indicates that Sentry debug logs should be emitted
// to user-visible logs.
// If specified together with `DebugLog`, debug logs are emitted
// to both.
DebugToUserLog bool `flag:"debug-to-user-log"`
// DebugCommand is a comma-separated list of commands to be debugged if
// --debug-log is also set. Empty means debug all. "!" negates the expression.
// E.g. "create,start" or "!boot,events".
DebugCommand string `flag:"debug-command"`
// PanicLog is the path to log GO's runtime messages, if not empty.
PanicLog string `flag:"panic-log"`
// CoverageReport is the path to write Go coverage information, if not empty.
CoverageReport string `flag:"coverage-report"`
// DebugLogFormat is the log format for debug.
DebugLogFormat string `flag:"debug-log-format"`
// FileAccess indicates how the root filesystem is accessed.
FileAccess FileAccessType `flag:"file-access"`
// FileAccessMounts indicates how non-root volumes are accessed.
FileAccessMounts FileAccessType `flag:"file-access-mounts"`
// Overlay is whether to wrap all mounts in an overlay. The upper tmpfs layer
// will be backed by application memory.
Overlay bool `flag:"overlay"`
// Overlay2 holds configuration about wrapping mounts in overlayfs.
// DO NOT call it directly, use GetOverlay2() instead.
Overlay2 Overlay2 `flag:"overlay2"`
// FSGoferHostUDS is deprecated: use host-uds=all.
FSGoferHostUDS bool `flag:"fsgofer-host-uds"`
// HostUDS controls permission to access host Unix-domain sockets.
// DO NOT call it directly, use GetHostUDS() instead.
HostUDS HostUDS `flag:"host-uds"`
// HostFifo controls permission to access host FIFO (or named pipes).
HostFifo HostFifo `flag:"host-fifo"`
// Network indicates what type of network to use.
Network NetworkType `flag:"network"`
// EnableRaw indicates whether raw sockets should be enabled. Raw
// sockets are disabled by stripping CAP_NET_RAW from the list of
// capabilities.
EnableRaw bool `flag:"net-raw"`
// AllowPacketEndpointWrite enables write operations on packet endpoints.
AllowPacketEndpointWrite bool `flag:"TESTONLY-allow-packet-endpoint-write"`
// HostGSO indicates that host segmentation offload is enabled.
HostGSO bool `flag:"gso"`
// GVisorGSO indicates that gVisor segmentation offload is enabled. The flag
// retains its old name of "software" GSO for API consistency.
GVisorGSO bool `flag:"software-gso"`
// GVisorGRO enables gVisor's generic receive offload.
GVisorGRO bool `flag:"gvisor-gro"`
// TXChecksumOffload indicates that TX Checksum Offload is enabled.
TXChecksumOffload bool `flag:"tx-checksum-offload"`
// RXChecksumOffload indicates that RX Checksum Offload is enabled.
RXChecksumOffload bool `flag:"rx-checksum-offload"`
// QDisc indicates the type of queuening discipline to use by default
// for non-loopback interfaces.
QDisc QueueingDiscipline `flag:"qdisc"`
// LogPackets indicates that all network packets should be logged.
LogPackets bool `flag:"log-packets"`
// PCAP is a file to which network packets should be logged in PCAP format.
PCAP string `flag:"pcap-log"`
// Platform is the platform to run on.
Platform string `flag:"platform"`
// PlatformDevicePath is the path to the device file used by the platform.
// e.g. "/dev/kvm" for the KVM platform.
// If unset, a sane platform-specific default will be used.
PlatformDevicePath string `flag:"platform_device_path"`
// MetricServer, if set, indicates that metrics should be exported on this address.
// This may either be 1) "addr:port" to export metrics on a specific network interface address,
// 2) ":port" for exporting metrics on all addresses, or 3) an absolute path to a Unix Domain
// Socket.
// The substring "%ID%" will be replaced by the container ID, and "%RUNTIME_ROOT%" by the root.
// This flag must be specified *both* as part of the `runsc metric-server` arguments (so that the
// metric server knows which address to bind to), and as part of the `runsc create` arguments (as
// an indication that the container being created wishes that its metrics should be exported).
// The value of this flag must also match across the two command lines.
MetricServer string `flag:"metric-server"`
// ProfilingMetrics is a comma separated list of metric names which are
// going to be written to the ProfilingMetricsLog file from within the
// sentry in CSV format. ProfilingMetrics will be snapshotted at a rate
// specified by ProfilingMetricsRate. Requires ProfilingMetricsLog to be
// set.
ProfilingMetrics string `flag:"profiling-metrics"`
// ProfilingMetricsLog is the file name to use for ProfilingMetrics
// output.
ProfilingMetricsLog string `flag:"profiling-metrics-log"`
// ProfilingMetricsRate is the target rate (in microseconds) at which
// profiling metrics will be snapshotted.
ProfilingMetricsRate int `flag:"profiling-metrics-rate-us"`
// Strace indicates that strace should be enabled.
Strace bool `flag:"strace"`
// StraceSyscalls is the set of syscalls to trace (comma-separated values).
// If StraceEnable is true and this string is empty, then all syscalls will
// be traced.
StraceSyscalls string `flag:"strace-syscalls"`
// StraceLogSize is the max size of data blobs to display.
StraceLogSize uint `flag:"strace-log-size"`
// StraceEvent indicates sending strace to events if true. Strace is
// sent to log if false.
StraceEvent bool `flag:"strace-event"`
// DisableSeccomp indicates whether seccomp syscall filters should be
// disabled. Pardon the double negation, but default to enabled is important.
DisableSeccomp bool
// EnableCoreTags indicates whether the Sentry process and children will be
// run in a core tagged process. This isolates the sentry from sharing
// physical cores with other core tagged processes. This is useful as a
// mitigation for hyperthreading side channel based attacks. Requires host
// linux kernel >= 5.14.
EnableCoreTags bool `flag:"enable-core-tags"`
// WatchdogAction sets what action the watchdog takes when triggered.
WatchdogAction watchdog.Action `flag:"watchdog-action"`
// PanicSignal registers signal handling that panics. Usually set to
// SIGUSR2(12) to troubleshoot hangs. -1 disables it.
PanicSignal int `flag:"panic-signal"`
// ProfileEnable is set to prepare the sandbox to be profiled.
ProfileEnable bool `flag:"profile"`
// ProfileBlock collects a block profile to the passed file for the
// duration of the container execution. Requires ProfileEnabled.
ProfileBlock string `flag:"profile-block"`
// ProfileCPU collects a CPU profile to the passed file for the
// duration of the container execution. Requires ProfileEnabled.
ProfileCPU string `flag:"profile-cpu"`
// ProfileHeap collects a heap profile to the passed file for the
// duration of the container execution. Requires ProfileEnabled.
ProfileHeap string `flag:"profile-heap"`
// ProfileMutex collects a mutex profile to the passed file for the
// duration of the container execution. Requires ProfileEnabled.
ProfileMutex string `flag:"profile-mutex"`
// TraceFile collects a Go runtime execution trace to the passed file
// for the duration of the container execution.
TraceFile string `flag:"trace"`
// NumNetworkChannels controls the number of AF_PACKET sockets that map
// to the same underlying network device. This allows netstack to better
// scale for high throughput use cases.
NumNetworkChannels int `flag:"num-network-channels"`
// NetworkProcessorsPerChannel controls the number of goroutines used to
// handle packets on a single network channel. A higher number can help handle
// many simultaneous connections. If this is 0, runsc will divide GOMAXPROCS
// evenly among each network channel.
NetworkProcessorsPerChannel int `flag:"network-processors-per-channel"`
// Rootless allows the sandbox to be started with a user that is not root.
// Defense in depth measures are weaker in rootless mode. Specifically, the
// sandbox and Gofer process run as root inside a user namespace with root
// mapped to the caller's user. When using rootless, the container root path
// should not have a symlink.
Rootless bool `flag:"rootless"`
// AlsoLogToStderr allows to send log messages to stderr.
AlsoLogToStderr bool `flag:"alsologtostderr"`
// ReferenceLeakMode sets reference leak check mode
ReferenceLeak refs.LeakMode `flag:"ref-leak-mode"`
// CPUNumFromQuota sets CPU number count to available CPU quota, using
// least integer value greater than or equal to quota.
//
// E.g. 0.2 CPU quota will result in 1, and 1.9 in 2.
CPUNumFromQuota bool `flag:"cpu-num-from-quota"`
// Allows overriding of flags in OCI annotations.
AllowFlagOverride bool `flag:"allow-flag-override"`
// Enables seccomp inside the sandbox.
OCISeccomp bool `flag:"oci-seccomp"`
// Don't configure cgroups.
IgnoreCgroups bool `flag:"ignore-cgroups"`
// Use systemd to configure cgroups.
SystemdCgroup bool `flag:"systemd-cgroup"`
// PodInitConfig is the path to configuration file with additional steps to
// take during pod creation.
PodInitConfig string `flag:"pod-init-config"`
// Use pools to manage buffer memory instead of heap.
BufferPooling bool `flag:"buffer-pooling"`
// XDP controls Whether and how to use XDP.
XDP XDP `flag:"EXPERIMENTAL-xdp"`
// AFXDPUseNeedWakeup determines whether XDP_USE_NEED_WAKEUP is set
// when using AF_XDP sockets.
AFXDPUseNeedWakeup bool `flag:"EXPERIMENTAL-xdp-need-wakeup"`
// FDLimit specifies a limit on the number of host file descriptors that can
// be open simultaneously by the sentry and gofer. It applies separately to
// each.
FDLimit int `flag:"fdlimit"`
// DCache sets the global dirent cache size. If negative, per-mount caches are
// used.
DCache int `flag:"dcache"`
// IOUring enables support for the IO_URING API calls to perform
// asynchronous I/O operations.
IOUring bool `flag:"iouring"`
// DirectFS sets up the sandbox to directly access/mutate the filesystem from
// the sentry. Sentry runs with escalated privileges. Gofer process still
// exists, but is mostly idle. Not supported in rootless mode.
DirectFS bool `flag:"directfs"`
// AppHugePages enables support for application huge pages.
AppHugePages bool `flag:"app-huge-pages"`
// NVProxy enables support for Nvidia GPUs.
NVProxy bool `flag:"nvproxy"`
// NVProxyDocker is deprecated. Please use nvidia-container-runtime or
// `docker run --gpus` directly. For backward compatibility, this has the
// effect of injecting nvidia-container-runtime-hook as a prestart hook.
NVProxyDocker bool `flag:"nvproxy-docker"`
// NVProxyDriverVersion is the version of the NVIDIA driver ABI to use.
// If empty, it is autodetected from the installed NVIDIA driver.
// It can also be set to the special value "latest" to force the use of
// the latest supported NVIDIA driver ABI.
NVProxyDriverVersion string `flag:"nvproxy-driver-version"`
// TPUProxy enables support for TPUs.
TPUProxy bool `flag:"tpuproxy"`
// TestOnlyAllowRunAsCurrentUserWithoutChroot should only be used in
// tests. It allows runsc to start the sandbox process as the current
// user, and without chrooting the sandbox process. This can be
// necessary in test environments that have limited capabilities. When
// disabling chroot, the container root path should not have a symlink.
TestOnlyAllowRunAsCurrentUserWithoutChroot bool `flag:"TESTONLY-unsafe-nonroot"`
// TestOnlyTestNameEnv should only be used in tests. It looks up for the
// test name in the container environment variables and adds it to the debug
// log file name. This is done to help identify the log with the test when
// multiple tests are run in parallel, since there is no way to pass
// parameters to the runtime from docker.
TestOnlyTestNameEnv string `flag:"TESTONLY-test-name-env"`
// TestOnlyAFSSyscallPanic should only be used in tests. It enables the
// alternate behaviour for afs_syscall to trigger a Go-runtime panic upon being
// called. This is useful for tests exercising gVisor panic-reporting.
TestOnlyAFSSyscallPanic bool `flag:"TESTONLY-afs-syscall-panic"`
// explicitlySet contains whether a flag was explicitly set on the command-line from which this
// Config was constructed. Nil when the Config was not initialized from a FlagSet.
explicitlySet map[string]struct{}
// ReproduceNAT, when true, tells runsc to scrape the host network
// namespace's NAT iptables and reproduce it inside the sandbox.
ReproduceNAT bool `flag:"reproduce-nat"`
// ReproduceNftables attempts to scrape nftables routing rules if
// present, and reproduce them in the sandbox.
ReproduceNftables bool `flag:"reproduce-nftables"`
// NetDisconnectOk indicates whether the link endpoint capability
// CapabilityDisconnectOk should be set. This allows open connections to be
// disconnected upon save.
NetDisconnectOk bool `flag:"net-disconnect-ok"`
// TestOnlyAutosaveImagePath if not empty enables auto save for syscall tests
// and stores the directory path to the saved state file.
TestOnlyAutosaveImagePath string `flag:"TESTONLY-autosave-image-path"`
// TestOnlyAutosaveResume indicates save resume for syscall tests.
TestOnlyAutosaveResume bool `flag:"TESTONLY-autosave-resume"`
}
func (c *Config) validate() error {
if c.Overlay && c.Overlay2.Enabled() {
// Deprecated flag was used together with flag that replaced it.
return fmt.Errorf("overlay flag has been replaced with overlay2 flag")
}
if overlay2 := c.GetOverlay2(); c.FileAccess == FileAccessShared && overlay2.Enabled() {
return fmt.Errorf("overlay flag is incompatible with shared file access for rootfs")
}
if c.NumNetworkChannels <= 0 {
return fmt.Errorf("num_network_channels must be > 0, got: %d", c.NumNetworkChannels)
}
// Require profile flags to explicitly opt-in to profiling with
// -profile rather than implying it since these options have security
// implications.
if c.ProfileBlock != "" && !c.ProfileEnable {
return fmt.Errorf("profile-block flag requires enabling profiling with profile flag")
}
if c.ProfileCPU != "" && !c.ProfileEnable {
return fmt.Errorf("profile-cpu flag requires enabling profiling with profile flag")
}
if c.ProfileHeap != "" && !c.ProfileEnable {
return fmt.Errorf("profile-heap flag requires enabling profiling with profile flag")
}
if c.ProfileMutex != "" && !c.ProfileEnable {
return fmt.Errorf("profile-mutex flag requires enabling profiling with profile flag")
}
if c.FSGoferHostUDS && c.HostUDS != HostUDSNone {
// Deprecated flag was used together with flag that replaced it.
return fmt.Errorf("fsgofer-host-uds has been replaced with host-uds flag")
}
if len(c.ProfilingMetrics) > 0 && len(c.ProfilingMetricsLog) == 0 {
return fmt.Errorf("profiling-metrics flag requires defining a profiling-metrics-log for output")
}
return nil
}
// Log logs important aspects of the configuration to the given log function.
func (c *Config) Log() {
log.Infof("Platform: %v", c.Platform)
log.Infof("RootDir: %s", c.RootDir)
log.Infof("FileAccess: %v / Directfs: %t / Overlay: %v", c.FileAccess, c.DirectFS, c.GetOverlay2())
log.Infof("Network: %v", c.Network)
if c.Debug || c.Strace {
log.Infof("Debug: %t. Strace: %t, max size: %d, syscalls: %s", c.Debug, c.Strace, c.StraceLogSize, c.StraceSyscalls)
}
if c.Debug {
obj := reflect.ValueOf(c).Elem()
st := obj.Type()
for i := 0; i < st.NumField(); i++ {
f := st.Field(i)
var val any
if strVal := obj.Field(i).String(); strVal == "" {
val = "(empty)"
} else if !f.IsExported() {
// Cannot convert to `interface{}` for non-exported fields,
// so just use `strVal`.
val = fmt.Sprintf("%s (unexported)", strVal)
} else {
val = obj.Field(i).Interface()
}
if flagName, hasFlag := f.Tag.Lookup("flag"); hasFlag {
log.Debugf("Config.%s (--%s): %v", f.Name, flagName, val)
} else {
log.Debugf("Config.%s: %v", f.Name, val)
}
}
}
}
// GetHostUDS returns the FS gofer communication that is allowed, taking into
// consideration all flags what affect the result.
func (c *Config) GetHostUDS() HostUDS {
if c.FSGoferHostUDS {
if c.HostUDS != HostUDSNone {
panic(fmt.Sprintf("HostUDS cannot be set when --fsgofer-host-uds=true"))
}
// Using deprecated flag, honor it to avoid breaking users.
return HostUDSOpen
}
return c.HostUDS
}
// GetOverlay2 returns the overlay configuration, taking into consideration all
// flags that affect the result.
func (c *Config) GetOverlay2() Overlay2 {
if c.Overlay {
if c.Overlay2.Enabled() {
panic(fmt.Sprintf("Overlay2 cannot be set when --overlay=true"))
}
// Using a deprecated flag, honor it to avoid breaking users.
return Overlay2{rootMount: true, subMounts: true, medium: "memory"}
}
return c.Overlay2
}
// Bundle is a set of flag name-value pairs.
type Bundle map[string]string
// BundleName is a human-friendly name for a Bundle.
// It is used as part of an annotation to specify that the user wants to apply a Bundle.
type BundleName string
// Validate validates that given flag string values map to actual flags in runsc.
func (b Bundle) Validate() error {
flagSet := flag.NewFlagSet("tmp", flag.ContinueOnError)
RegisterFlags(flagSet)
for key, val := range b {
flag := flagSet.Lookup(key)
if flag == nil {
return fmt.Errorf("unknown flag %q", key)
}
if err := flagSet.Set(key, val); err != nil {
return err
}
}
return nil
}
// MetricMetadataKeys is the set of keys of metric metadata labels
// as returned by `Config.MetricMetadata`.
var MetricMetadataKeys = []string{
"version",
"platform",
"network",
"numcores",
"coretags",
"overlay",
"fsmode",
"cpuarch",
"go",
"experiment",
}
// MetricMetadata returns key-value pairs that are useful to include in metrics
// exported about the sandbox this config represents.
// It must return the same set of labels as listed in `MetricMetadataKeys`.
func (c *Config) MetricMetadata() map[string]string {
var fsMode = "goferfs"
if c.DirectFS {
fsMode = "directfs"
}
return map[string]string{
"version": version.Version(),
"platform": c.Platform,
"network": c.Network.String(),
"numcores": strconv.Itoa(runtime.NumCPU()),
"coretags": strconv.FormatBool(c.EnableCoreTags),
"overlay": c.Overlay2.String(),
"fsmode": fsMode,
"cpuarch": runtime.GOARCH,
"go": runtime.Version(),
// The "experiment" label is currently unused, but may be used to contain
// extra information about e.g. an experiment that may be enabled.
"experiment": "",
}
}
// FileAccessType tells how the filesystem is accessed.
type FileAccessType int
const (
// FileAccessExclusive gives the sandbox exclusive access over files and
// directories in the filesystem. No external modifications are permitted and
// can lead to undefined behavior.
//
// Exclusive filesystem access enables more aggressive caching and offers
// significantly better performance. This is the default mode for the root
// volume.
FileAccessExclusive FileAccessType = iota
// FileAccessShared is used for volumes that can have external changes. It
// requires revalidation on every filesystem access to detect external
// changes, and reduces the amount of caching that can be done. This is the
// default mode for non-root volumes.
FileAccessShared
)
func fileAccessTypePtr(v FileAccessType) *FileAccessType {
return &v
}
// Set implements flag.Value. Set(String()) should be idempotent.
func (f *FileAccessType) Set(v string) error {
switch v {
case "shared":
*f = FileAccessShared
case "exclusive":
*f = FileAccessExclusive
default:
return fmt.Errorf("invalid file access type %q", v)
}
return nil
}
// Get implements flag.Value.
func (f *FileAccessType) Get() any {
return *f
}
// String implements flag.Value.
func (f FileAccessType) String() string {
switch f {
case FileAccessShared:
return "shared"
case FileAccessExclusive:
return "exclusive"
}
panic(fmt.Sprintf("Invalid file access type %d", f))
}
// NetworkType tells which network stack to use.
type NetworkType int
const (
// NetworkSandbox uses internal network stack, isolated from the host.
NetworkSandbox NetworkType = iota
// NetworkHost redirects network related syscalls to the host network.
NetworkHost
// NetworkNone sets up just loopback using netstack.
NetworkNone
)
func networkTypePtr(v NetworkType) *NetworkType {
return &v
}
// Set implements flag.Value. Set(String()) should be idempotent.
func (n *NetworkType) Set(v string) error {
switch v {
case "sandbox":
*n = NetworkSandbox
case "host":
*n = NetworkHost
case "none":
*n = NetworkNone
default:
return fmt.Errorf("invalid network type %q", v)
}
return nil
}
// Get implements flag.Value.
func (n *NetworkType) Get() any {
return *n
}
// String implements flag.Value.
func (n NetworkType) String() string {
switch n {
case NetworkSandbox:
return "sandbox"
case NetworkHost:
return "host"
case NetworkNone:
return "none"
}
panic(fmt.Sprintf("Invalid network type %d", n))
}
// QueueingDiscipline is used to specify the kind of Queueing Discipline to
// apply for a give FDBasedLink.
type QueueingDiscipline int
const (
// QDiscNone disables any queueing for the underlying FD.
QDiscNone QueueingDiscipline = iota
// QDiscFIFO applies a simple fifo based queue to the underlying FD.
QDiscFIFO
)
func queueingDisciplinePtr(v QueueingDiscipline) *QueueingDiscipline {
return &v
}
// Set implements flag.Value. Set(String()) should be idempotent.
func (q *QueueingDiscipline) Set(v string) error {
switch v {
case "none":
*q = QDiscNone
case "fifo":
*q = QDiscFIFO
default:
return fmt.Errorf("invalid qdisc %q", v)
}
return nil
}
// Get implements flag.Value.
func (q *QueueingDiscipline) Get() any {
return *q
}
// String implements flag.Value.
func (q QueueingDiscipline) String() string {
switch q {
case QDiscNone:
return "none"
case QDiscFIFO:
return "fifo"
}
panic(fmt.Sprintf("Invalid qdisc %d", q))
}
func leakModePtr(v refs.LeakMode) *refs.LeakMode {
return &v
}
func watchdogActionPtr(v watchdog.Action) *watchdog.Action {
return &v
}
// HostUDS tells how much of the host UDS the file system has access to.
type HostUDS int
const (
// HostUDSNone doesn't allows UDS from the host to be manipulated.
HostUDSNone HostUDS = 0x0
// HostUDSOpen allows UDS from the host to be opened, e.g. connect(2).
HostUDSOpen HostUDS = 0x1
// HostUDSCreate allows UDS from the host to be created, e.g. bind(2).
HostUDSCreate HostUDS = 0x2
// HostUDSAll allows all form of communication with the host through UDS.
HostUDSAll = HostUDSOpen | HostUDSCreate
)
func hostUDSPtr(v HostUDS) *HostUDS {
return &v
}
// Set implements flag.Value. Set(String()) should be idempotent.
func (g *HostUDS) Set(v string) error {
switch v {
case "", "none":
*g = HostUDSNone
case "open":
*g = HostUDSOpen
case "create":
*g = HostUDSCreate
case "all":
*g = HostUDSAll
default:
return fmt.Errorf("invalid host UDS type %q", v)
}
return nil
}
// Get implements flag.Value.
func (g *HostUDS) Get() any {
return *g
}
// String implements flag.Value.
func (g HostUDS) String() string {
switch g {
case HostUDSNone:
return "none"
case HostUDSOpen:
return "open"
case HostUDSCreate:
return "create"
case HostUDSAll:
return "all"
default:
panic(fmt.Sprintf("Invalid host UDS type %d", g))
}
}
// AllowOpen returns true if it can consume UDS from the host.
func (g HostUDS) AllowOpen() bool {
return g&HostUDSOpen != 0
}
// AllowCreate returns true if it can create UDS in the host.
func (g HostUDS) AllowCreate() bool {
return g&HostUDSCreate != 0
}
// HostFifo tells how much of the host FIFO (or named pipes) the file system has
// access to.
type HostFifo int
const (
// HostFifoNone doesn't allow FIFO from the host to be manipulated.
HostFifoNone HostFifo = 0x0
// HostFifoOpen allows FIFOs from the host to be opened.
HostFifoOpen HostFifo = 0x1
)
func hostFifoPtr(v HostFifo) *HostFifo {
return &v
}
// Set implements flag.Value. Set(String()) should be idempotent.
func (g *HostFifo) Set(v string) error {
switch v {
case "", "none":
*g = HostFifoNone
case "open":
*g = HostFifoOpen
default:
return fmt.Errorf("invalid host fifo type %q", v)
}
return nil
}
// Get implements flag.Value.
func (g *HostFifo) Get() any {
return *g
}
// String implements flag.Value.
func (g HostFifo) String() string {
switch g {
case HostFifoNone:
return "none"
case HostFifoOpen:
return "open"
default:
panic(fmt.Sprintf("Invalid host fifo type %d", g))
}
}
// AllowOpen returns true if it can consume FIFOs from the host.
func (g HostFifo) AllowOpen() bool {
return g&HostFifoOpen != 0
}
// OverlayMedium describes how overlay medium is configured.
type OverlayMedium string
const (
// NoOverlay indicates that no overlay will be applied.
NoOverlay = OverlayMedium("")
// MemoryOverlay indicates that the overlay is backed by app memory.
MemoryOverlay = OverlayMedium("memory")
// SelfOverlay indicates that the overlaid mount is backed by itself.
SelfOverlay = OverlayMedium("self")
// AnonOverlayPrefix is the prefix that users should specify in the
// config for the anonymous overlay.
AnonOverlayPrefix = "dir="
)
// String returns a human-readable string representing the overlay medium config.
func (m OverlayMedium) String() string {
return string(m)
}
// Set sets the value. Set(String()) should be idempotent.
func (m *OverlayMedium) Set(v string) error {
switch OverlayMedium(v) {
case NoOverlay, MemoryOverlay, SelfOverlay: // OK
default:
if !strings.HasPrefix(v, AnonOverlayPrefix) {
return fmt.Errorf("unexpected medium: %q", v)
}
if hostFileDir := strings.TrimPrefix(v, AnonOverlayPrefix); !filepath.IsAbs(hostFileDir) {
return fmt.Errorf("overlay host file directory should be an absolute path, got %q", hostFileDir)
}
}
*m = OverlayMedium(v)
return nil
}
// IsBackedByAnon indicates whether the overlaid mount is backed by a host file
// in an anonymous directory.
func (m OverlayMedium) IsBackedByAnon() bool {
return strings.HasPrefix(string(m), AnonOverlayPrefix)
}
// HostFileDir indicates the directory in which the overlay-backing host file
// should be created.
//
// Precondition: m.IsBackedByAnon().
func (m OverlayMedium) HostFileDir() string {
if !m.IsBackedByAnon() {
panic(fmt.Sprintf("anonymous overlay medium = %q does not have %v prefix", m, AnonOverlayPrefix))
}
return strings.TrimPrefix(string(m), AnonOverlayPrefix)
}
// Overlay2 holds the configuration for setting up overlay filesystems for the
// container.
type Overlay2 struct {
rootMount bool
subMounts bool
medium OverlayMedium
}
func defaultOverlay2() *Overlay2 {
// Rootfs overlay is enabled by default and backed by a file in rootfs itself.
return &Overlay2{rootMount: true, subMounts: false, medium: SelfOverlay}
}
// Set implements flag.Value. Set(String()) should be idempotent.
func (o *Overlay2) Set(v string) error {
if v == "none" {
o.rootMount = false
o.subMounts = false
o.medium = NoOverlay
return nil
}
vs := strings.Split(v, ":")
if len(vs) != 2 {
return fmt.Errorf("expected format is --overlay2={mount}:{medium}, got %q", v)
}
switch mount := vs[0]; mount {
case "root":
o.rootMount = true
case "all":
o.rootMount = true
o.subMounts = true
default:
return fmt.Errorf("unexpected mount specifier for --overlay2: %q", mount)
}
return o.medium.Set(vs[1])
}
// Get implements flag.Value.
func (o *Overlay2) Get() any {
return *o
}
// String implements flag.Value.
func (o Overlay2) String() string {
if !o.rootMount && !o.subMounts {
return "none"
}
res := ""
switch {
case o.rootMount && o.subMounts:
res = "all"
case o.rootMount:
res = "root"
default:
panic("invalid state of subMounts = true and rootMount = false")
}
return res + ":" + o.medium.String()
}
// Enabled returns true if the overlay option is enabled for any mounts.
func (o *Overlay2) Enabled() bool {
return o.medium != NoOverlay
}
// RootOverlayMedium returns the overlay medium config of the root mount.
func (o *Overlay2) RootOverlayMedium() OverlayMedium {
if !o.rootMount {
return NoOverlay
}
return o.medium
}
// SubMountOverlayMedium returns the overlay medium config of submounts.
func (o *Overlay2) SubMountOverlayMedium() OverlayMedium {
if !o.subMounts {
return NoOverlay
}
return o.medium
}
// XDP holds configuration for whether and how to use XDP.
type XDP struct {
Mode XDPMode
IfaceName string
}
// XDPMode specifies a particular use of XDP.
type XDPMode int
const (
// XDPModeOff doesn't use XDP.
XDPModeOff XDPMode = iota
// XDPModeNS uses an AF_XDP socket to read from the VETH device inside
// the container's network namespace.
XDPModeNS
// XDPModeRedirect uses an AF_XDP socket on the host NIC to bypass the
// Linux network stack.
XDPModeRedirect
// XDPModeTunnel uses XDP_REDIRECT to redirect packets directy from the
// host NIC to the VETH device inside the container's network
// namespace. Packets are read from the VETH via AF_XDP, as in
// XDPModeNS.
XDPModeTunnel
)
const (
xdpModeStrOff = "off"
xdpModeStrNS = "ns"
xdpModeStrRedirect = "redirect"
xdpModeStrTunnel = "tunnel"
)
var xdpConfig XDP
// Get implements flag.Getter.
func (xd *XDP) Get() any {
return *xd
}
// String implements flag.Getter.
func (xd *XDP) String() string {
switch xd.Mode {
case XDPModeOff:
return xdpModeStrOff
case XDPModeNS:
return xdpModeStrNS
case XDPModeRedirect:
return fmt.Sprintf("%s:%s", xdpModeStrRedirect, xd.IfaceName)
case XDPModeTunnel:
return fmt.Sprintf("%s:%s", xdpModeStrTunnel, xd.IfaceName)
default:
panic(fmt.Sprintf("unknown mode %d", xd.Mode))
}
}
// Set implements flag.Getter.
func (xd *XDP) Set(input string) error {
parts := strings.Split(input, ":")
if len(parts) > 2 {
return fmt.Errorf("invalid --xdp value: %q", input)
}
switch {
case input == xdpModeStrOff:
xd.Mode = XDPModeOff
xd.IfaceName = ""
case input == xdpModeStrNS:
xd.Mode = XDPModeNS
xd.IfaceName = ""
case len(parts) == 2 && parts[0] == xdpModeStrRedirect && parts[1] != "":
xd.Mode = XDPModeRedirect
xd.IfaceName = parts[1]
case len(parts) == 2 && parts[0] == xdpModeStrTunnel && parts[1] != "":
xd.Mode = XDPModeTunnel
xd.IfaceName = parts[1]
default:
return fmt.Errorf("invalid --xdp value: %q", input)
}
return nil
}
|