本站源代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

125 lines
2.8KB

  1. // Copyright 2011 The Snappy-Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package snappy
  5. import (
  6. "encoding/binary"
  7. "errors"
  8. )
  9. // ErrCorrupt reports that the input is invalid.
  10. var ErrCorrupt = errors.New("snappy: corrupt input")
  11. // DecodedLen returns the length of the decoded block.
  12. func DecodedLen(src []byte) (int, error) {
  13. v, _, err := decodedLen(src)
  14. return v, err
  15. }
  16. // decodedLen returns the length of the decoded block and the number of bytes
  17. // that the length header occupied.
  18. func decodedLen(src []byte) (blockLen, headerLen int, err error) {
  19. v, n := binary.Uvarint(src)
  20. if n == 0 {
  21. return 0, 0, ErrCorrupt
  22. }
  23. if uint64(int(v)) != v {
  24. return 0, 0, errors.New("snappy: decoded block is too large")
  25. }
  26. return int(v), n, nil
  27. }
  28. // Decode returns the decoded form of src. The returned slice may be a sub-
  29. // slice of dst if dst was large enough to hold the entire decoded block.
  30. // Otherwise, a newly allocated slice will be returned.
  31. // It is valid to pass a nil dst.
  32. func Decode(dst, src []byte) ([]byte, error) {
  33. dLen, s, err := decodedLen(src)
  34. if err != nil {
  35. return nil, err
  36. }
  37. if len(dst) < dLen {
  38. dst = make([]byte, dLen)
  39. }
  40. var d, offset, length int
  41. for s < len(src) {
  42. switch src[s] & 0x03 {
  43. case tagLiteral:
  44. x := uint(src[s] >> 2)
  45. switch {
  46. case x < 60:
  47. s += 1
  48. case x == 60:
  49. s += 2
  50. if s > len(src) {
  51. return nil, ErrCorrupt
  52. }
  53. x = uint(src[s-1])
  54. case x == 61:
  55. s += 3
  56. if s > len(src) {
  57. return nil, ErrCorrupt
  58. }
  59. x = uint(src[s-2]) | uint(src[s-1])<<8
  60. case x == 62:
  61. s += 4
  62. if s > len(src) {
  63. return nil, ErrCorrupt
  64. }
  65. x = uint(src[s-3]) | uint(src[s-2])<<8 | uint(src[s-1])<<16
  66. case x == 63:
  67. s += 5
  68. if s > len(src) {
  69. return nil, ErrCorrupt
  70. }
  71. x = uint(src[s-4]) | uint(src[s-3])<<8 | uint(src[s-2])<<16 | uint(src[s-1])<<24
  72. }
  73. length = int(x + 1)
  74. if length <= 0 {
  75. return nil, errors.New("snappy: unsupported literal length")
  76. }
  77. if length > len(dst)-d || length > len(src)-s {
  78. return nil, ErrCorrupt
  79. }
  80. copy(dst[d:], src[s:s+length])
  81. d += length
  82. s += length
  83. continue
  84. case tagCopy1:
  85. s += 2
  86. if s > len(src) {
  87. return nil, ErrCorrupt
  88. }
  89. length = 4 + int(src[s-2])>>2&0x7
  90. offset = int(src[s-2])&0xe0<<3 | int(src[s-1])
  91. case tagCopy2:
  92. s += 3
  93. if s > len(src) {
  94. return nil, ErrCorrupt
  95. }
  96. length = 1 + int(src[s-3])>>2
  97. offset = int(src[s-2]) | int(src[s-1])<<8
  98. case tagCopy4:
  99. return nil, errors.New("snappy: unsupported COPY_4 tag")
  100. }
  101. end := d + length
  102. if offset > d || end > len(dst) {
  103. return nil, ErrCorrupt
  104. }
  105. for ; d < end; d++ {
  106. dst[d] = dst[d-offset]
  107. }
  108. }
  109. if d != dLen {
  110. return nil, ErrCorrupt
  111. }
  112. return dst[:d], nil
  113. }
上海开阖软件有限公司 沪ICP备12045867号-1