2015-06-01 19:42:27 -04:00
|
|
|
package chrootarchive
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2016-10-20 19:40:59 -04:00
|
|
|
"io"
|
2015-06-01 19:42:27 -04:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"github.com/docker/docker/pkg/archive"
|
2015-08-24 17:07:22 -04:00
|
|
|
"github.com/docker/docker/pkg/longpath"
|
2015-06-01 19:42:27 -04:00
|
|
|
)
|
|
|
|
|
2015-07-30 16:04:36 -04:00
|
|
|
// applyLayerHandler parses a diff in the standard layer format from `layer`, and
|
2015-07-22 18:19:32 -04:00
|
|
|
// applies it to the directory `dest`. Returns the size in bytes of the
|
|
|
|
// contents of the layer.
|
2016-10-20 19:40:59 -04:00
|
|
|
func applyLayerHandler(dest string, layer io.Reader, options *archive.TarOptions, decompress bool) (size int64, err error) {
|
2015-06-01 19:42:27 -04:00
|
|
|
dest = filepath.Clean(dest)
|
2015-08-10 18:21:30 -04:00
|
|
|
|
|
|
|
// Ensure it is a Windows-style volume path
|
2015-08-24 17:07:22 -04:00
|
|
|
dest = longpath.AddPrefix(dest)
|
2015-08-10 18:21:30 -04:00
|
|
|
|
2015-07-29 23:08:51 -04:00
|
|
|
if decompress {
|
|
|
|
decompressed, err := archive.DecompressStream(layer)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
defer decompressed.Close()
|
|
|
|
|
|
|
|
layer = decompressed
|
2015-06-01 19:42:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
tmpDir, err := ioutil.TempDir(os.Getenv("temp"), "temp-docker-extract")
|
|
|
|
if err != nil {
|
|
|
|
return 0, fmt.Errorf("ApplyLayer failed to create temp-docker-extract under %s. %s", dest, err)
|
|
|
|
}
|
|
|
|
|
2015-10-08 11:51:41 -04:00
|
|
|
s, err := archive.UnpackLayer(dest, layer, nil)
|
2015-06-01 19:42:27 -04:00
|
|
|
os.RemoveAll(tmpDir)
|
|
|
|
if err != nil {
|
|
|
|
return 0, fmt.Errorf("ApplyLayer %s failed UnpackLayer to %s", err, dest)
|
|
|
|
}
|
|
|
|
|
|
|
|
return s, nil
|
|
|
|
}
|