]> Cypherpunks.ru repositories - gostls13.git/blob - src/net/http/transfer.go
net/http: only support "chunked" in inbound Transfer-Encoding headers
[gostls13.git] / src / net / http / transfer.go
1 // Copyright 2009 The 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
5 package http
6
7 import (
8         "bufio"
9         "bytes"
10         "errors"
11         "fmt"
12         "io"
13         "io/ioutil"
14         "net/http/httptrace"
15         "net/http/internal"
16         "net/textproto"
17         "reflect"
18         "sort"
19         "strconv"
20         "strings"
21         "sync"
22         "time"
23
24         "golang.org/x/net/http/httpguts"
25 )
26
27 // ErrLineTooLong is returned when reading request or response bodies
28 // with malformed chunked encoding.
29 var ErrLineTooLong = internal.ErrLineTooLong
30
31 type errorReader struct {
32         err error
33 }
34
35 func (r errorReader) Read(p []byte) (n int, err error) {
36         return 0, r.err
37 }
38
39 type byteReader struct {
40         b    byte
41         done bool
42 }
43
44 func (br *byteReader) Read(p []byte) (n int, err error) {
45         if br.done {
46                 return 0, io.EOF
47         }
48         if len(p) == 0 {
49                 return 0, nil
50         }
51         br.done = true
52         p[0] = br.b
53         return 1, io.EOF
54 }
55
56 // transferWriter inspects the fields of a user-supplied Request or Response,
57 // sanitizes them without changing the user object and provides methods for
58 // writing the respective header, body and trailer in wire format.
59 type transferWriter struct {
60         Method           string
61         Body             io.Reader
62         BodyCloser       io.Closer
63         ResponseToHEAD   bool
64         ContentLength    int64 // -1 means unknown, 0 means exactly none
65         Close            bool
66         TransferEncoding []string
67         Header           Header
68         Trailer          Header
69         IsResponse       bool
70         bodyReadError    error // any non-EOF error from reading Body
71
72         FlushHeaders bool            // flush headers to network before body
73         ByteReadCh   chan readResult // non-nil if probeRequestBody called
74 }
75
76 func newTransferWriter(r interface{}) (t *transferWriter, err error) {
77         t = &transferWriter{}
78
79         // Extract relevant fields
80         atLeastHTTP11 := false
81         switch rr := r.(type) {
82         case *Request:
83                 if rr.ContentLength != 0 && rr.Body == nil {
84                         return nil, fmt.Errorf("http: Request.ContentLength=%d with nil Body", rr.ContentLength)
85                 }
86                 t.Method = valueOrDefault(rr.Method, "GET")
87                 t.Close = rr.Close
88                 t.TransferEncoding = rr.TransferEncoding
89                 t.Header = rr.Header
90                 t.Trailer = rr.Trailer
91                 t.Body = rr.Body
92                 t.BodyCloser = rr.Body
93                 t.ContentLength = rr.outgoingLength()
94                 if t.ContentLength < 0 && len(t.TransferEncoding) == 0 && t.shouldSendChunkedRequestBody() {
95                         t.TransferEncoding = []string{"chunked"}
96                 }
97                 // If there's a body, conservatively flush the headers
98                 // to any bufio.Writer we're writing to, just in case
99                 // the server needs the headers early, before we copy
100                 // the body and possibly block. We make an exception
101                 // for the common standard library in-memory types,
102                 // though, to avoid unnecessary TCP packets on the
103                 // wire. (Issue 22088.)
104                 if t.ContentLength != 0 && !isKnownInMemoryReader(t.Body) {
105                         t.FlushHeaders = true
106                 }
107
108                 atLeastHTTP11 = true // Transport requests are always 1.1 or 2.0
109         case *Response:
110                 t.IsResponse = true
111                 if rr.Request != nil {
112                         t.Method = rr.Request.Method
113                 }
114                 t.Body = rr.Body
115                 t.BodyCloser = rr.Body
116                 t.ContentLength = rr.ContentLength
117                 t.Close = rr.Close
118                 t.TransferEncoding = rr.TransferEncoding
119                 t.Header = rr.Header
120                 t.Trailer = rr.Trailer
121                 atLeastHTTP11 = rr.ProtoAtLeast(1, 1)
122                 t.ResponseToHEAD = noResponseBodyExpected(t.Method)
123         }
124
125         // Sanitize Body,ContentLength,TransferEncoding
126         if t.ResponseToHEAD {
127                 t.Body = nil
128                 if chunked(t.TransferEncoding) {
129                         t.ContentLength = -1
130                 }
131         } else {
132                 if !atLeastHTTP11 || t.Body == nil {
133                         t.TransferEncoding = nil
134                 }
135                 if chunked(t.TransferEncoding) {
136                         t.ContentLength = -1
137                 } else if t.Body == nil { // no chunking, no body
138                         t.ContentLength = 0
139                 }
140         }
141
142         // Sanitize Trailer
143         if !chunked(t.TransferEncoding) {
144                 t.Trailer = nil
145         }
146
147         return t, nil
148 }
149
150 // shouldSendChunkedRequestBody reports whether we should try to send a
151 // chunked request body to the server. In particular, the case we really
152 // want to prevent is sending a GET or other typically-bodyless request to a
153 // server with a chunked body when the body has zero bytes, since GETs with
154 // bodies (while acceptable according to specs), even zero-byte chunked
155 // bodies, are approximately never seen in the wild and confuse most
156 // servers. See Issue 18257, as one example.
157 //
158 // The only reason we'd send such a request is if the user set the Body to a
159 // non-nil value (say, ioutil.NopCloser(bytes.NewReader(nil))) and didn't
160 // set ContentLength, or NewRequest set it to -1 (unknown), so then we assume
161 // there's bytes to send.
162 //
163 // This code tries to read a byte from the Request.Body in such cases to see
164 // whether the body actually has content (super rare) or is actually just
165 // a non-nil content-less ReadCloser (the more common case). In that more
166 // common case, we act as if their Body were nil instead, and don't send
167 // a body.
168 func (t *transferWriter) shouldSendChunkedRequestBody() bool {
169         // Note that t.ContentLength is the corrected content length
170         // from rr.outgoingLength, so 0 actually means zero, not unknown.
171         if t.ContentLength >= 0 || t.Body == nil { // redundant checks; caller did them
172                 return false
173         }
174         if t.Method == "CONNECT" {
175                 return false
176         }
177         if requestMethodUsuallyLacksBody(t.Method) {
178                 // Only probe the Request.Body for GET/HEAD/DELETE/etc
179                 // requests, because it's only those types of requests
180                 // that confuse servers.
181                 t.probeRequestBody() // adjusts t.Body, t.ContentLength
182                 return t.Body != nil
183         }
184         // For all other request types (PUT, POST, PATCH, or anything
185         // made-up we've never heard of), assume it's normal and the server
186         // can deal with a chunked request body. Maybe we'll adjust this
187         // later.
188         return true
189 }
190
191 // probeRequestBody reads a byte from t.Body to see whether it's empty
192 // (returns io.EOF right away).
193 //
194 // But because we've had problems with this blocking users in the past
195 // (issue 17480) when the body is a pipe (perhaps waiting on the response
196 // headers before the pipe is fed data), we need to be careful and bound how
197 // long we wait for it. This delay will only affect users if all the following
198 // are true:
199 //   * the request body blocks
200 //   * the content length is not set (or set to -1)
201 //   * the method doesn't usually have a body (GET, HEAD, DELETE, ...)
202 //   * there is no transfer-encoding=chunked already set.
203 // In other words, this delay will not normally affect anybody, and there
204 // are workarounds if it does.
205 func (t *transferWriter) probeRequestBody() {
206         t.ByteReadCh = make(chan readResult, 1)
207         go func(body io.Reader) {
208                 var buf [1]byte
209                 var rres readResult
210                 rres.n, rres.err = body.Read(buf[:])
211                 if rres.n == 1 {
212                         rres.b = buf[0]
213                 }
214                 t.ByteReadCh <- rres
215         }(t.Body)
216         timer := time.NewTimer(200 * time.Millisecond)
217         select {
218         case rres := <-t.ByteReadCh:
219                 timer.Stop()
220                 if rres.n == 0 && rres.err == io.EOF {
221                         // It was empty.
222                         t.Body = nil
223                         t.ContentLength = 0
224                 } else if rres.n == 1 {
225                         if rres.err != nil {
226                                 t.Body = io.MultiReader(&byteReader{b: rres.b}, errorReader{rres.err})
227                         } else {
228                                 t.Body = io.MultiReader(&byteReader{b: rres.b}, t.Body)
229                         }
230                 } else if rres.err != nil {
231                         t.Body = errorReader{rres.err}
232                 }
233         case <-timer.C:
234                 // Too slow. Don't wait. Read it later, and keep
235                 // assuming that this is ContentLength == -1
236                 // (unknown), which means we'll send a
237                 // "Transfer-Encoding: chunked" header.
238                 t.Body = io.MultiReader(finishAsyncByteRead{t}, t.Body)
239                 // Request that Request.Write flush the headers to the
240                 // network before writing the body, since our body may not
241                 // become readable until it's seen the response headers.
242                 t.FlushHeaders = true
243         }
244 }
245
246 func noResponseBodyExpected(requestMethod string) bool {
247         return requestMethod == "HEAD"
248 }
249
250 func (t *transferWriter) shouldSendContentLength() bool {
251         if chunked(t.TransferEncoding) {
252                 return false
253         }
254         if t.ContentLength > 0 {
255                 return true
256         }
257         if t.ContentLength < 0 {
258                 return false
259         }
260         // Many servers expect a Content-Length for these methods
261         if t.Method == "POST" || t.Method == "PUT" {
262                 return true
263         }
264         if t.ContentLength == 0 && isIdentity(t.TransferEncoding) {
265                 if t.Method == "GET" || t.Method == "HEAD" {
266                         return false
267                 }
268                 return true
269         }
270
271         return false
272 }
273
274 func (t *transferWriter) writeHeader(w io.Writer, trace *httptrace.ClientTrace) error {
275         if t.Close && !hasToken(t.Header.get("Connection"), "close") {
276                 if _, err := io.WriteString(w, "Connection: close\r\n"); err != nil {
277                         return err
278                 }
279                 if trace != nil && trace.WroteHeaderField != nil {
280                         trace.WroteHeaderField("Connection", []string{"close"})
281                 }
282         }
283
284         // Write Content-Length and/or Transfer-Encoding whose values are a
285         // function of the sanitized field triple (Body, ContentLength,
286         // TransferEncoding)
287         if t.shouldSendContentLength() {
288                 if _, err := io.WriteString(w, "Content-Length: "); err != nil {
289                         return err
290                 }
291                 if _, err := io.WriteString(w, strconv.FormatInt(t.ContentLength, 10)+"\r\n"); err != nil {
292                         return err
293                 }
294                 if trace != nil && trace.WroteHeaderField != nil {
295                         trace.WroteHeaderField("Content-Length", []string{strconv.FormatInt(t.ContentLength, 10)})
296                 }
297         } else if chunked(t.TransferEncoding) {
298                 if _, err := io.WriteString(w, "Transfer-Encoding: chunked\r\n"); err != nil {
299                         return err
300                 }
301                 if trace != nil && trace.WroteHeaderField != nil {
302                         trace.WroteHeaderField("Transfer-Encoding", []string{"chunked"})
303                 }
304         }
305
306         // Write Trailer header
307         if t.Trailer != nil {
308                 keys := make([]string, 0, len(t.Trailer))
309                 for k := range t.Trailer {
310                         k = CanonicalHeaderKey(k)
311                         switch k {
312                         case "Transfer-Encoding", "Trailer", "Content-Length":
313                                 return badStringError("invalid Trailer key", k)
314                         }
315                         keys = append(keys, k)
316                 }
317                 if len(keys) > 0 {
318                         sort.Strings(keys)
319                         // TODO: could do better allocation-wise here, but trailers are rare,
320                         // so being lazy for now.
321                         if _, err := io.WriteString(w, "Trailer: "+strings.Join(keys, ",")+"\r\n"); err != nil {
322                                 return err
323                         }
324                         if trace != nil && trace.WroteHeaderField != nil {
325                                 trace.WroteHeaderField("Trailer", keys)
326                         }
327                 }
328         }
329
330         return nil
331 }
332
333 func (t *transferWriter) writeBody(w io.Writer) error {
334         var err error
335         var ncopy int64
336
337         // Write body. We "unwrap" the body first if it was wrapped in a
338         // nopCloser. This is to ensure that we can take advantage of
339         // OS-level optimizations in the event that the body is an
340         // *os.File.
341         if t.Body != nil {
342                 var body = t.unwrapBody()
343                 if chunked(t.TransferEncoding) {
344                         if bw, ok := w.(*bufio.Writer); ok && !t.IsResponse {
345                                 w = &internal.FlushAfterChunkWriter{Writer: bw}
346                         }
347                         cw := internal.NewChunkedWriter(w)
348                         _, err = t.doBodyCopy(cw, body)
349                         if err == nil {
350                                 err = cw.Close()
351                         }
352                 } else if t.ContentLength == -1 {
353                         dst := w
354                         if t.Method == "CONNECT" {
355                                 dst = bufioFlushWriter{dst}
356                         }
357                         ncopy, err = t.doBodyCopy(dst, body)
358                 } else {
359                         ncopy, err = t.doBodyCopy(w, io.LimitReader(body, t.ContentLength))
360                         if err != nil {
361                                 return err
362                         }
363                         var nextra int64
364                         nextra, err = t.doBodyCopy(ioutil.Discard, body)
365                         ncopy += nextra
366                 }
367                 if err != nil {
368                         return err
369                 }
370         }
371         if t.BodyCloser != nil {
372                 if err := t.BodyCloser.Close(); err != nil {
373                         return err
374                 }
375         }
376
377         if !t.ResponseToHEAD && t.ContentLength != -1 && t.ContentLength != ncopy {
378                 return fmt.Errorf("http: ContentLength=%d with Body length %d",
379                         t.ContentLength, ncopy)
380         }
381
382         if chunked(t.TransferEncoding) {
383                 // Write Trailer header
384                 if t.Trailer != nil {
385                         if err := t.Trailer.Write(w); err != nil {
386                                 return err
387                         }
388                 }
389                 // Last chunk, empty trailer
390                 _, err = io.WriteString(w, "\r\n")
391         }
392         return err
393 }
394
395 // doBodyCopy wraps a copy operation, with any resulting error also
396 // being saved in bodyReadError.
397 //
398 // This function is only intended for use in writeBody.
399 func (t *transferWriter) doBodyCopy(dst io.Writer, src io.Reader) (n int64, err error) {
400         n, err = io.Copy(dst, src)
401         if err != nil && err != io.EOF {
402                 t.bodyReadError = err
403         }
404         return
405 }
406
407 // unwrapBodyReader unwraps the body's inner reader if it's a
408 // nopCloser. This is to ensure that body writes sourced from local
409 // files (*os.File types) are properly optimized.
410 //
411 // This function is only intended for use in writeBody.
412 func (t *transferWriter) unwrapBody() io.Reader {
413         if reflect.TypeOf(t.Body) == nopCloserType {
414                 return reflect.ValueOf(t.Body).Field(0).Interface().(io.Reader)
415         }
416
417         return t.Body
418 }
419
420 type transferReader struct {
421         // Input
422         Header        Header
423         StatusCode    int
424         RequestMethod string
425         ProtoMajor    int
426         ProtoMinor    int
427         // Output
428         Body          io.ReadCloser
429         ContentLength int64
430         Chunked       bool
431         Close         bool
432         Trailer       Header
433 }
434
435 func (t *transferReader) protoAtLeast(m, n int) bool {
436         return t.ProtoMajor > m || (t.ProtoMajor == m && t.ProtoMinor >= n)
437 }
438
439 // bodyAllowedForStatus reports whether a given response status code
440 // permits a body. See RFC 7230, section 3.3.
441 func bodyAllowedForStatus(status int) bool {
442         switch {
443         case status >= 100 && status <= 199:
444                 return false
445         case status == 204:
446                 return false
447         case status == 304:
448                 return false
449         }
450         return true
451 }
452
453 var (
454         suppressedHeaders304    = []string{"Content-Type", "Content-Length", "Transfer-Encoding"}
455         suppressedHeadersNoBody = []string{"Content-Length", "Transfer-Encoding"}
456 )
457
458 func suppressedHeaders(status int) []string {
459         switch {
460         case status == 304:
461                 // RFC 7232 section 4.1
462                 return suppressedHeaders304
463         case !bodyAllowedForStatus(status):
464                 return suppressedHeadersNoBody
465         }
466         return nil
467 }
468
469 // msg is *Request or *Response.
470 func readTransfer(msg interface{}, r *bufio.Reader) (err error) {
471         t := &transferReader{RequestMethod: "GET"}
472
473         // Unify input
474         isResponse := false
475         switch rr := msg.(type) {
476         case *Response:
477                 t.Header = rr.Header
478                 t.StatusCode = rr.StatusCode
479                 t.ProtoMajor = rr.ProtoMajor
480                 t.ProtoMinor = rr.ProtoMinor
481                 t.Close = shouldClose(t.ProtoMajor, t.ProtoMinor, t.Header, true)
482                 isResponse = true
483                 if rr.Request != nil {
484                         t.RequestMethod = rr.Request.Method
485                 }
486         case *Request:
487                 t.Header = rr.Header
488                 t.RequestMethod = rr.Method
489                 t.ProtoMajor = rr.ProtoMajor
490                 t.ProtoMinor = rr.ProtoMinor
491                 // Transfer semantics for Requests are exactly like those for
492                 // Responses with status code 200, responding to a GET method
493                 t.StatusCode = 200
494                 t.Close = rr.Close
495         default:
496                 panic("unexpected type")
497         }
498
499         // Default to HTTP/1.1
500         if t.ProtoMajor == 0 && t.ProtoMinor == 0 {
501                 t.ProtoMajor, t.ProtoMinor = 1, 1
502         }
503
504         // Transfer-Encoding: chunked, and overriding Content-Length.
505         if err := t.parseTransferEncoding(); err != nil {
506                 return err
507         }
508
509         realLength, err := fixLength(isResponse, t.StatusCode, t.RequestMethod, t.Header, t.Chunked)
510         if err != nil {
511                 return err
512         }
513         if isResponse && t.RequestMethod == "HEAD" {
514                 if n, err := parseContentLength(t.Header.get("Content-Length")); err != nil {
515                         return err
516                 } else {
517                         t.ContentLength = n
518                 }
519         } else {
520                 t.ContentLength = realLength
521         }
522
523         // Trailer
524         t.Trailer, err = fixTrailer(t.Header, t.Chunked)
525         if err != nil {
526                 return err
527         }
528
529         // If there is no Content-Length or chunked Transfer-Encoding on a *Response
530         // and the status is not 1xx, 204 or 304, then the body is unbounded.
531         // See RFC 7230, section 3.3.
532         switch msg.(type) {
533         case *Response:
534                 if realLength == -1 && !t.Chunked && bodyAllowedForStatus(t.StatusCode) {
535                         // Unbounded body.
536                         t.Close = true
537                 }
538         }
539
540         // Prepare body reader. ContentLength < 0 means chunked encoding
541         // or close connection when finished, since multipart is not supported yet
542         switch {
543         case t.Chunked:
544                 if noResponseBodyExpected(t.RequestMethod) || !bodyAllowedForStatus(t.StatusCode) {
545                         t.Body = NoBody
546                 } else {
547                         t.Body = &body{src: internal.NewChunkedReader(r), hdr: msg, r: r, closing: t.Close}
548                 }
549         case realLength == 0:
550                 t.Body = NoBody
551         case realLength > 0:
552                 t.Body = &body{src: io.LimitReader(r, realLength), closing: t.Close}
553         default:
554                 // realLength < 0, i.e. "Content-Length" not mentioned in header
555                 if t.Close {
556                         // Close semantics (i.e. HTTP/1.0)
557                         t.Body = &body{src: r, closing: t.Close}
558                 } else {
559                         // Persistent connection (i.e. HTTP/1.1)
560                         t.Body = NoBody
561                 }
562         }
563
564         // Unify output
565         switch rr := msg.(type) {
566         case *Request:
567                 rr.Body = t.Body
568                 rr.ContentLength = t.ContentLength
569                 if t.Chunked {
570                         rr.TransferEncoding = []string{"chunked"}
571                 }
572                 rr.Close = t.Close
573                 rr.Trailer = t.Trailer
574         case *Response:
575                 rr.Body = t.Body
576                 rr.ContentLength = t.ContentLength
577                 if t.Chunked {
578                         rr.TransferEncoding = []string{"chunked"}
579                 }
580                 rr.Close = t.Close
581                 rr.Trailer = t.Trailer
582         }
583
584         return nil
585 }
586
587 // Checks whether chunked is part of the encodings stack
588 func chunked(te []string) bool { return len(te) > 0 && te[0] == "chunked" }
589
590 // Checks whether the encoding is explicitly "identity".
591 func isIdentity(te []string) bool { return len(te) == 1 && te[0] == "identity" }
592
593 // unsupportedTEError reports unsupported transfer-encodings.
594 type unsupportedTEError struct {
595         err string
596 }
597
598 func (uste *unsupportedTEError) Error() string {
599         return uste.err
600 }
601
602 // isUnsupportedTEError checks if the error is of type
603 // unsupportedTEError. It is usually invoked with a non-nil err.
604 func isUnsupportedTEError(err error) bool {
605         _, ok := err.(*unsupportedTEError)
606         return ok
607 }
608
609 // parseTransferEncoding sets t.Chunked based on the Transfer-Encoding header.
610 func (t *transferReader) parseTransferEncoding() error {
611         raw, present := t.Header["Transfer-Encoding"]
612         if !present {
613                 return nil
614         }
615         delete(t.Header, "Transfer-Encoding")
616
617         // Issue 12785; ignore Transfer-Encoding on HTTP/1.0 requests.
618         if !t.protoAtLeast(1, 1) {
619                 return nil
620         }
621
622         // Like nginx, we only support a single Transfer-Encoding header field, and
623         // only if set to "chunked". This is one of the most security sensitive
624         // surfaces in HTTP/1.1 due to the risk of request smuggling, so we keep it
625         // strict and simple.
626         if len(raw) != 1 {
627                 return &unsupportedTEError{fmt.Sprintf("too many transfer encodings: %q", raw)}
628         }
629         if strings.ToLower(textproto.TrimString(raw[0])) != "chunked" {
630                 return &unsupportedTEError{fmt.Sprintf("unsupported transfer encoding: %q", raw[0])}
631         }
632
633         // RFC 7230 3.3.2 says "A sender MUST NOT send a Content-Length header field
634         // in any message that contains a Transfer-Encoding header field."
635         //
636         // but also: "If a message is received with both a Transfer-Encoding and a
637         // Content-Length header field, the Transfer-Encoding overrides the
638         // Content-Length. Such a message might indicate an attempt to perform
639         // request smuggling (Section 9.5) or response splitting (Section 9.4) and
640         // ought to be handled as an error. A sender MUST remove the received
641         // Content-Length field prior to forwarding such a message downstream."
642         //
643         // Reportedly, these appear in the wild.
644         delete(t.Header, "Content-Length")
645
646         t.Chunked = true
647         return nil
648 }
649
650 // Determine the expected body length, using RFC 7230 Section 3.3. This
651 // function is not a method, because ultimately it should be shared by
652 // ReadResponse and ReadRequest.
653 func fixLength(isResponse bool, status int, requestMethod string, header Header, chunked bool) (int64, error) {
654         isRequest := !isResponse
655         contentLens := header["Content-Length"]
656
657         // Hardening against HTTP request smuggling
658         if len(contentLens) > 1 {
659                 // Per RFC 7230 Section 3.3.2, prevent multiple
660                 // Content-Length headers if they differ in value.
661                 // If there are dups of the value, remove the dups.
662                 // See Issue 16490.
663                 first := strings.TrimSpace(contentLens[0])
664                 for _, ct := range contentLens[1:] {
665                         if first != strings.TrimSpace(ct) {
666                                 return 0, fmt.Errorf("http: message cannot contain multiple Content-Length headers; got %q", contentLens)
667                         }
668                 }
669
670                 // deduplicate Content-Length
671                 header.Del("Content-Length")
672                 header.Add("Content-Length", first)
673
674                 contentLens = header["Content-Length"]
675         }
676
677         // Logic based on response type or status
678         if noResponseBodyExpected(requestMethod) {
679                 // For HTTP requests, as part of hardening against request
680                 // smuggling (RFC 7230), don't allow a Content-Length header for
681                 // methods which don't permit bodies. As an exception, allow
682                 // exactly one Content-Length header if its value is "0".
683                 if isRequest && len(contentLens) > 0 && !(len(contentLens) == 1 && contentLens[0] == "0") {
684                         return 0, fmt.Errorf("http: method cannot contain a Content-Length; got %q", contentLens)
685                 }
686                 return 0, nil
687         }
688         if status/100 == 1 {
689                 return 0, nil
690         }
691         switch status {
692         case 204, 304:
693                 return 0, nil
694         }
695
696         // Logic based on Transfer-Encoding
697         if chunked {
698                 return -1, nil
699         }
700
701         // Logic based on Content-Length
702         var cl string
703         if len(contentLens) == 1 {
704                 cl = strings.TrimSpace(contentLens[0])
705         }
706         if cl != "" {
707                 n, err := parseContentLength(cl)
708                 if err != nil {
709                         return -1, err
710                 }
711                 return n, nil
712         }
713         header.Del("Content-Length")
714
715         if isRequest {
716                 // RFC 7230 neither explicitly permits nor forbids an
717                 // entity-body on a GET request so we permit one if
718                 // declared, but we default to 0 here (not -1 below)
719                 // if there's no mention of a body.
720                 // Likewise, all other request methods are assumed to have
721                 // no body if neither Transfer-Encoding chunked nor a
722                 // Content-Length are set.
723                 return 0, nil
724         }
725
726         // Body-EOF logic based on other methods (like closing, or chunked coding)
727         return -1, nil
728 }
729
730 // Determine whether to hang up after sending a request and body, or
731 // receiving a response and body
732 // 'header' is the request headers
733 func shouldClose(major, minor int, header Header, removeCloseHeader bool) bool {
734         if major < 1 {
735                 return true
736         }
737
738         conv := header["Connection"]
739         hasClose := httpguts.HeaderValuesContainsToken(conv, "close")
740         if major == 1 && minor == 0 {
741                 return hasClose || !httpguts.HeaderValuesContainsToken(conv, "keep-alive")
742         }
743
744         if hasClose && removeCloseHeader {
745                 header.Del("Connection")
746         }
747
748         return hasClose
749 }
750
751 // Parse the trailer header
752 func fixTrailer(header Header, chunked bool) (Header, error) {
753         vv, ok := header["Trailer"]
754         if !ok {
755                 return nil, nil
756         }
757         if !chunked {
758                 // Trailer and no chunking:
759                 // this is an invalid use case for trailer header.
760                 // Nevertheless, no error will be returned and we
761                 // let users decide if this is a valid HTTP message.
762                 // The Trailer header will be kept in Response.Header
763                 // but not populate Response.Trailer.
764                 // See issue #27197.
765                 return nil, nil
766         }
767         header.Del("Trailer")
768
769         trailer := make(Header)
770         var err error
771         for _, v := range vv {
772                 foreachHeaderElement(v, func(key string) {
773                         key = CanonicalHeaderKey(key)
774                         switch key {
775                         case "Transfer-Encoding", "Trailer", "Content-Length":
776                                 if err == nil {
777                                         err = badStringError("bad trailer key", key)
778                                         return
779                                 }
780                         }
781                         trailer[key] = nil
782                 })
783         }
784         if err != nil {
785                 return nil, err
786         }
787         if len(trailer) == 0 {
788                 return nil, nil
789         }
790         return trailer, nil
791 }
792
793 // body turns a Reader into a ReadCloser.
794 // Close ensures that the body has been fully read
795 // and then reads the trailer if necessary.
796 type body struct {
797         src          io.Reader
798         hdr          interface{}   // non-nil (Response or Request) value means read trailer
799         r            *bufio.Reader // underlying wire-format reader for the trailer
800         closing      bool          // is the connection to be closed after reading body?
801         doEarlyClose bool          // whether Close should stop early
802
803         mu         sync.Mutex // guards following, and calls to Read and Close
804         sawEOF     bool
805         closed     bool
806         earlyClose bool   // Close called and we didn't read to the end of src
807         onHitEOF   func() // if non-nil, func to call when EOF is Read
808 }
809
810 // ErrBodyReadAfterClose is returned when reading a Request or Response
811 // Body after the body has been closed. This typically happens when the body is
812 // read after an HTTP Handler calls WriteHeader or Write on its
813 // ResponseWriter.
814 var ErrBodyReadAfterClose = errors.New("http: invalid Read on closed Body")
815
816 func (b *body) Read(p []byte) (n int, err error) {
817         b.mu.Lock()
818         defer b.mu.Unlock()
819         if b.closed {
820                 return 0, ErrBodyReadAfterClose
821         }
822         return b.readLocked(p)
823 }
824
825 // Must hold b.mu.
826 func (b *body) readLocked(p []byte) (n int, err error) {
827         if b.sawEOF {
828                 return 0, io.EOF
829         }
830         n, err = b.src.Read(p)
831
832         if err == io.EOF {
833                 b.sawEOF = true
834                 // Chunked case. Read the trailer.
835                 if b.hdr != nil {
836                         if e := b.readTrailer(); e != nil {
837                                 err = e
838                                 // Something went wrong in the trailer, we must not allow any
839                                 // further reads of any kind to succeed from body, nor any
840                                 // subsequent requests on the server connection. See
841                                 // golang.org/issue/12027
842                                 b.sawEOF = false
843                                 b.closed = true
844                         }
845                         b.hdr = nil
846                 } else {
847                         // If the server declared the Content-Length, our body is a LimitedReader
848                         // and we need to check whether this EOF arrived early.
849                         if lr, ok := b.src.(*io.LimitedReader); ok && lr.N > 0 {
850                                 err = io.ErrUnexpectedEOF
851                         }
852                 }
853         }
854
855         // If we can return an EOF here along with the read data, do
856         // so. This is optional per the io.Reader contract, but doing
857         // so helps the HTTP transport code recycle its connection
858         // earlier (since it will see this EOF itself), even if the
859         // client doesn't do future reads or Close.
860         if err == nil && n > 0 {
861                 if lr, ok := b.src.(*io.LimitedReader); ok && lr.N == 0 {
862                         err = io.EOF
863                         b.sawEOF = true
864                 }
865         }
866
867         if b.sawEOF && b.onHitEOF != nil {
868                 b.onHitEOF()
869         }
870
871         return n, err
872 }
873
874 var (
875         singleCRLF = []byte("\r\n")
876         doubleCRLF = []byte("\r\n\r\n")
877 )
878
879 func seeUpcomingDoubleCRLF(r *bufio.Reader) bool {
880         for peekSize := 4; ; peekSize++ {
881                 // This loop stops when Peek returns an error,
882                 // which it does when r's buffer has been filled.
883                 buf, err := r.Peek(peekSize)
884                 if bytes.HasSuffix(buf, doubleCRLF) {
885                         return true
886                 }
887                 if err != nil {
888                         break
889                 }
890         }
891         return false
892 }
893
894 var errTrailerEOF = errors.New("http: unexpected EOF reading trailer")
895
896 func (b *body) readTrailer() error {
897         // The common case, since nobody uses trailers.
898         buf, err := b.r.Peek(2)
899         if bytes.Equal(buf, singleCRLF) {
900                 b.r.Discard(2)
901                 return nil
902         }
903         if len(buf) < 2 {
904                 return errTrailerEOF
905         }
906         if err != nil {
907                 return err
908         }
909
910         // Make sure there's a header terminator coming up, to prevent
911         // a DoS with an unbounded size Trailer. It's not easy to
912         // slip in a LimitReader here, as textproto.NewReader requires
913         // a concrete *bufio.Reader. Also, we can't get all the way
914         // back up to our conn's LimitedReader that *might* be backing
915         // this bufio.Reader. Instead, a hack: we iteratively Peek up
916         // to the bufio.Reader's max size, looking for a double CRLF.
917         // This limits the trailer to the underlying buffer size, typically 4kB.
918         if !seeUpcomingDoubleCRLF(b.r) {
919                 return errors.New("http: suspiciously long trailer after chunked body")
920         }
921
922         hdr, err := textproto.NewReader(b.r).ReadMIMEHeader()
923         if err != nil {
924                 if err == io.EOF {
925                         return errTrailerEOF
926                 }
927                 return err
928         }
929         switch rr := b.hdr.(type) {
930         case *Request:
931                 mergeSetHeader(&rr.Trailer, Header(hdr))
932         case *Response:
933                 mergeSetHeader(&rr.Trailer, Header(hdr))
934         }
935         return nil
936 }
937
938 func mergeSetHeader(dst *Header, src Header) {
939         if *dst == nil {
940                 *dst = src
941                 return
942         }
943         for k, vv := range src {
944                 (*dst)[k] = vv
945         }
946 }
947
948 // unreadDataSizeLocked returns the number of bytes of unread input.
949 // It returns -1 if unknown.
950 // b.mu must be held.
951 func (b *body) unreadDataSizeLocked() int64 {
952         if lr, ok := b.src.(*io.LimitedReader); ok {
953                 return lr.N
954         }
955         return -1
956 }
957
958 func (b *body) Close() error {
959         b.mu.Lock()
960         defer b.mu.Unlock()
961         if b.closed {
962                 return nil
963         }
964         var err error
965         switch {
966         case b.sawEOF:
967                 // Already saw EOF, so no need going to look for it.
968         case b.hdr == nil && b.closing:
969                 // no trailer and closing the connection next.
970                 // no point in reading to EOF.
971         case b.doEarlyClose:
972                 // Read up to maxPostHandlerReadBytes bytes of the body, looking
973                 // for EOF (and trailers), so we can re-use this connection.
974                 if lr, ok := b.src.(*io.LimitedReader); ok && lr.N > maxPostHandlerReadBytes {
975                         // There was a declared Content-Length, and we have more bytes remaining
976                         // than our maxPostHandlerReadBytes tolerance. So, give up.
977                         b.earlyClose = true
978                 } else {
979                         var n int64
980                         // Consume the body, or, which will also lead to us reading
981                         // the trailer headers after the body, if present.
982                         n, err = io.CopyN(ioutil.Discard, bodyLocked{b}, maxPostHandlerReadBytes)
983                         if err == io.EOF {
984                                 err = nil
985                         }
986                         if n == maxPostHandlerReadBytes {
987                                 b.earlyClose = true
988                         }
989                 }
990         default:
991                 // Fully consume the body, which will also lead to us reading
992                 // the trailer headers after the body, if present.
993                 _, err = io.Copy(ioutil.Discard, bodyLocked{b})
994         }
995         b.closed = true
996         return err
997 }
998
999 func (b *body) didEarlyClose() bool {
1000         b.mu.Lock()
1001         defer b.mu.Unlock()
1002         return b.earlyClose
1003 }
1004
1005 // bodyRemains reports whether future Read calls might
1006 // yield data.
1007 func (b *body) bodyRemains() bool {
1008         b.mu.Lock()
1009         defer b.mu.Unlock()
1010         return !b.sawEOF
1011 }
1012
1013 func (b *body) registerOnHitEOF(fn func()) {
1014         b.mu.Lock()
1015         defer b.mu.Unlock()
1016         b.onHitEOF = fn
1017 }
1018
1019 // bodyLocked is a io.Reader reading from a *body when its mutex is
1020 // already held.
1021 type bodyLocked struct {
1022         b *body
1023 }
1024
1025 func (bl bodyLocked) Read(p []byte) (n int, err error) {
1026         if bl.b.closed {
1027                 return 0, ErrBodyReadAfterClose
1028         }
1029         return bl.b.readLocked(p)
1030 }
1031
1032 // parseContentLength trims whitespace from s and returns -1 if no value
1033 // is set, or the value if it's >= 0.
1034 func parseContentLength(cl string) (int64, error) {
1035         cl = strings.TrimSpace(cl)
1036         if cl == "" {
1037                 return -1, nil
1038         }
1039         n, err := strconv.ParseInt(cl, 10, 64)
1040         if err != nil || n < 0 {
1041                 return 0, badStringError("bad Content-Length", cl)
1042         }
1043         return n, nil
1044
1045 }
1046
1047 // finishAsyncByteRead finishes reading the 1-byte sniff
1048 // from the ContentLength==0, Body!=nil case.
1049 type finishAsyncByteRead struct {
1050         tw *transferWriter
1051 }
1052
1053 func (fr finishAsyncByteRead) Read(p []byte) (n int, err error) {
1054         if len(p) == 0 {
1055                 return
1056         }
1057         rres := <-fr.tw.ByteReadCh
1058         n, err = rres.n, rres.err
1059         if n == 1 {
1060                 p[0] = rres.b
1061         }
1062         return
1063 }
1064
1065 var nopCloserType = reflect.TypeOf(ioutil.NopCloser(nil))
1066
1067 // isKnownInMemoryReader reports whether r is a type known to not
1068 // block on Read. Its caller uses this as an optional optimization to
1069 // send fewer TCP packets.
1070 func isKnownInMemoryReader(r io.Reader) bool {
1071         switch r.(type) {
1072         case *bytes.Reader, *bytes.Buffer, *strings.Reader:
1073                 return true
1074         }
1075         if reflect.TypeOf(r) == nopCloserType {
1076                 return isKnownInMemoryReader(reflect.ValueOf(r).Field(0).Interface().(io.Reader))
1077         }
1078         return false
1079 }
1080
1081 // bufioFlushWriter is an io.Writer wrapper that flushes all writes
1082 // on its wrapped writer if it's a *bufio.Writer.
1083 type bufioFlushWriter struct{ w io.Writer }
1084
1085 func (fw bufioFlushWriter) Write(p []byte) (n int, err error) {
1086         n, err = fw.w.Write(p)
1087         if bw, ok := fw.w.(*bufio.Writer); n > 0 && ok {
1088                 ferr := bw.Flush()
1089                 if ferr != nil && err == nil {
1090                         err = ferr
1091                 }
1092         }
1093         return
1094 }