mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-23 07:29:00 -08:00
153 lines
4.2 KiB
Go
153 lines
4.2 KiB
Go
package commands
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/aws/aws-sdk-go-v2/config"
|
|
"github.com/aws/aws-sdk-go-v2/service/sts"
|
|
"golang.org/x/xerrors"
|
|
|
|
"github.com/aquasecurity/defsec/pkg/errs"
|
|
awsScanner "github.com/aquasecurity/defsec/pkg/scanners/cloud/aws"
|
|
"github.com/aquasecurity/trivy/pkg/cloud"
|
|
"github.com/aquasecurity/trivy/pkg/cloud/aws/scanner"
|
|
"github.com/aquasecurity/trivy/pkg/cloud/report"
|
|
"github.com/aquasecurity/trivy/pkg/commands/operation"
|
|
cr "github.com/aquasecurity/trivy/pkg/compliance/report"
|
|
"github.com/aquasecurity/trivy/pkg/flag"
|
|
"github.com/aquasecurity/trivy/pkg/log"
|
|
"github.com/aquasecurity/trivy/pkg/types"
|
|
)
|
|
|
|
func getAccountIDAndRegion(ctx context.Context, region string) (string, string, error) {
|
|
log.Logger.Debug("Looking for AWS credentials provider...")
|
|
|
|
cfg, err := config.LoadDefaultConfig(context.TODO())
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
if region != "" {
|
|
cfg.Region = region
|
|
}
|
|
|
|
svc := sts.NewFromConfig(cfg)
|
|
|
|
log.Logger.Debug("Looking up AWS caller identity...")
|
|
result, err := svc.GetCallerIdentity(ctx, &sts.GetCallerIdentityInput{})
|
|
if err != nil {
|
|
return "", "", fmt.Errorf("failed to discover AWS caller identity: %w", err)
|
|
}
|
|
if result.Account == nil {
|
|
return "", "", fmt.Errorf("missing account id for aws account")
|
|
}
|
|
log.Logger.Debugf("Verified AWS credentials for account %s!", *result.Account)
|
|
return *result.Account, cfg.Region, nil
|
|
}
|
|
|
|
func processOptions(ctx context.Context, opt *flag.Options) error {
|
|
// support comma separated services too
|
|
var splitServices []string
|
|
for _, service := range opt.Services {
|
|
splitServices = append(splitServices, strings.Split(service, ",")...)
|
|
}
|
|
opt.Services = splitServices
|
|
|
|
if len(opt.Services) != 1 && opt.ARN != "" {
|
|
return fmt.Errorf("you must specify the single --service which the --arn relates to")
|
|
}
|
|
|
|
if opt.Account == "" || opt.Region == "" {
|
|
var err error
|
|
opt.Account, opt.Region, err = getAccountIDAndRegion(ctx, opt.Region)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
if len(opt.Services) == 0 {
|
|
log.Logger.Debug("No service(s) specified, scanning all services...")
|
|
opt.Services = awsScanner.AllSupportedServices()
|
|
} else {
|
|
log.Logger.Debugf("Specific services were requested: [%s]...", strings.Join(opt.Services, ", "))
|
|
for _, service := range opt.Services {
|
|
var found bool
|
|
supported := awsScanner.AllSupportedServices()
|
|
for _, allowed := range supported {
|
|
if allowed == service {
|
|
found = true
|
|
break
|
|
}
|
|
}
|
|
if !found {
|
|
return fmt.Errorf("service '%s' is not currently supported - supported services are: %s", service, strings.Join(supported, ", "))
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func Run(ctx context.Context, opt flag.Options) error {
|
|
|
|
ctx, cancel := context.WithTimeout(ctx, opt.GlobalOptions.Timeout)
|
|
defer cancel()
|
|
|
|
if err := log.InitLogger(opt.Debug, false); err != nil {
|
|
return fmt.Errorf("logger error: %w", err)
|
|
}
|
|
|
|
var err error
|
|
defer func() {
|
|
if errors.Is(err, context.DeadlineExceeded) {
|
|
log.Logger.Warn("Increase --timeout value")
|
|
}
|
|
}()
|
|
|
|
if err := processOptions(ctx, &opt); err != nil {
|
|
return err
|
|
}
|
|
|
|
results, cached, err := scanner.NewScanner().Scan(ctx, opt)
|
|
if err != nil {
|
|
var aerr errs.AdapterError
|
|
if errors.As(err, &aerr) {
|
|
for _, e := range aerr.Errors() {
|
|
log.Logger.Warnf("Adapter error: %s", e)
|
|
}
|
|
} else {
|
|
return fmt.Errorf("aws scan error: %w", err)
|
|
}
|
|
}
|
|
|
|
log.Logger.Debug("Writing report to output...")
|
|
if opt.Compliance.Spec.ID != "" {
|
|
convertedResults := report.ConvertResults(results, cloud.ProviderAWS, opt.Services)
|
|
var crr []types.Results
|
|
for _, r := range convertedResults {
|
|
crr = append(crr, r.Results)
|
|
}
|
|
|
|
complianceReport, err := cr.BuildComplianceReport(crr, opt.Compliance)
|
|
if err != nil {
|
|
return xerrors.Errorf("compliance report build error: %w", err)
|
|
}
|
|
|
|
return cr.Write(complianceReport, cr.Option{
|
|
Format: opt.Format,
|
|
Report: opt.ReportFormat,
|
|
Output: opt.Output,
|
|
})
|
|
}
|
|
|
|
r := report.New(cloud.ProviderAWS, opt.Account, opt.Region, results.GetFailed(), opt.Services)
|
|
if err := report.Write(r, opt, cached); err != nil {
|
|
return fmt.Errorf("unable to write results: %w", err)
|
|
}
|
|
|
|
operation.Exit(opt, r.Failed())
|
|
return nil
|
|
}
|