2 * wprobe-core.c: Wireless probe interface core
3 * Copyright (C) 2008-2009 Felix Fietkau <nbd@openwrt.org>
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
16 #include <linux/kernel.h>
17 #include <linux/version.h>
18 #include <linux/module.h>
19 #include <linux/types.h>
20 #include <linux/spinlock.h>
21 #include <linux/rcupdate.h>
22 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,26)
23 #include <linux/rculist.h>
25 #include <linux/list.h>
27 #include <linux/skbuff.h>
28 #include <linux/wprobe.h>
29 #include <linux/math64.h>
33 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,28)
34 #define list_for_each_rcu(pos, head) \
35 for (pos = rcu_dereference((head)->next); \
36 prefetch(pos->next), pos != (head); \
37 pos = rcu_dereference(pos->next))
40 #define WPROBE_MIN_INTERVAL 100 /* minimum measurement interval in msecs */
41 #define WPROBE_MAX_FILTER_SIZE 1024
42 #define WPROBE_MAX_FRAME_SIZE 1900
44 static struct list_head wprobe_if
;
45 static spinlock_t wprobe_lock
;
47 static struct genl_family wprobe_fam
= {
48 .id
= GENL_ID_GENERATE
,
52 /* only the first set of attributes is used for queries */
53 .maxattr
= WPROBE_ATTR_LAST
,
56 /* fake radiotap header */
57 struct wprobe_rtap_hdr
{
64 static void wprobe_update_stats(struct wprobe_iface
*dev
, struct wprobe_link
*l
);
65 static int wprobe_sync_data(struct wprobe_iface
*dev
, struct wprobe_link
*l
, bool query
);
66 static void wprobe_free_filter(struct wprobe_filter
*f
);
69 wprobe_add_link(struct wprobe_iface
*s
, struct wprobe_link
*l
, const char *addr
)
73 INIT_LIST_HEAD(&l
->list
);
74 l
->val
= kzalloc(sizeof(struct wprobe_value
) * s
->n_link_items
, GFP_ATOMIC
);
79 memcpy(&l
->addr
, addr
, ETH_ALEN
);
80 spin_lock_irqsave(&wprobe_lock
, flags
);
81 list_add_tail_rcu(&l
->list
, &s
->links
);
82 spin_unlock_irqrestore(&wprobe_lock
, flags
);
86 EXPORT_SYMBOL(wprobe_add_link
);
89 wprobe_remove_link(struct wprobe_iface
*s
, struct wprobe_link
*l
)
93 spin_lock_irqsave(&wprobe_lock
, flags
);
94 list_del_rcu(&l
->list
);
95 spin_unlock_irqrestore(&wprobe_lock
, flags
);
99 EXPORT_SYMBOL(wprobe_remove_link
);
102 wprobe_measure_timer(unsigned long data
)
104 struct wprobe_iface
*dev
= (struct wprobe_iface
*) data
;
106 /* set next measurement interval */
107 mod_timer(&dev
->measure_timer
, jiffies
+
108 msecs_to_jiffies(dev
->measure_interval
));
110 /* perform measurement */
111 wprobe_sync_data(dev
, NULL
, false);
115 wprobe_add_iface(struct wprobe_iface
*s
)
120 /* reset only wprobe private area */
121 memset(&s
->list
, 0, sizeof(struct wprobe_iface
) - offsetof(struct wprobe_iface
, list
));
124 INIT_LIST_HEAD(&s
->list
);
125 INIT_LIST_HEAD(&s
->links
);
126 setup_timer(&s
->measure_timer
, wprobe_measure_timer
, (unsigned long) s
);
128 s
->val
= kzalloc(sizeof(struct wprobe_value
) * s
->n_global_items
, GFP_ATOMIC
);
132 vsize
= max(s
->n_link_items
, s
->n_global_items
);
133 s
->query_val
= kzalloc(sizeof(struct wprobe_value
) * vsize
, GFP_ATOMIC
);
137 /* initialize defaults to be able to handle overflow,
138 * user space will need to handle this if it keeps an
139 * internal histogram */
141 s
->scale_max
= (1 << 31);
146 spin_lock_irqsave(&wprobe_lock
, flags
);
147 list_add_rcu(&s
->list
, &wprobe_if
);
148 spin_unlock_irqrestore(&wprobe_lock
, flags
);
157 EXPORT_SYMBOL(wprobe_add_iface
);
160 wprobe_remove_iface(struct wprobe_iface
*s
)
164 BUG_ON(!list_empty(&s
->links
));
166 del_timer_sync(&s
->measure_timer
);
167 spin_lock_irqsave(&wprobe_lock
, flags
);
168 list_del_rcu(&s
->list
);
169 spin_unlock_irqrestore(&wprobe_lock
, flags
);
171 /* wait for all queries to finish before freeing the
172 * temporary value storage buffer */
177 if (s
->active_filter
)
178 wprobe_free_filter(s
->active_filter
);
180 EXPORT_SYMBOL(wprobe_remove_iface
);
182 static struct wprobe_iface
*
183 wprobe_get_dev(struct nlattr
*attr
)
185 struct wprobe_iface
*dev
= NULL
;
186 struct wprobe_iface
*p
;
193 name
= nla_data(attr
);
194 list_for_each_entry_rcu(p
, &wprobe_if
, list
) {
196 if (strcmp(name
, p
->name
) != 0)
207 wprobe_add_frame(struct wprobe_iface
*dev
, const struct wprobe_wlan_hdr
*hdr
, void *data
, int len
)
209 struct wprobe_wlan_hdr
*new_hdr
;
210 struct wprobe_filter
*f
;
216 f
= rcu_dereference(dev
->active_filter
);
220 spin_lock_irqsave(&f
->lock
, flags
);
223 skb
->len
= sizeof(struct wprobe_rtap_hdr
);
224 skb
->tail
= skb
->data
+ skb
->len
;
225 if (len
+ skb
->len
> WPROBE_MAX_FRAME_SIZE
)
226 len
= WPROBE_MAX_FRAME_SIZE
- skb
->len
;
228 new_hdr
= (struct wprobe_wlan_hdr
*) skb_put(skb
, f
->hdrlen
);
229 memcpy(new_hdr
, hdr
, sizeof(struct wprobe_wlan_hdr
));
230 new_hdr
->len
= cpu_to_be16(new_hdr
->len
);
232 memcpy(skb_put(skb
, len
), data
, len
);
234 for(i
= 0; i
< f
->n_groups
; i
++) {
235 struct wprobe_filter_group
*fg
= &f
->groups
[i
];
239 for (j
= 0; j
< fg
->n_items
; j
++) {
240 struct wprobe_filter_item
*fi
= fg
->items
[j
];
242 if (!fi
->hdr
.n_items
) {
246 if (sk_run_filter(skb
, fi
->filter
, fi
->hdr
.n_items
) == 0)
252 if (!found
&& def
>= 0) {
257 struct wprobe_filter_counter
*c
= &fg
->counters
[j
];
259 if (hdr
->type
>= WPROBE_PKT_TX
)
266 spin_unlock_irqrestore(&f
->lock
, flags
);
271 EXPORT_SYMBOL(wprobe_add_frame
);
274 wprobe_sync_data(struct wprobe_iface
*dev
, struct wprobe_link
*l
, bool query
)
276 struct wprobe_value
*val
;
281 n
= dev
->n_link_items
;
284 n
= dev
->n_global_items
;
288 spin_lock_irqsave(&dev
->lock
, flags
);
289 err
= dev
->sync_data(dev
, l
, val
, !query
);
294 memcpy(dev
->query_val
, val
, sizeof(struct wprobe_value
) * n
);
296 wprobe_update_stats(dev
, l
);
298 spin_unlock_irqrestore(&dev
->lock
, flags
);
301 EXPORT_SYMBOL(wprobe_sync_data
);
304 wprobe_scale_stats(struct wprobe_iface
*dev
, const struct wprobe_item
*item
,
305 struct wprobe_value
*val
, int n
)
307 u64 scale_ts
= jiffies_64
;
310 for (i
= 0; i
< n
; i
++) {
311 if (!(item
[i
].flags
& WPROBE_F_KEEPSTAT
))
314 if (val
[i
].n
<= dev
->scale_min
)
317 /* FIXME: div_s64 seems to be very imprecise here, even when
318 * the values are scaled up */
319 val
[i
].s
*= dev
->scale_m
;
320 val
[i
].s
= div_s64(val
[i
].s
, dev
->scale_d
);
322 val
[i
].ss
*= dev
->scale_m
;
323 val
[i
].ss
= div_s64(val
[i
].ss
, dev
->scale_d
);
325 val
[i
].n
= (val
[i
].n
* dev
->scale_m
) / dev
->scale_d
;
326 val
[i
].scale_timestamp
= scale_ts
;
332 wprobe_update_stats(struct wprobe_iface
*dev
, struct wprobe_link
*l
)
334 const struct wprobe_item
*item
;
335 struct wprobe_value
*val
;
336 bool scale_stats
= false;
340 n
= dev
->n_link_items
;
341 item
= dev
->link_items
;
344 n
= dev
->n_global_items
;
345 item
= dev
->global_items
;
349 /* process statistics */
350 for (i
= 0; i
< n
; i
++) {
357 if ((item
[i
].flags
& WPROBE_F_KEEPSTAT
) &&
358 (dev
->scale_max
> 0) && (val
[i
].n
> dev
->scale_max
)) {
362 switch(item
[i
].type
) {
393 val
[i
].pending
= false;
396 wprobe_scale_stats(dev
, item
, val
, n
);
398 EXPORT_SYMBOL(wprobe_update_stats
);
400 static const struct nla_policy wprobe_policy
[WPROBE_ATTR_LAST
+1] = {
401 [WPROBE_ATTR_INTERFACE
] = { .type
= NLA_NUL_STRING
},
402 [WPROBE_ATTR_MAC
] = { .type
= NLA_STRING
},
403 [WPROBE_ATTR_FLAGS
] = { .type
= NLA_U32
},
406 [WPROBE_ATTR_INTERVAL
] = { .type
= NLA_MSECS
},
407 [WPROBE_ATTR_SAMPLES_MIN
] = { .type
= NLA_U32
},
408 [WPROBE_ATTR_SAMPLES_MAX
] = { .type
= NLA_U32
},
409 [WPROBE_ATTR_SAMPLES_SCALE_M
] = { .type
= NLA_U32
},
410 [WPROBE_ATTR_SAMPLES_SCALE_D
] = { .type
= NLA_U32
},
411 [WPROBE_ATTR_FILTER
] = { .type
= NLA_BINARY
, .len
= 32768 },
415 wprobe_check_ptr(struct list_head
*list
, struct list_head
*ptr
)
419 list_for_each_rcu(p
, list
) {
427 wprobe_send_item_value(struct sk_buff
*msg
, struct netlink_callback
*cb
,
428 struct wprobe_iface
*dev
, struct wprobe_link
*l
,
429 const struct wprobe_item
*item
,
432 struct genlmsghdr
*hdr
;
433 struct wprobe_value
*val
= dev
->query_val
;
434 u64 time
= val
[i
].last
- val
[i
].first
;
436 hdr
= genlmsg_put(msg
, NETLINK_CB(cb
->skb
).pid
, cb
->nlh
->nlmsg_seq
,
437 &wprobe_fam
, NLM_F_MULTI
, WPROBE_CMD_GET_INFO
);
439 NLA_PUT_U32(msg
, WPROBE_ATTR_ID
, i
);
440 NLA_PUT_U32(msg
, WPROBE_ATTR_FLAGS
, flags
);
441 NLA_PUT_U8(msg
, WPROBE_ATTR_TYPE
, item
[i
].type
);
442 NLA_PUT_U64(msg
, WPROBE_ATTR_DURATION
, time
);
444 switch(item
[i
].type
) {
447 NLA_PUT_U8(msg
, item
[i
].type
, val
[i
].U8
);
451 NLA_PUT_U16(msg
, item
[i
].type
, val
[i
].U16
);
455 NLA_PUT_U32(msg
, item
[i
].type
, val
[i
].U32
);
459 NLA_PUT_U64(msg
, item
[i
].type
, val
[i
].U64
);
461 case WPROBE_VAL_STRING
:
463 NLA_PUT_STRING(msg
, item
[i
].type
, val
[i
].STRING
);
465 NLA_PUT_STRING(msg
, item
[i
].type
, "");
466 /* bypass avg/stdev */
469 /* skip unknown values */
472 if (item
[i
].flags
& WPROBE_F_KEEPSTAT
) {
473 NLA_PUT_U64(msg
, WPROBE_VAL_SUM
, val
[i
].s
);
474 NLA_PUT_U64(msg
, WPROBE_VAL_SUM_SQ
, val
[i
].ss
);
475 NLA_PUT_U32(msg
, WPROBE_VAL_SAMPLES
, (u32
) val
[i
].n
);
476 NLA_PUT_MSECS(msg
, WPROBE_VAL_SCALE_TIME
, val
[i
].scale_timestamp
);
479 genlmsg_end(msg
, hdr
);
483 genlmsg_cancel(msg
, hdr
);
488 wprobe_send_item_info(struct sk_buff
*msg
, struct netlink_callback
*cb
,
489 struct wprobe_iface
*dev
,
490 const struct wprobe_item
*item
, int i
)
492 struct genlmsghdr
*hdr
;
494 hdr
= genlmsg_put(msg
, NETLINK_CB(cb
->skb
).pid
, cb
->nlh
->nlmsg_seq
,
495 &wprobe_fam
, NLM_F_MULTI
, WPROBE_CMD_GET_LIST
);
497 if ((i
== 0) && (dev
->addr
!= NULL
))
498 NLA_PUT(msg
, WPROBE_ATTR_MAC
, 6, dev
->addr
);
499 NLA_PUT_U32(msg
, WPROBE_ATTR_ID
, (u32
) i
);
500 NLA_PUT_STRING(msg
, WPROBE_ATTR_NAME
, item
[i
].name
);
501 NLA_PUT_U8(msg
, WPROBE_ATTR_TYPE
, item
[i
].type
);
502 NLA_PUT_U32(msg
, WPROBE_ATTR_FLAGS
, item
[i
].flags
);
503 genlmsg_end(msg
, hdr
);
507 genlmsg_cancel(msg
, hdr
);
512 static struct wprobe_link
*
513 wprobe_find_link(struct wprobe_iface
*dev
, const char *mac
)
515 struct wprobe_link
*l
;
517 list_for_each_entry_rcu(l
, &dev
->links
, list
) {
518 if (!memcmp(l
->addr
, mac
, 6))
525 wprobe_dump_filter_group(struct sk_buff
*msg
, struct wprobe_filter_group
*fg
, struct netlink_callback
*cb
)
527 struct genlmsghdr
*hdr
;
528 struct nlattr
*group
, *item
;
531 hdr
= genlmsg_put(msg
, NETLINK_CB(cb
->skb
).pid
, cb
->nlh
->nlmsg_seq
,
532 &wprobe_fam
, NLM_F_MULTI
, WPROBE_CMD_GET_FILTER
);
536 NLA_PUT_STRING(msg
, WPROBE_ATTR_NAME
, fg
->name
);
537 group
= nla_nest_start(msg
, WPROBE_ATTR_FILTER_GROUP
);
538 for (i
= 0; i
< fg
->n_items
; i
++) {
539 struct wprobe_filter_item
*fi
= fg
->items
[i
];
540 struct wprobe_filter_counter
*fc
= &fg
->counters
[i
];
542 item
= nla_nest_start(msg
, WPROBE_ATTR_FILTER_GROUP
);
543 NLA_PUT_STRING(msg
, WPROBE_ATTR_NAME
, fi
->hdr
.name
);
544 NLA_PUT_U64(msg
, WPROBE_ATTR_RXCOUNT
, fc
->rx
);
545 NLA_PUT_U64(msg
, WPROBE_ATTR_TXCOUNT
, fc
->tx
);
546 nla_nest_end(msg
, item
);
549 nla_nest_end(msg
, group
);
550 genlmsg_end(msg
, hdr
);
554 genlmsg_cancel(msg
, hdr
);
559 wprobe_dump_filters(struct sk_buff
*skb
, struct netlink_callback
*cb
)
561 struct wprobe_iface
*dev
= (struct wprobe_iface
*)cb
->args
[0];
562 struct wprobe_filter
*f
;
567 err
= nlmsg_parse(cb
->nlh
, GENL_HDRLEN
+ wprobe_fam
.hdrsize
,
568 wprobe_fam
.attrbuf
, wprobe_fam
.maxattr
, wprobe_policy
);
572 dev
= wprobe_get_dev(wprobe_fam
.attrbuf
[WPROBE_ATTR_INTERFACE
]);
578 cb
->args
[0] = (long) dev
;
581 if (!wprobe_check_ptr(&wprobe_if
, &dev
->list
)) {
588 f
= rcu_dereference(dev
->active_filter
);
592 for (i
= cb
->args
[1]; i
< f
->n_groups
; i
++) {
593 if (unlikely(!wprobe_dump_filter_group(skb
, &f
->groups
[i
], cb
)))
605 wprobe_dump_link(struct sk_buff
*msg
, struct wprobe_link
*l
, struct netlink_callback
*cb
)
607 struct genlmsghdr
*hdr
;
609 hdr
= genlmsg_put(msg
, NETLINK_CB(cb
->skb
).pid
, cb
->nlh
->nlmsg_seq
,
610 &wprobe_fam
, NLM_F_MULTI
, WPROBE_CMD_GET_LINKS
);
614 NLA_PUT(msg
, WPROBE_ATTR_MAC
, 6, l
->addr
);
615 genlmsg_end(msg
, hdr
);
619 genlmsg_cancel(msg
, hdr
);
624 wprobe_dump_links(struct sk_buff
*skb
, struct netlink_callback
*cb
)
626 struct wprobe_iface
*dev
= (struct wprobe_iface
*)cb
->args
[0];
627 struct wprobe_link
*l
;
632 err
= nlmsg_parse(cb
->nlh
, GENL_HDRLEN
+ wprobe_fam
.hdrsize
,
633 wprobe_fam
.attrbuf
, wprobe_fam
.maxattr
, wprobe_policy
);
637 dev
= wprobe_get_dev(wprobe_fam
.attrbuf
[WPROBE_ATTR_INTERFACE
]);
643 cb
->args
[0] = (long) dev
;
645 if (!wprobe_check_ptr(&wprobe_if
, &dev
->list
)) {
652 list_for_each_entry_rcu(l
, &dev
->links
, list
) {
656 if (unlikely(!wprobe_dump_link(skb
, l
, cb
)))
668 #define WPROBE_F_LINK (1 << 31) /* for internal use */
670 wprobe_dump_info(struct sk_buff
*skb
, struct netlink_callback
*cb
)
672 struct wprobe_iface
*dev
= (struct wprobe_iface
*)cb
->args
[0];
673 struct wprobe_link
*l
= (struct wprobe_link
*)cb
->args
[1];
674 struct wprobe_value
*val
;
675 const struct wprobe_item
*item
;
676 struct genlmsghdr
*hdr
;
678 int cmd
, n
, i
= cb
->args
[3];
679 u32 vflags
= cb
->args
[2];
682 hdr
= (struct genlmsghdr
*)nlmsg_data(cb
->nlh
);
685 /* since the attribute value list might be too big for a single netlink
686 * message, the device, link and offset get stored in the netlink callback.
687 * if this is the first request, we need to do the full lookup for the device.
689 * access to the device and link structure is synchronized through rcu.
693 err
= nlmsg_parse(cb
->nlh
, GENL_HDRLEN
+ wprobe_fam
.hdrsize
,
694 wprobe_fam
.attrbuf
, wprobe_fam
.maxattr
, wprobe_policy
);
699 dev
= wprobe_get_dev(wprobe_fam
.attrbuf
[WPROBE_ATTR_INTERFACE
]);
703 if (cmd
== WPROBE_CMD_GET_INFO
) {
704 if (wprobe_fam
.attrbuf
[WPROBE_ATTR_MAC
]) {
705 l
= wprobe_find_link(dev
, nla_data(wprobe_fam
.attrbuf
[WPROBE_ATTR_MAC
]));
713 item
= dev
->link_items
;
714 n
= dev
->n_link_items
;
717 item
= dev
->global_items
;
718 n
= dev
->n_global_items
;
722 /* sync data and move to temp storage for the query */
723 spin_lock_irqsave(&dev
->lock
, flags
);
724 err
= wprobe_sync_data(dev
, l
, true);
726 memcpy(dev
->query_val
, val
, n
* sizeof(struct wprobe_value
));
727 spin_unlock_irqrestore(&dev
->lock
, flags
);
733 if (wprobe_fam
.attrbuf
[WPROBE_ATTR_FLAGS
])
734 vflags
|= nla_get_u32(wprobe_fam
.attrbuf
[WPROBE_ATTR_FLAGS
]);
736 if (wprobe_fam
.attrbuf
[WPROBE_ATTR_MAC
])
737 vflags
|= WPROBE_F_LINK
;
739 cb
->args
[0] = (long) dev
;
740 cb
->args
[1] = (long) l
;
741 cb
->args
[2] = vflags
;
744 /* when pulling pointers from the callback, validate them
745 * against the list using rcu to make sure that we won't
746 * dereference pointers to free'd memory after the last
749 if (!wprobe_check_ptr(&wprobe_if
, &dev
->list
))
752 if (l
&& !wprobe_check_ptr(&dev
->links
, &l
->list
))
756 if (vflags
& WPROBE_F_LINK
) {
757 item
= dev
->link_items
;
758 n
= dev
->n_link_items
;
760 item
= dev
->global_items
;
761 n
= dev
->n_global_items
;
766 case WPROBE_CMD_GET_INFO
:
768 if (!wprobe_send_item_value(skb
, cb
, dev
, l
, item
, i
, vflags
))
773 case WPROBE_CMD_GET_LIST
:
775 if (!wprobe_send_item_info(skb
, cb
, dev
, item
, i
))
794 wprobe_update_auto_measurement(struct wprobe_iface
*dev
, u32 interval
)
796 if (interval
&& (interval
< WPROBE_MIN_INTERVAL
))
799 if (!interval
&& dev
->measure_interval
)
800 del_timer_sync(&dev
->measure_timer
);
802 dev
->measure_interval
= interval
;
806 /* kick of a new measurement immediately */
807 mod_timer(&dev
->measure_timer
, jiffies
+ 1);
813 wprobe_measure(struct sk_buff
*skb
, struct genl_info
*info
)
815 struct wprobe_iface
*dev
;
816 struct wprobe_link
*l
= NULL
;
820 dev
= wprobe_get_dev(info
->attrs
[WPROBE_ATTR_INTERFACE
]);
824 if (info
->attrs
[WPROBE_ATTR_MAC
]) {
825 l
= wprobe_find_link(dev
, nla_data(wprobe_fam
.attrbuf
[WPROBE_ATTR_MAC
]));
830 err
= wprobe_sync_data(dev
, l
, false);
838 wprobe_check_filter(void *data
, int datalen
, int gs
)
840 struct wprobe_filter_item_hdr
*hdr
;
841 void *orig_data
= data
;
842 void *end
= data
+ datalen
;
843 int i
, j
, k
, is
, cur_is
;
845 for (i
= j
= is
= 0; i
< gs
; i
++) {
847 data
+= sizeof(*hdr
);
853 cur_is
= be32_to_cpu(hdr
->n_items
);
854 hdr
->n_items
= cur_is
;
856 for (j
= 0; j
< cur_is
; j
++) {
857 struct sock_filter
*sf
;
861 data
+= sizeof(*hdr
);
866 n_items
= be32_to_cpu(hdr
->n_items
);
867 hdr
->n_items
= n_items
;
874 for (k
= 0; k
< n_items
; k
++) {
875 sf
->code
= be16_to_cpu(sf
->code
);
876 sf
->k
= be32_to_cpu(sf
->k
);
879 if (sk_chk_filter(data
, n_items
) != 0) {
880 printk("%s: filter check failed at group %d, item %d\n", __func__
, i
, j
);
884 data
+= n_items
* sizeof(struct sock_filter
);
890 printk(KERN_ERR
"%s: overrun during filter check at group %d, item %d, offset=%d, len=%d\n", __func__
, i
, j
, (data
- orig_data
), datalen
);
895 wprobe_free_filter(struct wprobe_filter
*f
)
910 wprobe_set_filter(struct wprobe_iface
*dev
, void *data
, int len
)
912 struct wprobe_filter_hdr
*fhdr
;
913 struct wprobe_rtap_hdr
*rtap
;
914 struct wprobe_filter
*f
;
915 int i
, j
, cur_is
, is
, gs
;
917 if (len
< sizeof(*fhdr
))
921 data
+= sizeof(*fhdr
);
922 len
-= sizeof(*fhdr
);
924 if (memcmp(fhdr
->magic
, "WPFF", 4) != 0) {
925 printk(KERN_ERR
"%s: filter rejected (invalid magic)\n", __func__
);
929 gs
= be16_to_cpu(fhdr
->n_groups
);
930 is
= wprobe_check_filter(data
, len
, gs
);
934 f
= kzalloc(sizeof(struct wprobe_filter
) +
935 gs
* sizeof(struct wprobe_filter_group
), GFP_ATOMIC
);
939 f
->skb
= alloc_skb(WPROBE_MAX_FRAME_SIZE
, GFP_ATOMIC
);
943 f
->data
= kmalloc(len
, GFP_ATOMIC
);
947 f
->items
= kzalloc(sizeof(struct wprobe_filter_item
*) * is
, GFP_ATOMIC
);
951 f
->counters
= kzalloc(sizeof(struct wprobe_filter_counter
) * is
, GFP_ATOMIC
);
955 spin_lock_init(&f
->lock
);
956 memcpy(f
->data
, data
, len
);
959 if (f
->hdrlen
< sizeof(struct wprobe_wlan_hdr
))
960 f
->hdrlen
= sizeof(struct wprobe_wlan_hdr
);
962 rtap
= (struct wprobe_rtap_hdr
*)skb_put(f
->skb
, sizeof(*rtap
));
963 memset(rtap
, 0, sizeof(*rtap
));
964 rtap
->len
= cpu_to_le16(sizeof(struct wprobe_rtap_hdr
) + f
->hdrlen
);
968 for (i
= 0; i
< gs
; i
++) {
969 struct wprobe_filter_item_hdr
*hdr
= data
;
970 struct wprobe_filter_group
*g
= &f
->groups
[i
];
972 data
+= sizeof(*hdr
);
974 g
->items
= &f
->items
[cur_is
];
975 g
->counters
= &f
->counters
[cur_is
];
976 g
->n_items
= hdr
->n_items
;
978 for (j
= 0; j
< g
->n_items
; j
++) {
980 f
->items
[cur_is
++] = data
;
981 data
+= sizeof(*hdr
) + hdr
->n_items
* sizeof(struct sock_filter
);
984 rcu_assign_pointer(dev
->active_filter
, f
);
988 wprobe_free_filter(f
);
993 wprobe_set_config(struct sk_buff
*skb
, struct genl_info
*info
)
995 struct wprobe_iface
*dev
;
998 u32 scale_min
, scale_max
;
999 u32 scale_m
, scale_d
;
1000 struct nlattr
*attr
;
1001 struct wprobe_filter
*filter_free
= NULL
;
1004 dev
= wprobe_get_dev(info
->attrs
[WPROBE_ATTR_INTERFACE
]);
1009 spin_lock_irqsave(&dev
->lock
, flags
);
1010 if (info
->attrs
[WPROBE_ATTR_MAC
]) {
1011 /* not supported yet */
1015 if (info
->attrs
[WPROBE_ATTR_FLAGS
]) {
1016 u32 flags
= nla_get_u32(info
->attrs
[WPROBE_ATTR_FLAGS
]);
1018 if (flags
& BIT(WPROBE_F_RESET
)) {
1019 struct wprobe_link
*l
;
1021 memset(dev
->val
, 0, sizeof(struct wprobe_value
) * dev
->n_global_items
);
1022 list_for_each_entry_rcu(l
, &dev
->links
, list
) {
1023 memset(l
->val
, 0, sizeof(struct wprobe_value
) * dev
->n_link_items
);
1028 if (info
->attrs
[WPROBE_ATTR_SAMPLES_MIN
] ||
1029 info
->attrs
[WPROBE_ATTR_SAMPLES_MAX
]) {
1030 if ((attr
= info
->attrs
[WPROBE_ATTR_SAMPLES_MIN
]))
1031 scale_min
= nla_get_u32(attr
);
1033 scale_min
= dev
->scale_min
;
1035 if ((attr
= info
->attrs
[WPROBE_ATTR_SAMPLES_MAX
]))
1036 scale_max
= nla_get_u32(attr
);
1038 scale_max
= dev
->scale_max
;
1040 if ((!scale_min
&& !scale_max
) ||
1041 (scale_min
&& scale_max
&& (scale_min
< scale_max
))) {
1042 dev
->scale_min
= scale_min
;
1043 dev
->scale_max
= scale_max
;
1049 if (info
->attrs
[WPROBE_ATTR_SAMPLES_SCALE_M
] &&
1050 info
->attrs
[WPROBE_ATTR_SAMPLES_SCALE_D
]) {
1052 scale_m
= nla_get_u32(info
->attrs
[WPROBE_ATTR_SAMPLES_SCALE_M
]);
1053 scale_d
= nla_get_u32(info
->attrs
[WPROBE_ATTR_SAMPLES_SCALE_D
]);
1055 if (!scale_d
|| (scale_m
> scale_d
))
1058 dev
->scale_m
= scale_m
;
1059 dev
->scale_d
= scale_d
;
1062 if ((attr
= info
->attrs
[WPROBE_ATTR_FILTER
])) {
1063 filter_free
= rcu_dereference(dev
->active_filter
);
1064 rcu_assign_pointer(dev
->active_filter
, NULL
);
1065 if (nla_len(attr
) > 0)
1066 wprobe_set_filter(dev
, nla_data(attr
), nla_len(attr
));
1070 if (info
->attrs
[WPROBE_ATTR_INTERVAL
]) {
1071 /* change of measurement interval requested */
1072 err
= wprobe_update_auto_measurement(dev
,
1073 (u32
) nla_get_u64(info
->attrs
[WPROBE_ATTR_INTERVAL
]));
1077 spin_unlock_irqrestore(&dev
->lock
, flags
);
1082 wprobe_free_filter(filter_free
);
1087 static struct genl_ops wprobe_ops
[] = {
1089 .cmd
= WPROBE_CMD_GET_INFO
,
1090 .dumpit
= wprobe_dump_info
,
1091 .policy
= wprobe_policy
,
1094 .cmd
= WPROBE_CMD_GET_LIST
,
1095 .dumpit
= wprobe_dump_info
,
1096 .policy
= wprobe_policy
,
1099 .cmd
= WPROBE_CMD_MEASURE
,
1100 .doit
= wprobe_measure
,
1101 .policy
= wprobe_policy
,
1104 .cmd
= WPROBE_CMD_GET_LINKS
,
1105 .dumpit
= wprobe_dump_links
,
1106 .policy
= wprobe_policy
,
1109 .cmd
= WPROBE_CMD_CONFIG
,
1110 .doit
= wprobe_set_config
,
1111 .policy
= wprobe_policy
,
1114 .cmd
= WPROBE_CMD_GET_FILTER
,
1115 .dumpit
= wprobe_dump_filters
,
1116 .policy
= wprobe_policy
,
1123 BUG_ON(!list_empty(&wprobe_if
));
1124 genl_unregister_family(&wprobe_fam
);
1133 spin_lock_init(&wprobe_lock
);
1134 INIT_LIST_HEAD(&wprobe_if
);
1136 err
= genl_register_family(&wprobe_fam
);
1140 for (i
= 0; i
< ARRAY_SIZE(wprobe_ops
); i
++) {
1141 err
= genl_register_ops(&wprobe_fam
, &wprobe_ops
[i
]);
1149 genl_unregister_family(&wprobe_fam
);
1153 module_init(wprobe_init
);
1154 module_exit(wprobe_exit
);
1155 MODULE_LICENSE("GPL");