2021-10-05 04:12:22 -05:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
"strings"
|
2021-12-21 08:19:40 -05:00
|
|
|
"time"
|
2021-10-05 04:12:22 -05:00
|
|
|
|
|
|
|
"github.com/olekukonko/tablewriter"
|
|
|
|
godigest "github.com/opencontainers/go-digest"
|
|
|
|
ispec "github.com/opencontainers/image-spec/specs-go/v1"
|
|
|
|
"github.com/opencontainers/umoci"
|
|
|
|
"github.com/opencontainers/umoci/oci/casext"
|
|
|
|
"zotregistry.io/zot/errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
colImageNameIndex = iota
|
|
|
|
colTagIndex
|
|
|
|
colStatusIndex
|
|
|
|
colErrorIndex
|
|
|
|
|
|
|
|
imageNameWidth = 32
|
|
|
|
tagWidth = 24
|
|
|
|
statusWidth = 8
|
|
|
|
errorWidth = 8
|
|
|
|
)
|
|
|
|
|
|
|
|
type ScrubImageResult struct {
|
2021-12-13 14:23:31 -05:00
|
|
|
ImageName string `json:"imageName"`
|
2021-10-05 04:12:22 -05:00
|
|
|
Tag string `json:"tag"`
|
|
|
|
Status string `json:"status"`
|
|
|
|
Error string `json:"error"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ScrubResults struct {
|
2021-12-13 14:23:31 -05:00
|
|
|
ScrubResults []ScrubImageResult `json:"scrubResults"`
|
2021-10-05 04:12:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (sc StoreController) CheckAllBlobsIntegrity() (ScrubResults, error) {
|
|
|
|
results := ScrubResults{}
|
|
|
|
|
|
|
|
imageStoreList := make(map[string]ImageStore)
|
|
|
|
if sc.SubStore != nil {
|
|
|
|
imageStoreList = sc.SubStore
|
|
|
|
}
|
|
|
|
|
|
|
|
imageStoreList[""] = sc.DefaultStore
|
|
|
|
|
2021-12-13 14:23:31 -05:00
|
|
|
for _, imgStore := range imageStoreList {
|
2022-03-04 02:37:06 -05:00
|
|
|
imgStoreResults, err := CheckImageStoreBlobsIntegrity(imgStore)
|
2021-10-05 04:12:22 -05:00
|
|
|
if err != nil {
|
|
|
|
return results, err
|
|
|
|
}
|
|
|
|
|
2022-03-04 02:37:06 -05:00
|
|
|
results.ScrubResults = append(results.ScrubResults, imgStoreResults...)
|
|
|
|
}
|
|
|
|
|
|
|
|
return results, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func CheckImageStoreBlobsIntegrity(imgStore ImageStore) ([]ScrubImageResult, error) {
|
|
|
|
results := []ScrubImageResult{}
|
2021-10-05 04:12:22 -05:00
|
|
|
|
2022-03-04 02:37:06 -05:00
|
|
|
repos, err := imgStore.GetRepositories()
|
|
|
|
if err != nil {
|
|
|
|
return results, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, repo := range repos {
|
|
|
|
imageResults, err := checkRepo(repo, imgStore)
|
|
|
|
if err != nil {
|
|
|
|
return results, err
|
2021-10-05 04:12:22 -05:00
|
|
|
}
|
2022-03-04 02:37:06 -05:00
|
|
|
|
|
|
|
results = append(results, imageResults...)
|
2021-10-05 04:12:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return results, nil
|
|
|
|
}
|
|
|
|
|
2022-03-04 02:37:06 -05:00
|
|
|
func checkRepo(imageName string, imgStore ImageStore) ([]ScrubImageResult, error) {
|
2021-10-05 04:12:22 -05:00
|
|
|
results := []ScrubImageResult{}
|
|
|
|
|
2021-12-13 14:23:31 -05:00
|
|
|
dir := path.Join(imgStore.RootDir(), imageName)
|
|
|
|
if !imgStore.DirExists(dir) {
|
2021-10-05 04:12:22 -05:00
|
|
|
return results, errors.ErrRepoNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
ctxUmoci := context.Background()
|
|
|
|
|
|
|
|
oci, err := umoci.OpenLayout(dir)
|
|
|
|
if err != nil {
|
|
|
|
return results, err
|
|
|
|
}
|
|
|
|
defer oci.Close()
|
|
|
|
|
2021-12-21 08:19:40 -05:00
|
|
|
var lockLatency time.Time
|
|
|
|
|
|
|
|
imgStore.RLock(&lockLatency)
|
|
|
|
defer imgStore.RUnlock(&lockLatency)
|
2021-10-05 04:12:22 -05:00
|
|
|
|
|
|
|
buf, err := ioutil.ReadFile(path.Join(dir, "index.json"))
|
|
|
|
if err != nil {
|
|
|
|
return results, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var index ispec.Index
|
|
|
|
if err := json.Unmarshal(buf, &index); err != nil {
|
|
|
|
return results, errors.ErrRepoNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, m := range index.Manifests {
|
|
|
|
tag, ok := m.Annotations[ispec.AnnotationRefName]
|
|
|
|
if ok {
|
|
|
|
imageResult := checkIntegrity(ctxUmoci, imageName, tag, oci, m, dir)
|
|
|
|
results = append(results, imageResult)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return results, nil
|
|
|
|
}
|
|
|
|
|
2022-03-21 12:37:23 -05:00
|
|
|
func checkIntegrity(ctx context.Context, imageName, tagName string, oci casext.Engine, manifest ispec.Descriptor, dir string) ScrubImageResult { // nolint: lll
|
2021-10-05 04:12:22 -05:00
|
|
|
// check manifest and config
|
|
|
|
stat, err := umoci.Stat(ctx, oci, manifest)
|
|
|
|
|
|
|
|
imageRes := ScrubImageResult{}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
imageRes = getResult(imageName, tagName, err)
|
|
|
|
} else {
|
|
|
|
// check layers
|
|
|
|
for _, s := range stat.History {
|
|
|
|
layer := s.Layer
|
|
|
|
if layer == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// check layer
|
|
|
|
layerPath := path.Join(dir, "blobs", layer.Digest.Algorithm().String(), layer.Digest.Hex())
|
|
|
|
|
|
|
|
_, err = os.Stat(layerPath)
|
|
|
|
if err != nil {
|
|
|
|
imageRes = getResult(imageName, tagName, errors.ErrBlobNotFound)
|
2021-12-13 14:23:31 -05:00
|
|
|
|
2021-10-05 04:12:22 -05:00
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2021-12-13 14:23:31 -05:00
|
|
|
layerFh, err := os.Open(layerPath)
|
2021-10-05 04:12:22 -05:00
|
|
|
if err != nil {
|
|
|
|
imageRes = getResult(imageName, tagName, errors.ErrBlobNotFound)
|
2021-12-13 14:23:31 -05:00
|
|
|
|
2021-10-05 04:12:22 -05:00
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2021-12-13 14:23:31 -05:00
|
|
|
computedDigest, err := godigest.FromReader(layerFh)
|
|
|
|
layerFh.Close()
|
2021-10-05 04:12:22 -05:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
imageRes = getResult(imageName, tagName, errors.ErrBadBlobDigest)
|
2021-12-13 14:23:31 -05:00
|
|
|
|
2021-10-05 04:12:22 -05:00
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
if computedDigest != layer.Digest {
|
|
|
|
imageRes = getResult(imageName, tagName, errors.ErrBadBlobDigest)
|
2021-12-13 14:23:31 -05:00
|
|
|
|
2021-10-05 04:12:22 -05:00
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
imageRes = getResult(imageName, tagName, nil)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return imageRes
|
|
|
|
}
|
|
|
|
|
|
|
|
func getResult(imageName, tag string, err error) ScrubImageResult {
|
|
|
|
var status string
|
|
|
|
|
|
|
|
var errField string
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
status = "affected"
|
|
|
|
errField = err.Error()
|
|
|
|
} else {
|
|
|
|
status = "ok"
|
|
|
|
errField = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
return ScrubImageResult{
|
|
|
|
ImageName: imageName,
|
|
|
|
Tag: tag,
|
|
|
|
Status: status,
|
|
|
|
Error: errField,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func getScrubTableWriter(writer io.Writer) *tablewriter.Table {
|
|
|
|
table := tablewriter.NewWriter(writer)
|
|
|
|
|
|
|
|
table.SetAutoWrapText(false)
|
|
|
|
table.SetAutoFormatHeaders(true)
|
|
|
|
table.SetHeaderAlignment(tablewriter.ALIGN_LEFT)
|
|
|
|
table.SetAlignment(tablewriter.ALIGN_LEFT)
|
|
|
|
table.SetCenterSeparator("")
|
|
|
|
table.SetColumnSeparator("")
|
|
|
|
table.SetRowSeparator("")
|
|
|
|
table.SetHeaderLine(false)
|
|
|
|
table.SetBorder(false)
|
|
|
|
table.SetTablePadding(" ")
|
|
|
|
table.SetNoWhiteSpace(true)
|
|
|
|
table.SetColMinWidth(colImageNameIndex, imageNameWidth)
|
|
|
|
table.SetColMinWidth(colTagIndex, tagWidth)
|
|
|
|
table.SetColMinWidth(colStatusIndex, statusWidth)
|
|
|
|
table.SetColMinWidth(colErrorIndex, errorWidth)
|
|
|
|
|
|
|
|
return table
|
|
|
|
}
|
|
|
|
|
2021-12-13 14:23:31 -05:00
|
|
|
const tableCols = 4
|
|
|
|
|
2021-10-05 04:12:22 -05:00
|
|
|
func printScrubTableHeader(writer io.Writer) {
|
|
|
|
table := getScrubTableWriter(writer)
|
|
|
|
|
2021-12-13 14:23:31 -05:00
|
|
|
row := make([]string, tableCols)
|
2021-10-05 04:12:22 -05:00
|
|
|
|
|
|
|
row[colImageNameIndex] = "IMAGE NAME"
|
|
|
|
row[colTagIndex] = "TAG"
|
|
|
|
row[colStatusIndex] = "STATUS"
|
|
|
|
row[colErrorIndex] = "ERROR"
|
|
|
|
|
|
|
|
table.Append(row)
|
|
|
|
table.Render()
|
|
|
|
}
|
|
|
|
|
|
|
|
func printImageResult(imageResult ScrubImageResult) string {
|
|
|
|
var builder strings.Builder
|
|
|
|
|
|
|
|
table := getScrubTableWriter(&builder)
|
|
|
|
table.SetColMinWidth(colImageNameIndex, imageNameWidth)
|
|
|
|
table.SetColMinWidth(colTagIndex, tagWidth)
|
|
|
|
table.SetColMinWidth(colStatusIndex, statusWidth)
|
|
|
|
table.SetColMinWidth(colErrorIndex, errorWidth)
|
|
|
|
|
2021-12-13 14:23:31 -05:00
|
|
|
row := make([]string, tableCols)
|
2021-10-05 04:12:22 -05:00
|
|
|
|
|
|
|
row[colImageNameIndex] = imageResult.ImageName
|
|
|
|
row[colTagIndex] = imageResult.Tag
|
|
|
|
row[colStatusIndex] = imageResult.Status
|
|
|
|
row[colErrorIndex] = imageResult.Error
|
|
|
|
|
|
|
|
table.Append(row)
|
|
|
|
table.Render()
|
|
|
|
|
|
|
|
return builder.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (results ScrubResults) PrintScrubResults(resultWriter io.Writer) {
|
|
|
|
var builder strings.Builder
|
|
|
|
|
|
|
|
printScrubTableHeader(&builder)
|
|
|
|
fmt.Fprint(resultWriter, builder.String())
|
|
|
|
|
|
|
|
for _, res := range results.ScrubResults {
|
|
|
|
imageResult := printImageResult(res)
|
|
|
|
fmt.Fprint(resultWriter, imageResult)
|
|
|
|
}
|
|
|
|
}
|