Files
trivy/pkg/scan/service.go
2025-11-17 07:23:43 +00:00

182 lines
6.4 KiB
Go

package scan
import (
"context"
"crypto/sha256"
"fmt"
"github.com/samber/lo"
"golang.org/x/xerrors"
"github.com/aquasecurity/trivy/pkg/clock"
"github.com/aquasecurity/trivy/pkg/fanal/artifact"
ftypes "github.com/aquasecurity/trivy/pkg/fanal/types"
"github.com/aquasecurity/trivy/pkg/fingerprint"
"github.com/aquasecurity/trivy/pkg/log"
"github.com/aquasecurity/trivy/pkg/report"
"github.com/aquasecurity/trivy/pkg/types"
"github.com/aquasecurity/trivy/pkg/uuid"
)
// Service is the main service that coordinates security scanning operations.
// It uses either local.Service or remote.Service as its backend implementation.
type Service struct {
backend Backend
artifact artifact.Artifact
}
// Backend defines the interface for security scanning implementations.
// It can be either local.Service for standalone scanning or remote.Service
// for client/server mode scanning. The backend handles various types of
// security scanning including vulnerability, misconfiguration, secret,
// and license scanning.
type Backend interface {
Scan(ctx context.Context, target, artifactKey string, blobKeys []string, options types.ScanOptions) (
response types.ScanResponse, err error)
}
// NewService creates a new Service instance with the specified backend implementation
// and artifact handler.
func NewService(backend Backend, ar artifact.Artifact) Service {
return Service{
backend: backend,
artifact: ar,
}
}
// ScanArtifact performs security scanning on the specified artifact.
// It first inspects the artifact to gather necessary information,
// then delegates the actual scanning to the configured backend implementation.
func (s Service) ScanArtifact(ctx context.Context, options types.ScanOptions) (types.Report, error) {
artifactInfo, err := s.artifact.Inspect(ctx)
if err != nil {
return types.Report{}, xerrors.Errorf("failed analysis: %w", err)
}
defer func() {
if err := s.artifact.Clean(artifactInfo); err != nil {
log.Warn("Failed to clean the artifact",
log.String("artifact", artifactInfo.Name), log.Err(err))
}
}()
scanResponse, err := s.backend.Scan(ctx, artifactInfo.Name, artifactInfo.ID, artifactInfo.BlobIDs, options)
if err != nil {
return types.Report{}, xerrors.Errorf("scan failed: %w", err)
}
ptros := &scanResponse.OS
if scanResponse.OS.Detected() && scanResponse.OS.Eosl {
log.Warn("This OS version is no longer supported by the distribution",
log.String("family", string(scanResponse.OS.Family)), log.String("version", scanResponse.OS.Name))
log.Warn("The vulnerability detection may be insufficient because security updates are not provided")
} else if !scanResponse.OS.Detected() {
ptros = nil
}
// We don't need to include CreatedBy into Report
for i := range scanResponse.Layers {
scanResponse.Layers[i].CreatedBy = ""
}
reportID, err := uuid.NewV7()
if err != nil {
return types.Report{}, xerrors.Errorf("failed to generate ReportID: %w", err)
}
r := types.Report{
SchemaVersion: report.SchemaVersion,
ReportID: reportID.String(),
CreatedAt: clock.Now(ctx),
ArtifactID: s.generateArtifactID(artifactInfo),
ArtifactName: artifactInfo.Name,
ArtifactType: artifactInfo.Type,
Metadata: types.Metadata{
OS: ptros,
// Container image
ImageID: artifactInfo.ImageMetadata.ID,
DiffIDs: artifactInfo.ImageMetadata.DiffIDs,
RepoTags: artifactInfo.ImageMetadata.RepoTags,
RepoDigests: artifactInfo.ImageMetadata.RepoDigests,
Reference: artifactInfo.ImageMetadata.Reference,
ImageConfig: artifactInfo.ImageMetadata.ConfigFile,
Size: scanResponse.Layers.TotalSize(),
Layers: lo.Ternary(len(scanResponse.Layers) > 0, scanResponse.Layers, nil),
// Git repository
RepoURL: artifactInfo.RepoMetadata.RepoURL,
Branch: artifactInfo.RepoMetadata.Branch,
Tags: artifactInfo.RepoMetadata.Tags,
Commit: artifactInfo.RepoMetadata.Commit,
CommitMsg: artifactInfo.RepoMetadata.CommitMsg,
Author: artifactInfo.RepoMetadata.Author,
Committer: artifactInfo.RepoMetadata.Committer,
},
Results: scanResponse.Results,
BOM: artifactInfo.BOM,
}
// Fill fingerprints for all findings
fingerprint.Fill(&r)
return r, nil
}
// generateArtifactID generates a unique ID for the artifact based on its type
func (s Service) generateArtifactID(artifactInfo artifact.Reference) string {
switch artifactInfo.Type {
case ftypes.TypeContainerImage:
// For container images, calculate hash(ImageID + Registry + Repository)
// to ensure same images in different repos/registries have different IDs.
// Note: The artifact ID does NOT include the tag or digest, only registry/repository,
// so the same image with different tags will have the same artifact ID.
imageID := artifactInfo.ImageMetadata.ID
if imageID == "" {
return ""
}
// Use the Reference field if available
ref := artifactInfo.ImageMetadata.Reference
if ref.IsZero() {
// Reference is empty when RepoTags and RepoDigests are both empty.
// This happens in the following cases:
// 1. Images built without tags (e.g., "docker build ." without -t flag)
// 2. Images saved by ID (e.g., "docker save <image-id>" or "docker save sha256:xxx")
// In these cases, fall back to using the image ID directly.
log.Debug("No image reference available for artifact ID calculation, using image ID directly",
log.String("image", artifactInfo.Name))
return imageID
}
// ref.Context() returns registry/repository (e.g., "index.docker.io/library/alpine")
data := fmt.Sprintf("%s:%s", imageID, ref.Context())
hash := sha256.Sum256([]byte(data))
return fmt.Sprintf("sha256:%x", hash)
case ftypes.TypeRepository:
// Generate ID from repository URL and commit hash combination
if artifactInfo.RepoMetadata.RepoURL != "" && artifactInfo.RepoMetadata.Commit != "" {
// Calculate SHA256 of URL + commit hash
data := artifactInfo.RepoMetadata.RepoURL + "@" + artifactInfo.RepoMetadata.Commit
hash := sha256.Sum256([]byte(data))
return fmt.Sprintf("sha256:%x", hash)
}
// For local repositories without URL, use path and commit hash
if artifactInfo.RepoMetadata.Commit != "" {
data := artifactInfo.Name + "@" + artifactInfo.RepoMetadata.Commit
hash := sha256.Sum256([]byte(data))
return fmt.Sprintf("sha256:%x", hash)
}
// Empty string for non-Git directories
return ""
case ftypes.TypeFilesystem:
// Empty string for filesystem scans (as per requirement)
return ""
default:
// Empty string for other types
return ""
}
}