What version of Go are you using (go version)?
$ go version
go version devel +4fbb4e7 Thu May 23 13:55:55 2019 +0000 linux/amd64
Does this issue reproduce with the latest release?
No. (1.12.5)
What operating system and processor architecture are you using (go env)?
go env Output
$ go env
GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/jake/nobackup/gotip_home/cache/go-build"
GOENV="/home/jake/nobackup/gotip_home/config/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GONOPROXY=""
GONOSUMDB=""
GOOS="linux"
GOPATH="/home/jake/nobackup/gotip_home/gopath"
GOPROXY="direct"
GOROOT="/home/jake/sdk/gotip"
GOSUMDB="off"
GOTMPDIR=""
GOTOOLDIR="/home/jake/sdk/gotip/pkg/tool/linux_amd64"
GCCGO="gccgo"
AR="ar"
CC="gcc"
CXX="g++"
CGO_ENABLED="1"
GOMOD="/home/jake/repos/tlsbug/go.mod"
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build626324268=/tmp/go-build -gno-record-gcc-switches"
What did you do?
Break a TLS server by setting ClientCAs to nil (making a self signed cert invalid).
https://play.golang.org/p/w0WCFqxoNhw
What did you expect to see?
Both sides of the connection fail, specifically the client during the dial.
What did you see instead?
The server side of the connection fails, but the client side of the connection is able to write data without an error. In 1.12, this write fails, which I noticed when testing a project with gotip.
$ go run .; gotip run .
2019/05/23 07:09:23 go1.12.5
2019/05/23 07:09:23 reader: got=, err=tls: failed to verify client's certificate: x509: certificate signed by unknown authority
2019/05/23 07:09:23 dial: remote error: tls: bad certificate
exit status 1
2019/05/23 07:09:24 devel +4fbb4e7 Thu May 23 13:55:55 2019 +0000
2019/05/23 07:09:24 writer: n=9, err=<nil>
2019/05/23 07:09:24 reader: got=, err=tls: failed to verify client's certificate: x509: certificate signed by unknown authority
Swapping the roles of the client/server (make the server do the write) makes both sides fail correctly.
Feel free to retitle this if crypto/tls is not the right place.
What version of Go are you using (
go version)?Does this issue reproduce with the latest release?
No. (1.12.5)
What operating system and processor architecture are you using (
go env)?go envOutputWhat did you do?
Break a TLS server by setting
ClientCAsto nil (making a self signed cert invalid).https://play.golang.org/p/w0WCFqxoNhw
What did you expect to see?
Both sides of the connection fail, specifically the client during the dial.
What did you see instead?
The server side of the connection fails, but the client side of the connection is able to write data without an error. In 1.12, this write fails, which I noticed when testing a project with
gotip.Swapping the roles of the client/server (make the server do the write) makes both sides fail correctly.
Feel free to retitle this if
crypto/tlsis not the right place.