2018-06-10 14:50:03 +00:00
|
|
|
package constant
|
|
|
|
|
2018-06-11 10:36:39 +00:00
|
|
|
import (
|
2019-10-27 13:44:07 +00:00
|
|
|
"encoding/json"
|
2018-06-11 10:36:39 +00:00
|
|
|
"net"
|
2020-01-31 06:43:54 +00:00
|
|
|
"strconv"
|
2018-06-11 10:36:39 +00:00
|
|
|
)
|
|
|
|
|
2018-06-10 14:50:03 +00:00
|
|
|
// Socks addr type
|
|
|
|
const (
|
|
|
|
AtypIPv4 = 1
|
|
|
|
AtypDomainName = 3
|
|
|
|
AtypIPv6 = 4
|
2018-06-13 17:00:58 +00:00
|
|
|
|
2018-07-25 16:04:59 +00:00
|
|
|
TCP NetWork = iota
|
2018-06-13 17:00:58 +00:00
|
|
|
UDP
|
2018-07-25 16:04:59 +00:00
|
|
|
|
2019-05-09 13:00:29 +00:00
|
|
|
HTTP Type = iota
|
2019-10-27 13:44:07 +00:00
|
|
|
HTTPCONNECT
|
2018-07-25 16:04:59 +00:00
|
|
|
SOCKS
|
2018-12-05 13:13:29 +00:00
|
|
|
REDIR
|
2018-06-10 14:50:03 +00:00
|
|
|
)
|
|
|
|
|
2018-06-13 17:00:58 +00:00
|
|
|
type NetWork int
|
|
|
|
|
2020-06-07 08:54:41 +00:00
|
|
|
func (n NetWork) String() string {
|
|
|
|
if n == TCP {
|
2018-06-13 17:00:58 +00:00
|
|
|
return "tcp"
|
|
|
|
}
|
|
|
|
return "udp"
|
|
|
|
}
|
|
|
|
|
2019-10-27 13:44:07 +00:00
|
|
|
func (n NetWork) MarshalJSON() ([]byte, error) {
|
|
|
|
return json.Marshal(n.String())
|
|
|
|
}
|
|
|
|
|
2019-05-09 13:00:29 +00:00
|
|
|
type Type int
|
2018-07-25 16:04:59 +00:00
|
|
|
|
2019-10-27 13:44:07 +00:00
|
|
|
func (t Type) String() string {
|
|
|
|
switch t {
|
|
|
|
case HTTP:
|
|
|
|
return "HTTP"
|
|
|
|
case HTTPCONNECT:
|
|
|
|
return "HTTP Connect"
|
|
|
|
case SOCKS:
|
|
|
|
return "Socks5"
|
|
|
|
case REDIR:
|
|
|
|
return "Redir"
|
|
|
|
default:
|
|
|
|
return "Unknown"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t Type) MarshalJSON() ([]byte, error) {
|
|
|
|
return json.Marshal(t.String())
|
|
|
|
}
|
|
|
|
|
2018-09-30 04:25:52 +00:00
|
|
|
// Metadata is used to store connection address
|
|
|
|
type Metadata struct {
|
2019-10-27 13:44:07 +00:00
|
|
|
NetWork NetWork `json:"network"`
|
|
|
|
Type Type `json:"type"`
|
|
|
|
SrcIP net.IP `json:"sourceIP"`
|
|
|
|
DstIP net.IP `json:"destinationIP"`
|
|
|
|
SrcPort string `json:"sourcePort"`
|
|
|
|
DstPort string `json:"destinationPort"`
|
|
|
|
AddrType int `json:"-"`
|
|
|
|
Host string `json:"host"`
|
2018-06-10 14:50:03 +00:00
|
|
|
}
|
2018-06-11 10:36:39 +00:00
|
|
|
|
2019-10-11 12:11:18 +00:00
|
|
|
func (m *Metadata) RemoteAddress() string {
|
|
|
|
return net.JoinHostPort(m.String(), m.DstPort)
|
|
|
|
}
|
|
|
|
|
2020-01-31 06:58:54 +00:00
|
|
|
func (m *Metadata) SourceAddress() string {
|
|
|
|
return net.JoinHostPort(m.SrcIP.String(), m.SrcPort)
|
|
|
|
}
|
|
|
|
|
2020-02-07 12:53:43 +00:00
|
|
|
func (m *Metadata) Resolved() bool {
|
|
|
|
return m.DstIP != nil
|
|
|
|
}
|
|
|
|
|
2020-01-31 06:43:54 +00:00
|
|
|
func (m *Metadata) UDPAddr() *net.UDPAddr {
|
|
|
|
if m.NetWork != UDP || m.DstIP == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
port, _ := strconv.Atoi(m.DstPort)
|
|
|
|
return &net.UDPAddr{
|
|
|
|
IP: m.DstIP,
|
|
|
|
Port: port,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-02 12:47:38 +00:00
|
|
|
func (m *Metadata) String() string {
|
2019-10-11 12:11:18 +00:00
|
|
|
if m.Host != "" {
|
|
|
|
return m.Host
|
|
|
|
} else if m.DstIP != nil {
|
2019-05-09 13:00:29 +00:00
|
|
|
return m.DstIP.String()
|
2019-10-11 12:11:18 +00:00
|
|
|
} else {
|
|
|
|
return "<nil>"
|
2018-06-11 10:36:39 +00:00
|
|
|
}
|
2019-02-02 12:47:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Metadata) Valid() bool {
|
2019-05-09 13:00:29 +00:00
|
|
|
return m.Host != "" || m.DstIP != nil
|
2019-02-02 12:47:38 +00:00
|
|
|
}
|