summaryrefslogtreecommitdiff
path: root/conf
diff options
context:
space:
mode:
authorJan Moskyto Matejka <mq@ucw.cz>2017-03-28 17:35:32 +0200
committerJan Moskyto Matejka <mq@ucw.cz>2017-03-28 17:35:32 +0200
commit2282030b2a4fb07805a0cd8b82a9aab73b7586d8 (patch)
treea094b4731e7d1c32f0757e99df2aa6db59317d94 /conf
parentef57b70fa51687865e5823c0af2df2c6de338215 (diff)
Simpler format of VPN RD
Diffstat (limited to 'conf')
-rw-r--r--conf/cf-lex.l39
1 files changed, 35 insertions, 4 deletions
diff --git a/conf/cf-lex.l b/conf/cf-lex.l
index fb3d59e4..db847d37 100644
--- a/conf/cf-lex.l
+++ b/conf/cf-lex.l
@@ -123,6 +123,37 @@ include ^{WHITE}*include{WHITE}*\".*\"{WHITE}*;
cf_include(start, end-start);
}
+{DIGIT}+:{DIGIT}+ {
+ unsigned long int l, len1, len2;
+ char *e;
+
+ errno = 0;
+ l = strtoul(yytext, &e, 10);
+ if (e && (*e != ':') || (errno == ERANGE) || (l >> 32))
+ cf_error("ASN out of range");
+
+ if (l >> 16)
+ {
+ len1 = 32;
+ len2 = 16;
+ cf_lval.i64 = (2ULL << 48) | (((u64) l) << len2);
+ }
+ else
+ {
+ len1 = 16;
+ len2 = 32;
+ cf_lval.i64 = 0 | (((u64) l) << len2);
+ }
+
+ errno = 0;
+ l = strtoul(e+1, &e, 10);
+ if (e && *e || (errno == ERANGE) || (l >> len2))
+ cf_error("Number out of range");
+ cf_lval.i64 |= l;
+
+ return VPN_RD;
+}
+
[02]:{DIGIT}+:{DIGIT}+ {
unsigned long int l, len1, len2;
char *e;
@@ -155,17 +186,17 @@ include ^{WHITE}*include{WHITE}*\".*\"{WHITE}*;
return VPN_RD;
}
-1:{DIGIT}+\.{DIGIT}+\.{DIGIT}+\.{DIGIT}+:{DIGIT}+ {
+{DIGIT}+\.{DIGIT}+\.{DIGIT}+\.{DIGIT}+:{DIGIT}+ {
unsigned long int l;
ip4_addr ip4;
char *e;
cf_lval.i64 = 1ULL << 48;
- e = strchr(yytext+2, ':');
+ e = strchr(yytext, ':');
*e++ = '\0';
- if (!ip4_pton(yytext+2, &ip4))
- cf_error("Invalid IPv4 address %s in Route Distinguisher", yytext+2);
+ if (!ip4_pton(yytext, &ip4))
+ cf_error("Invalid IPv4 address %s in Route Distinguisher", yytext);
cf_lval.i64 |= ((u64) ip4_to_u32(ip4)) << 16;
errno = 0;