mirror of https://github.com/docker/cli.git
fix bug with config file being a relative symlink
- use filepath.EvalSymlink instead of check with filepath.IsAbs - allow for dangling symlinks - extract path from error when NotExist error occurs Co-authored-by: Paweł Gronowski <me@woland.xyz> Co-authored-by: Sebastiaan van Stijn <github@gone.nl> Signed-off-by: Will Wang <willww64@gmail.com> Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
ae922ec177
commit
1015d15621
|
@ -169,10 +169,16 @@ func (configFile *ConfigFile) Save() (retErr error) {
|
||||||
return errors.Wrap(err, "error closing temp file")
|
return errors.Wrap(err, "error closing temp file")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Handle situation where the configfile is a symlink
|
// Handle situation where the configfile is a symlink, and allow for dangling symlinks
|
||||||
cfgFile := configFile.Filename
|
cfgFile := configFile.Filename
|
||||||
if f, err := os.Readlink(cfgFile); err == nil {
|
if f, err := filepath.EvalSymlinks(cfgFile); err == nil {
|
||||||
cfgFile = f
|
cfgFile = f
|
||||||
|
} else if os.IsNotExist(err) {
|
||||||
|
// extract the path from the error if the configfile does not exist or is a dangling symlink
|
||||||
|
var pathError *os.PathError
|
||||||
|
if errors.As(err, &pathError) {
|
||||||
|
cfgFile = pathError.Path
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Try copying the current config file (if any) ownership and permissions
|
// Try copying the current config file (if any) ownership and permissions
|
||||||
|
|
|
@ -538,6 +538,34 @@ func TestSaveWithSymlink(t *testing.T) {
|
||||||
assert.Check(t, is.Equal(string(cfg), "{\n \"auths\": {}\n}"))
|
assert.Check(t, is.Equal(string(cfg), "{\n \"auths\": {}\n}"))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestSaveWithRelativeSymlink(t *testing.T) {
|
||||||
|
dir := fs.NewDir(t, t.Name(), fs.WithFile("real-config.json", `{}`))
|
||||||
|
defer dir.Remove()
|
||||||
|
|
||||||
|
symLink := dir.Join("config.json")
|
||||||
|
relativeRealFile := "real-config.json"
|
||||||
|
realFile := dir.Join(relativeRealFile)
|
||||||
|
err := os.Symlink(relativeRealFile, symLink)
|
||||||
|
assert.NilError(t, err)
|
||||||
|
|
||||||
|
configFile := New(symLink)
|
||||||
|
|
||||||
|
err = configFile.Save()
|
||||||
|
assert.NilError(t, err)
|
||||||
|
|
||||||
|
fi, err := os.Lstat(symLink)
|
||||||
|
assert.NilError(t, err)
|
||||||
|
assert.Assert(t, fi.Mode()&os.ModeSymlink != 0, "expected %s to be a symlink", symLink)
|
||||||
|
|
||||||
|
cfg, err := os.ReadFile(symLink)
|
||||||
|
assert.NilError(t, err)
|
||||||
|
assert.Check(t, is.Equal(string(cfg), "{\n \"auths\": {}\n}"))
|
||||||
|
|
||||||
|
cfg, err = os.ReadFile(realFile)
|
||||||
|
assert.NilError(t, err)
|
||||||
|
assert.Check(t, is.Equal(string(cfg), "{\n \"auths\": {}\n}"))
|
||||||
|
}
|
||||||
|
|
||||||
func TestPluginConfig(t *testing.T) {
|
func TestPluginConfig(t *testing.T) {
|
||||||
configFile := New("test-plugin")
|
configFile := New("test-plugin")
|
||||||
defer os.Remove("test-plugin")
|
defer os.Remove("test-plugin")
|
||||||
|
|
Loading…
Reference in New Issue