-
Notifications
You must be signed in to change notification settings - Fork 59
/
nat.go
244 lines (210 loc) · 5.86 KB
/
nat.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
/**
* Copyright (c) 2017 eBay Inc.
*
* 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 goovn
import (
"github.com/ebay/libovsdb"
)
// NAT ovnnb item
type NAT struct {
UUID string
Type string
ExternalIP string
ExternalMAC string
LogicalIP string
LogicalPort string
ExternalID map[interface{}]interface{}
}
func (odbi *ovndb) rowToNat(uuid string) *NAT {
cacheNAT, ok := odbi.cache[TableNAT][uuid]
if !ok {
return nil
}
nat := &NAT{
UUID: uuid,
Type: cacheNAT.Fields["type"].(string),
ExternalIP: cacheNAT.Fields["external_ip"].(string),
LogicalIP: cacheNAT.Fields["logical_ip"].(string),
ExternalID: cacheNAT.Fields["external_ids"].(libovsdb.OvsMap).GoMap,
}
if mac, ok := cacheNAT.Fields["external_mac"]; ok {
switch mac.(type) {
case libovsdb.UUID:
nat.ExternalMAC = mac.(libovsdb.UUID).GoUUID
case string:
nat.ExternalMAC = mac.(string)
}
}
if lip, ok := cacheNAT.Fields["logical_port"]; ok {
switch lip.(type) {
case libovsdb.UUID:
nat.LogicalIP = lip.(libovsdb.UUID).GoUUID
case string:
nat.LogicalIP = lip.(string)
}
}
return nat
}
func (odbi *ovndb) lrNatAddImp(lr string, ntype string, externalIp string, logicalIp string, external_ids map[string]string, logicalPortAndExternalMac ...string) (*OvnCommand, error) {
nameUUID, err := newRowUUID()
if err != nil {
return nil, err
}
row := make(OVNRow)
row["external_ip"] = externalIp
row["logical_ip"] = logicalIp
switch ntype {
case "snat":
row["type"] = ntype
case "dnat":
row["type"] = ntype
case "dnat_and_snat":
row["type"] = ntype
default:
return nil, ErrorOption
}
if uuid := odbi.getRowUUID(TableNAT, row); len(uuid) > 0 {
return nil, ErrorExist
}
// The logical_port and external_mac are only accepted
// when router is a distributed router (rather than a gateway
// router) and type is dnat_and_snat.
if row["type"] == "dnat_and_snat" {
switch len(logicalPortAndExternalMac) {
case 0:
case 2:
row["logical_port"] = logicalPortAndExternalMac[0]
row["external_mac"] = logicalPortAndExternalMac[1]
default:
return nil, ErrorOption
}
}
if external_ids != nil {
oMap, err := libovsdb.NewOvsMap(external_ids)
if err != nil {
return nil, err
}
row["external_ids"] = oMap
}
insertOp := libovsdb.Operation{
Op: opInsert,
Table: TableNAT,
Row: row,
UUIDName: nameUUID,
}
mutateUUID := []libovsdb.UUID{stringToGoUUID(nameUUID)}
mutateSet, err := libovsdb.NewOvsSet(mutateUUID)
if err != nil {
return nil, err
}
mutation := libovsdb.NewMutation("nat", opInsert, mutateSet)
condition := libovsdb.NewCondition("name", "==", lr)
mutateOp := libovsdb.Operation{
Op: opMutate,
Table: TableLogicalRouter,
Mutations: []interface{}{mutation},
Where: []interface{}{condition},
}
operations := []libovsdb.Operation{insertOp, mutateOp}
return &OvnCommand{operations, odbi, make([][]map[string]interface{}, len(operations))}, nil
}
// Deletes NATs from router. If only router is supplied, all the
// NATs from the logical router are deleted. If type is also speci‐
// fied, then all the NATs that match the type will be deleted from
// the logical router. If all the fields are given, then a single
// NAT rule that matches all the fields will be deleted. When type
// is snat, the ip should be logical_ip. When type is dnat or
// dnat_and_snat, the ip shoud be external_ip.
func (odbi *ovndb) lrNatDelImp(lr string, ntype string, ip ...string) (*OvnCommand, error) {
var operations []libovsdb.Operation
row := make(OVNRow)
switch ntype {
case "snat":
row["type"] = ntype
if len(ip) != 0 {
row["logical_ip"] = ip[0]
}
case "dnat":
row["type"] = ntype
if len(ip) != 0 {
row["external_ip"] = ip[0]
}
case "dnat_and_snat":
row["type"] = ntype
if len(ip) != 0 {
row["external_ip"] = ip[0]
}
case "":
default:
return nil, ErrorOption
}
lrNatUUID := odbi.getRowUUIDs(TableNAT, row)
if len(lrNatUUID) == 0 {
return nil, ErrorNotFound
}
LRs, err := odbi.LRGet(lr)
if err != nil {
return nil, err
}
if len(LRs) == 0 {
return nil, ErrorNotFound
}
natlist := make([]string, len(LRs[0].NAT))
for i, v := range LRs[0].NAT {
natlist[i] = v
}
var mutateUUID []libovsdb.UUID
for _, v := range natlist {
for s, lv := range lrNatUUID {
switch lv {
case v:
mutateUUID = append(mutateUUID, libovsdb.UUID{GoUUID: lrNatUUID[s]})
case "":
mutateUUID = append(mutateUUID, libovsdb.UUID{GoUUID: v})
}
}
}
mutateSet, err := libovsdb.NewOvsSet(mutateUUID)
if err != nil {
return nil, err
}
lrNatUUID = odbi.getRowUUIDs(TableNAT, row)
if len(lrNatUUID) == 0 {
return nil, ErrorNotFound
}
row = make(OVNRow)
row["name"] = lr
mutation := libovsdb.NewMutation("nat", opDelete, mutateSet)
mucondition := libovsdb.NewCondition("name", "==", lr)
mutateOp := libovsdb.Operation{
Op: opMutate,
Table: TableLogicalRouter,
Mutations: []interface{}{mutation},
Where: []interface{}{mucondition},
}
operations = append(operations, mutateOp)
return &OvnCommand{operations, odbi, make([][]map[string]interface{}, len(operations))}, nil
}
func (odbi *ovndb) lrNatListImp(lr string) ([]*NAT, error) {
LRs, err := odbi.LRGet(lr)
if err != nil {
return nil, err
}
natlist := make([]*NAT, len(LRs[0].NAT))
for i, v := range LRs[0].NAT {
natlist[i] = odbi.rowToNat(v)
}
return natlist, nil
}