mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-30 06:38:37 -04:00 
			
		
		
		
	* update github.com/alecthomas/chroma v0.8.0 -> v0.8.1 * github.com/blevesearch/bleve v1.0.10 -> v1.0.12 * editorconfig-core-go v2.1.1 -> v2.3.7 * github.com/gliderlabs/ssh v0.2.2 -> v0.3.1 * migrate editorconfig.ParseBytes to Parse * github.com/shurcooL/vfsgen to 0d455de96546 * github.com/go-git/go-git/v5 v5.1.0 -> v5.2.0 * github.com/google/uuid v1.1.1 -> v1.1.2 * github.com/huandu/xstrings v1.3.0 -> v1.3.2 * github.com/klauspost/compress v1.10.11 -> v1.11.1 * github.com/markbates/goth v1.61.2 -> v1.65.0 * github.com/mattn/go-sqlite3 v1.14.0 -> v1.14.4 * github.com/mholt/archiver v3.3.0 -> v3.3.2 * github.com/microcosm-cc/bluemonday 4f7140c49acb -> v1.0.4 * github.com/minio/minio-go v7.0.4 -> v7.0.5 * github.com/olivere/elastic v7.0.9 -> v7.0.20 * github.com/urfave/cli v1.20.0 -> v1.22.4 * github.com/prometheus/client_golang v1.1.0 -> v1.8.0 * github.com/xanzy/go-gitlab v0.37.0 -> v0.38.1 * mvdan.cc/xurls v2.1.0 -> v2.2.0 Co-authored-by: Lauris BH <lauris@nix.lv>
		
			
				
	
	
		
			116 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			116 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
| // Copyright 2016 The Snappy-Go Authors. All rights reserved.
 | |
| // Use of this source code is governed by a BSD-style
 | |
| // license that can be found in the LICENSE file.
 | |
| 
 | |
| // +build !amd64,!arm64 appengine !gc noasm
 | |
| 
 | |
| package snappy
 | |
| 
 | |
| // decode writes the decoding of src to dst. It assumes that the varint-encoded
 | |
| // length of the decompressed bytes has already been read, and that len(dst)
 | |
| // equals that length.
 | |
| //
 | |
| // It returns 0 on success or a decodeErrCodeXxx error code on failure.
 | |
| func decode(dst, src []byte) int {
 | |
| 	var d, s, offset, length int
 | |
| 	for s < len(src) {
 | |
| 		switch src[s] & 0x03 {
 | |
| 		case tagLiteral:
 | |
| 			x := uint32(src[s] >> 2)
 | |
| 			switch {
 | |
| 			case x < 60:
 | |
| 				s++
 | |
| 			case x == 60:
 | |
| 				s += 2
 | |
| 				if uint(s) > uint(len(src)) { // The uint conversions catch overflow from the previous line.
 | |
| 					return decodeErrCodeCorrupt
 | |
| 				}
 | |
| 				x = uint32(src[s-1])
 | |
| 			case x == 61:
 | |
| 				s += 3
 | |
| 				if uint(s) > uint(len(src)) { // The uint conversions catch overflow from the previous line.
 | |
| 					return decodeErrCodeCorrupt
 | |
| 				}
 | |
| 				x = uint32(src[s-2]) | uint32(src[s-1])<<8
 | |
| 			case x == 62:
 | |
| 				s += 4
 | |
| 				if uint(s) > uint(len(src)) { // The uint conversions catch overflow from the previous line.
 | |
| 					return decodeErrCodeCorrupt
 | |
| 				}
 | |
| 				x = uint32(src[s-3]) | uint32(src[s-2])<<8 | uint32(src[s-1])<<16
 | |
| 			case x == 63:
 | |
| 				s += 5
 | |
| 				if uint(s) > uint(len(src)) { // The uint conversions catch overflow from the previous line.
 | |
| 					return decodeErrCodeCorrupt
 | |
| 				}
 | |
| 				x = uint32(src[s-4]) | uint32(src[s-3])<<8 | uint32(src[s-2])<<16 | uint32(src[s-1])<<24
 | |
| 			}
 | |
| 			length = int(x) + 1
 | |
| 			if length <= 0 {
 | |
| 				return decodeErrCodeUnsupportedLiteralLength
 | |
| 			}
 | |
| 			if length > len(dst)-d || length > len(src)-s {
 | |
| 				return decodeErrCodeCorrupt
 | |
| 			}
 | |
| 			copy(dst[d:], src[s:s+length])
 | |
| 			d += length
 | |
| 			s += length
 | |
| 			continue
 | |
| 
 | |
| 		case tagCopy1:
 | |
| 			s += 2
 | |
| 			if uint(s) > uint(len(src)) { // The uint conversions catch overflow from the previous line.
 | |
| 				return decodeErrCodeCorrupt
 | |
| 			}
 | |
| 			length = 4 + int(src[s-2])>>2&0x7
 | |
| 			offset = int(uint32(src[s-2])&0xe0<<3 | uint32(src[s-1]))
 | |
| 
 | |
| 		case tagCopy2:
 | |
| 			s += 3
 | |
| 			if uint(s) > uint(len(src)) { // The uint conversions catch overflow from the previous line.
 | |
| 				return decodeErrCodeCorrupt
 | |
| 			}
 | |
| 			length = 1 + int(src[s-3])>>2
 | |
| 			offset = int(uint32(src[s-2]) | uint32(src[s-1])<<8)
 | |
| 
 | |
| 		case tagCopy4:
 | |
| 			s += 5
 | |
| 			if uint(s) > uint(len(src)) { // The uint conversions catch overflow from the previous line.
 | |
| 				return decodeErrCodeCorrupt
 | |
| 			}
 | |
| 			length = 1 + int(src[s-5])>>2
 | |
| 			offset = int(uint32(src[s-4]) | uint32(src[s-3])<<8 | uint32(src[s-2])<<16 | uint32(src[s-1])<<24)
 | |
| 		}
 | |
| 
 | |
| 		if offset <= 0 || d < offset || length > len(dst)-d {
 | |
| 			return decodeErrCodeCorrupt
 | |
| 		}
 | |
| 		// Copy from an earlier sub-slice of dst to a later sub-slice.
 | |
| 		// If no overlap, use the built-in copy:
 | |
| 		if offset >= length {
 | |
| 			copy(dst[d:d+length], dst[d-offset:])
 | |
| 			d += length
 | |
| 			continue
 | |
| 		}
 | |
| 
 | |
| 		// Unlike the built-in copy function, this byte-by-byte copy always runs
 | |
| 		// forwards, even if the slices overlap. Conceptually, this is:
 | |
| 		//
 | |
| 		// d += forwardCopy(dst[d:d+length], dst[d-offset:])
 | |
| 		//
 | |
| 		// We align the slices into a and b and show the compiler they are the same size.
 | |
| 		// This allows the loop to run without bounds checks.
 | |
| 		a := dst[d : d+length]
 | |
| 		b := dst[d-offset:]
 | |
| 		b = b[:len(a)]
 | |
| 		for i := range a {
 | |
| 			a[i] = b[i]
 | |
| 		}
 | |
| 		d += length
 | |
| 	}
 | |
| 	if d != len(dst) {
 | |
| 		return decodeErrCodeCorrupt
 | |
| 	}
 | |
| 	return 0
 | |
| }
 |