Merge pull request #264 from AkihiroSuda/fix-listener-panic

buildkitd: fix index-out-of-range panic in parsing wrong addr string
docker-18.09
Tõnis Tiigi 2018-01-23 10:18:00 -08:00 committed by GitHub
commit 821ea435d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -214,6 +214,10 @@ func serveGRPC(server *grpc.Server, addrs []string, errCh chan error) error {
func getListener(addr string) (net.Listener, error) {
addrSlice := strings.SplitN(addr, "://", 2)
if len(addrSlice) < 2 {
return nil, errors.Errorf("address %s does not contain proto, you meant unix://%s ?",
addr, addr)
}
proto := addrSlice[0]
listenAddr := addrSlice[1]
switch proto {