1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
|
package syntax
import (
"bytes"
"fmt"
"reflect"
"runtime"
)
func Unmarshal(data []byte, v interface{}) (int, error) {
// Check for well-formedness.
// Avoids filling out half a data structure
// before discovering a JSON syntax error.
d := decodeState{}
d.Write(data)
return d.unmarshal(v)
}
// Unmarshaler is the interface implemented by types that can
// unmarshal a TLS description of themselves. Note that unlike the
// JSON unmarshaler interface, it is not known a priori how much of
// the input data will be consumed. So the Unmarshaler must state
// how much of the input data it consumed.
type Unmarshaler interface {
UnmarshalTLS([]byte) (int, error)
}
type decodeState struct {
bytes.Buffer
}
func (d *decodeState) unmarshal(v interface{}) (read int, err error) {
defer func() {
if r := recover(); r != nil {
if _, ok := r.(runtime.Error); ok {
panic(r)
}
if s, ok := r.(string); ok {
panic(s)
}
err = r.(error)
}
}()
rv := reflect.ValueOf(v)
if rv.Kind() != reflect.Ptr || rv.IsNil() {
return 0, fmt.Errorf("Invalid unmarshal target (non-pointer or nil)")
}
read = d.value(rv)
return read, nil
}
func (e *decodeState) value(v reflect.Value) int {
return valueDecoder(v)(e, v, fieldOptions{})
}
type decoderFunc func(e *decodeState, v reflect.Value, opts fieldOptions) int
func valueDecoder(v reflect.Value) decoderFunc {
return typeDecoder(v.Type().Elem())
}
func typeDecoder(t reflect.Type) decoderFunc {
// Note: Omits the caching / wait-group things that encoding/json uses
return newTypeDecoder(t)
}
var (
unmarshalerType = reflect.TypeOf(new(Unmarshaler)).Elem()
)
func newTypeDecoder(t reflect.Type) decoderFunc {
var dec decoderFunc
if t.Kind() != reflect.Ptr && reflect.PtrTo(t).Implements(unmarshalerType) {
dec = unmarshalerDecoder
} else {
switch t.Kind() {
case reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
dec = uintDecoder
case reflect.Array:
dec = newArrayDecoder(t)
case reflect.Slice:
dec = newSliceDecoder(t)
case reflect.Map:
dec = newMapDecoder(t)
case reflect.Struct:
dec = newStructDecoder(t)
case reflect.Ptr:
dec = newPointerDecoder(t)
default:
panic(fmt.Errorf("Unsupported type (%s)", t))
}
}
if reflect.PtrTo(t).Implements(validatorType) {
dec = newValidatorDecoder(dec)
}
return dec
}
///// Specific decoders below
func omitDecoder(d *decodeState, v reflect.Value, opts fieldOptions) int {
return 0
}
//////////
func unmarshalerDecoder(d *decodeState, v reflect.Value, opts fieldOptions) int {
um, ok := v.Interface().(Unmarshaler)
if !ok {
panic(fmt.Errorf("Non-Unmarshaler passed to unmarshalerEncoder"))
}
read, err := um.UnmarshalTLS(d.Bytes())
if err != nil {
panic(err)
}
if read > d.Len() {
panic(fmt.Errorf("Invalid return value from UnmarshalTLS"))
}
d.Next(read)
return read
}
//////////
func newValidatorDecoder(raw decoderFunc) decoderFunc {
return func(d *decodeState, v reflect.Value, opts fieldOptions) int {
read := raw(d, v, opts)
val, ok := v.Interface().(Validator)
if !ok {
panic(fmt.Errorf("Non-Validator passed to validatorDecoder"))
}
if err := val.ValidForTLS(); err != nil {
panic(fmt.Errorf("Decoded invalid TLS value: %v", err))
}
return read
}
}
//////////
func uintDecoder(d *decodeState, v reflect.Value, opts fieldOptions) int {
if opts.varint {
return varintDecoder(d, v, opts)
}
uintLen := int(v.Elem().Type().Size())
buf := d.Next(uintLen)
if len(buf) != uintLen {
panic(fmt.Errorf("Insufficient data to read uint"))
}
return setUintFromBuffer(v, buf)
}
func varintDecoder(d *decodeState, v reflect.Value, opts fieldOptions) int {
l, val := readVarint(d)
uintLen := int(v.Elem().Type().Size())
if uintLen < l {
panic(fmt.Errorf("Uint too small to fit varint: %d < %d", uintLen, l))
}
v.Elem().SetUint(val)
return l
}
func readVarint(d *decodeState) (int, uint64) {
// Read the first octet and decide the size of the presented varint
first := d.Next(1)
if len(first) != 1 {
panic(fmt.Errorf("Insufficient data to read varint length"))
}
twoBits := uint(first[0] >> 6)
varintLen := 1 << twoBits
rest := d.Next(varintLen - 1)
if len(rest) != varintLen-1 {
panic(fmt.Errorf("Insufficient data to read varint"))
}
buf := append(first, rest...)
buf[0] &= 0x3f
return len(buf), decodeUintFromBuffer(buf)
}
func decodeUintFromBuffer(buf []byte) uint64 {
val := uint64(0)
for _, b := range buf {
val = (val << 8) + uint64(b)
}
return val
}
func setUintFromBuffer(v reflect.Value, buf []byte) int {
v.Elem().SetUint(decodeUintFromBuffer(buf))
return len(buf)
}
//////////
type arrayDecoder struct {
elemDec decoderFunc
}
func (ad *arrayDecoder) decode(d *decodeState, v reflect.Value, opts fieldOptions) int {
n := v.Elem().Type().Len()
read := 0
for i := 0; i < n; i += 1 {
read += ad.elemDec(d, v.Elem().Index(i).Addr(), opts)
}
return read
}
func newArrayDecoder(t reflect.Type) decoderFunc {
dec := &arrayDecoder{typeDecoder(t.Elem())}
return dec.decode
}
//////////
func decodeLength(d *decodeState, opts fieldOptions) (int, int) {
read := 0
length := 0
switch {
case opts.omitHeader:
read = 0
length = d.Len()
case opts.varintHeader:
var length64 uint64
read, length64 = readVarint(d)
length = int(length64)
case opts.headerSize > 0:
lengthBytes := d.Next(int(opts.headerSize))
if len(lengthBytes) != int(opts.headerSize) {
panic(fmt.Errorf("Not enough data to read header"))
}
read = len(lengthBytes)
length = int(decodeUintFromBuffer(lengthBytes))
default:
panic(fmt.Errorf("Cannot decode a slice without a header length"))
}
// Check that the length is OK
if opts.maxSize > 0 && length > opts.maxSize {
panic(fmt.Errorf("Length of vector exceeds declared max"))
}
if length < opts.minSize {
panic(fmt.Errorf("Length of vector below declared min"))
}
return read, length
}
//////////
type sliceDecoder struct {
elementType reflect.Type
elementDec decoderFunc
}
func (sd *sliceDecoder) decode(d *decodeState, v reflect.Value, opts fieldOptions) int {
// Determine the length of the vector
read, length := decodeLength(d, opts)
// Decode elements
elemData := d.Next(length)
if len(elemData) != length {
panic(fmt.Errorf("Not enough data to read elements"))
}
elemBuf := &decodeState{}
elemBuf.Write(elemData)
elems := []reflect.Value{}
for elemBuf.Len() > 0 {
elem := reflect.New(sd.elementType)
read += sd.elementDec(elemBuf, elem, opts)
elems = append(elems, elem)
}
v.Elem().Set(reflect.MakeSlice(v.Elem().Type(), len(elems), len(elems)))
for i := 0; i < len(elems); i += 1 {
v.Elem().Index(i).Set(elems[i].Elem())
}
return read
}
func newSliceDecoder(t reflect.Type) decoderFunc {
dec := &sliceDecoder{
elementType: t.Elem(),
elementDec: typeDecoder(t.Elem()),
}
return dec.decode
}
//////////
type mapDecoder struct {
keyType reflect.Type
valType reflect.Type
keyDec decoderFunc
valDec decoderFunc
}
func (md mapDecoder) decode(d *decodeState, v reflect.Value, opts fieldOptions) int {
// Determine the length of the data
read, length := decodeLength(d, opts)
// Decode key/value pairs
elemData := d.Next(length)
if len(elemData) != length {
panic(fmt.Errorf("Not enough data to read elements"))
}
mapType := reflect.MapOf(md.keyType, md.valType)
v.Elem().Set(reflect.MakeMap(mapType))
nullOpts := fieldOptions{}
elemBuf := &decodeState{}
elemBuf.Write(elemData)
for elemBuf.Len() > 0 {
key := reflect.New(md.keyType)
read += md.keyDec(elemBuf, key, nullOpts)
val := reflect.New(md.valType)
read += md.valDec(elemBuf, val, nullOpts)
v.Elem().SetMapIndex(key.Elem(), val.Elem())
}
return read
}
func newMapDecoder(t reflect.Type) decoderFunc {
md := mapDecoder{
keyType: t.Key(),
valType: t.Elem(),
keyDec: typeDecoder(t.Key()),
valDec: typeDecoder(t.Elem()),
}
return md.decode
}
//////////
type structDecoder struct {
fieldOpts []fieldOptions
fieldDecs []decoderFunc
}
func (sd *structDecoder) decode(d *decodeState, v reflect.Value, opts fieldOptions) int {
read := 0
for i := range sd.fieldDecs {
read += sd.fieldDecs[i](d, v.Elem().Field(i).Addr(), sd.fieldOpts[i])
}
return read
}
func newStructDecoder(t reflect.Type) decoderFunc {
n := t.NumField()
sd := structDecoder{
fieldOpts: make([]fieldOptions, n),
fieldDecs: make([]decoderFunc, n),
}
for i := 0; i < n; i += 1 {
f := t.Field(i)
tag := f.Tag.Get("tls")
opts := parseTag(tag)
if !opts.ValidForType(f.Type) {
panic(fmt.Errorf("Tags invalid for field type"))
}
sd.fieldOpts[i] = opts
if sd.fieldOpts[i].omit {
sd.fieldDecs[i] = omitDecoder
} else {
sd.fieldDecs[i] = typeDecoder(f.Type)
}
}
return sd.decode
}
//////////
type pointerDecoder struct {
base decoderFunc
}
func (pd *pointerDecoder) decode(d *decodeState, v reflect.Value, opts fieldOptions) int {
readBase := 0
if opts.optional {
readBase = 1
flag := d.Next(1)
switch flag[0] {
case optionalFlagAbsent:
indir := v.Elem()
indir.Set(reflect.Zero(indir.Type()))
return 1
case optionalFlagPresent:
// No action; continue as normal
default:
panic(fmt.Errorf("Invalid flag byte for optional: [%x]", flag))
}
}
v.Elem().Set(reflect.New(v.Elem().Type().Elem()))
return readBase + pd.base(d, v.Elem(), opts)
}
func newPointerDecoder(t reflect.Type) decoderFunc {
baseDecoder := typeDecoder(t.Elem())
pd := pointerDecoder{base: baseDecoder}
return pd.decode
}
|