1. 30 Nov, 2017 2 commits
  2. 29 Nov, 2017 22 commits
  3. 28 Nov, 2017 9 commits
  4. 27 Nov, 2017 7 commits
    • Brad Fitzpatrick's avatar
      net/http: panic on invalid WriteHeader status code · 18ae4c83
      Brad Fitzpatrick authored
      Panic if an http Handler does:
      
          rw.WriteHeader(0)
      
      ... or other invalid values. (for a forgiving range of valid)
      
      I previously made it kinda work in https://golang.org/cl/19130 but
      there's no good way to fake it in HTTP/2, and we want HTTP/1 and
      HTTP/2 behavior to be the same, regardless of what programs do.
      Currently HTTP/2 omitted the :status header altogether, which was a
      protocol violation. In fixing that, I found CL 19130 added a test
      about bogus WriteHeader values with the comment:
      
        // This might change at some point, but not yet in Go 1.6.
      
      This now changes. Time to be strict.
      
      Updates golang/go#228800
      
      Change-Id: I20eb6c0e514a31f4bba305ac4c24266f39b95fd5
      Reviewed-on: https://go-review.googlesource.com/80077Reviewed-by: default avatarTom Bergan <tombergan@google.com>
      18ae4c83
    • Tom Bergan's avatar
      net/textproto: reject all headers with a leading space · 1c69384d
      Tom Bergan authored
      Previously, golang.org/cl/75350 updated ReadMIMEHeader to ignore the
      first header line when it begins with a leading space, as in the
      following example:
      
      GET / HTTP/1.1
        Host: foo.com
      Accept-Encoding: gzip
      
      However, golang.org/cl/75350 changed ReadMIMEHeader's behavior for the
      following example: before the CL it returned an error, but after the
      CL it ignored the first line.
      
      GET / HTTP/1.1
        Host foo.com
      Accept-Encoding: gzip
      
      This change updates ReadMIMEHeader to always fail when the first header
      line starts with a space. During the discussion for golang.org/cl/75350,
      we realized we had three competing needs:
      
      1. HTTP clients should accept malformed response headers when possible
         (ignoring the malformed lines).
      
      2. HTTP servers should reject all malformed request headers.
      
      3. The net/textproto package is used by multiple protocols (most notably,
         HTTP and SMTP) which have slightly different parsing semantics. This
         complicates changes to net/textproto.
      
      We weren't sure how to best fix net/textproto without an API change, but
      it is too late for API changes in Go 1.10. We decided to ignore initial
      lines that begin with spaces, thinking that would have the least impact on
      existing users -- malformed headers would continue to parse, but the
      initial lines would be ignored. Instead, golang.org/cl/75350 actually
      changed ReadMIMEHeader to succeed in cases where it previously failed
      (as in the above example).
      
      Reconsidering the above two examples, there does not seem to be a good
      argument to silently ignore ` Host: foo.com` but fail on ` Host foo.com`.
      Hence, this change fails for *all* headers where the initial line begins
      with a space.
      
      Updates #22464
      
      Change-Id: I68d3d190489c350b0bc1549735bf6593fe11a94c
      Reviewed-on: https://go-review.googlesource.com/80055
      Run-TryBot: Tom Bergan <tombergan@google.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
      1c69384d
    • rajender's avatar
      encoding/json: remove the word "text" in "JSON text" from package docs. · 671cf92c
      rajender authored
      It was added in CL 79995. It is unnecessarily confusing.
      
      Change-Id: Ib8ff35b9f71b54ff99d2d6e0534c7128e1f4345a
      Reviewed-on: https://go-review.googlesource.com/80035Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
      671cf92c
    • rajender's avatar
      encoding/json: update RFC number · 0d264746
      rajender authored
      Existing docs mention obsolete RFC 4627. Update it with current one,
      https://tools.ietf.org/html/rfc7159.
      
      Current implementation already adhere to RFC 7159.
      
      Fixes #22888
      
      Change-Id: I705ec1313f6f655b3bc41d2f847b30e479bf9b15
      Reviewed-on: https://go-review.googlesource.com/79995Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
      0d264746
    • Keith Randall's avatar
      cmd/compile: remove unused code · 5419ed3a
      Keith Randall authored
      Found a few functions in cmd/compile that aren't used.
      
      Change-Id: I53957dae6f1a645feb8b95383f0f050964b4f7d4
      Reviewed-on: https://go-review.googlesource.com/79975
      Run-TryBot: Keith Randall <khr@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
      5419ed3a
    • Robert Griesemer's avatar
      go/types: add debugging code to detect use of incomplete interfaces · 3c7e491b
      Robert Griesemer authored
      The comment for phase 2 of checker.interfaceType (typexpr.go:517)
      requires that embedded interfaces be complete for correctness of
      the algorithm.
      
      Yet, the very next comment (typexpr.go:530) states that underlying
      embedded interfaces may in fact be incomplete.
      
      This is in fact the case and the underlying bug in issue #18395.
      
      This change makes sure that new interface types are marked complete
      when finished (per the implicit definition in Interface.Complete,
      type.go:302). It also adds a check, enabled in debug mode only, to
      detect the use of incomplete embedded interfaces during construction
      of a new interface. In debug mode, this check fails for the testcase
      in the issue (and several others).
      
      This change has no noticeable impact with debug mode disabled.
      
      For #18395.
      
      Change-Id: Ibb81e47257651282fb3755a80a36ab5d392e636d
      Reviewed-on: https://go-review.googlesource.com/78955Reviewed-by: default avatarAlan Donovan <adonovan@google.com>
      3c7e491b
    • Andrew Bonventre's avatar
      doc: update URL of the go1.4 source snapshot to use dl.google.com · 4aac23cc
      Andrew Bonventre authored
      Updates golang/go#20672
      
      Change-Id: I88a1d8693ef9d1e4758719603ce1f3c3f6b920bc
      Reviewed-on: https://go-review.googlesource.com/79936Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
      4aac23cc