mirror of
https://github.com/trufflesecurity/trufflehog.git
synced 2024-11-10 15:14:38 +00:00
da5301ea1e
* Exit with non-zero exit code on chunk source error * Exit with a non-zero exit code whenever we hit an error getting chunks. Previously the error would be logged but trufflehog would exit with a 0 (success) status code. * fix gcs test --------- Co-authored-by: Dustin Decker <dustin@trufflesec.com> Co-authored-by: ahrav <ahravdutta02@gmail.com>
78 lines
2.2 KiB
Go
78 lines
2.2 KiB
Go
package engine
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
|
|
gogit "github.com/go-git/go-git/v5"
|
|
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/common"
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/context"
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/pb/source_metadatapb"
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/pb/sourcespb"
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/sources"
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/sources/git"
|
|
)
|
|
|
|
// ScanGit scans any git source.
|
|
func (e *Engine) ScanGit(ctx context.Context, c sources.GitConfig) error {
|
|
logOptions := &gogit.LogOptions{}
|
|
opts := []git.ScanOption{
|
|
git.ScanOptionFilter(c.Filter),
|
|
git.ScanOptionLogOptions(logOptions),
|
|
}
|
|
|
|
options := &gogit.PlainOpenOptions{
|
|
DetectDotGit: true,
|
|
EnableDotGitCommonDir: true,
|
|
}
|
|
|
|
repo, err := gogit.PlainOpenWithOptions(c.RepoPath, options)
|
|
if err != nil {
|
|
return fmt.Errorf("could not open repo: %s: %w", c.RepoPath, err)
|
|
}
|
|
|
|
if c.MaxDepth != 0 {
|
|
opts = append(opts, git.ScanOptionMaxDepth(int64(c.MaxDepth)))
|
|
}
|
|
if c.BaseRef != "" {
|
|
opts = append(opts, git.ScanOptionBaseHash(c.BaseRef))
|
|
}
|
|
if c.HeadRef != "" {
|
|
opts = append(opts, git.ScanOptionHeadCommit(c.HeadRef))
|
|
}
|
|
if c.ExcludeGlobs != nil {
|
|
opts = append(opts, git.ScanOptionExcludeGlobs(c.ExcludeGlobs))
|
|
}
|
|
scanOptions := git.NewScanOptions(opts...)
|
|
|
|
gitSource := git.NewGit(sourcespb.SourceType_SOURCE_TYPE_GIT, 0, 0, "trufflehog - git", true, runtime.NumCPU(),
|
|
func(file, email, commit, timestamp, repository string, line int64) *source_metadatapb.MetaData {
|
|
return &source_metadatapb.MetaData{
|
|
Data: &source_metadatapb.MetaData_Git{
|
|
Git: &source_metadatapb.Git{
|
|
Commit: commit,
|
|
File: file,
|
|
Email: email,
|
|
Repository: repository,
|
|
Timestamp: timestamp,
|
|
Line: line,
|
|
},
|
|
},
|
|
}
|
|
})
|
|
|
|
ctx = context.WithValues(ctx,
|
|
"source_type", sourcespb.SourceType_SOURCE_TYPE_GIT.String(),
|
|
"source_name", "git",
|
|
)
|
|
e.sourcesWg.Go(func() error {
|
|
defer common.RecoverWithExit(ctx)
|
|
err := gitSource.ScanRepo(ctx, repo, c.RepoPath, scanOptions, e.ChunksChan())
|
|
if err != nil {
|
|
return fmt.Errorf("could not scan repo: %w", err)
|
|
}
|
|
return nil
|
|
})
|
|
return nil
|
|
}
|