Skip to content

Commit

Permalink
Merge pull request moby#1745 from tonistiigi/readonly-config
Browse files Browse the repository at this point in the history
authprovider: allow readonly config dir
  • Loading branch information
AkihiroSuda committed Oct 22, 2020
2 parents 2767263 + b7510f7 commit 212a0b1
Showing 1 changed file with 21 additions and 10 deletions.
31 changes: 21 additions & 10 deletions session/auth/authprovider/tokenseed.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import (
"os"
"path/filepath"
"sync"
"syscall"

"github.com/gofrs/flock"
"github.com/pkg/errors"
Expand All @@ -15,6 +16,7 @@ import (
type tokenSeeds struct {
mu sync.Mutex
dir string
m map[string]seed
}

type seed struct {
Expand All @@ -29,39 +31,48 @@ func (ts *tokenSeeds) getSeed(host string) ([]byte, error) {
return nil, err
}

if ts.m == nil {
ts.m = map[string]seed{}
}

l := flock.New(filepath.Join(ts.dir, ".token_seed.lock"))
if err := l.Lock(); err != nil {
return nil, err
if !errors.Is(err, syscall.EROFS) && errors.Is(err, syscall.EPERM) {
return nil, err
}
} else {
defer l.Unlock()
}
defer l.Unlock()

// we include client side randomness to avoid chosen plaintext attack from the daemon side
fp := filepath.Join(ts.dir, ".token_seed")

// we include client side randomness to avoid chosen plaintext attack from the daemon side
dt, err := ioutil.ReadFile(fp)
m := map[string]seed{}
if err != nil {
if !errors.Is(err, os.ErrNotExist) {
if !errors.Is(err, os.ErrNotExist) && !errors.Is(err, syscall.ENOTDIR) {
return nil, err
}
} else {
if err := json.Unmarshal(dt, &m); err != nil {
if err := json.Unmarshal(dt, &ts.m); err != nil {
return nil, errors.Wrapf(err, "failed to parse %s", fp)
}
}
v, ok := m[host]
v, ok := ts.m[host]
if !ok {
v = seed{Seed: newSeed()}
}

m[host] = v
ts.m[host] = v

dt, err = json.MarshalIndent(m, "", " ")
dt, err = json.MarshalIndent(ts.m, "", " ")
if err != nil {
return nil, err
}

if err := ioutil.WriteFile(fp, dt, 0600); err != nil {
return nil, err
if !errors.Is(err, syscall.EROFS) && !errors.Is(err, syscall.EPERM) {
return nil, err
}
}
return v.Seed, nil
}
Expand Down

0 comments on commit 212a0b1

Please sign in to comment.