aboutsummaryrefslogtreecommitdiffstats
path: root/src/libutil/addr.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2019-06-04 18:35:50 +0200
committerMartin Mares <mj@ucw.cz>2019-06-04 18:35:50 +0200
commite68ea4ea38376ba0eedf36578c3499159e675c90 (patch)
treea16ce229d246581218833bdbbc04c1bd5ecb77df /src/libutil/addr.c
parent0cb382f10a1480e4c48e0912f9740a65494cb075 (diff)
downloadrspamd-e68ea4ea38376ba0eedf36578c3499159e675c90.tar.gz
rspamd-e68ea4ea38376ba0eedf36578c3499159e675c90.zip
libutil: Fix parsing of address "IPv6:::1"
Dropping of leading colon must be performed after the "IPv6:" prefix is stripped. Also fixed a couple of wrong comments.
Diffstat (limited to 'src/libutil/addr.c')
-rw-r--r--src/libutil/addr.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/libutil/addr.c b/src/libutil/addr.c
index 7fa634f6f..4babfb1d2 100644
--- a/src/libutil/addr.c
+++ b/src/libutil/addr.c
@@ -510,19 +510,11 @@ rspamd_parse_inet_address_ip6 (const guchar *text, gsize len, gpointer target)
g_assert (text != NULL);
g_assert (target != NULL);
+ p = text;
if (len == 0) {
len = strlen (text);
}
- /* Ignore trailing semicolon */
- if (text[0] == ':') {
- p = text + 1;
- len--;
- }
- else {
- p = text;
- }
-
/* Check IPv6 scope */
if ((percent = memchr (p, '%', len)) != NULL && percent > p) {
len = percent - p; /* Ignore scope */
@@ -535,6 +527,12 @@ rspamd_parse_inet_address_ip6 (const guchar *text, gsize len, gpointer target)
len -= sizeof ("IPv6:") - 1;
}
+ /* Ignore leading colon */
+ if (len > 0 && *p == ':') {
+ p++;
+ len--;
+ }
+
for (/* void */; len; len--) {
t = *p++;
@@ -580,7 +578,7 @@ rspamd_parse_inet_address_ip6 (const guchar *text, gsize len, gpointer target)
}
if (++nibbles > 4) {
- /* Too many dots */
+ /* Too many digits */
return FALSE;
}