moby/daemon/containerd/image_changes.go
Paweł Gronowski bb7408e851
c8d/changes: Fix concurrents diffs
Use a unique parent view snapshot key for each diff request.

I considered using singleflight at first, but I realized it wouldn't
really be correct.
The diff can take some time, so there's a window of time between the
diff start and finish, where the file system can change.
These changes not always will be reflected in the running diff.
With singleflight, the second diff request which happened before the
previous diff was finished, would not include changes made to the
container filesystem after the first diff request has started.

Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
2023-10-13 13:15:50 +02:00

39 lines
1.1 KiB
Go

package containerd
import (
"context"
"github.com/containerd/containerd/mount"
"github.com/containerd/log"
"github.com/docker/docker/container"
"github.com/docker/docker/pkg/archive"
"github.com/docker/docker/pkg/stringid"
)
func (i *ImageService) Changes(ctx context.Context, container *container.Container) ([]archive.Change, error) {
snapshotter := i.client.SnapshotService(container.Driver)
info, err := snapshotter.Stat(ctx, container.ID)
if err != nil {
return nil, err
}
id := stringid.GenerateRandomID()
parentViewKey := container.ID + "-parent-view-" + id
imageMounts, _ := snapshotter.View(ctx, parentViewKey, info.Parent)
defer func() {
if err := snapshotter.Remove(ctx, parentViewKey); err != nil {
log.G(ctx).WithError(err).Warn("error removing the parent view snapshot")
}
}()
var changes []archive.Change
err = i.PerformWithBaseFS(ctx, container, func(containerRoot string) error {
return mount.WithReadonlyTempMount(ctx, imageMounts, func(imageRoot string) error {
changes, err = archive.ChangesDirs(containerRoot, imageRoot)
return err
})
})
return changes, err
}