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 __list_for_each_rcu
37 #define WPROBE_MIN_INTERVAL 100 /* minimum measurement interval in msecs */
38 #define WPROBE_MAX_FILTER_SIZE 1024
39 #define WPROBE_MAX_FRAME_SIZE 1900
41 static struct list_head wprobe_if
;
42 static spinlock_t wprobe_lock
;
44 static struct genl_family wprobe_fam
= {
45 .id
= GENL_ID_GENERATE
,
49 /* only the first set of attributes is used for queries */
50 .maxattr
= WPROBE_ATTR_LAST
,
53 /* fake radiotap header */
54 struct wprobe_rtap_hdr
{
61 static void wprobe_update_stats(struct wprobe_iface
*dev
, struct wprobe_link
*l
);
62 static int wprobe_sync_data(struct wprobe_iface
*dev
, struct wprobe_link
*l
, bool query
);
63 static void wprobe_free_filter(struct wprobe_filter
*f
);
66 wprobe_add_link(struct wprobe_iface
*s
, struct wprobe_link
*l
, const char *addr
)
70 INIT_LIST_HEAD(&l
->list
);
71 l
->val
= kzalloc(sizeof(struct wprobe_value
) * s
->n_link_items
, GFP_ATOMIC
);
76 memcpy(&l
->addr
, addr
, ETH_ALEN
);
77 spin_lock_irqsave(&wprobe_lock
, flags
);
78 list_add_tail_rcu(&l
->list
, &s
->links
);
79 spin_unlock_irqrestore(&wprobe_lock
, flags
);
83 EXPORT_SYMBOL(wprobe_add_link
);
86 wprobe_remove_link(struct wprobe_iface
*s
, struct wprobe_link
*l
)
90 spin_lock_irqsave(&wprobe_lock
, flags
);
91 list_del_rcu(&l
->list
);
92 spin_unlock_irqrestore(&wprobe_lock
, flags
);
96 EXPORT_SYMBOL(wprobe_remove_link
);
99 wprobe_measure_timer(unsigned long data
)
101 struct wprobe_iface
*dev
= (struct wprobe_iface
*) data
;
103 /* set next measurement interval */
104 mod_timer(&dev
->measure_timer
, jiffies
+
105 msecs_to_jiffies(dev
->measure_interval
));
107 /* perform measurement */
108 wprobe_sync_data(dev
, NULL
, false);
112 wprobe_add_iface(struct wprobe_iface
*s
)
117 /* reset only wprobe private area */
118 memset(&s
->list
, 0, sizeof(struct wprobe_iface
) - offsetof(struct wprobe_iface
, list
));
121 INIT_LIST_HEAD(&s
->list
);
122 INIT_LIST_HEAD(&s
->links
);
123 setup_timer(&s
->measure_timer
, wprobe_measure_timer
, (unsigned long) s
);
125 s
->val
= kzalloc(sizeof(struct wprobe_value
) * s
->n_global_items
, GFP_ATOMIC
);
129 vsize
= max(s
->n_link_items
, s
->n_global_items
);
130 s
->query_val
= kzalloc(sizeof(struct wprobe_value
) * vsize
, GFP_ATOMIC
);
134 /* initialize defaults to be able to handle overflow,
135 * user space will need to handle this if it keeps an
136 * internal histogram */
138 s
->scale_max
= (1 << 31);
143 spin_lock_irqsave(&wprobe_lock
, flags
);
144 list_add_rcu(&s
->list
, &wprobe_if
);
145 spin_unlock_irqrestore(&wprobe_lock
, flags
);
154 EXPORT_SYMBOL(wprobe_add_iface
);
157 wprobe_remove_iface(struct wprobe_iface
*s
)
161 BUG_ON(!list_empty(&s
->links
));
163 del_timer_sync(&s
->measure_timer
);
164 spin_lock_irqsave(&wprobe_lock
, flags
);
165 list_del_rcu(&s
->list
);
166 spin_unlock_irqrestore(&wprobe_lock
, flags
);
168 /* wait for all queries to finish before freeing the
169 * temporary value storage buffer */
174 if (s
->active_filter
)
175 wprobe_free_filter(s
->active_filter
);
177 EXPORT_SYMBOL(wprobe_remove_iface
);
179 static struct wprobe_iface
*
180 wprobe_get_dev(struct nlattr
*attr
)
182 struct wprobe_iface
*dev
= NULL
;
183 struct wprobe_iface
*p
;
190 name
= nla_data(attr
);
191 list_for_each_entry_rcu(p
, &wprobe_if
, list
) {
193 if (strcmp(name
, p
->name
) != 0)
204 wprobe_add_frame(struct wprobe_iface
*dev
, const struct wprobe_wlan_hdr
*hdr
, void *data
, int len
)
206 struct wprobe_wlan_hdr
*new_hdr
;
207 struct wprobe_filter
*f
;
213 f
= rcu_dereference(dev
->active_filter
);
217 spin_lock_irqsave(&f
->lock
, flags
);
220 skb
->len
= sizeof(struct wprobe_rtap_hdr
);
221 skb
->tail
= skb
->data
+ skb
->len
;
222 if (len
+ skb
->len
> WPROBE_MAX_FRAME_SIZE
)
223 len
= WPROBE_MAX_FRAME_SIZE
- skb
->len
;
225 new_hdr
= (struct wprobe_wlan_hdr
*) skb_put(skb
, f
->hdrlen
);
226 memcpy(new_hdr
, hdr
, sizeof(struct wprobe_wlan_hdr
));
227 new_hdr
->len
= cpu_to_be16(new_hdr
->len
);
229 memcpy(skb_put(skb
, len
), data
, len
);
231 for(i
= 0; i
< f
->n_groups
; i
++) {
232 struct wprobe_filter_group
*fg
= &f
->groups
[i
];
236 for (j
= 0; j
< fg
->n_items
; j
++) {
237 struct wprobe_filter_item
*fi
= fg
->items
[j
];
239 if (!fi
->hdr
.n_items
) {
243 if (sk_run_filter(skb
, fi
->filter
, fi
->hdr
.n_items
) == 0)
249 if (!found
&& def
>= 0) {
254 struct wprobe_filter_counter
*c
= &fg
->counters
[j
];
256 if (hdr
->type
>= WPROBE_PKT_TX
)
263 spin_unlock_irqrestore(&f
->lock
, flags
);
268 EXPORT_SYMBOL(wprobe_add_frame
);
271 wprobe_sync_data(struct wprobe_iface
*dev
, struct wprobe_link
*l
, bool query
)
273 struct wprobe_value
*val
;
278 n
= dev
->n_link_items
;
281 n
= dev
->n_global_items
;
285 spin_lock_irqsave(&dev
->lock
, flags
);
286 err
= dev
->sync_data(dev
, l
, val
, !query
);
291 memcpy(dev
->query_val
, val
, sizeof(struct wprobe_value
) * n
);
293 wprobe_update_stats(dev
, l
);
295 spin_unlock_irqrestore(&dev
->lock
, flags
);
298 EXPORT_SYMBOL(wprobe_sync_data
);
301 wprobe_scale_stats(struct wprobe_iface
*dev
, const struct wprobe_item
*item
,
302 struct wprobe_value
*val
, int n
)
304 u64 scale_ts
= jiffies_64
;
307 for (i
= 0; i
< n
; i
++) {
308 if (!(item
[i
].flags
& WPROBE_F_KEEPSTAT
))
311 if (val
[i
].n
<= dev
->scale_min
)
314 /* FIXME: div_s64 seems to be very imprecise here, even when
315 * the values are scaled up */
316 val
[i
].s
*= dev
->scale_m
;
317 val
[i
].s
= div_s64(val
[i
].s
, dev
->scale_d
);
319 val
[i
].ss
*= dev
->scale_m
;
320 val
[i
].ss
= div_s64(val
[i
].ss
, dev
->scale_d
);
322 val
[i
].n
= (val
[i
].n
* dev
->scale_m
) / dev
->scale_d
;
323 val
[i
].scale_timestamp
= scale_ts
;
329 wprobe_update_stats(struct wprobe_iface
*dev
, struct wprobe_link
*l
)
331 const struct wprobe_item
*item
;
332 struct wprobe_value
*val
;
333 bool scale_stats
= false;
337 n
= dev
->n_link_items
;
338 item
= dev
->link_items
;
341 n
= dev
->n_global_items
;
342 item
= dev
->global_items
;
346 /* process statistics */
347 for (i
= 0; i
< n
; i
++) {
354 if ((item
[i
].flags
& WPROBE_F_KEEPSTAT
) &&
355 (dev
->scale_max
> 0) && (val
[i
].n
> dev
->scale_max
)) {
359 switch(item
[i
].type
) {
390 val
[i
].pending
= false;
393 wprobe_scale_stats(dev
, item
, val
, n
);
395 EXPORT_SYMBOL(wprobe_update_stats
);
397 static const struct nla_policy wprobe_policy
[WPROBE_ATTR_LAST
+1] = {
398 [WPROBE_ATTR_INTERFACE
] = { .type
= NLA_NUL_STRING
},
399 [WPROBE_ATTR_MAC
] = { .type
= NLA_STRING
},
400 [WPROBE_ATTR_FLAGS
] = { .type
= NLA_U32
},
403 [WPROBE_ATTR_INTERVAL
] = { .type
= NLA_MSECS
},
404 [WPROBE_ATTR_SAMPLES_MIN
] = { .type
= NLA_U32
},
405 [WPROBE_ATTR_SAMPLES_MAX
] = { .type
= NLA_U32
},
406 [WPROBE_ATTR_SAMPLES_SCALE_M
] = { .type
= NLA_U32
},
407 [WPROBE_ATTR_SAMPLES_SCALE_D
] = { .type
= NLA_U32
},
408 [WPROBE_ATTR_FILTER
] = { .type
= NLA_BINARY
, .len
= 32768 },
412 wprobe_check_ptr(struct list_head
*list
, struct list_head
*ptr
)
416 list_for_each_rcu(p
, list
) {
424 wprobe_send_item_value(struct sk_buff
*msg
, struct netlink_callback
*cb
,
425 struct wprobe_iface
*dev
, struct wprobe_link
*l
,
426 const struct wprobe_item
*item
,
429 struct genlmsghdr
*hdr
;
430 struct wprobe_value
*val
= dev
->query_val
;
431 u64 time
= val
[i
].last
- val
[i
].first
;
433 hdr
= genlmsg_put(msg
, NETLINK_CB(cb
->skb
).pid
, cb
->nlh
->nlmsg_seq
,
434 &wprobe_fam
, NLM_F_MULTI
, WPROBE_CMD_GET_INFO
);
436 NLA_PUT_U32(msg
, WPROBE_ATTR_ID
, i
);
437 NLA_PUT_U32(msg
, WPROBE_ATTR_FLAGS
, flags
);
438 NLA_PUT_U8(msg
, WPROBE_ATTR_TYPE
, item
[i
].type
);
439 NLA_PUT_U64(msg
, WPROBE_ATTR_DURATION
, time
);
441 switch(item
[i
].type
) {
444 NLA_PUT_U8(msg
, item
[i
].type
, val
[i
].U8
);
448 NLA_PUT_U16(msg
, item
[i
].type
, val
[i
].U16
);
452 NLA_PUT_U32(msg
, item
[i
].type
, val
[i
].U32
);
456 NLA_PUT_U64(msg
, item
[i
].type
, val
[i
].U64
);
458 case WPROBE_VAL_STRING
:
460 NLA_PUT_STRING(msg
, item
[i
].type
, val
[i
].STRING
);
462 NLA_PUT_STRING(msg
, item
[i
].type
, "");
463 /* bypass avg/stdev */
466 /* skip unknown values */
469 if (item
[i
].flags
& WPROBE_F_KEEPSTAT
) {
470 NLA_PUT_U64(msg
, WPROBE_VAL_SUM
, val
[i
].s
);
471 NLA_PUT_U64(msg
, WPROBE_VAL_SUM_SQ
, val
[i
].ss
);
472 NLA_PUT_U32(msg
, WPROBE_VAL_SAMPLES
, (u32
) val
[i
].n
);
473 NLA_PUT_MSECS(msg
, WPROBE_VAL_SCALE_TIME
, val
[i
].scale_timestamp
);
476 genlmsg_end(msg
, hdr
);
480 genlmsg_cancel(msg
, hdr
);
485 wprobe_send_item_info(struct sk_buff
*msg
, struct netlink_callback
*cb
,
486 struct wprobe_iface
*dev
,
487 const struct wprobe_item
*item
, int i
)
489 struct genlmsghdr
*hdr
;
491 hdr
= genlmsg_put(msg
, NETLINK_CB(cb
->skb
).pid
, cb
->nlh
->nlmsg_seq
,
492 &wprobe_fam
, NLM_F_MULTI
, WPROBE_CMD_GET_LIST
);
494 if ((i
== 0) && (dev
->addr
!= NULL
))
495 NLA_PUT(msg
, WPROBE_ATTR_MAC
, 6, dev
->addr
);
496 NLA_PUT_U32(msg
, WPROBE_ATTR_ID
, (u32
) i
);
497 NLA_PUT_STRING(msg
, WPROBE_ATTR_NAME
, item
[i
].name
);
498 NLA_PUT_U8(msg
, WPROBE_ATTR_TYPE
, item
[i
].type
);
499 NLA_PUT_U32(msg
, WPROBE_ATTR_FLAGS
, item
[i
].flags
);
500 genlmsg_end(msg
, hdr
);
504 genlmsg_cancel(msg
, hdr
);
509 static struct wprobe_link
*
510 wprobe_find_link(struct wprobe_iface
*dev
, const char *mac
)
512 struct wprobe_link
*l
;
514 list_for_each_entry_rcu(l
, &dev
->links
, list
) {
515 if (!memcmp(l
->addr
, mac
, 6))
522 wprobe_dump_filter_group(struct sk_buff
*msg
, struct wprobe_filter_group
*fg
, struct netlink_callback
*cb
)
524 struct genlmsghdr
*hdr
;
525 struct nlattr
*group
, *item
;
528 hdr
= genlmsg_put(msg
, NETLINK_CB(cb
->skb
).pid
, cb
->nlh
->nlmsg_seq
,
529 &wprobe_fam
, NLM_F_MULTI
, WPROBE_CMD_GET_FILTER
);
533 NLA_PUT_STRING(msg
, WPROBE_ATTR_NAME
, fg
->name
);
534 group
= nla_nest_start(msg
, WPROBE_ATTR_FILTER_GROUP
);
535 for (i
= 0; i
< fg
->n_items
; i
++) {
536 struct wprobe_filter_item
*fi
= fg
->items
[i
];
537 struct wprobe_filter_counter
*fc
= &fg
->counters
[i
];
539 item
= nla_nest_start(msg
, WPROBE_ATTR_FILTER_GROUP
);
540 NLA_PUT_STRING(msg
, WPROBE_ATTR_NAME
, fi
->hdr
.name
);
541 NLA_PUT_U64(msg
, WPROBE_ATTR_RXCOUNT
, fc
->rx
);
542 NLA_PUT_U64(msg
, WPROBE_ATTR_TXCOUNT
, fc
->tx
);
543 nla_nest_end(msg
, item
);
546 nla_nest_end(msg
, group
);
547 genlmsg_end(msg
, hdr
);
551 genlmsg_cancel(msg
, hdr
);
556 wprobe_dump_filters(struct sk_buff
*skb
, struct netlink_callback
*cb
)
558 struct wprobe_iface
*dev
= (struct wprobe_iface
*)cb
->args
[0];
559 struct wprobe_filter
*f
;
564 err
= nlmsg_parse(cb
->nlh
, GENL_HDRLEN
+ wprobe_fam
.hdrsize
,
565 wprobe_fam
.attrbuf
, wprobe_fam
.maxattr
, wprobe_policy
);
569 dev
= wprobe_get_dev(wprobe_fam
.attrbuf
[WPROBE_ATTR_INTERFACE
]);
575 cb
->args
[0] = (long) dev
;
578 if (!wprobe_check_ptr(&wprobe_if
, &dev
->list
)) {
585 f
= rcu_dereference(dev
->active_filter
);
589 for (i
= cb
->args
[1]; i
< f
->n_groups
; i
++) {
590 if (unlikely(!wprobe_dump_filter_group(skb
, &f
->groups
[i
], cb
)))
602 wprobe_dump_link(struct sk_buff
*msg
, struct wprobe_link
*l
, struct netlink_callback
*cb
)
604 struct genlmsghdr
*hdr
;
606 hdr
= genlmsg_put(msg
, NETLINK_CB(cb
->skb
).pid
, cb
->nlh
->nlmsg_seq
,
607 &wprobe_fam
, NLM_F_MULTI
, WPROBE_CMD_GET_LINKS
);
611 NLA_PUT(msg
, WPROBE_ATTR_MAC
, 6, l
->addr
);
612 genlmsg_end(msg
, hdr
);
616 genlmsg_cancel(msg
, hdr
);
621 wprobe_dump_links(struct sk_buff
*skb
, struct netlink_callback
*cb
)
623 struct wprobe_iface
*dev
= (struct wprobe_iface
*)cb
->args
[0];
624 struct wprobe_link
*l
;
629 err
= nlmsg_parse(cb
->nlh
, GENL_HDRLEN
+ wprobe_fam
.hdrsize
,
630 wprobe_fam
.attrbuf
, wprobe_fam
.maxattr
, wprobe_policy
);
634 dev
= wprobe_get_dev(wprobe_fam
.attrbuf
[WPROBE_ATTR_INTERFACE
]);
640 cb
->args
[0] = (long) dev
;
642 if (!wprobe_check_ptr(&wprobe_if
, &dev
->list
)) {
649 list_for_each_entry_rcu(l
, &dev
->links
, list
) {
653 if (unlikely(!wprobe_dump_link(skb
, l
, cb
)))
665 #define WPROBE_F_LINK (1 << 31) /* for internal use */
667 wprobe_dump_info(struct sk_buff
*skb
, struct netlink_callback
*cb
)
669 struct wprobe_iface
*dev
= (struct wprobe_iface
*)cb
->args
[0];
670 struct wprobe_link
*l
= (struct wprobe_link
*)cb
->args
[1];
671 struct wprobe_value
*val
;
672 const struct wprobe_item
*item
;
673 struct genlmsghdr
*hdr
;
675 int cmd
, n
, i
= cb
->args
[3];
676 u32 vflags
= cb
->args
[2];
679 hdr
= (struct genlmsghdr
*)nlmsg_data(cb
->nlh
);
682 /* since the attribute value list might be too big for a single netlink
683 * message, the device, link and offset get stored in the netlink callback.
684 * if this is the first request, we need to do the full lookup for the device.
686 * access to the device and link structure is synchronized through rcu.
690 err
= nlmsg_parse(cb
->nlh
, GENL_HDRLEN
+ wprobe_fam
.hdrsize
,
691 wprobe_fam
.attrbuf
, wprobe_fam
.maxattr
, wprobe_policy
);
696 dev
= wprobe_get_dev(wprobe_fam
.attrbuf
[WPROBE_ATTR_INTERFACE
]);
700 if (cmd
== WPROBE_CMD_GET_INFO
) {
701 if (wprobe_fam
.attrbuf
[WPROBE_ATTR_MAC
]) {
702 l
= wprobe_find_link(dev
, nla_data(wprobe_fam
.attrbuf
[WPROBE_ATTR_MAC
]));
710 item
= dev
->link_items
;
711 n
= dev
->n_link_items
;
714 item
= dev
->global_items
;
715 n
= dev
->n_global_items
;
719 /* sync data and move to temp storage for the query */
720 spin_lock_irqsave(&dev
->lock
, flags
);
721 err
= wprobe_sync_data(dev
, l
, true);
723 memcpy(dev
->query_val
, val
, n
* sizeof(struct wprobe_value
));
724 spin_unlock_irqrestore(&dev
->lock
, flags
);
730 if (wprobe_fam
.attrbuf
[WPROBE_ATTR_FLAGS
])
731 vflags
|= nla_get_u32(wprobe_fam
.attrbuf
[WPROBE_ATTR_FLAGS
]);
733 if (wprobe_fam
.attrbuf
[WPROBE_ATTR_MAC
])
734 vflags
|= WPROBE_F_LINK
;
736 cb
->args
[0] = (long) dev
;
737 cb
->args
[1] = (long) l
;
738 cb
->args
[2] = vflags
;
741 /* when pulling pointers from the callback, validate them
742 * against the list using rcu to make sure that we won't
743 * dereference pointers to free'd memory after the last
746 if (!wprobe_check_ptr(&wprobe_if
, &dev
->list
))
749 if (l
&& !wprobe_check_ptr(&dev
->links
, &l
->list
))
753 if (vflags
& WPROBE_F_LINK
) {
754 item
= dev
->link_items
;
755 n
= dev
->n_link_items
;
757 item
= dev
->global_items
;
758 n
= dev
->n_global_items
;
763 case WPROBE_CMD_GET_INFO
:
765 if (!wprobe_send_item_value(skb
, cb
, dev
, l
, item
, i
, vflags
))
770 case WPROBE_CMD_GET_LIST
:
772 if (!wprobe_send_item_info(skb
, cb
, dev
, item
, i
))
791 wprobe_update_auto_measurement(struct wprobe_iface
*dev
, u32 interval
)
793 if (interval
&& (interval
< WPROBE_MIN_INTERVAL
))
796 if (!interval
&& dev
->measure_interval
)
797 del_timer_sync(&dev
->measure_timer
);
799 dev
->measure_interval
= interval
;
803 /* kick of a new measurement immediately */
804 mod_timer(&dev
->measure_timer
, jiffies
+ 1);
810 wprobe_measure(struct sk_buff
*skb
, struct genl_info
*info
)
812 struct wprobe_iface
*dev
;
813 struct wprobe_link
*l
= NULL
;
817 dev
= wprobe_get_dev(info
->attrs
[WPROBE_ATTR_INTERFACE
]);
821 if (info
->attrs
[WPROBE_ATTR_MAC
]) {
822 l
= wprobe_find_link(dev
, nla_data(wprobe_fam
.attrbuf
[WPROBE_ATTR_MAC
]));
827 err
= wprobe_sync_data(dev
, l
, false);
835 wprobe_check_filter(void *data
, int datalen
, int gs
)
837 struct wprobe_filter_item_hdr
*hdr
;
838 void *orig_data
= data
;
839 void *end
= data
+ datalen
;
840 int i
, j
, k
, is
, cur_is
;
842 for (i
= j
= is
= 0; i
< gs
; i
++) {
844 data
+= sizeof(*hdr
);
850 cur_is
= be32_to_cpu(hdr
->n_items
);
851 hdr
->n_items
= cur_is
;
853 for (j
= 0; j
< cur_is
; j
++) {
854 struct sock_filter
*sf
;
858 data
+= sizeof(*hdr
);
863 n_items
= be32_to_cpu(hdr
->n_items
);
864 hdr
->n_items
= n_items
;
871 for (k
= 0; k
< n_items
; k
++) {
872 sf
->code
= be16_to_cpu(sf
->code
);
873 sf
->k
= be32_to_cpu(sf
->k
);
876 if (sk_chk_filter(data
, n_items
) != 0) {
877 printk("%s: filter check failed at group %d, item %d\n", __func__
, i
, j
);
881 data
+= n_items
* sizeof(struct sock_filter
);
887 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
);
892 wprobe_free_filter(struct wprobe_filter
*f
)
907 wprobe_set_filter(struct wprobe_iface
*dev
, void *data
, int len
)
909 struct wprobe_filter_hdr
*fhdr
;
910 struct wprobe_rtap_hdr
*rtap
;
911 struct wprobe_filter
*f
;
912 int i
, j
, cur_is
, is
, gs
;
914 if (len
< sizeof(*fhdr
))
918 data
+= sizeof(*fhdr
);
919 len
-= sizeof(*fhdr
);
921 if (memcmp(fhdr
->magic
, "WPFF", 4) != 0) {
922 printk(KERN_ERR
"%s: filter rejected (invalid magic)\n", __func__
);
926 gs
= be16_to_cpu(fhdr
->n_groups
);
927 is
= wprobe_check_filter(data
, len
, gs
);
931 f
= kzalloc(sizeof(struct wprobe_filter
) +
932 gs
* sizeof(struct wprobe_filter_group
), GFP_ATOMIC
);
936 f
->skb
= alloc_skb(WPROBE_MAX_FRAME_SIZE
, GFP_ATOMIC
);
940 f
->data
= kmalloc(len
, GFP_ATOMIC
);
944 f
->items
= kzalloc(sizeof(struct wprobe_filter_item
*) * is
, GFP_ATOMIC
);
948 f
->counters
= kzalloc(sizeof(struct wprobe_filter_counter
) * is
, GFP_ATOMIC
);
952 spin_lock_init(&f
->lock
);
953 memcpy(f
->data
, data
, len
);
956 if (f
->hdrlen
< sizeof(struct wprobe_wlan_hdr
))
957 f
->hdrlen
= sizeof(struct wprobe_wlan_hdr
);
959 rtap
= (struct wprobe_rtap_hdr
*)skb_put(f
->skb
, sizeof(*rtap
));
960 memset(rtap
, 0, sizeof(*rtap
));
961 rtap
->len
= cpu_to_le16(sizeof(struct wprobe_rtap_hdr
) + f
->hdrlen
);
965 for (i
= 0; i
< gs
; i
++) {
966 struct wprobe_filter_item_hdr
*hdr
= data
;
967 struct wprobe_filter_group
*g
= &f
->groups
[i
];
969 data
+= sizeof(*hdr
);
971 g
->items
= &f
->items
[cur_is
];
972 g
->counters
= &f
->counters
[cur_is
];
973 g
->n_items
= hdr
->n_items
;
975 for (j
= 0; j
< g
->n_items
; j
++) {
977 f
->items
[cur_is
++] = data
;
978 data
+= sizeof(*hdr
) + hdr
->n_items
* sizeof(struct sock_filter
);
981 rcu_assign_pointer(dev
->active_filter
, f
);
985 wprobe_free_filter(f
);
990 wprobe_set_config(struct sk_buff
*skb
, struct genl_info
*info
)
992 struct wprobe_iface
*dev
;
995 u32 scale_min
, scale_max
;
996 u32 scale_m
, scale_d
;
998 struct wprobe_filter
*filter_free
= NULL
;
1001 dev
= wprobe_get_dev(info
->attrs
[WPROBE_ATTR_INTERFACE
]);
1006 spin_lock_irqsave(&dev
->lock
, flags
);
1007 if (info
->attrs
[WPROBE_ATTR_MAC
]) {
1008 /* not supported yet */
1012 if (info
->attrs
[WPROBE_ATTR_FLAGS
]) {
1013 u32 flags
= nla_get_u32(info
->attrs
[WPROBE_ATTR_FLAGS
]);
1015 if (flags
& BIT(WPROBE_F_RESET
)) {
1016 struct wprobe_link
*l
;
1018 memset(dev
->val
, 0, sizeof(struct wprobe_value
) * dev
->n_global_items
);
1019 list_for_each_entry_rcu(l
, &dev
->links
, list
) {
1020 memset(l
->val
, 0, sizeof(struct wprobe_value
) * dev
->n_link_items
);
1025 if (info
->attrs
[WPROBE_ATTR_SAMPLES_MIN
] ||
1026 info
->attrs
[WPROBE_ATTR_SAMPLES_MAX
]) {
1027 if ((attr
= info
->attrs
[WPROBE_ATTR_SAMPLES_MIN
]))
1028 scale_min
= nla_get_u32(attr
);
1030 scale_min
= dev
->scale_min
;
1032 if ((attr
= info
->attrs
[WPROBE_ATTR_SAMPLES_MAX
]))
1033 scale_max
= nla_get_u32(attr
);
1035 scale_max
= dev
->scale_max
;
1037 if ((!scale_min
&& !scale_max
) ||
1038 (scale_min
&& scale_max
&& (scale_min
< scale_max
))) {
1039 dev
->scale_min
= scale_min
;
1040 dev
->scale_max
= scale_max
;
1046 if (info
->attrs
[WPROBE_ATTR_SAMPLES_SCALE_M
] &&
1047 info
->attrs
[WPROBE_ATTR_SAMPLES_SCALE_D
]) {
1049 scale_m
= nla_get_u32(info
->attrs
[WPROBE_ATTR_SAMPLES_SCALE_M
]);
1050 scale_d
= nla_get_u32(info
->attrs
[WPROBE_ATTR_SAMPLES_SCALE_D
]);
1052 if (!scale_d
|| (scale_m
> scale_d
))
1055 dev
->scale_m
= scale_m
;
1056 dev
->scale_d
= scale_d
;
1059 if ((attr
= info
->attrs
[WPROBE_ATTR_FILTER
])) {
1060 filter_free
= rcu_dereference(dev
->active_filter
);
1061 rcu_assign_pointer(dev
->active_filter
, NULL
);
1062 if (nla_len(attr
) > 0)
1063 wprobe_set_filter(dev
, nla_data(attr
), nla_len(attr
));
1067 if (info
->attrs
[WPROBE_ATTR_INTERVAL
]) {
1068 /* change of measurement interval requested */
1069 err
= wprobe_update_auto_measurement(dev
,
1070 (u32
) nla_get_u64(info
->attrs
[WPROBE_ATTR_INTERVAL
]));
1074 spin_unlock_irqrestore(&dev
->lock
, flags
);
1079 wprobe_free_filter(filter_free
);
1084 static struct genl_ops wprobe_ops
[] = {
1086 .cmd
= WPROBE_CMD_GET_INFO
,
1087 .dumpit
= wprobe_dump_info
,
1088 .policy
= wprobe_policy
,
1091 .cmd
= WPROBE_CMD_GET_LIST
,
1092 .dumpit
= wprobe_dump_info
,
1093 .policy
= wprobe_policy
,
1096 .cmd
= WPROBE_CMD_MEASURE
,
1097 .doit
= wprobe_measure
,
1098 .policy
= wprobe_policy
,
1101 .cmd
= WPROBE_CMD_GET_LINKS
,
1102 .dumpit
= wprobe_dump_links
,
1103 .policy
= wprobe_policy
,
1106 .cmd
= WPROBE_CMD_CONFIG
,
1107 .doit
= wprobe_set_config
,
1108 .policy
= wprobe_policy
,
1111 .cmd
= WPROBE_CMD_GET_FILTER
,
1112 .dumpit
= wprobe_dump_filters
,
1113 .policy
= wprobe_policy
,
1120 BUG_ON(!list_empty(&wprobe_if
));
1121 genl_unregister_family(&wprobe_fam
);
1130 spin_lock_init(&wprobe_lock
);
1131 INIT_LIST_HEAD(&wprobe_if
);
1133 err
= genl_register_family(&wprobe_fam
);
1137 for (i
= 0; i
< ARRAY_SIZE(wprobe_ops
); i
++) {
1138 err
= genl_register_ops(&wprobe_fam
, &wprobe_ops
[i
]);
1146 genl_unregister_family(&wprobe_fam
);
1150 module_init(wprobe_init
);
1151 module_exit(wprobe_exit
);
1152 MODULE_LICENSE("GPL");