2cf86703a3
* Initial Webserver Draft for Version Controlling * Rename type to avoid confusion * Move Function Calls into Version Package * Fix Linting and Language Typos * Fix Linting and Spelling Mistakes * Include Copyright * Include Copyright * Adjust Version-Control Server to return list of Versions * Linting * Improve Request Handling and Readability * Add Configuration File Option Add Systemd Service file * Add Logging to File * Smaller Changes * Add Semantic Versioning and refuses outdated Software from Startup (#1612) * implements internal Semantic Version library * adds version logging + reporting to process * Advance SemVer struct for easier handling * Add Accepted Version Store * Fix Function * Restructure * Type Conversion * Handle Version String properly * Add Note about array index * Set temporary Default Version * Add Copyright * Adding Version to Dashboard * Adding Version Info Log * Renaming and adding CheckerProcess * Iteration Sync * Iteration V2 * linting * made LogAndReportVersion a go routine * Refactor to Go Routine * Add Context to Go Routine and allow Operation if Lookup to Control Server fails * Handle Unmarshal properly * Linting * Relocate Version Checks * Relocating Version Check and specified default Version for now * Linting Error Prevention * Refuse Startup on outdated Version * Add Startup Check Function * Straighten Logging * Dont force Shutdown if --dev flag is set * Create full Service/Peer Structure for ControlServer * Linting * Straighting Naming * Finish VersionControl Service Layout * Improve Error Handling * Change Listening Address * Move Checker Function * Remove VersionControl Peer * Linting * Linting * Create VersionClient Service * Renaming * Add Version Client to Peer Definitions * Linting and Renaming * Linting * Remove Transport Checks for now * Move to Client Side Flag * Remove check * Linting * Transport Client Version Intro * Adding Version Client to Transport Client * Add missing parameter * Adding Version Check, to set Allowed = true * Set Default to true, testing * Restructuring Code * Uplink Changes * Add more proper Defaults * Renaming of Version struct * Dont pass Service use Pointer * Set Defaults for Versioning Checks * Put HTTP Server in go routine * Add Versioncontrol to Storj-Sim * Testplanet Fixes * Linting * Add Error Handling and new Server Struct * Move Lock slightly * Reduce Race Potentials * Remove unnecessary files * Linting * Add Proper Transport Handling * small fixes * add fence for allowed check * Add Startup Version Check and Service Naming * make errormessage private * Add Comments about VersionedClient * Linting * Remove Checks that refuse outgoing connections * Remove release cmd * Add Release Script * Linting * Update to use correct Values * Move vars private and set minimum default versions for testing builds * Remove VersionedClient * Better Error Handling and naked return removal * Straighten the Regex and string conversion * Change Check to allows testplanet and storj-sim to run without the need to pass an LDFlag * Cosmetic Change to Dashboard * Cleanup Returns and remove commented code * Remove Version Check if no build options are passed in * Pass in Config Values instead of Pointers * Handle missed Error * Update Endpoint URL * Change Type of Release Flag * Add additional Logging * Remove Versions Logging of other Services * minor fixes Change-Id: I5cc04a410ea6b2008d14dffd63eb5f36dd348a8b
145 lines
4.4 KiB
Go
145 lines
4.4 KiB
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package transport
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
"storj.io/storj/pkg/identity"
|
|
"storj.io/storj/pkg/pb"
|
|
"storj.io/storj/pkg/peertls/tlsopts"
|
|
)
|
|
|
|
// Observer implements the ConnSuccess and ConnFailure methods
|
|
// for Discovery and other services to use
|
|
type Observer interface {
|
|
ConnSuccess(ctx context.Context, node *pb.Node)
|
|
ConnFailure(ctx context.Context, node *pb.Node, err error)
|
|
}
|
|
|
|
// Client defines the interface to an transport client.
|
|
type Client interface {
|
|
DialNode(ctx context.Context, node *pb.Node, opts ...grpc.DialOption) (*grpc.ClientConn, error)
|
|
DialAddress(ctx context.Context, address string, opts ...grpc.DialOption) (*grpc.ClientConn, error)
|
|
Identity() *identity.FullIdentity
|
|
WithObservers(obs ...Observer) Client
|
|
}
|
|
|
|
// Transport interface structure
|
|
type Transport struct {
|
|
tlsOpts *tlsopts.Options
|
|
observers []Observer
|
|
requestTimeout time.Duration
|
|
}
|
|
|
|
// NewClient returns a transport client with a default timeout for requests
|
|
func NewClient(tlsOpts *tlsopts.Options, obs ...Observer) Client {
|
|
return NewClientWithTimeout(tlsOpts, defaultRequestTimeout, obs...)
|
|
}
|
|
|
|
// NewClientWithTimeout returns a transport client with a specified timeout for requests
|
|
func NewClientWithTimeout(tlsOpts *tlsopts.Options, requestTimeout time.Duration, obs ...Observer) Client {
|
|
return &Transport{
|
|
tlsOpts: tlsOpts,
|
|
requestTimeout: requestTimeout,
|
|
observers: obs,
|
|
}
|
|
}
|
|
|
|
// DialNode returns a grpc connection with tls to a node.
|
|
//
|
|
// Use this method for communicating with nodes as it is more secure than
|
|
// DialAddress. The connection will be established successfully only if the
|
|
// target node has the private key for the requested node ID.
|
|
func (transport *Transport) DialNode(ctx context.Context, node *pb.Node, opts ...grpc.DialOption) (conn *grpc.ClientConn, err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
if node != nil {
|
|
node.Type.DPanicOnInvalid("transport dial node")
|
|
}
|
|
if node.Address == nil || node.Address.Address == "" {
|
|
return nil, Error.New("no address")
|
|
}
|
|
dialOption, err := transport.tlsOpts.DialOption(node.Id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
options := append([]grpc.DialOption{
|
|
dialOption,
|
|
grpc.WithBlock(),
|
|
grpc.FailOnNonTempDialError(true),
|
|
grpc.WithUnaryInterceptor(InvokeTimeout{transport.requestTimeout}.Intercept),
|
|
}, opts...)
|
|
|
|
timedCtx, cancel := context.WithTimeout(ctx, defaultDialTimeout)
|
|
defer cancel()
|
|
|
|
conn, err = grpc.DialContext(timedCtx, node.GetAddress().Address, options...)
|
|
if err != nil {
|
|
if err == context.Canceled {
|
|
return nil, err
|
|
}
|
|
alertFail(timedCtx, transport.observers, node, err)
|
|
return nil, Error.Wrap(err)
|
|
}
|
|
|
|
alertSuccess(timedCtx, transport.observers, node)
|
|
|
|
return conn, nil
|
|
}
|
|
|
|
// DialAddress returns a grpc connection with tls to an IP address.
|
|
//
|
|
// Do not use this method unless having a good reason. In most cases DialNode
|
|
// should be used for communicating with nodes as it is more secure than
|
|
// DialAddress.
|
|
func (transport *Transport) DialAddress(ctx context.Context, address string, opts ...grpc.DialOption) (conn *grpc.ClientConn, err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
options := append([]grpc.DialOption{
|
|
transport.tlsOpts.DialUnverifiedIDOption(),
|
|
grpc.WithBlock(),
|
|
grpc.FailOnNonTempDialError(true),
|
|
grpc.WithUnaryInterceptor(InvokeTimeout{transport.requestTimeout}.Intercept),
|
|
}, opts...)
|
|
|
|
timedCtx, cancel := context.WithTimeout(ctx, defaultDialTimeout)
|
|
defer cancel()
|
|
|
|
conn, err = grpc.DialContext(timedCtx, address, options...)
|
|
if err == context.Canceled {
|
|
return nil, err
|
|
}
|
|
return conn, Error.Wrap(err)
|
|
}
|
|
|
|
// Identity is a getter for the transport's identity
|
|
func (transport *Transport) Identity() *identity.FullIdentity {
|
|
return transport.tlsOpts.Ident
|
|
}
|
|
|
|
// WithObservers returns a new transport including the listed observers.
|
|
func (transport *Transport) WithObservers(obs ...Observer) Client {
|
|
tr := &Transport{tlsOpts: transport.tlsOpts, requestTimeout: transport.requestTimeout}
|
|
tr.observers = append(tr.observers, transport.observers...)
|
|
tr.observers = append(tr.observers, obs...)
|
|
return tr
|
|
}
|
|
|
|
func alertFail(ctx context.Context, obs []Observer, node *pb.Node, err error) {
|
|
for _, o := range obs {
|
|
o.ConnFailure(ctx, node, err)
|
|
}
|
|
}
|
|
|
|
func alertSuccess(ctx context.Context, obs []Observer, node *pb.Node) {
|
|
for _, o := range obs {
|
|
o.ConnSuccess(ctx, node)
|
|
}
|
|
}
|