mirror of
https://github.com/containers/podman.git
synced 2025-06-19 08:09:12 +08:00

libpod requires new buildah and container image versions to resolve bug #1640298 Signed-off-by: baude <bbaude@redhat.com>
271 lines
10 KiB
Go
271 lines
10 KiB
Go
package buildah
|
|
|
|
import (
|
|
"archive/tar"
|
|
"io"
|
|
"os"
|
|
"sync"
|
|
|
|
"github.com/containers/image/docker/reference"
|
|
"github.com/containers/image/pkg/sysregistries"
|
|
"github.com/containers/image/pkg/sysregistriesv2"
|
|
"github.com/containers/image/types"
|
|
"github.com/containers/storage"
|
|
"github.com/containers/storage/pkg/archive"
|
|
"github.com/containers/storage/pkg/chrootarchive"
|
|
"github.com/containers/storage/pkg/idtools"
|
|
"github.com/containers/storage/pkg/reexec"
|
|
rspec "github.com/opencontainers/runtime-spec/specs-go"
|
|
"github.com/opencontainers/selinux/go-selinux"
|
|
"github.com/opencontainers/selinux/go-selinux/label"
|
|
"github.com/pkg/errors"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
// InitReexec is a wrapper for reexec.Init(). It should be called at
|
|
// the start of main(), and if it returns true, main() should return
|
|
// immediately.
|
|
func InitReexec() bool {
|
|
return reexec.Init()
|
|
}
|
|
|
|
func copyStringStringMap(m map[string]string) map[string]string {
|
|
n := map[string]string{}
|
|
for k, v := range m {
|
|
n[k] = v
|
|
}
|
|
return n
|
|
}
|
|
|
|
func copyStringSlice(s []string) []string {
|
|
t := make([]string, len(s))
|
|
copy(t, s)
|
|
return t
|
|
}
|
|
|
|
func convertStorageIDMaps(UIDMap, GIDMap []idtools.IDMap) ([]rspec.LinuxIDMapping, []rspec.LinuxIDMapping) {
|
|
uidmap := make([]rspec.LinuxIDMapping, 0, len(UIDMap))
|
|
gidmap := make([]rspec.LinuxIDMapping, 0, len(GIDMap))
|
|
for _, m := range UIDMap {
|
|
uidmap = append(uidmap, rspec.LinuxIDMapping{
|
|
HostID: uint32(m.HostID),
|
|
ContainerID: uint32(m.ContainerID),
|
|
Size: uint32(m.Size),
|
|
})
|
|
}
|
|
for _, m := range GIDMap {
|
|
gidmap = append(gidmap, rspec.LinuxIDMapping{
|
|
HostID: uint32(m.HostID),
|
|
ContainerID: uint32(m.ContainerID),
|
|
Size: uint32(m.Size),
|
|
})
|
|
}
|
|
return uidmap, gidmap
|
|
}
|
|
|
|
func convertRuntimeIDMaps(UIDMap, GIDMap []rspec.LinuxIDMapping) ([]idtools.IDMap, []idtools.IDMap) {
|
|
uidmap := make([]idtools.IDMap, 0, len(UIDMap))
|
|
gidmap := make([]idtools.IDMap, 0, len(GIDMap))
|
|
for _, m := range UIDMap {
|
|
uidmap = append(uidmap, idtools.IDMap{
|
|
HostID: int(m.HostID),
|
|
ContainerID: int(m.ContainerID),
|
|
Size: int(m.Size),
|
|
})
|
|
}
|
|
for _, m := range GIDMap {
|
|
gidmap = append(gidmap, idtools.IDMap{
|
|
HostID: int(m.HostID),
|
|
ContainerID: int(m.ContainerID),
|
|
Size: int(m.Size),
|
|
})
|
|
}
|
|
return uidmap, gidmap
|
|
}
|
|
|
|
// copyFileWithTar returns a function which copies a single file from outside
|
|
// of any container into our working container, mapping permissions using the
|
|
// container's ID maps, possibly overridden using the passed-in chownOpts
|
|
func (b *Builder) copyFileWithTar(chownOpts *idtools.IDPair, hasher io.Writer) func(src, dest string) error {
|
|
convertedUIDMap, convertedGIDMap := convertRuntimeIDMaps(b.IDMappingOptions.UIDMap, b.IDMappingOptions.GIDMap)
|
|
untarMappings := idtools.NewIDMappingsFromMaps(convertedUIDMap, convertedGIDMap)
|
|
archiver := chrootarchive.NewArchiverWithChown(nil, chownOpts, untarMappings)
|
|
if hasher != nil {
|
|
originalUntar := archiver.Untar
|
|
archiver.Untar = func(tarArchive io.Reader, dest string, options *archive.TarOptions) error {
|
|
contentReader, contentWriter, err := os.Pipe()
|
|
if err != nil {
|
|
return errors.Wrapf(err, "error creating pipe extract data to %q", dest)
|
|
}
|
|
defer contentReader.Close()
|
|
defer contentWriter.Close()
|
|
var hashError error
|
|
var hashWorker sync.WaitGroup
|
|
hashWorker.Add(1)
|
|
go func() {
|
|
t := tar.NewReader(contentReader)
|
|
_, err := t.Next()
|
|
if err != nil {
|
|
hashError = err
|
|
}
|
|
if _, err = io.Copy(hasher, t); err != nil && err != io.EOF {
|
|
hashError = err
|
|
}
|
|
hashWorker.Done()
|
|
}()
|
|
if err = originalUntar(io.TeeReader(tarArchive, contentWriter), dest, options); err != nil {
|
|
err = errors.Wrapf(err, "error extracting data to %q while copying", dest)
|
|
}
|
|
hashWorker.Wait()
|
|
if err == nil {
|
|
err = errors.Wrapf(hashError, "error calculating digest of data for %q while copying", dest)
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
return archiver.CopyFileWithTar
|
|
}
|
|
|
|
// copyWithTar returns a function which copies a directory tree from outside of
|
|
// any container into our working container, mapping permissions using the
|
|
// container's ID maps, possibly overridden using the passed-in chownOpts
|
|
func (b *Builder) copyWithTar(chownOpts *idtools.IDPair, hasher io.Writer) func(src, dest string) error {
|
|
convertedUIDMap, convertedGIDMap := convertRuntimeIDMaps(b.IDMappingOptions.UIDMap, b.IDMappingOptions.GIDMap)
|
|
untarMappings := idtools.NewIDMappingsFromMaps(convertedUIDMap, convertedGIDMap)
|
|
archiver := chrootarchive.NewArchiverWithChown(nil, chownOpts, untarMappings)
|
|
if hasher != nil {
|
|
originalUntar := archiver.Untar
|
|
archiver.Untar = func(tarArchive io.Reader, dest string, options *archive.TarOptions) error {
|
|
return originalUntar(io.TeeReader(tarArchive, hasher), dest, options)
|
|
}
|
|
}
|
|
return archiver.CopyWithTar
|
|
}
|
|
|
|
// untarPath returns a function which extracts an archive in a specified
|
|
// location into our working container, mapping permissions using the
|
|
// container's ID maps, possibly overridden using the passed-in chownOpts
|
|
func (b *Builder) untarPath(chownOpts *idtools.IDPair, hasher io.Writer) func(src, dest string) error {
|
|
convertedUIDMap, convertedGIDMap := convertRuntimeIDMaps(b.IDMappingOptions.UIDMap, b.IDMappingOptions.GIDMap)
|
|
untarMappings := idtools.NewIDMappingsFromMaps(convertedUIDMap, convertedGIDMap)
|
|
archiver := chrootarchive.NewArchiverWithChown(nil, chownOpts, untarMappings)
|
|
if hasher != nil {
|
|
originalUntar := archiver.Untar
|
|
archiver.Untar = func(tarArchive io.Reader, dest string, options *archive.TarOptions) error {
|
|
return originalUntar(io.TeeReader(tarArchive, hasher), dest, options)
|
|
}
|
|
}
|
|
return archiver.UntarPath
|
|
}
|
|
|
|
// tarPath returns a function which creates an archive of a specified
|
|
// location in the container's filesystem, mapping permissions using the
|
|
// container's ID maps
|
|
func (b *Builder) tarPath() func(path string) (io.ReadCloser, error) {
|
|
convertedUIDMap, convertedGIDMap := convertRuntimeIDMaps(b.IDMappingOptions.UIDMap, b.IDMappingOptions.GIDMap)
|
|
tarMappings := idtools.NewIDMappingsFromMaps(convertedUIDMap, convertedGIDMap)
|
|
return func(path string) (io.ReadCloser, error) {
|
|
return archive.TarWithOptions(path, &archive.TarOptions{
|
|
Compression: archive.Uncompressed,
|
|
UIDMaps: tarMappings.UIDs(),
|
|
GIDMaps: tarMappings.GIDs(),
|
|
})
|
|
}
|
|
}
|
|
|
|
// isRegistryInsecure checks if the named registry is marked as not secure
|
|
func isRegistryInsecure(registry string, sc *types.SystemContext) (bool, error) {
|
|
registries, err := sysregistriesv2.GetRegistries(sc)
|
|
if err != nil {
|
|
return false, errors.Wrapf(err, "unable to parse the registries configuration (%s)", sysregistries.RegistriesConfPath(sc))
|
|
}
|
|
if reginfo := sysregistriesv2.FindRegistry(registry, registries); reginfo != nil {
|
|
if reginfo.Insecure {
|
|
logrus.Debugf("registry %q is marked insecure in registries configuration %q", registry, sysregistries.RegistriesConfPath(sc))
|
|
} else {
|
|
logrus.Debugf("registry %q is not marked insecure in registries configuration %q", registry, sysregistries.RegistriesConfPath(sc))
|
|
}
|
|
return reginfo.Insecure, nil
|
|
}
|
|
logrus.Debugf("registry %q is not listed in registries configuration %q, assuming it's secure", registry, sysregistries.RegistriesConfPath(sc))
|
|
return false, nil
|
|
}
|
|
|
|
// isRegistryBlocked checks if the named registry is marked as blocked
|
|
func isRegistryBlocked(registry string, sc *types.SystemContext) (bool, error) {
|
|
registries, err := sysregistriesv2.GetRegistries(sc)
|
|
if err != nil {
|
|
return false, errors.Wrapf(err, "unable to parse the registries configuration (%s)", sysregistries.RegistriesConfPath(sc))
|
|
}
|
|
if reginfo := sysregistriesv2.FindRegistry(registry, registries); reginfo != nil {
|
|
if reginfo.Blocked {
|
|
logrus.Debugf("registry %q is marked as blocked in registries configuration %q", registry, sysregistries.RegistriesConfPath(sc))
|
|
} else {
|
|
logrus.Debugf("registry %q is not marked as blocked in registries configuration %q", registry, sysregistries.RegistriesConfPath(sc))
|
|
}
|
|
return reginfo.Blocked, nil
|
|
}
|
|
logrus.Debugf("registry %q is not listed in registries configuration %q, assuming it's not blocked", registry, sysregistries.RegistriesConfPath(sc))
|
|
return false, nil
|
|
}
|
|
|
|
// isReferenceSomething checks if the registry part of a reference is insecure or blocked
|
|
func isReferenceSomething(ref types.ImageReference, sc *types.SystemContext, what func(string, *types.SystemContext) (bool, error)) (bool, error) {
|
|
if ref != nil && ref.DockerReference() != nil {
|
|
if named, ok := ref.DockerReference().(reference.Named); ok {
|
|
if domain := reference.Domain(named); domain != "" {
|
|
return what(domain, sc)
|
|
}
|
|
}
|
|
}
|
|
return false, nil
|
|
}
|
|
|
|
// isReferenceInsecure checks if the registry part of a reference is insecure
|
|
func isReferenceInsecure(ref types.ImageReference, sc *types.SystemContext) (bool, error) {
|
|
return isReferenceSomething(ref, sc, isRegistryInsecure)
|
|
}
|
|
|
|
// isReferenceBlocked checks if the registry part of a reference is blocked
|
|
func isReferenceBlocked(ref types.ImageReference, sc *types.SystemContext) (bool, error) {
|
|
if ref != nil && ref.Transport() != nil {
|
|
switch ref.Transport().Name() {
|
|
case "docker":
|
|
return isReferenceSomething(ref, sc, isRegistryBlocked)
|
|
}
|
|
}
|
|
return false, nil
|
|
}
|
|
|
|
// ReserveSELinuxLabels reads containers storage and reserves SELinux containers
|
|
// fall all existing buildah containers
|
|
func ReserveSELinuxLabels(store storage.Store, id string) error {
|
|
if selinux.GetEnabled() {
|
|
containers, err := store.Containers()
|
|
if err != nil {
|
|
return errors.Wrapf(err, "error getting list of containers")
|
|
}
|
|
|
|
for _, c := range containers {
|
|
if id == c.ID {
|
|
continue
|
|
} else {
|
|
b, err := OpenBuilder(store, c.ID)
|
|
if err != nil {
|
|
if os.IsNotExist(errors.Cause(err)) {
|
|
// Ignore not exist errors since containers probably created by other tool
|
|
// TODO, we need to read other containers json data to reserve their SELinux labels
|
|
continue
|
|
}
|
|
return err
|
|
}
|
|
// Prevent different containers from using same MCS label
|
|
if err := label.ReserveLabel(b.ProcessLabel); err != nil {
|
|
return errors.Wrapf(err, "error reserving SELinux label %q", b.ProcessLabel)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|