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
d2da6d17
Commit
d2da6d17
authored
Apr 29, 2007
by
Juliusz Chroboczek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement last-ditch send moderation.
parent
18811d3d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
58 additions
and
22 deletions
+58
-22
babel.c
babel.c
+2
-0
babel.h
babel.h
+2
-0
message.c
message.c
+54
-22
No files found.
babel.c
View file @
d2da6d17
...
...
@@ -607,6 +607,8 @@ add_network(char *ifname, int ifindex, int mtu,
}
nets
[
numnets
].
sendbuf
=
p
;
nets
[
numnets
].
buffered
=
0
;
nets
[
numnets
].
bucket_time
=
now
.
tv_sec
;
nets
[
numnets
].
bucket
=
0
;
numnets
++
;
return
&
nets
[
numnets
-
1
];
}
...
...
babel.h
View file @
d2da6d17
...
...
@@ -70,6 +70,8 @@ struct network {
struct
timeval
flush_time
;
int
bufsize
;
unsigned
char
*
sendbuf
;
int
bucket_time
;
unsigned
int
bucket
;
unsigned
char
hello_seqno
;
unsigned
int
hello_interval
;
unsigned
int
self_update_interval
;
...
...
message.c
View file @
d2da6d17
...
...
@@ -157,6 +157,28 @@ parse_packet(const unsigned char *from, struct network *net,
return
;
}
/* Under normal circumstances, there are enough moderation mechanisms
elsewhere in the protocol to make sure that this last-ditch check
should never trigger. But I'm superstitious. */
static
int
check_bucket
(
struct
network
*
net
)
{
if
(
net
->
bucket
>
0
&&
now
.
tv_sec
>
net
->
bucket_time
)
{
net
->
bucket
=
MAX
(
0
,
net
->
bucket
-
40
*
(
now
.
tv_sec
-
net
->
bucket_time
));
}
net
->
bucket_time
=
now
.
tv_sec
;
if
(
net
->
bucket
<
400
)
{
net
->
bucket
++
;
return
1
;
}
else
{
return
0
;
}
}
void
flushbuf
(
struct
network
*
net
)
{
...
...
@@ -171,17 +193,22 @@ flushbuf(struct network *net)
if
(
net
->
buffered
>
0
)
{
debugf
(
" (flushing %d buffered bytes on %s)
\n
"
,
net
->
buffered
,
net
->
ifname
);
memset
(
&
sin6
,
0
,
sizeof
(
sin6
));
sin6
.
sin6_family
=
AF_INET6
;
memcpy
(
&
sin6
.
sin6_addr
,
protocol_group
,
16
);
sin6
.
sin6_port
=
htons
(
protocol_port
);
sin6
.
sin6_scope_id
=
net
->
ifindex
;
rc
=
babel_send
(
protocol_socket
,
packet_header
,
sizeof
(
packet_header
),
net
->
sendbuf
,
net
->
buffered
,
(
struct
sockaddr
*
)
&
sin6
,
sizeof
(
sin6
));
if
(
rc
<
0
)
perror
(
"send"
);
if
(
check_bucket
(
net
))
{
memset
(
&
sin6
,
0
,
sizeof
(
sin6
));
sin6
.
sin6_family
=
AF_INET6
;
memcpy
(
&
sin6
.
sin6_addr
,
protocol_group
,
16
);
sin6
.
sin6_port
=
htons
(
protocol_port
);
sin6
.
sin6_scope_id
=
net
->
ifindex
;
rc
=
babel_send
(
protocol_socket
,
packet_header
,
sizeof
(
packet_header
),
net
->
sendbuf
,
net
->
buffered
,
(
struct
sockaddr
*
)
&
sin6
,
sizeof
(
sin6
));
if
(
rc
<
0
)
perror
(
"send"
);
}
else
{
fprintf
(
stderr
,
"Warning: bucket full, dropping packet to %s.
\n
"
,
net
->
ifname
);
}
}
VALGRIND_MAKE_MEM_UNDEFINED
(
net
->
sendbuf
,
net
->
bufsize
);
net
->
buffered
=
0
;
...
...
@@ -273,17 +300,22 @@ send_unicast_packet(struct neighbour *neigh, unsigned char *buf, int buflen)
struct
sockaddr_in6
sin6
;
int
rc
;
memset
(
&
sin6
,
0
,
sizeof
(
sin6
));
sin6
.
sin6_family
=
AF_INET6
;
memcpy
(
&
sin6
.
sin6_addr
,
neigh
->
address
,
16
);
sin6
.
sin6_port
=
htons
(
protocol_port
);
sin6
.
sin6_scope_id
=
neigh
->
network
->
ifindex
;
rc
=
babel_send
(
protocol_socket
,
packet_header
,
sizeof
(
packet_header
),
buf
,
buflen
,
(
struct
sockaddr
*
)
&
sin6
,
sizeof
(
sin6
));
if
(
rc
<
0
)
perror
(
"send(unicast)"
);
if
(
check_bucket
(
neigh
->
network
))
{
memset
(
&
sin6
,
0
,
sizeof
(
sin6
));
sin6
.
sin6_family
=
AF_INET6
;
memcpy
(
&
sin6
.
sin6_addr
,
neigh
->
address
,
16
);
sin6
.
sin6_port
=
htons
(
protocol_port
);
sin6
.
sin6_scope_id
=
neigh
->
network
->
ifindex
;
rc
=
babel_send
(
protocol_socket
,
packet_header
,
sizeof
(
packet_header
),
buf
,
buflen
,
(
struct
sockaddr
*
)
&
sin6
,
sizeof
(
sin6
));
if
(
rc
<
0
)
perror
(
"send(unicast)"
);
}
else
{
fprintf
(
stderr
,
"Warning: bucket full, dropping packet to %s.
\n
"
,
neigh
->
network
->
ifname
);
}
}
...
...
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