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
a6243674
Commit
a6243674
authored
Jun 17, 2007
by
Juliusz Chroboczek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Protect against weird data coming from kernel.
parent
d59287f6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
11 deletions
+15
-11
kernel.c
kernel.c
+15
-11
No files found.
kernel.c
View file @
a6243674
...
...
@@ -636,7 +636,7 @@ kernel_route(int operation, const unsigned char *dest, unsigned short plen,
static
int
parse_kernel_route_rta
(
struct
rtmsg
*
rtm
,
int
len
,
struct
kernel_route
*
route
)
{
int
table
=
RT_TABLE_MAIN
;
struct
rtattr
*
rta
=
RTM_RTA
(
rtm
);;
len
-=
NLMSG_ALIGN
(
sizeof
(
*
rtm
));
...
...
@@ -659,10 +659,12 @@ parse_kernel_route_rta(struct rtmsg *rtm, int len, struct kernel_route *route)
break
;
case
RTA_PRIORITY
:
route
->
metric
=
*
(
int
*
)
RTA_DATA
(
rta
);
if
(
route
->
metric
<
0
||
route
->
metric
>
KERNEL_INFINITY
)
route
->
metric
=
KERNEL_INFINITY
;
break
;
#ifdef RTA_TABLE
case
RTA_TABLE
:
*
table
=
*
(
int
*
)
RTA_DATA
(
rta
);
table
=
*
(
int
*
)
RTA_DATA
(
rta
);
break
;
#endif
default:
...
...
@@ -671,10 +673,9 @@ parse_kernel_route_rta(struct rtmsg *rtm, int len, struct kernel_route *route)
rta
=
RTA_NEXT
(
rta
,
len
);
}
route
->
metric
=
MIN
(
route
->
metric
,
KERNEL_INFINITY
);
// TODO Error handling ?? len != 0
if
(
table
!=
RT_TABLE_MAIN
)
return
-
1
;
return
0
;
}
static
void
...
...
@@ -703,7 +704,7 @@ print_kernel_route(int add, int protocol, int type,
static
int
monitor_kernel_route
(
struct
nlmsghdr
*
nh
,
void
*
data
)
{
int
rc
;
struct
kernel_route
route
;
int
len
=
nh
->
nlmsg_len
;
...
...
@@ -719,9 +720,10 @@ monitor_kernel_route(struct nlmsghdr *nh, void *data)
return
0
;
if
(
debug
>=
2
)
{
parse_kernel_route_rta
(
rtm
,
len
,
&
route
);
print_kernel_route
(
nh
->
nlmsg_type
,
rtm
->
rtm_protocol
,
rtm
->
rtm_type
,
&
route
);
rc
=
parse_kernel_route_rta
(
rtm
,
len
,
&
route
);
if
(
rc
>=
0
)
print_kernel_route
(
nh
->
nlmsg_type
,
rtm
->
rtm_protocol
,
rtm
->
rtm_type
,
&
route
);
}
return
1
;
...
...
@@ -730,7 +732,7 @@ monitor_kernel_route(struct nlmsghdr *nh, void *data)
static
int
filter_kernel_routes
(
struct
nlmsghdr
*
nh
,
void
*
data
)
{
int
rc
;
void
**
args
=
(
void
**
)
data
;
int
maxplen
=
*
(
int
*
)
args
[
0
];
int
maxroutes
=
*
(
int
*
)
args
[
1
];
...
...
@@ -762,7 +764,9 @@ filter_kernel_routes(struct nlmsghdr *nh, void *data)
if
(
rtm
->
rtm_table
!=
RT_TABLE_MAIN
)
return
0
;
parse_kernel_route_rta
(
rtm
,
len
,
&
routes
[
*
found
]);
rc
=
parse_kernel_route_rta
(
rtm
,
len
,
&
routes
[
*
found
]);
if
(
rc
<
0
)
return
0
;
if
(
rtm
->
rtm_dst_len
>=
8
&&
(
routes
[
*
found
].
prefix
[
0
]
==
0xFF
||
routes
[
*
found
].
prefix
[
0
]
==
0
))
...
...
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