From: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
To: linux-bluetooth@vger.kernel.org
Subject: [PATCH v3 3/6] monitor: Filter duplicated advertisements
Date: Thu, 20 Jul 2017 14:36:14 +0300 [thread overview]
Message-ID: <20170720113617.6895-3-luiz.dentz@gmail.com> (raw)
In-Reply-To: <20170720113617.6895-1-luiz.dentz@gmail.com>
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
This reduces the verbosity and give a precise picture of how unique
each report is.
To be able to detect duplicates this uses a cache containing
advertisements. The cache will maintain only the last advertisement per
address which expires after a 2 seconds or if a new advertisement is
found. To minimize cache lookup overhead only a maximum of 20 entries
can exist at any given time.
---
monitor/packet.c | 106 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 106 insertions(+)
diff --git a/monitor/packet.c b/monitor/packet.c
index cc24165..aa79206 100644
--- a/monitor/packet.c
+++ b/monitor/packet.c
@@ -42,7 +42,9 @@
#include "lib/hci.h"
#include "lib/hci_lib.h"
+#include "src/shared/mainloop.h"
#include "src/shared/util.h"
+#include "src/shared/queue.h"
#include "src/shared/btsnoop.h"
#include "display.h"
#include "bt.h"
@@ -100,6 +102,9 @@
#define COLOR_PHY_PACKET COLOR_BLUE
+#define ADV_TIMEOUT 2000
+#define ADV_MAX_CACHE 20
+
static time_t time_offset = ((time_t) -1);
static int priority_level = BTSNOOP_PRIORITY_INFO;
static unsigned long filter_mask = 0;
@@ -267,11 +272,20 @@ void packet_select_index(uint16_t index)
#define MAX_INDEX 16
+struct adv_data {
+ struct bt_hci_evt_le_adv_report evt;
+ void *data;
+ size_t frame;
+ int timeout;
+ struct queue *cache;
+};
+
struct index_data {
uint8_t type;
uint8_t bdaddr[6];
uint16_t manufacturer;
size_t frame;
+ struct queue *adv_cache;
};
static struct index_data index_list[MAX_INDEX];
@@ -8587,12 +8601,103 @@ static void le_conn_complete_evt(const void *data, uint8_t size)
assign_handle(le16_to_cpu(evt->handle), 0x01);
}
+static void adv_free(void *data)
+{
+ struct adv_data *adv = data;
+
+ if (adv->timeout > 0)
+ mainloop_remove_timeout(adv->timeout);
+
+ free(adv->data);
+ free(adv);
+}
+
+static bool match_adv(const void *data, const void *user_data)
+{
+ const struct adv_data *adv = data;
+ const struct bt_hci_evt_le_adv_report *evt = user_data;
+
+ if (adv->evt.addr_type != evt->addr_type)
+ return false;
+
+ return memcmp(adv->evt.addr, evt->addr, sizeof(evt->addr)) == 0;
+}
+
+static bool report_cmp(struct adv_data *adv,
+ const struct bt_hci_evt_le_adv_report *evt)
+{
+ if (memcmp(&adv->evt, evt, sizeof(*evt)))
+ return false;
+
+ return memcmp(adv->data, evt->data, evt->data_len) == 0;
+}
+
+static void adv_timeout(int id, void *data)
+{
+ struct adv_data *adv = data;
+
+ adv->timeout = 0;
+
+ /* Remove from cache (adv is freed after returning) */
+ queue_remove(adv->cache, adv);
+
+ mainloop_remove_timeout(id);
+}
+
static void le_adv_report_evt(const void *data, uint8_t size)
{
const struct bt_hci_evt_le_adv_report *evt = data;
+ struct index_data *idata = &index_list[index_current];
+ struct adv_data *match;
+ struct adv_data *adv;
uint8_t evt_len;
int8_t *rssi;
+ if (!idata->adv_cache)
+ idata->adv_cache = queue_new();
+
+ adv = queue_remove_if(idata->adv_cache, match_adv, (void *) evt);
+ if (adv && report_cmp(adv, evt)) {
+ /* Update cache and modify expire timeout */
+ if (mainloop_modify_timeout(adv->timeout, ADV_TIMEOUT) < 0) {
+ mainloop_remove_timeout(adv->timeout);
+ adv->timeout = mainloop_add_timeout(ADV_TIMEOUT,
+ adv_timeout, adv,
+ adv_free);
+ }
+ queue_push_head(idata->adv_cache, adv);
+ print_field("Duplicate of #%zu", adv->frame);
+ size = 0;
+ goto rssi;
+ }
+
+ if (adv)
+ adv_free(adv);
+
+ match = new0(struct adv_data, 1);
+ match->evt = *evt;
+
+ match->data = malloc(evt->data_len);
+ memcpy(match->data, evt->data, evt->data_len);
+
+ match->cache = idata->adv_cache;
+ match->frame = idata->frame;
+ match->timeout = mainloop_add_timeout(ADV_TIMEOUT, adv_timeout, match,
+ adv_free);
+ if (match->timeout <= 0) {
+ print_field("Cannot cache: %s (%d)", strerror(-match->timeout),
+ match->timeout);
+ adv_free(match);
+ goto print;
+ }
+
+ queue_push_head(idata->adv_cache, match);
+
+ if (queue_length(idata->adv_cache) > ADV_MAX_CACHE)
+ queue_remove(idata->adv_cache,
+ queue_peek_tail(idata->adv_cache));
+
+print:
print_num_reports(evt->num_reports);
report:
@@ -8602,6 +8707,7 @@ report:
print_field("Data length: %d", evt->data_len);
print_eir(evt->data, evt->data_len, true);
+rssi:
rssi = (int8_t *) (evt->data + evt->data_len);
print_rssi(*rssi);
--
2.9.4
next prev parent reply other threads:[~2017-07-20 11:36 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-20 11:36 [PATCH v3 1/6] monitor: Add AD/EIR types for mesh Luiz Augusto von Dentz
2017-07-20 11:36 ` [PATCH v3 2/6] monitor: Add decoding of GATT Mesh Services Luiz Augusto von Dentz
2017-07-20 11:36 ` Luiz Augusto von Dentz [this message]
2017-07-20 11:36 ` [PATCH v3 4/6] monitor: Add basic decoding for Mesh Beacon Luiz Augusto von Dentz
2017-07-20 11:36 ` [PATCH v3 5/6] monitor: Add basic decoding for Mesh Provisioning Luiz Augusto von Dentz
2017-07-20 18:20 ` Marcel Holtmann
2017-07-20 11:36 ` [PATCH v3 6/6] monitor: Add basic decoding for Mesh Data Luiz Augusto von Dentz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170720113617.6895-3-luiz.dentz@gmail.com \
--to=luiz.dentz@gmail.com \
--cc=linux-bluetooth@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).