summaryrefslogtreecommitdiff
path: root/mesh
diff options
context:
space:
mode:
authorBrian Gix <brian.gix@intel.com>2020-08-13 10:43:14 -0700
committerBrian Gix <brian.gix@intel.com>2020-08-14 12:18:59 -0700
commit8ecfe3221a699f7e1d731a16a4da8e5c349bf754 (patch)
treecaf95b9738a4517f66659b9b68454df2f990a03d /mesh
parent602e4c0ff962a5b72523d9bd00332b7f5be5c48c (diff)
downloadbluez-8ecfe3221a699f7e1d731a16a4da8e5c349bf754.tar.gz
mesh: fix double-free of outbound tx data
Due to the asyncronous multi-step process to send a packet on an HCI socket, an outbound packet could be superseded before send procedure is completed. This change ensures that at any stage in the process, that the pointer to the packet has been fully disposed.
Diffstat (limited to 'mesh')
-rw-r--r--mesh/mesh-io-generic.c52
1 files changed, 31 insertions, 21 deletions
diff --git a/mesh/mesh-io-generic.c b/mesh/mesh-io-generic.c
index 4b26b1181..67b13a1b9 100644
--- a/mesh/mesh-io-generic.c
+++ b/mesh/mesh-io-generic.c
@@ -329,6 +329,30 @@ static void scan_disable_rsp(const void *buf, uint8_t size,
set_recv_scan_enable, pvt, NULL);
}
+static bool simple_match(const void *a, const void *b)
+{
+ return a == b;
+}
+
+static bool find_by_ad_type(const void *a, const void *b)
+{
+ const struct tx_pkt *tx = a;
+ uint8_t ad_type = L_PTR_TO_UINT(b);
+
+ return !ad_type || ad_type == tx->pkt[0];
+}
+
+static bool find_by_pattern(const void *a, const void *b)
+{
+ const struct tx_pkt *tx = a;
+ const struct tx_pattern *pattern = b;
+
+ if (tx->len < pattern->len)
+ return false;
+
+ return (!memcmp(tx->pkt, pattern->data, pattern->len));
+}
+
static bool find_active(const void *a, const void *b)
{
const struct pvt_rx_reg *rx_reg = a;
@@ -533,8 +557,10 @@ static void set_send_adv_data(const void *buf, uint8_t size,
&cmd, sizeof(cmd),
set_send_adv_enable, pvt, NULL);
done:
- if (tx->delete)
+ if (tx->delete) {
+ l_queue_remove_if(pvt->tx_pkts, simple_match, tx);
l_free(tx);
+ }
pvt->tx = NULL;
}
@@ -569,8 +595,11 @@ static void send_pkt(struct mesh_io_private *pvt, struct tx_pkt *tx,
{
struct bt_hci_cmd_le_set_adv_enable cmd;
- if (pvt->tx && pvt->tx->delete)
+ /* Delete superseded packet in favor of new packet */
+ if (pvt->tx && pvt->tx != tx && pvt->tx->delete) {
+ l_queue_remove_if(pvt->tx_pkts, simple_match, pvt->tx);
l_free(pvt->tx);
+ }
pvt->tx = tx;
pvt->interval = interval;
@@ -733,25 +762,6 @@ static bool send_tx(struct mesh_io *io, struct mesh_io_send_info *info,
return true;
}
-static bool find_by_ad_type(const void *a, const void *b)
-{
- const struct tx_pkt *tx = a;
- uint8_t ad_type = L_PTR_TO_UINT(b);
-
- return !ad_type || ad_type == tx->pkt[0];
-}
-
-static bool find_by_pattern(const void *a, const void *b)
-{
- const struct tx_pkt *tx = a;
- const struct tx_pattern *pattern = b;
-
- if (tx->len < pattern->len)
- return false;
-
- return (!memcmp(tx->pkt, pattern->data, pattern->len));
-}
-
static bool tx_cancel(struct mesh_io *io, const uint8_t *data, uint8_t len)
{
struct mesh_io_private *pvt = io->pvt;