2021-05-26 12:22:31 -05:00
|
|
|
// Package common ...
|
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2021-12-13 14:23:31 -05:00
|
|
|
goerrors "errors"
|
2022-02-20 20:32:44 -05:00
|
|
|
"fmt"
|
2021-05-26 12:22:31 -05:00
|
|
|
"path"
|
2022-02-01 21:02:05 -05:00
|
|
|
"strconv"
|
2021-05-26 12:22:31 -05:00
|
|
|
"strings"
|
2021-01-25 13:04:03 -05:00
|
|
|
"time"
|
2021-05-26 12:22:31 -05:00
|
|
|
|
|
|
|
v1 "github.com/google/go-containerregistry/pkg/v1"
|
2021-01-25 13:04:03 -05:00
|
|
|
"github.com/google/go-containerregistry/pkg/v1/types"
|
2022-07-15 06:10:51 -05:00
|
|
|
notreg "github.com/notaryproject/notation/pkg/registry"
|
2021-05-26 12:22:31 -05:00
|
|
|
godigest "github.com/opencontainers/go-digest"
|
|
|
|
ispec "github.com/opencontainers/image-spec/specs-go/v1"
|
2021-12-03 22:50:58 -05:00
|
|
|
"zotregistry.io/zot/errors"
|
|
|
|
"zotregistry.io/zot/pkg/log"
|
|
|
|
"zotregistry.io/zot/pkg/storage"
|
2021-05-26 12:22:31 -05:00
|
|
|
)
|
|
|
|
|
2022-07-12 07:58:04 -05:00
|
|
|
type OciLayoutUtils interface {
|
|
|
|
GetImageManifests(image string) ([]ispec.Descriptor, error)
|
|
|
|
GetImageBlobManifest(imageDir string, digest godigest.Digest) (v1.Manifest, error)
|
|
|
|
GetImageInfo(imageDir string, hash v1.Hash) (ispec.Image, error)
|
|
|
|
IsValidImageFormat(image string) (bool, error)
|
|
|
|
GetImageTagsWithTimestamp(repo string) ([]TagInfo, error)
|
2022-07-19 08:16:15 -05:00
|
|
|
GetImageLastUpdated(imageInfo ispec.Image) time.Time
|
|
|
|
GetImagePlatform(imageInfo ispec.Image) (string, string)
|
|
|
|
GetImageVendor(imageInfo ispec.Image) string
|
2022-07-12 07:58:04 -05:00
|
|
|
GetImageManifestSize(repo string, manifestDigest godigest.Digest) int64
|
2022-07-22 15:01:38 -05:00
|
|
|
GetRepoLastUpdated(repo string) (TagInfo, error)
|
2022-07-12 07:58:04 -05:00
|
|
|
GetExpandedRepoInfo(name string) (RepoInfo, error)
|
2022-07-19 08:16:15 -05:00
|
|
|
GetImageConfigInfo(repo string, manifestDigest godigest.Digest) (ispec.Image, error)
|
2022-08-02 10:58:30 -05:00
|
|
|
CheckManifestSignature(name string, digest godigest.Digest) bool
|
2022-07-12 07:58:04 -05:00
|
|
|
}
|
|
|
|
|
2021-01-25 13:04:03 -05:00
|
|
|
// OciLayoutInfo ...
|
2022-07-12 07:58:04 -05:00
|
|
|
type BaseOciLayoutUtils struct {
|
2021-09-30 08:27:13 -05:00
|
|
|
Log log.Logger
|
|
|
|
StoreController storage.StoreController
|
2021-05-26 12:22:31 -05:00
|
|
|
}
|
|
|
|
|
2022-02-01 21:02:05 -05:00
|
|
|
type RepoInfo struct {
|
|
|
|
Manifests []Manifest `json:"manifests"`
|
2022-07-29 09:51:10 -05:00
|
|
|
Summary RepoSummary
|
2022-02-01 21:02:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
type Manifest struct {
|
|
|
|
Tag string `json:"tag"`
|
|
|
|
Digest string `json:"digest"`
|
|
|
|
IsSigned bool `json:"isSigned"`
|
|
|
|
Layers []Layer `json:"layers"`
|
|
|
|
}
|
|
|
|
|
2022-07-29 09:51:10 -05:00
|
|
|
type RepoSummary struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
LastUpdated time.Time `json:"lastUpdated"`
|
|
|
|
Size string `json:"size"`
|
|
|
|
Platforms []OsArch `json:"platforms"`
|
|
|
|
Vendors []string `json:"vendors"`
|
|
|
|
Score int `json:"score"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type OsArch struct {
|
|
|
|
Os string `json:"os"`
|
|
|
|
Arch string `json:"arch"`
|
|
|
|
}
|
|
|
|
|
2022-02-01 21:02:05 -05:00
|
|
|
type Layer struct {
|
|
|
|
Size string `json:"size"`
|
|
|
|
Digest string `json:"digest"`
|
|
|
|
}
|
|
|
|
|
2022-07-12 07:58:04 -05:00
|
|
|
// NewBaseOciLayoutUtils initializes a new OciLayoutUtils object.
|
|
|
|
func NewBaseOciLayoutUtils(storeController storage.StoreController, log log.Logger) *BaseOciLayoutUtils {
|
|
|
|
return &BaseOciLayoutUtils{Log: log, StoreController: storeController}
|
2021-05-26 12:22:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Below method will return image path including root dir, root dir is determined by splitting.
|
2022-07-12 07:58:04 -05:00
|
|
|
func (olu BaseOciLayoutUtils) GetImageManifests(image string) ([]ispec.Descriptor, error) {
|
2021-09-30 08:27:13 -05:00
|
|
|
imageStore := olu.StoreController.GetImageStore(image)
|
2021-05-26 12:22:31 -05:00
|
|
|
|
2021-12-13 14:23:31 -05:00
|
|
|
buf, err := imageStore.GetIndexContent(image)
|
2021-05-26 12:22:31 -05:00
|
|
|
if err != nil {
|
2021-09-30 08:27:13 -05:00
|
|
|
if goerrors.Is(errors.ErrRepoNotFound, err) {
|
2021-05-26 12:22:31 -05:00
|
|
|
olu.Log.Error().Err(err).Msg("index.json doesn't exist")
|
|
|
|
|
|
|
|
return nil, errors.ErrRepoNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
olu.Log.Error().Err(err).Msg("unable to open index.json")
|
|
|
|
|
|
|
|
return nil, errors.ErrRepoNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
var index ispec.Index
|
|
|
|
|
|
|
|
if err := json.Unmarshal(buf, &index); err != nil {
|
2021-09-30 08:27:13 -05:00
|
|
|
olu.Log.Error().Err(err).Str("dir", path.Join(imageStore.RootDir(), image)).Msg("invalid JSON")
|
2021-12-13 14:23:31 -05:00
|
|
|
|
2021-05-26 12:22:31 -05:00
|
|
|
return nil, errors.ErrRepoNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
return index.Manifests, nil
|
|
|
|
}
|
|
|
|
|
2021-09-30 08:27:13 -05:00
|
|
|
//nolint: interfacer
|
2022-07-12 07:58:04 -05:00
|
|
|
func (olu BaseOciLayoutUtils) GetImageBlobManifest(imageDir string, digest godigest.Digest) (v1.Manifest, error) {
|
2021-05-26 12:22:31 -05:00
|
|
|
var blobIndex v1.Manifest
|
|
|
|
|
2021-09-30 08:27:13 -05:00
|
|
|
imageStore := olu.StoreController.GetImageStore(imageDir)
|
|
|
|
|
|
|
|
blobBuf, err := imageStore.GetBlobContent(imageDir, digest.String())
|
2021-05-26 12:22:31 -05:00
|
|
|
if err != nil {
|
|
|
|
olu.Log.Error().Err(err).Msg("unable to open image metadata file")
|
|
|
|
|
|
|
|
return blobIndex, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := json.Unmarshal(blobBuf, &blobIndex); err != nil {
|
|
|
|
olu.Log.Error().Err(err).Msg("unable to marshal blob index")
|
|
|
|
|
|
|
|
return blobIndex, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return blobIndex, nil
|
|
|
|
}
|
|
|
|
|
2021-09-30 08:27:13 -05:00
|
|
|
//nolint: interfacer
|
2022-07-12 07:58:04 -05:00
|
|
|
func (olu BaseOciLayoutUtils) GetImageInfo(imageDir string, hash v1.Hash) (ispec.Image, error) {
|
2021-05-26 12:22:31 -05:00
|
|
|
var imageInfo ispec.Image
|
|
|
|
|
2021-09-30 08:27:13 -05:00
|
|
|
imageStore := olu.StoreController.GetImageStore(imageDir)
|
|
|
|
|
|
|
|
blobBuf, err := imageStore.GetBlobContent(imageDir, hash.String())
|
2021-05-26 12:22:31 -05:00
|
|
|
if err != nil {
|
|
|
|
olu.Log.Error().Err(err).Msg("unable to open image layers file")
|
|
|
|
|
|
|
|
return imageInfo, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := json.Unmarshal(blobBuf, &imageInfo); err != nil {
|
|
|
|
olu.Log.Error().Err(err).Msg("unable to marshal blob index")
|
|
|
|
|
|
|
|
return imageInfo, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return imageInfo, err
|
|
|
|
}
|
|
|
|
|
2022-07-12 07:58:04 -05:00
|
|
|
func (olu BaseOciLayoutUtils) IsValidImageFormat(image string) (bool, error) {
|
2021-09-30 08:27:13 -05:00
|
|
|
imageDir, inputTag := GetImageDirAndTag(image)
|
2021-01-25 13:04:03 -05:00
|
|
|
|
|
|
|
manifests, err := olu.GetImageManifests(imageDir)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
2021-12-13 14:23:31 -05:00
|
|
|
for _, manifest := range manifests {
|
|
|
|
tag, ok := manifest.Annotations[ispec.AnnotationRefName]
|
2021-01-25 13:04:03 -05:00
|
|
|
|
|
|
|
if ok && inputTag != "" && tag != inputTag {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2021-12-13 14:23:31 -05:00
|
|
|
blobManifest, err := olu.GetImageBlobManifest(imageDir, manifest.Digest)
|
2021-01-25 13:04:03 -05:00
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
imageLayers := blobManifest.Layers
|
|
|
|
|
|
|
|
for _, imageLayer := range imageLayers {
|
|
|
|
switch imageLayer.MediaType {
|
|
|
|
case types.OCILayer, types.DockerLayer:
|
|
|
|
return true, nil
|
|
|
|
|
|
|
|
default:
|
|
|
|
olu.Log.Debug().Msg("image media type not supported for scanning")
|
2021-12-13 14:23:31 -05:00
|
|
|
|
2021-01-25 13:04:03 -05:00
|
|
|
return false, errors.ErrScanNotSupported
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetImageTagsWithTimestamp returns a list of image tags with timestamp available in the specified repository.
|
2022-07-12 07:58:04 -05:00
|
|
|
func (olu BaseOciLayoutUtils) GetImageTagsWithTimestamp(repo string) ([]TagInfo, error) {
|
2021-01-25 13:04:03 -05:00
|
|
|
tagsInfo := make([]TagInfo, 0)
|
|
|
|
|
|
|
|
manifests, err := olu.GetImageManifests(repo)
|
|
|
|
if err != nil {
|
|
|
|
olu.Log.Error().Err(err).Msg("unable to read image manifests")
|
|
|
|
|
|
|
|
return tagsInfo, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, manifest := range manifests {
|
|
|
|
digest := manifest.Digest
|
|
|
|
|
2021-12-13 14:23:31 -05:00
|
|
|
val, ok := manifest.Annotations[ispec.AnnotationRefName]
|
2021-01-25 13:04:03 -05:00
|
|
|
if ok {
|
|
|
|
imageBlobManifest, err := olu.GetImageBlobManifest(repo, digest)
|
|
|
|
if err != nil {
|
|
|
|
olu.Log.Error().Err(err).Msg("unable to read image blob manifest")
|
|
|
|
|
|
|
|
return tagsInfo, err
|
|
|
|
}
|
|
|
|
|
|
|
|
imageInfo, err := olu.GetImageInfo(repo, imageBlobManifest.Config.Digest)
|
|
|
|
if err != nil {
|
|
|
|
olu.Log.Error().Err(err).Msg("unable to read image info")
|
|
|
|
|
|
|
|
return tagsInfo, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var timeStamp time.Time
|
|
|
|
|
|
|
|
if len(imageInfo.History) != 0 {
|
|
|
|
timeStamp = *imageInfo.History[0].Created
|
|
|
|
} else {
|
|
|
|
timeStamp = time.Time{}
|
|
|
|
}
|
2021-05-26 12:22:31 -05:00
|
|
|
|
2021-12-13 14:23:31 -05:00
|
|
|
tagsInfo = append(tagsInfo, TagInfo{Name: val, Timestamp: timeStamp, Digest: digest.String()})
|
2021-05-26 12:22:31 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-25 13:04:03 -05:00
|
|
|
return tagsInfo, nil
|
2021-05-26 12:22:31 -05:00
|
|
|
}
|
|
|
|
|
2022-02-20 20:32:44 -05:00
|
|
|
// check notary signature corresponding to repo name, manifest digest and mediatype.
|
2022-07-12 07:58:04 -05:00
|
|
|
func (olu BaseOciLayoutUtils) checkNotarySignature(name string, digest godigest.Digest) bool {
|
2022-02-20 20:32:44 -05:00
|
|
|
imageStore := olu.StoreController.GetImageStore(name)
|
2022-07-15 06:10:51 -05:00
|
|
|
mediaType := notreg.ArtifactTypeNotation
|
2022-02-20 20:32:44 -05:00
|
|
|
|
2022-07-15 06:10:51 -05:00
|
|
|
_, err := imageStore.GetReferrers(name, digest.String(), mediaType)
|
2022-02-20 20:32:44 -05:00
|
|
|
if err != nil {
|
2022-07-15 06:10:51 -05:00
|
|
|
olu.Log.Info().Err(err).Str("repo", name).Str("digest",
|
|
|
|
digest.String()).Str("mediatype", mediaType).Msg("invalid notary signature")
|
2022-02-20 20:32:44 -05:00
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// check cosign signature corresponding to manifest.
|
2022-07-12 07:58:04 -05:00
|
|
|
func (olu BaseOciLayoutUtils) checkCosignSignature(name string, digest godigest.Digest) bool {
|
2022-02-20 20:32:44 -05:00
|
|
|
imageStore := olu.StoreController.GetImageStore(name)
|
|
|
|
|
|
|
|
// if manifest is signed using cosign mechanism, cosign adds a new manifest.
|
|
|
|
// new manifest is tagged as sha256-<manifest-digest>.sig.
|
2022-07-15 06:10:51 -05:00
|
|
|
reference := fmt.Sprintf("sha256-%s.sig", digest.Encoded())
|
2022-02-20 20:32:44 -05:00
|
|
|
|
|
|
|
_, _, _, err := imageStore.GetImageManifest(name, reference) // nolint: dogsled
|
|
|
|
if err != nil {
|
2022-07-15 06:10:51 -05:00
|
|
|
olu.Log.Info().Err(err).Str("repo", name).Str("digest",
|
|
|
|
digest.String()).Msg("invalid cosign signature")
|
2022-02-20 20:32:44 -05:00
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// checks if manifest is signed or not
|
|
|
|
// checks for notary or cosign signature
|
|
|
|
// if cosign signature found it does not looks for notary signature.
|
2022-08-02 10:58:30 -05:00
|
|
|
func (olu BaseOciLayoutUtils) CheckManifestSignature(name string, digest godigest.Digest) bool {
|
2022-02-20 20:32:44 -05:00
|
|
|
if !olu.checkCosignSignature(name, digest) {
|
2022-07-15 06:10:51 -05:00
|
|
|
return olu.checkNotarySignature(name, digest)
|
2022-02-20 20:32:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2022-07-19 08:16:15 -05:00
|
|
|
func (olu BaseOciLayoutUtils) GetImageLastUpdated(imageInfo ispec.Image) time.Time {
|
2022-07-12 07:58:04 -05:00
|
|
|
var timeStamp time.Time
|
|
|
|
|
|
|
|
if len(imageInfo.History) != 0 {
|
|
|
|
timeStamp = *imageInfo.History[0].Created
|
|
|
|
} else {
|
|
|
|
timeStamp = time.Time{}
|
|
|
|
}
|
|
|
|
|
|
|
|
return timeStamp
|
|
|
|
}
|
|
|
|
|
2022-07-19 08:16:15 -05:00
|
|
|
func (olu BaseOciLayoutUtils) GetImagePlatform(imageConfig ispec.Image) (
|
2022-07-12 07:58:04 -05:00
|
|
|
string, string,
|
|
|
|
) {
|
|
|
|
return imageConfig.OS, imageConfig.Architecture
|
|
|
|
}
|
|
|
|
|
2022-07-19 08:16:15 -05:00
|
|
|
func (olu BaseOciLayoutUtils) GetImageConfigInfo(repo string, manifestDigest godigest.Digest) (ispec.Image, error) {
|
2022-07-12 07:58:04 -05:00
|
|
|
imageBlobManifest, err := olu.GetImageBlobManifest(repo, manifestDigest)
|
|
|
|
if err != nil {
|
2022-07-19 08:16:15 -05:00
|
|
|
return ispec.Image{}, err
|
2022-07-12 07:58:04 -05:00
|
|
|
}
|
|
|
|
|
2022-07-19 08:16:15 -05:00
|
|
|
imageInfo, err := olu.GetImageInfo(repo, imageBlobManifest.Config.Digest)
|
2022-07-12 07:58:04 -05:00
|
|
|
if err != nil {
|
2022-07-19 08:16:15 -05:00
|
|
|
return ispec.Image{}, err
|
2022-07-12 07:58:04 -05:00
|
|
|
}
|
|
|
|
|
2022-07-19 08:16:15 -05:00
|
|
|
return imageInfo, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (olu BaseOciLayoutUtils) GetImageVendor(imageConfig ispec.Image) string {
|
2022-07-12 07:58:04 -05:00
|
|
|
return imageConfig.Config.Labels["vendor"]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (olu BaseOciLayoutUtils) GetImageManifestSize(repo string, manifestDigest godigest.Digest) int64 {
|
2022-07-20 04:30:34 -05:00
|
|
|
imageStore := olu.StoreController.GetImageStore(repo)
|
|
|
|
|
|
|
|
manifestBlob, err := imageStore.GetBlobContent(repo, manifestDigest.String())
|
2022-07-12 07:58:04 -05:00
|
|
|
if err != nil {
|
2022-07-20 04:30:34 -05:00
|
|
|
olu.Log.Error().Err(err).Msg("error when getting manifest blob content")
|
2022-07-12 07:58:04 -05:00
|
|
|
|
2022-07-20 04:30:34 -05:00
|
|
|
return int64(len(manifestBlob))
|
2022-07-12 07:58:04 -05:00
|
|
|
}
|
|
|
|
|
2022-07-20 04:30:34 -05:00
|
|
|
return int64(len(manifestBlob))
|
2022-07-12 07:58:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (olu BaseOciLayoutUtils) GetImageConfigSize(repo string, manifestDigest godigest.Digest) int64 {
|
|
|
|
imageBlobManifest, err := olu.GetImageBlobManifest(repo, manifestDigest)
|
|
|
|
if err != nil {
|
|
|
|
olu.Log.Error().Err(err).Msg("can't get image blob manifest")
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2022-07-20 04:30:34 -05:00
|
|
|
return imageBlobManifest.Config.Size
|
2022-07-12 07:58:04 -05:00
|
|
|
}
|
|
|
|
|
2022-07-22 15:01:38 -05:00
|
|
|
func (olu BaseOciLayoutUtils) GetRepoLastUpdated(repo string) (TagInfo, error) {
|
2022-07-12 07:58:04 -05:00
|
|
|
tagsInfo, err := olu.GetImageTagsWithTimestamp(repo)
|
|
|
|
if err != nil || len(tagsInfo) == 0 {
|
2022-07-22 15:01:38 -05:00
|
|
|
return TagInfo{}, err
|
2022-07-12 07:58:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
latestTag := GetLatestTag(tagsInfo)
|
|
|
|
|
2022-07-22 15:01:38 -05:00
|
|
|
return latestTag, nil
|
2022-07-12 07:58:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (olu BaseOciLayoutUtils) GetExpandedRepoInfo(name string) (RepoInfo, error) {
|
2022-02-01 21:02:05 -05:00
|
|
|
repo := RepoInfo{}
|
|
|
|
|
2022-07-29 09:51:10 -05:00
|
|
|
repoBlob2Size := make(map[string]int64, 10)
|
|
|
|
|
|
|
|
// made up of all manifests, configs and image layers
|
|
|
|
repoSize := int64(0)
|
|
|
|
|
2022-02-01 21:02:05 -05:00
|
|
|
manifests := make([]Manifest, 0)
|
|
|
|
|
2022-07-29 09:51:10 -05:00
|
|
|
tagsInfo, err := olu.GetImageTagsWithTimestamp(name)
|
|
|
|
if err != nil {
|
|
|
|
olu.Log.Error().Err(err).Msgf("can't get tags info for repo: %s", name)
|
|
|
|
}
|
|
|
|
|
2022-02-01 21:02:05 -05:00
|
|
|
manifestList, err := olu.GetImageManifests(name)
|
|
|
|
if err != nil {
|
|
|
|
olu.Log.Error().Err(err).Msg("error getting image manifests")
|
|
|
|
|
|
|
|
return RepoInfo{}, err
|
|
|
|
}
|
|
|
|
|
2022-07-29 09:51:10 -05:00
|
|
|
repoPlatforms := make([]OsArch, 0, len(tagsInfo))
|
|
|
|
repoVendors := make([]string, 0, len(manifestList))
|
|
|
|
|
2022-02-20 20:32:44 -05:00
|
|
|
for _, man := range manifestList {
|
2022-02-01 21:02:05 -05:00
|
|
|
manifestInfo := Manifest{}
|
|
|
|
|
2022-02-20 20:32:44 -05:00
|
|
|
manifestInfo.Digest = man.Digest.Encoded()
|
2022-02-01 21:02:05 -05:00
|
|
|
|
|
|
|
manifestInfo.IsSigned = false
|
|
|
|
|
2022-02-20 20:32:44 -05:00
|
|
|
tag, ok := man.Annotations[ispec.AnnotationRefName]
|
2022-02-01 21:02:05 -05:00
|
|
|
if !ok {
|
|
|
|
tag = "latest"
|
|
|
|
}
|
|
|
|
|
|
|
|
manifestInfo.Tag = tag
|
|
|
|
|
2022-02-20 20:32:44 -05:00
|
|
|
manifest, err := olu.GetImageBlobManifest(name, man.Digest)
|
2022-02-01 21:02:05 -05:00
|
|
|
if err != nil {
|
|
|
|
olu.Log.Error().Err(err).Msg("error getting image manifest blob")
|
|
|
|
|
|
|
|
return RepoInfo{}, err
|
|
|
|
}
|
|
|
|
|
2022-08-02 10:58:30 -05:00
|
|
|
manifestInfo.IsSigned = olu.CheckManifestSignature(name, man.Digest)
|
2022-02-20 20:32:44 -05:00
|
|
|
|
2022-07-29 09:51:10 -05:00
|
|
|
manifestSize := olu.GetImageManifestSize(name, man.Digest)
|
|
|
|
olu.Log.Debug().Msg(fmt.Sprintf("%v", man.Digest))
|
|
|
|
configSize := manifest.Config.Size
|
|
|
|
|
|
|
|
repoBlob2Size[man.Digest.String()] = manifestSize
|
|
|
|
repoBlob2Size[manifest.Config.Digest.Hex] = configSize
|
|
|
|
|
|
|
|
imageConfigInfo, err := olu.GetImageConfigInfo(name, man.Digest)
|
|
|
|
if err != nil {
|
|
|
|
olu.Log.Error().Err(err).Msgf("can't retrieve config info for the image %s %s", name, man.Digest)
|
|
|
|
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
vendor := olu.GetImageVendor(imageConfigInfo)
|
|
|
|
os, arch := olu.GetImagePlatform(imageConfigInfo)
|
|
|
|
osArch := OsArch{
|
|
|
|
Os: os,
|
|
|
|
Arch: arch,
|
|
|
|
}
|
|
|
|
|
|
|
|
repoPlatforms = append(repoPlatforms, osArch)
|
|
|
|
repoVendors = append(repoVendors, vendor)
|
|
|
|
|
2022-02-01 21:02:05 -05:00
|
|
|
layers := make([]Layer, 0)
|
|
|
|
|
|
|
|
for _, layer := range manifest.Layers {
|
|
|
|
layerInfo := Layer{}
|
|
|
|
|
|
|
|
layerInfo.Digest = layer.Digest.Hex
|
|
|
|
|
2022-07-29 09:51:10 -05:00
|
|
|
repoBlob2Size[layerInfo.Digest] = layer.Size
|
|
|
|
|
2022-02-01 21:02:05 -05:00
|
|
|
layerInfo.Size = strconv.FormatInt(layer.Size, 10)
|
|
|
|
|
|
|
|
layers = append(layers, layerInfo)
|
|
|
|
}
|
|
|
|
|
|
|
|
manifestInfo.Layers = layers
|
|
|
|
|
|
|
|
manifests = append(manifests, manifestInfo)
|
|
|
|
}
|
|
|
|
|
|
|
|
repo.Manifests = manifests
|
|
|
|
|
2022-07-29 09:51:10 -05:00
|
|
|
lastUpdate, err := olu.GetRepoLastUpdated(name)
|
|
|
|
if err != nil {
|
|
|
|
olu.Log.Error().Err(err).Msgf("can't find latest update timestamp for repo: %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
for blob := range repoBlob2Size {
|
|
|
|
repoSize += repoBlob2Size[blob]
|
|
|
|
}
|
|
|
|
|
|
|
|
size := strconv.FormatInt(repoSize, 10)
|
|
|
|
|
|
|
|
summary := RepoSummary{
|
|
|
|
Name: name,
|
|
|
|
LastUpdated: lastUpdate.Timestamp,
|
|
|
|
Size: size,
|
|
|
|
Platforms: repoPlatforms,
|
|
|
|
Vendors: repoVendors,
|
|
|
|
Score: -1,
|
|
|
|
}
|
|
|
|
|
|
|
|
repo.Summary = summary
|
|
|
|
|
2022-02-01 21:02:05 -05:00
|
|
|
return repo, nil
|
|
|
|
}
|
|
|
|
|
2021-05-26 12:22:31 -05:00
|
|
|
func GetImageDirAndTag(imageName string) (string, string) {
|
|
|
|
var imageDir string
|
|
|
|
|
|
|
|
var imageTag string
|
|
|
|
|
|
|
|
if strings.Contains(imageName, ":") {
|
|
|
|
splitImageName := strings.Split(imageName, ":")
|
|
|
|
imageDir = splitImageName[0]
|
|
|
|
imageTag = splitImageName[1]
|
|
|
|
} else {
|
|
|
|
imageDir = imageName
|
|
|
|
}
|
|
|
|
|
|
|
|
return imageDir, imageTag
|
|
|
|
}
|