Documentation
¶
Overview ¶
Package imagecache implements the node-local OCI image cache: a content-addressed pool of unpacked image layers shared by every actor on the node, plus the per-bundle overlay spec that tells the ateom runtimes how to compose an actor rootfs from cached layers.
The work is split along the existing atelet/ateom privilege boundary:
- atelet (plain root, all capabilities dropped) pulls layers and unpacks them into the pool (Store.EnsureImage), and writes a rootfs-overlay.json next to each bundle's config.json (WriteSpec). Whiteout entries are recorded in per-layer metadata rather than materialized, because overlayfs whiteouts are char devices (CAP_MKNOD) with trusted.* xattrs for opaque dirs (CAP_SYS_ADMIN).
- ateom (privileged; it already owns every mount on the node) finalizes layers — materializing the recorded whiteout state, once per layer — and mounts the overlay rootfs (SetupBundleRootfs) just before `runsc create` / staging the micro-VM virtio-fs lower.
On-disk layout under the cache root (a directory on the BasePath hostPath, so the same absolute paths resolve in atelet and every ateom pod):
version layout version marker
layers/sha256/<diffid-hex>/
fs/ the unpacked layer tree (overlay lowerdir)
whiteouts.json whiteout state recorded at unpack time
finalized marker written by FinalizeLayer (ateom)
manifests/sha256/<digest-hex>.json
image config + ordered diffID list
Layers land in the pool via unpack-into-tempdir + atomic rename, so a layer directory that exists is always complete; startup recovery only has to sweep orphaned temp dirs.
Index ¶
- Constants
- Variables
- func FinalizeLayer(layerDir string) error
- func RemoveAllWritable(path string) error
- func SetupBundleRootfs(bundlePath string) error
- func UnmountAllUnder(dir string) error
- func WriteSpec(bundlePath string, spec *OverlaySpec) error
- type EvictStats
- type Image
- type ImageVolumeOverlay
- type Option
- func WithActorsDir(dir string) Option
- func WithAuthenticator(a authn.Authenticator) Option
- func WithLocalhostRegistryReplacement(replacement string) Option
- func WithMeter(m metric.Meter) Option
- func WithMinAge(d time.Duration) Option
- func WithPlatform(p v1.Platform) Option
- func WithPullTimeout(d time.Duration) Option
- type OverlaySpec
- type RootSet
- type Store
- func (s *Store) CacheSize() (int64, error)
- func (s *Store) EnsureImage(ctx context.Context, ref string) (_ *Image, err error)
- func (s *Store) EvictUnused(ctx context.Context, targetBytes int64, dryRun bool) (EvictStats, error)
- func (s *Store) InUse() (RootSet, error)
- func (s *Store) RecoverOrphans(ctx context.Context) (EvictStats, error)
Constants ¶
const OverlaySpecFileName = "rootfs-overlay.json"
OverlaySpecFileName is the file atelet writes into each container bundle, next to config.json, describing how to compose the bundle's rootfs from cached layers. Its absence means the bundle's rootfs is a plain directory (e.g. one prepared by a pre-imagecache atelet) and needs no mount.
Variables ¶
var ErrIncompleteEnumeration = errors.New("image cache enumeration incomplete")
ErrIncompleteEnumeration marks a pass that did nothing because the image records or bundle specs could not be fully enumerated. Callers use errors.Is to tell "nothing was attempted" (repair the named file; not a shortfall) from per-item failures on a pass that ran.
Functions ¶
func FinalizeLayer ¶
FinalizeLayer materializes the whiteout state recorded at unpack time: 0:0 char devices for whiteouts and trusted.overlay.opaque=y on opaque dirs. This runs in ateom rather than atelet because mknod needs CAP_MKNOD and trusted.* xattrs need CAP_SYS_ADMIN, both of which atelet deliberately drops.
Idempotent and safe under concurrent callers (multiple ateom pods share the node's pool): EEXIST from mknod is success, setxattr is naturally idempotent, and the marker is written last.
func RemoveAllWritable ¶
RemoveAllWritable removes path and everything under it, first making every directory owner-writable so its children can be unlinked. Unpacked image trees keep the image's (possibly read-only) directory modes, which atelet cannot remove as plain root without CAP_DAC_OVERRIDE — os.RemoveAll alone fails there with EACCES. atelet owns these files, so chmod needs no capability.
func SetupBundleRootfs ¶
SetupBundleRootfs composes the bundle's rootfs from cached layers per the bundle's overlay spec: it finalizes each layer (whiteout materialization, once per layer node-wide), mounts an overlay at <bundle>/rootfs with the cached layers as read-only lowerdirs and the bundle-local upper/ + work/ as the actor's private writable side, and creates the spec's ExtraDirs through the mount (so they land in the upper).
A bundle without an overlay spec is left untouched (its rootfs is a plain extracted directory). The mount lives in the calling process's mount namespace, which is exactly where the workload (runsc's gofer, virtiofsd) resolves it.
func UnmountAllUnder ¶
UnmountAllUnder lazily detaches every mount at or below dir in the calling process's mount namespace. It is the teardown counterpart of SetupBundleRootfs, keyed by directory rather than by container name so a single call cleans up all of an actor's bundle mounts. Missing mounts are not an error.
func WriteSpec ¶
func WriteSpec(bundlePath string, spec *OverlaySpec) error
WriteSpec writes spec into the bundle at bundlePath.
The write is atomic (temp file + rename): concurrent readers — notably the cache GC's root-set scan — must never see a partial spec, which could parse with layers missing and leave them eligible for eviction while the actor is using them.
Types ¶
type EvictStats ¶
type EvictStats struct {
// FreedBytes sums retired layers' recorded sizes, read from the size
// files that rode along with the rename (walked read-only only when
// absent) — consistent with CacheSize's accounting. An estimate; the
// caller's next statfs self-corrects.
FreedBytes int64
// EvictedImages / EvictedLayers count deleted records and retired layer
// dirs.
EvictedImages, EvictedLayers int
// Candidates is the number of LRU-ordered eviction candidates after all
// listing-stage vetoes.
Candidates int
// RootedImages counts image records excluded because a bundle overlay
// spec roots them (the "actively placed" protection).
RootedImages int
// SkippedRooted counts layers kept during the pass because a bundle
// spec roots them (rooted images at listing time count into
// RootedImages instead). SkippedFresh counts min-age vetoes, fired at
// listing time or by the per-victim re-check.
SkippedRooted, SkippedFresh int
// OrphanLayers counts layers reclaimed by the startup scan
// (RecoverOrphans) — always zero for periodic passes, which reach
// layers only through records. Bytes are included in FreedBytes.
OrphanLayers int
}
EvictStats reports what an eviction pass did (or, dry-run, would do).
type Image ¶
type Image struct {
// Digest is the manifest digest the caller's ref resolved to (for a
// multi-arch ref, the index digest as requested, not the per-platform
// child).
Digest v1.Hash
// Config is the OCI image config (entrypoint, env, ...).
Config v1.Config
// LayerDirs are the absolute cached layer directories, bottom-most layer
// first. Each contains the unpacked tree under "fs/".
LayerDirs []string
}
Image describes one cached, ready-to-compose image.
type ImageVolumeOverlay ¶
type ImageVolumeOverlay struct {
// Name is the ActorTemplate's name for the volume.
Name string `json:"name"`
// ImageDigest is the manifest digest the volume's ref resolved to, in the
// same form and for the same reason as OverlaySpec.ImageDigest: the GC's
// root-set scan protects an image by digest.
ImageDigest string `json:"imageDigest,omitempty"`
// Layers are the cached layer directories, bottom-most first.
Layers []string `json:"layers"`
}
ImageVolumeOverlay is one image volume's contents.
type Option ¶
type Option func(*Store)
Option configures a Store.
func WithActorsDir ¶
WithActorsDir points the eviction root-set scan at the node's actors directory (the per-actor state dirs under ateompath.BasePath). Each <actorsDir>/<actorUID>/bundles/<container>/rootfs-overlay.json roots its image and layers against eviction. Empty disables the scan.
func WithAuthenticator ¶
func WithAuthenticator(a authn.Authenticator) Option
WithAuthenticator attaches an authenticator used for gcr.io / pkg.dev registries. A nil authenticator is ignored.
func WithLocalhostRegistryReplacement ¶
WithLocalhostRegistryReplacement rewrites localhost/loopback registry refs to the given endpoint, mirroring the containerd mirror config used by kind local registries (https://kind.sigs.k8s.io/docs/user/local-registry/).
func WithMeter ¶
WithMeter attaches the meter the store reports ate.imagecache.requests on. Without it the store records nothing, so a caller with no metrics pipeline needs no meter provider.
func WithMinAge ¶
WithMinAge overrides the eviction minimum age (default 2m): layers and image records younger than this are never evicted.
func WithPlatform ¶
WithPlatform overrides the pull platform (default: linux/GOARCH).
func WithPullTimeout ¶
WithPullTimeout overrides the per-pull timeout (default 10m).
type OverlaySpec ¶
type OverlaySpec struct {
Version int `json:"version"`
// ImageDigest is the manifest digest the bundle's image ref resolved to
// ("sha256:<hex>"). For a multi-arch ref this is the index digest; the
// cache may hold a twin record under the platform-child digest, and GC
// must treat the pair as one image. The GC's root-set scan uses it to
// protect the image while the bundle exists; consumers ignore it.
// Optional: older specs lack it.
ImageDigest string `json:"imageDigest,omitempty"`
// Layers are the cached layer directories (each holding its tree under
// fs/), bottom-most layer first — the order the image manifest lists
// them. Consumers reverse this into overlayfs's top-first lowerdir.
Layers []string `json:"layers"`
// ExtraDirs are absolute in-rootfs directories the consumer creates after
// mounting (they land in the actor's private upper): bind-mount targets
// that must exist for the runtime to attach them, e.g. the actor identity
// mount.
ExtraDirs []string `json:"extraDirs,omitempty"`
// ImageVolumes are read-only image contents to expose beside the rootfs,
// one per image-typed volume the container mounts. The consumer composes
// each at the volume's bundle-local mount point, which the OCI spec binds
// into the container.
ImageVolumes []ImageVolumeOverlay `json:"imageVolumes,omitempty"`
}
OverlaySpec is the contract between atelet (which cannot mount) and the ateom runtimes (which mount the rootfs overlay just before running the workload). The overlay's mountpoint, upperdir, and workdir are always the bundle-local rootfs/, upper/, and work/ directories — derived from the bundle path by the consumer rather than trusted from the file.
func ReadSpec ¶
func ReadSpec(bundlePath string) (*OverlaySpec, error)
ReadSpec reads the bundle's overlay spec. It returns (nil, nil) when the bundle has none.
type RootSet ¶
type RootSet struct {
// ImageDigests are rooted image digest strings ("sha256:<hex>").
ImageDigests map[string]bool
// LayerHexes are rooted layer diffID hexes (the layer dir base names),
// covering bundle specs written before ImageDigest existed and
// belt-and-suspenders for those written after.
LayerHexes map[string]bool
// LayerSets holds a signature per rooted bundle's *exact* layer set.
// A record whose layer set matches one is rooted too: the multi-arch
// twin and the digestless pre-ImageDigest spec, whose record would
// otherwise be evicted while its layers survive — manufacturing an
// orphan when the bundle goes. Exact match on purpose: rooting every
// subset image (e.g. a running actor's base image) would quietly
// weaken --image-cache-max-bytes under heavy layer sharing.
LayerSets map[string]bool
}
RootSet is the set of images and layers that eviction must not touch, recomputed from disk at the start of every pass.
type Store ¶
type Store struct {
// contains filtered or unexported fields
}
Store is atelet's handle to the on-disk layer pool. It is safe for concurrent use; concurrent pulls of the same image or layer are collapsed. The store assumes it is the only writer on the node (one atelet per node).
func New ¶
New opens (creating if needed) the layer pool rooted at root and runs startup recovery: verifying the layout version and sweeping temp dirs left by unpacks that were in flight when a previous atelet died.
func (*Store) CacheSize ¶
CacheSize returns the sum of recorded sizes of every layer in the pool (the accounting behind --image-cache-max-bytes, distinct from volume usage).
func (*Store) EnsureImage ¶
EnsureImage makes ref's image available in the pool and returns its config and ordered layer directories. Digest refs hit the cache with no network I/O; tag refs cost one HEAD request to resolve the tag to a manifest digest (so tag refs are cacheable, and a moved tag is picked up on the next call).
func (*Store) EvictUnused ¶
func (s *Store) EvictUnused(ctx context.Context, targetBytes int64, dryRun bool) (EvictStats, error)
EvictUnused evicts least-recently-used unprotected images — and the layers their removal leaves unreferenced — until ~targetBytes is freed or candidates run out. math.MaxInt64 means "free everything eligible"; targetBytes <= 0 evicts nothing. With dryRun nothing is deleted or renamed.
Per-item failures are aggregated into the error, not fatal: the pass continues and each item retries next pass. Passes are serialized. An incomplete record or bundle-spec enumeration skips the pass entirely — refcounts and roots from partial data would retire layers that unread records still reference or running actors still mount.
func (*Store) InUse ¶
InUse scans the actors directory for bundle overlay specs and returns the images and layers referenced by actors placed on this node. Bundles exist exactly while an actor runs or transitions here (spec written before any mount, deleted after unmount), so the scan protects actively mounted images via the same authority that hands out mounts. Leftover bundles from crashed actors over-pin until wiped.
A non-nil error means the root set may be incomplete: an unreadable actors dir, bundles dir, or spec. Deleting callers must then do nothing — a missing root fails toward retiring a running actor's layers, and for a long-running actor the spec is the only protection (its record mtime can be arbitrarily old, so min-age would not save it). A missing dir or spec file is not an error: no actor was ever placed, the actor is torn down, or the bundle predates its spec write.
func (*Store) RecoverOrphans ¶
func (s *Store) RecoverOrphans(ctx context.Context) (EvictStats, error)
RecoverOrphans reclaims layer dirs that no image record references. Called once from New, before the store serves — the one moment the scan is race-free: no pull is in flight, so a layer without a record is definitionally garbage. Orphans cannot arise in normal operation (pull writes the record first; eviction retires layers in the pass that drops their records): this reaps crash debris and operator damage, the accepted alternative to an fsck against a live pool every pass — mid-life debris leaks until the next restart, logged.
Skipped entirely (ERROR) when the record or bundle-spec enumeration is incomplete: refcounts from partial data make referenced layers look like garbage, and a missing spec root would sweep a mounted layer. Bundle-spec roots and min-age still veto.