199 lines
5.4 KiB
Go
199 lines
5.4 KiB
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package version
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
"reflect"
|
|
"sync"
|
|
"time"
|
|
|
|
"go.uber.org/zap"
|
|
|
|
"storj.io/storj/internal/sync2"
|
|
)
|
|
|
|
// Config contains the necessary Information to check the Software Version
|
|
type Config struct {
|
|
ServerAddress string `help:"server address to check its version against" default:"https://version.storj.io"`
|
|
RequestTimeout time.Duration `help:"Request timeout for version checks" default:"0h1m0s"`
|
|
CheckInterval time.Duration `help:"Interval to check the version" default:"0h15m0s"`
|
|
}
|
|
|
|
// Service contains the information and variables to ensure the Software is up to date
|
|
//
|
|
// architecture: Service
|
|
type Service struct {
|
|
log *zap.Logger
|
|
config Config
|
|
info Info
|
|
service string
|
|
|
|
Loop *sync2.Cycle
|
|
|
|
checked sync2.Fence
|
|
mu sync.Mutex
|
|
allowed bool
|
|
}
|
|
|
|
// NewService creates a Version Check Client with default configuration
|
|
func NewService(log *zap.Logger, config Config, info Info, service string) (client *Service) {
|
|
return &Service{
|
|
log: log,
|
|
config: config,
|
|
info: info,
|
|
service: service,
|
|
Loop: sync2.NewCycle(config.CheckInterval),
|
|
allowed: true,
|
|
}
|
|
}
|
|
|
|
// CheckVersion checks to make sure the version is still okay, returning an error if not
|
|
func (srv *Service) CheckVersion(ctx context.Context) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
if !srv.checkVersion(ctx) {
|
|
return fmt.Errorf("outdated software version (%v), please update", srv.info.Version.String())
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// CheckProcessVersion is not meant to be used for peers but is meant to be
|
|
// used for other utilities
|
|
func CheckProcessVersion(ctx context.Context, log *zap.Logger, config Config, info Info, service string) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
return NewService(log, config, info, service).CheckVersion(ctx)
|
|
}
|
|
|
|
// Run logs the current version information
|
|
func (srv *Service) Run(ctx context.Context) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
if !srv.checked.Released() {
|
|
err := srv.CheckVersion(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return srv.Loop.Run(ctx, func(ctx context.Context) error {
|
|
srv.checkVersion(ctx)
|
|
return nil
|
|
})
|
|
}
|
|
|
|
// IsAllowed returns whether if the Service is allowed to operate or not
|
|
func (srv *Service) IsAllowed() bool {
|
|
srv.checked.Wait()
|
|
srv.mu.Lock()
|
|
defer srv.mu.Unlock()
|
|
return srv.allowed
|
|
}
|
|
|
|
// CheckVersion checks if the client is running latest/allowed code
|
|
func (srv *Service) checkVersion(ctx context.Context) (allowed bool) {
|
|
defer mon.Task()(&ctx)(nil)
|
|
|
|
defer func() {
|
|
srv.mu.Lock()
|
|
srv.allowed = allowed
|
|
srv.mu.Unlock()
|
|
srv.checked.Release()
|
|
}()
|
|
|
|
if !srv.info.Release {
|
|
return true
|
|
}
|
|
|
|
accepted, err := srv.queryVersionFromControlServer(ctx)
|
|
if err != nil {
|
|
// Log about the error, but dont crash the service and allow further operation
|
|
srv.log.Sugar().Errorf("Failed to do periodic version check: %s", err.Error())
|
|
return true
|
|
}
|
|
|
|
minimum := getFieldString(&accepted, srv.service)
|
|
srv.log.Sugar().Debugf("allowed minimum version from control server is: %s", minimum.String())
|
|
|
|
if minimum.String() == "" {
|
|
srv.log.Sugar().Errorf("no version from control server, accepting to run")
|
|
return true
|
|
}
|
|
if isAcceptedVersion(srv.info.Version, minimum) {
|
|
srv.log.Sugar().Infof("running on version %s", srv.info.Version.String())
|
|
return true
|
|
}
|
|
srv.log.Sugar().Errorf("running on not allowed/outdated version %s", srv.info.Version.String())
|
|
return false
|
|
}
|
|
|
|
// isAcceptedVersion compares and checks if the passed version is greater/equal than the minimum required version
|
|
func isAcceptedVersion(test SemVer, target SemVer) bool {
|
|
return test.Major > target.Major || (test.Major == target.Major && (test.Minor > target.Minor || (test.Minor == target.Minor && test.Patch >= target.Patch)))
|
|
}
|
|
|
|
// QueryVersionFromControlServer handles the HTTP request to gather the allowed and latest version information
|
|
func (srv *Service) queryVersionFromControlServer(ctx context.Context) (ver AllowedVersions, err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
// Tune Client to have a custom Timeout (reduces hanging software)
|
|
client := http.Client{
|
|
Timeout: srv.config.RequestTimeout,
|
|
}
|
|
|
|
// New Request that used the passed in context
|
|
req, err := http.NewRequest("GET", srv.config.ServerAddress, nil)
|
|
if err != nil {
|
|
return AllowedVersions{}, err
|
|
}
|
|
req = req.WithContext(ctx)
|
|
|
|
resp, err := client.Do(req)
|
|
if err != nil {
|
|
return AllowedVersions{}, err
|
|
}
|
|
|
|
defer func() { _ = resp.Body.Close() }()
|
|
|
|
err = json.NewDecoder(resp.Body).Decode(&ver)
|
|
return ver, err
|
|
}
|
|
|
|
// DebugHandler implements version info endpoint.
|
|
type DebugHandler struct {
|
|
log *zap.Logger
|
|
}
|
|
|
|
// NewDebugHandler returns new debug handler.
|
|
func NewDebugHandler(log *zap.Logger) *DebugHandler {
|
|
return &DebugHandler{log}
|
|
}
|
|
|
|
// ServeHTTP returns a json representation of the current version information for the binary.
|
|
func (server *DebugHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
j, err := Build.Marshal()
|
|
if err != nil {
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
_, err = w.Write(append(j, '\n'))
|
|
if err != nil {
|
|
server.log.Sugar().Errorf("error writing data to client %v", err)
|
|
}
|
|
}
|
|
|
|
func getFieldString(array *AllowedVersions, field string) SemVer {
|
|
r := reflect.ValueOf(array)
|
|
f := reflect.Indirect(r).FieldByName(field).Interface()
|
|
result, ok := f.(SemVer)
|
|
if ok {
|
|
return result
|
|
}
|
|
return SemVer{}
|
|
}
|