111 lines
2.9 KiB
Go
111 lines
2.9 KiB
Go
/*
|
|
* Copyright (c) 2021 IBM Corp and others.
|
|
*
|
|
* All rights reserved. This program and the accompanying materials
|
|
* are made available under the terms of the Eclipse Public License v2.0
|
|
* and Eclipse Distribution License v1.0 which accompany this distribution.
|
|
*
|
|
* The Eclipse Public License is available at
|
|
* https://www.eclipse.org/legal/epl-2.0/
|
|
* and the Eclipse Distribution License is available at
|
|
* http://www.eclipse.org/org/documents/edl-v10.php.
|
|
*
|
|
* Contributors:
|
|
* Seth Hoenig
|
|
* Allan Stockdill-Mander
|
|
* Mike Robertson
|
|
* MAtt Brittan
|
|
*/
|
|
|
|
package mqtt
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"errors"
|
|
"net"
|
|
"net/http"
|
|
"net/url"
|
|
"os"
|
|
"time"
|
|
|
|
"golang.org/x/net/proxy"
|
|
)
|
|
|
|
//
|
|
// This just establishes the network connection; once established the type of connection should be irrelevant
|
|
//
|
|
|
|
// openConnection opens a network connection using the protocol indicated in the URL.
|
|
// Does not carry out any MQTT specific handshakes.
|
|
func openConnection(uri *url.URL, tlsc *tls.Config, timeout time.Duration, headers http.Header, websocketOptions *WebsocketOptions, dialer *net.Dialer) (net.Conn, error) {
|
|
switch uri.Scheme {
|
|
case "ws":
|
|
dialURI := *uri // #623 - Gorilla Websockets does not accept URL's where uri.User != nil
|
|
dialURI.User = nil
|
|
conn, err := NewWebsocket(dialURI.String(), nil, timeout, headers, websocketOptions)
|
|
return conn, err
|
|
case "wss":
|
|
dialURI := *uri // #623 - Gorilla Websockets does not accept URL's where uri.User != nil
|
|
dialURI.User = nil
|
|
conn, err := NewWebsocket(dialURI.String(), tlsc, timeout, headers, websocketOptions)
|
|
return conn, err
|
|
case "mqtt", "tcp":
|
|
allProxy := os.Getenv("all_proxy")
|
|
if len(allProxy) == 0 {
|
|
conn, err := dialer.Dial("tcp", uri.Host)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return conn, nil
|
|
}
|
|
proxyDialer := proxy.FromEnvironment()
|
|
|
|
conn, err := proxyDialer.Dial("tcp", uri.Host)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return conn, nil
|
|
case "unix":
|
|
var conn net.Conn
|
|
var err error
|
|
|
|
// this check is preserved for compatibility with older versions
|
|
// which used uri.Host only (it works for local paths, e.g. unix://socket.sock in current dir)
|
|
if len(uri.Host) > 0 {
|
|
conn, err = dialer.Dial("unix", uri.Host)
|
|
} else {
|
|
conn, err = dialer.Dial("unix", uri.Path)
|
|
}
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return conn, nil
|
|
case "ssl", "tls", "mqtts", "mqtt+ssl", "tcps":
|
|
allProxy := os.Getenv("all_proxy")
|
|
if len(allProxy) == 0 {
|
|
conn, err := tls.DialWithDialer(dialer, "tcp", uri.Host, tlsc)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return conn, nil
|
|
}
|
|
proxyDialer := proxy.FromEnvironment()
|
|
conn, err := proxyDialer.Dial("tcp", uri.Host)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
tlsConn := tls.Client(conn, tlsc)
|
|
|
|
err = tlsConn.Handshake()
|
|
if err != nil {
|
|
_ = conn.Close()
|
|
return nil, err
|
|
}
|
|
|
|
return tlsConn, nil
|
|
}
|
|
return nil, errors.New("unknown protocol")
|
|
}
|