1 Star 0 Fork 0

lqinggang / psiphon-tunnel-core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
UDPConn.go 2.72 KB
一键复制 编辑 原始数据 按行查看 历史
/*
* Copyright (c) 2018, 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 (
"context"
"errors"
"fmt"
"math/rand"
"net"
"strconv"
"syscall"
"github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common"
)
// NewUDPConn resolves addr and configures a new UDP conn. The UDP socket is
// created using options in DialConfig, including DeviceBinder. The returned
// UDPAddr uses DialConfig options IPv6Synthesizer and ResolvedIPCallback.
//
// The UDP conn is not dialed; it is intended for use with WriteTo using the
// returned UDPAddr, not Write.
//
// The returned conn is not a Closer; the caller is expected to wrap this conn
// with another higher-level conn that provides that interface.
func NewUDPConn(
ctx context.Context, addr string, config *DialConfig) (net.PacketConn, *net.UDPAddr, error) {
host, strPort, err := net.SplitHostPort(addr)
if err != nil {
return nil, nil, common.ContextError(err)
}
port, err := strconv.Atoi(strPort)
if err != nil {
return nil, nil, common.ContextError(err)
}
ipAddrs, err := LookupIP(ctx, host, config)
if err != nil {
return nil, nil, common.ContextError(err)
}
if len(ipAddrs) < 1 {
return nil, nil, common.ContextError(errors.New("no IP address"))
}
ipAddr := ipAddrs[rand.Intn(len(ipAddrs))]
if config.IPv6Synthesizer != nil {
if ipAddr.To4() != nil {
synthesizedIPAddress := config.IPv6Synthesizer.IPv6Synthesize(ipAddr.String())
if synthesizedIPAddress != "" {
synthesizedAddr := net.ParseIP(synthesizedIPAddress)
if synthesizedAddr != nil {
ipAddr = synthesizedAddr
}
}
}
}
var domain int
if ipAddr != nil && ipAddr.To4() != nil {
domain = syscall.AF_INET
} else if ipAddr != nil && ipAddr.To16() != nil {
domain = syscall.AF_INET6
} else {
return nil, nil, common.ContextError(fmt.Errorf("invalid IP address: %s", ipAddr.String()))
}
conn, err := newUDPConn(domain, config)
if err != nil {
return nil, nil, common.ContextError(err)
}
if config.ResolvedIPCallback != nil {
config.ResolvedIPCallback(ipAddr.String())
}
return conn, &net.UDPAddr{IP: ipAddr, Port: port}, nil
}
Go
1
https://gitee.com/lqinggang/psiphon-tunnel-core.git
git@gitee.com:lqinggang/psiphon-tunnel-core.git
lqinggang
psiphon-tunnel-core
psiphon-tunnel-core
v2.0.2

搜索帮助