-
Notifications
You must be signed in to change notification settings - Fork 453
Expand file tree
/
Copy pathtest_interfaces_tunnel.py
More file actions
executable file
·639 lines (518 loc) · 29.1 KB
/
Copy pathtest_interfaces_tunnel.py
File metadata and controls
executable file
·639 lines (518 loc) · 29.1 KB
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
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
#!/usr/bin/env python3
#
# Copyright VyOS maintainers and contributors <maintainers@vyos.io>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 or later as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import unittest
from base_interfaces_test import BasicInterfaceTest
from base_vyostest_shim import VyOSUnitTestSHIM
from vyos.configsession import ConfigSessionError
from vyos.utils.network import get_interface_config
from vyos.template import inc_ip
remote_ip4 = '192.0.2.100'
remote_ip6 = '2001:db8::ffff'
source_if = 'dum2222'
source_if2 = 'dum2223'
mtu = 1476
class TunnelInterfaceTest(BasicInterfaceTest.TestCase):
@classmethod
def setUpClass(cls):
cls._base_path = ['interfaces', 'tunnel']
cls.local_v4 = '192.0.2.1'
cls.local_v6 = '2001:db8::1'
cls._options = {
'tun10': ['encapsulation ipip', 'remote 192.0.2.10', 'source-address ' + cls.local_v4],
'tun20': ['encapsulation gre', 'remote 192.0.2.20', 'source-address ' + cls.local_v4],
}
cls._interfaces = list(cls._options)
# call base-classes classmethod
super(TunnelInterfaceTest, cls).setUpClass()
# create some test interfaces
cls.cli_set(cls, ['interfaces', 'dummy', source_if, 'address', cls.local_v4 + '/32'])
cls.cli_set(cls, ['interfaces', 'dummy', source_if, 'address', cls.local_v6 + '/128'])
cls.cli_set(cls, ['interfaces', 'dummy', source_if2])
@classmethod
def tearDownClass(cls):
cls.cli_delete(cls, ['interfaces', 'dummy', source_if])
cls.cli_delete(cls, ['interfaces', 'dummy', source_if2])
super().tearDownClass()
def test_ipv4_encapsulations(self):
# When running tests ensure that for certain encapsulation types the
# local and remote IP address is actually an IPv4 address
interface = f'tun1000'
local_if_addr = f'10.10.200.1/24'
for encapsulation in ['ipip', 'sit', 'gre', 'gretap']:
self.cli_set(self._base_path + [interface, 'address', local_if_addr])
self.cli_set(self._base_path + [interface, 'encapsulation', encapsulation])
self.cli_set(self._base_path + [interface, 'source-address', self.local_v6])
self.cli_set(self._base_path + [interface, 'remote', remote_ip6])
# Encapsulation mode requires IPv4 source-address
with self.assertRaises(ConfigSessionError):
self.cli_commit()
self.cli_set(self._base_path + [interface, 'source-address', self.local_v4])
# Encapsulation mode requires IPv4 remote
with self.assertRaises(ConfigSessionError):
self.cli_commit()
self.cli_set(self._base_path + [interface, 'remote', remote_ip4])
self.cli_set(self._base_path + [interface, 'source-interface', source_if])
# Source interface cannot be used with sit and gretap
if encapsulation in ['sit', 'gretap']:
with self.assertRaises(ConfigSessionError):
self.cli_commit()
self.cli_delete(self._base_path + [interface, 'source-interface'])
# Check if commit is ok
self.cli_commit()
conf = get_interface_config(interface)
if encapsulation not in ['sit', 'gretap']:
self.assertEqual(source_if, conf['link'])
self.assertEqual(interface, conf['ifname'])
self.assertEqual(mtu, conf['mtu'])
self.assertEqual(encapsulation, conf['linkinfo']['info_kind'])
self.assertEqual(self.local_v4, conf['linkinfo']['info_data']['local'])
self.assertEqual(remote_ip4, conf['linkinfo']['info_data']['remote'])
self.assertTrue(conf['linkinfo']['info_data']['pmtudisc'])
# cleanup this instance
self.cli_delete(self._base_path + [interface])
self.cli_commit()
def test_ipv6_encapsulations(self):
# When running tests ensure that for certain encapsulation types the
# local and remote IP address is actually an IPv6 address
interface = f'tun1010'
local_if_addr = f'10.10.200.1/24'
for encapsulation in ['ipip6', 'ip6ip6', 'ip6gre', 'ip6gretap']:
self.cli_set(self._base_path + [interface, 'address', local_if_addr])
self.cli_set(self._base_path + [interface, 'encapsulation', encapsulation])
self.cli_set(self._base_path + [interface, 'source-address', self.local_v4])
self.cli_set(self._base_path + [interface, 'remote', remote_ip4])
# Encapsulation mode requires IPv6 source-address
with self.assertRaises(ConfigSessionError):
self.cli_commit()
self.cli_set(self._base_path + [interface, 'source-address', self.local_v6])
# Encapsulation mode requires IPv6 remote
with self.assertRaises(ConfigSessionError):
self.cli_commit()
self.cli_set(self._base_path + [interface, 'remote', remote_ip6])
# Configure Tunnel Source interface
self.cli_set(self._base_path + [interface, 'source-interface', source_if])
# Source interface cannot be used with ip6gretap
if encapsulation in ['ip6gretap']:
with self.assertRaises(ConfigSessionError):
self.cli_commit()
self.cli_delete(self._base_path + [interface, 'source-interface'])
# Check if commit is ok
self.cli_commit()
conf = get_interface_config(interface)
if encapsulation not in ['ip6gretap']:
self.assertEqual(source_if, conf['link'])
self.assertEqual(interface, conf['ifname'])
self.assertEqual(mtu, conf['mtu'])
# Not applicable for ip6gre
if 'proto' in conf['linkinfo']['info_data']:
self.assertEqual(encapsulation, conf['linkinfo']['info_data']['proto'])
# remap encapsulation protocol(s) only for ipip6, ip6ip6
if encapsulation in ['ipip6', 'ip6ip6']:
encapsulation = 'ip6tnl'
self.assertEqual(encapsulation, conf['linkinfo']['info_kind'])
self.assertEqual(self.local_v6, conf['linkinfo']['info_data']['local'])
self.assertEqual(remote_ip6, conf['linkinfo']['info_data']['remote'])
# cleanup this instance
self.cli_delete(self._base_path + [interface])
self.cli_commit()
def test_tunnel_parameters_gre(self):
interface = f'tun1030'
gre_key = '10'
encapsulation = 'gre'
tos = '20'
self.cli_set(self._base_path + [interface, 'encapsulation', encapsulation])
self.cli_set(self._base_path + [interface, 'source-address', self.local_v4])
self.cli_set(self._base_path + [interface, 'remote', remote_ip4])
self.cli_set(self._base_path + [interface, 'parameters', 'ip', 'no-pmtu-discovery'])
self.cli_set(self._base_path + [interface, 'parameters', 'ip', 'key', gre_key])
self.cli_set(self._base_path + [interface, 'parameters', 'ip', 'tos', tos])
self.cli_set(self._base_path + [interface, 'parameters', 'ip', 'ttl', '0'])
# Check if commit is ok
self.cli_commit()
conf = get_interface_config(interface)
self.assertEqual(mtu, conf['mtu'])
self.assertEqual(interface, conf['ifname'])
self.assertEqual(encapsulation, conf['linkinfo']['info_kind'])
self.assertEqual(self.local_v4, conf['linkinfo']['info_data']['local'])
self.assertEqual(remote_ip4, conf['linkinfo']['info_data']['remote'])
self.assertEqual(0, conf['linkinfo']['info_data']['ttl'])
self.assertFalse( conf['linkinfo']['info_data']['pmtudisc'])
def test_gretap_parameters_change(self):
interface = f'tun1040'
gre_key = '10'
encapsulation = 'gretap'
tos = '20'
self.cli_set(self._base_path + [interface, 'encapsulation', encapsulation])
self.cli_set(self._base_path + [interface, 'source-address', self.local_v4])
self.cli_set(self._base_path + [interface, 'remote', remote_ip4])
# Check if commit is ok
self.cli_commit()
conf = get_interface_config(interface)
self.assertEqual(mtu, conf['mtu'])
self.assertEqual(interface, conf['ifname'])
self.assertEqual(encapsulation, conf['linkinfo']['info_kind'])
self.assertEqual(self.local_v4, conf['linkinfo']['info_data']['local'])
self.assertEqual(remote_ip4, conf['linkinfo']['info_data']['remote'])
self.assertEqual(64, conf['linkinfo']['info_data']['ttl'])
# Change remote ip address (inc host by 2
new_remote = inc_ip(remote_ip4, 2)
self.cli_set(self._base_path + [interface, 'remote', new_remote])
# Check if commit is ok
self.cli_commit()
conf = get_interface_config(interface)
self.assertEqual(new_remote, conf['linkinfo']['info_data']['remote'])
def test_erspan_v1(self):
interface = f'tun1070'
encapsulation = 'erspan'
ip_key = '77'
idx = '20'
self.cli_set(self._base_path + [interface, 'encapsulation', encapsulation])
self.cli_set(self._base_path + [interface, 'source-address', self.local_v4])
self.cli_set(self._base_path + [interface, 'remote', remote_ip4])
self.cli_set(self._base_path + [interface, 'parameters', 'erspan', 'index', idx])
# ERSPAN requires ip key parameter
with self.assertRaises(ConfigSessionError):
self.cli_commit()
self.cli_set(self._base_path + [interface, 'parameters', 'ip', 'key', ip_key])
# Check if commit is ok
self.cli_commit()
conf = get_interface_config(interface)
self.assertEqual(mtu, conf['mtu'])
self.assertEqual(interface, conf['ifname'])
self.assertEqual(encapsulation, conf['linkinfo']['info_kind'])
self.assertEqual(self.local_v4, conf['linkinfo']['info_data']['local'])
self.assertEqual(remote_ip4, conf['linkinfo']['info_data']['remote'])
self.assertEqual(64, conf['linkinfo']['info_data']['ttl'])
self.assertEqual(f'0.0.0.{ip_key}', conf['linkinfo']['info_data']['ikey'])
self.assertEqual(f'0.0.0.{ip_key}', conf['linkinfo']['info_data']['okey'])
self.assertEqual(int(idx), conf['linkinfo']['info_data']['erspan_index'])
# version defaults to 1
self.assertEqual(1, conf['linkinfo']['info_data']['erspan_ver'])
self.assertTrue( conf['linkinfo']['info_data']['iseq'])
self.assertTrue( conf['linkinfo']['info_data']['oseq'])
# Change remote ip address (inc host by 2
new_remote = inc_ip(remote_ip4, 2)
self.cli_set(self._base_path + [interface, 'remote', new_remote])
# Check if commit is ok
self.cli_commit()
conf = get_interface_config(interface)
self.assertEqual(new_remote, conf['linkinfo']['info_data']['remote'])
def test_ip6erspan_v2(self):
interface = f'tun1070'
encapsulation = 'ip6erspan'
ip_key = '77'
erspan_ver = 2
direction = 'ingress'
self.cli_set(self._base_path + [interface, 'encapsulation', encapsulation])
self.cli_set(self._base_path + [interface, 'source-address', self.local_v6])
self.cli_set(self._base_path + [interface, 'remote', remote_ip6])
# ERSPAN requires ip key parameter
with self.assertRaises(ConfigSessionError):
self.cli_commit()
self.cli_set(self._base_path + [interface, 'parameters', 'ip', 'key', ip_key])
self.cli_set(self._base_path + [interface, 'parameters', 'erspan', 'version', str(erspan_ver)])
# ERSPAN index is not valid on version 2
self.cli_set(self._base_path + [interface, 'parameters', 'erspan', 'index', '10'])
with self.assertRaises(ConfigSessionError):
self.cli_commit()
self.cli_delete(self._base_path + [interface, 'parameters', 'erspan', 'index'])
# ERSPAN requires direction to be set
with self.assertRaises(ConfigSessionError):
self.cli_commit()
self.cli_set(self._base_path + [interface, 'parameters', 'erspan', 'direction', direction])
# Check if commit is ok
self.cli_commit()
conf = get_interface_config(interface)
self.assertEqual(mtu, conf['mtu'])
self.assertEqual(interface, conf['ifname'])
self.assertEqual(encapsulation, conf['linkinfo']['info_kind'])
self.assertEqual(self.local_v6, conf['linkinfo']['info_data']['local'])
self.assertEqual(remote_ip6, conf['linkinfo']['info_data']['remote'])
self.assertEqual(64, conf['linkinfo']['info_data']['ttl'])
self.assertEqual(f'0.0.0.{ip_key}', conf['linkinfo']['info_data']['ikey'])
self.assertEqual(f'0.0.0.{ip_key}', conf['linkinfo']['info_data']['okey'])
self.assertEqual(erspan_ver, conf['linkinfo']['info_data']['erspan_ver'])
self.assertEqual(direction, conf['linkinfo']['info_data']['erspan_dir'])
self.assertTrue( conf['linkinfo']['info_data']['iseq'])
self.assertTrue( conf['linkinfo']['info_data']['oseq'])
# Change remote ip address (inc host by 2
new_remote = inc_ip(remote_ip6, 2)
self.cli_set(self._base_path + [interface, 'remote', new_remote])
# Check if commit is ok
self.cli_commit()
conf = get_interface_config(interface)
self.assertEqual(new_remote, conf['linkinfo']['info_data']['remote'])
def test_tunnel_src_any_gre_key(self):
interface = f'tun1280'
encapsulation = 'gre'
src_addr = '0.0.0.0'
key = '127'
self.cli_set(self._base_path + [interface, 'encapsulation', encapsulation])
self.cli_set(self._base_path + [interface, 'source-address', src_addr])
# GRE key must be supplied with a 0.0.0.0 source address
with self.assertRaises(ConfigSessionError):
self.cli_commit()
# A zero key is no key at all for such a tunnel - with an any
# source-address and no remote it catches every packet, exactly as a
# keyless tunnel would
self.cli_set(self._base_path + [interface, 'parameters', 'ip', 'key', '0'])
with self.assertRaises(ConfigSessionError):
self.cli_commit()
self.cli_set(self._base_path + [interface, 'parameters', 'ip', 'key', key])
self.cli_commit()
# A remote address identifies the tunnel on its own, so a zero key is
# no longer a problem
self.cli_set(self._base_path + [interface, 'parameters', 'ip', 'key', '0'])
self.cli_set(self._base_path + [interface, 'remote', remote_ip4])
self.cli_commit()
def test_multiple_gre_tunnel_same_remote(self):
tunnels = {
'tun10' : {
'encapsulation' : 'gre',
'source_interface' : source_if,
'remote' : '1.2.3.4',
},
'tun20' : {
'encapsulation' : 'gre',
'source_interface' : source_if,
'remote' : '1.2.3.4',
},
}
for tunnel, tunnel_config in tunnels.items():
self.cli_set(self._base_path + [tunnel, 'encapsulation', tunnel_config['encapsulation']])
if 'source_interface' in tunnel_config:
self.cli_set(self._base_path + [tunnel, 'source-interface', tunnel_config['source_interface']])
if 'remote' in tunnel_config:
self.cli_set(self._base_path + [tunnel, 'remote', tunnel_config['remote']])
# GRE key must be supplied when two or more tunnels are formed to the same destination
with self.assertRaises(ConfigSessionError):
self.cli_commit()
for tunnel, tunnel_config in tunnels.items():
self.cli_set(self._base_path + [tunnel, 'parameters', 'ip', 'key', tunnel.lstrip('tun')])
self.cli_commit()
for tunnel, tunnel_config in tunnels.items():
conf = get_interface_config(tunnel)
ip_key = tunnel.lstrip('tun')
self.assertEqual(tunnel_config['source_interface'], conf['link'])
self.assertEqual(tunnel_config['encapsulation'], conf['linkinfo']['info_kind'])
self.assertEqual(tunnel_config['remote'], conf['linkinfo']['info_data']['remote'])
self.assertEqual(f'0.0.0.{ip_key}', conf['linkinfo']['info_data']['ikey'])
self.assertEqual(f'0.0.0.{ip_key}', conf['linkinfo']['info_data']['okey'])
def test_multiple_gre_tunnel_different_remote(self):
tunnels = {
'tun10' : {
'encapsulation' : 'gre',
'source_interface' : source_if,
'remote' : '1.2.3.4',
},
'tun20' : {
'encapsulation' : 'gre',
'source_interface' : source_if,
'remote' : '1.2.3.5',
},
}
for tunnel, tunnel_config in tunnels.items():
self.cli_set(self._base_path + [tunnel, 'encapsulation', tunnel_config['encapsulation']])
if 'source_interface' in tunnel_config:
self.cli_set(self._base_path + [tunnel, 'source-interface', tunnel_config['source_interface']])
if 'remote' in tunnel_config:
self.cli_set(self._base_path + [tunnel, 'remote', tunnel_config['remote']])
self.cli_commit()
for tunnel, tunnel_config in tunnels.items():
conf = get_interface_config(tunnel)
self.assertEqual(tunnel_config['source_interface'], conf['link'])
self.assertEqual(tunnel_config['encapsulation'], conf['linkinfo']['info_kind'])
self.assertEqual(tunnel_config['remote'], conf['linkinfo']['info_data']['remote'])
def test_multiple_gre_tunnel_same_key_different_remote(self):
# The Kernel identifies a tunnel by local address, remote address,
# source-interface and key - a differing remote address is enough to
# make both tunnels unique, even if they share one GRE key
ip_key = '10'
tunnels = {
'tun10': '1.2.3.4',
'tun20': '1.2.3.5',
}
for tunnel, remote in tunnels.items():
self.cli_set(self._base_path + [tunnel, 'encapsulation', 'gre'])
self.cli_set(self._base_path + [tunnel, 'source-address', self.local_v4])
self.cli_set(self._base_path + [tunnel, 'remote', remote])
self.cli_set(self._base_path + [tunnel, 'parameters', 'ip', 'key', ip_key])
self.cli_commit()
for tunnel, remote in tunnels.items():
conf = get_interface_config(tunnel)
self.assertEqual('gre', conf['linkinfo']['info_kind'])
self.assertEqual(self.local_v4, conf['linkinfo']['info_data']['local'])
self.assertEqual(remote, conf['linkinfo']['info_data']['remote'])
self.assertEqual(f'0.0.0.{ip_key}', conf['linkinfo']['info_data']['ikey'])
self.assertEqual(f'0.0.0.{ip_key}', conf['linkinfo']['info_data']['okey'])
def test_multiple_gre_tunnel_same_key_different_source_interface(self):
# Tunnels bound to different source-interfaces are distinct for the
# Kernel, thus they are free to share one GRE key
ip_key = '20'
tunnels = {
'tun10': source_if,
'tun20': source_if2,
}
for tunnel, interface in tunnels.items():
self.cli_set(self._base_path + [tunnel, 'encapsulation', 'gre'])
self.cli_set(self._base_path + [tunnel, 'source-interface', interface])
self.cli_set(self._base_path + [tunnel, 'parameters', 'ip', 'key', ip_key])
self.cli_commit()
for tunnel, interface in tunnels.items():
conf = get_interface_config(tunnel)
self.assertEqual(interface, conf['link'])
self.assertEqual('gre', conf['linkinfo']['info_kind'])
self.assertEqual(f'0.0.0.{ip_key}', conf['linkinfo']['info_data']['ikey'])
self.assertEqual(f'0.0.0.{ip_key}', conf['linkinfo']['info_data']['okey'])
def test_multiple_gre_tunnel_any_remote(self):
# The Kernel stores an unset remote address as the any address, thus
# "remote 0.0.0.0" and an unset remote must be treated alike - creating
# both would fail with "add tunnel "gre0" failed: File exists"
ip_key = '30'
for tunnel in ['tun10', 'tun20']:
self.cli_set(self._base_path + [tunnel, 'encapsulation', 'gre'])
self.cli_set(self._base_path + [tunnel, 'source-address', self.local_v4])
self.cli_set(self._base_path + [tunnel, 'parameters', 'ip', 'key', ip_key])
self.cli_set(self._base_path + ['tun10', 'remote', '0.0.0.0'])
# Both tunnels resolve to the same Kernel tunnel - this must be rejected
with self.assertRaises(ConfigSessionError):
self.cli_commit()
# A differing key makes them unique again
self.cli_set(self._base_path + ['tun20', 'parameters', 'ip', 'key', '31'])
self.cli_commit()
def test_multiple_gre_tunnel_keyless_and_keyed(self):
# A keyless tunnel is distinct from a keyed one even when both share
# the same local and remote address - the Kernel only matches a tunnel
# carrying no key against another tunnel carrying no key
ip_key = '40'
for tunnel in ['tun10', 'tun20']:
self.cli_set(self._base_path + [tunnel, 'encapsulation', 'gre'])
self.cli_set(self._base_path + [tunnel, 'source-address', self.local_v4])
self.cli_set(self._base_path + ['tun20', 'remote', '0.0.0.0'])
self.cli_set(self._base_path + ['tun20', 'parameters', 'ip', 'key', ip_key])
self.cli_commit()
# Re-verifying the keyless tunnel must keep succeeding - if it does not,
# the next commit touching it fails and it is lost on the next boot
self.cli_set(self._base_path + ['tun10', 'description', 'foo'])
self.cli_commit()
conf = get_interface_config('tun10')
self.assertEqual('gre', conf['linkinfo']['info_kind'])
self.assertEqual(self.local_v4, conf['linkinfo']['info_data']['local'])
self.assertNotIn('ikey', conf['linkinfo']['info_data'])
conf = get_interface_config('tun20')
self.assertEqual('gre', conf['linkinfo']['info_kind'])
self.assertEqual(self.local_v4, conf['linkinfo']['info_data']['local'])
self.assertEqual(f'0.0.0.{ip_key}', conf['linkinfo']['info_data']['ikey'])
self.assertEqual(f'0.0.0.{ip_key}', conf['linkinfo']['info_data']['okey'])
def test_multiple_gre_tunnel_keyless_different_source_interface(self):
# Tunnels bound to different source-interfaces stay distinct for the
# Kernel even when they share one local and remote address - "dev" is
# compared as the tunnel link index - so no GRE key is needed to tell
# them apart
remote = '1.2.3.4'
tunnels = {
'tun10': source_if,
'tun20': source_if2,
}
for tunnel, interface in tunnels.items():
self.cli_set(self._base_path + [tunnel, 'encapsulation', 'gre'])
self.cli_set(self._base_path + [tunnel, 'source-address', self.local_v4])
self.cli_set(self._base_path + [tunnel, 'source-interface', interface])
self.cli_set(self._base_path + [tunnel, 'remote', remote])
self.cli_commit()
for tunnel, interface in tunnels.items():
conf = get_interface_config(tunnel)
self.assertEqual(interface, conf['link'])
self.assertEqual('gre', conf['linkinfo']['info_kind'])
self.assertEqual(self.local_v4, conf['linkinfo']['info_data']['local'])
self.assertEqual(remote, conf['linkinfo']['info_data']['remote'])
self.assertNotIn('ikey', conf['linkinfo']['info_data'])
def test_multiple_gre_tunnel_zero_key(self):
# Carrying neither a source-address nor a remote, these tunnels are only
# told apart by their key - and a zero key does not do that, it cannot be
# told from an unset one on receive. A non-zero key can
for tunnel in ['tun10', 'tun20']:
self.cli_set(self._base_path + [tunnel, 'encapsulation', 'gre'])
self.cli_set(self._base_path + [tunnel, 'source-interface', source_if])
self.cli_set(self._base_path + ['tun20', 'parameters', 'ip', 'key', '0'])
with self.assertRaises(ConfigSessionError):
self.cli_commit()
self.cli_set(self._base_path + ['tun20', 'parameters', 'ip', 'key', '50'])
self.cli_commit()
conf = get_interface_config('tun20')
self.assertEqual('0.0.0.50', conf['linkinfo']['info_data']['ikey'])
self.assertEqual('0.0.0.50', conf['linkinfo']['info_data']['okey'])
# Dropping back to a zero key must be rejected just the same. Only the
# tunnel which changed is verified again here, so this is the case a
# check trusting its own zero key - but not the neighbours - lets
# through: both tunnels commit, and every later commit touching the
# keyless one is refused from then on
self.cli_set(self._base_path + ['tun20', 'parameters', 'ip', 'key', '0'])
with self.assertRaises(ConfigSessionError):
self.cli_commit()
def test_multiple_gre_tunnel_zero_key_with_endpoints(self):
# A zero key does tell a tunnel apart from a keyless one as soon as a
# local or a remote address is set - the Kernel then matches through
# ip_tunnel_key_match(), which tests the flag saying that a key is set
# before it compares the value
for tunnel in ['tun10', 'tun20']:
self.cli_set(self._base_path + [tunnel, 'encapsulation', 'gre'])
self.cli_set(self._base_path + [tunnel, 'source-address', self.local_v4])
self.cli_set(self._base_path + ['tun20', 'parameters', 'ip', 'key', '0'])
# The same holds when it is the remote address which identifies them
for tunnel in ['tun30', 'tun40']:
self.cli_set(self._base_path + [tunnel, 'encapsulation', 'gre'])
self.cli_set(self._base_path + [tunnel, 'source-interface', source_if])
self.cli_set(self._base_path + [tunnel, 'remote', remote_ip4])
self.cli_set(self._base_path + ['tun40', 'parameters', 'ip', 'key', '0'])
self.cli_commit()
# Re-verifying the keyless tunnels must keep succeeding - if it does
# not, the next commit touching them fails and they are lost on the
# next boot
for tunnel in ['tun10', 'tun30']:
self.cli_set(self._base_path + [tunnel, 'description', 'foo'])
self.cli_commit()
for tunnel in ['tun10', 'tun20']:
conf = get_interface_config(tunnel)
self.assertEqual('gre', conf['linkinfo']['info_kind'])
self.assertEqual(self.local_v4, conf['linkinfo']['info_data']['local'])
for tunnel in ['tun30', 'tun40']:
conf = get_interface_config(tunnel)
self.assertEqual(source_if, conf['link'])
self.assertEqual('gre', conf['linkinfo']['info_kind'])
self.assertEqual(remote_ip4, conf['linkinfo']['info_data']['remote'])
# The keyless tunnels must have stayed keyless. That the commit went
# through at all is what proves the zero key reached the Kernel with its
# flag set - dropped, it would have left two keyless tunnels sharing one
# endpoint and the second of them could not have been created
for tunnel in ['tun10', 'tun30']:
conf = get_interface_config(tunnel)
self.assertNotIn('ikey', conf['linkinfo']['info_data'])
def test_tunnel_invalid_source_interface(self):
encapsulation = 'gre'
remote = '192.0.2.1'
interface = 'tun7543'
self.cli_set(self._base_path + [interface, 'encapsulation', encapsulation])
self.cli_set(self._base_path + [interface, 'remote', remote])
for dynamic_interface in ['l2tp0', 'ppp4220', 'sstpc0', 'ipoe654']:
self.cli_set(self._base_path + [interface, 'source-interface', dynamic_interface])
# verify() - we cannot source from dynamic interfaces
with self.assertRaises(ConfigSessionError):
self.cli_commit()
self.cli_set(self._base_path + [interface, 'source-interface', 'eth0'])
self.cli_commit()
if __name__ == '__main__':
unittest.main(verbosity=2, failfast=VyOSUnitTestSHIM.TestCase.debug_on())