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
e24feeb8
Commit
e24feeb8
authored
Aug 05, 2014
by
Matthieu Boutier
Committed by
Juliusz Chroboczek
Mar 13, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check link-local address changes.
parent
43bdeb2f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
30 deletions
+37
-30
interface.c
interface.c
+37
-30
No files found.
interface.c
View file @
e24feeb8
...
@@ -177,6 +177,40 @@ check_interface_channel(struct interface *ifp)
...
@@ -177,6 +177,40 @@ check_interface_channel(struct interface *ifp)
return
0
;
return
0
;
}
}
static
int
check_link_local_addresses
(
struct
interface
*
ifp
)
{
struct
kernel_route
ll
[
32
];
int
rc
,
i
;
if
(
ifp
->
ll
)
free
(
ifp
->
ll
);
ifp
->
numll
=
0
;
ifp
->
ll
=
NULL
;
rc
=
kernel_addresses
(
ifp
->
name
,
ifp
->
ifindex
,
1
,
ll
,
32
);
if
(
rc
<
0
)
{
perror
(
"kernel_addresses(link local)"
);
return
-
1
;
}
else
if
(
rc
==
0
)
{
fprintf
(
stderr
,
"Interface %s has no link-local address.
\n
"
,
ifp
->
name
);
/* Most probably DAD hasn't finished yet. Reschedule us
real soon. */
schedule_interfaces_check
(
2000
,
0
);
return
-
1
;
}
else
{
ifp
->
ll
=
malloc
(
16
*
rc
);
if
(
ifp
->
ll
==
NULL
)
{
perror
(
"malloc(ll)"
);
}
else
{
for
(
i
=
0
;
i
<
rc
;
i
++
)
memcpy
(
ifp
->
ll
[
i
],
ll
[
i
].
prefix
,
16
);
ifp
->
numll
=
rc
;
}
}
return
0
;
}
int
int
interface_up
(
struct
interface
*
ifp
,
int
up
)
interface_up
(
struct
interface
*
ifp
,
int
up
)
{
{
...
@@ -192,7 +226,6 @@ interface_up(struct interface *ifp, int up)
...
@@ -192,7 +226,6 @@ interface_up(struct interface *ifp, int up)
ifp
->
flags
&=
~
IF_UP
;
ifp
->
flags
&=
~
IF_UP
;
if
(
up
)
{
if
(
up
)
{
struct
kernel_route
ll
[
32
];
if
(
ifp
->
ifindex
<=
0
)
{
if
(
ifp
->
ifindex
<=
0
)
{
fprintf
(
stderr
,
fprintf
(
stderr
,
"Upping unknown interface %s.
\n
"
,
ifp
->
name
);
"Upping unknown interface %s.
\n
"
,
ifp
->
name
);
...
@@ -329,32 +362,7 @@ interface_up(struct interface *ifp, int up)
...
@@ -329,32 +362,7 @@ interface_up(struct interface *ifp, int up)
ifp
->
max_rtt_penalty
>
0
))
ifp
->
max_rtt_penalty
>
0
))
ifp
->
flags
|=
IF_TIMESTAMPS
;
ifp
->
flags
|=
IF_TIMESTAMPS
;
if
(
ifp
->
ll
)
check_link_local_addresses
(
ifp
);
free
(
ifp
->
ll
);
ifp
->
numll
=
0
;
ifp
->
ll
=
NULL
;
rc
=
kernel_addresses
(
ifp
->
name
,
ifp
->
ifindex
,
1
,
ll
,
32
);
if
(
rc
<
0
)
{
perror
(
"kernel_addresses(link local)"
);
goto
fail
;
}
else
if
(
rc
==
0
)
{
fprintf
(
stderr
,
"Interface %s has no link-local address.
\n
"
,
ifp
->
name
);
/* Most probably DAD hasn't finished yet. Reschedule us
real soon. */
goto
fail_retry
;
}
else
{
ifp
->
ll
=
malloc
(
16
*
rc
);
if
(
ifp
->
ll
==
NULL
)
{
perror
(
"malloc(ll)"
);
}
else
{
int
i
;
for
(
i
=
0
;
i
<
rc
;
i
++
)
memcpy
(
ifp
->
ll
[
i
],
ll
[
i
].
prefix
,
16
);
ifp
->
numll
=
rc
;
}
}
memset
(
&
mreq
,
0
,
sizeof
(
mreq
));
memset
(
&
mreq
,
0
,
sizeof
(
mreq
));
memcpy
(
&
mreq
.
ipv6mr_multiaddr
,
protocol_group
,
16
);
memcpy
(
&
mreq
.
ipv6mr_multiaddr
,
protocol_group
,
16
);
mreq
.
ipv6mr_interface
=
ifp
->
ifindex
;
mreq
.
ipv6mr_interface
=
ifp
->
ifindex
;
...
@@ -411,8 +419,6 @@ interface_up(struct interface *ifp, int up)
...
@@ -411,8 +419,6 @@ interface_up(struct interface *ifp, int up)
return
1
;
return
1
;
fail_retry:
schedule_interfaces_check
(
2000
,
0
);
fail:
fail:
assert
(
up
);
assert
(
up
);
interface_up
(
ifp
,
0
);
interface_up
(
ifp
,
0
);
...
@@ -462,7 +468,8 @@ check_interfaces(void)
...
@@ -462,7 +468,8 @@ check_interfaces(void)
if
(
if_up
(
ifp
))
{
if
(
if_up
(
ifp
))
{
/* Bother, said Pooh. We should probably check for a change
/* Bother, said Pooh. We should probably check for a change
in link-local and IPv4 addresses at this point. */
in IPv4 addresses at this point. */
check_link_local_addresses
(
ifp
);
check_interface_channel
(
ifp
);
check_interface_channel
(
ifp
);
rc
=
check_interface_ipv4
(
ifp
);
rc
=
check_interface_ipv4
(
ifp
);
if
(
rc
>
0
)
{
if
(
rc
>
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