Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
babeld
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
babeld
Commits
41aa314d
Commit
41aa314d
authored
Apr 01, 2020
by
Théophile Bastian
Committed by
Juliusz Chroboczek
Apr 15, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
parse_packet: ignore TLVs bearing unknown AEs
parent
e16b252f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
2 deletions
+37
-2
message.c
message.c
+37
-2
No files found.
message.c
View file @
41aa314d
...
@@ -50,6 +50,13 @@ struct timeval seqno_time = {0, 0};
...
@@ -50,6 +50,13 @@ struct timeval seqno_time = {0, 0};
#define MAX_CHANNEL_HOPS 20
#define MAX_CHANNEL_HOPS 20
/* Checks whether an AE exists or must be silently ignored */
static
int
known_ae
(
int
ae
)
{
return
ae
<=
3
;
}
/* Parse a network prefix, encoded in the somewhat baroque compressed
/* Parse a network prefix, encoded in the somewhat baroque compressed
representation used by Babel. Return the number of bytes parsed. */
representation used by Babel. Return the number of bytes parsed. */
static
int
static
int
...
@@ -569,6 +576,11 @@ parse_packet(const unsigned char *from, struct interface *ifp,
...
@@ -569,6 +576,11 @@ parse_packet(const unsigned char *from, struct interface *ifp,
unsigned
char
address
[
16
];
unsigned
char
address
[
16
];
int
rc
;
int
rc
;
if
(
len
<
6
)
goto
fail
;
if
(
len
<
6
)
goto
fail
;
if
(
!
known_ae
(
message
[
2
]))
{
debugf
(
"Received IHU with unknown AE %d. Ignoring.
\n
"
,
message
[
2
]);
goto
done
;
}
DO_NTOHS
(
txcost
,
message
+
4
);
DO_NTOHS
(
txcost
,
message
+
4
);
DO_NTOHS
(
interval
,
message
+
6
);
DO_NTOHS
(
interval
,
message
+
6
);
rc
=
network_address
(
message
[
2
],
message
+
8
,
len
-
6
,
address
);
rc
=
network_address
(
message
[
2
],
message
+
8
,
len
-
6
,
address
);
...
@@ -614,8 +626,16 @@ parse_packet(const unsigned char *from, struct interface *ifp,
...
@@ -614,8 +626,16 @@ parse_packet(const unsigned char *from, struct interface *ifp,
have_v6_nh
=
0
;
have_v6_nh
=
0
;
goto
fail
;
goto
fail
;
}
}
rc
=
network_address
(
message
[
2
],
message
+
4
,
len
-
2
,
rc
=
network_address
(
message
[
2
],
message
+
4
,
len
-
2
,
nh
);
nh
);
if
(
!
known_ae
(
message
[
2
]))
{
debugf
(
"Received NH with unknown AE %d. Ignoring.
\n
"
,
message
[
2
]);
goto
done
;
}
if
(
message
[
2
]
==
0
)
{
debugf
(
"Received NH with bad AE 0. Error.
\n
"
);
goto
fail
;
}
if
(
rc
<
0
)
{
if
(
rc
<
0
)
{
have_v4_nh
=
0
;
have_v4_nh
=
0
;
have_v6_nh
=
0
;
have_v6_nh
=
0
;
...
@@ -646,6 +666,11 @@ parse_packet(const unsigned char *from, struct interface *ifp,
...
@@ -646,6 +666,11 @@ parse_packet(const unsigned char *from, struct interface *ifp,
have_v4_prefix
=
have_v6_prefix
=
0
;
have_v4_prefix
=
have_v6_prefix
=
0
;
goto
fail
;
goto
fail
;
}
}
if
(
!
known_ae
(
message
[
2
]))
{
debugf
(
"Received update with unknown AE %d. Ignoring.
\n
"
,
message
[
2
]);
goto
done
;
}
DO_NTOHS
(
interval
,
message
+
6
);
DO_NTOHS
(
interval
,
message
+
6
);
DO_NTOHS
(
seqno
,
message
+
8
);
DO_NTOHS
(
seqno
,
message
+
8
);
DO_NTOHS
(
metric
,
message
+
10
);
DO_NTOHS
(
metric
,
message
+
10
);
...
@@ -753,6 +778,11 @@ parse_packet(const unsigned char *from, struct interface *ifp,
...
@@ -753,6 +778,11 @@ parse_packet(const unsigned char *from, struct interface *ifp,
unsigned
char
prefix
[
16
],
src_prefix
[
16
],
plen
,
src_plen
;
unsigned
char
prefix
[
16
],
src_prefix
[
16
],
plen
,
src_plen
;
int
rc
,
is_ss
;
int
rc
,
is_ss
;
if
(
len
<
2
)
goto
fail
;
if
(
len
<
2
)
goto
fail
;
if
(
!
known_ae
(
message
[
2
]))
{
debugf
(
"Received request with unknown AE %d. Ignoring.
\n
"
,
message
[
2
]);
goto
done
;
}
rc
=
network_prefix
(
message
[
2
],
message
[
3
],
0
,
rc
=
network_prefix
(
message
[
2
],
message
[
3
],
0
,
message
+
4
,
NULL
,
len
-
2
,
prefix
);
message
+
4
,
NULL
,
len
-
2
,
prefix
);
if
(
rc
<
0
)
goto
fail
;
if
(
rc
<
0
)
goto
fail
;
...
@@ -802,6 +832,11 @@ parse_packet(const unsigned char *from, struct interface *ifp,
...
@@ -802,6 +832,11 @@ parse_packet(const unsigned char *from, struct interface *ifp,
unsigned
short
seqno
;
unsigned
short
seqno
;
int
rc
,
is_ss
;
int
rc
,
is_ss
;
if
(
len
<
14
)
goto
fail
;
if
(
len
<
14
)
goto
fail
;
if
(
!
known_ae
(
message
[
2
]))
{
debugf
(
"Received mh_request with unknown AE %d. Ignoring.
\n
"
,
message
[
2
]);
goto
done
;
}
DO_NTOHS
(
seqno
,
message
+
4
);
DO_NTOHS
(
seqno
,
message
+
4
);
rc
=
network_prefix
(
message
[
2
],
message
[
3
],
0
,
rc
=
network_prefix
(
message
[
2
],
message
[
3
],
0
,
message
+
16
,
NULL
,
len
-
14
,
prefix
);
message
+
16
,
NULL
,
len
-
14
,
prefix
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment