Skip to content

Commit 8ecb278

Browse files
committed
libcontainer/configs/validate: improve rootlessEUIDMount
1. Avoid splitting mount data into []string if it does not contain options we're interested in. This should result in slightly less garbage to collect. 2. Use if / else if instead of continue, to make it clearer that we're processing one option at a time. 3. Print the whole option as a sting in an error message; practically this should not have any effect, it's just simpler. Signed-off-by: Kir Kolyshkin <[email protected]>
1 parent 05f53d6 commit 8ecb278

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

libcontainer/configs/validate/rootless.go

+6-5
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ func rootlessEUIDMount(config *configs.Config) error {
5555
for _, mount := range config.Mounts {
5656
// Check that the options list doesn't contain any uid= or gid= entries
5757
// that don't resolve to root.
58+
if !strings.Contains(mount.Data, "id=") {
59+
continue
60+
}
5861
for _, opt := range strings.Split(mount.Data, ",") {
5962
if str, ok := strings.CutPrefix(opt, "uid="); ok {
6063
uid, err := strconv.Atoi(str)
@@ -63,18 +66,16 @@ func rootlessEUIDMount(config *configs.Config) error {
6366
continue
6467
}
6568
if _, err := config.HostUID(uid); err != nil {
66-
return fmt.Errorf("cannot specify uid=%d mount option for rootless container: %w", uid, err)
69+
return fmt.Errorf("cannot specify %s mount option for rootless container: %w", opt, err)
6770
}
68-
continue
69-
}
70-
if str, ok := strings.CutPrefix(opt, "gid="); ok {
71+
} else if str, ok := strings.CutPrefix(opt, "gid="); ok {
7172
gid, err := strconv.Atoi(str)
7273
if err != nil {
7374
// Ignore unknown mount options.
7475
continue
7576
}
7677
if _, err := config.HostGID(gid); err != nil {
77-
return fmt.Errorf("cannot specify gid=%d mount option for rootless container: %w", gid, err)
78+
return fmt.Errorf("cannot specify %s mount option for rootless container: %w", opt, err)
7879
}
7980
}
8081
}

0 commit comments

Comments
 (0)