Commit b2e0264f authored by comp500's avatar comp500 Committed by Łukasz Nowak

Add upstream header replacements (TODO: tests, docs)

parent 6f580c6a
...@@ -92,8 +92,10 @@ type UpstreamHost struct { ...@@ -92,8 +92,10 @@ type UpstreamHost struct {
// This is an int32 so that we can use atomic operations to do concurrent // This is an int32 so that we can use atomic operations to do concurrent
// reads & writes to this value. The default value of 0 indicates that it // reads & writes to this value. The default value of 0 indicates that it
// is healthy and any non-zero value indicates unhealthy. // is healthy and any non-zero value indicates unhealthy.
Unhealthy int32 Unhealthy int32
HealthCheckResult atomic.Value HealthCheckResult atomic.Value
UpstreamHeaderReplacements headerReplacements
DownstreamHeaderReplacements headerReplacements
} }
// Down checks whether the upstream host is down or not. // Down checks whether the upstream host is down or not.
...@@ -220,7 +222,7 @@ func (p Proxy) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error) { ...@@ -220,7 +222,7 @@ func (p Proxy) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error) {
// set headers for request going upstream // set headers for request going upstream
if host.UpstreamHeaders != nil { if host.UpstreamHeaders != nil {
// modify headers for request that will be sent to the upstream host // modify headers for request that will be sent to the upstream host
mutateHeadersByRules(outreq.Header, host.UpstreamHeaders, replacer) mutateHeadersByRules(outreq.Header, host.UpstreamHeaders, replacer, host.UpstreamHeaderReplacements)
if hostHeaders, ok := outreq.Header["Host"]; ok && len(hostHeaders) > 0 { if hostHeaders, ok := outreq.Header["Host"]; ok && len(hostHeaders) > 0 {
outreq.Host = hostHeaders[len(hostHeaders)-1] outreq.Host = hostHeaders[len(hostHeaders)-1]
} }
...@@ -230,7 +232,7 @@ func (p Proxy) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error) { ...@@ -230,7 +232,7 @@ func (p Proxy) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error) {
// headers coming back downstream // headers coming back downstream
var downHeaderUpdateFn respUpdateFn var downHeaderUpdateFn respUpdateFn
if host.DownstreamHeaders != nil { if host.DownstreamHeaders != nil {
downHeaderUpdateFn = createRespHeaderUpdateFn(host.DownstreamHeaders, replacer) downHeaderUpdateFn = createRespHeaderUpdateFn(host.DownstreamHeaders, replacer, host.UpstreamHeaderReplacements)
} }
// Before we retry the request we have to make sure // Before we retry the request we have to make sure
...@@ -372,13 +374,13 @@ func createUpstreamRequest(rw http.ResponseWriter, r *http.Request) (*http.Reque ...@@ -372,13 +374,13 @@ func createUpstreamRequest(rw http.ResponseWriter, r *http.Request) (*http.Reque
return outreq, cancel return outreq, cancel
} }
func createRespHeaderUpdateFn(rules http.Header, replacer httpserver.Replacer) respUpdateFn { func createRespHeaderUpdateFn(rules http.Header, replacer httpserver.Replacer, replacements headerReplacements) respUpdateFn {
return func(resp *http.Response) { return func(resp *http.Response) {
mutateHeadersByRules(resp.Header, rules, replacer) mutateHeadersByRules(resp.Header, rules, replacer, replacements)
} }
} }
func mutateHeadersByRules(headers, rules http.Header, repl httpserver.Replacer) { func mutateHeadersByRules(headers, rules http.Header, repl httpserver.Replacer, replacements headerReplacements) {
for ruleField, ruleValues := range rules { for ruleField, ruleValues := range rules {
if strings.HasPrefix(ruleField, "+") { if strings.HasPrefix(ruleField, "+") {
for _, ruleValue := range ruleValues { for _, ruleValue := range ruleValues {
...@@ -396,4 +398,15 @@ func mutateHeadersByRules(headers, rules http.Header, repl httpserver.Replacer) ...@@ -396,4 +398,15 @@ func mutateHeadersByRules(headers, rules http.Header, repl httpserver.Replacer)
} }
} }
} }
for ruleField, ruleValues := range replacements {
for _, ruleValue := range ruleValues {
replacement := repl.Replace(ruleValue.to)
original := headers.Get(ruleField)
if len(replacement) > 0 && len(original) > 0 {
replaced := ruleValue.regexp.ReplaceAllString(original, replacement)
headers.Set(ruleField, replaced)
}
}
}
} }
...@@ -22,8 +22,10 @@ import ( ...@@ -22,8 +22,10 @@ import (
"io/ioutil" "io/ioutil"
"net" "net"
"net/http" "net/http"
"net/textproto"
"net/url" "net/url"
"path" "path"
"regexp"
"strconv" "strconv"
"strings" "strings"
"sync" "sync"
...@@ -64,17 +66,35 @@ type staticUpstream struct { ...@@ -64,17 +66,35 @@ type staticUpstream struct {
Port string Port string
ContentString string ContentString string
} }
WithoutPathPrefix string WithoutPathPrefix string
IgnoredSubPaths []string IgnoredSubPaths []string
insecureSkipVerify bool insecureSkipVerify bool
MaxFails int32 MaxFails int32
resolver srvResolver resolver srvResolver
upstreamHeaderReplacements headerReplacements
downstreamHeaderReplacements headerReplacements
} }
type srvResolver interface { type srvResolver interface {
LookupSRV(context.Context, string, string, string) (string, []*net.SRV, error) LookupSRV(context.Context, string, string, string) (string, []*net.SRV, error)
} }
type headerReplacement struct {
regexp *regexp.Regexp
to string
}
type headerReplacements map[string][]headerReplacement
func (h headerReplacements) Add(key string, value headerReplacement) {
key = textproto.CanonicalMIMEHeaderKey(key)
h[key] = append(h[key], value)
}
func (h headerReplacements) Del(key string) {
delete(h, textproto.CanonicalMIMEHeaderKey(key))
}
// NewStaticUpstreams parses the configuration input and sets up // NewStaticUpstreams parses the configuration input and sets up
// static upstreams for the proxy middleware. The host string parameter, // static upstreams for the proxy middleware. The host string parameter,
// if not empty, is used for setting the upstream Host header for the // if not empty, is used for setting the upstream Host header for the
...@@ -84,18 +104,20 @@ func NewStaticUpstreams(c caddyfile.Dispenser, host string) ([]Upstream, error) ...@@ -84,18 +104,20 @@ func NewStaticUpstreams(c caddyfile.Dispenser, host string) ([]Upstream, error)
for c.Next() { for c.Next() {
upstream := &staticUpstream{ upstream := &staticUpstream{
from: "", from: "",
stop: make(chan struct{}), stop: make(chan struct{}),
upstreamHeaders: make(http.Header), upstreamHeaders: make(http.Header),
downstreamHeaders: make(http.Header), downstreamHeaders: make(http.Header),
Hosts: nil, Hosts: nil,
Policy: &Random{}, Policy: &Random{},
MaxFails: 1, MaxFails: 1,
TryInterval: 250 * time.Millisecond, TryInterval: 250 * time.Millisecond,
MaxConns: 0, MaxConns: 0,
KeepAlive: http.DefaultMaxIdleConnsPerHost, KeepAlive: http.DefaultMaxIdleConnsPerHost,
Timeout: 30 * time.Second, Timeout: 30 * time.Second,
resolver: net.DefaultResolver, resolver: net.DefaultResolver,
upstreamHeaderReplacements: make(headerReplacements),
downstreamHeaderReplacements: make(headerReplacements),
} }
if !c.Args(&upstream.from) { if !c.Args(&upstream.from) {
...@@ -218,9 +240,11 @@ func (u *staticUpstream) NewHost(host string) (*UpstreamHost, error) { ...@@ -218,9 +240,11 @@ func (u *staticUpstream) NewHost(host string) (*UpstreamHost, error) {
return false return false
} }
}(u), }(u),
WithoutPathPrefix: u.WithoutPathPrefix, WithoutPathPrefix: u.WithoutPathPrefix,
MaxConns: u.MaxConns, MaxConns: u.MaxConns,
HealthCheckResult: atomic.Value{}, HealthCheckResult: atomic.Value{},
UpstreamHeaderReplacements: u.upstreamHeaderReplacements,
DownstreamHeaderReplacements: u.downstreamHeaderReplacements,
} }
baseURL, err := url.Parse(uh.Name) baseURL, err := url.Parse(uh.Name)
...@@ -425,23 +449,47 @@ func parseBlock(c *caddyfile.Dispenser, u *staticUpstream, hasSrv bool) error { ...@@ -425,23 +449,47 @@ func parseBlock(c *caddyfile.Dispenser, u *staticUpstream, hasSrv bool) error {
} }
u.HealthCheck.ContentString = c.Val() u.HealthCheck.ContentString = c.Val()
case "header_upstream": case "header_upstream":
var header, value string var header, value, replaced string
if !c.Args(&header, &value) { if c.Args(&header, &value, &replaced) {
// When removing a header, the value can be optional. // Don't allow - or + in replacements
if !strings.HasPrefix(header, "-") { if strings.HasPrefix(header, "-") || strings.HasPrefix(header, "+") {
return c.ArgErr()
}
r, err := regexp.Compile(value)
if err != nil {
return c.ArgErr() return c.ArgErr()
} }
u.upstreamHeaderReplacements.Add(header, headerReplacement{r, replaced})
} else {
if !c.Args(&header, &value) {
// When removing a header, the value can be optional.
if !strings.HasPrefix(header, "-") {
return c.ArgErr()
}
}
u.upstreamHeaders.Add(header, value)
} }
u.upstreamHeaders.Add(header, value)
case "header_downstream": case "header_downstream":
var header, value string var header, value, replaced string
if !c.Args(&header, &value) { if c.Args(&header, &value, &replaced) {
// When removing a header, the value can be optional. // Don't allow - or + in replacements
if !strings.HasPrefix(header, "-") { if strings.HasPrefix(header, "-") || strings.HasPrefix(header, "+") {
return c.ArgErr() return c.ArgErr()
} }
r, err := regexp.Compile(value)
if err != nil {
return c.ArgErr()
}
u.upstreamHeaderReplacements.Add(header, headerReplacement{r, replaced})
} else {
if !c.Args(&header, &value) {
// When removing a header, the value can be optional.
if !strings.HasPrefix(header, "-") {
return c.ArgErr()
}
}
u.downstreamHeaders.Add(header, value)
} }
u.downstreamHeaders.Add(header, value)
case "transparent": case "transparent":
// Note: X-Forwarded-For header is always being appended for proxy connections // Note: X-Forwarded-For header is always being appended for proxy connections
// See implementation of createUpstreamRequest in proxy.go // See implementation of createUpstreamRequest in proxy.go
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment