-
Notifications
You must be signed in to change notification settings - Fork 20
/
listen.go
167 lines (146 loc) · 4.61 KB
/
listen.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
/*Copyright (C) 2017 Alex Beltran
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 2
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, write to:
The Free Software Foundation, Inc.
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA.
As a special exception, if other files instantiate templates or
use macros or inline functions from this file, or you compile
this file and link it with other works to produce a work based
on this file, this file does not by itself cause the resulting
work to be covered by the GNU General Public License. However
the source code for this file must still be made available in
accordance with section (3) of the GNU General Public License.
This exception does not invalidate any other reasons why a work
based on this file might be covered by the GNU General Public
License.
*/
package gobacnet
import (
"fmt"
"net"
"os"
"github.com/alexbeltran/gobacnet/encoding"
bactype "github.com/alexbeltran/gobacnet/types"
)
// Close free resources for the client. Always call this function when using NewClient
func (c *Client) Close() {
if c.listener == nil {
return
}
c.listener.Close()
if f, ok := c.log.Out.(*os.File); ok {
f.Close()
}
}
func (c *Client) handleMsg(src *net.UDPAddr, b []byte) {
var header bactype.BVLC
var npdu bactype.NPDU
var apdu bactype.APDU
dec := encoding.NewDecoder(b)
err := dec.BVLC(&header)
if err != nil {
c.log.Error(err)
return
}
if header.Function == bactype.BacFuncBroadcast || header.Function == bactype.BacFuncUnicast || header.Function == bactype.BacFuncForwardedNPDU {
// Remove the header information
b = b[mtuHeaderLength:]
err = dec.NPDU(&npdu)
if err != nil {
return
}
if npdu.IsNetworkLayerMessage {
c.log.Debug("Ignored Network Layer Message")
return
}
// We want to keep the APDU intact so we will get a snapshot before decoding
// further
send := dec.Bytes()
err = dec.APDU(&apdu)
if err != nil {
return
}
switch apdu.DataType {
case bactype.UnconfirmedServiceRequest:
if apdu.UnconfirmedService == bactype.ServiceUnconfirmedIAm {
c.log.Debug("Received IAm Message")
dec = encoding.NewDecoder(apdu.RawData)
var iam bactype.IAm
err = dec.IAm(&iam)
// For whatever reason, the IP section won't be populated until
// we set the type.
src.IP = src.IP.To4()
iam.Addr = bactype.UDPToAddress(src)
if err != nil {
c.log.Error(err)
return
}
c.utsm.Publish(int(iam.ID.Instance), iam)
} else if apdu.UnconfirmedService == bactype.ServiceUnconfirmedWhoIs {
dec := encoding.NewDecoder(apdu.RawData)
var low, high int32
dec.WhoIs(&low, &high)
// For now we are going to ignore who is request.
//log.WithFields(log.Fields{"low": low, "high": high}).Debug("WHO IS Request")
} else {
c.log.Errorf("Unconfirmed: %d %v", apdu.UnconfirmedService, apdu.RawData)
}
case bactype.ComplexAck:
c.log.Debug("Received Complex Ack")
err := c.tsm.Send(int(apdu.InvokeId), send)
if err != nil {
return
}
case bactype.ConfirmedServiceRequest:
c.log.Debug("Received Confirmed Service Request")
err := c.tsm.Send(int(apdu.InvokeId), send)
if err != nil {
return
}
case bactype.Error:
err := fmt.Errorf("Error Class %d Code %d", apdu.Error.Class, apdu.Error.Code)
err = c.tsm.Send(int(apdu.InvokeId), err)
if err != nil {
c.log.Debug("unable to send error to %d: %v", apdu.InvokeId, err)
}
default:
// Ignore it
//log.WithFields(log.Fields{"raw": b}).Debug("An ignored packet went through")
}
}
if header.Function == bactype.BacFuncForwardedNPDU {
// Right now we are ignoring the NPDU data that is stored in the packet. Eventually
// we will need to check it for any additional information we can gleam.
// NDPU has source
b = b[forwardHeaderLength:]
c.log.Debug("Ignored NDPU Forwarded")
}
}
// listen for incoming bacnet packets.
func (c *Client) listen() error {
var err error = nil
// While connection is opened
for err == nil {
var (
adr *net.UDPAddr
i int
)
b := make([]byte, 2048)
i, adr, err = c.listener.ReadFromUDP(b)
if err != nil {
c.log.Error(err)
continue
}
go c.handleMsg(adr, b[:i])
}
return nil
}