forked from ligato/vpp-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror_status.go
349 lines (325 loc) · 12.1 KB
/
error_status.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
// Copyright (c) 2017 Cisco and/or its affiliates.
//
// 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 vpp
import (
"strings"
"time"
"github.com/ligato/cn-infra/datasync"
"github.com/ligato/vpp-agent/plugins/vpp/model/interfaces"
"github.com/ligato/vpp-agent/plugins/vpp/model/l2"
)
// ErrCtx is an error context struct which stores an event change with object identifier (name, etc.) and returns an error (can be nil).
type ErrCtx struct {
change datasync.ChangeEvent
errInfo error
}
// Maximum count of entries which can be stored in an error log. If this number
// is exceeded, the oldest log entry will be removed.
const maxErrCount = 10
// Wait on ErrCtx object which is then used to handle the error log. Two cases are treated:
// 1. If there is any error present, save it together with time stamp and change type under particular key.
// 2. If error == nil and change type is 'Delete', it means some data were successfully removed and the whole error log
// related to the data can be removed as well.
func (plugin *Plugin) changePropagateError() {
for {
select {
case errorState := <-plugin.errorChannel:
change := errorState.change
if change == nil {
continue
}
errInfo := errorState.errInfo
key := change.GetKey()
changeType := change.GetChangeType()
if errInfo == nil && change.GetChangeType() == datasync.Delete {
// Data were successfully removed so delete all error entries related to the data (if exists).
plugin.removeErrorLog(key)
} else if errInfo != nil {
// There is an error to store.
plugin.processError(errInfo, key, changeType, change)
}
}
}
}
// Process provides error data and adds a new entry.
func (plugin *Plugin) processError(errInfo error, key string, changeType datasync.Op, change datasync.ChangeEvent) {
// Interfaces
if strings.HasPrefix(key, interfaces.Prefix) {
var err error
var iface, prevIface interfaces.Interfaces_Interface
if err := change.GetValue(&iface); err != nil {
plugin.Log.Errorf("Failed to propagate interface error, cause: %v", err)
return
}
var prevValExists bool
if prevValExists, err = change.GetPrevValue(&prevIface); err != nil {
plugin.Log.Errorf("Failed to propagate interface error, cause: %v", err)
return
}
var ifaceName string
if iface.Name != "" {
ifaceName = iface.Name
} else if prevValExists && prevIface.Name != "" {
ifaceName = prevIface.Name
} else {
plugin.Log.Errorf("Unable to log error for key %v: cannot obtain interface name to build an interface err key", key)
return
}
ifaceErrKey := interfaces.InterfaceErrorKey(ifaceName)
ifaceErrList := plugin.composeInterfaceErrors(ifaceName, changeType, errInfo)
plugin.Log.Infof("Logging error for interface %v", ifaceName)
err = plugin.addErrorLogEntry(ifaceErrKey, ifaceErrList)
if err != nil {
plugin.Log.Errorf("Failed to propagate interface error, cause: %v", err)
}
// Bridge domains
} else if strings.HasPrefix(key, l2.BdPrefix) {
var err error
var bd, prevBd l2.BridgeDomains_BridgeDomain
if err := change.GetValue(&bd); err != nil {
plugin.Log.Errorf("Failed to propagate bridge domain error, cause: %v", err)
return
}
var prevValExists bool
if prevValExists, err = change.GetPrevValue(&prevBd); err != nil {
plugin.Log.Errorf("Failed to propagate bridgeDomain error, cause: %v", err)
return
}
var bdName string
if bd.Name != "" {
bdName = bd.Name
} else if prevValExists && prevBd.Name != "" {
bdName = prevBd.Name
} else {
plugin.Log.Errorf("Unable to log error for key %v: cannot obtain bd name to build a bd err key", key)
return
}
bdErrKey := l2.BridgeDomainErrorKey(bdName)
bdErrList := plugin.composeBridgeDomainErrors(bdName, changeType, errInfo)
plugin.Log.Infof("Logging error for bridge domain %v", bdName)
err = plugin.addErrorLogEntry(bdErrKey, bdErrList)
if err != nil {
plugin.Log.Errorf("Failed to propagate bridge domain error, cause: %v", err)
}
}
}
// Create a list of errors for the provided interface and register it. If the interface
// already has some errors logged, find it and add a new error log to the list.
func (plugin *Plugin) composeInterfaceErrors(ifName string, change datasync.Op, errs ...error) *interfaces.InterfaceErrors_Interface {
// Read registered data.
_, data, exists := plugin.errorIndexes.LookupIdx(ifName)
// Compose new data.
var interfaceErrors []*interfaces.InterfaceErrors_Interface_ErrorData
for _, err := range errs {
if err == nil {
continue
}
interfaceError := &interfaces.InterfaceErrors_Interface_ErrorData{
ChangeType: string(change),
ErrorMessage: err.Error(),
LastChange: time.Now().Unix(),
}
interfaceErrors = append(interfaceErrors, interfaceError)
}
if exists {
if loggedDataSet, ok := data.([]*interfaces.InterfaceErrors_Interface_ErrorData); ok {
for _, loggedData := range loggedDataSet {
interfaceErrors = append(interfaceErrors, loggedData)
}
}
}
// Register new data.
plugin.errorIndexes.RegisterName(ifName, plugin.errorIdxSeq, interfaceErrors)
plugin.errorIdxSeq++
return &interfaces.InterfaceErrors_Interface{
InterfaceName: ifName,
ErrorData: interfaceErrors,
}
}
// Create a list of errors for the provided bridge domain and register it. If the bridge domain
// already has any error logged, find it and add a new error log to the list.
func (plugin *Plugin) composeBridgeDomainErrors(bdName string, change datasync.Op, errs ...error) *l2.BridgeDomainErrors_BridgeDomain {
// Read registered data
_, data, exists := plugin.errorIndexes.LookupIdx(bdName)
// Compose new data.
var bridgeDomainErrors []*l2.BridgeDomainErrors_BridgeDomain_ErrorData
for _, err := range errs {
if err == nil {
continue
}
bridgeDomainError := &l2.BridgeDomainErrors_BridgeDomain_ErrorData{
ChangeType: string(change),
ErrorMessage: err.Error(),
LastChange: time.Now().Unix(),
}
bridgeDomainErrors = append(bridgeDomainErrors, bridgeDomainError)
}
if exists {
if loggedDataSet, ok := data.([]*l2.BridgeDomainErrors_BridgeDomain_ErrorData); ok {
for _, loggedData := range loggedDataSet {
bridgeDomainErrors = append(bridgeDomainErrors, loggedData)
}
}
}
// Register new data.
plugin.errorIndexes.RegisterName(bdName, plugin.errorIdxSeq, bridgeDomainErrors)
plugin.errorIdxSeq++
return &l2.BridgeDomainErrors_BridgeDomain{
BdName: bdName,
ErrorData: bridgeDomainErrors,
}
}
// Generic method which can be used to put an error object under provided key to the etcd. If there are more items stored
// than the defined maximal count, the first entry from the mapping is removed.
func (plugin *Plugin) addErrorLogEntry(key string, errors interface{}) error {
totalErrorCount, firstActiveIndex := plugin.calculateErrorMappingEntries()
name, oldErrors, found := plugin.errorIndexes.LookupName(firstActiveIndex)
if totalErrorCount > maxErrCount {
// Remove oldest entry
if !found {
plugin.Log.Infof("There is no error entry with index %v", firstActiveIndex)
} else {
var oldEntryKey string
if _, ok := oldErrors.([]*interfaces.InterfaceErrors_Interface_ErrorData); ok {
oldEntryKey = interfaces.InterfaceErrorKey(name)
} else if _, ok := oldErrors.([]*l2.BridgeDomainErrors_BridgeDomain_ErrorData); ok {
oldEntryKey = l2.BridgeDomainErrorKey(name)
} else {
plugin.Log.Warnf("Unknown type od data: %v", errors)
}
plugin.Log.Debugf("Removing error log entry from history: %v, %v", name, oldEntryKey)
plugin.removeOldestErrorLogEntry(oldEntryKey)
}
}
// Get errors type.
if data, ok := errors.(*interfaces.InterfaceErrors_Interface); ok {
err := plugin.Publish.Put(key, data)
if err != nil {
return err
}
} else if data, ok := errors.(*l2.BridgeDomainErrors_BridgeDomain); ok {
err := plugin.Publish.Put(key, data)
if err != nil {
return err
}
} else {
plugin.Log.Warnf("Unknown type od data: %v", errors)
}
return nil
}
func (plugin *Plugin) removeErrorLog(key string) {
dividedKey := strings.Split(key, "/")
// Last part of the key is a name.
name := dividedKey[len(dividedKey)-1]
// The rest is a prefix.
prefix := strings.Replace(key, name, "", 1)
if plugin.Publish == nil {
// If there is no publish destination set, there is nothing to be deleted.
return
}
if prefix == interfaces.Prefix {
key := interfaces.InterfaceErrorKey(name)
plugin.Publish.Put(key, nil)
plugin.Log.Infof("Error status log for interface %v cleared", name)
} else if prefix == l2.BdPrefix {
key := l2.BridgeDomainErrorKey(name)
plugin.Publish.Put(key, nil)
plugin.Log.Infof("Error status log for bridge domain %v cleared", name)
} else {
plugin.Log.Infof("Error status log: unknown type of prefix: %v", prefix)
}
}
// Generic method which can be used to remove the oldest error data under provided key.
func (plugin *Plugin) removeOldestErrorLogEntry(key string) {
plugin.Log.Warnf("Key: %v", key)
var name string
var metaData interface{}
var exists bool
if strings.HasPrefix(key, interfaces.ErrorPrefix) {
name = strings.Replace(key, interfaces.ErrorPrefix, "", 1)
_, metaData, exists = plugin.errorIndexes.LookupIdx(name)
} else if strings.HasPrefix(key, l2.BdErrPrefix) {
name = strings.Replace(key, l2.BdErrPrefix, "", 1)
_, metaData, exists = plugin.errorIndexes.LookupIdx(name)
}
if !exists {
plugin.Log.Debugf("There is no error log related to the %v", name)
return
}
if metaData == nil {
plugin.Log.Infof("Error-Idx-Map entry %v: missing metaData", name)
return
}
plugin.Log.Warnf("Name: %v", name)
switch errData := metaData.(type) {
// Interfaces
case []*interfaces.InterfaceErrors_Interface_ErrorData:
key := interfaces.InterfaceErrorKey(name)
// If there is more than one error under the interface key, remove the oldest one.
if len(errData) > 1 {
errData = append(errData[:0], errData[1:]...)
plugin.Log.Infof("Error log for interface %v: oldest entry removed", name)
plugin.Publish.Put(key, &interfaces.InterfaceErrors_Interface{
InterfaceName: name,
ErrorData: errData,
})
plugin.errorIndexes.RegisterName(name, plugin.errorIdxSeq, errData)
plugin.errorIdxSeq++
} else {
plugin.Log.Infof("Error log for interface %v cleared", name)
plugin.Publish.Put(key, nil)
plugin.errorIndexes.UnregisterName(name)
}
// Bridge domains
case []*l2.BridgeDomainErrors_BridgeDomain_ErrorData:
key := l2.BridgeDomainErrorKey(name)
// If there is more than one error under the bridge domain key, remove the oldest one.
if len(errData) > 1 {
errData = append(errData[:0], errData[1:]...)
plugin.Log.Infof("Error log for bridge domain %v: oldest entry removed", name)
plugin.Publish.Put(key, &l2.BridgeDomainErrors_BridgeDomain{
BdName: name,
ErrorData: errData,
})
plugin.errorIndexes.RegisterName(name, plugin.errorIdxSeq, errData)
plugin.errorIdxSeq++
} else {
plugin.Log.Infof("Error log for bridge domain %v cleared", name)
plugin.Publish.Put(key, nil)
plugin.errorIndexes.UnregisterName(name)
}
}
}
// Auxiliary method returns the count of all error entries under every
// interface/bridge domain in the error mapping and an index of the first element.
func (plugin *Plugin) calculateErrorMappingEntries() (uint32, uint32) {
var index uint32
var count int
var firstIndex uint32
for index = 1; index <= plugin.errorIdxSeq; index++ {
_, meta, exists := plugin.errorIndexes.LookupName(index)
if exists {
switch errDataList := meta.(type) {
case []*interfaces.InterfaceErrors_Interface_ErrorData:
count = count + len(errDataList)
case []*l2.BridgeDomainErrors_BridgeDomain_ErrorData:
count = count + len(errDataList)
}
if firstIndex == 0 {
firstIndex = index
}
}
}
return uint32(count), firstIndex
}