Remove math/rand and only use crypto/rand

This commit is contained in:
Deluan 2022-11-27 21:53:13 -05:00
parent 195f39182d
commit 950b5dc1ce
3 changed files with 18 additions and 15 deletions

View file

@ -1,16 +1,13 @@
package main package main
import ( import (
"math/rand"
"runtime" "runtime"
"time"
"github.com/navidrome/navidrome/cmd" "github.com/navidrome/navidrome/cmd"
_ "github.com/navidrome/navidrome/model/criteria" _ "github.com/navidrome/navidrome/model/criteria"
) )
func main() { func main() {
rand.Seed(time.Now().UTC().UnixNano())
runtime.MemProfileRate = 0 runtime.MemProfileRate = 0
cmd.Execute() cmd.Execute()
} }

View file

@ -2,9 +2,11 @@ package backgrounds
import ( import (
"context" "context"
"crypto/rand"
"encoding/base64" "encoding/base64"
"errors"
"io" "io"
"math/rand" "math/big"
"net/http" "net/http"
"net/url" "net/url"
"path" "path"
@ -48,7 +50,11 @@ func (h *Handler) getRandomImage(ctx context.Context) (string, error) {
if err != nil { if err != nil {
return "", err return "", err
} }
return list[rand.Intn(len(list))], nil if len(list) == 0 {
return "", errors.New("no images available")
}
rnd, _ := rand.Int(rand.Reader, big.NewInt(int64(len(list))))
return list[rnd.Int64()], nil
} }
func (h *Handler) getImageList(ctx context.Context) ([]string, error) { func (h *Handler) getImageList(ctx context.Context) ([]string, error) {

View file

@ -1,24 +1,19 @@
package utils package utils
import ( import (
"crypto/rand"
"errors" "errors"
"math/rand" "math/big"
"time"
) )
type WeightedChooser struct { type WeightedChooser struct {
entries []interface{} entries []interface{}
weights []int weights []int
totalWeight int totalWeight int
rng *rand.Rand
} }
func NewWeightedRandomChooser() *WeightedChooser { func NewWeightedRandomChooser() *WeightedChooser {
src := rand.NewSource(time.Now().UTC().UnixNano()) return &WeightedChooser{}
return &WeightedChooser{
rng: rand.New(src), // nolint:gosec
}
} }
func (w *WeightedChooser) Put(value interface{}, weight int) { func (w *WeightedChooser) Put(value interface{}, weight int) {
@ -43,9 +38,14 @@ func (w *WeightedChooser) GetAndRemove() (interface{}, error) {
// Based on https://eli.thegreenplace.net/2010/01/22/weighted-random-generation-in-python/ // Based on https://eli.thegreenplace.net/2010/01/22/weighted-random-generation-in-python/
func (w *WeightedChooser) weightedChoice() (int, error) { func (w *WeightedChooser) weightedChoice() (int, error) {
rnd := w.rng.Intn(w.totalWeight) if w.totalWeight == 0 {
return 0, errors.New("no choices available")
}
rndBig, _ := rand.Int(rand.Reader, big.NewInt(int64(w.totalWeight)))
rnd := rndBig.Int64()
for i, weight := range w.weights { for i, weight := range w.weights {
rnd -= weight rnd -= int64(weight)
if rnd < 0 { if rnd < 0 {
return i, nil return i, nil
} }