middleware/file: transfer from does not make sense (#314)
Make it return an error when you use `transfer from` when you're not a secondary. Add tests as well. Fixes #310
This commit is contained in:
parent
560f11d148
commit
cc486fb900
3 changed files with 15 additions and 4 deletions
middleware
|
@ -83,7 +83,7 @@ func fileParse(c *caddy.Controller) (Zones, error) {
|
||||||
|
|
||||||
noReload := false
|
noReload := false
|
||||||
for c.NextBlock() {
|
for c.NextBlock() {
|
||||||
t, _, e := TransferParse(c)
|
t, _, e := TransferParse(c, false)
|
||||||
if e != nil {
|
if e != nil {
|
||||||
return Zones{}, e
|
return Zones{}, e
|
||||||
}
|
}
|
||||||
|
@ -105,8 +105,9 @@ func fileParse(c *caddy.Controller) (Zones, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// TransferParse parses transfer statements: 'transfer to [address...]'.
|
// TransferParse parses transfer statements: 'transfer to [address...]'.
|
||||||
// Exported so secondary can use this as well.
|
// Exported so secondary can use this as well. For the `file` middleware transfer from does
|
||||||
func TransferParse(c *caddy.Controller) (tos, froms []string, err error) {
|
// not make sense; make this an error.
|
||||||
|
func TransferParse(c *caddy.Controller, secondary bool) (tos, froms []string, err error) {
|
||||||
what := c.Val()
|
what := c.Val()
|
||||||
if !c.NextArg() {
|
if !c.NextArg() {
|
||||||
return nil, nil, c.ArgErr()
|
return nil, nil, c.ArgErr()
|
||||||
|
@ -126,6 +127,9 @@ func TransferParse(c *caddy.Controller) (tos, froms []string, err error) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if value == "from" {
|
if value == "from" {
|
||||||
|
if !secondary {
|
||||||
|
return nil, nil, fmt.Errorf("can't use `transfer from` when not being a seconary")
|
||||||
|
}
|
||||||
froms = c.RemainingArgs()
|
froms = c.RemainingArgs()
|
||||||
for i := range froms {
|
for i := range froms {
|
||||||
if froms[i] != "*" {
|
if froms[i] != "*" {
|
||||||
|
|
|
@ -26,6 +26,13 @@ func TestFileParse(t *testing.T) {
|
||||||
shouldErr bool
|
shouldErr bool
|
||||||
expectedZones Zones
|
expectedZones Zones
|
||||||
}{
|
}{
|
||||||
|
{
|
||||||
|
`file ` + zoneFileName1 + ` miek.nl {
|
||||||
|
transfer from 127.0.0.1
|
||||||
|
}`,
|
||||||
|
true,
|
||||||
|
Zones{},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
`file`,
|
`file`,
|
||||||
true,
|
true,
|
||||||
|
|
|
@ -63,7 +63,7 @@ func secondaryParse(c *caddy.Controller) (file.Zones, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
for c.NextBlock() {
|
for c.NextBlock() {
|
||||||
t, f, e := file.TransferParse(c)
|
t, f, e := file.TransferParse(c, true)
|
||||||
if e != nil {
|
if e != nil {
|
||||||
return file.Zones{}, e
|
return file.Zones{}, e
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue