Skip to content

Commit a33c44a

Browse files
committed
Add ttl-except to juniper
1 parent f844501 commit a33c44a

File tree

6 files changed

+73
-3
lines changed

6 files changed

+73
-3
lines changed

capirca/lib/juniper.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,8 @@ def __str__(self):
323323
self.term.source_prefix or
324324
self.term.source_prefix_except or
325325
self.term.traffic_type or
326-
self.term.ttl)
326+
self.term.ttl or
327+
self.term.ttl_except)
327328

328329
if has_match_criteria:
329330
config.Append('from {')
@@ -452,6 +453,10 @@ def __str__(self):
452453
if self.term.ttl and self.term_type == 'inet':
453454
config.Append('ttl %s;' % self.term.ttl)
454455

456+
# ttl-except, same logic as ttl above.
457+
if self.term.ttl_except and self.term_type == 'inet':
458+
config.Append('ttl-except %s;' % self.term.ttl_except)
459+
455460
# protocol
456461
if self.term.protocol:
457462
# both are supported on JunOS, but only icmp6 is supported
@@ -923,7 +928,8 @@ def _BuildTokens(self):
923928
'source_prefix_except',
924929
'traffic_type',
925930
'traffic_class_count',
926-
'ttl'}
931+
'ttl',
932+
'ttl_except'}
927933
supported_sub_tokens.update({
928934
'option': {
929935
'established',

capirca/lib/policy.py

+22-1
Original file line numberDiff line numberDiff line change
@@ -438,6 +438,7 @@ def __init__(self, obj):
438438
self.source_port = []
439439
self.source_prefix = []
440440
self.ttl = None
441+
self.ttl_except = None
441442
self.verbatim = []
442443
# juniper specific.
443444
self.packet_length = None
@@ -793,6 +794,8 @@ def __str__(self):
793794
ret_str.append(' platform_exclude: %s' % self.platform_exclude)
794795
if self.ttl:
795796
ret_str.append(' ttl: %s' % self.ttl)
797+
if self.ttl_except:
798+
ret_str.append(' ttl_except: %s' % self.ttl_except)
796799
if self.timeout:
797800
ret_str.append(' timeout: %s' % self.timeout)
798801
if self.vpn:
@@ -884,6 +887,9 @@ def __eq__(self, other):
884887
if self.ttl != other.ttl:
885888
return False
886889

890+
if self.ttl_except != other.ttl_except:
891+
return False
892+
887893
if sorted(self.logging) != sorted(other.logging):
888894
return False
889895
if self.log_limit != other.log_limit:
@@ -1246,6 +1252,8 @@ def AddObject(self, obj):
12461252
self.vpn = (obj.value[0], obj.value[1])
12471253
elif obj.var_type is VarType.TTL:
12481254
self.ttl = int(obj.value)
1255+
elif obj.var_type is VarType.TTL_EXCEPT:
1256+
self.ttl_except = int(obj.value)
12491257
elif obj.var_type is VarType.TARGET_RESOURCES:
12501258
self.target_resources.append(obj.value)
12511259
elif obj.var_type is VarType.TARGET_SERVICE_ACCOUNTS:
@@ -1351,6 +1359,12 @@ def SanityCheck(self):
13511359
raise InvalidTermTTLValue('Term %s contains invalid TTL: %s'
13521360
% (self.name, self.ttl))
13531361

1362+
if self.ttl_except:
1363+
if not _MIN_TTL <= self.ttl_except <= _MAX_TTL:
1364+
1365+
raise InvalidTermTTLValue('Term %s contains invalid TTL: %s'
1366+
% (self.name, self.ttl_except))
1367+
13541368
def AddressCleanup(self, optimize=True, addressbook=False):
13551369
"""Do Address and Port collapsing.
13561370
@@ -1567,7 +1581,7 @@ class VarType:
15671581
PORT_MIRROR = 64
15681582
SZONE = 65
15691583
DZONE = 66
1570-
1584+
TTL_EXCEPT = 67
15711585

15721586
def __init__(self, var_type, value):
15731587
self.var_type = var_type
@@ -1800,6 +1814,7 @@ def __ne__(self, other):
18001814
'TRAFFIC_CLASS_COUNT',
18011815
'TRAFFIC_TYPE',
18021816
'TTL',
1817+
'TTL_EXCEPT',
18031818
'VERBATIM',
18041819
'VPN',
18051820
)
@@ -1880,6 +1895,7 @@ def __ne__(self, other):
18801895
'traffic-class-count': 'TRAFFIC_CLASS_COUNT',
18811896
'traffic-type': 'TRAFFIC_TYPE',
18821897
'ttl': 'TTL',
1898+
'ttl-except': 'TTL_EXCEPT',
18831899
'verbatim': 'VERBATIM',
18841900
'vpn': 'VPN',
18851901
}
@@ -2051,6 +2067,7 @@ def p_term_spec(p):
20512067
| term_spec target_service_accounts_spec
20522068
| term_spec timeout_spec
20532069
| term_spec ttl_spec
2070+
| term_spec ttl_except_spec
20542071
| term_spec traffic_type_spec
20552072
| term_spec verbatim_spec
20562073
| term_spec vpn_spec
@@ -2475,6 +2492,10 @@ def p_ttl_spec(p):
24752492
""" ttl_spec : TTL ':' ':' INTEGER """
24762493
p[0] = VarType(VarType.TTL, p[4])
24772494

2495+
def p_ttl_except_spec(p):
2496+
""" ttl_except_spec : TTL_EXCEPT ':' ':' INTEGER """
2497+
p[0] = VarType(VarType.TTL_EXCEPT, p[4])
2498+
24782499
def p_filter_term_spec(p):
24792500
""" filter_term_spec : FILTER_TERM ':' ':' STRING """
24802501
p[0] = VarType(VarType.FILTER_TERM, p[4])

doc/generators/juniper.md

+1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ The default format is _inet4_, and is implied if not other argument is given.
8181
* _traffic-class-count::_
8282
* _traffic-type::_ specify traffic-type
8383
* _ttl::_ Matches on TTL.
84+
* _ttl-except::_ Allow all TTL "except" specified.
8485
* _verbatim::_ this specifies that the text enclosed within quotes should be rendered into the output without interpretation or modification. This is sometimes used as a temporary workaround while new required features are being added.
8586
## Sub Tokens
8687
### Actions

tests/lib/juniper_test.py

+19
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,12 @@
392392
action:: accept
393393
}
394394
"""
395+
GOOD_TERM_38 = """
396+
term good-term-38 {
397+
ttl-except:: 10
398+
action:: accept
399+
}
400+
"""
395401
GOOD_TERM_COMMENT = """
396402
term good-term-comment {
397403
comment:: "This is a COMMENT"
@@ -645,6 +651,7 @@
645651
'traffic_type',
646652
'translated',
647653
'ttl',
654+
'ttl_except',
648655
'verbatim'])
649656

650657
SUPPORTED_SUB_TOKENS = {
@@ -1504,12 +1511,24 @@ def testTTL(self):
15041511
output = str(jcl)
15051512
self.assertIn('ttl 10;', output)
15061513

1514+
def testTTLExcept(self):
1515+
jcl = juniper.Juniper(policy.ParsePolicy(GOOD_HEADER + GOOD_TERM_38,
1516+
self.naming), EXP_INFO)
1517+
output = str(jcl)
1518+
self.assertIn('ttl-except 10;', output)
1519+
15071520
def testTTLInet6(self):
15081521
jcl = juniper.Juniper(policy.ParsePolicy(GOOD_HEADER_V6 + GOOD_TERM_21,
15091522
self.naming), EXP_INFO)
15101523
output = str(jcl)
15111524
self.assertNotIn('ttl 10;', output)
15121525

1526+
def testTTLExceptInet6(self):
1527+
jcl = juniper.Juniper(policy.ParsePolicy(GOOD_HEADER_V6 + GOOD_TERM_38,
1528+
self.naming), EXP_INFO)
1529+
output = str(jcl)
1530+
self.assertNotIn('ttl-except 10;', output)
1531+
15131532
def testNextIpFormat(self):
15141533
self.naming.GetNetAddr.return_value = [nacaddr.IP('10.1.1.1/32')]
15151534

tests/lib/policy_test.py

+22
Original file line numberDiff line numberDiff line change
@@ -439,6 +439,12 @@
439439
action:: accept
440440
}
441441
"""
442+
GOOD_TERM_49 = """
443+
term good-term-59 {
444+
ttl-except:: 10
445+
action:: accept
446+
}
447+
"""
442448
GOOD_TERM_V6_1 = """
443449
term good-term-v6-1 {
444450
hop-limit:: 5
@@ -584,6 +590,12 @@
584590
action:: accept
585591
}
586592
"""
593+
BAD_TERM_17 = """
594+
term bad-term-17 {
595+
ttl-except:: 257
596+
action:: accept
597+
}
598+
"""
587599

588600
# pylint: disable=maybe-no-member
589601

@@ -1269,6 +1281,16 @@ def testInvalidTTL(self):
12691281
self.assertRaises(policy.InvalidTermTTLValue, policy.ParsePolicy,
12701282
pol, self.naming)
12711283

1284+
def testTTLExcept(self):
1285+
pol = HEADER + GOOD_TERM_49
1286+
result = policy.ParsePolicy(pol, self.naming)
1287+
self.assertIn('ttl_except: 10', str(result))
1288+
1289+
def testInvalidTTLExcept(self):
1290+
pol = HEADER + BAD_TERM_17
1291+
self.assertRaises(policy.InvalidTermTTLValue, policy.ParsePolicy,
1292+
pol, self.naming)
1293+
12721294
def testNeedAddressBook(self):
12731295
pol1 = policy.ParsePolicy(HEADER + GOOD_TERM_1, self.naming)
12741296
pol2 = policy.ParsePolicy(HEADER_SRX + GOOD_TERM_1, self.naming)

tests/lib/srxlo_test.py

+1
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@
122122
'traffic_type',
123123
'translated',
124124
'ttl',
125+
'ttl_except',
125126
'verbatim',
126127
}
127128

0 commit comments

Comments
 (0)