| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- // +build !windows
- /*
- * Copyright (c) 2015, Psiphon Inc.
- * All rights reserved.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- package psiphon
- import (
- "errors"
- "fmt"
- "net"
- "os"
- "strconv"
- "syscall"
- "time"
- )
- // tcpDial is the platform-specific part of interruptibleTCPDial
- //
- // To implement socket device binding, the lower-level syscall APIs are used.
- // The sequence of syscalls in this implementation are taken from:
- // https://code.google.com/p/go/issues/detail?id=6966
- func tcpDial(addr string, config *DialConfig, dialResult chan error) (net.Conn, error) {
- // Like interruption, this timeout doesn't stop this connection goroutine,
- // it just unblocks the calling interruptibleTCPDial.
- if config.ConnectTimeout != 0 {
- time.AfterFunc(config.ConnectTimeout, func() {
- select {
- case dialResult <- errors.New("connect timeout"):
- default:
- }
- })
- }
- // Get the remote IP and port, resolving a domain name if necessary
- host, strPort, err := net.SplitHostPort(addr)
- if err != nil {
- return nil, ContextError(err)
- }
- port, err := strconv.Atoi(strPort)
- if err != nil {
- return nil, ContextError(err)
- }
- ipAddrs, err := LookupIP(host, config)
- if err != nil {
- return nil, ContextError(err)
- }
- if len(ipAddrs) < 1 {
- return nil, ContextError(errors.New("no IP address"))
- }
- // Select an IP at random from the list, so we're not always
- // trying the same IP (when > 1) which may be blocked.
- // TODO: retry all IPs until one connects? For now, this retry
- // will happen on subsequent TCPDial calls, when a different IP
- // is selected.
- index, err := MakeSecureRandomInt(len(ipAddrs))
- if err != nil {
- return nil, ContextError(err)
- }
- // TODO: IPv6 support
- var ip [4]byte
- copy(ip[:], ipAddrs[index].To4())
- // Create a socket and bind to device, when configured to do so
- socketFd, err := syscall.Socket(syscall.AF_INET, syscall.SOCK_STREAM, 0)
- if err != nil {
- return nil, ContextError(err)
- }
- if config.DeviceBinder != nil {
- // WARNING: this potentially violates the direction to not call into
- // external components after the Controller may have been stopped.
- // TODO: rework DeviceBinder as an internal 'service' which can trap
- // external calls when they should not be made?
- err = config.DeviceBinder.BindToDevice(socketFd)
- if err != nil {
- syscall.Close(socketFd)
- return nil, ContextError(fmt.Errorf("BindToDevice failed: %s", err))
- }
- }
- sockAddr := syscall.SockaddrInet4{Addr: ip, Port: port}
- err = syscall.Connect(socketFd, &sockAddr)
- if err != nil {
- syscall.Close(socketFd)
- return nil, ContextError(err)
- }
- // Convert the socket fd to a net.Conn
- file := os.NewFile(uintptr(socketFd), "")
- netConn, err := net.FileConn(file) // net.FileConn() dups socketFd
- file.Close() // file.Close() closes socketFd
- if err != nil {
- return nil, ContextError(err)
- }
- return netConn, nil
- }
|