aboutsummaryrefslogtreecommitdiff
path: root/src/encoding/json/jsontext/decode.go
diff options
context:
space:
mode:
authorJoe Tsai <joetsai@digital-static.net>2025-10-10 17:56:04 -0700
committerJoseph Tsai <joetsai@digital-static.net>2025-10-13 10:44:23 -0700
commit0e64ee1286c092eca95b3ffcc5917d34f43d4c0f (patch)
treeb5d2e8be0c0b4eb951503f74374299d0f5ddfd36 /src/encoding/json/jsontext/decode.go
parent6bcd97d9f4386528aa85eb3cc27da0ed902de870 (diff)
downloadgo-0e64ee1286c092eca95b3ffcc5917d34f43d4c0f.tar.xz
encoding/json/v2: report EOF for top-level values in UnmarshalDecode
The fully streaming UnmarshalJSONFrom method and UnmarshalFromFunc introduce an edge case where they can encounter EOF in the stream, where it should be reported upstream as EOF rather than ErrUnexpectedEOF or be wrapped within a SemanticError. This is not possible with other unmarshal methods since the "json" package would read the appropriate JSON value before calling the custom method or function. To avoid custom unmarshal methods from encountering EOF, check whether the stream is already at EOF for top-level values before calling the custom method. Also, when wrapping EOF within a SemanticError, convert it to ErrUnexpectedEOF to better indicate that this is unexpected. Fixes #75802 Change-Id: I001396734b7e95b5337f77b71326284974ee730a Reviewed-on: https://go-review.googlesource.com/c/go/+/710877 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Johan Brandhorst-Satzkorn <johan.brandhorst@gmail.com> Reviewed-by: Michael Pratt <mpratt@google.com> Reviewed-by: Carlos Amedee <carlos@golang.org>
Diffstat (limited to 'src/encoding/json/jsontext/decode.go')
-rw-r--r--src/encoding/json/jsontext/decode.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/encoding/json/jsontext/decode.go b/src/encoding/json/jsontext/decode.go
index f505de4468..511832f2ae 100644
--- a/src/encoding/json/jsontext/decode.go
+++ b/src/encoding/json/jsontext/decode.go
@@ -792,6 +792,12 @@ func (d *decoderState) CheckNextValue(last bool) error {
return nil
}
+// AtEOF reports whether the decoder is at EOF.
+func (d *decoderState) AtEOF() bool {
+ _, err := d.consumeWhitespace(d.prevEnd)
+ return err == io.ErrUnexpectedEOF
+}
+
// CheckEOF verifies that the input has no more data.
func (d *decoderState) CheckEOF() error {
return d.checkEOF(d.prevEnd)