2020-10-14 16:47:20 -05:00
|
|
|
// +build extended
|
|
|
|
|
2020-06-16 20:52:40 -05:00
|
|
|
package cli
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-07-06 17:44:32 -05:00
|
|
|
"errors"
|
2020-06-16 20:52:40 -05:00
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"net/url"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
2020-07-06 17:44:32 -05:00
|
|
|
"time"
|
2020-06-16 20:52:40 -05:00
|
|
|
|
|
|
|
"github.com/dustin/go-humanize"
|
|
|
|
jsoniter "github.com/json-iterator/go"
|
|
|
|
"github.com/olekukonko/tablewriter"
|
|
|
|
"gopkg.in/yaml.v2"
|
|
|
|
|
|
|
|
zotErrors "github.com/anuvu/zot/errors"
|
|
|
|
)
|
|
|
|
|
2020-07-06 17:44:32 -05:00
|
|
|
type SearchService interface {
|
2020-07-17 14:42:22 -05:00
|
|
|
getAllImages(ctx context.Context, config searchConfig, username, password string,
|
2020-07-06 17:44:32 -05:00
|
|
|
channel chan stringResult, wg *sync.WaitGroup)
|
2020-07-17 14:42:22 -05:00
|
|
|
getImageByName(ctx context.Context, config searchConfig, username, password, imageName string,
|
2020-07-06 17:44:32 -05:00
|
|
|
channel chan stringResult, wg *sync.WaitGroup)
|
|
|
|
getCveByImage(ctx context.Context, config searchConfig, username, password, imageName string,
|
|
|
|
channel chan stringResult, wg *sync.WaitGroup)
|
|
|
|
getImagesByCveID(ctx context.Context, config searchConfig, username, password, cveID string,
|
|
|
|
channel chan stringResult, wg *sync.WaitGroup)
|
|
|
|
getImageByNameAndCVEID(ctx context.Context, config searchConfig, username, password, imageName, cveID string,
|
|
|
|
channel chan stringResult, wg *sync.WaitGroup)
|
|
|
|
getFixedTagsForCVE(ctx context.Context, config searchConfig, username, password, imageName, cveID string,
|
|
|
|
channel chan stringResult, wg *sync.WaitGroup)
|
2020-06-16 20:52:40 -05:00
|
|
|
}
|
2020-07-06 17:44:32 -05:00
|
|
|
|
2020-06-16 20:52:40 -05:00
|
|
|
type searchService struct{}
|
|
|
|
|
2020-07-06 17:44:32 -05:00
|
|
|
func NewSearchService() SearchService {
|
2020-06-16 20:52:40 -05:00
|
|
|
return searchService{}
|
|
|
|
}
|
|
|
|
|
2020-07-17 14:42:22 -05:00
|
|
|
func (service searchService) getImageByName(ctx context.Context, config searchConfig,
|
2020-07-06 17:44:32 -05:00
|
|
|
username, password, imageName string, c chan stringResult, wg *sync.WaitGroup) {
|
2020-06-16 20:52:40 -05:00
|
|
|
defer wg.Done()
|
2020-07-17 14:42:22 -05:00
|
|
|
defer close(c)
|
2020-06-16 20:52:40 -05:00
|
|
|
|
2020-07-17 14:42:22 -05:00
|
|
|
var localWg sync.WaitGroup
|
|
|
|
p := newSmoothRateLimiter(ctx, &localWg, c)
|
2020-06-16 20:52:40 -05:00
|
|
|
|
2020-07-17 14:42:22 -05:00
|
|
|
localWg.Add(1)
|
2020-06-16 20:52:40 -05:00
|
|
|
|
|
|
|
go p.startRateLimiter()
|
2020-07-17 14:42:22 -05:00
|
|
|
localWg.Add(1)
|
2020-06-16 20:52:40 -05:00
|
|
|
|
2020-07-17 14:42:22 -05:00
|
|
|
go getImage(ctx, config, username, password, imageName, c, &localWg, p)
|
|
|
|
|
|
|
|
localWg.Wait()
|
2020-06-16 20:52:40 -05:00
|
|
|
}
|
|
|
|
|
2020-07-17 14:42:22 -05:00
|
|
|
func (service searchService) getAllImages(ctx context.Context, config searchConfig, username, password string,
|
2020-07-06 17:44:32 -05:00
|
|
|
c chan stringResult, wg *sync.WaitGroup) {
|
2020-06-16 20:52:40 -05:00
|
|
|
defer wg.Done()
|
2020-07-17 14:42:22 -05:00
|
|
|
defer close(c)
|
2020-06-16 20:52:40 -05:00
|
|
|
|
|
|
|
catalog := &catalogResponse{}
|
|
|
|
|
2020-07-17 14:42:22 -05:00
|
|
|
catalogEndPoint, err := combineServerAndEndpointURL(*config.servURL, "/v2/_catalog")
|
2020-06-16 20:52:40 -05:00
|
|
|
if err != nil {
|
|
|
|
if isContextDone(ctx) {
|
|
|
|
return
|
|
|
|
}
|
2020-07-06 17:44:32 -05:00
|
|
|
c <- stringResult{"", err}
|
2020-06-16 20:52:40 -05:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-07-17 14:42:22 -05:00
|
|
|
_, err = makeGETRequest(catalogEndPoint, username, password, *config.verifyTLS, catalog)
|
2020-06-16 20:52:40 -05:00
|
|
|
if err != nil {
|
|
|
|
if isContextDone(ctx) {
|
|
|
|
return
|
|
|
|
}
|
2020-07-06 17:44:32 -05:00
|
|
|
c <- stringResult{"", err}
|
2020-06-16 20:52:40 -05:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-07-17 14:42:22 -05:00
|
|
|
var localWg sync.WaitGroup
|
2020-06-16 20:52:40 -05:00
|
|
|
|
2020-07-17 14:42:22 -05:00
|
|
|
p := newSmoothRateLimiter(ctx, &localWg, c)
|
|
|
|
|
|
|
|
localWg.Add(1)
|
2020-06-16 20:52:40 -05:00
|
|
|
|
|
|
|
go p.startRateLimiter()
|
|
|
|
|
|
|
|
for _, repo := range catalog.Repositories {
|
2020-07-17 14:42:22 -05:00
|
|
|
localWg.Add(1)
|
2020-06-16 20:52:40 -05:00
|
|
|
|
2020-07-17 14:42:22 -05:00
|
|
|
go getImage(ctx, config, username, password, repo, c, &localWg, p)
|
2020-06-16 20:52:40 -05:00
|
|
|
}
|
2020-07-17 14:42:22 -05:00
|
|
|
|
|
|
|
localWg.Wait()
|
2020-06-16 20:52:40 -05:00
|
|
|
}
|
2020-07-17 14:42:22 -05:00
|
|
|
|
|
|
|
func getImage(ctx context.Context, config searchConfig, username, password, imageName string,
|
2020-07-06 17:44:32 -05:00
|
|
|
c chan stringResult, wg *sync.WaitGroup, pool *requestsPool) {
|
2020-06-16 20:52:40 -05:00
|
|
|
defer wg.Done()
|
|
|
|
|
2020-07-17 14:42:22 -05:00
|
|
|
tagListEndpoint, err := combineServerAndEndpointURL(*config.servURL, fmt.Sprintf("/v2/%s/tags/list", imageName))
|
2020-06-16 20:52:40 -05:00
|
|
|
if err != nil {
|
|
|
|
if isContextDone(ctx) {
|
|
|
|
return
|
|
|
|
}
|
2020-07-06 17:44:32 -05:00
|
|
|
c <- stringResult{"", err}
|
2020-06-16 20:52:40 -05:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
tagsList := &tagListResp{}
|
2020-07-17 14:42:22 -05:00
|
|
|
_, err = makeGETRequest(tagListEndpoint, username, password, *config.verifyTLS, &tagsList)
|
2020-06-16 20:52:40 -05:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
if isContextDone(ctx) {
|
|
|
|
return
|
|
|
|
}
|
2020-07-06 17:44:32 -05:00
|
|
|
c <- stringResult{"", err}
|
2020-06-16 20:52:40 -05:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tag := range tagsList.Tags {
|
|
|
|
wg.Add(1)
|
|
|
|
|
2020-07-17 14:42:22 -05:00
|
|
|
go addManifestCallToPool(ctx, config, pool, username, password, imageName, tag, c, wg)
|
2020-06-16 20:52:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-06 17:44:32 -05:00
|
|
|
func (service searchService) getImagesByCveID(ctx context.Context, config searchConfig, username,
|
|
|
|
password, cveID string, c chan stringResult, wg *sync.WaitGroup) {
|
|
|
|
defer wg.Done()
|
|
|
|
defer close(c)
|
|
|
|
|
|
|
|
query := fmt.Sprintf(`{ImageListForCVE(id: "%s") {`+`
|
|
|
|
Name Tags }
|
|
|
|
}`,
|
|
|
|
cveID)
|
|
|
|
result := &imagesForCve{}
|
|
|
|
|
|
|
|
endPoint, err := combineServerAndEndpointURL(*config.servURL, "/query")
|
|
|
|
if err != nil {
|
|
|
|
if isContextDone(ctx) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c <- stringResult{"", err}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
err = makeGraphQLRequest(endPoint, query, username, password, *config.verifyTLS, result)
|
|
|
|
if err != nil {
|
|
|
|
if isContextDone(ctx) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c <- stringResult{"", err}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if result.Errors != nil {
|
|
|
|
var errBuilder strings.Builder
|
|
|
|
|
|
|
|
for _, err := range result.Errors {
|
|
|
|
fmt.Fprintln(&errBuilder, err.Message)
|
|
|
|
}
|
|
|
|
|
|
|
|
if isContextDone(ctx) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c <- stringResult{"", errors.New(errBuilder.String())} //nolint: goerr113
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var localWg sync.WaitGroup
|
|
|
|
|
|
|
|
p := newSmoothRateLimiter(ctx, &localWg, c)
|
|
|
|
localWg.Add(1)
|
|
|
|
|
|
|
|
go p.startRateLimiter()
|
|
|
|
|
|
|
|
for _, image := range result.Data.ImageListForCVE {
|
|
|
|
for _, tag := range image.Tags {
|
|
|
|
localWg.Add(1)
|
|
|
|
|
|
|
|
go addManifestCallToPool(ctx, config, p, username, password, image.Name, tag, c, &localWg)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
localWg.Wait()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (service searchService) getImageByNameAndCVEID(ctx context.Context, config searchConfig, username,
|
|
|
|
password, imageName, cveID string, c chan stringResult, wg *sync.WaitGroup) {
|
|
|
|
defer wg.Done()
|
|
|
|
defer close(c)
|
|
|
|
|
|
|
|
query := fmt.Sprintf(`{ImageListForCVE(id: "%s") {`+`
|
|
|
|
Name Tags }
|
|
|
|
}`,
|
|
|
|
cveID)
|
|
|
|
result := &imagesForCve{}
|
|
|
|
|
|
|
|
endPoint, err := combineServerAndEndpointURL(*config.servURL, "/query")
|
|
|
|
if err != nil {
|
|
|
|
if isContextDone(ctx) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c <- stringResult{"", err}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
err = makeGraphQLRequest(endPoint, query, username, password, *config.verifyTLS, result)
|
|
|
|
if err != nil {
|
|
|
|
if isContextDone(ctx) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c <- stringResult{"", err}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if result.Errors != nil {
|
|
|
|
var errBuilder strings.Builder
|
|
|
|
|
|
|
|
for _, err := range result.Errors {
|
|
|
|
fmt.Fprintln(&errBuilder, err.Message)
|
|
|
|
}
|
|
|
|
|
|
|
|
if isContextDone(ctx) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c <- stringResult{"", errors.New(errBuilder.String())} //nolint: goerr113
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var localWg sync.WaitGroup
|
|
|
|
|
|
|
|
p := newSmoothRateLimiter(ctx, &localWg, c)
|
|
|
|
localWg.Add(1)
|
|
|
|
|
|
|
|
go p.startRateLimiter()
|
|
|
|
|
|
|
|
for _, image := range result.Data.ImageListForCVE {
|
|
|
|
if !strings.EqualFold(imageName, image.Name) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tag := range image.Tags {
|
|
|
|
localWg.Add(1)
|
|
|
|
|
|
|
|
go addManifestCallToPool(ctx, config, p, username, password, image.Name, tag, c, &localWg)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
localWg.Wait()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (service searchService) getCveByImage(ctx context.Context, config searchConfig, username, password,
|
|
|
|
imageName string, c chan stringResult, wg *sync.WaitGroup) {
|
|
|
|
defer wg.Done()
|
|
|
|
defer close(c)
|
|
|
|
|
|
|
|
query := fmt.Sprintf(`{ CVEListForImage (image:"%s")`+
|
|
|
|
` { Tag CVEList { Id Title Severity Description `+
|
|
|
|
`PackageList {Name InstalledVersion FixedVersion}} } }`, imageName)
|
|
|
|
result := &cveResult{}
|
|
|
|
|
|
|
|
endPoint, err := combineServerAndEndpointURL(*config.servURL, "/query")
|
|
|
|
if err != nil {
|
|
|
|
if isContextDone(ctx) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c <- stringResult{"", err}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
err = makeGraphQLRequest(endPoint, query, username, password, *config.verifyTLS, result)
|
|
|
|
if err != nil {
|
|
|
|
if isContextDone(ctx) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c <- stringResult{"", err}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if result.Errors != nil {
|
|
|
|
var errBuilder strings.Builder
|
|
|
|
|
|
|
|
for _, err := range result.Errors {
|
|
|
|
fmt.Fprintln(&errBuilder, err.Message)
|
|
|
|
}
|
|
|
|
|
|
|
|
if isContextDone(ctx) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c <- stringResult{"", errors.New(errBuilder.String())} //nolint: goerr113
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-09-04 12:56:47 -05:00
|
|
|
result.Data.CVEListForImage.CVEList = groupCVEsBySeverity(result.Data.CVEListForImage.CVEList)
|
|
|
|
|
2020-07-06 17:44:32 -05:00
|
|
|
str, err := result.string(*config.outputFormat)
|
|
|
|
if err != nil {
|
|
|
|
if isContextDone(ctx) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c <- stringResult{"", err}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if isContextDone(ctx) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c <- stringResult{str, nil}
|
|
|
|
}
|
|
|
|
|
2020-09-04 12:56:47 -05:00
|
|
|
func groupCVEsBySeverity(cveList []cve) []cve {
|
|
|
|
high := make([]cve, 0)
|
|
|
|
med := make([]cve, 0)
|
|
|
|
low := make([]cve, 0)
|
|
|
|
|
|
|
|
for _, cve := range cveList {
|
|
|
|
switch cve.Severity {
|
|
|
|
case "LOW":
|
|
|
|
low = append(low, cve)
|
|
|
|
|
|
|
|
case "MEDIUM":
|
|
|
|
med = append(med, cve)
|
|
|
|
|
|
|
|
case "HIGH":
|
|
|
|
high = append(high, cve)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return append(append(high, med...), low...)
|
|
|
|
}
|
|
|
|
|
2020-06-16 20:52:40 -05:00
|
|
|
func isContextDone(ctx context.Context) bool {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return true
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-06 17:44:32 -05:00
|
|
|
func (service searchService) getFixedTagsForCVE(ctx context.Context, config searchConfig,
|
|
|
|
username, password, imageName, cveID string, c chan stringResult, wg *sync.WaitGroup) {
|
|
|
|
defer wg.Done()
|
|
|
|
defer close(c)
|
|
|
|
|
|
|
|
query := fmt.Sprintf(`{ImageListWithCVEFixed (id: "%s", image: "%s") {`+`
|
|
|
|
Tags {Name Timestamp} }
|
|
|
|
}`,
|
|
|
|
cveID, imageName)
|
|
|
|
result := &fixedTags{}
|
|
|
|
|
|
|
|
endPoint, err := combineServerAndEndpointURL(*config.servURL, "/query")
|
|
|
|
if err != nil {
|
|
|
|
if isContextDone(ctx) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c <- stringResult{"", err}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
err = makeGraphQLRequest(endPoint, query, username, password, *config.verifyTLS, result)
|
|
|
|
if err != nil {
|
|
|
|
if isContextDone(ctx) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c <- stringResult{"", err}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if result.Errors != nil {
|
|
|
|
var errBuilder strings.Builder
|
|
|
|
|
|
|
|
for _, err := range result.Errors {
|
|
|
|
fmt.Fprintln(&errBuilder, err.Message)
|
|
|
|
}
|
|
|
|
|
|
|
|
if isContextDone(ctx) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c <- stringResult{"", errors.New(errBuilder.String())} //nolint: goerr113
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var localWg sync.WaitGroup
|
|
|
|
|
|
|
|
p := newSmoothRateLimiter(ctx, &localWg, c)
|
|
|
|
localWg.Add(1)
|
|
|
|
|
|
|
|
go p.startRateLimiter()
|
|
|
|
|
|
|
|
for _, imgTag := range result.Data.ImageListWithCVEFixed.Tags {
|
|
|
|
localWg.Add(1)
|
|
|
|
|
|
|
|
go addManifestCallToPool(ctx, config, p, username, password, imageName, imgTag.Name, c, &localWg)
|
|
|
|
}
|
|
|
|
|
|
|
|
localWg.Wait()
|
|
|
|
}
|
|
|
|
|
2020-07-17 14:42:22 -05:00
|
|
|
func addManifestCallToPool(ctx context.Context, config searchConfig, p *requestsPool, username, password, imageName,
|
2020-07-06 17:44:32 -05:00
|
|
|
tagName string, c chan stringResult, wg *sync.WaitGroup) {
|
2020-06-16 20:52:40 -05:00
|
|
|
defer wg.Done()
|
|
|
|
|
|
|
|
resultManifest := manifestResponse{}
|
|
|
|
|
2020-07-17 14:42:22 -05:00
|
|
|
manifestEndpoint, err := combineServerAndEndpointURL(*config.servURL,
|
|
|
|
fmt.Sprintf("/v2/%s/manifests/%s", imageName, tagName))
|
2020-06-16 20:52:40 -05:00
|
|
|
if err != nil {
|
|
|
|
if isContextDone(ctx) {
|
|
|
|
return
|
|
|
|
}
|
2020-07-06 17:44:32 -05:00
|
|
|
c <- stringResult{"", err}
|
2020-06-16 20:52:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
job := manifestJob{
|
|
|
|
url: manifestEndpoint,
|
|
|
|
username: username,
|
|
|
|
imageName: imageName,
|
|
|
|
password: password,
|
|
|
|
tagName: tagName,
|
|
|
|
manifestResp: resultManifest,
|
2020-07-17 14:42:22 -05:00
|
|
|
config: config,
|
2020-06-16 20:52:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
wg.Add(1)
|
|
|
|
p.submitJob(&job)
|
|
|
|
}
|
|
|
|
|
2020-07-06 17:44:32 -05:00
|
|
|
type cveResult struct {
|
|
|
|
Errors []errorGraphQL `json:"errors"`
|
|
|
|
Data cveData `json:"data"`
|
|
|
|
}
|
|
|
|
type errorGraphQL struct {
|
|
|
|
Message string `json:"message"`
|
|
|
|
Path []string `json:"path"`
|
|
|
|
}
|
|
|
|
type packageList struct {
|
|
|
|
Name string `json:"Name"`
|
|
|
|
InstalledVersion string `json:"InstalledVersion"`
|
|
|
|
FixedVersion string `json:"FixedVersion"`
|
|
|
|
}
|
|
|
|
type cve struct {
|
|
|
|
ID string `json:"Id"`
|
|
|
|
Severity string `json:"Severity"`
|
|
|
|
Title string `json:"Title"`
|
|
|
|
Description string `json:"Description"`
|
|
|
|
PackageList []packageList `json:"PackageList"`
|
|
|
|
}
|
|
|
|
type cveListForImage struct {
|
|
|
|
Tag string `json:"Tag"`
|
|
|
|
CVEList []cve `json:"CVEList"`
|
|
|
|
}
|
|
|
|
type cveData struct {
|
|
|
|
CVEListForImage cveListForImage `json:"CVEListForImage"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cve cveResult) string(format string) (string, error) {
|
|
|
|
switch strings.ToLower(format) {
|
|
|
|
case "", defaultOutoutFormat:
|
|
|
|
return cve.stringPlainText()
|
|
|
|
case "json":
|
|
|
|
return cve.stringJSON()
|
|
|
|
case "yml", "yaml":
|
|
|
|
return cve.stringYAML()
|
|
|
|
default:
|
|
|
|
return "", ErrInvalidOutputFormat
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cve cveResult) stringPlainText() (string, error) {
|
|
|
|
var builder strings.Builder
|
|
|
|
|
|
|
|
table := getCVETableWriter(&builder)
|
|
|
|
|
|
|
|
for _, c := range cve.Data.CVEListForImage.CVEList {
|
|
|
|
id := ellipsize(c.ID, cveIDWidth, ellipsis)
|
|
|
|
title := ellipsize(c.Title, cveTitleWidth, ellipsis)
|
|
|
|
severity := ellipsize(c.Severity, cveSeverityWidth, ellipsis)
|
|
|
|
row := make([]string, 3)
|
|
|
|
row[colCVEIDIndex] = id
|
|
|
|
row[colCVESeverityIndex] = severity
|
|
|
|
row[colCVETitleIndex] = title
|
|
|
|
|
|
|
|
table.Append(row)
|
|
|
|
}
|
|
|
|
|
|
|
|
table.Render()
|
|
|
|
|
|
|
|
return builder.String(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cve cveResult) stringJSON() (string, error) {
|
|
|
|
var json = jsoniter.ConfigCompatibleWithStandardLibrary
|
|
|
|
body, err := json.MarshalIndent(cve.Data.CVEListForImage, "", " ")
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return string(body), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cve cveResult) stringYAML() (string, error) {
|
|
|
|
body, err := yaml.Marshal(&cve.Data.CVEListForImage)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return string(body), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type fixedTags struct {
|
|
|
|
Errors []errorGraphQL `json:"errors"`
|
|
|
|
Data struct {
|
|
|
|
ImageListWithCVEFixed struct {
|
|
|
|
Tags []struct {
|
|
|
|
Name string `json:"Name"`
|
|
|
|
Timestamp time.Time `json:"Timestamp"`
|
|
|
|
} `json:"Tags"`
|
|
|
|
} `json:"ImageListWithCVEFixed"`
|
|
|
|
} `json:"data"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type imagesForCve struct {
|
|
|
|
Errors []errorGraphQL `json:"errors"`
|
|
|
|
Data struct {
|
|
|
|
ImageListForCVE []tagListResp `json:"ImageListForCVE"`
|
|
|
|
} `json:"data"`
|
|
|
|
}
|
|
|
|
|
2020-06-16 20:52:40 -05:00
|
|
|
type tagListResp struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Tags []string `json:"tags"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type imageStruct struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Tags []tags `json:"tags"`
|
|
|
|
}
|
|
|
|
type tags struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Size uint64 `json:"size"`
|
|
|
|
Digest string `json:"digest"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (img imageStruct) string(format string) (string, error) {
|
|
|
|
switch strings.ToLower(format) {
|
2020-07-06 17:44:32 -05:00
|
|
|
case "", defaultOutoutFormat:
|
2020-06-16 20:52:40 -05:00
|
|
|
return img.stringPlainText()
|
|
|
|
case "json":
|
|
|
|
return img.stringJSON()
|
|
|
|
case "yml", "yaml":
|
|
|
|
return img.stringYAML()
|
|
|
|
default:
|
|
|
|
return "", ErrInvalidOutputFormat
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (img imageStruct) stringPlainText() (string, error) {
|
|
|
|
var builder strings.Builder
|
|
|
|
|
2020-07-06 17:44:32 -05:00
|
|
|
table := getImageTableWriter(&builder)
|
2020-06-16 20:52:40 -05:00
|
|
|
|
|
|
|
for _, tag := range img.Tags {
|
|
|
|
imageName := ellipsize(img.Name, imageNameWidth, ellipsis)
|
|
|
|
tagName := ellipsize(tag.Name, tagWidth, ellipsis)
|
|
|
|
digest := ellipsize(tag.Digest, digestWidth, "")
|
|
|
|
size := ellipsize(strings.ReplaceAll(humanize.Bytes(tag.Size), " ", ""), sizeWidth, ellipsis)
|
2020-07-06 17:44:32 -05:00
|
|
|
row := make([]string, 4)
|
|
|
|
|
|
|
|
row[colImageNameIndex] = imageName
|
|
|
|
row[colTagIndex] = tagName
|
|
|
|
row[colDigestIndex] = digest
|
|
|
|
row[colSizeIndex] = size
|
2020-06-16 20:52:40 -05:00
|
|
|
|
|
|
|
table.Append(row)
|
|
|
|
}
|
|
|
|
|
|
|
|
table.Render()
|
|
|
|
|
|
|
|
return builder.String(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (img imageStruct) stringJSON() (string, error) {
|
|
|
|
var json = jsoniter.ConfigCompatibleWithStandardLibrary
|
|
|
|
body, err := json.MarshalIndent(img, "", " ")
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return string(body), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (img imageStruct) stringYAML() (string, error) {
|
|
|
|
body, err := yaml.Marshal(&img)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return string(body), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type catalogResponse struct {
|
|
|
|
Repositories []string `json:"repositories"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type manifestResponse struct {
|
|
|
|
Layers []struct {
|
|
|
|
MediaType string `json:"mediaType"`
|
|
|
|
Digest string `json:"digest"`
|
|
|
|
Size uint64 `json:"size"`
|
|
|
|
} `json:"layers"`
|
|
|
|
Annotations struct {
|
|
|
|
WsTychoStackerStackerYaml string `json:"ws.tycho.stacker.stacker_yaml"`
|
|
|
|
WsTychoStackerGitVersion string `json:"ws.tycho.stacker.git_version"`
|
|
|
|
} `json:"annotations"`
|
|
|
|
Config struct {
|
|
|
|
Size int `json:"size"`
|
|
|
|
Digest string `json:"digest"`
|
|
|
|
MediaType string `json:"mediaType"`
|
|
|
|
} `json:"config"`
|
|
|
|
SchemaVersion int `json:"schemaVersion"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func combineServerAndEndpointURL(serverURL, endPoint string) (string, error) {
|
|
|
|
if !isURL(serverURL) {
|
|
|
|
return "", zotErrors.ErrInvalidURL
|
|
|
|
}
|
|
|
|
|
|
|
|
newURL, err := url.Parse(serverURL)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return "", zotErrors.ErrInvalidURL
|
|
|
|
}
|
|
|
|
|
|
|
|
newURL, _ = newURL.Parse(endPoint)
|
|
|
|
|
|
|
|
return newURL.String(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func ellipsize(text string, max int, trailing string) string {
|
2020-07-06 17:44:32 -05:00
|
|
|
text = strings.TrimSpace(text)
|
2020-06-16 20:52:40 -05:00
|
|
|
if len(text) <= max {
|
|
|
|
return text
|
|
|
|
}
|
|
|
|
|
|
|
|
chopLength := len(trailing)
|
|
|
|
|
|
|
|
return text[:max-chopLength] + trailing
|
|
|
|
}
|
|
|
|
|
2020-07-06 17:44:32 -05:00
|
|
|
func getImageTableWriter(writer io.Writer) *tablewriter.Table {
|
2020-06-16 20:52:40 -05:00
|
|
|
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(colDigestIndex, digestWidth)
|
|
|
|
table.SetColMinWidth(colSizeIndex, sizeWidth)
|
|
|
|
|
|
|
|
return table
|
|
|
|
}
|
|
|
|
|
2020-07-06 17:44:32 -05:00
|
|
|
func getCVETableWriter(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(colCVEIDIndex, cveIDWidth)
|
|
|
|
table.SetColMinWidth(colCVESeverityIndex, cveSeverityWidth)
|
|
|
|
table.SetColMinWidth(colCVETitleIndex, cveTitleWidth)
|
|
|
|
|
|
|
|
return table
|
|
|
|
}
|
|
|
|
|
2020-06-16 20:52:40 -05:00
|
|
|
const (
|
|
|
|
imageNameWidth = 32
|
|
|
|
tagWidth = 24
|
|
|
|
digestWidth = 8
|
|
|
|
sizeWidth = 8
|
|
|
|
ellipsis = "..."
|
|
|
|
|
|
|
|
colImageNameIndex = 0
|
|
|
|
colTagIndex = 1
|
|
|
|
colDigestIndex = 2
|
|
|
|
colSizeIndex = 3
|
2020-07-06 17:44:32 -05:00
|
|
|
|
|
|
|
cveIDWidth = 16
|
|
|
|
cveSeverityWidth = 8
|
|
|
|
cveTitleWidth = 48
|
|
|
|
|
|
|
|
colCVEIDIndex = 0
|
|
|
|
colCVESeverityIndex = 1
|
|
|
|
colCVETitleIndex = 2
|
|
|
|
|
|
|
|
defaultOutoutFormat = "text"
|
2020-06-16 20:52:40 -05:00
|
|
|
)
|