-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a79276d
commit d14ea01
Showing
1 changed file
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
package main | ||
|
||
import ( | ||
"bytes" | ||
"context" | ||
"fmt" | ||
"os" | ||
"os/exec" | ||
"path/filepath" | ||
|
||
"github.com/aws/aws-lambda-go/lambda" | ||
) | ||
|
||
// result is the structure of the JSON response | ||
type result struct { | ||
StdErr string `json:"stderr,omitempty"` | ||
StdOut string `json:"stdout,omitempty"` | ||
ExitCode int `json:"exitcode,omitempty"` | ||
Output string `json:"output,omitempty"` | ||
} | ||
|
||
func invoke(ctx context.Context, args []string) (*result, error) { | ||
// Runs 'trivy ...' capturing the stderr/stdout | ||
cmd := exec.CommandContext(ctx, "trivy", args...) | ||
cmd.Env = os.Environ() | ||
var stdout bytes.Buffer | ||
cmd.Stdout = &stdout | ||
var stderr bytes.Buffer | ||
cmd.Stderr = &stderr | ||
|
||
// Create a new temporary directory for the Trivy cache for this invocation | ||
// We will remove it after the invocation to avoid filling up the /tmp directory | ||
cacheDir, err := os.MkdirTemp(os.Getenv("TRIVY_TMP"), "trivy-cache-*") | ||
if err != nil { | ||
return nil, fmt.Errorf("os.MkdirTemp failed: %w", err) | ||
} | ||
defer os.RemoveAll(cacheDir) | ||
cmd.Env = append(cmd.Env, fmt.Sprintf("TRIVY_CACHE_DIR=%s", cacheDir)) | ||
outputFile := filepath.Join(cacheDir, "output") | ||
cmd.Env = append(cmd.Env, fmt.Sprintf("TRIVY_OUTPUT=%s", outputFile)) | ||
|
||
// Symlink the air-gapped DBs from the image layers to the cache directory and disable auto-update | ||
if err := os.Symlink("/airgap/java-db", filepath.Join(cacheDir, "java-db")); err != nil { | ||
return nil, fmt.Errorf("os.Symlink failed: %w", err) | ||
} | ||
cmd.Env = append(cmd.Env, "TRIVY_SKIP_JAVA_DB_UPDATE=true") | ||
if err := os.Symlink("/airgap/db", filepath.Join(cacheDir, "db")); err != nil { | ||
return nil, fmt.Errorf("os.Symlink failed: %w", err) | ||
} | ||
cmd.Env = append(cmd.Env, "TRIVY_SKIP_DB_UPDATE=true") | ||
|
||
// Execute, capturing the exit-code if any | ||
var r result | ||
if err := cmd.Run(); err != nil { | ||
if exitErr, ok := err.(*exec.ExitError); ok { | ||
r.ExitCode = exitErr.ExitCode() | ||
} else { | ||
return nil, fmt.Errorf("cmd.Run failed: %w", err) | ||
} | ||
} | ||
r.StdOut = stdout.String() | ||
r.StdErr = stderr.String() | ||
|
||
// Read the output file if exists | ||
if b, err := os.ReadFile(outputFile); err == nil { | ||
r.Output = string(b) | ||
} else if !os.IsNotExist(err) { | ||
return nil, fmt.Errorf("os.ReadFile failed: %w", err) | ||
} | ||
|
||
return &r, nil | ||
} | ||
|
||
func main() { | ||
lambda.Start(invoke) | ||
} |