Skip to content

Commit 7b1b16b

Browse files
committed
runtime-v2: add validation for runtime name
add validation for runtime name, if runtime name is invalid, containerd will got panic. Signed-off-by: Ace-Tang <[email protected]>
1 parent 133ac5c commit 7b1b16b

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

runtime/v2/shim/util.go

+10-2
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ func Command(ctx context.Context, runtime, containerdAddress, path string, cmdAr
4949
}
5050
args = append(args, cmdArgs...)
5151
name := BinaryName(runtime)
52+
if name == "" {
53+
return nil, fmt.Errorf("invalid runtime name %s, correct runtime name should format like io.containerd.runc.v1", runtime)
54+
}
5255
var cmdPath string
5356
var lerr error
5457
if cmdPath, lerr = exec.LookPath(name); lerr != nil {
@@ -69,10 +72,15 @@ func Command(ctx context.Context, runtime, containerdAddress, path string, cmdAr
6972
return cmd, nil
7073
}
7174

72-
// BinaryName returns the shim binary name from the runtime name
75+
// BinaryName returns the shim binary name from the runtime name,
76+
// empty string returns means runtime name is invalid
7377
func BinaryName(runtime string) string {
78+
// runtime name should format like $prefix.name.version
7479
parts := strings.Split(runtime, ".")
75-
// TODO: add validation for runtime
80+
if len(parts) < 2 {
81+
return ""
82+
}
83+
7684
return fmt.Sprintf(shimBinaryFormat, parts[len(parts)-2], parts[len(parts)-1])
7785
}
7886

0 commit comments

Comments
 (0)