summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorJP Abgrall <jpa@google.com>2011-08-25 17:10:52 -0700
committerDan Willemsen <dwillemsen@nvidia.com>2011-11-30 21:39:02 -0800
commit5dbc25c0f9f3d6c5297c38993b44b7247ba1c539 (patch)
tree3ea7d8ae45ddebe442527a5f3051490885f6d99b /net
parent3f2c7974b7d2fb416ff38da05397df611a844b96 (diff)
netfilter: xt_qtaguid: fix dev_stats for missing NETDEV_UNREGISTER
Turns out that some devices don't call the notifier chains with NETDEV_UNREGISTER. So now we only track up/down as the points for tracking active/inactive transitions and saving the get_dev_stats(). Change-Id: I948755962b4c64150b4d04f294fb4889f151e42b Signed-off-by: JP Abgrall <jpa@google.com>
Diffstat (limited to 'net')
-rw-r--r--net/netfilter/xt_qtaguid.c23
1 files changed, 19 insertions, 4 deletions
diff --git a/net/netfilter/xt_qtaguid.c b/net/netfilter/xt_qtaguid.c
index 5afd4192f353..80b5990045bc 100644
--- a/net/netfilter/xt_qtaguid.c
+++ b/net/netfilter/xt_qtaguid.c
@@ -795,12 +795,12 @@ static void iface_stat_update(struct net_device *dev)
spin_lock_bh(&iface_stat_list_lock);
entry = get_iface_entry(dev->name);
if (entry == NULL) {
- IF_DEBUG("qtaguid: iface_stat_update: dev=%s not tracked\n",
+ IF_DEBUG("qtaguid: iface_stat: update(%s): not tracked\n",
dev->name);
spin_unlock_bh(&iface_stat_list_lock);
return;
}
- IF_DEBUG("qtaguid: iface_stat_update: dev=%s entry=%p\n",
+ IF_DEBUG("qtaguid: iface_stat: update(%s): entry=%p\n",
dev->name, entry);
if (entry->active) {
entry->tx_bytes += stats->tx_bytes;
@@ -808,8 +808,11 @@ static void iface_stat_update(struct net_device *dev)
entry->rx_bytes += stats->rx_bytes;
entry->rx_packets += stats->rx_packets;
entry->active = false;
+ IF_DEBUG("qtaguid: iface_stat: update(%s): "
+ " disable tracking. rx/tx=%llu/%llu\n",
+ dev->name, stats->rx_bytes, stats->tx_bytes);
} else {
- IF_DEBUG("qtaguid: iface_stat_update: dev=%s inactive\n",
+ IF_DEBUG("qtaguid: iface_stat: update(%s): disabled\n",
dev->name);
}
spin_unlock_bh(&iface_stat_list_lock);
@@ -951,7 +954,7 @@ static int iface_netdev_event_handler(struct notifier_block *nb,
case NETDEV_UP:
iface_stat_create(dev, NULL);
break;
- case NETDEV_UNREGISTER:
+ case NETDEV_DOWN:
iface_stat_update(dev);
break;
}
@@ -978,6 +981,12 @@ static int iface_inet6addr_event_handler(struct notifier_block *nb,
iface_stat_create_ipv6(dev, ifa);
atomic64_inc(&qtu_events.iface_events);
break;
+ case NETDEV_DOWN:
+ BUG_ON(!ifa || !ifa->idev);
+ dev = (struct net_device *)ifa->idev->dev;
+ iface_stat_update(dev);
+ atomic64_inc(&qtu_events.iface_events);
+ break;
}
return NOTIFY_DONE;
}
@@ -1002,6 +1011,12 @@ static int iface_inetaddr_event_handler(struct notifier_block *nb,
iface_stat_create(dev, ifa);
atomic64_inc(&qtu_events.iface_events);
break;
+ case NETDEV_DOWN:
+ BUG_ON(!ifa || !ifa->ifa_dev);
+ dev = ifa->ifa_dev->dev;
+ iface_stat_update(dev);
+ atomic64_inc(&qtu_events.iface_events);
+ break;
}
return NOTIFY_DONE;
}