-
Notifications
You must be signed in to change notification settings - Fork 5
/
tcpip.go
123 lines (105 loc) · 3.57 KB
/
tcpip.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
package tcpip
import (
"encoding/binary"
"math/rand"
"strconv"
"strings"
"time"
)
type TCPIP struct {
DestIP string
DestPort uint16
TcpFlag string
SeqNumber []byte
AckNumber []byte
Data []byte
}
func Iptobyte(ip string) []byte {
var ipbyte []byte
for _, v := range strings.Split(ip, ".") {
i, _ := strconv.ParseUint(v, 10, 8)
ipbyte = append(ipbyte, byte(i))
}
return ipbyte
}
func createSequenceNumber() []byte {
rand.Seed(time.Now().UnixNano())
b := make([]byte, 4)
binary.BigEndian.PutUint32(b, uint32(rand.Intn(4294967295)))
return b
}
func NewTCPIP(tcpip TCPIP) []byte {
destIP := Iptobyte(tcpip.DestIP)
//localif, _ := getLocalIpAddr("wlp4s0")
localif, _ := getLocalIpAddr("lo")
var ipheader IPHeader
ipheader = NewIPHeader(localif.LocalIpAddr, destIP, "TCP")
var tcpheader TCPHeader
// 自分のポートは42279でとりま固定
tcpheader = NewTCPHeader(UintTo2byte(42279), UintTo2byte(tcpip.DestPort), tcpip.TcpFlag)
var tcpOption TCPOptions
if tcpip.TcpFlag == "ACK" || tcpip.TcpFlag == "PSHACK" || tcpip.TcpFlag == "FINACK" {
tcpheader.SequenceNumber = tcpip.SeqNumber
tcpheader.AcknowlegeNumber = tcpip.AckNumber
} else if tcpip.TcpFlag == "SYN" {
// SYNのときは乱数をセット
tcpheader.SequenceNumber = createSequenceNumber()
tcpOption = NewTCPOptions()
}
// IPヘッダにLengthをセットする
// IP=20byte + tcpヘッダの長さ + (tcpオプションの長さ) + dataの長さ
if tcpip.TcpFlag == "PSHACK" {
ipheader.TotalPacketLength = UintTo2byte(20 + toByteLen(tcpheader) + uint16(len(tcpip.Data)))
} else if tcpip.TcpFlag == "SYN" {
ipheader.TotalPacketLength = UintTo2byte(20 + toByteLen(tcpheader) + toByteLen(tcpOption))
} else {
// ACKのときはTCPヘッダまで
ipheader.TotalPacketLength = UintTo2byte(20 + toByteLen(tcpheader)) // + toByteLen(tcpOption))
}
// Lengthをセットしたらチェックサムを計算する
ipsum := sumByteArr(toByteArr(ipheader))
ipheader.HeaderCheckSum = checksum(ipsum)
// TCPヘッダのLengthをセットする
var num uint16
if tcpip.TcpFlag == "SYN" {
num = toByteLen(tcpheader) + toByteLen(tcpOption)
} else {
num = toByteLen(tcpheader)
}
tcpheader.HeaderLength = []byte{byte(num << 2)}
// TCPダミーヘッダを作成する
var dummy TCPDummyHeader
if tcpip.TcpFlag == "PSHACK" {
// PSHACKの時はTCPデータも全長に入れる
dummy = NewTCPDummyHeader(ipheader, num+uint16(len(tcpip.Data)))
} else {
dummy = NewTCPDummyHeader(ipheader, num)
}
//ダミーヘッダとTCPヘッダとTCPデータのbyte値を合計してチェックサムを計算する
sum := sumByteArr(toByteArr(dummy))
sum += sumByteArr(toByteArr(tcpheader))
if tcpip.TcpFlag == "PSHACK" {
// https://atmarkit.itmedia.co.jp/ait/articles/0401/29/news080_2.html
// TCPデータの長さが奇数の場合は、最後に1byteの「0」を補って計算する
if len(tcpip.Data)%2 != 0 {
checksumData := tcpip.Data
checksumData = append(checksumData, byte(0x00))
sum += sumByteArr(checksumData)
} else {
sum += sumByteArr(tcpip.Data)
}
} else if tcpip.TcpFlag == "SYN" {
sum += sumByteArr(toByteArr(tcpOption))
}
tcpheader.Checksum = checksum(sum)
// IPヘッダ、TCPヘッダを1つのbyteの配列にする
var tcpipPacket []byte
tcpipPacket = append(tcpipPacket, toByteArr(ipheader)...)
tcpipPacket = append(tcpipPacket, toByteArr(tcpheader)...)
if tcpip.TcpFlag == "PSHACK" {
tcpipPacket = append(tcpipPacket, tcpip.Data...)
} else if tcpip.TcpFlag == "SYN" {
tcpipPacket = append(tcpipPacket, toByteArr(tcpOption)...)
}
return tcpipPacket
}