mirror of
https://github.com/anchore/syft
synced 2024-11-10 14:24:12 +00:00
c892c3609e
Signed-off-by: Alex Goodman <alex.goodman@anchore.com>
77 lines
2 KiB
Go
77 lines
2 KiB
Go
package file
|
|
|
|
import (
|
|
"archive/zip"
|
|
"fmt"
|
|
"os"
|
|
"sort"
|
|
"strings"
|
|
|
|
"github.com/anchore/syft/internal"
|
|
|
|
"github.com/anchore/syft/internal/log"
|
|
)
|
|
|
|
// ZipFileManifest is a collection of paths and their file metadata.
|
|
type ZipFileManifest map[string]os.FileInfo
|
|
|
|
// newZipManifest creates an empty ZipFileManifest.
|
|
func newZipManifest() ZipFileManifest {
|
|
return make(ZipFileManifest)
|
|
}
|
|
|
|
// Add a new path and it's file metadata to the collection.
|
|
func (z ZipFileManifest) Add(entry string, info os.FileInfo) {
|
|
z[entry] = info
|
|
}
|
|
|
|
// GlobMatch returns the path keys that match the given value(s).
|
|
func (z ZipFileManifest) GlobMatch(patterns ...string) []string {
|
|
uniqueMatches := internal.NewStringSet()
|
|
|
|
for _, pattern := range patterns {
|
|
for entry := range z {
|
|
// We want to match globs as if entries begin with a leading slash (akin to an absolute path)
|
|
// so that glob logic is consistent inside and outside of ZIP archives
|
|
normalizedEntry := normalizeZipEntryName(entry)
|
|
|
|
if GlobMatch(pattern, normalizedEntry) {
|
|
uniqueMatches.Add(entry)
|
|
}
|
|
}
|
|
}
|
|
|
|
results := uniqueMatches.ToSlice()
|
|
sort.Strings(results)
|
|
|
|
return results
|
|
}
|
|
|
|
// NewZipFileManifest creates and returns a new ZipFileManifest populated with path and metadata from the given zip archive path.
|
|
func NewZipFileManifest(archivePath string) (ZipFileManifest, error) {
|
|
zipReader, err := zip.OpenReader(archivePath)
|
|
manifest := newZipManifest()
|
|
if err != nil {
|
|
return manifest, fmt.Errorf("unable to open zip archive (%s): %w", archivePath, err)
|
|
}
|
|
defer func() {
|
|
err = zipReader.Close()
|
|
if err != nil {
|
|
log.Errorf("unable to close zip archive (%s): %+v", archivePath, err)
|
|
}
|
|
}()
|
|
|
|
for _, file := range zipReader.Reader.File {
|
|
manifest.Add(file.Name, file.FileInfo())
|
|
}
|
|
return manifest, nil
|
|
}
|
|
|
|
// normalizeZipEntryName takes the given path entry and ensures it is prefixed with "/".
|
|
func normalizeZipEntryName(entry string) string {
|
|
if !strings.HasPrefix(entry, "/") {
|
|
return "/" + entry
|
|
}
|
|
|
|
return entry
|
|
}
|