2018-09-05 14:54:38 -04:00
|
|
|
package wclayer
|
|
|
|
|
|
|
|
import (
|
2020-05-09 11:16:54 -04:00
|
|
|
"context"
|
|
|
|
"strings"
|
|
|
|
|
2018-09-05 14:54:38 -04:00
|
|
|
"github.com/Microsoft/hcsshim/internal/hcserror"
|
2020-05-09 11:16:54 -04:00
|
|
|
"github.com/Microsoft/hcsshim/internal/oc"
|
|
|
|
"go.opencensus.io/trace"
|
2018-09-05 14:54:38 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// CreateScratchLayer creates and populates new read-write layer for use by a container.
|
|
|
|
// This requires both the id of the direct parent layer, as well as the full list
|
|
|
|
// of paths to all parent layers up to the base (and including the direct parent
|
|
|
|
// whose id was provided).
|
2020-05-09 11:16:54 -04:00
|
|
|
func CreateScratchLayer(ctx context.Context, path string, parentLayerPaths []string) (err error) {
|
2019-02-28 13:16:30 -05:00
|
|
|
title := "hcsshim::CreateScratchLayer"
|
2020-05-09 11:16:54 -04:00
|
|
|
ctx, span := trace.StartSpan(ctx, title)
|
|
|
|
defer span.End()
|
|
|
|
defer func() { oc.SetSpanStatus(span, err) }()
|
|
|
|
span.AddAttributes(
|
|
|
|
trace.StringAttribute("path", path),
|
|
|
|
trace.StringAttribute("parentLayerPaths", strings.Join(parentLayerPaths, ", ")))
|
2018-09-05 14:54:38 -04:00
|
|
|
|
|
|
|
// Generate layer descriptors
|
2020-05-09 11:16:54 -04:00
|
|
|
layers, err := layerPathsToDescriptors(ctx, parentLayerPaths)
|
2018-09-05 14:54:38 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = createSandboxLayer(&stdDriverInfo, path, 0, layers)
|
|
|
|
if err != nil {
|
2019-02-28 13:16:30 -05:00
|
|
|
return hcserror.New(err, title+" - failed", "")
|
2018-09-05 14:54:38 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|