-
Notifications
You must be signed in to change notification settings - Fork 27
/
tcpclient.go
413 lines (363 loc) · 11.4 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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
// Copyright 2014 Quoc-Viet Nguyen. All rights reserved.
// This software may be modified and distributed under the terms
// of the BSD license. See the LICENSE file for details.
package modbus
import (
"encoding/binary"
"fmt"
"io"
"net"
"sync"
"sync/atomic"
"time"
)
const (
tcpProtocolIdentifier uint16 = 0x0000
// Modbus Application Protocol
tcpHeaderSize = 7
tcpMaxLength = 260
// Default TCP timeout is not set
tcpTimeout = 10 * time.Second
tcpIdleTimeout = 60 * time.Second
)
// ErrTCPHeaderLength informs about a wrong header length.
type ErrTCPHeaderLength int
func (length ErrTCPHeaderLength) Error() string {
return fmt.Sprintf("modbus: length in response header '%d' must not be zero or greater than '%v'",
length, tcpMaxLength-tcpHeaderSize+1)
}
// TCPClientHandler implements Packager and Transporter interface.
type TCPClientHandler struct {
tcpPackager
tcpTransporter
}
// NewTCPClientHandler allocates a new TCPClientHandler.
func NewTCPClientHandler(address string) *TCPClientHandler {
h := &TCPClientHandler{}
h.Address = address
h.Timeout = tcpTimeout
h.IdleTimeout = tcpIdleTimeout
return h
}
// TCPClient creates TCP client with default handler and given connect string.
func TCPClient(address string) Client {
handler := NewTCPClientHandler(address)
return NewClient(handler)
}
// tcpPackager implements Packager interface.
type tcpPackager struct {
// For synchronization between messages of server & client
transactionID uint32
// Broadcast address is 0
SlaveID byte
}
// SetSlave sets modbus slave id for the next client operations
func (mb *tcpPackager) SetSlave(slaveID byte) {
mb.SlaveID = slaveID
}
// Encode adds modbus application protocol header:
//
// Transaction identifier: 2 bytes
// Protocol identifier: 2 bytes
// Length: 2 bytes
// Unit identifier: 1 byte
// Function code: 1 byte
// Data: n bytes
func (mb *tcpPackager) Encode(pdu *ProtocolDataUnit) (adu []byte, err error) {
adu = make([]byte, tcpHeaderSize+1+len(pdu.Data))
// Transaction identifier
transactionID := atomic.AddUint32(&mb.transactionID, 1)
binary.BigEndian.PutUint16(adu, uint16(transactionID))
// Protocol identifier
binary.BigEndian.PutUint16(adu[2:], tcpProtocolIdentifier)
// Length = sizeof(SlaveID) + sizeof(FunctionCode) + Data
length := uint16(1 + 1 + len(pdu.Data))
binary.BigEndian.PutUint16(adu[4:], length)
// Unit identifier
adu[6] = mb.SlaveID
// PDU
adu[tcpHeaderSize] = pdu.FunctionCode
copy(adu[tcpHeaderSize+1:], pdu.Data)
return
}
// Verify confirms transaction, protocol and unit id.
func (mb *tcpPackager) Verify(aduRequest []byte, aduResponse []byte) error {
return verify(aduRequest, aduResponse)
}
// Decode extracts PDU from TCP frame:
//
// Transaction identifier: 2 bytes
// Protocol identifier: 2 bytes
// Length: 2 bytes
// Unit identifier: 1 byte
func (mb *tcpPackager) Decode(adu []byte) (pdu *ProtocolDataUnit, err error) {
// Read length value in the header
length := binary.BigEndian.Uint16(adu[4:])
pduLength := len(adu) - tcpHeaderSize
if pduLength <= 0 || pduLength != int(length-1) {
err = fmt.Errorf("modbus: length in response '%v' does not match pdu data length '%v'", length-1, pduLength)
return
}
pdu = &ProtocolDataUnit{}
// The first byte after header is function code
pdu.FunctionCode = adu[tcpHeaderSize]
pdu.Data = adu[tcpHeaderSize+1:]
return
}
// 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
// Recovery timeout if tcp communication misbehaves
LinkRecoveryTimeout time.Duration
// Recovery timeout if the protocol is malformed, e.g. wrong transaction ID
ProtocolRecoveryTimeout time.Duration
// Silent period after successful connection
ConnectDelay time.Duration
// Transmission logger
Logger Logger
// TCP connection
mu sync.Mutex
conn net.Conn
closeTimer *time.Timer
lastActivity time.Time
lastAttemptedTransactionID uint16
lastSuccessfulTransactionID uint16
}
// helper value to signify what to do in Send
type readResult int
const (
readResultDone readResult = iota
readResultRetry
readResultCloseRetry
)
// Send sends data to server and ensures response length is greater than header length.
func (mb *tcpTransporter) Send(aduRequest []byte) (aduResponse []byte, err error) {
mb.mu.Lock()
defer mb.mu.Unlock()
var data [tcpMaxLength]byte
recoveryDeadline := time.Now().Add(mb.IdleTimeout)
for {
// Establish a new connection if not connected
if err = mb.connect(); err != nil {
return
}
// Set timer to close when idle
mb.lastActivity = time.Now()
mb.startCloseTimer()
// Set write and read timeout
if mb.Timeout > 0 {
if err = mb.conn.SetDeadline(mb.lastActivity.Add(mb.Timeout)); err != nil {
return
}
}
// Send data
mb.logf("modbus: send % x", aduRequest)
if _, err = mb.conn.Write(aduRequest); err != nil {
return
}
mb.lastAttemptedTransactionID = binary.BigEndian.Uint16(aduRequest)
var res readResult
aduResponse, res, err = mb.readResponse(aduRequest, data[:], recoveryDeadline)
switch res {
case readResultDone:
if err == nil {
mb.lastSuccessfulTransactionID = binary.BigEndian.Uint16(aduResponse)
}
return
case readResultRetry:
continue
}
mb.logf("modbus: close connection and retry, because of %v", err)
mb.close()
time.Sleep(mb.LinkRecoveryTimeout)
}
}
func (mb *tcpTransporter) readResponse(aduRequest []byte, data []byte, recoveryDeadline time.Time) (aduResponse []byte, res readResult, err error) {
// res is readResultDone by default, which either means we succeeded or err contains the fatal error
for {
if _, err = io.ReadFull(mb.conn, data[:tcpHeaderSize]); err == nil {
aduResponse, err = mb.processResponse(data[:])
if err == nil {
err = verify(aduRequest, aduResponse)
if err == nil {
mb.logf("modbus: recv % x\n", aduResponse)
return // everything is OK
}
}
// no time left, report error
if time.Since(recoveryDeadline) >= 0 {
return
}
switch v := err.(type) {
case ErrTCPHeaderLength:
if mb.LinkRecoveryTimeout > 0 {
// TCP header not OK - retry with another query
res = readResultRetry
return
}
// no time left, report error
return
case errTransactionIDMismatch:
// the first condition check for a normal transaction id mismatch. The second part of the condition check for a wrap-around. If a wraparound is
// detected (last attempt is smaller than last success), the id can be higher than the last success or lower than the last attempt, but not both
if (v.got > mb.lastSuccessfulTransactionID && v.got < mb.lastAttemptedTransactionID) ||
(mb.lastAttemptedTransactionID < mb.lastSuccessfulTransactionID && (v.got > mb.lastSuccessfulTransactionID || v.got < mb.lastAttemptedTransactionID)) {
// most likely, we simply had a timeout for the earlier query and now read the (late) response. Ignore it
// and assume that the response will come *without* sending another query. (If we send another query
// with transactionId X+1 here, we would again get a transactionMismatchError if the response to
// transactionId X is already in the buffer).
continue
}
if mb.ProtocolRecoveryTimeout > 0 {
// some other mismatch, still in time and protocol may recover - retry with another query
res = readResultRetry
return
}
return // no time left, report error
default:
if mb.ProtocolRecoveryTimeout > 0 {
// TCP header OK but modbus frame not - retry with another query
res = readResultRetry
return
}
return // no time left, report error
}
} else if (err != io.EOF && err != io.ErrUnexpectedEOF) ||
mb.LinkRecoveryTimeout == 0 || time.Until(recoveryDeadline) < 0 {
return
}
// any other error, but recovery deadline isn't reached yet - close and retry
res = readResultCloseRetry
return
}
}
func (mb *tcpTransporter) processResponse(data []byte) (aduResponse []byte, err error) {
// Read length, ignore transaction & protocol id (4 bytes)
length := int(binary.BigEndian.Uint16(data[4:]))
if length <= 0 {
mb.flush(data[:])
err = ErrTCPHeaderLength(length)
return
}
if length > (tcpMaxLength - (tcpHeaderSize - 1)) {
mb.flush(data[:])
err = ErrTCPHeaderLength(length)
return
}
// Skip unit id
length += tcpHeaderSize - 1
if _, err = io.ReadFull(mb.conn, data[tcpHeaderSize:length]); err != nil {
return
}
aduResponse = data[:length]
return
}
type errTransactionIDMismatch struct {
got, expected uint16
}
func (e errTransactionIDMismatch) Error() string {
return fmt.Sprintf("modbus: response transaction id '%v' does not match request '%v'", e.got, e.expected)
}
func verify(aduRequest []byte, aduResponse []byte) (err error) {
// Transaction id
responseVal := binary.BigEndian.Uint16(aduResponse)
requestVal := binary.BigEndian.Uint16(aduRequest)
if responseVal != requestVal {
err = errTransactionIDMismatch{got: responseVal, expected: requestVal}
return
}
// Protocol id
responseVal = binary.BigEndian.Uint16(aduResponse[2:])
requestVal = binary.BigEndian.Uint16(aduRequest[2:])
if responseVal != requestVal {
err = fmt.Errorf("modbus: response protocol id '%v' does not match request '%v'", responseVal, requestVal)
return
}
// Unit id (1 byte)
if aduResponse[6] != aduRequest[6] {
err = fmt.Errorf("modbus: response unit id '%v' does not match request '%v'", aduResponse[6], aduRequest[6])
return
}
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) connect() error {
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
// silent period
time.Sleep(mb.ConnectDelay)
}
return nil
}
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
}
if idle := time.Since(mb.lastActivity); idle >= mb.IdleTimeout {
mb.logf("modbus: closing connection due to idle timeout: %v", idle)
mb.close()
}
}