-
Notifications
You must be signed in to change notification settings - Fork 180
/
Copy pathovsdriver.go
576 lines (500 loc) · 14.4 KB
/
ovsdriver.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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
/***
Copyright 2014 Cisco Systems Inc. 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 drivers
import (
"fmt"
"log"
"reflect"
"strconv"
"strings"
"github.com/contiv/libovsdb"
"github.com/contiv/netplugin/core"
)
// implements the NetworkDriver and EndpointDriver interface for an vlan based
// openvSwitch deployment
type oper int
const (
DATABASE = "Open_vSwitch"
ROOT_TABLE = "Open_vSwitch"
BRIDGE_TABLE = "Bridge"
PORT_TABLE = "Port"
INTERFACE_TABLE = "Interface"
DEFAULT_BRIDGE_NAME = "contivBridge"
PORT_NAME_FMT = "port%d"
VXLAN_IFNAME_FMT = "vxif%s%s"
CREATE_BRIDGE oper = iota
DELETE_BRIDGE
CREATE_PORT
DELETE_PORT
GET_PORT_NAME = true
GET_INTF_NAME = false
)
type OvsDriverConfig struct {
Ovs struct {
DbIp string
DbPort int
}
}
// OvsDriver implements the Layer 2 Network and Endpoint Driver interfaces
// specific to vlan based open-vswitch. It also implements the
// libovsdb.Notifier interface to keep cache of ovs table state.
type OvsDriver struct {
ovs *libovsdb.OvsdbClient
cache map[string]map[libovsdb.UUID]libovsdb.Row
stateDriver core.StateDriver
currPortNum int // used to allocate port names. XXX: should it be user controlled?
}
func (d *OvsDriver) getRootUuid() libovsdb.UUID {
for uuid, _ := range d.cache[ROOT_TABLE] {
return uuid
}
return libovsdb.UUID{}
}
func (d *OvsDriver) populateCache(updates libovsdb.TableUpdates) {
for table, tableUpdate := range updates.Updates {
if _, ok := d.cache[table]; !ok {
d.cache[table] = make(map[libovsdb.UUID]libovsdb.Row)
}
for uuid, row := range tableUpdate.Rows {
empty := libovsdb.Row{}
if !reflect.DeepEqual(row.New, empty) {
d.cache[table][libovsdb.UUID{uuid}] = row.New
} else {
delete(d.cache[table], libovsdb.UUID{uuid})
}
}
}
}
func (d *OvsDriver) Update(context interface{}, tableUpdates libovsdb.TableUpdates) {
d.populateCache(tableUpdates)
}
func (d *OvsDriver) Locked([]interface{}) {
}
func (d *OvsDriver) Stolen([]interface{}) {
}
func (d *OvsDriver) Echo([]interface{}) {
}
func (d *OvsDriver) performOvsdbOps(ops []libovsdb.Operation) error {
reply, _ := d.ovs.Transact(DATABASE, ops...)
if len(reply) < len(ops) {
return &core.Error{Desc: fmt.Sprintf("Unexpected number of replies. Expected: %d, Recvd: %d",
len(ops), len(reply))}
}
ok := true
errors := []string{}
for i, o := range reply {
if o.Error != "" && i < len(ops) {
errors = append(errors, fmt.Sprintf("%s(%s)", o.Error, o.Details))
ok = false
} else if o.Error != "" {
errors = append(errors, fmt.Sprintf("%s(%s)", o.Error, o.Details))
ok = false
}
}
if ok {
return nil
} else {
return &core.Error{Desc: fmt.Sprintf("ovs operation failed. Error(s): %v",
errors)}
}
}
func (d *OvsDriver) createDeleteBridge(bridgeName string, op oper) error {
namedUuidStr := "netplugin"
brUuid := []libovsdb.UUID{libovsdb.UUID{namedUuidStr}}
opStr := "insert"
if op != CREATE_BRIDGE {
opStr = "delete"
}
// simple insert/delete operation
brOp := libovsdb.Operation{}
if op == CREATE_BRIDGE {
bridge := make(map[string]interface{})
bridge["name"] = bridgeName
brOp = libovsdb.Operation{
Op: opStr,
Table: BRIDGE_TABLE,
Row: bridge,
UUIDName: namedUuidStr,
}
} else {
condition := libovsdb.NewCondition("name", "==", bridgeName)
brOp = libovsdb.Operation{
Op: opStr,
Table: BRIDGE_TABLE,
Where: []interface{}{condition},
}
// also fetch the br-uuid from cache
for uuid, row := range d.cache[BRIDGE_TABLE] {
name := row.Fields["name"].(string)
if name == bridgeName {
brUuid = []libovsdb.UUID{uuid}
break
}
}
}
// Inserting/Deleting a Bridge row in Bridge table requires mutating
// the open_vswitch table.
mutateUuid := brUuid
mutateSet, _ := libovsdb.NewOvsSet(mutateUuid)
mutation := libovsdb.NewMutation("bridges", opStr, mutateSet)
condition := libovsdb.NewCondition("_uuid", "==", d.getRootUuid())
// simple mutate operation
mutateOp := libovsdb.Operation{
Op: "mutate",
Table: ROOT_TABLE,
Mutations: []interface{}{mutation},
Where: []interface{}{condition},
}
operations := []libovsdb.Operation{brOp, mutateOp}
return d.performOvsdbOps(operations)
}
func (d *OvsDriver) getPortName() string {
// XXX: revisit, the port name might need to come from user. Also revisit
// the algorithm to take care of port being deleted and reuse unused port
// numbers
d.currPortNum += 1
return fmt.Sprintf(PORT_NAME_FMT, d.currPortNum)
}
func (d *OvsDriver) getPortOrIntfNameFromId(id string, isPort bool) (string, error) {
table := PORT_TABLE
if !isPort {
table = INTERFACE_TABLE
}
for _, row := range d.cache[table] {
if extIds, ok := row.Fields["external_ids"]; ok {
extIdMap := extIds.(libovsdb.OvsMap).GoMap
if portId, ok := extIdMap["endpoint-id"]; ok && portId == id {
return row.Fields["name"].(string), nil
}
}
}
return "", &core.Error{Desc: fmt.Sprintf("Ovs port/intf not found for id: %s", id)}
}
func (d *OvsDriver) createDeletePort(portName, intfName, intfType, id string,
intfOptions map[string]interface{}, tag int, op oper) error {
// portName is assumed to be unique enough to become uuid
portUuidStr := portName
intfUuidStr := fmt.Sprintf("Intf%s", portName)
portUuid := []libovsdb.UUID{libovsdb.UUID{portUuidStr}}
intfUuid := []libovsdb.UUID{libovsdb.UUID{intfUuidStr}}
opStr := "insert"
if op != CREATE_PORT {
opStr = "delete"
}
var err error = nil
// insert/delete a row in Interface table
idMap := make(map[string]string)
intfOp := libovsdb.Operation{}
if op == CREATE_PORT {
intf := make(map[string]interface{})
intf["name"] = intfName
intf["type"] = intfType
idMap["endpoint-id"] = id
intf["external_ids"], err = libovsdb.NewOvsMap(idMap)
if err != nil {
return err
}
if intfOptions != nil {
intf["options"], err = libovsdb.NewOvsMap(intfOptions)
if err != nil {
log.Printf("error '%s' creating options from %v \n", err, intfOptions)
return err
}
}
intfOp = libovsdb.Operation{
Op: opStr,
Table: INTERFACE_TABLE,
Row: intf,
UUIDName: intfUuidStr,
}
} else {
condition := libovsdb.NewCondition("name", "==", intfName)
intfOp = libovsdb.Operation{
Op: opStr,
Table: INTERFACE_TABLE,
Where: []interface{}{condition},
}
// also fetch the intf-uuid from cache
for uuid, row := range d.cache[INTERFACE_TABLE] {
name := row.Fields["name"].(string)
if name == intfName {
intfUuid = []libovsdb.UUID{uuid}
break
}
}
}
// insert/delete a row in Port table
portOp := libovsdb.Operation{}
if op == CREATE_PORT {
port := make(map[string]interface{})
port["name"] = portName
if tag != 0 {
port["vlan_mode"] = "access"
port["tag"] = tag
} else {
port["vlan_mode"] = "trunk"
}
port["interfaces"], err = libovsdb.NewOvsSet(intfUuid)
if err != nil {
return err
}
port["external_ids"], err = libovsdb.NewOvsMap(idMap)
if err != nil {
return err
}
portOp = libovsdb.Operation{
Op: opStr,
Table: PORT_TABLE,
Row: port,
UUIDName: portUuidStr,
}
} else {
condition := libovsdb.NewCondition("name", "==", portName)
portOp = libovsdb.Operation{
Op: opStr,
Table: PORT_TABLE,
Where: []interface{}{condition},
}
// also fetch the port-uuid from cache
for uuid, row := range d.cache[PORT_TABLE] {
name := row.Fields["name"].(string)
if name == portName {
portUuid = []libovsdb.UUID{uuid}
break
}
}
}
// mutate the Ports column of the row in the Bridge table
mutateSet, _ := libovsdb.NewOvsSet(portUuid)
mutation := libovsdb.NewMutation("ports", opStr, mutateSet)
condition := libovsdb.NewCondition("name", "==", DEFAULT_BRIDGE_NAME)
mutateOp := libovsdb.Operation{
Op: "mutate",
Table: BRIDGE_TABLE,
Mutations: []interface{}{mutation},
Where: []interface{}{condition},
}
operations := []libovsdb.Operation{intfOp, portOp, mutateOp}
return d.performOvsdbOps(operations)
}
func vxlanIfName(netId, vtepIp string) string {
return fmt.Sprintf(VXLAN_IFNAME_FMT,
netId, strings.Replace(vtepIp, ".", "", -1))
}
func (d *OvsDriver) createVtep(epCfg *OvsCfgEndpointState) error {
cfgNw := OvsCfgNetworkState{StateDriver: d.stateDriver}
err := cfgNw.Read(epCfg.NetId)
if err != nil {
return err
}
intfOptions := make(map[string]interface{})
intfOptions["remote_ip"] = epCfg.VtepIp
intfOptions["key"] = strconv.Itoa(cfgNw.ExtPktTag)
intfName := vxlanIfName(epCfg.NetId, epCfg.VtepIp)
err = d.createDeletePort(intfName, intfName, "vxlan", cfgNw.Id,
intfOptions, cfgNw.PktTag, CREATE_PORT)
if err != nil {
log.Printf("error '%s' creating vxlan peer intfName %s, options %s, tag %d \n",
err, intfName, intfOptions, cfgNw.PktTag)
return err
}
return nil
}
func (d *OvsDriver) deleteVtep(epCfg *OvsCfgEndpointState) error {
cfgNw := OvsCfgNetworkState{StateDriver: d.stateDriver}
err := cfgNw.Read(epCfg.NetId)
if err != nil {
return err
}
intfName := vxlanIfName(epCfg.NetId, epCfg.VtepIp)
err = d.createDeletePort(intfName, intfName, "vxlan", cfgNw.Id,
nil, cfgNw.PktTag, DELETE_PORT)
if err != nil {
log.Printf("error '%s' deleting vxlan peer intfName %s, tag %d \n",
err, intfName, cfgNw.PktTag)
return err
}
return nil
}
func (d *OvsDriver) Init(config *core.Config, stateDriver core.StateDriver) error {
if config == nil || stateDriver == nil {
return &core.Error{Desc: fmt.Sprintf("Invalid arguments. cfg: %v, stateDriver: %v", config, stateDriver)}
}
cfg, ok := config.V.(*OvsDriverConfig)
if !ok {
return &core.Error{Desc: "Invalid type passed"}
}
ovs, err := libovsdb.Connect(cfg.Ovs.DbIp, cfg.Ovs.DbPort)
if err != nil {
return err
}
d.ovs = ovs
d.stateDriver = stateDriver
d.cache = make(map[string]map[libovsdb.UUID]libovsdb.Row)
d.ovs.Register(d)
initial, _ := d.ovs.MonitorAll(DATABASE, "")
d.populateCache(*initial)
// Create a bridge after registering for events as we depend on ovsdb cache.
// Since the same dirver is used as endpoint driver, only create the bridge
// if it's not already created
// XXX: revisit if the bridge-name needs to be configurable
brCreated := false
for _, row := range d.cache[BRIDGE_TABLE] {
if row.Fields["name"] == DEFAULT_BRIDGE_NAME {
brCreated = true
break
}
}
if !brCreated {
err = d.createDeleteBridge(DEFAULT_BRIDGE_NAME, CREATE_BRIDGE)
if err != nil {
return err
}
}
return nil
}
func (d *OvsDriver) Deinit() {
if d.ovs != nil {
d.createDeleteBridge(DEFAULT_BRIDGE_NAME, DELETE_BRIDGE)
(*d.ovs).Disconnect()
}
}
func (d *OvsDriver) CreateNetwork(id string) error {
cfgNw := OvsCfgNetworkState{StateDriver: d.stateDriver}
err := cfgNw.Read(id)
if err != nil {
log.Printf("Failed to read net %s \n", cfgNw.Id)
return err
}
log.Printf("create net %s \n", cfgNw.Id)
return nil
}
func (d *OvsDriver) DeleteNetwork(value string) error {
// no driver operation for network delete
var err error
cfgNw := OvsCfgNetworkState{}
err = cfgNw.Unmarshal(value)
if err != nil {
log.Printf("Failed to unmarshal network config, err '%s' \n", err)
return err
}
log.Printf("delete net %s \n", cfgNw.Id)
return nil
}
func (d *OvsDriver) CreateEndpoint(id string) error {
var err error
// add an internal ovs port with vlan-tag information from the state
portName := d.getPortName()
intfName := portName
intfType := "internal"
epCfg := OvsCfgEndpointState{StateDriver: d.stateDriver}
err = epCfg.Read(id)
if err != nil {
return err
}
if epCfg.VtepIp != "" {
err = d.createVtep(&epCfg)
if err != nil {
log.Printf("error '%s' creating vtep interface(s) for "+
"remote endpoint %s\n", err, epCfg.VtepIp)
}
return err
}
// use the user provided interface name. The primary usecase for such
// endpoints is for adding the host-interfaces to the ovs bridge. But other
// usecases might involve user created linux interface devices for
// containers like SRIOV, that need to be bridged using ovs
// Also, if the interface name is provided by user then we don't create
// ovs-internal interface
if epCfg.IntfName != "" {
intfName = epCfg.IntfName
intfType = ""
}
cfgNw := OvsCfgNetworkState{StateDriver: d.stateDriver}
err = cfgNw.Read(epCfg.NetId)
if err != nil {
return err
}
// TODO: some updates may mean implicit delete of the previous state
err = d.createDeletePort(portName, intfName, intfType, epCfg.Id,
nil, cfgNw.PktTag, CREATE_PORT)
if err != nil {
return err
}
defer func() {
if err != nil {
d.createDeletePort(portName, intfName, intfType, "", nil, 0, DELETE_PORT)
}
}()
operEp := OvsOperEndpointState{
StateDriver: d.stateDriver,
Id: id,
PortName: portName,
NetId: epCfg.NetId,
ContName: epCfg.ContName,
IpAddress: epCfg.IpAddress,
IntfName: intfName,
HomingHost: epCfg.HomingHost,
VtepIp: epCfg.VtepIp}
err = operEp.Write()
if err != nil {
return err
}
defer func() {
if err != nil {
operEp.Clear()
}
}()
return nil
}
func (d *OvsDriver) DeleteEndpoint(value string) (err error) {
epCfg := OvsCfgEndpointState{}
err = epCfg.Unmarshal(value)
if err != nil {
log.Printf("Failed to unmarshal epcfg, err '%s' \n", err)
return
}
if epCfg.VtepIp != "" {
err = d.deleteVtep(&epCfg)
if err != nil {
log.Printf("error '%s' creating vtep interface(s) for "+
"remote endpoint %s\n", err, epCfg.VtepIp)
}
return
}
epOper := OvsOperEndpointState{StateDriver: d.stateDriver}
err = epOper.Read(epCfg.Id)
if err != nil {
return err
}
defer func() {
epOper.Clear()
}()
portName, err := d.getPortOrIntfNameFromId(epCfg.Id, GET_PORT_NAME)
if err != nil {
return err
}
intfName := ""
intfName, err = d.getPortOrIntfNameFromId(epCfg.Id, GET_INTF_NAME)
if err != nil {
return err
}
err = d.createDeletePort(portName, intfName, "", "", nil, 0, DELETE_PORT)
if err != nil {
return err
}
return nil
}
func (d *OvsDriver) MakeEndpointAddress() (*core.Address, error) {
return nil, &core.Error{Desc: "Not supported"}
}