-
Notifications
You must be signed in to change notification settings - Fork 34
/
vlan.rb
433 lines (339 loc) · 13.7 KB
/
vlan.rb
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
class Junos::Ez::L2ports::Provider::VLAN < Junos::Ez::L2ports::Provider
### ---------------------------------------------------------------
### XML top placement
### ---------------------------------------------------------------
def xml_at_top
Nokogiri::XML::Builder.new {|xml| xml.configuration {
xml.interfaces {
return xml_at_element_top( xml, @name )
}
}}
end
# set the edit anchor inside the ethernet-switching stanza
# we will need to 'up-out' when making changes to the
# unit information, like description
def xml_at_element_top( xml, name )
xml.interface {
xml.name name
xml.unit {
xml.name '0'
return xml
}
}
end
### ---------------------------------------------------------------
### XML property readers
### ---------------------------------------------------------------
def xml_get_has_xml( xml )
# second unit contains the family/ethernet-switching stanza
got = xml.xpath('//unit')[0]
# if this resource doesn't exist we need to default some
# values into has/should variables
unless got
@has[:vlan_tagging] = false
@should = @has.clone
end
got
end
def xml_read_parser( as_xml, as_hash )
set_has_status( as_xml, as_hash )
xml_when_item(as_xml.xpath('description')){|i| as_hash[:description] = i.text}
f_eth = as_xml.xpath('family/ethernet-switching')
as_hash[:vlan_tagging] = f_eth.xpath('interface-mode').text.chomp == 'trunk'
# obtain a copy of the running state, this is needed in case the config
# is located under the [edit vlans] stanza vs. [edit interfaces]
ifs_name = @name || as_xml.xpath('ancestor::interface/name').text.strip
eth_port_vlans = _get_eth_port_vlans_h( ifs_name )
@under_vlans = []
# --- access port
if as_hash[:vlan_tagging] == false
xml_when_item(f_eth.xpath('vlan/members')){ |i| as_hash[:untagged_vlan] = i.text.chomp }
unless as_hash[:untagged_vlan]
as_hash[:untagged_vlan] = eth_port_vlans[:untagged]
@under_vlans << eth_port_vlans[:untagged]
end
return
end
# --- trunk port
xml_when_item(f_eth.xpath('native-vlan-id')){|i| as_hash[:untagged_vlan] = i.text.chomp }
as_hash[:untagged_vlan] ||= eth_port_vlans[:untagged]
as_hash[:tagged_vlans] = f_eth.xpath('vlan/members').collect { |v| v.text.chomp }.to_set
(eth_port_vlans[:tagged] - as_hash[:tagged_vlans]).each do |vlan|
as_hash[:tagged_vlans] << vlan
@under_vlans << vlan
end
end
### ---------------------------------------------------------------
### XML on_create, on_delete handlers
### ---------------------------------------------------------------
## overload the xml_on_delete method since we may need
## to do some cleanup work in the [edit vlans] stanza
def xml_on_delete( xml )
return unless @under_vlans
return if @under_vlans.empty?
_xml_rm_under_vlans( xml, @under_vlans )
end
### ---------------------------------------------------------------
### XML property writers
### ---------------------------------------------------------------
def xml_at_here( xml )
xml.family {
xml.send(:'ethernet-switching') {
return xml
}
}
end
def xml_build_change( nop = nil )
@under_vlans ||= [] # handles case for create'd port
if mode_changed?
@should[:untagged_vlan] ||= @has[:untagged_vlan]
end
super xml_at_here( xml_at_top )
end
## ----------------------------------------------------------------
## :description
## ----------------------------------------------------------------
## overload default method since we need to "up-out" of the
## ethernet-switching stanza
def xml_change_description( xml )
unit = xml.parent.xpath('ancestor::unit')[0]
Nokogiri::XML::Builder.with( unit ){ |x|
xml_set_or_delete( x, 'description', @should[:description] )
}
end
## ----------------------------------------------------------------
## :vlan_tagging
## ----------------------------------------------------------------
def xml_change_vlan_tagging( xml )
interface_mode = should_trunk? ? 'trunk' : 'access'
xml.send(:'interface-mode', interface_mode )
# when the vlan_tagging value changes then this method
# will trigger updates to the untagged_vlan and tagged_vlans
# resource values as well.
# !!! DO NOT SWAP THIS ORDER untagged processing *MUST* BE FIRST!
upd_untagged_vlan( xml )
upd_tagged_vlans( xml )
return true
end
## ----------------------------------------------------------------
## :tagged_vlans
## ----------------------------------------------------------------
def xml_change_tagged_vlans( xml )
return false if mode_changed?
upd_tagged_vlans( xml )
end
def upd_tagged_vlans( xml )
return false unless should_trunk?
@should[:tagged_vlans] = @should[:tagged_vlans].to_set if @should[:tagged_vlans].kind_of? Array
@has[:tagged_vlans] = @has[:tagged_vlans].to_set if @has[:tagged_vlans].kind_of? Array
v_should = @should[:tagged_vlans] || Set.new
v_has = @has[:tagged_vlans] || Set.new
del = v_has - v_should
add = v_should - v_has
del_under_vlans = del & @under_vlans
unless del_under_vlans.empty?
del = del ^ @under_vlans
_xml_rm_under_vlans( xml, del_under_vlans )
@under_vlans = []
end
if add or del
xml.vlan {
del.each { |v| xml.members v, Netconf::JunosConfig::DELETE }
add.each { |v| xml.members v }
}
end
return true
end
## ----------------------------------------------------------------
## :untagged_vlan
## ----------------------------------------------------------------
def xml_change_untagged_vlan( xml )
return false if mode_changed?
upd_untagged_vlan( xml )
end
def upd_untagged_vlan( xml )
self.class.change_untagged_vlan( self, xml )
end
end
##### ---------------------------------------------------------------
##### Class methods for handling state-transitions between
##### configurations (tagged/untagged)
##### ---------------------------------------------------------------
class Junos::Ez::L2ports::Provider::VLAN
# creating some class definitions ...
# this is a bit complicated because we need to handle port-mode
# change transitions; basically dealing with the fact that
# trunk ports use 'native-vlan-id' and access ports have a
# vlan member definition; i.e. they don't use native-vlan-id, ugh.
# Rather than doing all this logic as if/then/else statements,
# I've opted to using a proc jump-table technique. Lessons
# learned from lots of embedded systems programming :-)
def self.init_jump_table
# auto-hash table, majik!
hash = Hash.new(&(p=lambda{|h,k| h[k] = Hash.new(&p)}))
# ------------------------------------------------------------------
# - jump table for handling various untagged vlan change use-cases
# ------------------------------------------------------------------
# There are three criteria for selection:
# | is_trunk | will_trunk | no_untg |
# ------------------------------------------------------------------
# - will not have untagged vlan
hash[false][false][true] = self.method(:ac_ac_nountg)
hash[false][true][true] = self.method(:ac_tr_nountg)
hash[true][false][true] = self.method(:tr_ac_nountg)
hash[true][true][true] = self.method(:tr_tr_nountg)
# - will have untagged vlan
hash[false][false][false] = self.method(:ac_ac_untg)
hash[false][true][false] = self.method(:ac_tr_untg)
hash[true][false][false] = self.method(:tr_ac_untg)
hash[true][true][false] = self.method(:tr_tr_untg)
hash
end
### invoke the correct method from the jump table
### based on the three criteria to select the action
def self.change_untagged_vlan( this, xml )
@@ez_l2_jmptbl ||= init_jump_table
proc = @@ez_l2_jmptbl[this.is_trunk?][this.should_trunk?][this.should[:untagged_vlan].nil?]
proc.call( this, xml )
end
### -------------------------------------------------------------
### The following are all the change transition functions for
### each of the use-cases
### -------------------------------------------------------------
def self.ac_ac_nountg( this, xml )
this._xml_rm_ac_untagged_vlan( xml )
end
def self.ac_tr_nountg( this, xml )
unless (untg_vlan = this.has[:untagged_vlan]).nil?
this._xml_rm_ac_untagged_vlan( xml )
end
end
def self.tr_ac_nountg( this, xml )
xml.send :'native-vlan-id', Netconf::JunosConfig::DELETE
this._xml_rm_these_vlans( xml, this.has[:tagged_vlans ] ) if this.has[:tagged_vlans]
end
def self.tr_tr_nountg( this, xml )
xml.send :'native-vlan-id', Netconf::JunosConfig::DELETE
end
## ----------------------------------------------------------------
## transition where port WILL-HAVE untagged-vlan
## ----------------------------------------------------------------
def self.ac_ac_untg( this, xml )
this._xml_rm_ac_untagged_vlan( xml )
xml.vlan {
xml.members this.should[:untagged_vlan]
}
end
def self.ac_tr_untg( this, xml )
# move untagged vlan to native-vlan-id ...
was_untg_vlan = this.has[:untagged_vlan]
xml.send :'native-vlan-id', this.should[:untagged_vlan]
this._xml_rm_ac_untagged_vlan( xml ) if was_untg_vlan
end
def self.tr_ac_untg( this, xml )
xml.send :'native-vlan-id', Netconf::JunosConfig::DELETE
this._xml_rm_these_vlans( xml, this.has[:tagged_vlans ] ) if this.has[:tagged_vlans]
xml.vlan { xml.members this.should[:untagged_vlan] }
end
def self.tr_tr_untg( this, xml )
xml.send :'native-vlan-id', this.should[:untagged_vlan]
end
end
##### ---------------------------------------------------------------
##### Provider collection methods
##### ---------------------------------------------------------------
class Junos::Ez::L2ports::Provider::VLAN
def build_list
begin
got = @ndev.rpc.get_ethernet_switching_interface_information(:summary=>true)
rescue => e
# in this case, no ethernet-switching is enabled so return empty list
return []
end
got.xpath('interface/interface-name').collect{ |ifn| ifn.text.split('.')[0] }
end
def build_catalog
@catalog = {}
return @catalog if list!.empty?
list.each do |ifs_name|
@ndev.rpc.get_configuration{ |xml|
xml.interfaces {
xml.interface {
xml.name ifs_name
xml.unit { xml.name '0' }
}
}
}.xpath('interfaces/interface').each do |ifs_xml|
@catalog[ifs_name] = {}
unit = ifs_xml.xpath('unit')[0]
xml_read_parser( unit, @catalog[ifs_name] )
end
end
@catalog
end
end
##### ---------------------------------------------------------------
##### !!!!! PRIVATE METHODS !!!!
##### ---------------------------------------------------------------
class Junos::Ez::L2ports::Provider::VLAN
private
def _get_eth_port_vlans_h( ifs_name )
got = @ndev.rpc.get_ethernet_switching_interface_information(:interface_name => ifs_name)
ret_h = {:untagged => nil, :tagged => Set.new }
got.xpath('//interface-vlan-member').each do |vlan|
vlan_name = vlan.xpath('interface-vlan-name').text.strip
tgdy = vlan.xpath('interface-vlan-member-tagness').text.strip
if tgdy == 'untagged'
ret_h[:untagged] = vlan_name
else
ret_h[:tagged] << vlan_name
end
end
ret_h
end
end
### ---------------------------------------------------------------
### [edit vlans] - for interfaces configured here ...
### ---------------------------------------------------------------
class Junos::Ez::L2ports::Provider::VLAN
def _xml_edit_under_vlans( xml )
Nokogiri::XML::Builder.with( xml.doc.root ) do |dot|
dot.vlans {
return dot
}
end
end
def _xml_rm_under_vlans( xml, vlans )
at_vlans = _xml_edit_under_vlans( xml )
vlans.each do |vlan_name|
Nokogiri::XML::Builder.with( at_vlans.parent ) do |this|
this.vlan {
this.name vlan_name
this.interface( Netconf::JunosConfig::DELETE ) { this.name @name }
}
end
end
end
def _xml_rm_ac_untagged_vlan( xml )
if @under_vlans.empty?
xml.vlan Netconf::JunosConfig::DELETE
else
_xml_rm_under_vlans( xml, [ @has[:untagged_vlan ] ] )
@under_vlans = []
end
end
def _xml_rm_these_vlans( xml, vlans )
if @under_vlans.empty?
xml.vlan( Netconf::JunosConfig::DELETE )
else
# could be a mix between [edit vlans] and [edit interfaces] ...
v_has = vlans.to_set
del_under_vlans = v_has & @under_vlans
_xml_rm_under_vlans( xml, del_under_vlans )
if v_has ^ @under_vlans
xml.vlan( Netconf::JunosConfig::DELETE )
end
@under_vlans = []
end
end
end