From 5b355cbed0cc2e9d136f7cbb05804b284c92308e Mon Sep 17 00:00:00 2001 From: Francis Lavoie Date: Mon, 6 Apr 2020 15:07:07 -0400 Subject: caddyhttp: Strictly forbid unnecessary blocks on matchers (#3229) --- modules/caddyhttp/matchers.go | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) (limited to 'modules/caddyhttp/matchers.go') diff --git a/modules/caddyhttp/matchers.go b/modules/caddyhttp/matchers.go index f608ccd..500495b 100644 --- a/modules/caddyhttp/matchers.go +++ b/modules/caddyhttp/matchers.go @@ -145,6 +145,9 @@ func (MatchHost) CaddyModule() caddy.ModuleInfo { func (m *MatchHost) UnmarshalCaddyfile(d *caddyfile.Dispenser) error { for d.Next() { *m = append(*m, d.RemainingArgs()...) + if d.NextBlock(0) { + return d.Err("malformed host matcher: blocks are not supported") + } } return nil } @@ -271,6 +274,9 @@ func (m MatchPath) Match(r *http.Request) bool { func (m *MatchPath) UnmarshalCaddyfile(d *caddyfile.Dispenser) error { for d.Next() { *m = append(*m, d.RemainingArgs()...) + if d.NextBlock(0) { + return d.Err("malformed path matcher: blocks are not supported") + } } return nil } @@ -301,6 +307,9 @@ func (MatchMethod) CaddyModule() caddy.ModuleInfo { func (m *MatchMethod) UnmarshalCaddyfile(d *caddyfile.Dispenser) error { for d.Next() { *m = append(*m, d.RemainingArgs()...) + if d.NextBlock(0) { + return d.Err("malformed method matcher: blocks are not supported") + } } return nil } @@ -339,6 +348,9 @@ func (m *MatchQuery) UnmarshalCaddyfile(d *caddyfile.Dispenser) error { return d.Errf("malformed query matcher token: %s; must be in param=val format", d.Val()) } url.Values(*m).Set(parts[0], parts[1]) + if d.NextBlock(0) { + return d.Err("malformed query matcher: blocks are not supported") + } } return nil } @@ -374,9 +386,12 @@ func (m *MatchHeader) UnmarshalCaddyfile(d *caddyfile.Dispenser) error { for d.Next() { var field, val string if !d.Args(&field, &val) { - return d.Errf("expected both field and value") + return d.Errf("malformed header matcher: expected both field and value") } http.Header(*m).Set(field, val) + if d.NextBlock(0) { + return d.Err("malformed header matcher: blocks are not supported") + } } return nil } @@ -461,6 +476,10 @@ func (m *MatchHeaderRE) UnmarshalCaddyfile(d *caddyfile.Dispenser) error { } (*m)[field] = &MatchRegexp{Pattern: val, Name: name} + + if d.NextBlock(0) { + return d.Err("malformed header_regexp matcher: blocks are not supported") + } } return nil } @@ -646,6 +665,9 @@ func (MatchRemoteIP) CaddyModule() caddy.ModuleInfo { func (m *MatchRemoteIP) UnmarshalCaddyfile(d *caddyfile.Dispenser) error { for d.Next() { m.Ranges = append(m.Ranges, d.RemainingArgs()...) + if d.NextBlock(0) { + return d.Err("malformed remote_ip matcher: blocks are not supported") + } } return nil } @@ -796,6 +818,9 @@ func (mre *MatchRegexp) UnmarshalCaddyfile(d *caddyfile.Dispenser) error { default: return d.ArgErr() } + if d.NextBlock(0) { + return d.Err("malformed path_regexp matcher: blocks are not supported") + } } return nil } -- cgit v1.2.3