Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

replace print stmt by logs #378

Merged
merged 2 commits into from
Dec 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions pkg/compliance/bsiV2.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ package compliance

import (
"context"
"fmt"
"strings"

"github.com/interlynk-io/sbomqs/pkg/compliance/common"
Expand Down Expand Up @@ -108,7 +107,6 @@ func bsiV2SbomSignature(doc sbom.Document) *db.Record {
sig := doc.Signature().GetSigValue()
valid, err := common.VerifySignature(pubKey, blob, sig)
if err != nil {
fmt.Printf("Verification failed: %v\n", err)
return db.NewRecordStmt(SBOM_SIGNATURE, "doc", "Verification failed!", 0.0, "")
}
if valid {
Expand Down
4 changes: 3 additions & 1 deletion pkg/compliance/bsiV2_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package compliance

import (
"context"
"testing"

"github.com/interlynk-io/sbomqs/pkg/compliance/common"
Expand Down Expand Up @@ -334,8 +335,9 @@ func TestSpdxSBOMWithSignature(t *testing.T) {
}

func cdxDocWithEmbeddedSignature() sbom.Document {
context := context.Background()
sbomFile := "../../samples/signature-test-data/stree-cdxgen-signed-sbom.cdx.json"
standaloneSBOMFile, signatureRetrieved, publicKeyRetrieved, _ := common.RetrieveSignatureFromSBOM(sbomFile)
standaloneSBOMFile, signatureRetrieved, publicKeyRetrieved, _ := common.RetrieveSignatureFromSBOM(context, sbomFile)

sig := sbom.Signature{
SigValue: signatureRetrieved,
Expand Down
28 changes: 17 additions & 11 deletions pkg/compliance/common/sig.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ package common

import (
"bytes"
"context"
"crypto/rsa"
"crypto/x509"
"encoding/base64"
Expand All @@ -25,6 +26,7 @@ import (
"math/big"
"os"

"github.com/interlynk-io/sbomqs/pkg/logger"
"github.com/tidwall/sjson"
)

Expand All @@ -45,11 +47,14 @@ type PublicKey struct {
E string `json:"e"`
}

func RetrieveSignatureFromSBOM(sbomFile string) (string, string, string, error) {
func RetrieveSignatureFromSBOM(ctx context.Context, sbomFile string) (string, string, string, error) {
log := logger.FromContext(ctx)
log.Debugf("common.RetrieveSignatureFromSBOM()")
var err error

data, err := os.ReadFile(sbomFile)
if err != nil {
log.Debug("error reading SBOM file: %w", err)
return "", "", "", fmt.Errorf("error reading SBOM file: %w", err)
}

Expand All @@ -62,25 +67,26 @@ func RetrieveSignatureFromSBOM(sbomFile string) (string, string, string, error)
extracted_publick_key := "extracted_public_key.pem"

if err := json.Unmarshal(data, &sbom); err != nil {
fmt.Println("Error parsing SBOM JSON:", err)
log.Debug("Error parsing SBOM JSON: %w", err)
return "", "", "", fmt.Errorf("error unmarshalling SBOM JSON: %w", err)
}

if sbom.Signature == nil {
fmt.Println("signature and public key are not present in the SBOM")
log.Debug("signature and public key are not present in the SBOM")
return sbomFile, "", "", nil
}
fmt.Println("signature and public key are present in the SBOM")
log.Debug("signature and public key are present in the SBOM")

signatureValue, err := base64.StdEncoding.DecodeString(sbom.Signature.Value)
if err != nil {
log.Debug("error decoding signature: %w", err)
return "", "", "", fmt.Errorf("error decoding signature: %w", err)
}

if err := os.WriteFile(extracted_signature, signatureValue, 0o600); err != nil {
fmt.Println("Error writing signature to file:", err)
log.Debug("Error writing signature to file:", err)
}
fmt.Println("Signature written to file: extracted_signature.bin")
log.Debug("Signature written to file: extracted_signature.bin")

// extract the public key modulus and exponent
modulus, err := base64.StdEncoding.DecodeString(sbom.Signature.PublicKey.N)
Expand All @@ -89,7 +95,7 @@ func RetrieveSignatureFromSBOM(sbomFile string) (string, string, string, error)
}
exponent := DecodeBase64URLEncodingToInt(sbom.Signature.PublicKey.E)
if exponent == 0 {
fmt.Println("Invalid public key exponent.")
log.Debug("Invalid public key exponent.")
}

// create the RSA public key
Expand All @@ -100,18 +106,18 @@ func RetrieveSignatureFromSBOM(sbomFile string) (string, string, string, error)

pubKeyPEM := PublicKeyToPEM(pubKey)
if err := os.WriteFile(extracted_publick_key, pubKeyPEM, 0o600); err != nil {
fmt.Println("error writing public key to file:", err)
log.Debug("error writing public key to file: %w", err)
}

// remove the "signature" section
modifiedSBOM, err := sjson.DeleteBytes(data, "signature")
if err != nil {
fmt.Println("Error removing signature section:", err)
log.Debug("Error removing signature section: %w", err)
}

var normalizedSBOM bytes.Buffer
if err := json.Indent(&normalizedSBOM, modifiedSBOM, "", " "); err != nil {
fmt.Println("Error normalizing SBOM JSON:", err)
log.Debug("Error normalizing SBOM JSON: %w", err)
}

// save the modified SBOM to a new file without a trailing newline
Expand All @@ -120,7 +126,7 @@ func RetrieveSignatureFromSBOM(sbomFile string) (string, string, string, error)
return "", "", "", fmt.Errorf("error writing standalone SBOM file: %w", err)
}

fmt.Println("Standalone SBOM saved to:", standaloneSBOMFile)
log.Debug("Standalone SBOM saved to:", standaloneSBOMFile)
return standaloneSBOMFile, extracted_signature, extracted_publick_key, nil
}

Expand Down
5 changes: 1 addition & 4 deletions pkg/engine/compliance.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,17 +92,14 @@ func getSbomDocument(ctx context.Context, ep *Params) (*sbom.Document, error) {
publicKey := ep.PublicKey

if signature == "" && publicKey == "" {
standaloneSBOMFile, signatureRetrieved, publicKeyRetrieved, err := common.RetrieveSignatureFromSBOM(blob)
standaloneSBOMFile, signatureRetrieved, publicKeyRetrieved, err := common.RetrieveSignatureFromSBOM(ctx, blob)
if err != nil {
log.Fatalf("failed to retrieve signature and public key from embedded sbom: %w", err)
}
blob = standaloneSBOMFile
signature = signatureRetrieved
publicKey = publicKeyRetrieved
}
fmt.Println("Blob: ", blob)
fmt.Println("Signature: ", signature)
fmt.Println("PublicKey: ", publicKey)

sig := sbom.Signature{
SigValue: signature,
Expand Down
Loading