1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
|
/******************************************************************************
*
* Copyright 2009-2012 Broadcom Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
******************************************************************************/
#define LOG_TAG "bt_btif_sock_rfcomm"
#include <frameworks/proto_logging/stats/enums/bluetooth/enums.pb.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <cstdint>
#include <mutex>
#include "bt_target.h" // Must be first to define build configuration
#include "bta/include/bta_jv_api.h"
#include "btif/include/btif_metrics_logging.h"
/* The JV interface can have only one user, hence we need to call a few
* L2CAP functions from this file. */
#include "btif/include/btif_sock_l2cap.h"
#include "btif/include/btif_sock_sdp.h"
#include "btif/include/btif_sock_thread.h"
#include "btif/include/btif_sock_util.h"
#include "btif/include/btif_uid.h"
#include "include/hardware/bt_sock.h"
#include "osi/include/allocator.h"
#include "osi/include/compat.h"
#include "osi/include/list.h"
#include "osi/include/log.h"
#include "osi/include/osi.h" // INVALID_FD
#include "stack/include/bt_hdr.h"
#include "stack/include/btm_api.h"
#include "stack/include/btm_api_types.h"
#include "stack/include/port_api.h"
#include "types/bluetooth/uuid.h"
#include "types/raw_address.h"
using bluetooth::Uuid;
// Maximum number of RFCOMM channels (1-30 inclusive).
#define MAX_RFC_CHANNEL 30
// Maximum number of devices we can have an RFCOMM connection with.
#define MAX_RFC_SESSION 7
typedef struct {
int outgoing_congest : 1;
int pending_sdp_request : 1;
int doing_sdp_request : 1;
int server : 1;
int connected : 1;
int closing : 1;
} flags_t;
typedef struct {
flags_t f;
uint32_t id; // Non-zero indicates a valid (in-use) slot.
int security;
int scn; // Server channel number
int scn_notified;
RawAddress addr;
int is_service_uuid_valid;
Uuid service_uuid;
char service_name[256];
int fd;
int app_fd; // Temporary storage for the half of the socketpair that's sent
// back to upper layers.
int app_uid; // UID of the app for which this socket was created.
int mtu;
uint8_t* packet;
int sdp_handle;
int rfc_handle;
int rfc_port_handle;
int role;
list_t* incoming_queue;
// Cumulative number of bytes transmitted on this socket
int64_t tx_bytes;
// Cumulative number of bytes received on this socket
int64_t rx_bytes;
} rfc_slot_t;
static rfc_slot_t rfc_slots[MAX_RFC_CHANNEL];
static uint32_t rfc_slot_id;
static volatile int pth = -1; // poll thread handle
static std::recursive_mutex slot_lock;
static uid_set_t* uid_set = NULL;
static rfc_slot_t* find_free_slot(void);
static void cleanup_rfc_slot(rfc_slot_t* rs);
static void jv_dm_cback(tBTA_JV_EVT event, tBTA_JV* p_data, uint32_t id);
static uint32_t rfcomm_cback(tBTA_JV_EVT event, tBTA_JV* p_data,
uint32_t rfcomm_slot_id);
static bool send_app_scn(rfc_slot_t* rs);
static bool is_init_done(void) { return pth != -1; }
bt_status_t btsock_rfc_init(int poll_thread_handle, uid_set_t* set) {
pth = poll_thread_handle;
uid_set = set;
memset(rfc_slots, 0, sizeof(rfc_slots));
for (size_t i = 0; i < ARRAY_SIZE(rfc_slots); ++i) {
rfc_slots[i].scn = -1;
rfc_slots[i].sdp_handle = 0;
rfc_slots[i].fd = INVALID_FD;
rfc_slots[i].app_fd = INVALID_FD;
rfc_slots[i].incoming_queue = list_new(osi_free);
CHECK(rfc_slots[i].incoming_queue != NULL);
}
BTA_JvEnable(jv_dm_cback);
return BT_STATUS_SUCCESS;
}
void btsock_rfc_cleanup(void) {
pth = -1;
BTA_JvDisable();
std::unique_lock<std::recursive_mutex> lock(slot_lock);
for (size_t i = 0; i < ARRAY_SIZE(rfc_slots); ++i) {
if (rfc_slots[i].id) cleanup_rfc_slot(&rfc_slots[i]);
list_free(rfc_slots[i].incoming_queue);
rfc_slots[i].incoming_queue = NULL;
}
uid_set = NULL;
}
static rfc_slot_t* find_free_slot(void) {
for (size_t i = 0; i < ARRAY_SIZE(rfc_slots); ++i)
if (rfc_slots[i].fd == INVALID_FD) return &rfc_slots[i];
return NULL;
}
static rfc_slot_t* find_rfc_slot_by_id(uint32_t id) {
CHECK(id != 0);
for (size_t i = 0; i < ARRAY_SIZE(rfc_slots); ++i)
if (rfc_slots[i].id == id) return &rfc_slots[i];
LOG_ERROR("%s unable to find RFCOMM slot id: %u", __func__, id);
return NULL;
}
static rfc_slot_t* find_rfc_slot_by_pending_sdp(void) {
uint32_t min_id = UINT32_MAX;
int slot = -1;
for (size_t i = 0; i < ARRAY_SIZE(rfc_slots); ++i)
if (rfc_slots[i].id && rfc_slots[i].f.pending_sdp_request &&
rfc_slots[i].id < min_id) {
min_id = rfc_slots[i].id;
slot = i;
}
return (slot == -1) ? NULL : &rfc_slots[slot];
}
static bool is_requesting_sdp(void) {
for (size_t i = 0; i < ARRAY_SIZE(rfc_slots); ++i)
if (rfc_slots[i].id && rfc_slots[i].f.doing_sdp_request) return true;
return false;
}
static rfc_slot_t* alloc_rfc_slot(const RawAddress* addr, const char* name,
const Uuid& uuid, int channel, int flags,
bool server) {
int security = 0;
if (flags & BTSOCK_FLAG_ENCRYPT)
security |= server ? BTM_SEC_IN_ENCRYPT : BTM_SEC_OUT_ENCRYPT;
if (flags & BTSOCK_FLAG_AUTH)
security |= server ? BTM_SEC_IN_AUTHENTICATE : BTM_SEC_OUT_AUTHENTICATE;
if (flags & BTSOCK_FLAG_AUTH_MITM)
security |= server ? BTM_SEC_IN_MITM : BTM_SEC_OUT_MITM;
if (flags & BTSOCK_FLAG_AUTH_16_DIGIT)
security |= BTM_SEC_IN_MIN_16_DIGIT_PIN;
rfc_slot_t* slot = find_free_slot();
if (!slot) {
LOG_ERROR("%s unable to find free RFCOMM slot.", __func__);
return NULL;
}
int fds[2] = {INVALID_FD, INVALID_FD};
if (socketpair(AF_LOCAL, SOCK_STREAM, 0, fds) == -1) {
LOG_ERROR("%s error creating socketpair: %s", __func__, strerror(errno));
return NULL;
}
// Increment slot id and make sure we don't use id=0.
if (++rfc_slot_id == 0) rfc_slot_id = 1;
slot->fd = fds[0];
slot->app_fd = fds[1];
slot->security = security;
slot->scn = channel;
slot->app_uid = -1;
slot->is_service_uuid_valid = !uuid.IsEmpty();
slot->service_uuid = uuid;
if (name && *name) {
strlcpy(slot->service_name, name, sizeof(slot->service_name));
} else {
memset(slot->service_name, 0, sizeof(slot->service_name));
}
if (addr) {
slot->addr = *addr;
} else {
slot->addr = RawAddress::kEmpty;
}
slot->id = rfc_slot_id;
slot->f.server = server;
slot->tx_bytes = 0;
slot->rx_bytes = 0;
return slot;
}
static rfc_slot_t* create_srv_accept_rfc_slot(rfc_slot_t* srv_rs,
const RawAddress* addr,
int open_handle,
int new_listen_handle) {
rfc_slot_t* accept_rs = alloc_rfc_slot(
addr, srv_rs->service_name, srv_rs->service_uuid, srv_rs->scn, 0, false);
if (!accept_rs) {
LOG_ERROR("%s unable to allocate RFCOMM slot.", __func__);
return NULL;
}
accept_rs->f.server = false;
accept_rs->f.connected = true;
accept_rs->security = srv_rs->security;
accept_rs->mtu = srv_rs->mtu;
accept_rs->role = srv_rs->role;
accept_rs->rfc_handle = open_handle;
accept_rs->rfc_port_handle = BTA_JvRfcommGetPortHdl(open_handle);
accept_rs->app_uid = srv_rs->app_uid;
srv_rs->rfc_handle = new_listen_handle;
srv_rs->rfc_port_handle = BTA_JvRfcommGetPortHdl(new_listen_handle);
CHECK(accept_rs->rfc_port_handle != srv_rs->rfc_port_handle);
// now swap the slot id
uint32_t new_listen_id = accept_rs->id;
accept_rs->id = srv_rs->id;
srv_rs->id = new_listen_id;
return accept_rs;
}
bt_status_t btsock_rfc_listen(const char* service_name,
const Uuid* service_uuid, int channel,
int* sock_fd, int flags, int app_uid) {
CHECK(sock_fd != NULL);
CHECK((service_uuid != NULL) ||
(channel >= 1 && channel <= MAX_RFC_CHANNEL) ||
((flags & BTSOCK_FLAG_NO_SDP) != 0));
*sock_fd = INVALID_FD;
// TODO(sharvil): not sure that this check makes sense; seems like a logic
// error to call
// functions on RFCOMM sockets before initializing the module. Probably should
// be an assert.
if (!is_init_done()) return BT_STATUS_NOT_READY;
if ((flags & BTSOCK_FLAG_NO_SDP) == 0) {
if (!service_uuid || service_uuid->IsEmpty()) {
// Use serial port profile to listen to specified channel
service_uuid = &UUID_SPP;
} else {
// Check the service_uuid. overwrite the channel # if reserved
int reserved_channel = get_reserved_rfc_channel(*service_uuid);
if (reserved_channel > 0) {
channel = reserved_channel;
}
}
}
std::unique_lock<std::recursive_mutex> lock(slot_lock);
rfc_slot_t* slot =
alloc_rfc_slot(NULL, service_name, *service_uuid, channel, flags, true);
if (!slot) {
LOG_ERROR("unable to allocate RFCOMM slot");
return BT_STATUS_FAIL;
}
LOG_INFO("Adding listening socket service_name: %s - channel: %d",
service_name, channel);
BTA_JvGetChannelId(BTA_JV_CONN_TYPE_RFCOMM, slot->id, channel);
*sock_fd = slot->app_fd; // Transfer ownership of fd to caller.
/*TODO:
* We are leaking one of the app_fd's - either the listen socket, or the
connection socket.
* WE need to close this in native, as the FD might belong to another process
- This is the server socket FD
- For accepted connections, we close the FD after passing it to JAVA.
- Try to simply remove the = -1 to free the FD at rs cleanup.*/
// close(rs->app_fd);
slot->app_fd = INVALID_FD; // Drop our reference to the fd.
slot->app_uid = app_uid;
btsock_thread_add_fd(pth, slot->fd, BTSOCK_RFCOMM, SOCK_THREAD_FD_EXCEPTION,
slot->id);
return BT_STATUS_SUCCESS;
}
bt_status_t btsock_rfc_connect(const RawAddress* bd_addr,
const Uuid* service_uuid, int channel,
int* sock_fd, int flags, int app_uid) {
CHECK(sock_fd != NULL);
CHECK((service_uuid != NULL) || (channel >= 1 && channel <= MAX_RFC_CHANNEL));
*sock_fd = INVALID_FD;
// TODO(sharvil): not sure that this check makes sense; seems like a logic
// error to call
// functions on RFCOMM sockets before initializing the module. Probably should
// be an assert.
if (!is_init_done()) return BT_STATUS_NOT_READY;
std::unique_lock<std::recursive_mutex> lock(slot_lock);
rfc_slot_t* slot =
alloc_rfc_slot(bd_addr, NULL, *service_uuid, channel, flags, false);
if (!slot) {
LOG_ERROR("%s unable to allocate RFCOMM slot.", __func__);
return BT_STATUS_FAIL;
}
if (!service_uuid || service_uuid->IsEmpty()) {
tBTA_JV_STATUS ret =
BTA_JvRfcommConnect(slot->security, slot->role, slot->scn, slot->addr,
rfcomm_cback, slot->id);
if (ret != BTA_JV_SUCCESS) {
LOG_ERROR("%s unable to initiate RFCOMM connection: %d", __func__, ret);
cleanup_rfc_slot(slot);
return BT_STATUS_FAIL;
}
if (!send_app_scn(slot)) {
LOG_ERROR("%s unable to send channel number.", __func__);
cleanup_rfc_slot(slot);
return BT_STATUS_FAIL;
}
} else {
if (!is_requesting_sdp()) {
BTA_JvStartDiscovery(*bd_addr, 1, service_uuid, slot->id);
slot->f.pending_sdp_request = false;
slot->f.doing_sdp_request = true;
} else {
slot->f.pending_sdp_request = true;
slot->f.doing_sdp_request = false;
}
}
*sock_fd = slot->app_fd; // Transfer ownership of fd to caller.
slot->app_fd = INVALID_FD; // Drop our reference to the fd.
slot->app_uid = app_uid;
btsock_thread_add_fd(pth, slot->fd, BTSOCK_RFCOMM, SOCK_THREAD_FD_RD,
slot->id);
return BT_STATUS_SUCCESS;
}
static int create_server_sdp_record(rfc_slot_t* slot) {
if (slot->scn == 0) {
return false;
}
slot->sdp_handle =
add_rfc_sdp_rec(slot->service_name, slot->service_uuid, slot->scn);
return (slot->sdp_handle > 0);
}
static void free_rfc_slot_scn(rfc_slot_t* slot) {
if (slot->scn <= 0) return;
if (slot->f.server && !slot->f.closing && slot->rfc_handle) {
BTA_JvRfcommStopServer(slot->rfc_handle, slot->id);
slot->rfc_handle = 0;
}
if (slot->f.server) BTM_FreeSCN(slot->scn);
slot->scn = 0;
}
static void cleanup_rfc_slot(rfc_slot_t* slot) {
if (slot->fd != INVALID_FD) {
shutdown(slot->fd, SHUT_RDWR);
close(slot->fd);
log_socket_connection_state(
slot->addr, slot->id, BTSOCK_RFCOMM,
android::bluetooth::SOCKET_CONNECTION_STATE_DISCONNECTED,
slot->tx_bytes, slot->rx_bytes, slot->app_uid, slot->scn,
slot->f.server ? android::bluetooth::SOCKET_ROLE_LISTEN
: android::bluetooth::SOCKET_ROLE_CONNECTION);
slot->fd = INVALID_FD;
}
if (slot->app_fd != INVALID_FD) {
close(slot->app_fd);
slot->app_fd = INVALID_FD;
}
if (slot->sdp_handle > 0) {
del_rfc_sdp_rec(slot->sdp_handle);
slot->sdp_handle = 0;
}
if (slot->rfc_handle && !slot->f.closing && !slot->f.server) {
BTA_JvRfcommClose(slot->rfc_handle, slot->id);
slot->rfc_handle = 0;
}
free_rfc_slot_scn(slot);
list_clear(slot->incoming_queue);
slot->rfc_port_handle = 0;
memset(&slot->f, 0, sizeof(slot->f));
slot->id = 0;
slot->scn_notified = false;
slot->tx_bytes = 0;
slot->rx_bytes = 0;
}
static bool send_app_scn(rfc_slot_t* slot) {
if (slot->scn_notified) {
// already send, just return success.
return true;
}
slot->scn_notified = true;
return sock_send_all(slot->fd, (const uint8_t*)&slot->scn,
sizeof(slot->scn)) == sizeof(slot->scn);
}
static bool send_app_connect_signal(int fd, const RawAddress* addr, int channel,
int status, int send_fd) {
sock_connect_signal_t cs;
cs.size = sizeof(cs);
cs.bd_addr = *addr;
cs.channel = channel;
cs.status = status;
cs.max_rx_packet_size = 0; // not used for RFCOMM
cs.max_tx_packet_size = 0; // not used for RFCOMM
if (send_fd == INVALID_FD)
return sock_send_all(fd, (const uint8_t*)&cs, sizeof(cs)) == sizeof(cs);
return sock_send_fd(fd, (const uint8_t*)&cs, sizeof(cs), send_fd) ==
sizeof(cs);
}
static void on_cl_rfc_init(tBTA_JV_RFCOMM_CL_INIT* p_init, uint32_t id) {
std::unique_lock<std::recursive_mutex> lock(slot_lock);
rfc_slot_t* slot = find_rfc_slot_by_id(id);
if (!slot) return;
if (p_init->status == BTA_JV_SUCCESS) {
slot->rfc_handle = p_init->handle;
} else {
cleanup_rfc_slot(slot);
}
}
static void on_srv_rfc_listen_started(tBTA_JV_RFCOMM_START* p_start,
uint32_t id) {
std::unique_lock<std::recursive_mutex> lock(slot_lock);
rfc_slot_t* slot = find_rfc_slot_by_id(id);
if (!slot) return;
if (p_start->status == BTA_JV_SUCCESS) {
slot->rfc_handle = p_start->handle;
log_socket_connection_state(
slot->addr, slot->id, BTSOCK_RFCOMM,
android::bluetooth::SocketConnectionstateEnum::
SOCKET_CONNECTION_STATE_LISTENING,
0, 0, slot->app_uid, slot->scn,
slot->f.server ? android::bluetooth::SOCKET_ROLE_LISTEN
: android::bluetooth::SOCKET_ROLE_CONNECTION);
} else {
cleanup_rfc_slot(slot);
}
}
static uint32_t on_srv_rfc_connect(tBTA_JV_RFCOMM_SRV_OPEN* p_open,
uint32_t id) {
std::unique_lock<std::recursive_mutex> lock(slot_lock);
rfc_slot_t* accept_rs;
rfc_slot_t* srv_rs = find_rfc_slot_by_id(id);
if (!srv_rs) return 0;
accept_rs = create_srv_accept_rfc_slot(
srv_rs, &p_open->rem_bda, p_open->handle, p_open->new_listen_handle);
if (!accept_rs) return 0;
log_socket_connection_state(
accept_rs->addr, accept_rs->id, BTSOCK_RFCOMM,
android::bluetooth::SOCKET_CONNECTION_STATE_CONNECTED, 0, 0,
accept_rs->app_uid, accept_rs->scn,
accept_rs->f.server ? android::bluetooth::SOCKET_ROLE_LISTEN
: android::bluetooth::SOCKET_ROLE_CONNECTION);
// Start monitoring the socket.
btsock_thread_add_fd(pth, srv_rs->fd, BTSOCK_RFCOMM, SOCK_THREAD_FD_EXCEPTION,
srv_rs->id);
btsock_thread_add_fd(pth, accept_rs->fd, BTSOCK_RFCOMM, SOCK_THREAD_FD_RD,
accept_rs->id);
send_app_connect_signal(srv_rs->fd, &accept_rs->addr, srv_rs->scn, 0,
accept_rs->app_fd);
accept_rs->app_fd =
INVALID_FD; // Ownership of the application fd has been transferred.
return srv_rs->id;
}
static void on_cli_rfc_connect(tBTA_JV_RFCOMM_OPEN* p_open, uint32_t id) {
std::unique_lock<std::recursive_mutex> lock(slot_lock);
rfc_slot_t* slot = find_rfc_slot_by_id(id);
if (!slot) return;
if (p_open->status != BTA_JV_SUCCESS) {
cleanup_rfc_slot(slot);
return;
}
slot->rfc_port_handle = BTA_JvRfcommGetPortHdl(p_open->handle);
slot->addr = p_open->rem_bda;
log_socket_connection_state(
slot->addr, slot->id, BTSOCK_RFCOMM,
android::bluetooth::SOCKET_CONNECTION_STATE_CONNECTED, 0, 0,
slot->app_uid, slot->scn,
slot->f.server ? android::bluetooth::SOCKET_ROLE_LISTEN
: android::bluetooth::SOCKET_ROLE_CONNECTION);
if (send_app_connect_signal(slot->fd, &slot->addr, slot->scn, 0, -1)) {
slot->f.connected = true;
} else {
LOG_ERROR("%s unable to send connect completion signal to caller.",
__func__);
}
}
static void on_rfc_close(UNUSED_ATTR tBTA_JV_RFCOMM_CLOSE* p_close,
uint32_t id) {
std::unique_lock<std::recursive_mutex> lock(slot_lock);
// rfc_handle already closed when receiving rfcomm close event from stack.
rfc_slot_t* slot = find_rfc_slot_by_id(id);
if (slot) {
log_socket_connection_state(
slot->addr, slot->id, BTSOCK_RFCOMM,
android::bluetooth::SOCKET_CONNECTION_STATE_DISCONNECTING, 0, 0,
slot->app_uid, slot->scn,
slot->f.server ? android::bluetooth::SOCKET_ROLE_LISTEN
: android::bluetooth::SOCKET_ROLE_CONNECTION);
cleanup_rfc_slot(slot);
}
}
static void on_rfc_write_done(tBTA_JV_RFCOMM_WRITE* p, uint32_t id) {
if (p->status != BTA_JV_SUCCESS) {
LOG_ERROR("%s error writing to RFCOMM socket with slot %u.", __func__,
p->req_id);
return;
}
int app_uid = -1;
std::unique_lock<std::recursive_mutex> lock(slot_lock);
rfc_slot_t* slot = find_rfc_slot_by_id(id);
if (slot) {
app_uid = slot->app_uid;
if (!slot->f.outgoing_congest) {
btsock_thread_add_fd(pth, slot->fd, BTSOCK_RFCOMM, SOCK_THREAD_FD_RD,
slot->id);
}
slot->tx_bytes += p->len;
}
uid_set_add_tx(uid_set, app_uid, p->len);
}
static void on_rfc_outgoing_congest(tBTA_JV_RFCOMM_CONG* p, uint32_t id) {
std::unique_lock<std::recursive_mutex> lock(slot_lock);
rfc_slot_t* slot = find_rfc_slot_by_id(id);
if (slot) {
slot->f.outgoing_congest = p->cong ? 1 : 0;
if (!slot->f.outgoing_congest)
btsock_thread_add_fd(pth, slot->fd, BTSOCK_RFCOMM, SOCK_THREAD_FD_RD,
slot->id);
}
}
static uint32_t rfcomm_cback(tBTA_JV_EVT event, tBTA_JV* p_data,
uint32_t rfcomm_slot_id) {
uint32_t id = 0;
switch (event) {
case BTA_JV_RFCOMM_START_EVT:
on_srv_rfc_listen_started(&p_data->rfc_start, rfcomm_slot_id);
break;
case BTA_JV_RFCOMM_CL_INIT_EVT:
on_cl_rfc_init(&p_data->rfc_cl_init, rfcomm_slot_id);
break;
case BTA_JV_RFCOMM_OPEN_EVT:
BTA_JvSetPmProfile(p_data->rfc_open.handle, BTA_JV_PM_ID_1,
BTA_JV_CONN_OPEN);
on_cli_rfc_connect(&p_data->rfc_open, rfcomm_slot_id);
break;
case BTA_JV_RFCOMM_SRV_OPEN_EVT:
BTA_JvSetPmProfile(p_data->rfc_srv_open.handle, BTA_JV_PM_ALL,
BTA_JV_CONN_OPEN);
id = on_srv_rfc_connect(&p_data->rfc_srv_open, rfcomm_slot_id);
break;
case BTA_JV_RFCOMM_CLOSE_EVT:
APPL_TRACE_DEBUG("BTA_JV_RFCOMM_CLOSE_EVT: rfcomm_slot_id:%d",
rfcomm_slot_id);
on_rfc_close(&p_data->rfc_close, rfcomm_slot_id);
break;
case BTA_JV_RFCOMM_WRITE_EVT:
on_rfc_write_done(&p_data->rfc_write, rfcomm_slot_id);
break;
case BTA_JV_RFCOMM_CONG_EVT:
on_rfc_outgoing_congest(&p_data->rfc_cong, rfcomm_slot_id);
break;
case BTA_JV_RFCOMM_DATA_IND_EVT:
// Unused.
break;
default:
LOG_ERROR("%s unhandled event %d, slot id: %u", __func__, event,
rfcomm_slot_id);
break;
}
return id;
}
static void jv_dm_cback(tBTA_JV_EVT event, tBTA_JV* p_data, uint32_t id) {
switch (event) {
case BTA_JV_GET_SCN_EVT: {
std::unique_lock<std::recursive_mutex> lock(slot_lock);
rfc_slot_t* rs = find_rfc_slot_by_id(id);
int new_scn = p_data->scn;
if (rs && (new_scn != 0)) {
rs->scn = new_scn;
/* BTA_JvCreateRecordByUser will only create a record if a UUID is
* specified,
* else it just allocate a RFC channel and start the RFCOMM thread -
* needed
* for the java
* layer to get a RFCOMM channel.
* If uuid is null the create_sdp_record() will be called from Java when
* it
* has received the RFCOMM and L2CAP channel numbers through the
* sockets.*/
// Send channel ID to java layer
if (!send_app_scn(rs)) {
// closed
APPL_TRACE_DEBUG("send_app_scn() failed, close rs->id:%d", rs->id);
cleanup_rfc_slot(rs);
} else {
if (rs->is_service_uuid_valid) {
// We already have data for SDP record, create it (RFC-only
// profiles)
BTA_JvCreateRecordByUser(rs->id);
} else {
APPL_TRACE_DEBUG(
"is_service_uuid_valid==false - don't set SDP-record, "
"just start the RFCOMM server",
rs->id);
// now start the rfcomm server after sdp & channel # assigned
BTA_JvRfcommStartServer(rs->security, rs->role, rs->scn,
MAX_RFC_SESSION, rfcomm_cback, rs->id);
}
}
} else if (rs) {
APPL_TRACE_ERROR(
"jv_dm_cback: Error: allocate channel %d, slot found:%p", rs->scn,
rs);
cleanup_rfc_slot(rs);
}
break;
}
case BTA_JV_GET_PSM_EVT: {
APPL_TRACE_DEBUG("Received PSM: 0x%04x", p_data->psm);
on_l2cap_psm_assigned(id, p_data->psm);
break;
}
case BTA_JV_CREATE_RECORD_EVT: {
std::unique_lock<std::recursive_mutex> lock(slot_lock);
rfc_slot_t* slot = find_rfc_slot_by_id(id);
if (slot && create_server_sdp_record(slot)) {
// Start the rfcomm server after sdp & channel # assigned.
BTA_JvRfcommStartServer(slot->security, slot->role, slot->scn,
MAX_RFC_SESSION, rfcomm_cback, slot->id);
} else if (slot) {
APPL_TRACE_ERROR("jv_dm_cback: cannot start server, slot found:%p",
slot);
cleanup_rfc_slot(slot);
}
break;
}
case BTA_JV_DISCOVERY_COMP_EVT: {
std::unique_lock<std::recursive_mutex> lock(slot_lock);
rfc_slot_t* slot = find_rfc_slot_by_id(id);
if (p_data->disc_comp.status == BTA_JV_SUCCESS && p_data->disc_comp.scn) {
if (slot && slot->f.doing_sdp_request) {
// Establish the connection if we successfully looked up a channel
// number to connect to.
if (BTA_JvRfcommConnect(slot->security, slot->role,
p_data->disc_comp.scn, slot->addr,
rfcomm_cback, slot->id) == BTA_JV_SUCCESS) {
slot->scn = p_data->disc_comp.scn;
slot->f.doing_sdp_request = false;
if (!send_app_scn(slot)) cleanup_rfc_slot(slot);
} else {
cleanup_rfc_slot(slot);
}
} else if (slot) {
// TODO(sharvil): this is really a logic error and we should probably
// assert.
LOG_ERROR(
"%s SDP response returned but RFCOMM slot %d did not "
"request SDP record.",
__func__, id);
}
} else if (slot) {
cleanup_rfc_slot(slot);
}
// Find the next slot that needs to perform an SDP request and service it.
slot = find_rfc_slot_by_pending_sdp();
if (slot) {
BTA_JvStartDiscovery(slot->addr, 1, &slot->service_uuid, slot->id);
slot->f.pending_sdp_request = false;
slot->f.doing_sdp_request = true;
}
break;
}
default:
APPL_TRACE_DEBUG("unhandled event:%d, slot id:%d", event, id);
break;
}
}
typedef enum {
SENT_FAILED,
SENT_NONE,
SENT_PARTIAL,
SENT_ALL,
} sent_status_t;
static sent_status_t send_data_to_app(int fd, BT_HDR* p_buf) {
if (p_buf->len == 0) return SENT_ALL;
ssize_t sent;
OSI_NO_INTR(
sent = send(fd, p_buf->data + p_buf->offset, p_buf->len, MSG_DONTWAIT));
if (sent == -1) {
if (errno == EAGAIN || errno == EWOULDBLOCK) return SENT_NONE;
LOG_ERROR("%s error writing RFCOMM data back to app: %s", __func__,
strerror(errno));
return SENT_FAILED;
}
if (sent == 0) return SENT_FAILED;
if (sent == p_buf->len) return SENT_ALL;
p_buf->offset += sent;
p_buf->len -= sent;
return SENT_PARTIAL;
}
static bool flush_incoming_que_on_wr_signal(rfc_slot_t* slot) {
while (!list_is_empty(slot->incoming_queue)) {
BT_HDR* p_buf = (BT_HDR*)list_front(slot->incoming_queue);
switch (send_data_to_app(slot->fd, p_buf)) {
case SENT_NONE:
case SENT_PARTIAL:
// monitor the fd to get callback when app is ready to receive data
btsock_thread_add_fd(pth, slot->fd, BTSOCK_RFCOMM, SOCK_THREAD_FD_WR,
slot->id);
return true;
case SENT_ALL:
list_remove(slot->incoming_queue, p_buf);
break;
case SENT_FAILED:
list_remove(slot->incoming_queue, p_buf);
return false;
}
}
// app is ready to receive data, tell stack to start the data flow
// fix me: need a jv flow control api to serialize the call in stack
APPL_TRACE_DEBUG(
"enable data flow, rfc_handle:0x%x, rfc_port_handle:0x%x, user_id:%d",
slot->rfc_handle, slot->rfc_port_handle, slot->id);
PORT_FlowControl_MaxCredit(slot->rfc_port_handle, true);
return true;
}
void btsock_rfc_signaled(UNUSED_ATTR int fd, int flags, uint32_t user_id) {
bool need_close = false;
std::unique_lock<std::recursive_mutex> lock(slot_lock);
rfc_slot_t* slot = find_rfc_slot_by_id(user_id);
if (!slot) return;
// Data available from app, tell stack we have outgoing data.
if (flags & SOCK_THREAD_FD_RD && !slot->f.server) {
if (slot->f.connected) {
// Make sure there's data pending in case the peer closed the socket.
int size = 0;
if (!(flags & SOCK_THREAD_FD_EXCEPTION) ||
(ioctl(slot->fd, FIONREAD, &size) == 0 && size)) {
BTA_JvRfcommWrite(slot->rfc_handle, slot->id);
}
} else {
LOG_ERROR(
"%s socket signaled for read while disconnected, slot: %d, "
"channel: %d",
__func__, slot->id, slot->scn);
need_close = true;
}
}
if (flags & SOCK_THREAD_FD_WR) {
// App is ready to receive more data, tell stack to enable data flow.
if (!slot->f.connected || !flush_incoming_que_on_wr_signal(slot)) {
LOG_ERROR(
"%s socket signaled for write while disconnected (or write "
"failure), slot: %d, channel: %d",
__func__, slot->id, slot->scn);
need_close = true;
}
}
if (need_close || (flags & SOCK_THREAD_FD_EXCEPTION)) {
// Clean up if there's no data pending.
int size = 0;
if (need_close || ioctl(slot->fd, FIONREAD, &size) != 0 || !size)
cleanup_rfc_slot(slot);
}
}
int bta_co_rfc_data_incoming(uint32_t id, BT_HDR* p_buf) {
int app_uid = -1;
uint64_t bytes_rx = 0;
int ret = 0;
std::unique_lock<std::recursive_mutex> lock(slot_lock);
rfc_slot_t* slot = find_rfc_slot_by_id(id);
if (!slot) return 0;
app_uid = slot->app_uid;
bytes_rx = p_buf->len;
if (list_is_empty(slot->incoming_queue)) {
switch (send_data_to_app(slot->fd, p_buf)) {
case SENT_NONE:
case SENT_PARTIAL:
list_append(slot->incoming_queue, p_buf);
btsock_thread_add_fd(pth, slot->fd, BTSOCK_RFCOMM, SOCK_THREAD_FD_WR,
slot->id);
break;
case SENT_ALL:
osi_free(p_buf);
ret = 1; // Enable data flow.
break;
case SENT_FAILED:
osi_free(p_buf);
cleanup_rfc_slot(slot);
break;
}
} else {
list_append(slot->incoming_queue, p_buf);
}
slot->rx_bytes += bytes_rx;
uid_set_add_rx(uid_set, app_uid, bytes_rx);
return ret; // Return 0 to disable data flow.
}
int bta_co_rfc_data_outgoing_size(uint32_t id, int* size) {
*size = 0;
std::unique_lock<std::recursive_mutex> lock(slot_lock);
rfc_slot_t* slot = find_rfc_slot_by_id(id);
if (!slot) return false;
if (ioctl(slot->fd, FIONREAD, size) != 0) {
LOG_ERROR("%s unable to determine bytes remaining to be read on fd %d: %s",
__func__, slot->fd, strerror(errno));
cleanup_rfc_slot(slot);
return false;
}
return true;
}
int bta_co_rfc_data_outgoing(uint32_t id, uint8_t* buf, uint16_t size) {
std::unique_lock<std::recursive_mutex> lock(slot_lock);
rfc_slot_t* slot = find_rfc_slot_by_id(id);
if (!slot) return false;
ssize_t received;
OSI_NO_INTR(received = recv(slot->fd, buf, size, 0));
if (received != size) {
LOG_ERROR("%s error receiving RFCOMM data from app: %s", __func__,
strerror(errno));
cleanup_rfc_slot(slot);
return false;
}
return true;
}
|