forked from robinson/gos7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tcpclient.go
313 lines (286 loc) · 8.14 KB
/
tcpclient.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
package gos7
// Copyright 2018 Trung Hieu Le. All rights reserved.
// This software may be modified and distributed under the terms
// of the BSD license. See the LICENSE file for details.
import (
"encoding/binary"
"fmt"
"io"
"log"
"net"
"strconv"
"strings"
"sync"
"time"
)
const (
// Default TCP timeout is not set
tcpTimeout = 10 * time.Second
tcpIdleTimeout = 60 * time.Second
tcpMaxLength = 2084
//messages
pduSizeRequested = 480
isoTCP = 102 //default isotcp port
isoHSize = 7 // TPKT+COTP Header Size
minPduSize = 16
// Client Connection Type
connectionTypePG = 1 // Connect to the PLC as a PG
connectionTypeOP = 2 // Connect to the PLC as an OP
connectionTypeBasic = 3 // Basic connection
)
// TCPClientHandler implements Packager and Transporter interface.
type TCPClientHandler struct {
tcpPackager
tcpTransporter
}
// NewTCPClientHandler allocates a new TCPClientHandler.
func NewTCPClientHandler(address string, rack int, slot int) *TCPClientHandler {
h := &TCPClientHandler{}
h.Address = address
h.Timeout = tcpTimeout
h.IdleTimeout = tcpIdleTimeout
h.ConnectionType = connectionTypePG // Connect to the PLC as a PG
remoteTSAP := uint16(h.ConnectionType)<<8 + (uint16(rack) * 0x20) + uint16(slot)
h.setConnectionParameters(address, 0x0100, remoteTSAP)
return h
}
//TCPClient creator for a TCP client with address, rack and slot, implement from interface client
func TCPClient(address string, rack int, slot int) Client {
handler := NewTCPClientHandler(address, rack, slot)
return NewClient(handler)
}
// tcpPackager implements Packager interface.
type tcpPackager struct {
//reserve for future use, this package should be pass into trans ID, pack ID
//or somethingelse to verify the request and response
}
// tcpTransporter implements Transporter interface.
type tcpTransporter struct {
// Connect string
Address string
// Connect & Read timeout
Timeout time.Duration
// Idle timeout to close the connection
IdleTimeout time.Duration
// Transmission logger
Logger *log.Logger
// TCP connection
mu sync.Mutex
conn net.Conn
closeTimer *time.Timer
lastActivity time.Time
localTSAP, remoteTSAP uint16
localTSAPHigh, localTSAPLow byte
remoteTSAPHigh, remoteTSAPLow byte
ConnectionType int
LastPDUType byte
PDULength int
}
func (mb *tcpTransporter) setConnectionParameters(address string, localTSAP uint16, remoteTSAP uint16) {
locTSAP := localTSAP & 0x0000FFFF
remTSAP := remoteTSAP & 0x0000FFFF
if len(strings.Split(address, ":")) < 2 {
mb.Address = address + ":" + strconv.Itoa(isoTCP) //ip:102
} else {
mb.Address = address
}
mb.localTSAPHigh = byte(locTSAP >> 8)
mb.localTSAPLow = byte(locTSAP & 0x00FF)
mb.remoteTSAPHigh = byte(remTSAP >> 8)
mb.remoteTSAPLow = byte(remTSAP & 0x00FF)
}
// Send sends data to server and ensures response length is greater than header length.
func (mb *tcpTransporter) Send(request []byte) (response []byte, err error) {
mb.mu.Lock()
defer mb.mu.Unlock()
// Set timer to close when idle
mb.lastActivity = time.Now()
mb.startCloseTimer()
// Set write and read timeout
var timeout time.Time
if mb.Timeout > 0 {
timeout = mb.lastActivity.Add(mb.Timeout)
}
if mb.conn == nil {
err = fmt.Errorf("Connection to address %s is null", mb.Address)
return
}
if err = mb.conn.SetDeadline(timeout); err != nil {
return
}
// Send data
mb.logf("s7: sending % x", request)
if _, err = mb.conn.Write(request); err != nil {
return
}
done := false
data := make([]byte, tcpMaxLength)
length := 0
for !done && err == nil {
// Get TPKT (4 bytes)
if _, err = io.ReadFull(mb.conn, data[:4]); err != nil {
log.Printf("%T %+v", err, err)
return
}
// Read length, ignore transaction & protocol id (4 bytes)
length = int(binary.BigEndian.Uint16(data[2:]))
if length == isoHSize {
_, err = io.ReadFull(mb.conn, data[4:7])
if err != nil { // Skip remaining 3 bytes and Done is still false
return
}
} else {
if length > pduSizeRequested+isoHSize || length < minPduSize {
err = fmt.Errorf("s7: invalid pdu")
return
}
done = true
}
}
// Skip remaining 3 COTP bytes
_, err = io.ReadFull(mb.conn, data[4:7])
if err != nil {
return
}
mb.LastPDUType = data[5] // Stores PDU Type, we need it
// Receives the S7 Payload
_, err = io.ReadFull(mb.conn, data[7:length])
if err != nil {
return
}
response = data[0:length]
mb.logf("s7: received % x\n", response)
return
}
// Connect establishes a new connection to the address in Address.
// Connect and Close are exported so that multiple requests can be done with one session
func (mb *tcpTransporter) Connect() error {
// mb.mu.Lock()
// defer mb.mu.Unlock()
return mb.connect()
}
func (mb *tcpTransporter) tcpConnect() error {
mb.mu.Lock()
defer mb.mu.Unlock()
if mb.conn == nil {
dialer := net.Dialer{Timeout: mb.Timeout}
conn, err := dialer.Dial("tcp", mb.Address)
if err != nil {
return err
}
mb.conn = conn
}
return nil
}
func (mb *tcpTransporter) connect() error {
//first stage: TCP connection
err := mb.tcpConnect()
if err != nil {
return err
}
//second stage: ISOTCP (ISO 8073) Connection
err = mb.isoConnect()
if err != nil {
return err
}
// Third stage : S7 protocol data unit negotiation
return mb.negotiatePduLength()
}
func (mb *tcpTransporter) isoConnect() error {
msg := make([]byte, len(isoConnectionRequestTelegram))
copy(msg, isoConnectionRequestTelegram)
msg[16] = mb.localTSAPHigh
msg[17] = mb.localTSAPLow
msg[20] = mb.remoteTSAPHigh
msg[21] = mb.remoteTSAPLow
// Sends the connection request telegram
response, err := mb.Send(msg)
if size := len(response); size == 22 {
if mb.LastPDUType != byte(0xD0) { // 0xD0 = CC Connection confirm
err = fmt.Errorf("errIsoConnect")
}
} else {
err = fmt.Errorf(ErrorText(errIsoInvalidPDU))
}
return err
}
func (mb *tcpTransporter) negotiatePduLength() error {
// Set PDU Size Requested //lth
pduSizePackage := make([]byte, len(s7PDUNegogiationTelegram))
copy(pduSizePackage, s7PDUNegogiationTelegram)
binary.BigEndian.PutUint16(pduSizePackage[23:], uint16(pduSizeRequested))
// Sends the connection request telegram
response, err := mb.Send(pduSizePackage)
length := len(response)
if length == 27 && response[17] == 0 && response[18] == 0 { // 20 = size of Negotiate Answer
// Get PDU Size Negotiated
mb.PDULength = int(binary.BigEndian.Uint16(response[25:]))
if mb.PDULength <= 0 {
err = fmt.Errorf(ErrorText(errCliNegotiatingPDU))
}
} else {
err = fmt.Errorf(ErrorText(errCliNegotiatingPDU))
}
return err
}
func (mb *tcpTransporter) startCloseTimer() {
if mb.IdleTimeout <= 0 {
return
}
if mb.closeTimer == nil {
mb.closeTimer = time.AfterFunc(mb.IdleTimeout, mb.closeIdle)
} else {
mb.closeTimer.Reset(mb.IdleTimeout)
}
}
// Close closes current connection.
func (mb *tcpTransporter) Close() error {
mb.mu.Lock()
defer mb.mu.Unlock()
return mb.close()
}
// flush flushes pending data in the connection,
// returns io.EOF if connection is closed.
func (mb *tcpTransporter) flush(b []byte) (err error) {
if err = mb.conn.SetReadDeadline(time.Now()); err != nil {
return
}
// Timeout setting will be reset when reading
if _, err = mb.conn.Read(b); err != nil {
// Ignore timeout error
if netError, ok := err.(net.Error); ok && netError.Timeout() {
err = nil
}
}
return
}
func (mb *tcpTransporter) logf(format string, v ...interface{}) {
if mb.Logger != nil {
mb.Logger.Printf(format, v...)
}
}
// closeLocked closes current connection. Caller must hold the mutex before calling this method.
func (mb *tcpTransporter) close() (err error) {
if mb.conn != nil {
err = mb.conn.Close()
mb.conn = nil
}
return
}
// closeIdle closes the connection if last activity is passed behind IdleTimeout.
func (mb *tcpTransporter) closeIdle() {
mb.mu.Lock()
defer mb.mu.Unlock()
if mb.IdleTimeout <= 0 {
return
}
idle := time.Now().Sub(mb.lastActivity)
if idle >= mb.IdleTimeout {
mb.logf("s7: closing connection due to idle timeout: %v", idle)
mb.close()
}
}
//reserve for future use, need to verify the request and response
func (mb *tcpPackager) Verify(request []byte, response []byte) (err error) {
return
}