summaryrefslogtreecommitdiff
path: root/pkg/specgen/container_validate.go
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2020-07-14 12:39:24 -0500
committerMatthew Heon <matthew.heon@pm.me>2020-07-22 14:13:43 -0400
commitc6852ee516abe3e1c4e5e31168d85d7cd446ce36 (patch)
treec99dba6af62b3c767b9a0f9a8d18201fad3e5445 /pkg/specgen/container_validate.go
parentc31dc9b26054104c749cf7551f92b888a24c2586 (diff)
downloadpodman-c6852ee516abe3e1c4e5e31168d85d7cd446ce36.tar.gz
podman-c6852ee516abe3e1c4e5e31168d85d7cd446ce36.tar.bz2
podman-c6852ee516abe3e1c4e5e31168d85d7cd446ce36.zip
Error on rootless mac and ip addresses
When creating a pod or container where a static MAC or IP address is provided, we should return a proper error and exit as 125. Fixes: #6972 Signed-off-by: Brent Baude <bbaude@redhat.com> <MH: Fixed build after cherry-pick> Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'pkg/specgen/container_validate.go')
-rw-r--r--pkg/specgen/container_validate.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkg/specgen/container_validate.go b/pkg/specgen/container_validate.go
index 9b544367d..57dd2aba7 100644
--- a/pkg/specgen/container_validate.go
+++ b/pkg/specgen/container_validate.go
@@ -25,6 +25,15 @@ func exclusiveOptions(opt1, opt2 string) error {
// input for creating a container.
func (s *SpecGenerator) Validate() error {
+ if rootless.IsRootless() {
+ if s.StaticIP != nil || s.StaticIPv6 != nil {
+ return ErrNoStaticIPRootless
+ }
+ if s.StaticMAC != nil {
+ return ErrNoStaticMACRootless
+ }
+ }
+
//
// ContainerBasicConfig
//