mirror of
https://github.com/anchore/syft.git
synced 2026-02-12 02:26:42 +01:00
feat: update licenses to including license content when SPDX expressions are unable to be determined (#3366)
--------- Signed-off-by: HeyeOpenSource <opensource@heye-international.com> Signed-off-by: Christopher Phillips <32073428+spiffcs@users.noreply.github.com> Co-authored-by: Christopher Phillips <32073428+spiffcs@users.noreply.github.com>
This commit is contained in:
parent
58dc43de86
commit
f7e767fc25
@ -3,5 +3,5 @@ package internal
|
|||||||
const (
|
const (
|
||||||
// JSONSchemaVersion is the current schema version output by the JSON encoder
|
// JSONSchemaVersion is the current schema version output by the JSON encoder
|
||||||
// This is roughly following the "SchemaVer" guidelines for versioning the JSON schema. Please see schema/json/README.md for details on how to increment.
|
// This is roughly following the "SchemaVer" guidelines for versioning the JSON schema. Please see schema/json/README.md for details on how to increment.
|
||||||
JSONSchemaVersion = "16.0.20"
|
JSONSchemaVersion = "16.0.21"
|
||||||
)
|
)
|
||||||
|
|||||||
@ -12,7 +12,7 @@ import (
|
|||||||
const coverageThreshold = 75 // determined by experimentation
|
const coverageThreshold = 75 // determined by experimentation
|
||||||
|
|
||||||
type Scanner interface {
|
type Scanner interface {
|
||||||
IdentifyLicenseIDs(context.Context, io.Reader) ([]string, error)
|
IdentifyLicenseIDs(context.Context, io.Reader) ([]string, []byte, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
var _ Scanner = (*scanner)(nil)
|
var _ Scanner = (*scanner)(nil)
|
||||||
@ -35,34 +35,33 @@ func NewDefaultScanner() Scanner {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// TestingOnlyScanner returns a scanner that uses the built-in license scanner from the licensecheck package.
|
func NewScanner(scan func([]byte) licensecheck.Coverage, coverage float64) Scanner {
|
||||||
// THIS IS ONLY MEANT FOR TEST CODE, NOT PRODUCTION CODE.
|
return scanner{
|
||||||
func TestingOnlyScanner() Scanner {
|
coverageThreshold: coverage,
|
||||||
return &scanner{
|
scanner: scan,
|
||||||
coverageThreshold: coverageThreshold,
|
|
||||||
scanner: licensecheck.Scan,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s scanner) IdentifyLicenseIDs(_ context.Context, reader io.Reader) ([]string, error) {
|
func (s scanner) IdentifyLicenseIDs(_ context.Context, reader io.Reader) ([]string, []byte, error) {
|
||||||
if s.scanner == nil {
|
if s.scanner == nil {
|
||||||
return nil, nil
|
return nil, nil, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
content, err := io.ReadAll(reader)
|
content, err := io.ReadAll(reader)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
cov := s.scanner(content)
|
cov := s.scanner(content)
|
||||||
if cov.Percent < s.coverageThreshold {
|
if cov.Percent < s.coverageThreshold {
|
||||||
// unknown or no licenses here?
|
// unknown or no licenses here?
|
||||||
return nil, nil
|
// => return binary content
|
||||||
|
return nil, content, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
var ids []string
|
var ids []string
|
||||||
for _, m := range cov.Match {
|
for _, m := range cov.Match {
|
||||||
ids = append(ids, m.ID)
|
ids = append(ids, m.ID)
|
||||||
}
|
}
|
||||||
return ids, nil
|
return ids, nil, nil
|
||||||
}
|
}
|
||||||
|
|||||||
83
internal/licenses/scanner_test.go
Normal file
83
internal/licenses/scanner_test.go
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
package licenses
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"context"
|
||||||
|
"os"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/google/licensecheck"
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestIdentifyLicenseIDs(t *testing.T) {
|
||||||
|
type expectation struct {
|
||||||
|
yieldError bool
|
||||||
|
ids []string
|
||||||
|
content []byte
|
||||||
|
}
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
in string
|
||||||
|
expected expectation
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "apache license 2.0",
|
||||||
|
in: `test-fixtures/apache-license-2.0`,
|
||||||
|
expected: expectation{
|
||||||
|
yieldError: false,
|
||||||
|
ids: []string{"Apache-2.0"},
|
||||||
|
content: []byte{},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "custom license",
|
||||||
|
in: "test-fixtures/nvidia-software-and-cuda-supplement",
|
||||||
|
expected: expectation{
|
||||||
|
yieldError: false,
|
||||||
|
ids: []string{},
|
||||||
|
content: mustOpen("test-fixtures/nvidia-software-and-cuda-supplement"),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, test := range tests {
|
||||||
|
t.Run(test.name, func(t *testing.T) {
|
||||||
|
content, err := os.ReadFile(test.in)
|
||||||
|
require.NoError(t, err)
|
||||||
|
ids, content, err := testScanner().IdentifyLicenseIDs(context.TODO(), bytes.NewReader(content))
|
||||||
|
if test.expected.yieldError {
|
||||||
|
require.Error(t, err)
|
||||||
|
} else {
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
require.Len(t, ids, len(test.expected.ids))
|
||||||
|
require.Len(t, content, len(test.expected.content))
|
||||||
|
|
||||||
|
if len(test.expected.ids) > 0 {
|
||||||
|
require.Equal(t, ids, test.expected.ids)
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(test.expected.content) > 0 {
|
||||||
|
require.Equal(t, content, test.expected.content)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func testScanner() Scanner {
|
||||||
|
return &scanner{
|
||||||
|
coverageThreshold: coverageThreshold,
|
||||||
|
scanner: licensecheck.Scan,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func mustOpen(fixture string) []byte {
|
||||||
|
content, err := os.ReadFile(fixture)
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return content
|
||||||
|
}
|
||||||
@ -2,24 +2,54 @@ package licenses
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"crypto/sha256"
|
||||||
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
"github.com/anchore/syft/syft/file"
|
"github.com/anchore/syft/syft/file"
|
||||||
"github.com/anchore/syft/syft/license"
|
"github.com/anchore/syft/syft/license"
|
||||||
"github.com/anchore/syft/syft/pkg"
|
"github.com/anchore/syft/syft/pkg"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
unknownLicenseType = "UNKNOWN"
|
||||||
|
UnknownLicensePrefix = unknownLicenseType + "_"
|
||||||
|
)
|
||||||
|
|
||||||
|
func getCustomLicenseContentHash(contents []byte) string {
|
||||||
|
hash := sha256.Sum256(contents)
|
||||||
|
return fmt.Sprintf("%x", hash[:])
|
||||||
|
}
|
||||||
|
|
||||||
// Search scans the contents of a license file to attempt to determine the type of license it is
|
// Search scans the contents of a license file to attempt to determine the type of license it is
|
||||||
func Search(ctx context.Context, scanner Scanner, reader file.LocationReadCloser) (licenses []pkg.License, err error) {
|
func Search(ctx context.Context, scanner Scanner, reader file.LocationReadCloser) (licenses []pkg.License, err error) {
|
||||||
licenses = make([]pkg.License, 0)
|
licenses = make([]pkg.License, 0)
|
||||||
|
|
||||||
ids, err := scanner.IdentifyLicenseIDs(ctx, reader)
|
ids, content, err := scanner.IdentifyLicenseIDs(ctx, reader)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, id := range ids {
|
// IdentifyLicenseIDs can only return a list of ID or content
|
||||||
lic := pkg.NewLicenseFromLocations(id, reader.Location)
|
// These return values are mutually exclusive.
|
||||||
lic.Type = license.Concluded
|
// If the scanner threshold for matching scores < 75% then we return the license full content
|
||||||
|
if len(ids) > 0 {
|
||||||
|
for _, id := range ids {
|
||||||
|
lic := pkg.NewLicenseFromLocations(id, reader.Location)
|
||||||
|
lic.Type = license.Concluded
|
||||||
|
|
||||||
|
licenses = append(licenses, lic)
|
||||||
|
}
|
||||||
|
} else if len(content) > 0 {
|
||||||
|
// harmonize line endings to unix compatible first:
|
||||||
|
// 1. \r\n => \n (Windows => UNIX)
|
||||||
|
// 2. \r => \n (Macintosh => UNIX)
|
||||||
|
content = []byte(strings.ReplaceAll(strings.ReplaceAll(string(content), "\r\n", "\n"), "\r", "\n"))
|
||||||
|
|
||||||
|
lic := pkg.NewLicenseFromLocations(unknownLicenseType, reader.Location)
|
||||||
|
lic.SPDXExpression = UnknownLicensePrefix + getCustomLicenseContentHash(content)
|
||||||
|
lic.Contents = string(content)
|
||||||
|
lic.Type = license.Declared
|
||||||
|
|
||||||
licenses = append(licenses, lic)
|
licenses = append(licenses, lic)
|
||||||
}
|
}
|
||||||
|
|||||||
95
internal/licenses/search_test.go
Normal file
95
internal/licenses/search_test.go
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
package licenses
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"context"
|
||||||
|
"io"
|
||||||
|
"os"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
|
||||||
|
"github.com/anchore/syft/syft/file"
|
||||||
|
"github.com/anchore/syft/syft/pkg"
|
||||||
|
)
|
||||||
|
|
||||||
|
type bytesReadCloser struct {
|
||||||
|
bytes.Buffer
|
||||||
|
}
|
||||||
|
|
||||||
|
func (brc *bytesReadCloser) Close() error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func newBytesReadCloser(data []byte) *bytesReadCloser {
|
||||||
|
return &bytesReadCloser{
|
||||||
|
Buffer: *bytes.NewBuffer(data),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestSearch(t *testing.T) {
|
||||||
|
type expectation struct {
|
||||||
|
yieldError bool
|
||||||
|
licenses []pkg.License
|
||||||
|
}
|
||||||
|
testLocation := file.NewLocation("LICENSE")
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
in string
|
||||||
|
expected expectation
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "apache license 2.0",
|
||||||
|
in: "test-fixtures/apache-license-2.0",
|
||||||
|
expected: expectation{
|
||||||
|
yieldError: false,
|
||||||
|
licenses: []pkg.License{
|
||||||
|
{
|
||||||
|
Value: "Apache-2.0",
|
||||||
|
SPDXExpression: "Apache-2.0",
|
||||||
|
Type: "concluded",
|
||||||
|
URLs: nil,
|
||||||
|
Locations: file.NewLocationSet(testLocation),
|
||||||
|
Contents: "",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "custom license",
|
||||||
|
in: "test-fixtures/nvidia-software-and-cuda-supplement",
|
||||||
|
expected: expectation{
|
||||||
|
yieldError: false,
|
||||||
|
licenses: []pkg.License{
|
||||||
|
{
|
||||||
|
Value: "UNKNOWN",
|
||||||
|
SPDXExpression: "UNKNOWN_eebcea3ab1d1a28e671de90119ffcfb35fe86951e4af1b17af52b7a82fcf7d0a",
|
||||||
|
Type: "declared",
|
||||||
|
URLs: nil,
|
||||||
|
Locations: file.NewLocationSet(testLocation),
|
||||||
|
Contents: string(mustOpen("test-fixtures/nvidia-software-and-cuda-supplement")),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, test := range tests {
|
||||||
|
t.Run(test.name, func(t *testing.T) {
|
||||||
|
content, err := os.ReadFile(test.in)
|
||||||
|
require.NoError(t, err)
|
||||||
|
result, err := Search(context.TODO(), testScanner(), file.NewLocationReadCloser(file.NewLocation("LICENSE"), io.NopCloser(bytes.NewReader(content))))
|
||||||
|
if test.expected.yieldError {
|
||||||
|
require.Error(t, err)
|
||||||
|
} else {
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
require.Len(t, result, len(test.expected.licenses))
|
||||||
|
|
||||||
|
if len(test.expected.licenses) > 0 {
|
||||||
|
require.Equal(t, test.expected.licenses, result)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
169
internal/licenses/test-fixtures/apache-license-2.0
Normal file
169
internal/licenses/test-fixtures/apache-license-2.0
Normal file
@ -0,0 +1,169 @@
|
|||||||
|
Apache License
|
||||||
|
Version 2.0, January 2004
|
||||||
|
http://www.apache.org/licenses/
|
||||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
|
1. Definitions.
|
||||||
|
"License" shall mean the terms and conditions for use, reproduction,
|
||||||
|
and distribution as defined by Sections 1 through 9 of this document.
|
||||||
|
"Licensor" shall mean the copyright owner or entity authorized by
|
||||||
|
the copyright owner that is granting the License.
|
||||||
|
"Legal Entity" shall mean the union of the acting entity and all
|
||||||
|
other entities that control, are controlled by, or are under common
|
||||||
|
control with that entity. For the purposes of this definition,
|
||||||
|
"control" means (i) the power, direct or indirect, to cause the
|
||||||
|
direction or management of such entity, whether by contract or
|
||||||
|
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity
|
||||||
|
exercising permissions granted by this License.
|
||||||
|
"Source" form shall mean the preferred form for making modifications,
|
||||||
|
including but not limited to software source code, documentation
|
||||||
|
source, and configuration files.
|
||||||
|
"Object" form shall mean any form resulting from mechanical
|
||||||
|
transformation or translation of a Source form, including but
|
||||||
|
not limited to compiled object code, generated documentation,
|
||||||
|
and conversions to other media types.
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or
|
||||||
|
Object form, made available under the License, as indicated by a
|
||||||
|
copyright notice that is included in or attached to the work
|
||||||
|
(an example is provided in the Appendix below).
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object
|
||||||
|
form, that is based on (or derived from) the Work and for which the
|
||||||
|
editorial revisions, annotations, elaborations, or other modifications
|
||||||
|
represent, as a whole, an original work of authorship. For the purposes
|
||||||
|
of this License, Derivative Works shall not include works that remain
|
||||||
|
separable from, or merely link (or bind by name) to the interfaces of,
|
||||||
|
the Work and Derivative Works thereof.
|
||||||
|
"Contribution" shall mean any work of authorship, including
|
||||||
|
the original version of the Work and any modifications or additions
|
||||||
|
to that Work or Derivative Works thereof, that is intentionally
|
||||||
|
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||||
|
or by an individual or Legal Entity authorized to submit on behalf of
|
||||||
|
the copyright owner. For the purposes of this definition, "submitted"
|
||||||
|
means any form of electronic, verbal, or written communication sent
|
||||||
|
to the Licensor or its representatives, including but not limited to
|
||||||
|
communication on electronic mailing lists, source code control systems,
|
||||||
|
and issue tracking systems that are managed by, or on behalf of, the
|
||||||
|
Licensor for the purpose of discussing and improving the Work, but
|
||||||
|
excluding communication that is conspicuously marked or otherwise
|
||||||
|
designated in writing by the copyright owner as "Not a Contribution."
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||||
|
on behalf of whom a Contribution has been received by Licensor and
|
||||||
|
subsequently incorporated within the Work.
|
||||||
|
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
copyright license to reproduce, prepare Derivative Works of,
|
||||||
|
publicly display, publicly perform, sublicense, and distribute the
|
||||||
|
Work and such Derivative Works in Source or Object form.
|
||||||
|
3. Grant of Patent License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
(except as stated in this section) patent license to make, have made,
|
||||||
|
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||||
|
where such license applies only to those patent claims licensable
|
||||||
|
by such Contributor that are necessarily infringed by their
|
||||||
|
Contribution(s) alone or by combination of their Contribution(s)
|
||||||
|
with the Work to which such Contribution(s) was submitted. If You
|
||||||
|
institute patent litigation against any entity (including a
|
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||||
|
or a Contribution incorporated within the Work constitutes direct
|
||||||
|
or contributory patent infringement, then any patent licenses
|
||||||
|
granted to You under this License for that Work shall terminate
|
||||||
|
as of the date such litigation is filed.
|
||||||
|
4. Redistribution. You may reproduce and distribute copies of the
|
||||||
|
Work or Derivative Works thereof in any medium, with or without
|
||||||
|
modifications, and in Source or Object form, provided that You
|
||||||
|
meet the following conditions:
|
||||||
|
(a) You must give any other recipients of the Work or
|
||||||
|
Derivative Works a copy of this License; and
|
||||||
|
(b) You must cause any modified files to carry prominent notices
|
||||||
|
stating that You changed the files; and
|
||||||
|
(c) You must retain, in the Source form of any Derivative Works
|
||||||
|
that You distribute, all copyright, patent, trademark, and
|
||||||
|
attribution notices from the Source form of the Work,
|
||||||
|
excluding those notices that do not pertain to any part of
|
||||||
|
the Derivative Works; and
|
||||||
|
(d) If the Work includes a "NOTICE" text file as part of its
|
||||||
|
distribution, then any Derivative Works that You distribute must
|
||||||
|
include a readable copy of the attribution notices contained
|
||||||
|
within such NOTICE file, excluding those notices that do not
|
||||||
|
pertain to any part of the Derivative Works, in at least one
|
||||||
|
of the following places: within a NOTICE text file distributed
|
||||||
|
as part of the Derivative Works; within the Source form or
|
||||||
|
documentation, if provided along with the Derivative Works; or,
|
||||||
|
within a display generated by the Derivative Works, if and
|
||||||
|
wherever such third-party notices normally appear. The contents
|
||||||
|
of the NOTICE file are for informational purposes only and
|
||||||
|
do not modify the License. You may add Your own attribution
|
||||||
|
notices within Derivative Works that You distribute, alongside
|
||||||
|
or as an addendum to the NOTICE text from the Work, provided
|
||||||
|
that such additional attribution notices cannot be construed
|
||||||
|
as modifying the License.
|
||||||
|
You may add Your own copyright statement to Your modifications and
|
||||||
|
may provide additional or different license terms and conditions
|
||||||
|
for use, reproduction, or distribution of Your modifications, or
|
||||||
|
for any such Derivative Works as a whole, provided Your use,
|
||||||
|
reproduction, and distribution of the Work otherwise complies with
|
||||||
|
the conditions stated in this License.
|
||||||
|
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||||
|
any Contribution intentionally submitted for inclusion in the Work
|
||||||
|
by You to the Licensor shall be under the terms and conditions of
|
||||||
|
this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify
|
||||||
|
the terms of any separate license agreement you may have executed
|
||||||
|
with Licensor regarding such Contributions.
|
||||||
|
6. Trademarks. This License does not grant permission to use the trade
|
||||||
|
names, trademarks, service marks, or product names of the Licensor,
|
||||||
|
except as required for reasonable and customary use in describing the
|
||||||
|
origin of the Work and reproducing the content of the NOTICE file.
|
||||||
|
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||||
|
agreed to in writing, Licensor provides the Work (and each
|
||||||
|
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
implied, including, without limitation, any warranties or conditions
|
||||||
|
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||||
|
appropriateness of using or redistributing the Work and assume any
|
||||||
|
risks associated with Your exercise of permissions under this License.
|
||||||
|
8. Limitation of Liability. In no event and under no legal theory,
|
||||||
|
whether in tort (including negligence), contract, or otherwise,
|
||||||
|
unless required by applicable law (such as deliberate and grossly
|
||||||
|
negligent acts) or agreed to in writing, shall any Contributor be
|
||||||
|
liable to You for damages, including any direct, indirect, special,
|
||||||
|
incidental, or consequential damages of any character arising as a
|
||||||
|
result of this License or out of the use or inability to use the
|
||||||
|
Work (including but not limited to damages for loss of goodwill,
|
||||||
|
work stoppage, computer failure or malfunction, or any and all
|
||||||
|
other commercial damages or losses), even if such Contributor
|
||||||
|
has been advised of the possibility of such damages.
|
||||||
|
9. Accepting Warranty or Additional Liability. While redistributing
|
||||||
|
the Work or Derivative Works thereof, You may choose to offer,
|
||||||
|
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||||
|
or other liability obligations and/or rights consistent with this
|
||||||
|
License. However, in accepting such obligations, You may act only
|
||||||
|
on Your own behalf and on Your sole responsibility, not on behalf
|
||||||
|
of any other Contributor, and only if You agree to indemnify,
|
||||||
|
defend, and hold each Contributor harmless for any liability
|
||||||
|
incurred by, or claims asserted against, such Contributor by reason
|
||||||
|
of your accepting any such warranty or additional liability.
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
APPENDIX: How to apply the Apache License to your work.
|
||||||
|
To apply the Apache License to your work, attach the following
|
||||||
|
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||||
|
replaced with your own identifying information. (Don't include
|
||||||
|
the brackets!) The text should be enclosed in the appropriate
|
||||||
|
comment syntax for the file format. We also recommend that a
|
||||||
|
file or class name and description of purpose be included on the
|
||||||
|
same "printed page" as the copyright notice for easier
|
||||||
|
identification within third-party archives.
|
||||||
|
Copyright [yyyy] [name of copyright owner]
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
@ -0,0 +1,5 @@
|
|||||||
|
End User License Agreement
|
||||||
|
--------------------------
|
||||||
|
|
||||||
|
NVIDIA Software License Agreement and CUDA Supplement to
|
||||||
|
Software License Agreement. Last updated: October 8, 2021
|
||||||
@ -2750,4 +2750,4 @@
|
|||||||
"type": "array"
|
"type": "array"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
2785
schema/json/schema-16.0.21.json
Normal file
2785
schema/json/schema-16.0.21.json
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "anchore.io/schema/syft/json/16.0.20/document",
|
"$id": "anchore.io/schema/syft/json/16.0.21/document",
|
||||||
"$ref": "#/$defs/Document",
|
"$ref": "#/$defs/Document",
|
||||||
"$defs": {
|
"$defs": {
|
||||||
"AlpmDbEntry": {
|
"AlpmDbEntry": {
|
||||||
@ -1288,6 +1288,9 @@
|
|||||||
"$ref": "#/$defs/Location"
|
"$ref": "#/$defs/Location"
|
||||||
},
|
},
|
||||||
"type": "array"
|
"type": "array"
|
||||||
|
},
|
||||||
|
"contents": {
|
||||||
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"type": "object",
|
"type": "object",
|
||||||
|
|||||||
@ -15,6 +15,7 @@ import (
|
|||||||
"github.com/spdx/tools-golang/spdx"
|
"github.com/spdx/tools-golang/spdx"
|
||||||
|
|
||||||
"github.com/anchore/packageurl-go"
|
"github.com/anchore/packageurl-go"
|
||||||
|
internallicenses "github.com/anchore/syft/internal/licenses"
|
||||||
"github.com/anchore/syft/internal/log"
|
"github.com/anchore/syft/internal/log"
|
||||||
"github.com/anchore/syft/internal/mimetype"
|
"github.com/anchore/syft/internal/mimetype"
|
||||||
"github.com/anchore/syft/internal/relationship"
|
"github.com/anchore/syft/internal/relationship"
|
||||||
@ -762,10 +763,16 @@ func toOtherLicenses(catalog *pkg.Collection) []*spdx.OtherLicense {
|
|||||||
if license.Value == "" {
|
if license.Value == "" {
|
||||||
value, _ = strings.CutPrefix(license.ID, "LicenseRef-")
|
value, _ = strings.CutPrefix(license.ID, "LicenseRef-")
|
||||||
}
|
}
|
||||||
result = append(result, &spdx.OtherLicense{
|
other := &spdx.OtherLicense{
|
||||||
LicenseIdentifier: license.ID,
|
LicenseIdentifier: license.ID,
|
||||||
ExtractedText: value,
|
ExtractedText: value,
|
||||||
})
|
}
|
||||||
|
customPrefix := spdxlicense.LicenseRefPrefix + helpers.SanitizeElementID(internallicenses.UnknownLicensePrefix)
|
||||||
|
if strings.HasPrefix(license.ID, customPrefix) {
|
||||||
|
other.LicenseName = strings.TrimPrefix(license.ID, customPrefix)
|
||||||
|
other.LicenseComment = strings.Trim(internallicenses.UnknownLicensePrefix, "-_")
|
||||||
|
}
|
||||||
|
result = append(result, other)
|
||||||
}
|
}
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,10 +1,12 @@
|
|||||||
package helpers
|
package helpers
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"encoding/base64"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/CycloneDX/cyclonedx-go"
|
"github.com/CycloneDX/cyclonedx-go"
|
||||||
|
|
||||||
|
"github.com/anchore/syft/internal/licenses"
|
||||||
"github.com/anchore/syft/internal/spdxlicense"
|
"github.com/anchore/syft/internal/spdxlicense"
|
||||||
"github.com/anchore/syft/syft/pkg"
|
"github.com/anchore/syft/syft/pkg"
|
||||||
)
|
)
|
||||||
@ -110,7 +112,7 @@ func separateLicenses(p pkg.Package) (spdx, other cyclonedx.Licenses, expression
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
if l.SPDXExpression != "" {
|
if l.SPDXExpression != "" && !strings.HasPrefix(l.SPDXExpression, licenses.UnknownLicensePrefix) {
|
||||||
// COMPLEX EXPRESSION CASE
|
// COMPLEX EXPRESSION CASE
|
||||||
ex = append(ex, l.SPDXExpression)
|
ex = append(ex, l.SPDXExpression)
|
||||||
continue
|
continue
|
||||||
@ -118,17 +120,43 @@ func separateLicenses(p pkg.Package) (spdx, other cyclonedx.Licenses, expression
|
|||||||
|
|
||||||
// license string that are not valid spdx expressions or ids
|
// license string that are not valid spdx expressions or ids
|
||||||
// we only use license Name here since we cannot guarantee that the license is a valid SPDX expression
|
// we only use license Name here since we cannot guarantee that the license is a valid SPDX expression
|
||||||
if len(l.URLs) > 0 {
|
if len(l.URLs) > 0 && !strings.HasPrefix(l.SPDXExpression, licenses.UnknownLicensePrefix) {
|
||||||
processLicenseURLs(l, "", &otherc)
|
processLicenseURLs(l, "", &otherc)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
otherc = append(otherc, cyclonedx.LicenseChoice{
|
|
||||||
|
otherc = append(otherc, processCustomLicense(l)...)
|
||||||
|
}
|
||||||
|
return spdxc, otherc, ex
|
||||||
|
}
|
||||||
|
|
||||||
|
func processCustomLicense(l pkg.License) cyclonedx.Licenses {
|
||||||
|
result := cyclonedx.Licenses{}
|
||||||
|
if strings.HasPrefix(l.SPDXExpression, licenses.UnknownLicensePrefix) {
|
||||||
|
cyclonedxLicense := &cyclonedx.License{
|
||||||
|
Name: l.SPDXExpression,
|
||||||
|
}
|
||||||
|
if len(l.URLs) > 0 {
|
||||||
|
cyclonedxLicense.URL = l.URLs[0]
|
||||||
|
}
|
||||||
|
if len(l.Contents) > 0 {
|
||||||
|
cyclonedxLicense.Text = &cyclonedx.AttachedText{
|
||||||
|
Content: base64.StdEncoding.EncodeToString([]byte(l.Contents)),
|
||||||
|
}
|
||||||
|
cyclonedxLicense.Text.ContentType = "text/plain"
|
||||||
|
cyclonedxLicense.Text.Encoding = "base64"
|
||||||
|
}
|
||||||
|
result = append(result, cyclonedx.LicenseChoice{
|
||||||
|
License: cyclonedxLicense,
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
result = append(result, cyclonedx.LicenseChoice{
|
||||||
License: &cyclonedx.License{
|
License: &cyclonedx.License{
|
||||||
Name: l.Value,
|
Name: l.Value,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
return spdxc, otherc, ex
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
func processLicenseURLs(l pkg.License, spdxID string, populate *cyclonedx.Licenses) {
|
func processLicenseURLs(l pkg.License, spdxID string, populate *cyclonedx.Licenses) {
|
||||||
|
|||||||
@ -5,6 +5,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
"github.com/anchore/syft/internal/licenses"
|
||||||
"github.com/anchore/syft/internal/spdxlicense"
|
"github.com/anchore/syft/internal/spdxlicense"
|
||||||
"github.com/anchore/syft/syft/license"
|
"github.com/anchore/syft/syft/license"
|
||||||
"github.com/anchore/syft/syft/pkg"
|
"github.com/anchore/syft/syft/pkg"
|
||||||
@ -69,19 +70,26 @@ func ParseLicenses(raw []pkg.License) (concluded, declared []SPDXLicense) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
candidate := SPDXLicense{}
|
candidate := SPDXLicense{}
|
||||||
if l.SPDXExpression != "" {
|
if l.SPDXExpression != "" && !strings.HasPrefix(l.SPDXExpression, licenses.UnknownLicensePrefix) {
|
||||||
candidate.ID = l.SPDXExpression
|
candidate.ID = l.SPDXExpression
|
||||||
} else {
|
} else {
|
||||||
// we did not find a valid SPDX license ID so treat as separate license
|
|
||||||
if len(l.Value) <= 64 {
|
|
||||||
// if the license text is less than the size of the hash,
|
|
||||||
// just use it directly so the id is more readable
|
|
||||||
candidate.ID = spdxlicense.LicenseRefPrefix + SanitizeElementID(l.Value)
|
|
||||||
} else {
|
|
||||||
hash := sha256.Sum256([]byte(l.Value))
|
|
||||||
candidate.ID = fmt.Sprintf("%s%x", spdxlicense.LicenseRefPrefix, hash)
|
|
||||||
}
|
|
||||||
candidate.Value = l.Value
|
candidate.Value = l.Value
|
||||||
|
// we did not find a valid SPDX license ID so treat as separate license
|
||||||
|
if strings.HasPrefix(l.SPDXExpression, licenses.UnknownLicensePrefix) {
|
||||||
|
candidate.ID = spdxlicense.LicenseRefPrefix + SanitizeElementID(l.SPDXExpression)
|
||||||
|
if len(l.Contents) > 0 {
|
||||||
|
candidate.Value = l.Contents
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if len(l.Value) <= 64 {
|
||||||
|
// if the license text is less than the size of the hash,
|
||||||
|
// just use it directly so the id is more readable
|
||||||
|
candidate.ID = spdxlicense.LicenseRefPrefix + SanitizeElementID(l.Value)
|
||||||
|
} else {
|
||||||
|
hash := sha256.Sum256([]byte(l.Value))
|
||||||
|
candidate.ID = fmt.Sprintf("%s%x", spdxlicense.LicenseRefPrefix, hash)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
switch l.Type {
|
switch l.Type {
|
||||||
|
|||||||
@ -51,6 +51,7 @@ type License struct {
|
|||||||
Type license.Type `json:"type"`
|
Type license.Type `json:"type"`
|
||||||
URLs []string `json:"urls"`
|
URLs []string `json:"urls"`
|
||||||
Locations []file.Location `json:"locations"`
|
Locations []file.Location `json:"locations"`
|
||||||
|
Contents string `json:"contents,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func newModelLicensesFromValues(licenses []string) (ml []License) {
|
func newModelLicensesFromValues(licenses []string) (ml []License) {
|
||||||
|
|||||||
@ -234,6 +234,7 @@ func toLicenseModel(pkgLicenses []pkg.License) (modelLicenses []model.License) {
|
|||||||
Type: l.Type,
|
Type: l.Type,
|
||||||
URLs: urls,
|
URLs: urls,
|
||||||
Locations: locations,
|
Locations: locations,
|
||||||
|
Contents: l.Contents,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
|
|||||||
@ -164,6 +164,7 @@ func toSyftLicenses(m []model.License) (p []pkg.License) {
|
|||||||
Type: l.Type,
|
Type: l.Type,
|
||||||
URLs: l.URLs,
|
URLs: l.URLs,
|
||||||
Locations: file.NewLocationSet(l.Locations...),
|
Locations: file.NewLocationSet(l.Locations...),
|
||||||
|
Contents: l.Contents,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
|
|||||||
@ -36,6 +36,7 @@ type goLicense struct {
|
|||||||
Type license.Type `json:"type,omitempty"`
|
Type license.Type `json:"type,omitempty"`
|
||||||
URLs []string `json:"urls,omitempty"`
|
URLs []string `json:"urls,omitempty"`
|
||||||
Locations []string `json:"locations,omitempty"`
|
Locations []string `json:"locations,omitempty"`
|
||||||
|
Contents string `json:"contents,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type goLicenseResolver struct {
|
type goLicenseResolver struct {
|
||||||
@ -449,6 +450,7 @@ func toPkgLicenses(goLicenses []goLicense) []pkg.License {
|
|||||||
Type: l.Type,
|
Type: l.Type,
|
||||||
URLs: l.URLs,
|
URLs: l.URLs,
|
||||||
Locations: toPkgLocations(l.Locations),
|
Locations: toPkgLocations(l.Locations),
|
||||||
|
Contents: l.Contents,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
return requireCollection(out)
|
return requireCollection(out)
|
||||||
@ -471,6 +473,7 @@ func toGoLicenses(pkgLicenses []pkg.License) []goLicense {
|
|||||||
Type: l.Type,
|
Type: l.Type,
|
||||||
URLs: l.URLs,
|
URLs: l.URLs,
|
||||||
Locations: toGoLocations(l.Locations),
|
Locations: toGoLocations(l.Locations),
|
||||||
|
Contents: l.Contents,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
return out
|
return out
|
||||||
|
|||||||
@ -14,6 +14,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/google/licensecheck"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
|
|
||||||
"github.com/anchore/syft/internal/licenses"
|
"github.com/anchore/syft/internal/licenses"
|
||||||
@ -70,7 +71,7 @@ func Test_LicenseSearch(t *testing.T) {
|
|||||||
|
|
||||||
localVendorDir := filepath.Join(wd, "test-fixtures", "licenses-vendor")
|
localVendorDir := filepath.Join(wd, "test-fixtures", "licenses-vendor")
|
||||||
|
|
||||||
licenseScanner := licenses.TestingOnlyScanner()
|
licenseScanner := licenses.NewScanner(licensecheck.Scan, float64(75))
|
||||||
|
|
||||||
tests := []struct {
|
tests := []struct {
|
||||||
name string
|
name string
|
||||||
@ -295,7 +296,7 @@ func Test_findVersionPath(t *testing.T) {
|
|||||||
|
|
||||||
func Test_walkDirErrors(t *testing.T) {
|
func Test_walkDirErrors(t *testing.T) {
|
||||||
resolver := newGoLicenseResolver("", CatalogerConfig{})
|
resolver := newGoLicenseResolver("", CatalogerConfig{})
|
||||||
_, err := resolver.findLicensesInFS(context.Background(), licenses.TestingOnlyScanner(), "somewhere", badFS{})
|
_, err := resolver.findLicensesInFS(context.Background(), licenses.NewScanner(licensecheck.Scan, float64(75)), "somewhere", badFS{})
|
||||||
require.Error(t, err)
|
require.Error(t, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -313,8 +314,7 @@ func Test_noLocalGoModDir(t *testing.T) {
|
|||||||
validTmp := t.TempDir()
|
validTmp := t.TempDir()
|
||||||
require.NoError(t, os.MkdirAll(filepath.Join(validTmp, "mod@ver"), 0700|os.ModeDir))
|
require.NoError(t, os.MkdirAll(filepath.Join(validTmp, "mod@ver"), 0700|os.ModeDir))
|
||||||
|
|
||||||
licenseScanner := licenses.TestingOnlyScanner()
|
licenseScanner := licenses.NewScanner(licensecheck.Scan, float64(75))
|
||||||
|
|
||||||
tests := []struct {
|
tests := []struct {
|
||||||
name string
|
name string
|
||||||
dir string
|
dir string
|
||||||
@ -353,3 +353,30 @@ func Test_noLocalGoModDir(t *testing.T) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestLicenseConversion(t *testing.T) {
|
||||||
|
inputLicenses := []pkg.License{
|
||||||
|
{
|
||||||
|
Value: "Apache-2.0",
|
||||||
|
SPDXExpression: "Apache-2.0",
|
||||||
|
Type: "concluded",
|
||||||
|
URLs: nil,
|
||||||
|
Locations: file.NewLocationSet(file.NewLocation("LICENSE")),
|
||||||
|
Contents: "",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Value: "UNKNOWN",
|
||||||
|
SPDXExpression: "UNKNOWN_4d1cffe420916f2b706300ab63fcafaf35226a0ad3725cb9f95b26036cefae32",
|
||||||
|
Type: "declared",
|
||||||
|
URLs: nil,
|
||||||
|
Locations: file.NewLocationSet(file.NewLocation("LICENSE2")),
|
||||||
|
Contents: "NVIDIA Software License Agreement and CUDA Supplement to Software License Agreement",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
goLicenses := toGoLicenses(inputLicenses)
|
||||||
|
|
||||||
|
result := toPkgLicenses(goLicenses)
|
||||||
|
|
||||||
|
require.Equal(t, inputLicenses, result)
|
||||||
|
}
|
||||||
|
|||||||
@ -15,6 +15,7 @@ import (
|
|||||||
"syscall"
|
"syscall"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/google/licensecheck"
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
|
|
||||||
@ -169,7 +170,7 @@ func TestBuildGoPkgInfo(t *testing.T) {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
licenseScanner := licenses.TestingOnlyScanner()
|
licenseScanner := licenses.NewScanner(licensecheck.Scan, float64(75))
|
||||||
|
|
||||||
tests := []struct {
|
tests := []struct {
|
||||||
name string
|
name string
|
||||||
|
|||||||
@ -14,6 +14,7 @@ import (
|
|||||||
|
|
||||||
"github.com/google/go-cmp/cmp"
|
"github.com/google/go-cmp/cmp"
|
||||||
"github.com/google/go-cmp/cmp/cmpopts"
|
"github.com/google/go-cmp/cmp/cmpopts"
|
||||||
|
"github.com/google/licensecheck"
|
||||||
"github.com/gookit/color"
|
"github.com/gookit/color"
|
||||||
"github.com/scylladb/go-set/strset"
|
"github.com/scylladb/go-set/strset"
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
@ -32,7 +33,7 @@ import (
|
|||||||
func TestSearchMavenForLicenses(t *testing.T) {
|
func TestSearchMavenForLicenses(t *testing.T) {
|
||||||
url := maventest.MockRepo(t, "internal/maven/test-fixtures/maven-repo")
|
url := maventest.MockRepo(t, "internal/maven/test-fixtures/maven-repo")
|
||||||
|
|
||||||
ctx := licenses.SetContextLicenseScanner(context.Background(), licenses.TestingOnlyScanner())
|
ctx := licenses.SetContextLicenseScanner(context.Background(), licenses.NewScanner(licensecheck.Scan, float64(75)))
|
||||||
|
|
||||||
tests := []struct {
|
tests := []struct {
|
||||||
name string
|
name string
|
||||||
@ -91,7 +92,7 @@ func TestSearchMavenForLicenses(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestParseJar(t *testing.T) {
|
func TestParseJar(t *testing.T) {
|
||||||
ctx := licenses.SetContextLicenseScanner(context.Background(), licenses.TestingOnlyScanner())
|
ctx := licenses.SetContextLicenseScanner(context.Background(), licenses.NewScanner(licensecheck.Scan, float64(75)))
|
||||||
|
|
||||||
tests := []struct {
|
tests := []struct {
|
||||||
name string
|
name string
|
||||||
@ -1374,7 +1375,7 @@ func Test_parseJavaArchive_regressions(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func Test_deterministicMatchingPomProperties(t *testing.T) {
|
func Test_deterministicMatchingPomProperties(t *testing.T) {
|
||||||
ctx := licenses.SetContextLicenseScanner(context.Background(), licenses.TestingOnlyScanner())
|
ctx := licenses.SetContextLicenseScanner(context.Background(), licenses.NewScanner(licensecheck.Scan, float64(75)))
|
||||||
|
|
||||||
tests := []struct {
|
tests := []struct {
|
||||||
fixture string
|
fixture string
|
||||||
|
|||||||
@ -31,6 +31,7 @@ type License struct {
|
|||||||
Type license.Type
|
Type license.Type
|
||||||
URLs []string `hash:"ignore"`
|
URLs []string `hash:"ignore"`
|
||||||
Locations file.LocationSet `hash:"ignore"`
|
Locations file.LocationSet `hash:"ignore"`
|
||||||
|
Contents string `hash:"ignore"` // The optional binary contents of the license file
|
||||||
}
|
}
|
||||||
|
|
||||||
type Licenses []License
|
type Licenses []License
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user