Partially re-merge 92ed5b95e0

This commit is contained in:
Frank Denis 2023-04-07 15:21:00 +02:00
parent 0f30b3b028
commit c3c51bb435
3 changed files with 19 additions and 18 deletions

View file

@ -894,7 +894,7 @@ func (config *Config) loadSource(proxy *Proxy, cfgSourceName string, cfgSource *
cfgSource.Prefix, cfgSource.Prefix,
) )
if err != nil { if err != nil {
if len(source.in) <= 0 { if len(source.bin) <= 0 {
dlog.Criticalf("Unable to retrieve source [%s]: [%s]", cfgSourceName, err) dlog.Criticalf("Unable to retrieve source [%s]: [%s]", cfgSourceName, err)
return err return err
} }

View file

@ -3,6 +3,7 @@ package main
import ( import (
"bytes" "bytes"
"fmt" "fmt"
"math"
"math/rand" "math/rand"
"net/url" "net/url"
"os" "os"
@ -31,13 +32,13 @@ const (
type Source struct { type Source struct {
name string name string
urls []*url.URL urls []*url.URL
format SourceFormat bin []byte // copy of the file content - there's something wrong in our logic, we shouldn't need to keep that in memory
in []byte
minisignKey *minisign.PublicKey minisignKey *minisign.PublicKey
cacheFile string cacheFile string
prefix string
cacheTTL, prefetchDelay time.Duration cacheTTL, prefetchDelay time.Duration
refresh time.Time refresh time.Time
prefix string format SourceFormat
} }
func (source *Source) checkSignature(bin, sig []byte) (err error) { func (source *Source) checkSignature(bin, sig []byte) (err error) {
@ -48,7 +49,7 @@ func (source *Source) checkSignature(bin, sig []byte) (err error) {
return err return err
} }
// timeNow can be replaced by tests to provide a static value // timeNow() can be replaced by tests to provide a static value
var timeNow = time.Now var timeNow = time.Now
func (source *Source) fetchFromCache(now time.Time) (delay time.Duration, err error) { func (source *Source) fetchFromCache(now time.Time) (delay time.Duration, err error) {
@ -62,14 +63,14 @@ func (source *Source) fetchFromCache(now time.Time) (delay time.Duration, err er
if err = source.checkSignature(bin, sig); err != nil { if err = source.checkSignature(bin, sig); err != nil {
return return
} }
source.in = bin source.bin = bin
var fi os.FileInfo var fi os.FileInfo
if fi, err = os.Stat(source.cacheFile); err != nil { if fi, err = os.Stat(source.cacheFile); err != nil {
return return
} }
if elapsed := now.Sub(fi.ModTime()); elapsed < source.cacheTTL { if elapsed := now.Sub(fi.ModTime()); elapsed < source.cacheTTL {
delay = source.prefetchDelay - elapsed delay = source.prefetchDelay - elapsed
dlog.Debugf("Source [%s] cache file [%s] is still fresh, next update: %v", source.name, source.cacheFile, delay) dlog.Debugf("Source [%s] cache file [%s] is still fresh, next update: %v min", source.name, source.cacheFile, math.Round(delay.Minutes()))
} else { } else {
dlog.Debugf("Source [%s] cache file [%s] needs to be refreshed", source.name, source.cacheFile) dlog.Debugf("Source [%s] cache file [%s] needs to be refreshed", source.name, source.cacheFile)
} }
@ -98,11 +99,11 @@ func writeSource(f string, bin, sig []byte) (err error) {
return fSig.Commit() return fSig.Commit()
} }
func (source *Source) writeToCache(bin, sig []byte, now time.Time) { func (source *Source) updateCache(bin, sig []byte, now time.Time) {
f := source.cacheFile f := source.cacheFile
var writeErr error // an error writing cache isn't fatal var writeErr error // an error writing cache isn't fatal
defer func() { defer func() {
source.in = bin source.bin = bin
if writeErr == nil { if writeErr == nil {
return return
} }
@ -111,7 +112,7 @@ func (source *Source) writeToCache(bin, sig []byte, now time.Time) {
} }
dlog.Warnf("%s: %s", f, writeErr) dlog.Warnf("%s: %s", f, writeErr)
}() }()
if !bytes.Equal(source.in, bin) { if !bytes.Equal(source.bin, bin) {
if writeErr = writeSource(f, bin, sig); writeErr != nil { if writeErr = writeSource(f, bin, sig); writeErr != nil {
return return
} }
@ -173,7 +174,7 @@ func (source *Source) fetchWithCache(xTransport *XTransport, now time.Time) (del
if err != nil { if err != nil {
return return
} }
source.writeToCache(bin, sig, now) source.updateCache(bin, sig, now)
delay = source.prefetchDelay delay = source.prefetchDelay
return return
} }
@ -229,7 +230,7 @@ func PrefetchSources(xTransport *XTransport, sources []*Source) time.Duration {
if delay, err := source.fetchWithCache(xTransport, now); err != nil { if delay, err := source.fetchWithCache(xTransport, now); err != nil {
dlog.Infof("Prefetching [%s] failed: %v, will retry in %v", source.name, err, interval) dlog.Infof("Prefetching [%s] failed: %v, will retry in %v", source.name, err, interval)
} else { } else {
dlog.Debugf("Prefetching [%s] succeeded, next update: %v", source.name, delay) dlog.Debugf("Prefetching [%s] succeeded, next update: %v min", source.name, math.Round(delay.Minutes()))
if delay >= MinimumPrefetchInterval && (interval == MinimumPrefetchInterval || interval > delay) { if delay >= MinimumPrefetchInterval && (interval == MinimumPrefetchInterval || interval > delay) {
interval = delay interval = delay
} }
@ -254,8 +255,8 @@ func (source *Source) parseV2() ([]RegisteredServer, error) {
stampErrs = append(stampErrs, stampErr) stampErrs = append(stampErrs, stampErr)
dlog.Warn(stampErr) dlog.Warn(stampErr)
} }
in := string(source.in) bin := string(source.bin)
parts := strings.Split(in, "## ") parts := strings.Split(bin, "## ")
if len(parts) < 2 { if len(parts) < 2 {
return registeredServers, fmt.Errorf("Invalid format for source at [%v]", source.urls) return registeredServers, fmt.Errorf("Invalid format for source at [%v]", source.urls)
} }

View file

@ -284,9 +284,9 @@ func prepSourceTestCache(t *testing.T, d *SourceTestData, e *SourceTestExpect, s
e.cache = []SourceFixture{d.fixtures[state][source], d.fixtures[state][source+".minisig"]} e.cache = []SourceFixture{d.fixtures[state][source], d.fixtures[state][source+".minisig"]}
switch state { switch state {
case TestStateCorrect: case TestStateCorrect:
e.Source.in, e.success = e.cache[0].content, true e.Source.bin, e.success = e.cache[0].content, true
case TestStateExpired: case TestStateExpired:
e.Source.in = e.cache[0].content e.Source.bin = e.cache[0].content
case TestStatePartial, TestStatePartialSig: case TestStatePartial, TestStatePartialSig:
e.err = "signature" e.err = "signature"
case TestStateMissing, TestStateMissingSig, TestStateOpenErr, TestStateOpenSigErr: case TestStateMissing, TestStateMissingSig, TestStateOpenErr, TestStateOpenSigErr:
@ -339,7 +339,7 @@ func prepSourceTestDownload(
switch state { switch state {
case TestStateCorrect: case TestStateCorrect:
e.cache = []SourceFixture{d.fixtures[state][source], d.fixtures[state][source+".minisig"]} e.cache = []SourceFixture{d.fixtures[state][source], d.fixtures[state][source+".minisig"]}
e.Source.in, e.success = e.cache[0].content, true e.Source.bin, e.success = e.cache[0].content, true
fallthrough fallthrough
case TestStateMissingSig, TestStatePartial, TestStatePartialSig, TestStateReadSigErr: case TestStateMissingSig, TestStatePartial, TestStatePartialSig, TestStateReadSigErr:
d.reqExpect[path+".minisig"]++ d.reqExpect[path+".minisig"]++
@ -477,7 +477,7 @@ func TestPrefetchSources(t *testing.T) {
e.mtime = d.timeUpd e.mtime = d.timeUpd
s := &Source{} s := &Source{}
*s = *e.Source *s = *e.Source
s.in = nil s.bin = nil
sources = append(sources, s) sources = append(sources, s)
expects = append(expects, e) expects = append(expects, e)
} }