1. 14 Nov, 2016 1 commit
  2. 13 Nov, 2016 7 commits
  3. 12 Nov, 2016 12 commits
  4. 11 Nov, 2016 20 commits
    • Brad Fitzpatrick's avatar
      net: deflake TestTCPSupriousConnSetupCompletion [sic] · 9a78eade
      Brad Fitzpatrick authored
      And rename it.
      
      Fixes #17703
      
      Change-Id: I73c82a9b3f96180699c6d33c069a666018eb30f9
      Reviewed-on: https://go-review.googlesource.com/33149
      Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
      9a78eade
    • Quentin Smith's avatar
      cmd/go: skip TestCgoPkgConfig if pkg-config is too old · 02d79e95
      Quentin Smith authored
      pkg-config 0.24 adds support for quoting and escaping whitespace;
      distros like CentOS 6 are still shipping pkg-config 0.23. Skip the test
      there since there's no way to get whitespace into the pkg-config output.
      
      Fixes #17846.
      
      Change-Id: Ie4ea17e9b709372a20178b539498929754bcd51f
      Reviewed-on: https://go-review.googlesource.com/33027
      Run-TryBot: Quentin Smith <quentin@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarRuss Cox <rsc@golang.org>
      02d79e95
    • Brad Fitzpatrick's avatar
      time: don't panic stringifying the zero Month · a18b4b3f
      Brad Fitzpatrick authored
      Fixes #17720
      
      Change-Id: Ib95c230deef3934db729856c17908f8e5a1e2b7f
      Reviewed-on: https://go-review.googlesource.com/33145
      Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
      Reviewed-by: 's avatarRob Pike <r@golang.org>
      a18b4b3f
    • Rhys Hiltner's avatar
      runtime: include pre-panic/throw logs in core dumps · e0aedfb4
      Rhys Hiltner authored
      When a Go program crashes with GOTRACEBACK=crash, the OS creates a
      core dump. Include the text-formatted output of some of the cause of
      that crash in the core dump.
      
      Output printed by the runtime before crashing is maintained in a
      circular buffer to allow access to messages that may be printed
      immediately before calling runtime.throw.
      
      The stack traces printed by the runtime as it crashes are not stored.
      The information required to recreate them should be included in the
      core file.
      
      Updates #16893
      
      There are no tests covering the generation of core dumps; this change
      has not added any.
      
      This adds (reentrant) locking to runtime.gwrite, which may have an
      undesired performance impact.
      
      Change-Id: Ia2463be3c12429354d290bdec5f3c8d565d1a2c3
      Reviewed-on: https://go-review.googlesource.com/32013
      Run-TryBot: Russ Cox <rsc@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarRuss Cox <rsc@golang.org>
      e0aedfb4
    • Brad Fitzpatrick's avatar
      net/smtp: make Client.Auth trim final space if Auth.Start toServer is empty · 10d2efd0
      Brad Fitzpatrick authored
      Users can implement the smtp.Auth interface and return zero bytes in
      the "toServer []byte" return value from the Auth.Start method. People
      apparently do this to implement the SMTP "LOGIN" method.
      
      But we were then sending "AUTH LOGIN \r\n" to the server, which some
      servers apparently choke on. So, trim it when the toServer value is
      empty.
      
      Fixes #17794
      
      Change-Id: I83662dba9e0f61b1c5000396c096cf7110f78361
      Reviewed-on: https://go-review.googlesource.com/33143
      Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
      10d2efd0
    • Russ Cox's avatar
      runtime: fix Windows profiling crash · e6da64b6
      Russ Cox authored
      I don't have any way to test or reproduce this problem,
      but the current code is clearly wrong for Windows.
      Make it better.
      
      As I said on #17165:
      
      But the borrowing of M's and the profiling of M's by the CPU profiler
      seem not synchronized enough. This code implements the CPU profiler
      on Windows:
      
      	func profileloop1(param uintptr) uint32 {
      		stdcall2(_SetThreadPriority, currentThread, _THREAD_PRIORITY_HIGHEST)
      
      		for {
      			stdcall2(_WaitForSingleObject, profiletimer, _INFINITE)
      			first := (*m)(atomic.Loadp(unsafe.Pointer(&allm)))
      			for mp := first; mp != nil; mp = mp.alllink {
      				thread := atomic.Loaduintptr(&mp.thread)
      				// Do not profile threads blocked on Notes,
      				// this includes idle worker threads,
      				// idle timer thread, idle heap scavenger, etc.
      				if thread == 0 || mp.profilehz == 0 || mp.blocked {
      					continue
      				}
      				stdcall1(_SuspendThread, thread)
      				if mp.profilehz != 0 && !mp.blocked {
      					profilem(mp)
      				}
      				stdcall1(_ResumeThread, thread)
      			}
      		}
      	}
      
      	func profilem(mp *m) {
      		var r *context
      		rbuf := make([]byte, unsafe.Sizeof(*r)+15)
      
      		tls := &mp.tls[0]
      		gp := *((**g)(unsafe.Pointer(tls)))
      
      		// align Context to 16 bytes
      		r = (*context)(unsafe.Pointer((uintptr(unsafe.Pointer(&rbuf[15]))) &^ 15))
      		r.contextflags = _CONTEXT_CONTROL
      		stdcall2(_GetThreadContext, mp.thread, uintptr(unsafe.Pointer(r)))
      		sigprof(r.ip(), r.sp(), 0, gp, mp)
      	}
      
      	func sigprof(pc, sp, lr uintptr, gp *g, mp *m) {
      		if prof.hz == 0 {
      			return
      		}
      
      		// Profiling runs concurrently with GC, so it must not allocate.
      		mp.mallocing++
      
      		... lots of code ...
      
      		mp.mallocing--
      	}
      
      A borrowed M may migrate between threads. Between the
      atomic.Loaduintptr(&mp.thread) and the SuspendThread, mp may have
      moved to a new thread, so that it's in active use. In particular
      it might be calling malloc, as in the crash stack trace. If so, the
      mp.mallocing++ in sigprof would provoke the crash.
      
      Those lines are trying to guard against allocation during sigprof.
      But on Windows, mp is the thread being traced, not the current
      thread. Those lines should really be using getg().m.mallocing, which
      is the same on Unix but not on Windows. With that change, it's
      possible the race on the actual thread is not a problem: the traceback
      would get confused and eventually return an error, but that's fine.
      The code expects that possibility.
      
      Fixes #17165.
      
      Change-Id: If6619731910d65ca4b1a6e7de761fa2518ef339e
      Reviewed-on: https://go-review.googlesource.com/33132
      Run-TryBot: Russ Cox <rsc@golang.org>
      Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
      e6da64b6
    • Bill O'Farrell's avatar
      math: use SIMD to accelerate some scalar math functions on s390x · b6a15683
      Bill O'Farrell authored
      Note, most math functions are structured to use stubs, so that they can
      be accelerated with assembly on any platform.
      Sinh, cosh, and tanh were not structued with stubs, so this CL does
      that. This set of routines was chosen as likely to produce good speedups
      with assembly on any platform.
      
      Technique used was minimax polynomial approximation using tables of
      polynomial coefficients, with argument range reduction.
      A table of scaling factors was also used for cosh and log10.
      
                           before       after      speedup
      BenchmarkCos         22.1 ns/op   6.79 ns/op  3.25x
      BenchmarkCosh       125   ns/op  11.7  ns/op 10.68x
      BenchmarkLog10       48.4 ns/op  12.5  ns/op  3.87x
      BenchmarkSin         22.2 ns/op   6.55 ns/op  3.39x
      BenchmarkSinh       125   ns/op  14.2  ns/op  8.80x
      BenchmarkTanh        65.0 ns/op  15.1  ns/op  4.30x
      
      Accuracy was tested against a high precision
      reference function to determine maximum error.
      Approximately 4,000,000 points were tested for each function,
      producing the following result.
      Note: ulperr is error in "units in the last place"
      
             max
            ulperr
      sin    1.43 (returns NaN beyond +-2^50)
      cos    1.79 (returns NaN beyond +-2^50)
      cosh   1.05
      sinh   3.02
      tanh   3.69
      log10  1.75
      
      Also includes a set of tests to test non-vector functions even
      when SIMD is enabled
      
      Change-Id: Icb45f14d00864ee19ed973d209c3af21e4df4edc
      Reviewed-on: https://go-review.googlesource.com/32352
      Run-TryBot: Michael Munday <munday@ca.ibm.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarMichael Munday <munday@ca.ibm.com>
      b6a15683
    • Brad Fitzpatrick's avatar
      net/http: make Server respect shutdown state after handler finishes · 9f9d8340
      Brad Fitzpatrick authored
      If the Server's Shutdown (or SetKeepAlivesEnabled) method was called
      while a connection was in a Handler, but after the headers had been
      written, the connection was not later closed.
      
      Fixes #9478
      Updates #17754 (reverts that workaround)
      
      Change-Id: I65324ab8217373fbb38e12e2b8bffd0a91806072
      Reviewed-on: https://go-review.googlesource.com/33141Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
      9f9d8340
    • Russ Cox's avatar
      text/template: reintroduce implicit indirect of interface values in builtin funcs · 39e3cbff
      Russ Cox authored
      CL 31462 made it possible to operate directly on reflect.Values
      instead of always forcing a round trip to interface{} and back.
      The round trip was losing addressability, which hurt users.
      
      The round trip was also losing "interface-ness", which helped users.
      That is, using reflect.ValueOf(v.Interface()) instead of v was doing
      an implicit indirect any time v was itself an interface{} value: the result
      was the reflect.Value for the underlying concrete value contained in the
      interface, not the interface itself.
      
      CL 31462 eliminated some "unnecessary" reflect.Value round trips
      in order to preserve addressability, but in doing so it lost this implicit
      indirection. This CL adds the indirection back.
      
      It may help to compare the changes in this CL against funcs.go from CL 31462:
      https://go-review.googlesource.com/#/c/31462/4/src/text/template/funcs.go
      
      Everywhere CL 31462 changed 'v := reflect.ValueOf(x)' to 'v := x',
      this CL changes 'v := x' to 'v := indirectInterface(x)'.
      
      Fixes #17714.
      
      Change-Id: I67cec4eb41fed1d56e1c19f12b0abbd0e59d35a2
      Reviewed-on: https://go-review.googlesource.com/33139
      Run-TryBot: Russ Cox <rsc@golang.org>
      Reviewed-by: 's avatarRob Pike <r@golang.org>
      39e3cbff
    • Russ Cox's avatar
      time: update Timer.Stop doc to account for AfterFunc · fabb4115
      Russ Cox authored
      Fixes #17600.
      
      Change-Id: I7aa0eb0dd959da031b6039b51f07db668d4fb468
      Reviewed-on: https://go-review.googlesource.com/33131
      Run-TryBot: Russ Cox <rsc@golang.org>
      Reviewed-by: 's avatarIan Gudger <igudger@google.com>
      Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
      fabb4115
    • Kenny Grant's avatar
      net/http: make Server log on bad requests from clients · 84ded8ba
      Kenny Grant authored
      Fixes #12745
      
      Change-Id: Iebb7c97cb5b68dc080644d796a6ca1c120d41b26
      Reviewed-on: https://go-review.googlesource.com/27950Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      84ded8ba
    • Brad Fitzpatrick's avatar
      net/http: deflake new TestInterruptWithPanic_h2 · 238247eb
      Brad Fitzpatrick authored
      TestInterruptWithPanic_h2 was added yesterday in
      https://golang.org/cl/33099 and https://golang.org/cl/33103
      
      Deflake it. The http2 server sends an error before logging.
      
      Rather than reorder the http2 code to log before writing the RSTStream
      frame, just loop for a bit waiting for the condition we're
      expecting.
      
      This goes from 2 in 500 flakes for me to unreproducible.
      
      Change-Id: I062866a5977f50c820965aaf83882ddd7bf98f91
      Reviewed-on: https://go-review.googlesource.com/33140
      Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarRuss Cox <rsc@golang.org>
      238247eb
    • Russ Cox's avatar
      net: apply tcp4/tcp6 restrictions to literals in ResolveTCPAddr · 866e0145
      Russ Cox authored
      The restrictions were already being applied to the IP addresses
      received from the host resolver. Apply the same restrictions to
      literal IP addresses not passed to the host resolver.
      
      For example, ResolveTCPAddr("tcp4", "[2001:db8::1]:http") used
      to succeed and now does not (that's not an IPv4 address).
      
      Perhaps a bit surprisingly,
      ResolveTCPAddr("tcp4", "[::ffff:127.0.0.1]:http") succeeds,
      behaving identically to ResolveTCPAddr("tcp4", "127.0.0.1:http"), and
      ResolveTCPAddr("tcp6", "[::ffff:127.0.0.1]:http") fails,
      behaving identically to ResolveTCPAddr("tcp6", "127.0.0.1:http").
      Even so, it seems right to match (by reusing) the existing filtering
      as applied to addresses resolved by the host C library.
      If anyone can make a strong argument for changing the filtering
      of IPv4-inside-IPv6 addresses, the fix can be applied to all
      the code paths in a separate CL.
      
      Fixes #14037.
      
      Change-Id: I690dfdcbe93d730e11e00ea387fa7484cd524341
      Reviewed-on: https://go-review.googlesource.com/32100
      Run-TryBot: Russ Cox <rsc@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      866e0145
    • Russ Cox's avatar
      runtime/pprof: delete new TestCPUProfileParse · c4099c75
      Russ Cox authored
      All the existing CPU profiler tests already parse the profile.
      That should be sufficient indication that profiles can be parsed.
      
      Fixes #17853.
      
      Change-Id: Ie8a190e2ae4eef125c8eb0d4e8b7adac420abbdb
      Reviewed-on: https://go-review.googlesource.com/33136
      Run-TryBot: Russ Cox <rsc@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      c4099c75
    • Michael Matloob's avatar
      runtime/pprof/internal: delete package gzip0 · eafe4878
      Michael Matloob authored
      rsc's change golang.org/cl/32455 added a mechanism
      that allows pprof to depend on gzip without introducing
      an import cycle. This obsoletes the need for the gzip0
      package, which was created solely to remove the need
      for that dependency.
      
      Change-Id: Ifa3b98faac9b251f909b84b4da54742046c4e3ad
      Reviewed-on: https://go-review.googlesource.com/33137Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      eafe4878
    • Kevin Burke's avatar
      cmd/gofmt, crypto/tls: fix typos · 8eb88b0d
      Kevin Burke authored
      Fix spelling of "original" and "occurred" in new gofmt docs. The same
      misspelling of "occurred" was also present in crypto/tls, I fixed it there as
      well.
      
      Change-Id: I67b4f1c09bd1a2eb1844207d5514f08a9f525ff9
      Reviewed-on: https://go-review.googlesource.com/33138Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      8eb88b0d
    • Josh Bleecher Snyder's avatar
      cmd/vet/all: add bitwidths for mips and mipsle · 8f215d8c
      Josh Bleecher Snyder authored
      cmd/vet/all still doesn't run for mips/mipsle,
      because the rest of the toolchain doesn't yet
      fully support it.
      
      Change-Id: I1a86b0edddbdcd5f43e752208508d99da7aabbb3
      Reviewed-on: https://go-review.googlesource.com/33134
      Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarRob Pike <r@golang.org>
      8f215d8c
    • Josh Bleecher Snyder's avatar
      all: fix vet nits · eb8f2a83
      Josh Bleecher Snyder authored
      Fixes these complaints from vet:
      
      cmd/compile/internal/gc/noder.go:32: cmd/compile/internal/syntax.Error composite literal uses unkeyed fields
      cmd/compile/internal/gc/noder.go:1035: cmd/compile/internal/syntax.Error composite literal uses unkeyed fields
      cmd/compile/internal/gc/noder.go:1051: cmd/compile/internal/syntax.Error composite literal uses unkeyed fields
      cmd/compile/internal/syntax/parser_test.go:182: possible formatting directive in Error call
      net/http/client_test.go:1334: possible formatting directive in Fatal call
      
      Change-Id: I5f90ec30f3c106c7e66c92e2b6f8d3b4874fec66
      Reviewed-on: https://go-review.googlesource.com/33133
      Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      eb8f2a83
    • Keegan Carruthers-Smith's avatar
      go/doc: don't panic if method is missing recv type · 50fed64d
      Keegan Carruthers-Smith authored
      Fixes #17788
      
      Change-Id: I2f8a11321dc8f10bebbc8df90ba00ec65b9ee0fa
      Reviewed-on: https://go-review.googlesource.com/32790Reviewed-by: 's avatarRuss Cox <rsc@golang.org>
      50fed64d
    • Richard Gibson's avatar
      net: bring domain name length checks into RFC compliance · 9a5bddd7
      Richard Gibson authored
      The 255-octet limit applies to wire format, not presentation format.
      
      Fixes #17549
      
      Change-Id: I2b5181c53fba32fea60178e0d8df9114aa992b55
      Reviewed-on: https://go-review.googlesource.com/31722
      Run-TryBot: Russ Cox <rsc@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarRuss Cox <rsc@golang.org>
      9a5bddd7