diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-03-23 23:31:01 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-03-23 23:31:01 +0000 |
commit | 8e2958434d9fb2d8dc75cd3942be4c90b5c9d7d3 (patch) | |
tree | 8c0693df3dab98d100cc68330669138e86839d5c /runsc/config/config.go | |
parent | 36211dedcc236309759ea793e2fb5d7fbedbd848 (diff) | |
parent | 960155cdaad49ccea07e45152f124beeb7e7fdcc (diff) |
Merge release-20210315.0-17-g960155cda (automated)
Diffstat (limited to 'runsc/config/config.go')
-rw-r--r-- | runsc/config/config.go | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/runsc/config/config.go b/runsc/config/config.go index 34ef48825..1e5858837 100644 --- a/runsc/config/config.go +++ b/runsc/config/config.go @@ -58,9 +58,12 @@ type Config struct { // DebugLogFormat is the log format for debug. DebugLogFormat string `flag:"debug-log-format"` - // FileAccess indicates how the filesystem is accessed. + // 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 the root filesystem in an overlay. Overlay bool `flag:"overlay"` @@ -197,13 +200,19 @@ func (c *Config) validate() error { type FileAccessType int const ( - // FileAccessExclusive is the same as FileAccessShared, but enables - // extra caching for improved performance. It should only be used if - // the sandbox has exclusive access to the filesystem. + // 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 sends IO requests to a Gofer process that validates the - // requests and forwards them to the host. + // 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 ) |