mirror of
https://github.com/aquasecurity/trivy.git
synced 2026-02-01 22:33:14 +08:00
71 lines
1.9 KiB
Go
71 lines
1.9 KiB
Go
package packaging
|
|
|
|
import (
|
|
"bufio"
|
|
"errors"
|
|
"io"
|
|
"net/textproto"
|
|
"strings"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
"github.com/aquasecurity/trivy/pkg/dependency/parser/types"
|
|
"github.com/aquasecurity/trivy/pkg/log"
|
|
xio "github.com/aquasecurity/trivy/pkg/x/io"
|
|
)
|
|
|
|
type Parser struct{}
|
|
|
|
func NewParser() types.Parser {
|
|
return &Parser{}
|
|
}
|
|
|
|
// Parse parses egg and wheel metadata.
|
|
// e.g. .egg-info/PKG-INFO and dist-info/METADATA
|
|
func (*Parser) Parse(r xio.ReadSeekerAt) ([]types.Library, []types.Dependency, error) {
|
|
rd := textproto.NewReader(bufio.NewReader(r))
|
|
h, err := rd.ReadMIMEHeader()
|
|
if e := textproto.ProtocolError(""); errors.As(err, &e) {
|
|
// A MIME header may contain bytes in the key or value outside the set allowed by RFC 7230.
|
|
// cf. https://cs.opensource.google/go/go/+/a6642e67e16b9d769a0c08e486ba08408064df19
|
|
// However, our required key/value could have been correctly parsed,
|
|
// so we continue with the subsequent process.
|
|
log.Logger.Debugf("MIME protocol error: %s", err)
|
|
} else if err != nil && err != io.EOF {
|
|
return nil, nil, xerrors.Errorf("read MIME error: %w", err)
|
|
}
|
|
|
|
name, version := h.Get("name"), h.Get("version")
|
|
if name == "" || version == "" {
|
|
return nil, nil, xerrors.New("name or version is empty")
|
|
}
|
|
|
|
// "License-Expression" takes precedence as "License" is deprecated.
|
|
// cf. https://peps.python.org/pep-0639/#deprecate-license-field
|
|
var license string
|
|
if l := h.Get("License-Expression"); l != "" {
|
|
license = l
|
|
} else if l := h.Get("License"); l != "" {
|
|
license = l
|
|
} else {
|
|
for _, classifier := range h.Values("Classifier") {
|
|
if strings.HasPrefix(classifier, "License :: ") {
|
|
values := strings.Split(classifier, " :: ")
|
|
license = values[len(values)-1]
|
|
break
|
|
}
|
|
}
|
|
}
|
|
if license == "" && h.Get("License-File") != "" {
|
|
license = "file://" + h.Get("License-File")
|
|
}
|
|
|
|
return []types.Library{
|
|
{
|
|
Name: name,
|
|
Version: version,
|
|
License: license,
|
|
},
|
|
}, nil, nil
|
|
}
|