package vault import ( "errors" "fmt" "sync" "sync/atomic" "github.com/hashicorp/vault/helper/strutil" "github.com/hashicorp/vault/logical" ) const ( CORSDisabled uint32 = iota CORSEnabled ) // CORSConfig stores the state of the CORS configuration. type CORSConfig struct { sync.RWMutex `json:"-"` core *Core Enabled uint32 `json:"enabled"` AllowedOrigins []string `json:"allowed_origins,omitempty"` } func (c *Core) saveCORSConfig() error { view := c.systemBarrierView.SubView("config/") localConfig := &CORSConfig{ Enabled: atomic.LoadUint32(&c.corsConfig.Enabled), } c.corsConfig.RLock() localConfig.AllowedOrigins = c.corsConfig.AllowedOrigins c.corsConfig.RUnlock() entry, err := logical.StorageEntryJSON("cors", localConfig) if err != nil { return fmt.Errorf("failed to create CORS config entry: %v", err) } if err := view.Put(entry); err != nil { return fmt.Errorf("failed to save CORS config: %v", err) } return nil } // This should only be called with the core state lock held for writing func (c *Core) loadCORSConfig() error { view := c.systemBarrierView.SubView("config/") // Load the config in out, err := view.Get("cors") if err != nil { return fmt.Errorf("failed to read CORS config: %v", err) } if out == nil { return nil } newConfig := new(CORSConfig) err = out.DecodeJSON(newConfig) if err != nil { return err } newConfig.core = c c.corsConfig = newConfig return nil } // Enable takes either a '*' or a comma-seprated list of URLs that can make // cross-origin requests to Vault. func (c *CORSConfig) Enable(urls []string) error { if len(urls) == 0 { return errors.New("the list of allowed origins cannot be empty") } if strutil.StrListContains(urls, "*") && len(urls) > 1 { return errors.New("to allow all origins the '*' must be the only value for allowed_origins") } c.Lock() c.AllowedOrigins = urls c.Unlock() atomic.StoreUint32(&c.Enabled, CORSEnabled) return c.core.saveCORSConfig() } // IsEnabled returns the value of CORSConfig.isEnabled func (c *CORSConfig) IsEnabled() bool { return atomic.LoadUint32(&c.Enabled) == CORSEnabled } // Disable sets CORS to disabled and clears the allowed origins func (c *CORSConfig) Disable() error { atomic.StoreUint32(&c.Enabled, CORSDisabled) c.Lock() c.AllowedOrigins = []string(nil) c.Unlock() return c.core.saveCORSConfig() } // IsValidOrigin determines if the origin of the request is allowed to make // cross-origin requests based on the CORSConfig. func (c *CORSConfig) IsValidOrigin(origin string) bool { // If we aren't enabling CORS then all origins are valid if !c.IsEnabled() { return true } c.RLock() defer c.RUnlock() if len(c.AllowedOrigins) == 0 { return false } if len(c.AllowedOrigins) == 1 && (c.AllowedOrigins)[0] == "*" { return true } return strutil.StrListContains(c.AllowedOrigins, origin) }