mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 14:17:36 +03:00
Limit the number of ODoH target configs
This commit is contained in:
parent
06135b6141
commit
3cf5c1ab8e
1 changed files with 7 additions and 4 deletions
|
@ -11,7 +11,8 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
odohVersion = uint16(0xff06)
|
odohVersion = uint16(0xff06)
|
||||||
|
maxODoHConfigs = 10
|
||||||
)
|
)
|
||||||
|
|
||||||
type ODoHTargetConfig struct {
|
type ODoHTargetConfig struct {
|
||||||
|
@ -34,7 +35,8 @@ func parseODoHTargetConfig(config []byte) (ODoHTargetConfig, error) {
|
||||||
kdfID := binary.BigEndian.Uint16(config[2:4])
|
kdfID := binary.BigEndian.Uint16(config[2:4])
|
||||||
aeadID := binary.BigEndian.Uint16(config[4:6])
|
aeadID := binary.BigEndian.Uint16(config[4:6])
|
||||||
publicKeyLength := binary.BigEndian.Uint16(config[6:8])
|
publicKeyLength := binary.BigEndian.Uint16(config[6:8])
|
||||||
if len(config[8:]) != int(publicKeyLength) {
|
publicKey := config[8:]
|
||||||
|
if len(publicKey) != int(publicKeyLength) {
|
||||||
return ODoHTargetConfig{}, fmt.Errorf("Malformed config")
|
return ODoHTargetConfig{}, fmt.Errorf("Malformed config")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,7 +45,6 @@ func parseODoHTargetConfig(config []byte) (ODoHTargetConfig, error) {
|
||||||
return ODoHTargetConfig{}, err
|
return ODoHTargetConfig{}, err
|
||||||
}
|
}
|
||||||
|
|
||||||
publicKey := config[8:]
|
|
||||||
_, _, err = suite.NewClientContext(publicKey, []byte("odoh query"), nil)
|
_, _, err = suite.NewClientContext(publicKey, []byte("odoh query"), nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return ODoHTargetConfig{}, err
|
return ODoHTargetConfig{}, err
|
||||||
|
@ -81,8 +82,10 @@ func parseODoHTargetConfigs(configs []byte) ([]ODoHTargetConfig, error) {
|
||||||
targets = append(targets, target)
|
targets = append(targets, target)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
offset = offset + int(configLength) + 4
|
offset = offset + int(configLength) + 4
|
||||||
|
if len(targets) >= maxODoHConfigs {
|
||||||
|
break
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue