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
|
// Copyright (C) 2022 Luke Shumaker <lukeshu@lukeshu.com>
//
// SPDX-License-Identifier: GPL-2.0-or-later
package binstruct
import (
"errors"
"fmt"
"reflect"
)
type Unmarshaler interface {
UnmarshalBinary([]byte) (int, error)
}
func Unmarshal(dat []byte, dstPtr any) (int, error) {
if unmar, ok := dstPtr.(Unmarshaler); ok {
n, err := unmar.UnmarshalBinary(dat)
if err != nil {
err = &UnmarshalError{
Type: reflect.TypeOf(dstPtr),
Method: "UnmarshalBinary",
Err: err,
}
}
return n, err
}
return UnmarshalWithoutInterface(dat, dstPtr)
}
func UnmarshalWithoutInterface(dat []byte, dstPtr any) (int, error) {
_dstPtr := reflect.ValueOf(dstPtr)
if _dstPtr.Kind() != reflect.Ptr {
panic(&InvalidTypeError{
Type: _dstPtr.Type(),
Err: errors.New("not a pointer"),
})
}
dst := _dstPtr.Elem()
switch dst.Kind() {
case reflect.Uint8, reflect.Int8, reflect.Uint16, reflect.Int16, reflect.Uint32, reflect.Int32, reflect.Uint64, reflect.Int64:
typ := intKind2Type[dst.Kind()]
newDstPtr := reflect.New(typ)
n, err := Unmarshal(dat, newDstPtr.Interface())
dst.Set(newDstPtr.Elem().Convert(dst.Type()))
return n, err
case reflect.Ptr:
elemPtr := reflect.New(dst.Type().Elem())
n, err := Unmarshal(dat, elemPtr.Interface())
dst.Set(elemPtr.Convert(dst.Type()))
return n, err
case reflect.Array:
var n int
for i := 0; i < dst.Len(); i++ {
_n, err := Unmarshal(dat[n:], dst.Index(i).Addr().Interface())
n += _n
if err != nil {
return n, err
}
}
return n, nil
case reflect.Struct:
return getStructHandler(dst.Type()).Unmarshal(dat, dst)
default:
panic(&InvalidTypeError{
Type: _dstPtr.Type(),
Err: fmt.Errorf("does not implement binfmt.Unmarshaler and kind=%v is not a supported statically-sized kind",
dst.Kind()),
})
}
}
|