Merge pull request #11216 from haukepetersen/opt_nimble_verbump

pkg/nimble: bump version to a7b3c93
This commit is contained in:
Hauke Petersen 2019-03-20 14:13:02 +01:00 committed by GitHub
commit c0819c7a46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 98 deletions

View File

@ -1,6 +1,6 @@
PKG_NAME = nimble PKG_NAME = nimble
PKG_URL = https://github.com/apache/mynewt-nimble.git PKG_URL = https://github.com/apache/mynewt-nimble.git
PKG_VERSION = ef58876024218e488dcbc15c8631db016241ab1f PKG_VERSION = a7b3c939146e735b59d55bff740c906bde6f86f9
PKG_LICENSE = Apache-2.0 PKG_LICENSE = Apache-2.0
TDIR = $(RIOTPKG)/$(PKG_NAME) TDIR = $(RIOTPKG)/$(PKG_NAME)

View File

@ -46,21 +46,12 @@ static void *_host_thread(void *arg)
(void)arg; (void)arg;
nimble_port_init(); nimble_port_init();
nimble_port_run();
/* never reached */
return NULL;
}
#endif
void nimble_riot_init(void)
{
#ifdef MODULE_NIMBLE_CONTROLLER #ifdef MODULE_NIMBLE_CONTROLLER
/* XXX: NimBLE needs the nRF5x's LF clock to run */ /* XXX: NimBLE needs the nRF5x's LF clock to run */
#ifdef CPU_FAM_NRF52 #ifdef CPU_FAM_NRF52
clock_start_lf(); clock_start_lf();
#endif #endif
/* Run the controller /* Run the controller
* *
* Create task where NimBLE LL will run. This one is required as LL has its * Create task where NimBLE LL will run. This one is required as LL has its
@ -73,14 +64,21 @@ void nimble_riot_init(void)
"nimble_ctrl"); "nimble_ctrl");
#endif #endif
#ifdef MODULE_NIMBLE_HOST nimble_port_run();
/* never reached */
return NULL;
}
#endif
void nimble_riot_init(void)
{
/* and finally initialize and run the host */ /* and finally initialize and run the host */
thread_create(_stack_host, sizeof(_stack_host), thread_create(_stack_host, sizeof(_stack_host),
NIMBLE_HOST_PRIO, NIMBLE_HOST_PRIO,
THREAD_CREATE_STACKTEST, THREAD_CREATE_STACKTEST,
_host_thread, NULL, _host_thread, NULL,
"nimble_host"); "nimble_host");
#endif
/* make sure synchronization of host and controller is done, this should /* make sure synchronization of host and controller is done, this should
* always be the case at this point */ * always be the case at this point */

View File

@ -1,86 +0,0 @@
From 5986ec94d49cb4121e37114def029255e2b73b05 Mon Sep 17 00:00:00 2001
From: Juan Carrano <j.carrano@fu-berlin.de>
Date: Thu, 29 Nov 2018 13:40:36 +0100
Subject: [PATCH] L2CAP sm: do not discard alignment information.
ble_sm_gen_ediv and ble_sm_gen_master_id_rand took a simple pointer to
integers, but were being called with pointers to members of a packed
struct. This discarded the alignment information.
Not only did it produce an error with clang's -Wno-address-of-packed-member,
but it may also cause an error in a platform with alignment requirements.
The solution was to modify both procedures to take a pointer to the whole
structure instead of only the members.
---
nimble/host/src/ble_sm.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/nimble/host/src/ble_sm.c b/nimble/host/src/ble_sm.c
index c2cf97aa..09b33bf5 100644
--- a/nimble/host/src/ble_sm.c
+++ b/nimble/host/src/ble_sm.c
@@ -261,19 +261,19 @@ ble_sm_gen_pair_rand(uint8_t *pair_rand)
}
static int
-ble_sm_gen_ediv(uint16_t *ediv)
+ble_sm_gen_ediv(struct ble_sm_master_id *master_id)
{
int rc;
#if MYNEWT_VAL(BLE_HS_DEBUG)
if (ble_sm_dbg_next_ediv_set) {
ble_sm_dbg_next_ediv_set = 0;
- *ediv = ble_sm_dbg_next_ediv;
+ master_id->ediv = ble_sm_dbg_next_ediv;
return 0;
}
#endif
- rc = ble_hs_hci_util_rand(ediv, sizeof *ediv);
+ rc = ble_hs_hci_util_rand(&master_id->ediv, sizeof master_id->ediv);
if (rc != 0) {
return rc;
}
@@ -282,19 +282,19 @@ ble_sm_gen_ediv(uint16_t *ediv)
}
static int
-ble_sm_gen_master_id_rand(uint64_t *master_id_rand)
+ble_sm_gen_master_id_rand(struct ble_sm_master_id *master_id)
{
int rc;
#if MYNEWT_VAL(BLE_HS_DEBUG)
if (ble_sm_dbg_next_master_id_rand_set) {
ble_sm_dbg_next_master_id_rand_set = 0;
- *master_id_rand = ble_sm_dbg_next_master_id_rand;
+ master_id->rand_val = ble_sm_dbg_next_master_id_rand;
return 0;
}
#endif
- rc = ble_hs_hci_util_rand(master_id_rand, sizeof *master_id_rand);
+ rc = ble_hs_hci_util_rand(&master_id->rand_val, sizeof master_id->rand_val);
if (rc != 0) {
return rc;
}
@@ -2051,12 +2051,12 @@ ble_sm_key_exch_exec(struct ble_sm_proc *proc, struct ble_sm_result *res,
goto err;
}
- rc = ble_sm_gen_ediv(&master_id->ediv);
+ rc = ble_sm_gen_ediv(master_id);
if (rc != 0) {
os_mbuf_free_chain(txom);
goto err;
}
- rc = ble_sm_gen_master_id_rand(&master_id->rand_val);
+ rc = ble_sm_gen_master_id_rand(master_id);
if (rc != 0) {
os_mbuf_free_chain(txom);
goto err;
--
2.19.2