5d0816430f
* rename pkg/linksharing to linksharing * rename pkg/httpserver to linksharing/httpserver * rename pkg/eestream to uplink/eestream * rename pkg/stream to uplink/stream * rename pkg/metainfo/kvmetainfo to uplink/metainfo/kvmetainfo * rename pkg/auth/signing to pkg/signing * rename pkg/storage to uplink/storage * rename pkg/accounting to satellite/accounting * rename pkg/audit to satellite/audit * rename pkg/certdb to satellite/certdb * rename pkg/discovery to satellite/discovery * rename pkg/overlay to satellite/overlay * rename pkg/datarepair to satellite/repair
107 lines
3.6 KiB
Go
107 lines
3.6 KiB
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package signing
|
|
|
|
import (
|
|
"context"
|
|
|
|
"storj.io/storj/pkg/pb"
|
|
"storj.io/storj/pkg/storj"
|
|
)
|
|
|
|
// Signee is able to verify that the data signature belongs to the signee.
|
|
type Signee interface {
|
|
ID() storj.NodeID
|
|
HashAndVerifySignature(ctx context.Context, data, signature []byte) error
|
|
}
|
|
|
|
// VerifyOrderLimitSignature verifies that the signature inside order limit is valid and belongs to the satellite.
|
|
func VerifyOrderLimitSignature(ctx context.Context, satellite Signee, signed *pb.OrderLimit) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
bytes, err := EncodeOrderLimit(ctx, signed)
|
|
if err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
return satellite.HashAndVerifySignature(ctx, bytes, signed.SatelliteSignature)
|
|
}
|
|
|
|
// VerifyOrderSignature verifies that the signature inside order is valid and belongs to the uplink.
|
|
func VerifyOrderSignature(ctx context.Context, uplink Signee, signed *pb.Order) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
bytes, err := EncodeOrder(ctx, signed)
|
|
if err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
return uplink.HashAndVerifySignature(ctx, bytes, signed.UplinkSignature)
|
|
}
|
|
|
|
// VerifyUplinkOrderSignature verifies that the signature inside order is valid and belongs to the uplink.
|
|
func VerifyUplinkOrderSignature(ctx context.Context, publicKey storj.PiecePublicKey, signed *pb.Order) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
bytes, err := EncodeOrder(ctx, signed)
|
|
if err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
return Error.Wrap(publicKey.Verify(bytes, signed.UplinkSignature))
|
|
}
|
|
|
|
// VerifyPieceHashSignature verifies that the signature inside piece hash is valid and belongs to the signer, which is either uplink or storage node.
|
|
func VerifyPieceHashSignature(ctx context.Context, signee Signee, signed *pb.PieceHash) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
bytes, err := EncodePieceHash(ctx, signed)
|
|
if err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
return signee.HashAndVerifySignature(ctx, bytes, signed.Signature)
|
|
}
|
|
|
|
// VerifyUplinkPieceHashSignature verifies that the signature inside piece hash is valid and belongs to the signer, which is either uplink or storage node.
|
|
func VerifyUplinkPieceHashSignature(ctx context.Context, publicKey storj.PiecePublicKey, signed *pb.PieceHash) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
bytes, err := EncodePieceHash(ctx, signed)
|
|
if err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
return Error.Wrap(publicKey.Verify(bytes, signed.Signature))
|
|
}
|
|
|
|
// VerifyVoucher verifies that the signature inside voucher is valid and belongs to the satellite
|
|
func VerifyVoucher(ctx context.Context, satellite Signee, signed *pb.Voucher) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
bytes, err := EncodeVoucher(ctx, signed)
|
|
if err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
return satellite.HashAndVerifySignature(ctx, bytes, signed.SatelliteSignature)
|
|
}
|
|
|
|
// VerifyStreamID verifies that the signature inside stream ID belongs to the satellite
|
|
func VerifyStreamID(ctx context.Context, satellite Signee, signed *pb.SatStreamID) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
bytes, err := EncodeStreamID(ctx, signed)
|
|
if err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
return satellite.HashAndVerifySignature(ctx, bytes, signed.SatelliteSignature)
|
|
}
|
|
|
|
// VerifySegmentID verifies that the signature inside segment ID belongs to the satellite
|
|
func VerifySegmentID(ctx context.Context, satellite Signee, signed *pb.SatSegmentID) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
bytes, err := EncodeSegmentID(ctx, signed)
|
|
if err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
return satellite.HashAndVerifySignature(ctx, bytes, signed.SatelliteSignature)
|
|
}
|