2016-11-22 19:32:10 +00:00
|
|
|
package signature
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
|
|
|
// jsonFormatError is returned when JSON does not match expected format.
|
|
|
|
type jsonFormatError string
|
|
|
|
|
|
|
|
func (err jsonFormatError) Error() string {
|
|
|
|
return string(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// validateExactMapKeys returns an error if the keys of m are not exactly expectedKeys, which must be pairwise distinct
|
|
|
|
func validateExactMapKeys(m map[string]interface{}, expectedKeys ...string) error {
|
|
|
|
if len(m) != len(expectedKeys) {
|
|
|
|
return jsonFormatError("Unexpected keys in a JSON object")
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, k := range expectedKeys {
|
|
|
|
if _, ok := m[k]; !ok {
|
|
|
|
return jsonFormatError(fmt.Sprintf("Key %s missing in a JSON object", k))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Assuming expectedKeys are pairwise distinct, we know m contains len(expectedKeys) different values in expectedKeys.
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-02-01 00:45:59 +00:00
|
|
|
// int64Field returns a member fieldName of m, if it is an int64, or an error.
|
|
|
|
func int64Field(m map[string]interface{}, fieldName string) (int64, error) {
|
|
|
|
untyped, ok := m[fieldName]
|
|
|
|
if !ok {
|
|
|
|
return -1, jsonFormatError(fmt.Sprintf("Field %s missing", fieldName))
|
|
|
|
}
|
|
|
|
f, ok := untyped.(float64)
|
|
|
|
if !ok {
|
|
|
|
return -1, jsonFormatError(fmt.Sprintf("Field %s is not a number", fieldName))
|
|
|
|
}
|
|
|
|
v := int64(f)
|
|
|
|
if float64(v) != f {
|
|
|
|
return -1, jsonFormatError(fmt.Sprintf("Field %s is not an integer", fieldName))
|
|
|
|
}
|
|
|
|
return v, nil
|
|
|
|
}
|
|
|
|
|
2016-11-22 19:32:10 +00:00
|
|
|
// mapField returns a member fieldName of m, if it is a JSON map, or an error.
|
|
|
|
func mapField(m map[string]interface{}, fieldName string) (map[string]interface{}, error) {
|
|
|
|
untyped, ok := m[fieldName]
|
|
|
|
if !ok {
|
|
|
|
return nil, jsonFormatError(fmt.Sprintf("Field %s missing", fieldName))
|
|
|
|
}
|
|
|
|
v, ok := untyped.(map[string]interface{})
|
|
|
|
if !ok {
|
|
|
|
return nil, jsonFormatError(fmt.Sprintf("Field %s is not a JSON object", fieldName))
|
|
|
|
}
|
|
|
|
return v, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// stringField returns a member fieldName of m, if it is a string, or an error.
|
|
|
|
func stringField(m map[string]interface{}, fieldName string) (string, error) {
|
|
|
|
untyped, ok := m[fieldName]
|
|
|
|
if !ok {
|
|
|
|
return "", jsonFormatError(fmt.Sprintf("Field %s missing", fieldName))
|
|
|
|
}
|
|
|
|
v, ok := untyped.(string)
|
|
|
|
if !ok {
|
2017-02-01 00:45:59 +00:00
|
|
|
return "", jsonFormatError(fmt.Sprintf("Field %s is not a string", fieldName))
|
2016-11-22 19:32:10 +00:00
|
|
|
}
|
|
|
|
return v, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// paranoidUnmarshalJSONObject unmarshals data as a JSON object, but failing on the slightest unexpected aspect
|
|
|
|
// (including duplicated keys, unrecognized keys, and non-matching types). Uses fieldResolver to
|
|
|
|
// determine the destination for a field value, which should return a pointer to the destination if valid, or nil if the key is rejected.
|
|
|
|
//
|
|
|
|
// The fieldResolver approach is useful for decoding the Policy.Transports map; using it for structs is a bit lazy,
|
|
|
|
// we could use reflection to automate this. Later?
|
|
|
|
func paranoidUnmarshalJSONObject(data []byte, fieldResolver func(string) interface{}) error {
|
|
|
|
seenKeys := map[string]struct{}{}
|
|
|
|
|
|
|
|
dec := json.NewDecoder(bytes.NewReader(data))
|
|
|
|
t, err := dec.Token()
|
|
|
|
if err != nil {
|
|
|
|
return jsonFormatError(err.Error())
|
|
|
|
}
|
|
|
|
if t != json.Delim('{') {
|
|
|
|
return jsonFormatError(fmt.Sprintf("JSON object expected, got \"%s\"", t))
|
|
|
|
}
|
|
|
|
for {
|
|
|
|
t, err := dec.Token()
|
|
|
|
if err != nil {
|
|
|
|
return jsonFormatError(err.Error())
|
|
|
|
}
|
|
|
|
if t == json.Delim('}') {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
key, ok := t.(string)
|
|
|
|
if !ok {
|
|
|
|
// Coverage: This should never happen, dec.Token() rejects non-string-literals in this state.
|
|
|
|
return jsonFormatError(fmt.Sprintf("Key string literal expected, got \"%s\"", t))
|
|
|
|
}
|
|
|
|
if _, ok := seenKeys[key]; ok {
|
|
|
|
return jsonFormatError(fmt.Sprintf("Duplicate key \"%s\"", key))
|
|
|
|
}
|
|
|
|
seenKeys[key] = struct{}{}
|
|
|
|
|
|
|
|
valuePtr := fieldResolver(key)
|
|
|
|
if valuePtr == nil {
|
|
|
|
return jsonFormatError(fmt.Sprintf("Unknown key \"%s\"", key))
|
|
|
|
}
|
|
|
|
// This works like json.Unmarshal, in particular it allows us to implement UnmarshalJSON to implement strict parsing of the field value.
|
|
|
|
if err := dec.Decode(valuePtr); err != nil {
|
|
|
|
return jsonFormatError(err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if _, err := dec.Token(); err != io.EOF {
|
|
|
|
return jsonFormatError("Unexpected data after JSON object")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|