blob: a7cad741df012a2b7790246d6c2d569bac38bda4 [file] [log] [blame]
Neil Horman9a8afc82009-03-11 09:51:26 +00001/*
2 * Monitoring code for network dropped packet alerts
3 *
4 * Copyright (C) 2009 Neil Horman <nhorman@tuxdriver.com>
5 */
6
7#include <linux/netdevice.h>
8#include <linux/etherdevice.h>
9#include <linux/string.h>
10#include <linux/if_arp.h>
11#include <linux/inetdevice.h>
12#include <linux/inet.h>
13#include <linux/interrupt.h>
14#include <linux/netpoll.h>
15#include <linux/sched.h>
16#include <linux/delay.h>
17#include <linux/types.h>
18#include <linux/workqueue.h>
19#include <linux/netlink.h>
20#include <linux/net_dropmon.h>
21#include <linux/percpu.h>
22#include <linux/timer.h>
23#include <linux/bitops.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Neil Horman9a8afc82009-03-11 09:51:26 +000025#include <net/genetlink.h>
Neil Horman4ea7e382009-05-21 07:36:08 +000026#include <net/netevent.h>
Neil Horman9a8afc82009-03-11 09:51:26 +000027
Steven Rostedtad8d75f2009-04-14 19:39:12 -040028#include <trace/events/skb.h>
David S. Miller9cbc1cb2009-06-15 03:02:23 -070029#include <trace/events/napi.h>
Neil Horman9a8afc82009-03-11 09:51:26 +000030
31#include <asm/unaligned.h>
32
33#define TRACE_ON 1
34#define TRACE_OFF 0
35
36static void send_dm_alert(struct work_struct *unused);
37
38
39/*
40 * Globals, our netlink socket pointer
41 * and the work handle that will send up
42 * netlink alerts
43 */
Neil Horman4ea7e382009-05-21 07:36:08 +000044static int trace_state = TRACE_OFF;
Neil Hormancde2e9a2012-04-27 10:11:48 +000045static DEFINE_MUTEX(trace_state_mutex);
Neil Horman9a8afc82009-03-11 09:51:26 +000046
47struct per_cpu_dm_data {
48 struct work_struct dm_alert_work;
Neil Horman3885ca72012-04-27 10:11:49 +000049 struct sk_buff __rcu *skb;
Neil Horman9a8afc82009-03-11 09:51:26 +000050 atomic_t dm_hit_count;
51 struct timer_list send_timer;
Neil Horman4fdcfa12012-05-01 08:18:02 +000052 int cpu;
Neil Horman9a8afc82009-03-11 09:51:26 +000053};
54
Neil Horman4ea7e382009-05-21 07:36:08 +000055struct dm_hw_stat_delta {
56 struct net_device *dev;
Neil Horman5848cc02009-09-02 14:37:45 -070057 unsigned long last_rx;
Neil Horman4ea7e382009-05-21 07:36:08 +000058 struct list_head list;
59 struct rcu_head rcu;
60 unsigned long last_drop_val;
61};
62
Neil Horman9a8afc82009-03-11 09:51:26 +000063static struct genl_family net_drop_monitor_family = {
64 .id = GENL_ID_GENERATE,
65 .hdrsize = 0,
66 .name = "NET_DM",
Neil Horman683703a2009-04-27 03:17:31 -070067 .version = 2,
Neil Horman9a8afc82009-03-11 09:51:26 +000068 .maxattr = NET_DM_CMD_MAX,
69};
70
71static DEFINE_PER_CPU(struct per_cpu_dm_data, dm_cpu_data);
72
73static int dm_hit_limit = 64;
74static int dm_delay = 1;
Neil Horman4ea7e382009-05-21 07:36:08 +000075static unsigned long dm_hw_check_delta = 2*HZ;
76static LIST_HEAD(hw_stats_list);
Neil Horman9a8afc82009-03-11 09:51:26 +000077
78static void reset_per_cpu_data(struct per_cpu_dm_data *data)
79{
80 size_t al;
81 struct net_dm_alert_msg *msg;
Neil Horman683703a2009-04-27 03:17:31 -070082 struct nlattr *nla;
Neil Horman3885ca72012-04-27 10:11:49 +000083 struct sk_buff *skb;
84 struct sk_buff *oskb = rcu_dereference_protected(data->skb, 1);
Neil Horman9a8afc82009-03-11 09:51:26 +000085
86 al = sizeof(struct net_dm_alert_msg);
87 al += dm_hit_limit * sizeof(struct net_dm_drop_point);
Neil Horman683703a2009-04-27 03:17:31 -070088 al += sizeof(struct nlattr);
89
Neil Horman3885ca72012-04-27 10:11:49 +000090 skb = genlmsg_new(al, GFP_KERNEL);
91
92 if (skb) {
93 genlmsg_put(skb, 0, 0, &net_drop_monitor_family,
94 0, NET_DM_CMD_ALERT);
95 nla = nla_reserve(skb, NLA_UNSPEC,
96 sizeof(struct net_dm_alert_msg));
97 msg = nla_data(nla);
98 memset(msg, 0, al);
Neil Horman4fdcfa12012-05-01 08:18:02 +000099 } else
100 schedule_work_on(data->cpu, &data->dm_alert_work);
Neil Horman3885ca72012-04-27 10:11:49 +0000101
102 /*
103 * Don't need to lock this, since we are guaranteed to only
104 * run this on a single cpu at a time.
105 * Note also that we only update data->skb if the old and new skb
106 * pointers don't match. This ensures that we don't continually call
107 * synchornize_rcu if we repeatedly fail to alloc a new netlink message.
108 */
109 if (skb != oskb) {
110 rcu_assign_pointer(data->skb, skb);
111
112 synchronize_rcu();
113
114 atomic_set(&data->dm_hit_count, dm_hit_limit);
115 }
116
Neil Horman9a8afc82009-03-11 09:51:26 +0000117}
118
119static void send_dm_alert(struct work_struct *unused)
120{
121 struct sk_buff *skb;
Neil Horman3885ca72012-04-27 10:11:49 +0000122 struct per_cpu_dm_data *data = &get_cpu_var(dm_cpu_data);
Neil Horman9a8afc82009-03-11 09:51:26 +0000123
Neil Horman4fdcfa12012-05-01 08:18:02 +0000124 WARN_ON_ONCE(data->cpu != smp_processor_id());
125
Neil Horman9a8afc82009-03-11 09:51:26 +0000126 /*
127 * Grab the skb we're about to send
128 */
Neil Horman3885ca72012-04-27 10:11:49 +0000129 skb = rcu_dereference_protected(data->skb, 1);
Neil Horman9a8afc82009-03-11 09:51:26 +0000130
131 /*
132 * Replace it with a new one
133 */
134 reset_per_cpu_data(data);
135
136 /*
137 * Ship it!
138 */
Neil Horman3885ca72012-04-27 10:11:49 +0000139 if (skb)
140 genlmsg_multicast(skb, 0, NET_DM_GRP_ALERT, GFP_KERNEL);
Neil Horman9a8afc82009-03-11 09:51:26 +0000141
Neil Horman3885ca72012-04-27 10:11:49 +0000142 put_cpu_var(dm_cpu_data);
Neil Horman9a8afc82009-03-11 09:51:26 +0000143}
144
145/*
146 * This is the timer function to delay the sending of an alert
147 * in the event that more drops will arrive during the
148 * hysteresis period. Note that it operates under the timer interrupt
149 * so we don't need to disable preemption here
150 */
151static void sched_send_work(unsigned long unused)
152{
Neil Horman3885ca72012-04-27 10:11:49 +0000153 struct per_cpu_dm_data *data = &get_cpu_var(dm_cpu_data);
Neil Horman9a8afc82009-03-11 09:51:26 +0000154
Neil Horman3885ca72012-04-27 10:11:49 +0000155 schedule_work_on(smp_processor_id(), &data->dm_alert_work);
156
157 put_cpu_var(dm_cpu_data);
Neil Horman9a8afc82009-03-11 09:51:26 +0000158}
159
Neil Horman4ea7e382009-05-21 07:36:08 +0000160static void trace_drop_common(struct sk_buff *skb, void *location)
Neil Horman9a8afc82009-03-11 09:51:26 +0000161{
162 struct net_dm_alert_msg *msg;
163 struct nlmsghdr *nlh;
Neil Horman683703a2009-04-27 03:17:31 -0700164 struct nlattr *nla;
Neil Horman9a8afc82009-03-11 09:51:26 +0000165 int i;
Neil Horman3885ca72012-04-27 10:11:49 +0000166 struct sk_buff *dskb;
167 struct per_cpu_dm_data *data = &get_cpu_var(dm_cpu_data);
Neil Horman9a8afc82009-03-11 09:51:26 +0000168
169
Neil Horman3885ca72012-04-27 10:11:49 +0000170 rcu_read_lock();
171 dskb = rcu_dereference(data->skb);
172
173 if (!dskb)
174 goto out;
175
Neil Horman9a8afc82009-03-11 09:51:26 +0000176 if (!atomic_add_unless(&data->dm_hit_count, -1, 0)) {
177 /*
178 * we're already at zero, discard this hit
179 */
180 goto out;
181 }
182
Neil Horman3885ca72012-04-27 10:11:49 +0000183 nlh = (struct nlmsghdr *)dskb->data;
Neil Horman683703a2009-04-27 03:17:31 -0700184 nla = genlmsg_data(nlmsg_data(nlh));
185 msg = nla_data(nla);
Neil Horman9a8afc82009-03-11 09:51:26 +0000186 for (i = 0; i < msg->entries; i++) {
187 if (!memcmp(&location, msg->points[i].pc, sizeof(void *))) {
188 msg->points[i].count++;
Eric Dumazetbbe362b2012-04-19 07:16:21 +0000189 atomic_inc(&data->dm_hit_count);
Neil Horman9a8afc82009-03-11 09:51:26 +0000190 goto out;
191 }
192 }
193
194 /*
195 * We need to create a new entry
196 */
Neil Horman3885ca72012-04-27 10:11:49 +0000197 __nla_reserve_nohdr(dskb, sizeof(struct net_dm_drop_point));
Neil Horman683703a2009-04-27 03:17:31 -0700198 nla->nla_len += NLA_ALIGN(sizeof(struct net_dm_drop_point));
Neil Horman9a8afc82009-03-11 09:51:26 +0000199 memcpy(msg->points[msg->entries].pc, &location, sizeof(void *));
200 msg->points[msg->entries].count = 1;
201 msg->entries++;
202
203 if (!timer_pending(&data->send_timer)) {
204 data->send_timer.expires = jiffies + dm_delay * HZ;
205 add_timer_on(&data->send_timer, smp_processor_id());
206 }
207
208out:
Neil Horman3885ca72012-04-27 10:11:49 +0000209 rcu_read_unlock();
210 put_cpu_var(dm_cpu_data);
Neil Horman9a8afc82009-03-11 09:51:26 +0000211 return;
212}
213
Steven Rostedt38516ab2010-04-20 17:04:50 -0400214static void trace_kfree_skb_hit(void *ignore, struct sk_buff *skb, void *location)
Neil Horman4ea7e382009-05-21 07:36:08 +0000215{
216 trace_drop_common(skb, location);
217}
218
Steven Rostedt38516ab2010-04-20 17:04:50 -0400219static void trace_napi_poll_hit(void *ignore, struct napi_struct *napi)
Neil Horman4ea7e382009-05-21 07:36:08 +0000220{
221 struct dm_hw_stat_delta *new_stat;
222
223 /*
Neil Horman5848cc02009-09-02 14:37:45 -0700224 * Don't check napi structures with no associated device
Neil Horman4ea7e382009-05-21 07:36:08 +0000225 */
Neil Horman5848cc02009-09-02 14:37:45 -0700226 if (!napi->dev)
Neil Horman4ea7e382009-05-21 07:36:08 +0000227 return;
228
229 rcu_read_lock();
230 list_for_each_entry_rcu(new_stat, &hw_stats_list, list) {
Neil Horman5848cc02009-09-02 14:37:45 -0700231 /*
232 * only add a note to our monitor buffer if:
233 * 1) this is the dev we received on
234 * 2) its after the last_rx delta
235 * 3) our rx_dropped count has gone up
236 */
Neil Horman4ea7e382009-05-21 07:36:08 +0000237 if ((new_stat->dev == napi->dev) &&
Neil Horman5848cc02009-09-02 14:37:45 -0700238 (time_after(jiffies, new_stat->last_rx + dm_hw_check_delta)) &&
Neil Horman4ea7e382009-05-21 07:36:08 +0000239 (napi->dev->stats.rx_dropped != new_stat->last_drop_val)) {
240 trace_drop_common(NULL, NULL);
241 new_stat->last_drop_val = napi->dev->stats.rx_dropped;
Neil Horman5848cc02009-09-02 14:37:45 -0700242 new_stat->last_rx = jiffies;
Neil Horman4ea7e382009-05-21 07:36:08 +0000243 break;
244 }
245 }
246 rcu_read_unlock();
247}
248
Neil Horman9a8afc82009-03-11 09:51:26 +0000249static int set_all_monitor_traces(int state)
250{
251 int rc = 0;
Neil Horman4ea7e382009-05-21 07:36:08 +0000252 struct dm_hw_stat_delta *new_stat = NULL;
253 struct dm_hw_stat_delta *temp;
254
Neil Hormancde2e9a2012-04-27 10:11:48 +0000255 mutex_lock(&trace_state_mutex);
Neil Horman9a8afc82009-03-11 09:51:26 +0000256
Neil Horman4b706372010-07-20 04:52:09 +0000257 if (state == trace_state) {
258 rc = -EAGAIN;
259 goto out_unlock;
260 }
261
Neil Horman9a8afc82009-03-11 09:51:26 +0000262 switch (state) {
263 case TRACE_ON:
Steven Rostedt38516ab2010-04-20 17:04:50 -0400264 rc |= register_trace_kfree_skb(trace_kfree_skb_hit, NULL);
265 rc |= register_trace_napi_poll(trace_napi_poll_hit, NULL);
Neil Horman9a8afc82009-03-11 09:51:26 +0000266 break;
267 case TRACE_OFF:
Steven Rostedt38516ab2010-04-20 17:04:50 -0400268 rc |= unregister_trace_kfree_skb(trace_kfree_skb_hit, NULL);
269 rc |= unregister_trace_napi_poll(trace_napi_poll_hit, NULL);
Neil Horman9a8afc82009-03-11 09:51:26 +0000270
271 tracepoint_synchronize_unregister();
Neil Horman4ea7e382009-05-21 07:36:08 +0000272
273 /*
274 * Clean the device list
275 */
276 list_for_each_entry_safe(new_stat, temp, &hw_stats_list, list) {
277 if (new_stat->dev == NULL) {
278 list_del_rcu(&new_stat->list);
Lai Jiangshanfa81c0e2011-03-18 11:39:43 +0800279 kfree_rcu(new_stat, rcu);
Neil Horman4ea7e382009-05-21 07:36:08 +0000280 }
281 }
Neil Horman9a8afc82009-03-11 09:51:26 +0000282 break;
283 default:
284 rc = 1;
285 break;
286 }
287
Neil Horman4ea7e382009-05-21 07:36:08 +0000288 if (!rc)
289 trace_state = state;
Neil Horman4b706372010-07-20 04:52:09 +0000290 else
291 rc = -EINPROGRESS;
Neil Horman4ea7e382009-05-21 07:36:08 +0000292
Neil Horman4b706372010-07-20 04:52:09 +0000293out_unlock:
Neil Hormancde2e9a2012-04-27 10:11:48 +0000294 mutex_unlock(&trace_state_mutex);
Neil Horman4ea7e382009-05-21 07:36:08 +0000295
Neil Horman9a8afc82009-03-11 09:51:26 +0000296 return rc;
297}
298
299
300static int net_dm_cmd_config(struct sk_buff *skb,
301 struct genl_info *info)
302{
303 return -ENOTSUPP;
304}
305
306static int net_dm_cmd_trace(struct sk_buff *skb,
307 struct genl_info *info)
308{
309 switch (info->genlhdr->cmd) {
310 case NET_DM_CMD_START:
311 return set_all_monitor_traces(TRACE_ON);
312 break;
313 case NET_DM_CMD_STOP:
314 return set_all_monitor_traces(TRACE_OFF);
315 break;
316 }
317
318 return -ENOTSUPP;
319}
320
Neil Horman4ea7e382009-05-21 07:36:08 +0000321static int dropmon_net_event(struct notifier_block *ev_block,
322 unsigned long event, void *ptr)
323{
324 struct net_device *dev = ptr;
325 struct dm_hw_stat_delta *new_stat = NULL;
326 struct dm_hw_stat_delta *tmp;
327
328 switch (event) {
329 case NETDEV_REGISTER:
330 new_stat = kzalloc(sizeof(struct dm_hw_stat_delta), GFP_KERNEL);
331
332 if (!new_stat)
333 goto out;
334
335 new_stat->dev = dev;
Neil Horman5848cc02009-09-02 14:37:45 -0700336 new_stat->last_rx = jiffies;
Neil Hormancde2e9a2012-04-27 10:11:48 +0000337 mutex_lock(&trace_state_mutex);
Neil Horman4ea7e382009-05-21 07:36:08 +0000338 list_add_rcu(&new_stat->list, &hw_stats_list);
Neil Hormancde2e9a2012-04-27 10:11:48 +0000339 mutex_unlock(&trace_state_mutex);
Neil Horman4ea7e382009-05-21 07:36:08 +0000340 break;
341 case NETDEV_UNREGISTER:
Neil Hormancde2e9a2012-04-27 10:11:48 +0000342 mutex_lock(&trace_state_mutex);
Neil Horman4ea7e382009-05-21 07:36:08 +0000343 list_for_each_entry_safe(new_stat, tmp, &hw_stats_list, list) {
344 if (new_stat->dev == dev) {
345 new_stat->dev = NULL;
346 if (trace_state == TRACE_OFF) {
347 list_del_rcu(&new_stat->list);
Lai Jiangshanfa81c0e2011-03-18 11:39:43 +0800348 kfree_rcu(new_stat, rcu);
Neil Horman4ea7e382009-05-21 07:36:08 +0000349 break;
350 }
351 }
352 }
Neil Hormancde2e9a2012-04-27 10:11:48 +0000353 mutex_unlock(&trace_state_mutex);
Neil Horman4ea7e382009-05-21 07:36:08 +0000354 break;
355 }
356out:
357 return NOTIFY_DONE;
358}
Neil Horman9a8afc82009-03-11 09:51:26 +0000359
360static struct genl_ops dropmon_ops[] = {
361 {
362 .cmd = NET_DM_CMD_CONFIG,
363 .doit = net_dm_cmd_config,
364 },
365 {
366 .cmd = NET_DM_CMD_START,
367 .doit = net_dm_cmd_trace,
368 },
369 {
370 .cmd = NET_DM_CMD_STOP,
371 .doit = net_dm_cmd_trace,
372 },
373};
374
Neil Horman4ea7e382009-05-21 07:36:08 +0000375static struct notifier_block dropmon_net_notifier = {
376 .notifier_call = dropmon_net_event
377};
378
Neil Horman9a8afc82009-03-11 09:51:26 +0000379static int __init init_net_drop_monitor(void)
380{
Neil Horman9a8afc82009-03-11 09:51:26 +0000381 struct per_cpu_dm_data *data;
Changli Gaoa256be72010-07-26 20:59:42 -0700382 int cpu, rc;
383
Neil Hormanac0a1212011-03-21 18:20:26 -0700384 printk(KERN_INFO "Initializing network drop monitor service\n");
Neil Horman9a8afc82009-03-11 09:51:26 +0000385
386 if (sizeof(void *) > 8) {
387 printk(KERN_ERR "Unable to store program counters on this arch, Drop monitor failed\n");
388 return -ENOSPC;
389 }
390
Changli Gaoa256be72010-07-26 20:59:42 -0700391 rc = genl_register_family_with_ops(&net_drop_monitor_family,
392 dropmon_ops,
393 ARRAY_SIZE(dropmon_ops));
394 if (rc) {
Neil Horman9a8afc82009-03-11 09:51:26 +0000395 printk(KERN_ERR "Could not create drop monitor netlink family\n");
Changli Gaoa256be72010-07-26 20:59:42 -0700396 return rc;
Neil Horman9a8afc82009-03-11 09:51:26 +0000397 }
398
Neil Horman4ea7e382009-05-21 07:36:08 +0000399 rc = register_netdevice_notifier(&dropmon_net_notifier);
400 if (rc < 0) {
401 printk(KERN_CRIT "Failed to register netdevice notifier\n");
402 goto out_unreg;
403 }
404
Neil Horman9a8afc82009-03-11 09:51:26 +0000405 rc = 0;
406
407 for_each_present_cpu(cpu) {
408 data = &per_cpu(dm_cpu_data, cpu);
Neil Horman4fdcfa12012-05-01 08:18:02 +0000409 data->cpu = cpu;
Neil Horman9a8afc82009-03-11 09:51:26 +0000410 INIT_WORK(&data->dm_alert_work, send_dm_alert);
411 init_timer(&data->send_timer);
412 data->send_timer.data = cpu;
413 data->send_timer.function = sched_send_work;
Neil Horman4fdcfa12012-05-01 08:18:02 +0000414 reset_per_cpu_data(data);
Neil Horman9a8afc82009-03-11 09:51:26 +0000415 }
Neil Horman4ea7e382009-05-21 07:36:08 +0000416
Neil Horman3885ca72012-04-27 10:11:49 +0000417
Neil Horman9a8afc82009-03-11 09:51:26 +0000418 goto out;
419
420out_unreg:
421 genl_unregister_family(&net_drop_monitor_family);
422out:
423 return rc;
424}
425
426late_initcall(init_net_drop_monitor);