mirror of
https://github.com/moby/moby.git
synced 2026-07-20 14:32:26 +00:00
The present content size is included in the image size usage and should be included in the total size that the layer takes up on disk. This prevents an issue where the reclaimable amount reported by the CLI was a negative number. This also updates the `/system/df` endpoint to use a new type that computes information that was previously computed by the CLI. Computing these in the server should require less work from the CLI and ensure the calculations are more accurate because the CLI doesn't have to reconstruct the numbers. Signed-off-by: Jonathan A. Sternberg <jonathan.sternberg@docker.com>
163 lines
4.7 KiB
Go
163 lines
4.7 KiB
Go
package daemon // import "github.com/docker/docker/daemon"
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/api/server/router/system"
|
|
"github.com/docker/docker/api/types/container"
|
|
"github.com/docker/docker/api/types/filters"
|
|
"github.com/docker/docker/api/types/image"
|
|
systemtypes "github.com/docker/docker/api/types/system"
|
|
"github.com/docker/docker/api/types/volume"
|
|
"github.com/pkg/errors"
|
|
"golang.org/x/sync/errgroup"
|
|
)
|
|
|
|
// containerDiskUsage obtains information about container data disk usage
|
|
// and makes sure that only one calculation is performed at the same time.
|
|
func (daemon *Daemon) containerDiskUsage(ctx context.Context) (*container.DiskUsage, error) {
|
|
res, _, err := daemon.usageContainers.Do(ctx, struct{}{}, func(ctx context.Context) (*container.DiskUsage, error) {
|
|
// Retrieve container list
|
|
containers, err := daemon.Containers(ctx, &container.ListOptions{
|
|
Size: true,
|
|
All: true,
|
|
})
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to retrieve container list: %v", err)
|
|
}
|
|
|
|
// Remove image manifest descriptor from the result as it should not be included.
|
|
// https://github.com/moby/moby/pull/49407#discussion_r1954396666
|
|
for _, c := range containers {
|
|
c.ImageManifestDescriptor = nil
|
|
}
|
|
|
|
isActive := func(ctr *container.Summary) bool {
|
|
return ctr.State == container.StateRunning ||
|
|
ctr.State == container.StatePaused ||
|
|
ctr.State == container.StateRestarting
|
|
}
|
|
|
|
du := &container.DiskUsage{Items: containers}
|
|
for _, ctr := range du.Items {
|
|
du.TotalSize += ctr.SizeRw
|
|
if !isActive(ctr) {
|
|
du.Reclaimable += ctr.SizeRw
|
|
}
|
|
}
|
|
return du, nil
|
|
})
|
|
return res, err
|
|
}
|
|
|
|
// imageDiskUsage obtains information about image data disk usage from image service
|
|
// and makes sure that only one calculation is performed at the same time.
|
|
func (daemon *Daemon) imageDiskUsage(ctx context.Context) ([]*image.Summary, error) {
|
|
imgs, _, err := daemon.usageImages.Do(ctx, struct{}{}, func(ctx context.Context) ([]*image.Summary, error) {
|
|
// Get all top images with extra attributes
|
|
imgs, err := daemon.imageService.Images(ctx, image.ListOptions{
|
|
Filters: filters.NewArgs(),
|
|
SharedSize: true,
|
|
ContainerCount: true,
|
|
})
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "failed to retrieve image list")
|
|
}
|
|
return imgs, nil
|
|
})
|
|
|
|
return imgs, err
|
|
}
|
|
|
|
// localVolumesSize obtains information about volume disk usage from volumes service
|
|
// and makes sure that only one size calculation is performed at the same time.
|
|
func (daemon *Daemon) localVolumesSize(ctx context.Context) (*volume.DiskUsage, error) {
|
|
volumes, _, err := daemon.usageVolumes.Do(ctx, struct{}{}, func(ctx context.Context) (*volume.DiskUsage, error) {
|
|
volumes, err := daemon.volumes.LocalVolumesSize(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
du := &volume.DiskUsage{Items: volumes}
|
|
for _, v := range du.Items {
|
|
if v.UsageData.Size != -1 {
|
|
if v.UsageData.RefCount == 0 {
|
|
du.Reclaimable += v.UsageData.Size
|
|
}
|
|
du.TotalSize += v.UsageData.Size
|
|
}
|
|
}
|
|
return du, nil
|
|
})
|
|
return volumes, err
|
|
}
|
|
|
|
// layerDiskUsage obtains information about layer disk usage from image service
|
|
// and makes sure that only one size calculation is performed at the same time.
|
|
func (daemon *Daemon) layerDiskUsage(ctx context.Context) (int64, error) {
|
|
usage, _, err := daemon.usageLayer.Do(ctx, struct{}{}, func(ctx context.Context) (usage int64, err error) {
|
|
return daemon.imageService.ImageDiskUsage(ctx)
|
|
})
|
|
return usage, err
|
|
}
|
|
|
|
// SystemDiskUsage returns information about the daemon data disk usage.
|
|
// Callers must not mutate contents of the returned fields.
|
|
func (daemon *Daemon) SystemDiskUsage(ctx context.Context, opts system.DiskUsageOptions) (*systemtypes.DiskUsage, error) {
|
|
eg, ctx := errgroup.WithContext(ctx)
|
|
|
|
du := &systemtypes.DiskUsage{}
|
|
if opts.Containers {
|
|
eg.Go(func() (err error) {
|
|
du.Containers, err = daemon.containerDiskUsage(ctx)
|
|
return err
|
|
})
|
|
}
|
|
|
|
var (
|
|
layersSize int64
|
|
images []*image.Summary
|
|
)
|
|
if opts.Images {
|
|
eg.Go(func() (err error) {
|
|
images, err = daemon.imageDiskUsage(ctx)
|
|
return err
|
|
})
|
|
eg.Go(func() (err error) {
|
|
layersSize, err = daemon.layerDiskUsage(ctx)
|
|
return err
|
|
})
|
|
}
|
|
|
|
if opts.Volumes {
|
|
eg.Go(func() (err error) {
|
|
du.Volumes, err = daemon.localVolumesSize(ctx)
|
|
return err
|
|
})
|
|
}
|
|
|
|
if err := eg.Wait(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if opts.Images {
|
|
reclaimable := layersSize
|
|
for _, i := range images {
|
|
if i.Containers != 0 {
|
|
if i.Size == -1 || i.SharedSize == -1 {
|
|
continue
|
|
}
|
|
reclaimable -= i.Size - i.SharedSize
|
|
}
|
|
}
|
|
|
|
du.Images = &image.DiskUsage{
|
|
TotalSize: layersSize,
|
|
Reclaimable: reclaimable,
|
|
Items: images,
|
|
}
|
|
}
|
|
return du, nil
|
|
}
|