seos_hci.c 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782
  1. #include "seos_hci_i.h"
  2. #define TAG "SeosHci"
  3. #define OGF_LINK_CTL 0x01
  4. #define OCF_DISCONNECT 0x0006
  5. #define OGF_HOST_CTL 0x03
  6. #define OCF_SET_EVENT_MASK 0x0001
  7. #define OCF_RESET 0x0003
  8. #define OCF_READ_LE_HOST_SUPPORTED 0x006c
  9. #define OCF_WRITE_LE_HOST_SUPPORTED 0x006d
  10. #define OGF_INFO_PARAM 0x04
  11. #define OCF_READ_LOCAL_VERSION 0x0001
  12. #define OCF_READ_BUFFER_SIZE 0x0005
  13. #define OCF_READ_BD_ADDR 0x0009
  14. #define OGF_STATUS_PARAM 0x05
  15. #define OCF_READ_RSSI 0x0005
  16. #define OGF_LE_CTL 0x08
  17. #define OCF_LE_SET_EVENT_MASK 0x0001
  18. #define OCF_LE_READ_BUFFER_SIZE 0x0002
  19. #define OCF_LE_READ_LOCAL_SUPPORTED_FEATURES 0x0003
  20. #define OCF_LE_SET_RANDOM_ADDRESS 0x0005
  21. #define OCF_LE_SET_ADVERTISING_PARAMETERS 0x0006
  22. #define OCF_LE_SET_ADVERTISING_DATA 0x0008
  23. #define OCF_LE_SET_SCAN_RESPONSE_DATA 0x0009
  24. #define OCF_LE_SET_ADVERTISE_ENABLE 0x000a
  25. #define OCF_LE_SET_SCAN_PARAMETERS 0x000b
  26. #define OCF_LE_SET_SCAN_ENABLE 0x000c
  27. #define OCF_LE_CREATE_CONNECTION 0x000d
  28. #define OGF_VENDOR_CTL 0x3F
  29. #define OCF_LE_LTK_NEG_REPLY 0x001B
  30. /* Obtain OGF from OpCode */
  31. #define BT_OGF(opcode) (((opcode) >> 10) & 0x3f)
  32. /* Obtain OCF from OpCode */
  33. #define BT_OCF(opcode) ((opcode) & 0x3FF)
  34. #define BT_OP(ogf, ocf) ((ocf) | ((ogf) << 10))
  35. #define BT_HCI_EVT_DISCONN_COMPLETE 0x05 // HCI_Disconnection_Complete
  36. #define BT_HCI_EVT_QOS_SETUP_COMPLETE 0x0d
  37. #define BT_HCI_EVT_CMD_COMPLETE 0x0e
  38. #define BT_HCI_EVT_CMD_STATUS 0x0f
  39. #define BT_HCI_EVT_NUM_COMPLETED_PACKETS 0x13
  40. #define BT_HCI_EVT_LE_META 0x3e // HCI_LE_Connection_Complete
  41. #define HCI_LE_CONNECTION_COMPLETE 0x01
  42. #define HCI_LE_ADVERTISING_REPORT 0x02
  43. // Consider making this an enum that shifts a bit in the apropriate amount
  44. #define CAP_TWIST_AND_GO 0x02
  45. #define CAP_ALLOW_TAP 0x04
  46. #define CAP_APP_SPECIFIC 0x08
  47. #define CAP_ENHANCED_TAP 0x40
  48. static uint8_t seos_reader_service_backwards[] =
  49. {0x02, 0x00, 0x00, 0x7a, 0x17, 0x00, 0x00, 0x80, 0x00, 0x10, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00};
  50. static uint8_t seos_cred_service_backwards[] =
  51. {0x02, 0x00, 0x00, 0x7a, 0x17, 0x00, 0x00, 0x80, 0x00, 0x10, 0x00, 0x00, 0x01, 0x98, 0x00, 0x00};
  52. // Occationally scan stop's completion doesn't get caught.
  53. // Use the timer callback to call it again
  54. void seos_hci_timer(void* context) {
  55. FURI_LOG_I(TAG, "RUN TIMER");
  56. SeosHci* seos_hci = (SeosHci*)context;
  57. if(seos_hci->mode == BLE_PERIPHERAL) {
  58. seos_hci_enable_advertising(seos_hci, seos_hci->adv_status);
  59. } else if(seos_hci->mode == BLE_CENTRAL) {
  60. seos_hci_set_scan(seos_hci, seos_hci->scan_status);
  61. }
  62. }
  63. SeosHci* seos_hci_alloc(Seos* seos) {
  64. SeosHci* seos_hci = malloc(sizeof(SeosHci));
  65. memset(seos_hci, 0, sizeof(SeosHci));
  66. seos_hci->device_found = false;
  67. seos_hci->connection_handle = 0;
  68. seos_hci->seos = seos;
  69. seos_hci->seos_hci_h5 = seos_hci_h5_alloc();
  70. seos_hci->timer = furi_timer_alloc(seos_hci_timer, FuriTimerTypeOnce, seos_hci);
  71. seos_hci_h5_set_init_callback(seos_hci->seos_hci_h5, seos_hci_init, seos_hci);
  72. seos_hci_h5_set_receive_callback(seos_hci->seos_hci_h5, seos_hci_recv, seos_hci);
  73. return seos_hci;
  74. }
  75. void seos_hci_free(SeosHci* seos_hci) {
  76. furi_assert(seos_hci);
  77. furi_timer_free(seos_hci->timer);
  78. seos_hci_h5_free(seos_hci->seos_hci_h5);
  79. free(seos_hci);
  80. }
  81. void seos_hci_start(SeosHci* seos_hci, BleMode mode, FlowMode flow_mode) {
  82. seos_hci->device_found = false;
  83. seos_hci->connection_handle = 0;
  84. seos_hci->flow_mode = flow_mode;
  85. seos_hci->mode = mode;
  86. seos_hci_h5_start(seos_hci->seos_hci_h5);
  87. }
  88. void seos_hci_stop(SeosHci* seos_hci) {
  89. if(seos_hci->connection_handle > 0) {
  90. uint16_t opcode = BT_OP(OGF_LINK_CTL, OCF_DISCONNECT);
  91. BitBuffer* disconnect = bit_buffer_alloc(5);
  92. bit_buffer_append_bytes(disconnect, (uint8_t*)&opcode, sizeof(opcode));
  93. bit_buffer_append_bytes(
  94. disconnect,
  95. (uint8_t*)&seos_hci->connection_handle,
  96. sizeof(seos_hci->connection_handle));
  97. bit_buffer_append_byte(disconnect, 0x00);
  98. seos_hci_h5_send(seos_hci->seos_hci_h5, HCI_COMMAND_PKT, disconnect);
  99. }
  100. seos_hci->device_found = false;
  101. seos_hci->connection_handle = 0;
  102. seos_hci_h5_stop(seos_hci->seos_hci_h5);
  103. if(seos_hci->mode == BLE_PERIPHERAL) {
  104. if(seos_hci->adv_status) {
  105. seos_hci_enable_advertising(seos_hci, false);
  106. }
  107. } else if(seos_hci->mode == BLE_CENTRAL) {
  108. if(seos_hci->scan_status) {
  109. seos_hci_set_scan(seos_hci, false);
  110. }
  111. }
  112. }
  113. void seos_hci_handle_event_cmd_complete_ogf_host(SeosHci* seos_hci, uint16_t OCF, BitBuffer* frame) {
  114. UNUSED(frame);
  115. BitBuffer* message = bit_buffer_alloc(128);
  116. switch(OCF) {
  117. case OCF_RESET:
  118. uint8_t le_read_local_supported_features[] = {0x03, 0x20, 0x00};
  119. bit_buffer_append_bytes(
  120. message, le_read_local_supported_features, sizeof(le_read_local_supported_features));
  121. break;
  122. case OCF_SET_EVENT_MASK:
  123. uint8_t set_le_event_mask[] = {
  124. 0x01, 0x20, 0x08, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
  125. bit_buffer_append_bytes(message, set_le_event_mask, sizeof(set_le_event_mask));
  126. break;
  127. default:
  128. FURI_LOG_W(TAG, "Unhandled OCF %04x", OCF);
  129. break;
  130. }
  131. if(bit_buffer_get_size_bytes(message) > 0) {
  132. seos_hci_h5_send(seos_hci->seos_hci_h5, HCI_COMMAND_PKT, message);
  133. }
  134. bit_buffer_free(message);
  135. }
  136. void seos_hci_handle_event_cmd_complete_ogf_info(SeosHci* seos_hci, uint16_t OCF, BitBuffer* frame) {
  137. UNUSED(frame);
  138. BitBuffer* message = bit_buffer_alloc(128);
  139. switch(OCF) {
  140. case OCF_READ_LOCAL_VERSION:
  141. // uint8_t write_LE_host_supported[] = { 0x01, 0x6d, 0x0c, 0x02, 0x01, 0x00};
  142. uint8_t read_bd_addr[] = {0x09, 0x10, 0x00};
  143. bit_buffer_append_bytes(message, read_bd_addr, sizeof(read_bd_addr));
  144. break;
  145. case OCF_READ_BD_ADDR:
  146. uint8_t le_read_buffer_size[] = {0x02, 0x20, 0x00};
  147. bit_buffer_append_bytes(message, le_read_buffer_size, sizeof(le_read_buffer_size));
  148. break;
  149. default:
  150. FURI_LOG_W(TAG, "Unhandled OCF %04x", OCF);
  151. break;
  152. }
  153. if(bit_buffer_get_size_bytes(message) > 0) {
  154. seos_hci_h5_send(seos_hci->seos_hci_h5, HCI_COMMAND_PKT, message);
  155. }
  156. bit_buffer_free(message);
  157. }
  158. void seos_hci_handle_event_cmd_complete_ogf_le(SeosHci* seos_hci, uint16_t OCF, BitBuffer* frame) {
  159. UNUSED(frame);
  160. BitBuffer* message = bit_buffer_alloc(128);
  161. switch(OCF) {
  162. case OCF_LE_SET_EVENT_MASK:
  163. uint8_t read_local_version[] = {0x01, 0x10, 0x00};
  164. bit_buffer_append_bytes(message, read_local_version, sizeof(read_local_version));
  165. break;
  166. case OCF_LE_READ_BUFFER_SIZE:
  167. uint8_t le_set_random_address[] = {0x05, 0x20, 0x06, 0xCA, 0xFE, 0x00, 0x00, 0x00, 0x03};
  168. bit_buffer_append_bytes(message, le_set_random_address, sizeof(le_set_random_address));
  169. break;
  170. case OCF_LE_SET_ADVERTISING_DATA:
  171. seos_hci_enable_advertising(seos_hci, true);
  172. break;
  173. case OCF_LE_SET_SCAN_RESPONSE_DATA:
  174. uint8_t flow_mode_byte = seos_hci->flow_mode == FLOW_READER ? 0x00 : 0x01;
  175. // TODO: Use seos_reader_service_backwards
  176. uint8_t adv_data[] = {0x08, 0x20, 0x20, 0x15, 0x02, 0x01, 0x06, 0x11, 0x07,
  177. 0x02, 0x00, 0x00, 0x7a, 0x17, 0x00, 0x00, 0x80, 0x00,
  178. 0x10, 0x00, 0x00, flow_mode_byte, 0x98, 0x00, 0x00, 0x00, 0x00,
  179. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
  180. bit_buffer_append_bytes(message, adv_data, sizeof(adv_data));
  181. break;
  182. case OCF_LE_SET_ADVERTISE_ENABLE:
  183. if(furi_timer_is_running(seos_hci->timer)) {
  184. furi_timer_stop(seos_hci->timer);
  185. }
  186. uint8_t status = bit_buffer_get_byte(frame, 6);
  187. if(status == 0) {
  188. if(seos_hci->adv_status) {
  189. FURI_LOG_I(TAG, "*** Advertising enabled ***");
  190. view_dispatcher_send_custom_event(
  191. seos_hci->seos->view_dispatcher, SeosCustomEventAdvertising);
  192. } else {
  193. FURI_LOG_I(TAG, "*** Advertising disabled ***");
  194. }
  195. } else {
  196. FURI_LOG_W(TAG, "Advertising enabled FAILED");
  197. }
  198. break;
  199. case OCF_LE_SET_SCAN_PARAMETERS:
  200. seos_hci_set_scan(seos_hci, true);
  201. break;
  202. case OCF_LE_SET_SCAN_ENABLE:
  203. if(furi_timer_is_running(seos_hci->timer)) {
  204. furi_timer_stop(seos_hci->timer);
  205. }
  206. if(seos_hci->scan_status) { // enabled
  207. FURI_LOG_I(TAG, "Scan enable complete. new state: %d", seos_hci->scan_status);
  208. view_dispatcher_send_custom_event(
  209. seos_hci->seos->view_dispatcher, SeosCustomEventScan);
  210. } else if(seos_hci->device_found) {
  211. // Scanning stopped, try to connect
  212. seos_hci_connect(seos_hci);
  213. }
  214. break;
  215. case OCF_LE_READ_LOCAL_SUPPORTED_FEATURES:
  216. // FURI_LOG_D(TAG, "Local Supported Features");
  217. uint8_t set_event_mask[] = {
  218. 0x01, 0x0c, 0x08, 0xff, 0xff, 0xfb, 0xff, 0x07, 0xf8, 0xbf, 0x3d};
  219. bit_buffer_append_bytes(message, set_event_mask, sizeof(set_event_mask));
  220. break;
  221. case OCF_LE_SET_RANDOM_ADDRESS:
  222. // FURI_LOG_D(TAG, "opcode = %04x", BT_OP(0x3f, 0x0006)); <--- reverse this in byte array
  223. uint8_t vendor_set_addr[] = {0x06, 0xfc, 0x06, 0x0, 0x0, 0x1, 0x2, 0x21, 0xAD};
  224. bit_buffer_append_bytes(message, vendor_set_addr, sizeof(vendor_set_addr));
  225. break;
  226. case OCF_LE_SET_ADVERTISING_PARAMETERS:
  227. // TODO: make this more dynamic
  228. uint8_t capabilities = CAP_TWIST_AND_GO | CAP_ALLOW_TAP | CAP_APP_SPECIFIC |
  229. CAP_ENHANCED_TAP;
  230. int8_t tap_rssi = -75;
  231. int8_t twist_rssi = -75;
  232. int8_t seamless_rssi = -75;
  233. int8_t app_rssi = -75;
  234. uint8_t mfg_data[] = {0x14, 0xff, 0x2e, 0x01, 0x15, capabilities,
  235. tap_rssi, twist_rssi, seamless_rssi, app_rssi, 0x2a, 0x46,
  236. 0x4c, 0x30, 0x4b, 0x37, 0x5a, 0x30,
  237. 0x31, 0x55, 0x31, 0x00, 0x00};
  238. uint8_t device_name[] = {
  239. 0x09, 0x20, 0x20, 0x1e, 0x08, 0x09, 0x46, 0x6c, 0x69, 0x70, 0x70, 0x65, 0x72};
  240. bit_buffer_append_bytes(message, device_name, sizeof(device_name));
  241. bit_buffer_append_bytes(message, mfg_data, sizeof(mfg_data));
  242. break;
  243. default:
  244. FURI_LOG_W(TAG, "Unhandled OCF %04x", OCF);
  245. break;
  246. }
  247. if(bit_buffer_get_size_bytes(message) > 0) {
  248. seos_hci_h5_send(seos_hci->seos_hci_h5, HCI_COMMAND_PKT, message);
  249. }
  250. bit_buffer_free(message);
  251. }
  252. void seos_hci_handle_event_cmd_complete_ogf_vendor(
  253. SeosHci* seos_hci,
  254. uint16_t OCF,
  255. BitBuffer* frame) {
  256. UNUSED(frame);
  257. BitBuffer* message = bit_buffer_alloc(128);
  258. switch(OCF) {
  259. case 0x0006:
  260. if(seos_hci->mode == BLE_PERIPHERAL) {
  261. // Flipper as Reader
  262. uint8_t adv_param[] = {
  263. 0x06,
  264. 0x20,
  265. 0x0f,
  266. 0xa0,
  267. 0x00,
  268. 0xa0,
  269. 0x00,
  270. 0x00,
  271. 0x00,
  272. 0x01,
  273. 0xDE,
  274. 0xAF,
  275. 0xBE,
  276. 0xEF,
  277. 0xCA,
  278. 0xFE,
  279. 0x07,
  280. 0x00};
  281. bit_buffer_append_bytes(message, adv_param, sizeof(adv_param));
  282. } else if(seos_hci->mode == BLE_CENTRAL) {
  283. // Flipper as device/credential
  284. seos_hci_send_scan_params(seos_hci);
  285. }
  286. break;
  287. default:
  288. FURI_LOG_W(TAG, "Unhandled OCF %04x", OCF);
  289. break;
  290. }
  291. if(bit_buffer_get_size_bytes(message) > 0) {
  292. seos_hci_h5_send(seos_hci->seos_hci_h5, HCI_COMMAND_PKT, message);
  293. }
  294. bit_buffer_free(message);
  295. }
  296. void seos_hci_handle_event_cmd_complete(SeosHci* seos_hci, BitBuffer* frame) {
  297. BitBuffer* message = bit_buffer_alloc(128);
  298. const uint8_t* data = bit_buffer_get_data(frame);
  299. uint8_t event_type = data[0];
  300. uint8_t sub_event_type = data[1];
  301. uint8_t ncmd = data[3];
  302. uint16_t cmd = data[5] << 8 | data[4];
  303. uint8_t status = data[6];
  304. if(status == 0) {
  305. /*
  306. FURI_LOG_D(
  307. TAG,
  308. "event %d sub event %d ncmd %d cmd %d status %d",
  309. event_type,
  310. sub_event_type,
  311. ncmd,
  312. cmd,
  313. status);
  314. */
  315. } else {
  316. FURI_LOG_W(
  317. TAG,
  318. "event %d sub event %d ncmd %d cmd %d status %d",
  319. event_type,
  320. sub_event_type,
  321. ncmd,
  322. cmd,
  323. status);
  324. bit_buffer_free(message);
  325. return;
  326. }
  327. uint16_t OGF = BT_OGF(cmd);
  328. uint16_t OCF = BT_OCF(cmd);
  329. // FURI_LOG_D(TAG, "OGF = %04x OCF = %04x", OGF, OCF);
  330. switch(OGF) {
  331. case OGF_HOST_CTL:
  332. seos_hci_handle_event_cmd_complete_ogf_host(seos_hci, OCF, frame);
  333. break;
  334. case OGF_INFO_PARAM:
  335. seos_hci_handle_event_cmd_complete_ogf_info(seos_hci, OCF, frame);
  336. break;
  337. case OGF_LE_CTL:
  338. seos_hci_handle_event_cmd_complete_ogf_le(seos_hci, OCF, frame);
  339. break;
  340. case OGF_VENDOR_CTL:
  341. seos_hci_handle_event_cmd_complete_ogf_vendor(seos_hci, OCF, frame);
  342. break;
  343. default:
  344. FURI_LOG_W(TAG, "Unhandled OGF %04x", OGF);
  345. break;
  346. }
  347. bit_buffer_free(message);
  348. }
  349. void seos_hci_enable_advertising(SeosHci* seos_hci, bool enable) {
  350. seos_hci->adv_status = enable;
  351. FURI_LOG_I(TAG, "Enable Advertising: %s", enable ? "true" : "false");
  352. uint8_t adv_enable[] = {0x0a, 0x20, 0x01, enable ? 0x01 : 0x00};
  353. BitBuffer* message = bit_buffer_alloc(sizeof(adv_enable));
  354. bit_buffer_append_bytes(message, adv_enable, sizeof(adv_enable));
  355. seos_hci_h5_send(seos_hci->seos_hci_h5, HCI_COMMAND_PKT, message);
  356. bit_buffer_free(message);
  357. FURI_LOG_I(TAG, "Start timer to make sure adv change ran");
  358. size_t delay = 100 /*ms*/ / (1000.0f / furi_kernel_get_tick_frequency());
  359. furi_check(furi_timer_start(seos_hci->timer, delay) == FuriStatusOk);
  360. }
  361. void seos_hci_send_scan_params(SeosHci* seos_hci) {
  362. uint8_t LE_Scan_Type = 0x00;
  363. uint8_t Scanning_Filter_Policy = 0x00;
  364. uint16_t opcode = BT_OP(OGF_LE_CTL, OCF_LE_SET_SCAN_PARAMETERS);
  365. uint8_t scan_param[] = {
  366. 0xff, 0xff, 0x07, LE_Scan_Type, 0x10, 0x00, 0x10, 0x00, 0x00, Scanning_Filter_Policy};
  367. BitBuffer* message = bit_buffer_alloc(sizeof(scan_param));
  368. memcpy(scan_param, (uint8_t*)&opcode, sizeof(opcode));
  369. bit_buffer_append_bytes(message, scan_param, sizeof(scan_param));
  370. seos_hci_h5_send(seos_hci->seos_hci_h5, HCI_COMMAND_PKT, message);
  371. bit_buffer_free(message);
  372. }
  373. void seos_hci_set_scan(SeosHci* seos_hci, bool enable) {
  374. FURI_LOG_I(TAG, "Start Scan: %s", enable ? "true" : "false");
  375. seos_hci->scan_status = enable;
  376. uint16_t opcode = BT_OP(OGF_LE_CTL, OCF_LE_SET_SCAN_ENABLE);
  377. uint8_t set_scan[] = {0xff, 0xff, 0x02, enable ? 0x01 : 0x00, 0x00};
  378. memcpy(set_scan, (uint8_t*)&opcode, sizeof(opcode));
  379. BitBuffer* message = bit_buffer_alloc(sizeof(set_scan));
  380. bit_buffer_append_bytes(message, set_scan, sizeof(set_scan));
  381. seos_hci_h5_send(seos_hci->seos_hci_h5, HCI_COMMAND_PKT, message);
  382. bit_buffer_free(message);
  383. FURI_LOG_I(TAG, "Start timer to make sure set scan ran");
  384. size_t delay = 100 /*ms*/ / (1000.0f / furi_kernel_get_tick_frequency());
  385. furi_check(furi_timer_start(seos_hci->timer, delay) == FuriStatusOk);
  386. }
  387. // TODO: test this: hci create le conn - writing: 010d 2019 6000 3000 00 01 2db88ee137c3 000600120000002a0004000600
  388. void seos_hci_connect(SeosHci* seos_hci) {
  389. FURI_LOG_I(TAG, "seos_hci_connect");
  390. uint16_t opcode = BT_OP(OGF_LE_CTL, OCF_LE_CREATE_CONNECTION);
  391. // Values arbitrarily copied from https://stackoverflow.com/questions/71250571/how-to-send-le-extended-create-connection-in-ble-with-raspberry-pi
  392. uint8_t connect[] = {
  393. 0xff,
  394. 0xff, //opcode
  395. 0x19, // length
  396. 0x60,
  397. 0x00, // LE_Scan_Interval
  398. 0x60,
  399. 0x00, // LE_Scan_Window
  400. 0x00, // Initiator_Filter_Policy
  401. seos_hci->address_type, // Peer_Address_Type
  402. 0xFF,
  403. 0xFF,
  404. 0xFF,
  405. 0xFF,
  406. 0xFF,
  407. 0xFF, // Peer_Address
  408. 0x01, // Own_Address_Type
  409. 0x18,
  410. 0x00, // Connection_Interval_Min
  411. 0x28,
  412. 0x00, // Connection_Interval_Max
  413. 0x00,
  414. 0x00, // Max_Latency
  415. 0x90,
  416. 0x00, // Supervision_Timeout
  417. 0x00,
  418. 0x00, // Min_CE_Length
  419. 0x00,
  420. 0x00, // Max_CE_Length
  421. };
  422. memcpy(connect, (uint8_t*)&opcode, sizeof(opcode));
  423. memcpy(connect + 9, seos_hci->address, 6);
  424. BitBuffer* message = bit_buffer_alloc(sizeof(connect));
  425. bit_buffer_append_bytes(message, connect, sizeof(connect));
  426. seos_hci_h5_send(seos_hci->seos_hci_h5, HCI_COMMAND_PKT, message);
  427. bit_buffer_free(message);
  428. }
  429. void seos_hci_handle_event_le_meta(SeosHci* seos_hci, BitBuffer* frame) {
  430. const uint8_t* data = bit_buffer_get_data(frame);
  431. // uint8_t length = data[2];
  432. uint8_t subevent_code = data[3];
  433. switch(subevent_code) {
  434. case HCI_LE_CONNECTION_COMPLETE:
  435. uint8_t status = data[4];
  436. if(status != 0x00) {
  437. FURI_LOG_W(TAG, "Connection complete with non-zero status");
  438. return;
  439. }
  440. seos_hci->connection_handle = data[6] << 8 | data[5];
  441. uint8_t role = data[7];
  442. uint8_t peer_address_type = data[8];
  443. // and more...
  444. FURI_LOG_D(
  445. TAG,
  446. "connection complete: handle %04x role %d peer_address_type %d",
  447. seos_hci->connection_handle,
  448. role,
  449. peer_address_type);
  450. view_dispatcher_send_custom_event(
  451. seos_hci->seos->view_dispatcher, SeosCustomEventConnected);
  452. if(role == 0x00) { // I'm a central!
  453. if(seos_hci->central_connection_callback) {
  454. seos_hci->central_connection_callback(seos_hci->central_connection_context);
  455. } else {
  456. FURI_LOG_W(TAG, "No central_connection_callback defined");
  457. }
  458. } else if(role == 0x01) { // I'm a peripheral!
  459. }
  460. break;
  461. case HCI_LE_ADVERTISING_REPORT:
  462. // Prevent interruptions to handling a device by a second advertisement
  463. if(seos_hci->device_found) {
  464. break;
  465. }
  466. // TODO: Support single packet with multiple reports
  467. uint8_t num_reports = data[4];
  468. uint8_t Event_Type = data[5];
  469. uint8_t Address_Type = data[6];
  470. const uint8_t* Address = data + 7;
  471. uint8_t Data_Length = data[13];
  472. const uint8_t* adv_data = data + 14;
  473. char name[20];
  474. memset(name, 0, sizeof(name));
  475. if(Event_Type != 0 || Data_Length < sizeof(seos_reader_service_backwards)) {
  476. break;
  477. }
  478. FURI_LOG_D(
  479. TAG,
  480. "Adv %d reports: event type %d address type %d data len %d",
  481. num_reports,
  482. Event_Type,
  483. Address_Type,
  484. Data_Length);
  485. // seos_log_buffer(TAG, "ADV_IND", (uint8_t*)adv_data, Data_Length);
  486. uint8_t i = 0;
  487. do {
  488. uint8_t l = adv_data[i++];
  489. uint8_t t = adv_data[i++];
  490. const uint8_t* val = adv_data + i;
  491. i += l - 1; // subtract one so we don't overcount the type byte
  492. switch(t) {
  493. case 0x07:
  494. if(seos_hci->flow_mode == FLOW_CRED) {
  495. // You're acting like a credential, looking for readers to connect and send to
  496. if(memcmp(
  497. val,
  498. seos_reader_service_backwards,
  499. sizeof(seos_reader_service_backwards)) == 0) {
  500. seos_hci->device_found = true;
  501. }
  502. } else if(seos_hci->flow_mode == FLOW_READER) {
  503. if(memcmp(
  504. val,
  505. seos_cred_service_backwards,
  506. sizeof(seos_cred_service_backwards)) == 0) {
  507. seos_hci->device_found = true;
  508. }
  509. } else if(seos_hci->flow_mode == FLOW_READER_SCANNER) {
  510. // Reader scanner looks for readers, it doesn't act like a reader (as in FLOW_READER)
  511. if(memcmp(
  512. val,
  513. seos_reader_service_backwards,
  514. sizeof(seos_reader_service_backwards)) == 0) {
  515. // TODO: handle duplicates
  516. notification_message(
  517. seos_hci->seos->notifications, &sequence_single_vibro);
  518. }
  519. } else if(seos_hci->flow_mode == FLOW_CRED_SCANNER) {
  520. // Cred scanner looks for devices advertising credential service, it doesn't act like a credential (as in FLOW_CRED)
  521. if(memcmp(
  522. val,
  523. seos_cred_service_backwards,
  524. sizeof(seos_cred_service_backwards)) == 0) {
  525. // TODO: handle duplicates
  526. notification_message(
  527. seos_hci->seos->notifications, &sequence_single_vibro);
  528. }
  529. }
  530. break;
  531. case 0x08: // Short device name
  532. case 0x09: // full device name
  533. memcpy(name, val, l - 1);
  534. break;
  535. }
  536. } while(i < Data_Length - 1);
  537. seos_hci->adv_report_count += num_reports;
  538. if(seos_hci->device_found) {
  539. FURI_LOG_I(TAG, "Matched Seos Reader Service: %s", name);
  540. seos_hci->address_type = Address_Type;
  541. memcpy(seos_hci->address, Address, sizeof(seos_hci->address));
  542. seos_hci_set_scan(seos_hci, false);
  543. view_dispatcher_send_custom_event(
  544. seos_hci->seos->view_dispatcher, SeosCustomEventFound);
  545. }
  546. break;
  547. default:
  548. FURI_LOG_W(TAG, "LE Meta event with unknown subevent code");
  549. break;
  550. }
  551. }
  552. void seos_hci_event_handler(SeosHci* seos_hci, BitBuffer* frame) {
  553. const uint8_t* data = bit_buffer_get_data(frame);
  554. uint8_t sub_event_type = data[1];
  555. // uint8_t length = data[2];
  556. if(sub_event_type == BT_HCI_EVT_CMD_STATUS) {
  557. struct bt_hci_evt_cmd_status {
  558. uint8_t status;
  559. uint8_t ncmd;
  560. uint16_t opcode;
  561. } __packed;
  562. struct bt_hci_evt_cmd_status* status = (struct bt_hci_evt_cmd_status*)(data + 3);
  563. if(status->status == 0) {
  564. /*
  565. FURI_LOG_D(
  566. TAG,
  567. "Status: status %d ncmd 0x%02x opcode %04x",
  568. status->status,
  569. status->ncmd,
  570. status->opcode);
  571. */
  572. } else {
  573. // Unknown HCI command (0x01)
  574. FURI_LOG_W(
  575. TAG,
  576. "Status: status %d ncmd 0x%02x opcode %04x",
  577. status->status,
  578. status->ncmd,
  579. status->opcode);
  580. }
  581. } else if(sub_event_type == BT_HCI_EVT_CMD_COMPLETE) {
  582. seos_hci_handle_event_cmd_complete(seos_hci, frame);
  583. } else if(sub_event_type == BT_HCI_EVT_LE_META) {
  584. seos_hci_handle_event_le_meta(seos_hci, frame);
  585. } else if(sub_event_type == BT_HCI_EVT_DISCONN_COMPLETE) {
  586. seos_hci->connection_handle = 0;
  587. if(seos_hci->mode == BLE_PERIPHERAL) {
  588. FURI_LOG_W(TAG, "Disconnect. Restart Advertising");
  589. seos_hci_enable_advertising(seos_hci, true);
  590. } else if(seos_hci->mode == BLE_CENTRAL) {
  591. FURI_LOG_W(TAG, "Disconnect. Scan again");
  592. seos_hci->device_found = false;
  593. seos_hci_set_scan(seos_hci, true);
  594. }
  595. } else if(sub_event_type == BT_HCI_EVT_NUM_COMPLETED_PACKETS) {
  596. struct bt_hci_evt_num_completed_packets {
  597. uint8_t num_handles;
  598. uint16_t handle;
  599. uint16_t count;
  600. } __attribute__((packed));
  601. struct bt_hci_evt_num_completed_packets* evt =
  602. (struct bt_hci_evt_num_completed_packets*)(data + 3);
  603. if(evt->num_handles == 1) {
  604. // FURI_LOG_D(TAG, "Number of completed packets for %04x: %d", evt->handle, evt->count);
  605. } else {
  606. FURI_LOG_D(TAG, "Number of completed packets for multiple handles");
  607. }
  608. if(seos_hci->completed_packets_callback) {
  609. seos_hci->completed_packets_callback(seos_hci->completed_packets_context);
  610. }
  611. } else {
  612. FURI_LOG_W(TAG, "Unhandled event subtype %02x", sub_event_type);
  613. }
  614. }
  615. void seos_hci_acldata_send(SeosHci* seos_hci, uint8_t flags, BitBuffer* tx) {
  616. // seos_log_buffer("seos_hci_acldata_send", tx);
  617. uint16_t tx_len = bit_buffer_get_size_bytes(tx);
  618. uint16_t handle = seos_hci->connection_handle | (flags << 12);
  619. BitBuffer* response = bit_buffer_alloc(tx_len + sizeof(handle) + sizeof(tx_len));
  620. bit_buffer_append_bytes(response, (uint8_t*)&handle, sizeof(handle));
  621. bit_buffer_append_bytes(response, (uint8_t*)&tx_len, sizeof(tx_len));
  622. // tx
  623. bit_buffer_append_bytes(response, bit_buffer_get_data(tx), tx_len);
  624. seos_hci_h5_send(seos_hci->seos_hci_h5, HCI_ACLDATA_PKT, response);
  625. bit_buffer_free(response);
  626. }
  627. void seos_hci_acldata_handler(SeosHci* seos_hci, BitBuffer* frame) {
  628. const uint8_t* data = bit_buffer_get_data(frame);
  629. // 0 is 0x02 for ACL DATA
  630. uint16_t handle = (data[2] << 8 | data[1]) & 0x0FFF;
  631. uint8_t flags = data[2] >> 4;
  632. uint16_t length = data[4] << 8 | data[3];
  633. /*
  634. uint8_t Broadcast_Flag = flags >> 2;
  635. uint8_t Packet_Boundary_Flag = flags & 0x03;
  636. FURI_LOG_D(
  637. TAG,
  638. "ACLDATA handle %04x Broadcast_Flag %02x Packet_Boundary_Flag %02x length %d",
  639. handle,
  640. Broadcast_Flag,
  641. Packet_Boundary_Flag,
  642. length);
  643. */
  644. if(handle != seos_hci->connection_handle) {
  645. FURI_LOG_W(TAG, "Mismatched handle values");
  646. }
  647. BitBuffer* pdu = bit_buffer_alloc(length);
  648. bit_buffer_append_bytes(pdu, data + 1 /*ACL DATA */ + sizeof(handle) + sizeof(length), length);
  649. if(seos_hci->receive_callback) {
  650. seos_hci->receive_callback(seos_hci->receive_callback_context, handle, flags, pdu);
  651. }
  652. bit_buffer_free(pdu);
  653. }
  654. size_t seos_hci_recv(void* context, BitBuffer* frame) {
  655. SeosHci* seos_hci = (SeosHci*)context;
  656. // seos_log_buffer("HCI Frame", frame);
  657. const uint8_t* data = bit_buffer_get_data(frame);
  658. uint8_t event_type = data[0];
  659. // TODO: consider `bit_buffer_starts_with_byte`
  660. switch(event_type) {
  661. case HCI_EVENT_PKT:
  662. seos_hci_event_handler(seos_hci, frame);
  663. break;
  664. case HCI_ACLDATA_PKT:
  665. seos_hci_acldata_handler(seos_hci, frame);
  666. break;
  667. default:
  668. FURI_LOG_W(TAG, "Haven't added support for other HCI commands yet");
  669. break;
  670. }
  671. return 0;
  672. }
  673. // TODO: Consider making this a general "when the state changes" callback which would check if H5 is active (or needs to be reset)
  674. void seos_hci_init(void* context) {
  675. SeosHci* seos_hci = (SeosHci*)context;
  676. BitBuffer* message = bit_buffer_alloc(128);
  677. uint8_t reset[] = {0x03, 0x0c, 0x00};
  678. bit_buffer_append_bytes(message, reset, sizeof(reset));
  679. seos_hci_h5_send(seos_hci->seos_hci_h5, HCI_COMMAND_PKT, message);
  680. view_dispatcher_send_custom_event(seos_hci->seos->view_dispatcher, SeosCustomEventHCIInit);
  681. bit_buffer_free(message);
  682. }
  683. void seos_hci_set_receive_callback(
  684. SeosHci* seos_hci,
  685. SeosHciReceiveCallback callback,
  686. void* context) {
  687. seos_hci->receive_callback = callback;
  688. seos_hci->receive_callback_context = context;
  689. }
  690. void seos_hci_set_completed_packets_callback(
  691. SeosHci* seos_hci,
  692. SeosHciCompletedPacketsCallback callback,
  693. void* context) {
  694. seos_hci->completed_packets_callback = callback;
  695. seos_hci->completed_packets_context = context;
  696. }
  697. void seos_hci_set_central_connection_callback(
  698. SeosHci* seos_hci,
  699. SeosHciCentralConnectionCallback callback,
  700. void* context) {
  701. seos_hci->central_connection_callback = callback;
  702. seos_hci->central_connection_context = context;
  703. }