-
Notifications
You must be signed in to change notification settings - Fork 30
fix(shim): reject task creation during shutdown #280
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
eginez
wants to merge
1
commit into
containerd:main
Choose a base branch
from
eginez:fix/shim-create-during-shutdown
base: main
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
Some comments aren't visible on the classic Files Changed page.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -134,6 +134,7 @@ func NewTaskService(ctx context.Context, sb sandbox.Sandbox, publisher shim.Publ | |
| debug: debug, | ||
| initiateShutdown: sd.Shutdown, | ||
| shutdownDone: sd.Done(), | ||
| shutdownErr: sd.Err, | ||
| } | ||
| sd.RegisterCallback(s.shutdown) | ||
|
|
||
|
|
@@ -202,6 +203,10 @@ func (c *container) shutdown(ctx context.Context) error { | |
| // service is the shim implementation of a remote shim over GRPC | ||
| type service struct { | ||
| mu sync.Mutex | ||
| // lifecycleMu serializes initial-task creation with Shutdown. A shim service | ||
| // must not admit another VM-backed initial task once it is retiring. | ||
| lifecycleMu sync.Mutex | ||
| retiring bool | ||
|
|
||
| // sb is the sandbox instance used to run the container | ||
| sb sandbox.Sandbox | ||
|
|
@@ -215,6 +220,7 @@ type service struct { | |
| initiateShutdown func() | ||
| initiateShutdownOnce sync.Once | ||
| shutdownDone <-chan struct{} | ||
| shutdownErr func() error | ||
| } | ||
|
|
||
| func (s *service) RegisterTTRPC(server *ttrpc.Server) error { | ||
|
|
@@ -223,6 +229,10 @@ func (s *service) RegisterTTRPC(server *ttrpc.Server) error { | |
| } | ||
|
|
||
| func (s *service) shutdown(ctx context.Context) error { | ||
| s.lifecycleMu.Lock() | ||
| s.retiring = true | ||
| s.lifecycleMu.Unlock() | ||
|
|
||
| // Detach all containers from tracking under the lock, then shut them down | ||
| // outside of it. Each container shutdown can block until its host-side | ||
| // copy goroutines drain and stdin reaches a real EOF (up to a 30 s ceiling | ||
|
|
@@ -296,6 +306,12 @@ func unmountAllWithRetry(ctx context.Context, mc mountAPI.TTRPCMountService) err | |
|
|
||
| // Create a new initial process and container with the underlying OCI runtime | ||
| func (s *service) Create(ctx context.Context, r *taskAPI.CreateTaskRequest) (_ *taskAPI.CreateTaskResponse, err error) { | ||
| s.lifecycleMu.Lock() | ||
| defer s.lifecycleMu.Unlock() | ||
| if s.retiring { | ||
| return nil, errgrpc.ToGRPC(fmt.Errorf("shim is shutting down: %w", errdefs.ErrUnavailable)) | ||
| } | ||
|
|
||
| log.G(ctx).WithFields(log.Fields{ | ||
| "container_id": r.ID, | ||
| "bundle": r.Bundle, | ||
|
|
@@ -987,10 +1003,16 @@ func (s *service) Shutdown(ctx context.Context, r *taskAPI.ShutdownRequest) (*pt | |
| // tc := taskAPI.NewTTRPCTaskClient(s.vm.Client()) | ||
| // return tc.Shutdown(ctx, r) | ||
|
|
||
| s.lifecycleMu.Lock() | ||
| s.retiring = true | ||
| s.lifecycleMu.Unlock() | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| s.initiateShutdownOnce.Do(s.initiateShutdown) | ||
|
|
||
| select { | ||
| case <-s.shutdownDone: | ||
| if err := s.shutdownErr(); err != nil && !errors.Is(err, shutdown.ErrShutdown) { | ||
| return nil, errgrpc.ToGRPC(fmt.Errorf("shim shutdown: %w", err)) | ||
| } | ||
| return empty, nil | ||
| case <-ctx.Done(): | ||
| return nil, errgrpc.ToGRPC(ctx.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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,296 @@ | ||
| /* | ||
| Copyright The containerd 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 | ||
|
|
||
| http://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 task | ||
|
|
||
| import ( | ||
| "context" | ||
| "encoding/json" | ||
| "errors" | ||
| "io" | ||
| "os" | ||
| "path/filepath" | ||
| "strings" | ||
| "sync" | ||
| "testing" | ||
|
|
||
| taskAPI "github.com/containerd/containerd/api/runtime/task/v3" | ||
| "github.com/containerd/containerd/v2/core/events" | ||
| "github.com/containerd/containerd/v2/pkg/shutdown" | ||
| "github.com/containerd/errdefs" | ||
| "github.com/containerd/errdefs/pkg/errgrpc" | ||
| "github.com/containerd/nerdbox/internal/shim/sandbox" | ||
| vmsandbox "github.com/containerd/nerdbox/internal/shim/sandbox/vm" | ||
| vmapi "github.com/containerd/nerdbox/pkg/vm" | ||
| "github.com/containerd/ttrpc" | ||
| ocispec "github.com/opencontainers/runtime-spec/specs-go" | ||
| ) | ||
|
|
||
| func TestCreateDuringShutdownReturnsUnavailable(t *testing.T) { | ||
| bundleDir := t.TempDir() | ||
| rootfs := filepath.Join(bundleDir, "rootfs") | ||
| if err := os.Mkdir(rootfs, 0o700); err != nil { | ||
| t.Fatal(err) | ||
| } | ||
| config, err := json.Marshal(ocispec.Spec{ | ||
| Version: ocispec.Version, | ||
| Root: &ocispec.Root{Path: "rootfs"}, | ||
| }) | ||
| if err != nil { | ||
| t.Fatal(err) | ||
| } | ||
| if err := os.WriteFile(filepath.Join(bundleDir, "config.json"), config, 0o600); err != nil { | ||
| t.Fatal(err) | ||
| } | ||
|
|
||
| sd := newControlledShutdown() | ||
| manager := &lifecycleManager{instance: &lifecycleInstance{}} | ||
| sbx := vmsandbox.NewVMSandbox(manager) | ||
| if err := sbx.Start(t.Context(), sandbox.WithStateDir(t.TempDir())); err != nil { | ||
| t.Fatalf("starting initial VM instance: %v", err) | ||
| } | ||
| svc, err := NewTaskService(t.Context(), &clientlessSandbox{Sandbox: sbx}, discardPublisher{}, sd) | ||
| if err != nil { | ||
| t.Fatal(err) | ||
| } | ||
|
|
||
| shutdownDone := make(chan error, 1) | ||
| go func() { | ||
| _, err := svc.Shutdown(t.Context(), &taskAPI.ShutdownRequest{ID: "test"}) | ||
| shutdownDone <- err | ||
| }() | ||
| <-sd.started | ||
|
|
||
| _, err = svc.Create(t.Context(), &taskAPI.CreateTaskRequest{ | ||
| ID: "test", | ||
| Bundle: bundleDir, | ||
| }) | ||
| if !errdefs.IsUnavailable(errgrpc.ToNative(err)) { | ||
| t.Fatalf("Create during shutdown error = %v, want unavailable", err) | ||
| } | ||
| if got := manager.calls(); got != 1 { | ||
| t.Fatalf("VM instance created %d times, want only the initial instance", got) | ||
| } | ||
|
eginez marked this conversation as resolved.
|
||
|
|
||
| close(sd.release) | ||
| if err := <-shutdownDone; err != nil { | ||
| t.Fatalf("Shutdown returned error: %v", err) | ||
| } | ||
| } | ||
|
|
||
| func TestShutdownReturnsSandboxStopError(t *testing.T) { | ||
| stopErr := errors.New("VM shutdown failed") | ||
| sd := newControlledShutdown() | ||
| manager := &lifecycleManager{instance: &lifecycleInstance{shutdownErr: stopErr}} | ||
| sbx := vmsandbox.NewVMSandbox(manager) | ||
| if err := sbx.Start(t.Context(), sandbox.WithStateDir(t.TempDir())); err != nil { | ||
| t.Fatalf("starting initial VM instance: %v", err) | ||
| } | ||
| svc, err := NewTaskService(t.Context(), &clientlessSandbox{Sandbox: sbx}, discardPublisher{}, sd) | ||
| if err != nil { | ||
| t.Fatal(err) | ||
| } | ||
|
|
||
| done := make(chan error, 1) | ||
| go func() { | ||
| _, err := svc.Shutdown(t.Context(), &taskAPI.ShutdownRequest{ID: "test"}) | ||
| done <- err | ||
| }() | ||
| <-sd.started | ||
| close(sd.release) | ||
|
|
||
| err = errgrpc.ToNative(<-done) | ||
| if err == nil || !strings.Contains(err.Error(), stopErr.Error()) { | ||
| t.Fatalf("Shutdown error = %v, want %v", err, stopErr) | ||
| } | ||
| } | ||
|
|
||
| func TestCreateDuringDirectShutdownReturnsUnavailable(t *testing.T) { | ||
| bundleDir := t.TempDir() | ||
| rootfs := filepath.Join(bundleDir, "rootfs") | ||
| if err := os.Mkdir(rootfs, 0o700); err != nil { | ||
| t.Fatal(err) | ||
| } | ||
| config, err := json.Marshal(ocispec.Spec{ | ||
| Version: ocispec.Version, | ||
| Root: &ocispec.Root{Path: "rootfs"}, | ||
| }) | ||
| if err != nil { | ||
| t.Fatal(err) | ||
| } | ||
| if err := os.WriteFile(filepath.Join(bundleDir, "config.json"), config, 0o600); err != nil { | ||
| t.Fatal(err) | ||
| } | ||
|
|
||
| sd := newControlledShutdown() | ||
| instance := &lifecycleInstance{ | ||
| shutdownStarted: make(chan struct{}), | ||
| releaseShutdown: make(chan struct{}), | ||
| } | ||
| manager := &lifecycleManager{instance: instance} | ||
| sbx := vmsandbox.NewVMSandbox(manager) | ||
| if err := sbx.Start(t.Context(), sandbox.WithStateDir(t.TempDir())); err != nil { | ||
| t.Fatalf("starting initial VM instance: %v", err) | ||
| } | ||
| svc, err := NewTaskService(t.Context(), &clientlessSandbox{Sandbox: sbx}, discardPublisher{}, sd) | ||
| if err != nil { | ||
| t.Fatal(err) | ||
| } | ||
|
|
||
| sd.Shutdown() | ||
| <-sd.started | ||
| close(sd.release) | ||
| <-instance.shutdownStarted | ||
|
|
||
| _, err = svc.Create(t.Context(), &taskAPI.CreateTaskRequest{ID: "test", Bundle: bundleDir}) | ||
| if !errdefs.IsUnavailable(errgrpc.ToNative(err)) { | ||
| t.Fatalf("Create during direct shutdown error = %v, want unavailable", err) | ||
| } | ||
| if got := manager.calls(); got != 1 { | ||
| t.Fatalf("VM instance created %d times, want only the initial instance", got) | ||
| } | ||
|
|
||
| close(instance.releaseShutdown) | ||
| <-sd.done | ||
| } | ||
|
|
||
| func TestInitialDeleteDoesNotRetireService(t *testing.T) { | ||
| svc, err := NewTaskService(t.Context(), &clientlessSandbox{}, discardPublisher{}, newControlledShutdown()) | ||
| if err != nil { | ||
| t.Fatal(err) | ||
| } | ||
|
|
||
| _, err = svc.Delete(t.Context(), &taskAPI.DeleteRequest{ID: "test"}) | ||
| if err == nil { | ||
| t.Fatal("Delete returned nil error without a VM client") | ||
| } | ||
|
|
||
| service := svc.(*service) | ||
| service.lifecycleMu.Lock() | ||
| defer service.lifecycleMu.Unlock() | ||
| if service.retiring { | ||
| t.Fatal("initial Delete retired the sandbox service") | ||
| } | ||
| } | ||
|
|
||
| type controlledShutdown struct { | ||
| mu sync.Mutex | ||
| callbacks []func(context.Context) error | ||
| started chan struct{} | ||
| release chan struct{} | ||
| done chan struct{} | ||
| err error | ||
| once sync.Once | ||
| } | ||
|
|
||
| func newControlledShutdown() *controlledShutdown { | ||
| return &controlledShutdown{ | ||
| started: make(chan struct{}), | ||
| release: make(chan struct{}), | ||
| done: make(chan struct{}), | ||
| } | ||
| } | ||
|
|
||
| func (s *controlledShutdown) Shutdown() { | ||
| s.once.Do(func() { | ||
| close(s.started) | ||
| go func() { | ||
| <-s.release | ||
| s.mu.Lock() | ||
| callbacks := append([]func(context.Context) error(nil), s.callbacks...) | ||
| s.mu.Unlock() | ||
| var shutdownErr error | ||
| for _, callback := range callbacks { | ||
| if err := callback(context.Background()); err != nil && shutdownErr == nil { | ||
| shutdownErr = err | ||
| } | ||
| } | ||
| if shutdownErr == nil { | ||
| shutdownErr = shutdown.ErrShutdown | ||
| } | ||
| s.mu.Lock() | ||
| s.err = shutdownErr | ||
| s.mu.Unlock() | ||
| close(s.done) | ||
| }() | ||
| }) | ||
| } | ||
|
|
||
| func (s *controlledShutdown) RegisterCallback(callback func(context.Context) error) { | ||
| s.mu.Lock() | ||
| defer s.mu.Unlock() | ||
| s.callbacks = append(s.callbacks, callback) | ||
| } | ||
|
|
||
| func (s *controlledShutdown) Done() <-chan struct{} { return s.done } | ||
|
|
||
| func (s *controlledShutdown) Err() error { | ||
| s.mu.Lock() | ||
| defer s.mu.Unlock() | ||
| return s.err | ||
| } | ||
|
|
||
| type clientlessSandbox struct { | ||
| sandbox.Sandbox | ||
| } | ||
|
|
||
| func (*clientlessSandbox) Client() (*ttrpc.Client, error) { | ||
| return nil, errors.New("no VM client") | ||
| } | ||
|
|
||
| type lifecycleManager struct { | ||
| vmapi.Manager | ||
|
|
||
| mu sync.Mutex | ||
| instance vmapi.Instance | ||
| newCalls int | ||
| } | ||
|
|
||
| func (m *lifecycleManager) NewInstance(context.Context, string) (vmapi.Instance, error) { | ||
| m.mu.Lock() | ||
| defer m.mu.Unlock() | ||
| m.newCalls++ | ||
| return m.instance, nil | ||
| } | ||
|
|
||
| func (m *lifecycleManager) calls() int { | ||
| m.mu.Lock() | ||
| defer m.mu.Unlock() | ||
| return m.newCalls | ||
| } | ||
|
|
||
| type lifecycleInstance struct { | ||
| vmapi.Instance | ||
| shutdownErr error | ||
| shutdownStarted chan struct{} | ||
| releaseShutdown chan struct{} | ||
| } | ||
|
|
||
| func (*lifecycleInstance) Start(context.Context, ...vmapi.StartOpt) error { return nil } | ||
| func (i *lifecycleInstance) Shutdown(context.Context) error { | ||
| if i.shutdownStarted != nil { | ||
| close(i.shutdownStarted) | ||
| <-i.releaseShutdown | ||
| } | ||
| return i.shutdownErr | ||
| } | ||
|
|
||
| type discardPublisher struct{} | ||
|
|
||
| func (discardPublisher) Publish(context.Context, string, events.Event) error { return nil } | ||
| func (discardPublisher) Close() error { return nil } | ||
|
|
||
| var _ io.Closer = discardPublisher{} | ||
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.