mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-21 23:00:42 -08:00
Co-authored-by: afdesk <work@afdesk.com> Co-authored-by: DmitriyLewen <91113035+DmitriyLewen@users.noreply.github.com>
60 lines
1.6 KiB
Go
60 lines
1.6 KiB
Go
package server
|
|
|
|
import (
|
|
"context"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
"github.com/aquasecurity/trivy-db/pkg/db"
|
|
"github.com/aquasecurity/trivy/pkg/commands/operation"
|
|
"github.com/aquasecurity/trivy/pkg/flag"
|
|
"github.com/aquasecurity/trivy/pkg/log"
|
|
"github.com/aquasecurity/trivy/pkg/module"
|
|
rpcServer "github.com/aquasecurity/trivy/pkg/rpc/server"
|
|
"github.com/aquasecurity/trivy/pkg/utils"
|
|
)
|
|
|
|
// Run runs the scan
|
|
func Run(ctx context.Context, opts flag.Options) (err error) {
|
|
if err = log.InitLogger(opts.Debug, opts.Quiet); err != nil {
|
|
return xerrors.Errorf("failed to initialize a logger: %w", err)
|
|
}
|
|
|
|
// configure cache dir
|
|
utils.SetCacheDir(opts.CacheDir)
|
|
cache, err := operation.NewCache(opts.CacheOptions)
|
|
if err != nil {
|
|
return xerrors.Errorf("server cache error: %w", err)
|
|
}
|
|
defer cache.Close()
|
|
log.Logger.Debugf("cache dir: %s", utils.CacheDir())
|
|
|
|
if opts.Reset {
|
|
return cache.ClearDB()
|
|
}
|
|
|
|
// download the database file
|
|
if err = operation.DownloadDB(opts.AppVersion, opts.CacheDir, opts.DBRepository,
|
|
true, opts.Insecure, opts.SkipDBUpdate); err != nil {
|
|
return err
|
|
}
|
|
|
|
if opts.DownloadDBOnly {
|
|
return nil
|
|
}
|
|
|
|
if err = db.Init(opts.CacheDir); err != nil {
|
|
return xerrors.Errorf("error in vulnerability DB initialize: %w", err)
|
|
}
|
|
|
|
// Initialize WASM modules
|
|
m, err := module.NewManager(ctx)
|
|
if err != nil {
|
|
return xerrors.Errorf("WASM module error: %w", err)
|
|
}
|
|
m.Register()
|
|
|
|
server := rpcServer.NewServer(opts.AppVersion, opts.Listen, opts.CacheDir, opts.Token, opts.TokenHeader, opts.DBRepository)
|
|
return server.ListenAndServe(cache, opts.Insecure)
|
|
}
|