-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathmap_sync.go
203 lines (179 loc) · 5.3 KB
/
map_sync.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
// Copyright 2019 HAProxy Technologies
//
// 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 configuration
import (
"fmt"
"math/rand"
"os"
"sort"
"sync"
"time"
client_native "github.com/haproxytech/client-native/v6"
"github.com/haproxytech/client-native/v6/models"
"github.com/haproxytech/dataplaneapi/log"
)
type MapSync struct {
mapQuitChan chan struct{}
mu sync.RWMutex
}
func NewMapSync() *MapSync {
return &MapSync{
mapQuitChan: make(chan struct{}),
}
}
// Stop stops maps syncing
func (ms *MapSync) Stop() {
ms.mapQuitChan <- struct{}{}
}
// SyncAll sync maps file entries with runtime maps entries for all configured files.
// Missing runtime entries are appended to the map file
func (ms *MapSync) SyncAll(client client_native.HAProxyClient) {
haproxyOptions := Get().HAProxy
d := time.Duration(haproxyOptions.UpdateMapFilesPeriod)
ticker := time.NewTicker(d * time.Second) //nolint:durationcheck
for {
select {
case <-ticker.C:
runtime, err := client.Runtime()
if err != nil {
log.Warning("show maps sync error: ", err.Error())
continue
}
maps, err := runtime.ShowMaps()
if err != nil {
log.Warning("show maps sync error: ", err.Error())
continue
}
for _, mp := range maps {
go func(mp *models.Map) {
_, err := ms.Sync(mp, client)
if err != nil {
log.Warning(err.Error())
}
}(mp)
}
case <-ms.mapQuitChan:
return
}
}
}
// Sync syncs one map file to runtime entries
func (ms *MapSync) Sync(mp *models.Map, client client_native.HAProxyClient) (bool, error) {
ms.mu.Lock()
defer ms.mu.Unlock()
rawFile, err := os.Open(mp.File)
if err != nil {
return false, fmt.Errorf("error reading map file: %s %s", mp.File, err.Error())
}
runtime, err := client.Runtime()
if err != nil {
return false, fmt.Errorf("getting runtime entries error: id: %s %s", mp.ID, err.Error())
}
fileEntries := runtime.ParseMapEntriesFromFile(rawFile, false)
sort.Slice(fileEntries, func(i, j int) bool { return fileEntries[i].Key < fileEntries[j].Key })
// runtime map entries
id := "#" + mp.ID
runtimeEntries, err := runtime.ShowMapEntries(id)
if err != nil {
return false, fmt.Errorf("getting runtime entries error: id: %s %s", id, err.Error())
}
sort.Slice(runtimeEntries, func(i, j int) bool { return runtimeEntries[i].Key < runtimeEntries[j].Key })
if len(fileEntries) != len(runtimeEntries) {
return dumpRuntimeEntries(mp.File, runtimeEntries)
}
if !equalSomeEntries(fileEntries, runtimeEntries) {
return dumpRuntimeEntries(mp.File, runtimeEntries)
}
if !equal(fileEntries, runtimeEntries) {
return dumpRuntimeEntries(mp.File, runtimeEntries)
}
return true, nil
}
// equalSomeEntries compares last few runtime entries with file entries
// if records differs, check is run against random entries
func equalSomeEntries(fEntries, rEntries models.MapEntries, index ...int) bool {
if len(fEntries) != len(rEntries) {
return false
}
var maximum int
switch l := len(rEntries); {
case l > 19:
for i := l - 20; i < l; i++ {
if rEntries[i].Key != fEntries[i].Key || rEntries[i].Value != fEntries[i].Value {
return false
}
}
maximum = l - 19
case l == 0:
return true
default:
maximum = l
}
maxRandom := 10
if maximum < 10 {
maxRandom = maximum
}
for range maxRandom {
// There's no need for strong number generation, here, just need for performance
r := rand.Intn(maximum)
if len(index) > 0 {
r = index[0]
}
if rEntries[r].Key != fEntries[r].Key || rEntries[r].Value != fEntries[r].Value {
return false
}
}
return true
}
// equal compares runtime and map entries
// Returns true if all entries are same, otherwise returns false
func equal(a, b models.MapEntries) bool {
if len(a) != len(b) {
return false
}
for i, v := range a {
// ID should not be compared, since it doesn't exists in file
if v.Key != b[i].Key || v.Value != b[i].Value {
return false
}
}
return true
}
// dumpRuntimeEntries dumps runtime entries into map file
// Returns true,nil if succeed, otherwise returns false,error
func dumpRuntimeEntries(file string, me models.MapEntries) (bool, error) {
f, err := os.OpenFile(file, os.O_APPEND|os.O_WRONLY|os.O_TRUNC, 0o600)
if err != nil {
return false, fmt.Errorf("error opening map file: %s %s", file, err.Error())
}
defer f.Close()
err = f.Truncate(0)
if err != nil {
return false, fmt.Errorf("error truncating map file: %s %s", file, err.Error())
}
_, err = f.Seek(0, 0)
if err != nil {
return false, fmt.Errorf("error setting file to offset: %s %s", file, err.Error())
}
for _, e := range me {
line := fmt.Sprintf("%s %s%s", e.Key, e.Value, "\n")
_, err = f.WriteString(line)
if err != nil {
return false, fmt.Errorf("error writing map file: %s %s", file, err.Error())
}
}
log.Infof("map file %s synced with runtime entries", file)
return true, nil
}