aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2013-07-03 13:31:35 +0200
committerGravatar Christian Hesse <mail@eworm.de>2013-07-03 13:31:35 +0200
commit4095a6e8355c0d93e225994d71ff5c5f01476c7a (patch)
tree9165f57b62f7a9ecae5d29df9b00408de4cf3c85
parentd38b173fd51b6a514b3eb600e55a8065790176ec (diff)
downloadnetlink-notify-4095a6e8355c0d93e225994d71ff5c5f01476c7a.tar.gz
netlink-notify-4095a6e8355c0d93e225994d71ff5c5f01476c7a.tar.zst
remove address from struct chain if it disapears from interface
-rw-r--r--netlink-notify.c32
1 files changed, 30 insertions, 2 deletions
diff --git a/netlink-notify.c b/netlink-notify.c
index c5928d3..6444879 100644
--- a/netlink-notify.c
+++ b/netlink-notify.c
@@ -79,6 +79,19 @@ void free_chain(struct addresses_seen *addresses_seen) {
}
}
+/*** remove_address ***/
+void remove_address(struct addresses_seen *next, char *address, unsigned char prefix) {
+ while (next->next != NULL) {
+ if (next->address != NULL /* next->address can be NULL if it has been removed from interface */ &&
+ strcmp(next->address, address) == 0 && next->prefix == prefix) {
+ free(next->address);
+ next->address = NULL;
+ next->prefix = 0;
+ }
+ next = next->next;
+ }
+}
+
/*** newstr_link ***/
char * newstr_link(char *text, char *interface, unsigned int flags) {
char *notifystr;
@@ -217,7 +230,8 @@ static int msg_handler (struct sockaddr_nl *nl, struct nlmsghdr *msg) {
#endif
switch (msg->nlmsg_type) {
- /* just return for cases we want to ignore */
+ /* just return for cases we want to ignore
+ * use break if a notification has to be displayed */
case RTM_NEWADDR:
rth = IFA_RTA (ifa);
rtl = IFA_PAYLOAD (msg);
@@ -233,7 +247,8 @@ static int msg_handler (struct sockaddr_nl *nl, struct nlmsghdr *msg) {
/* check if we already notified about this address */
while (next->next != NULL) {
- if (strcmp(next->address, buf) == 0 && next->prefix == ifa->ifa_prefixlen) {
+ if (next->address != NULL /* next->address can be NULL if it has been removed from interface */ &&
+ strcmp(next->address, buf) == 0 && next->prefix == ifa->ifa_prefixlen) {
#if DEBUG
printf("%s: Already notified about address %s/%d, skipping.\n", program, buf, ifa->ifa_prefixlen);
#endif
@@ -274,6 +289,19 @@ static int msg_handler (struct sockaddr_nl *nl, struct nlmsghdr *msg) {
break;
case RTM_DELADDR:
+ rth = IFA_RTA (ifa);
+ rtl = IFA_PAYLOAD (msg);
+
+ while (rtl && RTA_OK (rth, rtl)) {
+ if ((rth->rta_type == IFA_LOCAL /* IPv4 */
+ || rth->rta_type == IFA_ADDRESS /* IPv6 */)
+ && ifa->ifa_scope == RT_SCOPE_UNIVERSE /* no IPv6 scope link */) {
+ inet_ntop(ifa->ifa_family, RTA_DATA (rth), buf, sizeof(buf));
+ remove_address(&addresses_seen[ifi->ifi_index], buf, ifa->ifa_prefixlen);
+ }
+ rth = RTA_NEXT (rth, rtl);
+ }
+
return 0;
case RTM_NEWROUTE:
return 0;