-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathrestconf.go
406 lines (323 loc) · 9.48 KB
/
restconf.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
/* Copyright (c) 2018-2019 Rubicon Communications, LLC (Netgate)
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package main
import (
"bytes"
"crypto/tls"
"crypto/x509"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"log"
"net/http"
"strconv"
"strings"
"time"
)
// Update the cached rules from the "snortblock" ACL in TNSR
// If the cache is < MAXCACHEAGE minutes old, don't bother UNLESS force is true
func getSnortBlockACL(force bool) error {
now := time.Now()
if !force && (lastupdate+(MAXCACHEAGE*60)) > uint64(now.Unix()) {
return nil
}
if verbose {
fmt.Println("Updating ACL cache")
}
response, err := rest("GET", tnsrhost+ACL_ReadRules, "")
if err != nil {
return err
}
// Write the received JSON rule list to the local cache
err = json.Unmarshal(response, &aclcache)
if err != nil {
log.Fatal(err)
}
// And remember when
lastupdate = uint64(now.Unix())
return nil
}
// Print a pretty list of the rules in an ACL
func (c ACLRuleList) listACLs() {
log.Printf("INFO: Listing ACL block rules for snortblock ACL")
idx := 0
var dstsrc string
var addr string
for _, v := range c.AclRule {
var r AAclRule = v
if len(r.DstIPPrefix) == 0 {
dstsrc = "Src IP"
addr = r.SrcIPPrefix
} else {
dstsrc = "Dst IP"
addr = r.DstIPPrefix
}
fmt.Printf("%3d Sequence #: %10d, %s %18s, Action: %7s, Description: %s\n",
idx, r.Sequence, dstsrc, addr, r.Action, r.AclRuleDescription)
idx++
}
}
// Retrieve the rules from the snortblock ACL and print them to the console
func showACLs() error {
err := getSnortBlockACL(false)
if err != nil {
return err
}
fmt.Println("\nCurrently installed rules in ACL list \"snortblock\"\n--------------------------------------------------")
aclcache.listACLs()
return nil
}
// Add a rule to the snortblock ACL in TNSR and in local cache. src indicates source rule or destination
func addRule(host string, src bool) {
var rule AAclRule
tnsrMutex.Lock()
defer tnsrMutex.Unlock()
err := getSnortBlockACL(false)
if err != nil {
log.Fatal("Unable to snortblock read rues from TNSR\n")
}
// Don't duplicate rules
if ruleExists(host) {
if verbose {
fmt.Printf("Duplicate rule: %s\n", host)
}
return
}
now := time.Now()
// Compose a new rule
rule.AclRuleDescription = fmt.Sprintf("%d, Added by tnsrids", now.Unix())
rule.Sequence = getNextSeqNum()
rule.Action = "deny"
rule.Version = "ipv4"
//Source rule or destination?
if src {
rule.SrcIPPrefix = host
rule.DstIPPrefix = ""
} else {
rule.DstIPPrefix = host
rule.SrcIPPrefix = ""
}
b, err := json.Marshal(rule)
if err != nil {
log.Printf("Error: %v", err)
return
}
// Compose the JSON formatting
cmd := "{\"netgate-acl:acl-rule\":" + string(b) + "}"
if verbose {
fmt.Printf("Adding rule for host: %s\n", host)
}
log.Printf("INFO: Adding block rule for \"%s\"", host)
// Add the new rule to TNSR via RESTCONF
_, err = rest("PUT", fmt.Sprintf("%s%s%s%d", tnsrhost, ACL_WriteRule, "/acl-rule=", getNextSeqNum()), cmd)
if err != nil {
log.Printf("Error: %v", err)
} else {
// Add the new rule to the cached rule list
aclcache.AclRule = append(aclcache.AclRule, rule)
}
}
// Make an HTTP REST call
// Requires the operator (PUT, POST, GET, DELETE etc), the complete URL (including the protocol) and an optional payload
func rest(oper string, url string, payload string) ([]byte, error) {
var err error
var req *http.Request
var client *http.Client
var resp *http.Response
if len(payload) == 0 {
req, err = http.NewRequest(oper, url, nil)
} else {
var jsonStr = []byte(payload)
req, err = http.NewRequest(oper, url, bytes.NewBuffer(jsonStr))
}
// This content-type is required for TNSR > 19-12 and specifically to use the HTTP PATCH mthod
req.Header.Set("Content-Type", "application/yang-data+json")
if useTLS {
transport := &http.Transport{TLSClientConfig: tlsConfig}
client = &http.Client{Transport: transport}
} else {
client = &http.Client{}
}
resp, err = client.Do(req)
if err != nil {
fmt.Printf("%v", err)
return nil, err
}
defer resp.Body.Close()
contents, _ := ioutil.ReadAll(resp.Body)
// fmt.Println("response Status:", resp.Status)
// 204 code is valid if no response is expected. Currently 404 is returned if the configuration item is currently empty
// which is not really an error, but sionce the body contains an error message, 204 is not really appropriate.
if resp.StatusCode != 200 && resp.StatusCode != 204 && !(resp.StatusCode == 404 && extractErrorMsg(contents) != "Instance does not exist") {
return nil, errors.New("RESTCONF operation failed (" + string(resp.Status) + ")")
}
return contents, nil
}
// Returns true if a rule exists for the specified host in the local cache
// Called from functions that have updated the cache already
func ruleExists(host string) bool {
for _, v := range aclcache.AclRule {
if host == v.DstIPPrefix || host == v.SrcIPPrefix {
return true
}
}
return false
}
// Find the lowest unused sequence number in the cached rule list
// This may be a gap in the sequece from a previously deleted rule, ot it may be the next highest number
func getNextSeqNum() uint64 {
var idx uint64
var numRules int64 = int64(len(aclcache.AclRule))
var ruleCnt int64 = 0
var max uint64 = 0
// Find the highest sequence number in use
for _, v := range aclcache.AclRule {
if v.Sequence > max && v.Action == "deny" {
max = v.Sequence
}
}
// For every possible number <= max
for idx = 1; idx < max; idx++ {
ruleCnt = 0
// See if there is a rule that uses it as a sequence number
for _, v := range aclcache.AclRule {
ruleCnt++
if idx == v.Sequence {
break
}
}
// If there was a gap, resuse it
if ruleCnt == numRules {
return idx
}
}
// If there was no gap, return the next number
return max + 1
}
// Delete the rule with the specified sequece number
func deleteRule(seq uint64) error {
var url string = fmt.Sprintf("%s%s%d", tnsrhost, ACL_Delete, seq)
_, err := rest("DELETE", url, "")
if err != nil {
return (err)
}
return nil
}
// Clean out any rules that have a timestamp older than MAXAGEMINS minutes, no timestamp at all
// Ignore the defalut permit rule (which has a seq # > maxSeqNum)
func reapACLs() error {
deletedSome := false
if verbose {
fmt.Println("Cleaning out the old rules")
}
// Lock the mutex so that it is not possible to write new rule while reaping old ones
tnsrMutex.Lock()
defer tnsrMutex.Unlock()
var i uint64
var err error
err = getSnortBlockACL(false)
if err != nil {
return errors.New("Unable to read snortblock rules from TNSR\n")
}
now := time.Now()
epoch := uint64(now.Unix())
var zapit bool
for _, v := range aclcache.AclRule {
// Leave the default permit rule alone
if v.Sequence > maxSeqNum {
continue
}
zapit = false
if !strings.Contains(v.AclRuleDescription, ",") {
log.Printf("INFO: Unable to read timestamp from description. Deleting rule")
zapit = true
} else {
s := strings.Split(v.AclRuleDescription, ",")
i, err = strconv.ParseUint(s[0], 10, 64)
if err != nil || i == 0 {
log.Printf("INFO: Unable to read timestamp from description. Deleting rule")
zapit = true
}
}
if zapit || (i+maxruleage) < epoch {
if verbose {
fmt.Printf("Deleting rule with sequence %v\n", v.Sequence)
}
log.Printf("INFO: Reaping rule with sequence %v\n", v.Sequence)
deleteRule(v.Sequence)
deletedSome = true
}
}
// Re-read the ACL so that the cache is up to date
if deletedSome {
err = getSnortBlockACL(true)
if err != nil {
return errors.New("Unable to re-read snortblock rues from TNSR\n")
}
}
return nil
}
// Set up the TLS configuration from the provided ca, certificate and key
func TLSSetup(ca string, certificate string, key string) error {
if len(ca) == 0 || len(certificate) == 0 || len(key) == 0 {
return nil
}
if verbose {
fmt.Println("Attempting TLS initialization")
}
// Load client cert
cert, err := tls.LoadX509KeyPair(certificate, key)
if err != nil {
return err
}
// Load CA cert
caCert, err := ioutil.ReadFile(ca)
if err != nil {
return err
}
caCertPool := x509.NewCertPool()
caCertPool.AppendCertsFromPEM(caCert)
// Setup HTTPS client
tlsConfig = &tls.Config{
Certificates: []tls.Certificate{cert},
RootCAs: caCertPool,
}
tlsConfig.BuildNameToCertificate()
useTLS = true
return nil
}
type IETF_RESTCONF_ERRORS struct {
Errors IETF_RESTCONF_ERROR `json:"ietf-restconf:errors"`
}
type IETF_RESTCONF_ERROR struct {
Error IETF_RPC_ERROR `json:"error"`
}
type IETF_RPC_ERROR struct {
RPCError TNSR_ERROR `json:"rpc-error"`
}
type TNSR_ERROR struct {
Type string `json:"error-type"`
Tag string `json:"error-tag"`
Severity string `json:"error-severity"`
Message string `json:"error-message"`
}
// extractErrorMsg() - take the JSON error response string received from a bad RESTCONF call and extract the error-message
func extractErrorMsg(response []byte) string {
var ietfErr IETF_RESTCONF_ERRORS
json.Unmarshal(response, &ietfErr)
return ietfErr.Errors.Error.RPCError.Message
}