Fix aead request overflow

This commit is contained in:
世界 2022-07-15 11:16:00 +08:00
parent a6fa7ada6e
commit dacfbcd606
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
9 changed files with 17 additions and 9 deletions

View file

@ -379,18 +379,18 @@ type BufferedWriter struct {
}
func (w *BufferedWriter) Write(p []byte) (n int, err error) {
var index int
for {
cachedN := copy(w.data[w.reversed+w.index:], p[index:])
if cachedN == len(p[index:]) {
w.index += cachedN
return cachedN, nil
cachedN := copy(w.data[w.reversed+w.index:], p[n:])
w.index += cachedN
if cachedN == len(p[n:]) {
n += cachedN
return
}
err = w.Flush()
if err != nil {
return
}
index += cachedN
n += cachedN
}
}
@ -412,6 +412,7 @@ func (w *BufferedWriter) Flush() error {
increaseNonce(w.upstream.nonce)
_, err := w.upstream.upstream.Write(w.upstream.buffer[:w.reversed+offset+len(packet)])
w.reversed = 0
w.index = 0
return err
}

View file

@ -14,6 +14,7 @@ import (
M "github.com/sagernet/sing/common/metadata"
N "github.com/sagernet/sing/common/network"
"github.com/sagernet/sing/common/rw"
"golang.org/x/crypto/chacha20poly1305"
"golang.org/x/crypto/hkdf"
)

View file

@ -19,6 +19,7 @@ import (
N "github.com/sagernet/sing/common/network"
"github.com/sagernet/sing/common/rw"
"github.com/sagernet/sing/common/udpnat"
"golang.org/x/crypto/chacha20poly1305"
)