-
Notifications
You must be signed in to change notification settings - Fork 1.6k
feat(shim): implement containerd Task.Update for cgroup resize #12791
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
a7i
wants to merge
1
commit into
google:master
Choose a base branch
from
a7i:feat/shim-containerd-update
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| // Copyright 2026 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 | ||
| // | ||
| // https://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 proc | ||
|
|
||
| import ( | ||
| "errors" | ||
| "strings" | ||
| "testing" | ||
|
|
||
| "github.com/containerd/containerd/pkg/stdio" | ||
| "github.com/containerd/errdefs" | ||
| "github.com/gogo/protobuf/types" | ||
| "gvisor.dev/gvisor/pkg/shim/v1/runsccmd" | ||
| ) | ||
|
|
||
| func TestInitUpdateNilAny(t *testing.T) { | ||
| p := New("id", &runsccmd.Runsc{}, stdio.Stdio{}) | ||
| p.initState = &runningState{p: p} | ||
| err := p.Update(t.Context(), nil) | ||
| if !errors.Is(err, errdefs.ErrInvalidArgument) { | ||
| t.Fatalf("Update(nil): %v, want ErrInvalidArgument", err) | ||
| } | ||
| } | ||
|
|
||
| func TestInitUpdateInvalidJSON(t *testing.T) { | ||
| p := New("id", &runsccmd.Runsc{}, stdio.Stdio{}) | ||
| p.initState = &runningState{p: p} | ||
| err := p.Update(t.Context(), &types.Any{Value: []byte(`{`)}) | ||
| if err == nil || !strings.Contains(err.Error(), "decoding resources") { | ||
| t.Fatalf("Update(bad JSON): %v", err) | ||
| } | ||
| } | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,87 @@ | ||
| // Copyright 2026 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 | ||
| // | ||
| // https://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. | ||
|
|
||
| //go:build linux | ||
|
|
||
| package runsccmd | ||
|
|
||
| import ( | ||
| "encoding/json" | ||
| "fmt" | ||
| "os" | ||
| "path/filepath" | ||
| "strings" | ||
| "testing" | ||
|
|
||
| specs "github.com/opencontainers/runtime-spec/specs-go" | ||
| ) | ||
|
|
||
| // TestRunscUpdateCLI verifies Update runs the OCI update flow: JSON resources on | ||
| // stdin and "update --resources - <id>" in argv (same contract as go-runc). | ||
| func TestRunscUpdateCLI(t *testing.T) { | ||
| ctx := t.Context() | ||
| dir := t.TempDir() | ||
| argsLog := filepath.Join(dir, "args.txt") | ||
| stdinLog := filepath.Join(dir, "stdin.txt") | ||
| script := filepath.Join(dir, "fake-runsc") | ||
| scriptBody := fmt.Sprintf(`#!/bin/sh | ||
| printf '%%s\n' "$*" >%q | ||
| cat >%q | ||
| exit 0 | ||
| `, argsLog, stdinLog) | ||
| if err := os.WriteFile(script, []byte(scriptBody), 0o755); err != nil { | ||
| t.Fatal(err) | ||
| } | ||
|
|
||
| limit := int64(4096) | ||
| wantRes := &specs.LinuxResources{ | ||
| Memory: &specs.LinuxMemory{Limit: &limit}, | ||
| } | ||
|
|
||
| r := &Runsc{ | ||
| Command: script, | ||
| Root: filepath.Join(dir, "root"), | ||
| } | ||
| if err := r.Update(ctx, "cid-1", wantRes); err != nil { | ||
| t.Fatalf("Update: %v", err) | ||
| } | ||
|
|
||
| rawArgs, err := os.ReadFile(argsLog) | ||
| if err != nil { | ||
| t.Fatal(err) | ||
| } | ||
| args := strings.Fields(string(rawArgs)) | ||
| var joined strings.Builder | ||
| for _, a := range args { | ||
| joined.WriteString(a) | ||
| joined.WriteByte(' ') | ||
| } | ||
| s := joined.String() | ||
| // go-runc may pass "--resources -"; we use "--resources=-" (same stdin contract). | ||
| if !strings.Contains(s, "update ") || !strings.Contains(s, "--resources") || !strings.Contains(s, "cid-1") { | ||
| t.Fatalf("argv missing expected update flags: %q", string(rawArgs)) | ||
| } | ||
|
|
||
| rawStdin, err := os.ReadFile(stdinLog) | ||
| if err != nil { | ||
| t.Fatal(err) | ||
| } | ||
| var got specs.LinuxResources | ||
| if err := json.Unmarshal(rawStdin, &got); err != nil { | ||
| t.Fatalf("stdin JSON: %v", err) | ||
| } | ||
| if got.Memory == nil || got.Memory.Limit == nil || *got.Memory.Limit != limit { | ||
| t.Fatalf("stdin resources: got %+v, want memory limit %d", got.Memory, limit) | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.