fix: verify paths before attempting to write

This commit is contained in:
mudler 2023-05-18 22:31:45 +02:00
parent 082e4f0da9
commit 5c8697d08a

View file

@ -2,6 +2,7 @@ package gallery
import (
"crypto/sha256"
"errors"
"fmt"
"io"
"net/http"
@ -77,6 +78,32 @@ func ReadConfigFile(filePath string) (*Config, error) {
return &config, nil
}
func inTrustedRoot(path string, trustedRoot string) error {
for path != "/" {
path = filepath.Dir(path)
if path == trustedRoot {
return nil
}
}
return errors.New("path is outside of trusted root")
}
func verifyPath(path, basePath string) error {
c := filepath.Clean(filepath.Join(basePath, path))
r, err := filepath.EvalSymlinks(c)
if err != nil {
return errors.New("unsafe or invalid path specified")
}
err = inTrustedRoot(r, basePath)
if err != nil {
return errors.New("unsafe or invalid path specified")
}
return nil
}
func Apply(basePath, nameOverride string, config *Config) error {
// Create base path if it doesn't exist
err := os.MkdirAll(basePath, 0755)
@ -88,6 +115,9 @@ func Apply(basePath, nameOverride string, config *Config) error {
for _, file := range config.Files {
log.Debug().Msgf("Checking %q exists and matches SHA", file.Filename)
if err := verifyPath(file.Filename, basePath); err != nil {
return err
}
// Create file path
filePath := filepath.Join(basePath, file.Filename)
@ -173,6 +203,9 @@ func Apply(basePath, nameOverride string, config *Config) error {
// Write prompt template contents to separate files
for _, template := range config.PromptTemplates {
if err := verifyPath(template.Name+".tmpl", basePath); err != nil {
return err
}
// Create file path
filePath := filepath.Join(basePath, template.Name+".tmpl")
@ -195,6 +228,10 @@ func Apply(basePath, nameOverride string, config *Config) error {
name = nameOverride
}
if err := verifyPath(name+".yaml", basePath); err != nil {
return err
}
configFilePath := filepath.Join(basePath, name+".yaml")
// Read and update config file as map[string]interface{}