-
Notifications
You must be signed in to change notification settings - Fork 13
/
decoder.go
1107 lines (1051 loc) · 33.7 KB
/
decoder.go
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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package csproto
import (
"encoding/binary"
"errors"
"fmt"
"io"
"math"
"unsafe"
)
var (
// ErrInvalidFieldTag is returned by the decoder when it fails to read a varint-encoded field tag/wire type value.
ErrInvalidFieldTag = errors.New("unable to read protobuf field tag")
// ErrInvalidVarintData is returned by the decoder when it fails to read a varint-encoded value.
ErrInvalidVarintData = errors.New("unable to read protobuf varint value")
// ErrValueOverflow is returned by DecodeUInt32() or DecodeInt32() when the decoded value is too large for a 32-bit value.
ErrValueOverflow = errors.New("value overflow trying to read protobuf varint value")
// ErrLenOverflow is returned when the LEN portion of a length-delimited field is larger than 2GB
ErrLenOverflow = errors.New("field length cannot be more than 2GB")
// ErrInvalidZigZagData is returned by the decoder when it fails to read a zigzag-encoded value.
ErrInvalidZigZagData = errors.New("unable to read protobuf zigzag value")
// ErrInvalidFixed32Data is returned by the decoder when it fails to read a fixed-size 32-bit value.
ErrInvalidFixed32Data = errors.New("unable to read protobuf fixed 32-bit value")
// ErrInvalidFixed64Data is returned by the decoder when it fails to read a fixed-size 64-bit value.
ErrInvalidFixed64Data = errors.New("unable to read protobuf fixed 64-bit value")
// ErrInvalidPackedData is returned by the decoder when it fails to read a packed repeated value.
ErrInvalidPackedData = errors.New("unable to read protobuf packed value")
)
// MaxTagValue is the largest supported protobuf field tag, which is 2^29 - 1 (or 536,870,911)
const MaxTagValue = 536870911
// length-delimited fields cannot contain more than 2GB
const maxFieldLen = math.MaxInt32
// DecoderMode defines the behavior of the decoder (safe vs fastest).
type DecoderMode int
const (
// DecoderModeSafe instructs the decoder to only use safe operations when decoding values.
DecoderModeSafe DecoderMode = iota
// DecoderModeFast instructs the decoder to use unsafe operations to avoid allocations and copying data
// for the fastest throughput.
//
// When using DecoderModeFast, the byte slice passed to the decoder must not be modified after
// using the decoder to extract values. The behavior is undefined if the slice is modified.
DecoderModeFast
)
// String returns a string representation of m, "safe" or "fast".
func (m DecoderMode) String() string {
if m == DecoderModeSafe {
return "safe"
}
return "fast"
}
// Decoder implements a binary Protobuf Decoder by sequentially reading from a provided []byte.
type Decoder struct {
p []byte
offset int
mode DecoderMode
}
// NewDecoder initializes a new Protobuf decoder to read the provided buffer.
func NewDecoder(p []byte) *Decoder {
return &Decoder{
p: p,
offset: 0,
}
}
// Mode returns the current decoding mode, safe vs fastest.
func (d *Decoder) Mode() DecoderMode {
return d.mode
}
// SetMode configures the decoding behavior, safe vs fastest.
func (d *Decoder) SetMode(m DecoderMode) {
d.mode = m
}
// Seek sets the position of the next read operation to [offset], interpreted according to [whence]:
// [io.SeekStart] means relative to the start of the data, [io.SeekCurrent] means relative to the
// current offset, and [io.SeekEnd] means relative to the end.
//
// This low-level operation is provided to support advanced/custom usages of the decoder and it is up
// to the caller to ensure that the resulting offset will point to a valid location in the data stream.
func (d *Decoder) Seek(offset int64, whence int) (int64, error) {
pos := int(offset)
switch whence {
case io.SeekStart:
// no adjustment needed
case io.SeekCurrent:
// shift relative to current read offset
pos += d.offset
case io.SeekEnd:
// shift relative to EOF
pos += len(d.p)
default:
return int64(d.offset), fmt.Errorf("invalid value (%d) for whence", whence)
}
// verify bounds then update the read position
if pos < 0 || pos > len(d.p) {
return int64(d.offset), fmt.Errorf("seek position (%d) out of bounds", pos)
}
d.offset = pos
return int64(d.offset), nil
}
// Reset moves the read offset back to the beginning of the encoded data
func (d *Decoder) Reset() {
d.offset = 0
}
// More indicates if there is more data to be read in the buffer.
func (d *Decoder) More() bool {
return d.offset < len(d.p)
}
// Offset returns the current read offset
func (d *Decoder) Offset() int {
return d.offset
}
// DecodeTag decodes a field tag and Protobuf wire type from the stream and returns the values.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodeTag() (tag int, wireType WireType, err error) {
if d.offset >= len(d.p) {
return 0, WireTypeVarint, io.ErrUnexpectedEOF
}
v, n, err := DecodeVarint(d.p[d.offset:])
if err != nil {
return 0, -1, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n < 1 || v < 1 || v > MaxTagValue {
return 0, -1, fmt.Errorf("invalid tag value (%d) at byte %d: %w", v, d.offset, ErrInvalidFieldTag)
}
d.offset += n
return int(v >> 3), WireType(v & 0x7), nil
}
// DecodeBool decodes a boolean value from the stream and returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodeBool() (b bool, err error) {
if d.offset >= len(d.p) {
return false, io.ErrUnexpectedEOF
}
v, n, err := DecodeVarint(d.p[d.offset:])
if err != nil {
return false, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return false, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
d.offset += n
return (v != 0), nil
}
// DecodeString decodes a length-delimited string from the stream and returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodeString() (string, error) {
if d.offset >= len(d.p) {
return "", io.ErrUnexpectedEOF
}
b, err := d.DecodeBytes()
if err != nil {
return "", fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
switch d.mode {
case DecoderModeFast:
return *(*string)(unsafe.Pointer(&b)), nil //nolint: gosec // using unsafe on purpose
default:
// safe mode by default
return string(b), nil
}
}
// DecodeBytes decodes a length-delimited slice of bytes from the stream and returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodeBytes() ([]byte, error) {
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
l, n, err := DecodeVarint(d.p[d.offset:])
switch {
case err != nil:
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
case n == 0:
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
case l > maxFieldLen:
return nil, fmt.Errorf("invalid length (%d) for length-delimited field at byte %d: %w", l, d.offset, ErrLenOverflow)
default:
// length is good
}
nb := int(l)
if d.offset+n+nb > len(d.p) {
return nil, io.ErrUnexpectedEOF
}
b := d.p[d.offset+n : d.offset+n+nb]
d.offset += n + nb
return b, nil
}
// DecodeUInt32 decodes a varint-encoded 32-bit unsigned integer from the stream and returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodeUInt32() (uint32, error) {
if d.offset >= len(d.p) {
return 0, io.ErrUnexpectedEOF
}
v, n, err := DecodeVarint(d.p[d.offset:])
if err != nil {
return 0, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return 0, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
if v > math.MaxUint32 {
return 0, ErrValueOverflow
}
d.offset += n
return uint32(v), nil
}
// DecodeUInt64 decodes a varint-encoded 64-bit unsigned integer from the stream and returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodeUInt64() (uint64, error) {
if d.offset >= len(d.p) {
return 0, io.ErrUnexpectedEOF
}
v, n, err := DecodeVarint(d.p[d.offset:])
if err != nil {
return 0, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return 0, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
d.offset += n
return v, nil
}
// DecodeInt32 decodes a varint-encoded 32-bit integer from the stream and returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodeInt32() (int32, error) {
if d.offset >= len(d.p) {
return 0, io.ErrUnexpectedEOF
}
v, n, err := DecodeVarint(d.p[d.offset:])
if err != nil {
return 0, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return 0, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
// ensure the result is within [-math.MaxInt32, math.MaxInt32] when converted to a signed value
if i64 := int64(v); i64 > math.MaxInt32 || i64 < math.MinInt32 {
return 0, ErrValueOverflow
}
d.offset += n
return int32(v), nil
}
// DecodeInt64 decodes a varint-encoded 64-bit integer from the stream and returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodeInt64() (int64, error) {
if d.offset >= len(d.p) {
return 0, io.ErrUnexpectedEOF
}
v, n, err := DecodeVarint(d.p[d.offset:])
if err != nil {
return 0, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return 0, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
d.offset += n
return int64(v), nil
}
// DecodeSInt32 decodes a zigzag-encoded 32-bit integer from the stream and returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodeSInt32() (int32, error) {
if d.offset >= len(d.p) {
return 0, io.ErrUnexpectedEOF
}
v, n, err := DecodeZigZag32(d.p[d.offset:])
if err != nil {
return 0, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return 0, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidZigZagData)
}
d.offset += n
return v, nil
}
// DecodeSInt64 decodes a zigzag-encoded 32-bit integer from the stream and returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodeSInt64() (int64, error) {
if d.offset >= len(d.p) {
return 0, io.ErrUnexpectedEOF
}
v, n, err := DecodeZigZag64(d.p[d.offset:])
if err != nil {
return 0, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return 0, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidZigZagData)
}
d.offset += n
return v, nil
}
// DecodeFixed32 decodes a 4-byte integer from the stream and returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodeFixed32() (uint32, error) {
if d.offset >= len(d.p) {
return 0, io.ErrUnexpectedEOF
}
v, n, err := DecodeFixed32(d.p[d.offset:])
if err != nil {
return 0, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return 0, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidFixed32Data)
}
d.offset += n
return v, nil
}
// DecodeFixed64 decodes an 8-byte integer from the stream and returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodeFixed64() (uint64, error) {
if d.offset >= len(d.p) {
return 0, io.ErrUnexpectedEOF
}
v, n, err := DecodeFixed64(d.p[d.offset:])
if err != nil {
return 0, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return 0, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidFixed64Data)
}
d.offset += n
return v, nil
}
// DecodeFloat32 decodes a 4-byte IEEE 754 floating point value from the stream and returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodeFloat32() (float32, error) {
if d.offset >= len(d.p) {
return 0, io.ErrUnexpectedEOF
}
v := binary.LittleEndian.Uint32(d.p[d.offset:])
fv := math.Float32frombits(v)
d.offset += 4
return fv, nil
}
// DecodeFloat64 decodes an 8-byte IEEE 754 floating point value from the stream and returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodeFloat64() (float64, error) {
if d.offset >= len(d.p) {
return 0, io.ErrUnexpectedEOF
}
v := binary.LittleEndian.Uint64(d.p[d.offset:])
fv := math.Float64frombits(v)
d.offset += 8
return fv, nil
}
// DecodePackedBool decodes a packed encoded list of boolean values from the stream and returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodePackedBool() ([]bool, error) {
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
var (
l, nRead uint64
n int
err error
res []bool
)
l, n, err = DecodeVarint(d.p[d.offset:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
d.offset += n
packedDataStart := d.offset
for nRead < l {
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
v, n, err := DecodeVarint(d.p[d.offset:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
nRead += uint64(n)
d.offset += n
res = append(res, (v != 0))
}
if nRead != l {
return nil, fmt.Errorf("invalid packed data at byte %d: %w", packedDataStart, ErrInvalidPackedData)
}
return res, nil
}
// DecodePackedInt32 decodes a packed encoded list of 32-bit integers from the stream and returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodePackedInt32() ([]int32, error) { //nolint: dupl // FALSE POSITIVE: this function is NOT a duplicate
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
var (
l, nRead uint64
n int
err error
res []int32
)
l, n, err = DecodeVarint(d.p[d.offset:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
d.offset += n
packedDataStart := d.offset
for nRead < l {
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
v, n, err := DecodeVarint(d.p[d.offset:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
// ensure the result is within [-math.MaxInt32, math.MaxInt32] when converted to a signed value
if v > math.MaxInt32 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrValueOverflow)
}
nRead += uint64(n)
d.offset += n
res = append(res, int32(v))
}
if nRead != l {
return nil, fmt.Errorf("invalid packed data at byte %d: %w", packedDataStart, ErrInvalidPackedData)
}
return res, nil
}
// DecodePackedInt64 decodes a packed encoded list of 64-bit integers from the stream and returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodePackedInt64() ([]int64, error) { //nolint: dupl // FALSE POSITIVE: this function is NOT a duplicate
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
var (
l, nRead uint64
n int
err error
res []int64
)
l, n, err = DecodeVarint(d.p[d.offset:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
d.offset += n
packedDataStart := d.offset
for nRead < l {
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
v, n, err := DecodeVarint(d.p[d.offset:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
if v > math.MaxInt64 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrValueOverflow)
}
nRead += uint64(n)
d.offset += n
res = append(res, int64(v))
}
if nRead != l {
return nil, fmt.Errorf("invalid packed data at byte %d: %w", packedDataStart, ErrInvalidPackedData)
}
return res, nil
}
// DecodePackedUint32 decodes a packed encoded list of unsigned 32-bit integers from the stream and
// returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodePackedUint32() ([]uint32, error) { //nolint: dupl // FALSE POSITIVE: this function is NOT a duplicate
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
var (
l, nRead uint64
n int
err error
res []uint32
)
l, n, err = DecodeVarint(d.p[d.offset:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
d.offset += n
packedDataStart := d.offset
for nRead < l {
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
v, n, err := DecodeVarint(d.p[d.offset:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
// ensure the result is within [0, math.MaxUInt32]
if v > math.MaxUint32 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrValueOverflow)
}
nRead += uint64(n)
d.offset += n
res = append(res, uint32(v))
}
if nRead != l {
return nil, fmt.Errorf("invalid packed data at byte %d: %w", packedDataStart, ErrInvalidPackedData)
}
return res, nil
}
// DecodePackedUint64 decodes a packed encoded list of unsigned 64-bit integers from the stream and
// returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodePackedUint64() ([]uint64, error) { //nolint: dupl // FALSE POSITIVE: this function is NOT a duplicate
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
var (
l, nRead uint64
n int
err error
res []uint64
)
l, n, err = DecodeVarint(d.p[d.offset:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
d.offset += n
packedDataStart := d.offset
for nRead < l {
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
v, n, err := DecodeVarint(d.p[d.offset:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
nRead += uint64(n)
d.offset += n
res = append(res, v)
}
if nRead != l {
return nil, fmt.Errorf("invalid packed data at byte %d: %w", packedDataStart, ErrInvalidPackedData)
}
return res, nil
}
// DecodePackedSint32 decodes a packed encoded list of 32-bit signed integers from the stream and returns
// the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodePackedSint32() ([]int32, error) { //nolint: dupl // FALSE POSITIVE: this function is NOT a duplicate
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
var (
l, nRead uint64
n int
err error
res []int32
)
l, n, err = DecodeVarint(d.p[d.offset:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
d.offset += n
packedDataStart := d.offset
for nRead < l {
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
v, n, err := DecodeZigZag32(d.p[d.offset:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
nRead += uint64(n)
d.offset += n
res = append(res, v)
}
if nRead != l {
return nil, fmt.Errorf("invalid packed data at byte %d: %w", packedDataStart, ErrInvalidPackedData)
}
return res, nil
}
// DecodePackedSint64 decodes a packed encoded list of 64-bit signed integers from the stream and returns
// the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodePackedSint64() ([]int64, error) { //nolint: dupl // FALSE POSITIVE: this function is NOT a duplicate
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
var (
l, nRead uint64
n int
err error
res []int64
)
l, n, err = DecodeVarint(d.p[d.offset:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
d.offset += n
packedDataStart := d.offset
for nRead < l {
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
v, n, err := DecodeZigZag64(d.p[d.offset:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
nRead += uint64(n)
d.offset += n
res = append(res, v)
}
if nRead != l {
return nil, fmt.Errorf("invalid packed data at byte %d: %w", packedDataStart, ErrInvalidPackedData)
}
return res, nil
}
// DecodePackedFixed32 decodes a packed encoded list of 32-bit fixed-width integers from the stream
// and returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodePackedFixed32() ([]uint32, error) { //nolint: dupl // FALSE POSITIVE: this function is NOT a duplicate
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
var (
l, nRead uint64
n int
err error
res []uint32
)
l, n, err = DecodeVarint(d.p[d.offset:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
d.offset += n
packedDataStart := d.offset
for nRead < l {
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
v, n, err := DecodeFixed32(d.p[d.offset:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
nRead += uint64(n)
d.offset += n
res = append(res, v)
}
if nRead != l {
return nil, fmt.Errorf("invalid packed data at byte %d: %w", packedDataStart, ErrInvalidPackedData)
}
return res, nil
}
// DecodePackedFixed64 decodes a packed encoded list of 64-bit fixed-width integers from the stream
// and returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodePackedFixed64() ([]uint64, error) { //nolint: dupl // FALSE POSITIVE: this function is NOT a duplicate
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
var (
l, nRead uint64
n int
err error
res []uint64
)
l, n, err = DecodeVarint(d.p[d.offset:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
d.offset += n
packedDataStart := d.offset
for nRead < l {
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
v, n, err := DecodeFixed64(d.p[d.offset:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
nRead += uint64(n)
d.offset += n
res = append(res, v)
}
if nRead != l {
return nil, fmt.Errorf("invalid packed data at byte %d: %w", packedDataStart, ErrInvalidPackedData)
}
return res, nil
}
// DecodePackedFloat32 decodes a packed encoded list of 32-bit floating point numbers from the stream
// and returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodePackedFloat32() ([]float32, error) { //nolint: dupl // FALSE POSITIVE: this function is NOT a duplicate
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
var (
l, nRead uint64
n int
err error
res []float32
)
l, n, err = DecodeVarint(d.p[d.offset:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
d.offset += n
packedDataStart := d.offset
res = make([]float32, 0, l/4)
for nRead < l {
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
v := binary.LittleEndian.Uint32(d.p[d.offset:])
nRead += 4
d.offset += 4
res = append(res, math.Float32frombits(v))
}
if nRead != l {
return nil, fmt.Errorf("invalid packed data at byte %d: %w", packedDataStart, ErrInvalidPackedData)
}
return res, nil
}
// DecodePackedFloat64 decodes a packed encoded list of 64-bit floating point numbers from the stream
// and returns the value.
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodePackedFloat64() ([]float64, error) {
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
var (
l, nRead uint64
n int
err error
res []float64
)
l, n, err = DecodeVarint(d.p[d.offset:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
if n == 0 {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
}
d.offset += n
packedDataStart := d.offset
for nRead < l {
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
v := binary.LittleEndian.Uint64(d.p[d.offset:])
nRead += 8
d.offset += 8
res = append(res, math.Float64frombits(v))
}
if nRead != l {
return nil, fmt.Errorf("invalid packed data at byte %d: %w", packedDataStart, ErrInvalidPackedData)
}
return res, nil
}
// DecodeNested decodes a nested Protobuf message from the stream into m. If m satisfies our csproto.Unmarshaler
// interface its Unmarshal() method will be called. Otherwise, this method delegates to Marshal().
//
// io.ErrUnexpectedEOF is returned if the operation would read past the end of the data.
func (d *Decoder) DecodeNested(m interface{}) error {
if d.offset >= len(d.p) {
return io.ErrUnexpectedEOF
}
l, n, err := DecodeVarint(d.p[d.offset:])
switch {
case err != nil:
return fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
case n == 0:
return fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
case l > maxFieldLen:
return fmt.Errorf("invalid length (%d) for length-delimited field at byte %d: %w", l, d.offset, ErrLenOverflow)
default:
// length is good
}
nb := int(l)
if nb < 0 {
return fmt.Errorf("csproto: bad byte length %d at byte %d", nb, d.offset)
}
if d.offset+n+nb > len(d.p) {
return io.ErrUnexpectedEOF
}
switch tv := m.(type) {
case Unmarshaler:
if err := tv.Unmarshal(d.p[d.offset+n : d.offset+n+nb]); err != nil {
return err
}
default:
if err := Unmarshal(d.p[d.offset+n:d.offset+n+nb], m); err != nil {
return err
}
}
d.offset += n + nb
return nil
}
// Skip skips over the encoded field value at the current offset, returning the raw bytes so that the
// caller can decide what to do with the data.
//
// The tag and wire type are validated against the provided values and a DecoderSkipError error is
// returned if they do not match. This check is skipped when using "fast" mode.
//
// io.ErrUnexpectedEOF is returned if the operation would advance past the end of the data.
func (d *Decoder) Skip(tag int, wt WireType) ([]byte, error) {
if d.offset >= len(d.p) {
return nil, io.ErrUnexpectedEOF
}
sz := SizeOfTagKey(tag)
bof := d.offset - sz
// account for skipping the first field
if bof < 0 {
bof = 0
}
// validate that the field we're skipping matches the specified tag and wire type
// . skip validation in fast mode
if d.mode == DecoderModeSafe {
v, n, err := DecodeVarint(d.p[bof:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", bof, err)
}
if n != sz {
return nil, fmt.Errorf("invalid data at byte %d: %w", bof, ErrInvalidVarintData)
}
thisTag, thisWireType := int(v>>3), WireType(v&0x7)
if thisTag != tag || thisWireType != wt {
return nil, &DecoderSkipError{
ExpectedTag: tag,
ExpectedWireType: wt,
ActualTag: thisTag,
ActualWireType: thisWireType,
}
}
}
skipped := 0
switch wt {
case WireTypeVarint:
_, n, err := DecodeVarint(d.p[d.offset:])
if err != nil {
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
}
skipped = n
case WireTypeFixed64:
skipped = 8
case WireTypeLengthDelimited:
l, n, err := DecodeVarint(d.p[d.offset:])
switch {
case err != nil:
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, err)
case n == 0:
return nil, fmt.Errorf("invalid data at byte %d: %w", d.offset, ErrInvalidVarintData)
case l > maxFieldLen:
return nil, fmt.Errorf("invalid length (%d) for length-delimited field at byte %d: %w", l, d.offset, ErrLenOverflow)
default:
// length is good
}
skipped = n + int(l)
case WireTypeFixed32:
skipped = 4
default:
return nil, fmt.Errorf("unsupported wire type value %v at byte %d", wt, d.offset)
}
if d.offset+skipped > len(d.p) {
return nil, io.ErrUnexpectedEOF
}
d.offset += skipped
return d.p[bof:d.offset], nil
}
// DecodeVarint reads a base-128 [varint encoded] integer from p and returns the value and the number
// of bytes that were consumed.
//
// [varint encoded]: https://developers.google.com/protocol-buffers/docs/encoding#varints
func DecodeVarint(p []byte) (v uint64, n int, err error) {
if len(p) == 0 {
return 0, 0, ErrInvalidVarintData
}
// single-byte values don't need any processing
if p[0] < 0x80 {
return uint64(p[0]), 1, nil
}
// 2-9 byte values
if len(p) < 10 {