Select one of the symbols to view example projects that use it.
 
Outline
#include <string.h>
#include <errno.h>
#include "mesh.h"
#include "rpl.h"
#include "adv.h"
#include "beacon.h"
#include "access.h"
#include "transport.h"
#include "foundation.h"
#include "mesh/common.h"
#include "proxy_common.h"
#include "proxy_server.h"
#include "prov_common.h"
#include "prov_node.h"
#include "mesh_v1.1/utils.h"
#define ADV_OPT
#define RAND_UPDATE_INTERVAL
slow_adv_param
fast_adv_param
proxy_adv_enabled
proxy_ccc_val
prov_ccc_val
prov_fast_adv
prov_start_time
clients
client_buf_data
gatt_svc
device_name
bt_mesh_proxy_server_get_client(uint8_t)
bt_mesh_proxy_server_get_client_count()
bt_mesh_set_device_name(const char *)
bt_mesh_get_device_name()
find_client(struct bt_mesh_conn *)
proxy_sar_timeout(struct k_work *)
proxy_server_connect_cb
proxy_server_disconnect_cb
bt_mesh_proxy_server_set_conn_cb(proxy_server_connect_cb_t)
bt_mesh_proxy_server_set_disconn_cb(proxy_server_disconnect_cb_t)
next_idx
bt_mesh_proxy_server_find_client_by_addr(uint16_t)
bt_mesh_proxy_server_get_all_client_type()
filter_set(struct bt_mesh_proxy_client *, struct net_buf_simple *)
filter_add(struct bt_mesh_proxy_client *, uint16_t, bool)
filter_remove(struct bt_mesh_proxy_client *, uint16_t)
send_filter_status(struct bt_mesh_proxy_client *, struct bt_mesh_net_rx *, struct net_buf_simple *)
proxy_cfg(struct bt_mesh_proxy_client *)
beacon_send(struct bt_mesh_proxy_client *, struct bt_mesh_subnet *)
proxy_send_beacons(struct k_work *)
bt_mesh_proxy_server_beacon_send(struct bt_mesh_subnet *)
bt_mesh_proxy_server_identity_start(struct bt_mesh_subnet *)
bt_mesh_proxy_server_identity_stop(struct bt_mesh_subnet *)
bt_mesh_proxy_identity_enable()
proxy_complete_pdu(struct bt_mesh_proxy_client *)
#define ATTR_IS_PROV
proxy_recv(struct bt_mesh_conn *, const struct bt_mesh_gatt_attr *, const void *, uint16_t, uint16_t, uint8_t)
conn_count
proxy_connected(struct bt_mesh_conn *, uint8_t)
proxy_disconnected(struct bt_mesh_conn *, uint8_t)
bt_mesh_proxy_server_get_buf()
prov_ccc_write(struct bt_mesh_conn *, const struct bt_mesh_gatt_attr *, const void *, uint16_t, uint16_t, uint8_t)
prov_ccc_read(struct bt_mesh_conn *, const struct bt_mesh_gatt_attr *, void *, uint16_t, uint16_t)
prov_attrs
prov_svc
bt_mesh_proxy_server_prov_enable()
bt_mesh_proxy_server_prov_disable(bool)
proxy_ccc_write(struct bt_mesh_conn *, const struct bt_mesh_gatt_attr *, const void *, uint16_t, uint16_t, uint8_t)
proxy_ccc_read(struct bt_mesh_conn *, const struct bt_mesh_gatt_attr *, void *, uint16_t, uint16_t)
proxy_attrs
proxy_svc
bt_mesh_proxy_server_gatt_enable()
bt_mesh_proxy_server_gatt_disconnect()
bt_mesh_proxy_server_gatt_disable()
bt_mesh_proxy_server_addr_add(struct net_buf_simple *, uint16_t)
client_filter_match(struct bt_mesh_proxy_client *, uint16_t)
bt_mesh_proxy_server_relay(struct net_buf_simple *, uint16_t)
proxy_send(struct bt_mesh_conn *, const void *, uint16_t)
bt_mesh_proxy_server_segment_send(struct bt_mesh_conn *, uint8_t, struct net_buf_simple *)
bt_mesh_proxy_server_send(struct bt_mesh_conn *, uint8_t, struct net_buf_simple *)
prov_svc_data
prov_ad
#define NET_ID_LEN
#define NODE_ID_LEN
#define PRIVATE_NET_ID_LEN
#define PRIVATE_NODE_ID_LEN
#define PROXY_ADV_MAX_LEN
#define NODE_ID_TIMEOUT
proxy_svc_data
node_id_ad
net_id_ad
gatt_proxy_adv_create(struct bt_mesh_adv_data *)
node_id_adv(struct bt_mesh_subnet *)
net_id_adv(struct bt_mesh_subnet *)
advertise_subnet(struct bt_mesh_subnet *)
next_sub()
sub_count()
gatt_proxy_advertise(struct bt_mesh_subnet *)
gatt_prov_adv_create(struct bt_mesh_adv_data *)
bt_mesh_proxy_server_adv_start()
bt_mesh_proxy_server_adv_stop()
conn_callbacks
bt_mesh_proxy_server_init()
bt_mesh_proxy_server_deinit()
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/esp_ble_mesh/core/proxy_server.c
 
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
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* Bluetooth Mesh */ /* * SPDX-FileCopyrightText: 2017 Intel Corporation * SPDX-FileContributor: 2018-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #include <string.h> #include <errno.h> #include "mesh.h" #include "rpl.h" #include "adv.h" #include "beacon.h" #include "access.h" #include "transport.h" #include "foundation.h" #include "mesh/common.h" #include "proxy_common.h" #include "proxy_server.h" #include "prov_common.h" #include "prov_node.h"14 includes #if CONFIG_BLE_MESH_V11_SUPPORT #include "mesh_v1.1/utils.h" #endif #if (CONFIG_BLE_MESH_NODE && CONFIG_BLE_MESH_PB_GATT) || \ CONFIG_BLE_MESH_GATT_PROXY_SERVER #if !CONFIG_BLE_MESH_BQB_TEST /* Not support enabling Proxy Client and Proxy Server simultaneously */ _Static_assert(!(IS_ENABLED(CONFIG_BLE_MESH_GATT_PROXY_SERVER) && IS_ENABLED(CONFIG_BLE_MESH_GATT_PROXY_CLIENT)), "Not support Proxy Server and Proxy Client simultaneously");/* ... */ #endif #define ADV_OPT (BLE_MESH_ADV_OPT_CONNECTABLE | BLE_MESH_ADV_OPT_ONE_TIME) #if CONFIG_BLE_MESH_GATT_PROXY_SERVER && \ (CONFIG_BLE_MESH_PRB_SRV || CONFIG_BLE_MESH_PROXY_SOLIC_PDU_RX) #define RAND_UPDATE_INTERVAL K_MINUTES(10) /* The Random field of Private Network Identity * Advertisement should be updated every 10 minutes. *//* ... */ static struct k_delayed_work rand_upd_timer; static uint8_t net_id_random[8] = {0};/* ... */ #endif static const struct bt_mesh_adv_param slow_adv_param = { .options = ADV_OPT, .interval_min = BLE_MESH_GAP_ADV_SLOW_INT_MIN, .interval_max = BLE_MESH_GAP_ADV_SLOW_INT_MAX, }{...}; static const struct bt_mesh_adv_param fast_adv_param = { .options = ADV_OPT, .interval_min = BLE_MESH_GAP_ADV_FAST_INT_MIN_0, .interval_max = BLE_MESH_GAP_ADV_FAST_INT_MAX_0, }{...}; static bool proxy_adv_enabled; #if CONFIG_BLE_MESH_GATT_PROXY_SERVER static void proxy_send_beacons(struct k_work *work); static uint16_t proxy_ccc_val;/* ... */ #endif #if CONFIG_BLE_MESH_PB_GATT static uint16_t prov_ccc_val; static bool prov_fast_adv; static uint32_t prov_start_time;/* ... */ #endif static struct bt_mesh_proxy_client clients[BLE_MESH_MAX_CONN] = { [0 ... (BLE_MESH_MAX_CONN - 1)] = { #if CONFIG_BLE_MESH_PROXY_PRIVACY .proxy_privacy = BLE_MESH_PROXY_PRIVACY_DISABLED, #endif }{...}, }{...}; static uint8_t client_buf_data[BLE_MESH_PROXY_BUF_SIZE * BLE_MESH_MAX_CONN]; /* Track which service is enabled */ static enum { MESH_GATT_NONE, MESH_GATT_PROV, MESH_GATT_PROXY, }{ ... } gatt_svc = MESH_GATT_NONE; static char device_name[DEVICE_NAME_SIZE + 1]; struct bt_mesh_proxy_client *bt_mesh_proxy_server_get_client(uint8_t index) { return &clients[0]; }{ ... } uint8_t bt_mesh_proxy_server_get_client_count(void) { return ARRAY_SIZE(clients); }{ ... } int bt_mesh_set_device_name(const char *name) { if (!name) { BT_ERR("%s, Invalid parameter", __func__); return -EINVAL; }{...} if (strlen(name) > DEVICE_NAME_SIZE) { BT_ERR("Too long device name (len %d)", strlen(name)); return -EINVAL; }{...} memset(device_name, 0x0, sizeof(device_name)); strncpy(device_name, name, DEVICE_NAME_SIZE); return bt_mesh_gatts_set_local_device_name(device_name); }{ ... } const char *bt_mesh_get_device_name(void) { return device_name; }{ ... } static struct bt_mesh_proxy_client *find_client(struct bt_mesh_conn *conn) { int i; for (i = 0; i < ARRAY_SIZE(clients); i++) { if (clients[i].conn == conn) { return &clients[i]; }{...} }{...} return NULL; }{ ... } static void proxy_sar_timeout(struct k_work *work) { struct bt_mesh_proxy_client *client = NULL; BT_WARN("Proxy SAR timeout"); client = CONTAINER_OF(work, struct bt_mesh_proxy_client, sar_timer.work); if (!client || !client->conn) { BT_ERR("Invalid proxy client parameter"); return; }{...} net_buf_simple_reset(&client->buf); bt_mesh_gatts_disconnect(client->conn, 0x13); }{ ... } #if CONFIG_BLE_MESH_GATT_PROXY_SERVER /** * The following callbacks are used to notify proper information * to the application layer. *//* ... */ static proxy_server_connect_cb_t proxy_server_connect_cb; static proxy_server_disconnect_cb_t proxy_server_disconnect_cb; void bt_mesh_proxy_server_set_conn_cb(proxy_server_connect_cb_t cb) { proxy_server_connect_cb = cb; }{ ... } void bt_mesh_proxy_server_set_disconn_cb(proxy_server_disconnect_cb_t cb) { proxy_server_disconnect_cb = cb; }{ ... } /* Next subnet in queue to be advertised */ static int next_idx; bool bt_mesh_proxy_server_find_client_by_addr(uint16_t addr) { for (size_t i = 0; i < ARRAY_SIZE(clients); i++) { if (clients[i].conn) { for (size_t j = 0; j < ARRAY_SIZE(clients[i].filter); j++) { if (clients[i].filter[j].proxy_client && clients[i].filter[j].addr == addr) { return true; }{...} }{...} }{...} }{...} return false; }{ ... } uint8_t bt_mesh_proxy_server_get_all_client_type(void) { uint8_t client_type = 0; for (size_t i = 0; i < ARRAY_SIZE(clients); i++) { if (clients[i].conn) { for (size_t j = 0; j < ARRAY_SIZE(clients[i].filter); j++) { if (clients[i].filter[j].proxy_client) { client_type |= clients[i].proxy_client_type; }{...} }{...} }{...} }{...} return client_type; }{ ... } static int filter_set(struct bt_mesh_proxy_client *client, struct net_buf_simple *buf) { uint8_t type = 0U; if (buf->len < 1) { BT_WARN("Too short Filter Set message"); return -EINVAL; }{...} type = net_buf_simple_pull_u8(buf); BT_INFO("Set filter type 0x%02x", type); switch (type) { case 0x00: (void)memset(client->filter, 0, sizeof(client->filter)); client->filter_type = SRV_WHITELIST; break;... case 0x01: #if CONFIG_BLE_MESH_DF_SRV bt_mesh_directed_proxy_server_set_blacklist(client); #endif /* CONFIG_BLE_MESH_DF_SRV */ (void)memset(client->filter, 0, sizeof(client->filter)); client->filter_type = SRV_BLACKLIST; break;... default: BT_WARN("Prohibited Filter Type 0x%02x", type); return -EINVAL;... }{...} return 0; }{ ... } static void filter_add(struct bt_mesh_proxy_client *client, uint16_t addr, bool proxy_client) { int i; /* The flag proxy_client is used to indicate if the added address * is the element address of Proxy Client. *//* ... */ BT_DBG("addr 0x%04x", addr); if (addr == BLE_MESH_ADDR_UNASSIGNED) { return; }{...} if (!BLE_MESH_ADDR_IS_UNICAST(addr) && proxy_client == true) { BT_ERR("Invalid proxy client element addr 0x%04x", addr); return; }{...} for (i = 0; i < ARRAY_SIZE(client->filter); i++) { if (client->filter[i].addr == addr) { return; }{...} }{...} for (i = 0; i < ARRAY_SIZE(client->filter); i++) { if (client->filter[i].addr == addr) { BT_INFO("client addr 0x%04x already added", addr); return; }{...} if (client->filter[i].addr == BLE_MESH_ADDR_UNASSIGNED) { BT_INFO("Add client or filter addr 0x%04x", addr); client->filter[i].addr = addr; client->filter[i].proxy_client = proxy_client; return; }{...} }{...} BT_WARN("Proxy filter is full!"); }{ ... } static void filter_remove(struct bt_mesh_proxy_client *client, uint16_t addr) { int i; BT_DBG("addr 0x%04x", addr); if (addr == BLE_MESH_ADDR_UNASSIGNED) { return; }{...} for (i = 0; i < ARRAY_SIZE(client->filter); i++) { if (client->filter[i].addr == addr) { client->filter[i].addr = BLE_MESH_ADDR_UNASSIGNED; client->filter[i].proxy_client = false; BT_INFO("Remove filter addr 0x%04x", addr); return; }{...} }{...} }{ ... } static void send_filter_status(struct bt_mesh_proxy_client *client, struct bt_mesh_net_rx *rx, struct net_buf_simple *buf) { struct bt_mesh_net_tx tx = { .sub = rx->sub, .ctx = &rx->ctx, .src = bt_mesh_primary_addr(), }{...}; uint16_t filter_size = 0U; int i, err = 0; /* Configuration messages always have dst unassigned */ tx.ctx->addr = BLE_MESH_ADDR_UNASSIGNED; tx.ctx->send_cred = BLE_MESH_FLOODING_CRED, net_buf_simple_reset(buf); net_buf_simple_reserve(buf, 10); net_buf_simple_add_u8(buf, BLE_MESH_PROXY_CFG_FILTER_STATUS); if (client->filter_type == SRV_WHITELIST) { net_buf_simple_add_u8(buf, 0x00); }{...} else { net_buf_simple_add_u8(buf, 0x01); }{...} for (filter_size = 0U, i = 0; i < ARRAY_SIZE(client->filter); i++) { if (client->filter[i].addr != BLE_MESH_ADDR_UNASSIGNED) { filter_size++; }{...} }{...} net_buf_simple_add_be16(buf, filter_size); BT_DBG("%u bytes: %s", buf->len, bt_hex(buf->data, buf->len)); err = bt_mesh_net_encode(&tx, buf, true); if (err) { BT_ERR("Encoding proxy filter status failed (err %d)", err); return; }{...} err = bt_mesh_proxy_server_segment_send(client->conn, BLE_MESH_PROXY_CONFIG, buf); if (err) { BT_ERR("Failed to send proxy filter status (err %d)", err); }{...} }{ ... } static void proxy_cfg(struct bt_mesh_proxy_client *client) { NET_BUF_SIMPLE_DEFINE(buf, 29); struct bt_mesh_net_rx rx = {0}; uint8_t opcode = 0U; int err = 0; if (client->buf.len > 29) { BT_ERR("Too large proxy cfg pdu (len %d)", client->buf.len); return; }{...} err = bt_mesh_net_decode(&client->buf, BLE_MESH_NET_IF_PROXY_CFG, &rx, &buf); if (err) { BT_ERR("Failed to decode Proxy Configuration (err %d)", err); return; }{...} rx.local_match = 1U; if (bt_mesh_rpl_check(&rx, NULL)) { BT_WARN("Replay: src 0x%04x dst 0x%04x seq 0x%06x", rx.ctx.addr, rx.ctx.recv_dst, rx.seq); return; }{...} /* Remove network headers */ net_buf_simple_pull(&buf, BLE_MESH_NET_HDR_LEN); BT_DBG("%u bytes: %s", buf.len, bt_hex(buf.data, buf.len)); if (buf.len < 1) { BT_WARN("Too short proxy configuration PDU"); return; }{...} opcode = net_buf_simple_pull_u8(&buf); switch (opcode) { case BLE_MESH_PROXY_CFG_FILTER_SET: filter_set(client, &buf); send_filter_status(client, &rx, &buf); break; ... case BLE_MESH_PROXY_CFG_FILTER_ADD: while (buf.len >= 2) { uint16_t addr = net_buf_simple_pull_be16(&buf); filter_add(client, addr, rx.ctx.addr == addr); }{...} send_filter_status(client, &rx, &buf); #if CONFIG_BLE_MESH_DF_SRV bt_mesh_directed_proxy_server_solicitation(client, rx.sub); #endif /* CONFIG_BLE_MESH_DF_SRV */ break; ... case BLE_MESH_PROXY_CFG_FILTER_REMOVE: while (buf.len >= 2) { uint16_t addr = net_buf_simple_pull_be16(&buf); filter_remove(client, addr); }{...} send_filter_status(client, &rx, &buf); break; #if CONFIG_BLE_MESH_DF_SRV... case BLE_MESH_PROXY_CFG_DIRECTED_PROXY_CONTROL: if (buf.len < 1) { BT_WARN("Invalid Directed Proxy Control (len %d)", buf.len); break; }{...} if (rx.sub->directed_proxy != BLE_MESH_DIRECTED_PROXY_NOT_SUPPORTED) { bt_mesh_directed_proxy_server_directed_proxy_ctrl_recv(client, &rx, &buf); }{...} break;/* ... */ #endif /* CONFIG_BLE_MESH_DF_SRV */ default: BT_WARN("Unhandled configuration OpCode 0x%02x", opcode); break;... }{...} }{ ... } static int beacon_send(struct bt_mesh_proxy_client *client, struct bt_mesh_subnet *sub) { NET_BUF_SIMPLE_DEFINE(buf, 28); net_buf_simple_reserve(&buf, 1); #if CONFIG_BLE_MESH_PROXY_PRIVACY if (client->proxy_privacy == BLE_MESH_PROXY_PRIVACY_ENABLED) { /* NOTE: Each time a Mesh Private beacon for a subnet is sent to a Proxy Client, * the Random field in the Mesh Private beacon shall be regenerated. *//* ... */ bt_mesh_private_beacon_update_random(sub); bt_mesh_private_beacon_create(sub, &buf); }{...} else #endif { bt_mesh_secure_beacon_create(sub, &buf); }{...} return bt_mesh_proxy_server_segment_send(client->conn, BLE_MESH_PROXY_BEACON, &buf); }{ ... } static void proxy_send_beacons(struct k_work *work) { struct bt_mesh_proxy_client *client = NULL; int i; client = CONTAINER_OF(work, struct bt_mesh_proxy_client, send_beacons); /* Upon connection, the Proxy Server shall evaluate Proxy Privacy parameter * for the connection and the Proxy Server shall retain the value of the * Proxy Privacy parameter for the lifetime of the connection. The Proxy * Server shall send a mesh beacon for each known subnet to the Proxy Client. * * When either the GATT Proxy state or the Node Identity state is enabled, * the Proxy Privacy parameter for the connection shall be Disabled. * * When both the GATT Proxy state and the Node Identity state are disabled, * and either the Private GATT Proxy state or the Private Node Identity state * is enabled, the Proxy Privacy parameter for the connection shall be Enabled. *//* ... */ for (i = 0; i < ARRAY_SIZE(bt_mesh.sub); i++) { struct bt_mesh_subnet *sub = &bt_mesh.sub[i]; if (sub->net_idx != BLE_MESH_KEY_UNUSED) { beacon_send(client, sub); #if CONFIG_BLE_MESH_DF_SRV if (sub->directed_proxy != BLE_MESH_DIRECTED_PROXY_NOT_SUPPORTED) { bt_mesh_directed_proxy_server_directed_proxy_caps_status_send(client->conn, sub); }{...} #endif/* ... */ /* CONFIG_BLE_MESH_DF_SRV */ }{...} #if 0 if (sub->net_idx != BLE_MESH_KEY_UNUSED) { if (sub->proxy_privacy == BLE_MESH_PROXY_PRIVACY_DISABLED) { beacon_send(client->conn, sub); }{...} else if (sub->proxy_privacy == BLE_MESH_PROXY_PRIVACY_ENABLED) { #if CONFIG_BLE_MESH_PRB_SRV /* TODO: Send Mesh Private Beacon */ #endif }{...} }{...} #endif/* ... */ }{...} }{ ... } void bt_mesh_proxy_server_beacon_send(struct bt_mesh_subnet *sub) { int i; if (!sub) { /* NULL means we send on all subnets */ for (i = 0; i < ARRAY_SIZE(bt_mesh.sub); i++) { if (bt_mesh.sub[i].net_idx != BLE_MESH_KEY_UNUSED) { bt_mesh_proxy_server_beacon_send(&bt_mesh.sub[i]); }{...} }{...} return; }{...} for (i = 0; i < ARRAY_SIZE(clients); i++) { if (clients[i].conn) { beacon_send(&clients[i], sub); }{...} }{...} }{ ... } void bt_mesh_proxy_server_identity_start(struct bt_mesh_subnet *sub) { sub->node_id = BLE_MESH_NODE_IDENTITY_RUNNING; sub->node_id_start = k_uptime_get_32(); /* Prioritize the recently enabled subnet */ next_idx = sub - bt_mesh.sub; }{ ... } void bt_mesh_proxy_server_identity_stop(struct bt_mesh_subnet *sub) { sub->node_id = BLE_MESH_NODE_IDENTITY_STOPPED; sub->node_id_start = 0U; }{ ... } int bt_mesh_proxy_identity_enable(void) { int i, count = 0; if (!bt_mesh_is_provisioned()) { return -EAGAIN; }{...} for (i = 0; i < ARRAY_SIZE(bt_mesh.sub); i++) { struct bt_mesh_subnet *sub = &bt_mesh.sub[i]; if (sub->net_idx == BLE_MESH_KEY_UNUSED) { continue; }{...} if (sub->node_id == BLE_MESH_NODE_IDENTITY_NOT_SUPPORTED) { continue; }{...} bt_mesh_proxy_server_identity_start(sub); count++; }{...} if (count) { bt_mesh_adv_update(); }{...} return 0; }{ ... } #if CONFIG_BLE_MESH_PRB_SRV void bt_mesh_proxy_server_private_identity_start(struct bt_mesh_subnet *sub) { sub->private_node_id = BLE_MESH_PRIVATE_NODE_IDENTITY_RUNNING; sub->node_id_start = k_uptime_get_32(); /* Prioritize the recently enabled subnet */ next_idx = sub - bt_mesh.sub; }{...} void bt_mesh_proxy_server_private_identity_stop(struct bt_mesh_subnet *sub) { sub->private_node_id = BLE_MESH_PRIVATE_NODE_IDENTITY_STOPPED; sub->node_id_start = 0U; }{...} bool bt_mesh_proxy_server_is_node_id_enable(void) { for (size_t i = 0; i < ARRAY_SIZE(bt_mesh.sub); i++) { /* If the Node Identity state of the node for any subnet * is 0x01 (i.e. running), return true. *//* ... */ struct bt_mesh_subnet *sub = &bt_mesh.sub[i]; if (sub->net_idx != BLE_MESH_KEY_UNUSED && sub->node_id == BLE_MESH_PRIVATE_NODE_IDENTITY_RUNNING) { return true; }{...} }{...} return false; }{...} static bool is_exist_private_node_id_enable(void) { for (size_t i = 0; i < ARRAY_SIZE(bt_mesh.sub); i++) { /* If the value of the Node Identity state of the node * for any subnet is 0x01,If exist return true. *//* ... */ struct bt_mesh_subnet *sub = &bt_mesh.sub[i]; if (sub->net_idx != BLE_MESH_KEY_UNUSED && sub->private_node_id == BLE_MESH_PRIVATE_NODE_IDENTITY_RUNNING) { return true; }{...} }{...} return false; }{...} int bt_mesh_proxy_private_identity_disable(void) { if (!bt_mesh_is_provisioned()) { return -EAGAIN; }{...} for (size_t i = 0; i < ARRAY_SIZE(bt_mesh.sub); i++) { /* NOTE: Set private node identity state of all valid subnets disabled */ struct bt_mesh_subnet *sub = &bt_mesh.sub[i]; if (sub->net_idx == BLE_MESH_KEY_UNUSED) { continue; }{...} if (sub->private_node_id == BLE_MESH_PRIVATE_NODE_IDENTITY_NOT_SUPPORTED) { continue; }{...} bt_mesh_proxy_server_private_identity_stop(sub); }{...} return 0; }{...} int bt_mesh_proxy_private_identity_enable(void) { int count = 0; if (!bt_mesh_is_provisioned()) { return -EAGAIN; }{...} for (size_t i = 0U; i < ARRAY_SIZE(bt_mesh.sub); i++) { struct bt_mesh_subnet *sub = &bt_mesh.sub[i]; if (sub->net_idx == BLE_MESH_KEY_UNUSED) { continue; }{...} if (sub->private_node_id == BLE_MESH_PRIVATE_NODE_IDENTITY_NOT_SUPPORTED) { continue; }{...} bt_mesh_proxy_server_private_identity_start(sub); count++; }{...} if (count) { bt_mesh_adv_update(); }{...} return 0; }{...} /* ... */#endif /* CONFIG_BLE_MESH_PRB_SRV *//* ... */ #endif /* GATT_PROXY */ static void proxy_complete_pdu(struct bt_mesh_proxy_client *client) { switch (client->msg_type) { #if CONFIG_BLE_MESH_GATT_PROXY_SERVER case BLE_MESH_PROXY_NET_PDU: BT_DBG("Mesh Network PDU"); bt_mesh_net_recv(&client->buf, 0, BLE_MESH_NET_IF_PROXY); break;... case BLE_MESH_PROXY_BEACON: BT_DBG("Mesh Beacon PDU"); bt_mesh_beacon_recv(&client->buf, 0); break;... case BLE_MESH_PROXY_CONFIG: BT_DBG("Mesh Configuration PDU"); proxy_cfg(client); break;/* ... */ #endif #if CONFIG_BLE_MESH_PB_GATT case BLE_MESH_PROXY_PROV: BT_DBG("Mesh Provisioning PDU"); bt_mesh_pb_gatt_recv(client->conn, &client->buf); break;/* ... */ #endif default: BT_WARN("Unhandled Message Type 0x%02x", client->msg_type); break;... }{...} net_buf_simple_reset(&client->buf); #if CONFIG_BLE_MESH_GATT_PROXY_SERVER if (client->msg_type < BLE_MESH_PROXY_PROV && client->proxy_msg_recv == false) { client->proxy_msg_recv = true; /** * @Spec: P626 * When a new connection is established between a Proxy Client and the Directed Proxy Server, and the * first message received from the Proxy Client is a successfully processed DIRECTED_PROXY_CONTROL * message, then the Directed Proxy Server shall set the Proxy_Client_Type parameter to Directed Proxy Client, * shall set the Use_Directed parameter to Disable for all subnets known to the Directed Proxy Server * except the subnet identified by the received message; * otherwise, the Directed Proxy Server shall set the Proxy_Client_Type parameter to Proxy Client. * * If the first message received is DIRECTED_PROXY_CONTROL, proxy_client_type will be set to Directed Proxy Client, * But if device didn't receive DIRECTED_PROXY_CONTROL message and all received is normal proxy message, That * client type will be always in UNSET state, because we set client type in handle function of DIRECTED_PROXY_CONTROL. * * So the flowing code was used to avoid that situation. *//* ... */ if (client->proxy_client_type == BLE_MESH_PROXY_CLI_TYPE_UNSET) { client->proxy_client_type = BLE_MESH_PROXY_CLI_TYPE_PROXY_CLIENT; }{...} }{...} #endif/* ... */ }{ ... } #define ATTR_IS_PROV(attr) (attr->user_data != NULL) static ssize_t proxy_recv(struct bt_mesh_conn *conn, const struct bt_mesh_gatt_attr *attr, const void *buf, uint16_t len, uint16_t offset, uint8_t flags) { struct bt_mesh_proxy_client *client = find_client(conn); const uint8_t *data = buf; if (!client) { BT_ERR("No Proxy Client found"); return -ENOTCONN; }{...} if (len < 1) { BT_WARN("Too small Proxy PDU"); return -EINVAL; }{...} if (ATTR_IS_PROV(attr) != (BLE_MESH_PROXY_PDU_TYPE(data) == BLE_MESH_PROXY_PROV)) { BT_WARN("Proxy PDU type doesn't match GATT service"); return -EINVAL; }{...} if (len - 1 > net_buf_simple_tailroom(&client->buf)) { BT_WARN("Too big proxy PDU"); return -EINVAL; }{...} switch (BLE_MESH_PROXY_PDU_SAR(data)) { case BLE_MESH_PROXY_SAR_COMP: if (client->buf.len) { BT_WARN("Complete PDU while a pending incomplete one"); return -EINVAL; }{...} client->msg_type = BLE_MESH_PROXY_PDU_TYPE(data); net_buf_simple_add_mem(&client->buf, data + 1, len - 1); proxy_complete_pdu(client); break; ... case BLE_MESH_PROXY_SAR_FIRST: if (client->buf.len) { BT_WARN("First PDU while a pending incomplete one"); return -EINVAL; }{...} k_delayed_work_submit(&client->sar_timer, BLE_MESH_PROXY_SAR_TIMEOUT); client->msg_type = BLE_MESH_PROXY_PDU_TYPE(data); net_buf_simple_add_mem(&client->buf, data + 1, len - 1); break; ... case BLE_MESH_PROXY_SAR_CONT: if (!client->buf.len) { BT_WARN("Continuation with no prior data"); return -EINVAL; }{...} if (client->msg_type != BLE_MESH_PROXY_PDU_TYPE(data)) { BT_WARN("Unexpected message type in continuation"); return -EINVAL; }{...} k_delayed_work_submit(&client->sar_timer, BLE_MESH_PROXY_SAR_TIMEOUT); net_buf_simple_add_mem(&client->buf, data + 1, len - 1); break; ... case BLE_MESH_PROXY_SAR_LAST: if (!client->buf.len) { BT_WARN("Last SAR PDU with no prior data"); return -EINVAL; }{...} if (client->msg_type != BLE_MESH_PROXY_PDU_TYPE(data)) { BT_WARN("Unexpected message type in last SAR PDU"); return -EINVAL; }{...} k_delayed_work_cancel(&client->sar_timer); net_buf_simple_add_mem(&client->buf, data + 1, len - 1); proxy_complete_pdu(client); break;... }{...} return len; }{ ... } static int conn_count; static void proxy_connected(struct bt_mesh_conn *conn, uint8_t err) { struct bt_mesh_proxy_client *client = NULL; int i; BT_DBG("conn %p err 0x%02x", conn, err); conn_count++; /* Since we use ADV_OPT_ONE_TIME */ proxy_adv_enabled = false; #if CONFIG_BLE_MESH_PROXY_SOLIC_PDU_RX /* Before re-enabling advertising, stop advertising * the Service Data associated with the Private * Network Identity type. *//* ... */ bt_mesh_proxy_server_stop_solic_adv_priv_net_id();/* ... */ #endif /* Try to re-enable advertising in case it's possible */ if (conn_count < BLE_MESH_MAX_CONN) { bt_mesh_adv_update(); }{...} for (client = NULL, i = 0; i < ARRAY_SIZE(clients); i++) { if (!clients[i].conn) { client = &clients[i]; break; }{...} }{...} if (!client) { BT_ERR("No free Proxy Client objects"); return; }{...} client->conn = bt_mesh_conn_ref(conn); client->filter_type = SRV_NONE; #if CONFIG_BLE_MESH_GATT_PROXY_SERVER (void)memset(client->filter, 0, sizeof(client->filter)); if (proxy_server_connect_cb) { proxy_server_connect_cb(conn->handle); }{...} #endif/* ... */ net_buf_simple_reset(&client->buf); }{ ... } static void proxy_disconnected(struct bt_mesh_conn *conn, uint8_t reason) { int i; BT_DBG("conn %p reason 0x%02x", conn, reason); conn_count--; for (i = 0; i < ARRAY_SIZE(clients); i++) { struct bt_mesh_proxy_client *client = &clients[i]; if (client->conn == conn) { #if CONFIG_BLE_MESH_GATT_PROXY_SERVER if (proxy_server_disconnect_cb) { proxy_server_disconnect_cb(conn->handle, reason); }{...} #endif/* ... */ if (IS_ENABLED(CONFIG_BLE_MESH_PB_GATT) && client->filter_type == SRV_PROV) { bt_mesh_pb_gatt_close(conn, reason); }{...} #if CONFIG_BLE_MESH_PROXY_PRIVACY client->proxy_privacy = BLE_MESH_PROXY_PRIVACY_DISABLED; #endif #if CONFIG_BLE_MESH_GATT_PROXY_SERVER && CONFIG_BLE_MESH_PRB_SRV k_delayed_work_cancel(&rand_upd_timer); #endif k_delayed_work_cancel(&client->sar_timer); bt_mesh_conn_unref(client->conn); client->conn = NULL; break; }{...} }{...} bt_mesh_adv_update(); #if CONFIG_BLE_MESH_GATT_PROXY_SERVER && CONFIG_BLE_MESH_DF_SRV if (i == ARRAY_SIZE(clients)) { BT_WARN("Proxy disconnected, but no connection found"); return; }{...} if (bt_mesh_directed_proxy_server_update_dep_node(NULL, &clients[i], 0)) { BT_ERR("Proxy disconnected, failed to update dependent node"); }{...} #endif/* ... */ /* CONFIG_BLE_MESH_DF_SRV */ }{ ... } struct net_buf_simple *bt_mesh_proxy_server_get_buf(void) { struct net_buf_simple *buf = &clients[0].buf; net_buf_simple_reset(buf); return buf; }{ ... } #if CONFIG_BLE_MESH_PB_GATT static ssize_t prov_ccc_write(struct bt_mesh_conn *conn, const struct bt_mesh_gatt_attr *attr, const void *buf, uint16_t len, uint16_t offset, uint8_t flags) { struct bt_mesh_proxy_client *client = NULL; uint16_t *value = attr->user_data; BT_DBG("len %u: %s", len, bt_hex(buf, len)); if (len != sizeof(*value)) { return BLE_MESH_GATT_ERR(BLE_MESH_ATT_ERR_INVALID_ATTRIBUTE_LEN); }{...} *value = sys_get_le16(buf); if (*value != BLE_MESH_GATT_CCC_NOTIFY) { BT_WARN("Client wrote 0x%04x instead enabling notify", *value); return len; }{...} /* If a connection exists there must be a client */ client = find_client(conn); if (!client) { BT_ERR("No client for connection %p", conn); return 0; }{...} if (client->filter_type == SRV_NONE) { client->filter_type = SRV_PROV; bt_mesh_pb_gatt_open(conn); }{...} return len; }{ ... } static ssize_t prov_ccc_read(struct bt_mesh_conn *conn, const struct bt_mesh_gatt_attr *attr, void *buf, uint16_t len, uint16_t offset) { uint16_t *value = attr->user_data; return bt_mesh_gatts_attr_read(conn, attr, buf, len, offset, value, sizeof(*value)); }{ ... } /* Mesh Provisioning Service Declaration */ static struct bt_mesh_gatt_attr prov_attrs[] = { BLE_MESH_GATT_PRIMARY_SERVICE(BLE_MESH_UUID_MESH_PROV), BLE_MESH_GATT_CHARACTERISTIC(BLE_MESH_UUID_MESH_PROV_DATA_IN, BLE_MESH_GATT_CHRC_WRITE_WITHOUT_RESP), BLE_MESH_GATT_DESCRIPTOR(BLE_MESH_UUID_MESH_PROV_DATA_IN, BLE_MESH_GATT_PERM_WRITE, NULL, proxy_recv, (void *)1), BLE_MESH_GATT_CHARACTERISTIC(BLE_MESH_UUID_MESH_PROV_DATA_OUT, BLE_MESH_GATT_CHRC_NOTIFY), BLE_MESH_GATT_DESCRIPTOR(BLE_MESH_UUID_MESH_PROV_DATA_OUT, BLE_MESH_GATT_PERM_NONE, NULL, NULL, NULL), /* Add custom CCC as clients need to be tracked individually */ BLE_MESH_GATT_DESCRIPTOR(BLE_MESH_UUID_GATT_CCC, BLE_MESH_GATT_PERM_WRITE | BLE_MESH_GATT_PERM_READ, prov_ccc_read, prov_ccc_write, &prov_ccc_val), }{...}; struct bt_mesh_gatt_service prov_svc = BLE_MESH_GATT_SERVICE(prov_attrs); int bt_mesh_proxy_server_prov_enable(void) { int i; if (gatt_svc == MESH_GATT_PROV) { BT_WARN("%s, Already", __func__); return -EALREADY; }{...} if (gatt_svc != MESH_GATT_NONE) { BT_WARN("%s, Busy", __func__); return -EBUSY; }{...} bt_mesh_gatts_service_start(&prov_svc); gatt_svc = MESH_GATT_PROV; prov_fast_adv = true; for (i = 0; i < ARRAY_SIZE(clients); i++) { if (clients[i].conn) { clients[i].filter_type = SRV_PROV; }{...} }{...} return 0; }{ ... } int bt_mesh_proxy_server_prov_disable(bool disconnect) { int i; if (gatt_svc == MESH_GATT_NONE) { BT_WARN("%s, Already", __func__); return -EALREADY; }{...} if (gatt_svc != MESH_GATT_PROV) { BT_WARN("%s, Busy", __func__); return -EBUSY; }{...} bt_mesh_gatts_service_stop(&prov_svc); gatt_svc = MESH_GATT_NONE; for (i = 0; i < ARRAY_SIZE(clients); i++) { struct bt_mesh_proxy_client *client = &clients[i]; if (!client->conn || client->filter_type != SRV_PROV) { continue; }{...} if (disconnect) { bt_mesh_gatts_disconnect(client->conn, 0x13); }{...} else { bt_mesh_pb_gatt_close(client->conn, CLOSE_REASON_SUCCESS); client->filter_type = SRV_NONE; }{...} }{...} bt_mesh_adv_update(); return 0; }{ ... } #endif/* ... */ /* CONFIG_BLE_MESH_PB_GATT */ #if CONFIG_BLE_MESH_GATT_PROXY_SERVER static ssize_t proxy_ccc_write(struct bt_mesh_conn *conn, const struct bt_mesh_gatt_attr *attr, const void *buf, uint16_t len, uint16_t offset, uint8_t flags) { struct bt_mesh_proxy_client *client = NULL; uint16_t value = 0U; BT_DBG("len %u: %s", len, bt_hex(buf, len)); if (len != sizeof(value)) { return BLE_MESH_GATT_ERR(BLE_MESH_ATT_ERR_INVALID_ATTRIBUTE_LEN); }{...} value = sys_get_le16(buf); if (value != BLE_MESH_GATT_CCC_NOTIFY) { BT_WARN("Client wrote 0x%04x instead enabling notify", value); return len; }{...} /* If a connection exists there must be a client */ client = find_client(conn); if (!client) { BT_ERR("No client for connection %p", conn); return 0; }{...} /* Spec section 6.7 * Upon connection, the Proxy Server shall evaluate Proxy Privacy parameter (for GATT Proxy bearer see * Section 7.2.2.2.6) for the connection and the Proxy Server shall retain the value of the Proxy Privacy * parameter for the lifetime of the connection. The Proxy Server shall send a mesh beacon for each known * subnet to the Proxy Client *//* ... */ #if CONFIG_BLE_MESH_PRB_SRV if (bt_mesh_gatt_proxy_get() == BLE_MESH_GATT_PROXY_ENABLED || bt_mesh_proxy_server_is_node_id_enable()) { client->proxy_privacy = BLE_MESH_PROXY_PRIVACY_DISABLED; }{...} else if (bt_mesh_private_gatt_proxy_state_get() == BLE_MESH_PRIVATE_GATT_PROXY_ENABLED || is_exist_private_node_id_enable()) { client->proxy_privacy = BLE_MESH_PROXY_PRIVACY_ENABLED; }{...} #endif/* ... */ /* CONFIG_BLE_MESH_PRB_SRV */ if (client->filter_type == SRV_NONE) { client->filter_type = SRV_WHITELIST; k_delayed_work_submit(&client->send_beacons, K_MSEC(15)); }{...} if (client->proxy_client_type == 0) { client->proxy_client_type = BLE_MESH_PROXY_CLI_TYPE_UNSET; }{...} #if CONFIG_BLE_MESH_DF_SRV bt_mesh_directed_proxy_server_connected(client); #endif /* CONFIG_BLE_MESH_DF_SRV */ return len; }{ ... } static ssize_t proxy_ccc_read(struct bt_mesh_conn *conn, const struct bt_mesh_gatt_attr *attr, void *buf, uint16_t len, uint16_t offset) { uint16_t *value = attr->user_data; return bt_mesh_gatts_attr_read(conn, attr, buf, len, offset, value, sizeof(*value)); }{ ... } /* Mesh Proxy Service Declaration */ static struct bt_mesh_gatt_attr proxy_attrs[] = { BLE_MESH_GATT_PRIMARY_SERVICE(BLE_MESH_UUID_MESH_PROXY), BLE_MESH_GATT_CHARACTERISTIC(BLE_MESH_UUID_MESH_PROXY_DATA_IN, BLE_MESH_GATT_CHRC_WRITE_WITHOUT_RESP), BLE_MESH_GATT_DESCRIPTOR(BLE_MESH_UUID_MESH_PROXY_DATA_IN, BLE_MESH_GATT_PERM_WRITE, NULL, proxy_recv, NULL), BLE_MESH_GATT_CHARACTERISTIC(BLE_MESH_UUID_MESH_PROXY_DATA_OUT, BLE_MESH_GATT_CHRC_NOTIFY), BLE_MESH_GATT_DESCRIPTOR(BLE_MESH_UUID_MESH_PROXY_DATA_OUT, BLE_MESH_GATT_PERM_NONE, NULL, NULL, NULL), /* Add custom CCC as clients need to be tracked individually */ BLE_MESH_GATT_DESCRIPTOR(BLE_MESH_UUID_GATT_CCC, BLE_MESH_GATT_PERM_READ | BLE_MESH_GATT_PERM_WRITE, proxy_ccc_read, proxy_ccc_write, &proxy_ccc_val), }{...}; struct bt_mesh_gatt_service proxy_svc = BLE_MESH_GATT_SERVICE(proxy_attrs); int bt_mesh_proxy_server_gatt_enable(void) { int i; if (gatt_svc == MESH_GATT_PROXY) { BT_WARN("%s, Already", __func__); return -EALREADY; }{...} if (gatt_svc != MESH_GATT_NONE) { BT_WARN("%s, Busy", __func__); return -EBUSY; }{...} bt_mesh_gatts_service_start(&proxy_svc); gatt_svc = MESH_GATT_PROXY; for (i = 0; i < ARRAY_SIZE(clients); i++) { if (clients[i].conn) { clients[i].filter_type = SRV_WHITELIST; }{...} }{...} return 0; }{ ... } void bt_mesh_proxy_server_gatt_disconnect(void) { int i; for (i = 0; i < ARRAY_SIZE(clients); i++) { struct bt_mesh_proxy_client *client = &clients[i]; if (client->conn && (client->filter_type == SRV_WHITELIST || client->filter_type == SRV_BLACKLIST)) { client->filter_type = SRV_NONE; bt_mesh_gatts_disconnect(client->conn, 0x13); }{...} }{...} }{ ... } int bt_mesh_proxy_server_gatt_disable(void) { if (gatt_svc == MESH_GATT_NONE) { BT_WARN("%s, Already", __func__); return -EALREADY; }{...} if (gatt_svc != MESH_GATT_PROXY) { BT_WARN("%s, Busy", __func__); return -EBUSY; }{...} bt_mesh_proxy_server_gatt_disconnect(); bt_mesh_gatts_service_stop(&proxy_svc); gatt_svc = MESH_GATT_NONE; return 0; }{ ... } void bt_mesh_proxy_server_addr_add(struct net_buf_simple *buf, uint16_t addr) { struct bt_mesh_proxy_client *client = CONTAINER_OF(buf, struct bt_mesh_proxy_client, buf); BT_DBG("filter_type %u addr 0x%04x", client->filter_type, addr); if (client->filter_type == SRV_WHITELIST) { filter_add(client, addr, true); }{...} else if (client->filter_type == SRV_BLACKLIST) { filter_remove(client, addr); }{...} }{ ... } static bool client_filter_match(struct bt_mesh_proxy_client *client, uint16_t addr) { int i; BT_DBG("filter_type %u addr 0x%04x", client->filter_type, addr); if (client->filter_type == SRV_BLACKLIST) { for (i = 0; i < ARRAY_SIZE(client->filter); i++) { if (client->filter[i].addr == addr) { return false; }{...} }{...} return true; }{...} if (addr == BLE_MESH_ADDR_ALL_NODES) { return true; }{...} if (client->filter_type == SRV_WHITELIST) { for (i = 0; i < ARRAY_SIZE(client->filter); i++) { if (client->filter[i].addr == addr) { return true; }{...} }{...} }{...} return false; }{ ... } bool bt_mesh_proxy_server_relay(struct net_buf_simple *buf, uint16_t dst) { bool relayed = false; int i; BT_DBG("%u bytes to dst 0x%04x", buf->len, dst); for (i = 0; i < ARRAY_SIZE(clients); i++) { struct bt_mesh_proxy_client *client = &clients[i]; NET_BUF_SIMPLE_DEFINE(msg, 32); if (!client->conn) { continue; }{...} if (!client_filter_match(client, dst)) { continue; }{...} /* Proxy PDU sending modifies the original buffer, * so we need to make a copy. *//* ... */ net_buf_simple_reserve(&msg, 1); net_buf_simple_add_mem(&msg, buf->data, buf->len); bt_mesh_proxy_server_send(client->conn, BLE_MESH_PROXY_NET_PDU, &msg); relayed = true; }{...} return relayed; }{ ... } /* ... */#endif /* CONFIG_BLE_MESH_GATT_PROXY_SERVER */ static int proxy_send(struct bt_mesh_conn *conn, const void *data, uint16_t len) { BT_DBG("%u bytes: %s", len, bt_hex(data, len)); #if CONFIG_BLE_MESH_GATT_PROXY_SERVER if (gatt_svc == MESH_GATT_PROXY) { return bt_mesh_gatts_notify(conn, &proxy_attrs[4], data, len); }{...} #endif/* ... */ #if CONFIG_BLE_MESH_PB_GATT if (gatt_svc == MESH_GATT_PROV) { return bt_mesh_gatts_notify(conn, &prov_attrs[4], data, len); }{...} #endif/* ... */ return 0; }{ ... } int bt_mesh_proxy_server_segment_send(struct bt_mesh_conn *conn, uint8_t type, struct net_buf_simple *msg) { uint16_t mtu = 0U; BT_DBG("conn %p type 0x%02x len %u: %s", conn, type, msg->len, bt_hex(msg->data, msg->len)); /* ATT_MTU - OpCode (1 byte) - Handle (2 bytes) */ mtu = bt_mesh_gatt_get_mtu(conn) - 3; if (mtu > msg->len) { net_buf_simple_push_u8(msg, BLE_MESH_PROXY_PDU_HDR(BLE_MESH_PROXY_SAR_COMP, type)); return proxy_send(conn, msg->data, msg->len); }{...} net_buf_simple_push_u8(msg, BLE_MESH_PROXY_PDU_HDR(BLE_MESH_PROXY_SAR_FIRST, type)); proxy_send(conn, msg->data, mtu); net_buf_simple_pull(msg, mtu); while (msg->len) { if (msg->len + 1 < mtu) { net_buf_simple_push_u8(msg, BLE_MESH_PROXY_PDU_HDR(BLE_MESH_PROXY_SAR_LAST, type)); proxy_send(conn, msg->data, msg->len); break; }{...} net_buf_simple_push_u8(msg, BLE_MESH_PROXY_PDU_HDR(BLE_MESH_PROXY_SAR_CONT, type)); proxy_send(conn, msg->data, mtu); net_buf_simple_pull(msg, mtu); }{...} return 0; }{ ... } int bt_mesh_proxy_server_send(struct bt_mesh_conn *conn, uint8_t type, struct net_buf_simple *msg) { struct bt_mesh_proxy_client *client = find_client(conn); if (!client) { BT_ERR("No Proxy Client found"); return -ENOTCONN; }{...} if ((client->filter_type == SRV_PROV) != (type == BLE_MESH_PROXY_PROV)) { BT_ERR("Invalid PDU type for Proxy Client"); return -EINVAL; }{...} return bt_mesh_proxy_server_segment_send(conn, type, msg); }{ ... } #if CONFIG_BLE_MESH_PB_GATT static uint8_t prov_svc_data[20] = { 0x27, 0x18, }; static const struct bt_mesh_adv_data prov_ad[] = { BLE_MESH_ADV_DATA_BYTES(BLE_MESH_DATA_FLAGS, (BLE_MESH_AD_GENERAL | BLE_MESH_AD_NO_BREDR)), BLE_MESH_ADV_DATA_BYTES(BLE_MESH_DATA_UUID16_ALL, 0x27, 0x18), BLE_MESH_ADV_DATA(BLE_MESH_DATA_SVC_DATA16, prov_svc_data, sizeof(prov_svc_data)), }{...}; /* ... */#endif /* PB_GATT */ #if CONFIG_BLE_MESH_GATT_PROXY_SERVER #define NET_ID_LEN 11 #define NODE_ID_LEN 19 #define PRIVATE_NET_ID_LEN 19 #define PRIVATE_NODE_ID_LEN 19 #define PROXY_ADV_MAX_LEN 19 #define NODE_ID_TIMEOUT K_SECONDS(CONFIG_BLE_MESH_NODE_ID_TIMEOUT)6 defines /* Note: * The "proxy_svc_data" should be large enough to hold the maximum * payload of the Node ID/Net ID/Private Node ID/Private Net ID. *//* ... */ static uint8_t proxy_svc_data[PROXY_ADV_MAX_LEN] = { 0x28, 0x18, }; static const struct bt_mesh_adv_data node_id_ad[] = { BLE_MESH_ADV_DATA_BYTES(BLE_MESH_DATA_FLAGS, (BLE_MESH_AD_GENERAL | BLE_MESH_AD_NO_BREDR)), BLE_MESH_ADV_DATA_BYTES(BLE_MESH_DATA_UUID16_ALL, 0x28, 0x18), BLE_MESH_ADV_DATA(BLE_MESH_DATA_SVC_DATA16, proxy_svc_data, NODE_ID_LEN), }{...}; static const struct bt_mesh_adv_data net_id_ad[] = { BLE_MESH_ADV_DATA_BYTES(BLE_MESH_DATA_FLAGS, (BLE_MESH_AD_GENERAL | BLE_MESH_AD_NO_BREDR)), BLE_MESH_ADV_DATA_BYTES(BLE_MESH_DATA_UUID16_ALL, 0x28, 0x18), BLE_MESH_ADV_DATA(BLE_MESH_DATA_SVC_DATA16, proxy_svc_data, NET_ID_LEN), }{...}; #if CONFIG_BLE_MESH_PRB_SRV || CONFIG_BLE_MESH_PROXY_SOLIC_PDU_RX static const struct bt_mesh_adv_data private_node_id_ad[] = { BLE_MESH_ADV_DATA_BYTES(BLE_MESH_DATA_FLAGS, (BLE_MESH_AD_GENERAL | BLE_MESH_AD_NO_BREDR)), BLE_MESH_ADV_DATA_BYTES(BLE_MESH_DATA_UUID16_ALL, 0x28, 0x18), BLE_MESH_ADV_DATA(BLE_MESH_DATA_SVC_DATA16, proxy_svc_data, PRIVATE_NODE_ID_LEN), }{...}; static const struct bt_mesh_adv_data private_net_id_ad[] = { BLE_MESH_ADV_DATA_BYTES(BLE_MESH_DATA_FLAGS, (BLE_MESH_AD_GENERAL | BLE_MESH_AD_NO_BREDR)), BLE_MESH_ADV_DATA_BYTES(BLE_MESH_DATA_UUID16_ALL, 0x28, 0x18), BLE_MESH_ADV_DATA(BLE_MESH_DATA_SVC_DATA16, proxy_svc_data, PRIVATE_NET_ID_LEN), }{...};/* ... */ #endif /* CONFIG_BLE_MESH_PRB_SRV */ static size_t gatt_proxy_adv_create(struct bt_mesh_adv_data *proxy_sd) { const char *name = device_name; size_t name_len = strlen(name); /* One octet for Length, and another octet for AD type */ size_t sd_space = 29; if (name_len > sd_space) { proxy_sd->type = BLE_MESH_DATA_NAME_SHORTENED; proxy_sd->data_len = sd_space; }{...} else { proxy_sd->type = BLE_MESH_DATA_NAME_COMPLETE; proxy_sd->data_len = name_len; }{...} proxy_sd->data = (const uint8_t *)name; return 1; }{ ... } static int node_id_adv(struct bt_mesh_subnet *sub) { struct bt_mesh_adv_data proxy_sd = {0}; size_t proxy_sd_len = 0U; uint8_t tmp[16] = {0}; int err = 0; proxy_svc_data[2] = BLE_MESH_PROXY_ADV_NODE_ID; err = bt_mesh_rand(proxy_svc_data + 11, 8); if (err) { return err; }{...} (void)memset(tmp, 0, 6); memcpy(tmp + 6, proxy_svc_data + 11, 8); sys_put_be16(bt_mesh_primary_addr(), tmp + 14); err = bt_mesh_encrypt_be(sub->keys[sub->kr_flag].identity, tmp, tmp); if (err) { return err; }{...} memcpy(proxy_svc_data + 3, tmp + 8, 8); proxy_sd_len = gatt_proxy_adv_create(&proxy_sd); err = bt_le_adv_start(&fast_adv_param, node_id_ad, ARRAY_SIZE(node_id_ad), &proxy_sd, proxy_sd_len); if (err) { BT_WARN("Failed to advertise using Node ID (err %d)", err); return err; }{...} proxy_adv_enabled = true; return 0; }{ ... } static int net_id_adv(struct bt_mesh_subnet *sub) { struct bt_mesh_adv_data proxy_sd = {0}; size_t proxy_sd_len = 0U; int err = 0; proxy_svc_data[2] = BLE_MESH_PROXY_ADV_NET_ID; BT_DBG("Advertising with NetId %s", bt_hex(sub->keys[sub->kr_flag].net_id, 8)); memcpy(proxy_svc_data + 3, sub->keys[sub->kr_flag].net_id, 8); proxy_sd_len = gatt_proxy_adv_create(&proxy_sd); err = bt_le_adv_start(&slow_adv_param, net_id_ad, ARRAY_SIZE(net_id_ad), &proxy_sd, proxy_sd_len); if (err) { BT_WARN("Failed to advertise using Network ID (err %d)", err); return err; }{...} proxy_adv_enabled = true; return 0; }{ ... } #if CONFIG_BLE_MESH_PRB_SRV void bt_mesh_proxy_server_update_net_id_rand(void) { k_delayed_work_submit(&rand_upd_timer, RAND_UPDATE_INTERVAL); }{...} void bt_mesh_proxy_server_update_net_id_rand_stop(void) { k_delayed_work_cancel(&rand_upd_timer); }{...} static void random_update_timeout(struct k_work *work) { int err = 0; err = bt_mesh_rand(net_id_random, 8); if (err) { BT_ERR("Generate random value failed"); return; }{...} k_delayed_work_submit(&rand_upd_timer, RAND_UPDATE_INTERVAL); }{...} static int private_node_id_adv(struct bt_mesh_subnet *sub) { struct bt_mesh_adv_data proxy_sd = {0}; size_t proxy_sd_len = 0U; uint8_t tmp[16] = {0}; int err = 0; proxy_svc_data[2] = BLE_MESH_PROXY_ADV_PRIVATE_NODE_ID; err = bt_mesh_rand(proxy_svc_data + 11, 8); if (err) { return err; }{...} memset(tmp, 0, 5); tmp[5] = 0x03; memcpy(tmp + 6, proxy_svc_data + 11, 8); sys_put_be16(bt_mesh_primary_addr(), tmp + 14); err = bt_mesh_encrypt_be(sub->keys[sub->kr_flag].identity, tmp, tmp); if (err) { return err; }{...} memcpy(proxy_svc_data + 3, tmp + 8, 8); proxy_sd_len = gatt_proxy_adv_create(&proxy_sd); err = bt_le_adv_start(&fast_adv_param, private_node_id_ad, ARRAY_SIZE(private_node_id_ad), &proxy_sd, proxy_sd_len); if (err) { BT_WARN("Failed to advertise with Private Node ID (err %d)", err); return err; }{...} proxy_adv_enabled = true; return 0; }{...} /* ... */#endif /* CONFIG_BLE_MESH_PRB_SRV */ #if (CONFIG_BLE_MESH_PRB_SRV || \ CONFIG_BLE_MESH_PROXY_SOLIC_PDU_RX) static int private_net_id_adv(struct bt_mesh_subnet *sub) { struct bt_mesh_adv_data proxy_sd = {0}; size_t proxy_sd_len = 0U; uint8_t tmp[16] = {0}; int err = 0; proxy_svc_data[2] = BLE_MESH_PROXY_ADV_PRIVATE_NET_ID; /* TODO: * The Private Network Identity advertisements shall use a resolvable private * address or a non-resolvable private address in the AdvA field of the connectable * advertising PDU. The address used for the AdvA field shall be regenerated * whenever the Random field is regenerated. *//* ... */ /* The Random field should be updated every 10 minutes. */ memcpy(proxy_svc_data + 11, net_id_random, 8); memcpy(tmp, sub->keys[sub->kr_flag].net_id, 8); memcpy(tmp + 8, net_id_random, 8); err = bt_mesh_encrypt_be(sub->keys[sub->kr_flag].identity, tmp, tmp); if (err) { return err; }{...} memcpy(proxy_svc_data + 3, tmp + 8, 8); /* Hash */ proxy_sd_len = gatt_proxy_adv_create(&proxy_sd); err = bt_le_adv_start(&fast_adv_param, private_net_id_ad, ARRAY_SIZE(private_net_id_ad), &proxy_sd, proxy_sd_len); if (err) { BT_WARN("Failed to advertise with Private Net ID (err %d)", err); return err; }{...} proxy_adv_enabled = true; return 0; }{...} /* ... */#endif /* (CONFIG_BLE_MESH_PRB_SRV || \ CONFIG_BLE_MESH_PROXY_SOLIC_PDU_RX) *//* ... */ static bool advertise_subnet(struct bt_mesh_subnet *sub) { if (sub->net_idx == BLE_MESH_KEY_UNUSED) { return false; }{...} return (sub->node_id == BLE_MESH_NODE_IDENTITY_RUNNING || bt_mesh_gatt_proxy_get() == BLE_MESH_GATT_PROXY_ENABLED #if CONFIG_BLE_MESH_PRB_SRV || sub->private_node_id == BLE_MESH_PRIVATE_NODE_IDENTITY_RUNNING || bt_mesh_private_gatt_proxy_state_get() == BLE_MESH_PRIVATE_GATT_PROXY_ENABLED/* ... */ #endif ); }{ ... } static struct bt_mesh_subnet *next_sub(void) { struct bt_mesh_subnet *sub = NULL; int i; for (i = next_idx; i < ARRAY_SIZE(bt_mesh.sub); i++) { sub = &bt_mesh.sub[i]; if (advertise_subnet(sub)) { next_idx = (i + 1) % ARRAY_SIZE(bt_mesh.sub); return sub; }{...} }{...} /* If among [next_idx, ARRAY_SIZE(bt_mesh.sub)], there is no subnet * to advertise, then try to start advertising from Primary subnet. *//* ... */ for (i = 0; i < next_idx; i++) { sub = &bt_mesh.sub[i]; if (advertise_subnet(sub)) { next_idx = (i + 1) % ARRAY_SIZE(bt_mesh.sub); return sub; }{...} }{...} return NULL; }{ ... } static int sub_count(void) { int i, count = 0; for (i = 0; i < ARRAY_SIZE(bt_mesh.sub); i++) { struct bt_mesh_subnet *sub = &bt_mesh.sub[i]; if (advertise_subnet(sub)) { count++; }{...} }{...} return count; }{ ... } static int32_t gatt_proxy_advertise(struct bt_mesh_subnet *sub) { int32_t remaining = K_FOREVER; int subnet_count = 0; uint32_t active = 0U; if (conn_count == BLE_MESH_MAX_CONN) { BT_WARN("Connectable advertising deferred (max connections %d)", conn_count); return remaining; }{...} if (!sub) { BT_WARN("No subnets to advertise on"); return remaining; }{...} if (sub->node_id == BLE_MESH_NODE_IDENTITY_RUNNING) { active = k_uptime_get_32() - sub->node_id_start; if (active < NODE_ID_TIMEOUT) { remaining = NODE_ID_TIMEOUT - active; BT_DBG("Node ID active for %u ms, %d ms remaining", active, remaining); node_id_adv(sub); }{...} else { bt_mesh_proxy_server_identity_stop(sub); BT_DBG("Node ID stopped"); }{...} }{...} #if CONFIG_BLE_MESH_PRB_SRV else if (sub->private_node_id == BLE_MESH_PRIVATE_NODE_IDENTITY_RUNNING) { active = k_uptime_get_32() - sub->node_id_start; if (active < NODE_ID_TIMEOUT) { remaining = NODE_ID_TIMEOUT - active; BT_DBG("Private Node ID active for %u ms, %d ms remaining", active, remaining); private_node_id_adv(sub); }{...} else { bt_mesh_proxy_server_private_identity_stop(sub); BT_DBG("Private Node ID stopped"); }{...} }{...} #endif/* ... */ /* CONFIG_BLE_MESH_PRB_SRV */ if (sub->node_id == BLE_MESH_NODE_IDENTITY_STOPPED #if CONFIG_BLE_MESH_PRB_SRV && sub->private_node_id == BLE_MESH_PRIVATE_NODE_IDENTITY_STOPPED #endif ) { if (bt_mesh_gatt_proxy_get() == BLE_MESH_GATT_PROXY_ENABLED) { net_id_adv(sub); }{...} #if CONFIG_BLE_MESH_PRB_SRV else if (bt_mesh_private_gatt_proxy_state_get() == BLE_MESH_PRIVATE_GATT_PROXY_ENABLED) { private_net_id_adv(sub); }{...} #endif/* ... */ }{...} subnet_count = sub_count(); BT_DBG("sub_count %u", subnet_count); if (subnet_count > 1) { int32_t max_timeout = 0; /* We use NODE_ID_TIMEOUT as a starting point since it may * be less than 60 seconds. Divide this period into at least * 6 slices, but make sure that a slice is at least one * second long (to avoid excessive rotation). *//* ... */ max_timeout = NODE_ID_TIMEOUT / MAX(subnet_count, 6); max_timeout = MAX(max_timeout, K_SECONDS(1)); if (remaining > max_timeout || remaining < 0) { remaining = max_timeout; }{...} }{...} BT_DBG("Advertising %d ms for net_idx 0x%04x", remaining, sub->net_idx); return remaining; }{ ... } #endif/* ... */ /* GATT_PROXY */ #if CONFIG_BLE_MESH_PB_GATT static size_t gatt_prov_adv_create(struct bt_mesh_adv_data prov_sd[2]) { const char *name = device_name; size_t name_len = strlen(name); size_t prov_sd_len = 0U; size_t sd_space = 31U; if (bt_mesh_prov_get() == NULL) { BT_ERR("No provisioning context provided"); return 0; }{...} memcpy(prov_svc_data + 2, bt_mesh_prov_get()->uuid, 16); /* According CSS, all the field within adv data shall be little-endian */ sys_put_le16(bt_mesh_prov_get()->oob_info, prov_svc_data + 18); if (bt_mesh_prov_get()->uri) { size_t uri_len = strlen(bt_mesh_prov_get()->uri); if (uri_len > 29) { /* There's no way to shorten an URI */ BT_WARN("Too long URI to fit advertising packet"); }{...} else { prov_sd[0].type = BLE_MESH_DATA_URI; prov_sd[0].data_len = uri_len; prov_sd[0].data = (const uint8_t *)bt_mesh_prov_get()->uri; sd_space -= 2 + uri_len; prov_sd_len++; }{...} }{...} if (sd_space > 2 && name_len > 0) { sd_space -= 2; if (sd_space < name_len) { prov_sd[prov_sd_len].type = BLE_MESH_DATA_NAME_SHORTENED; prov_sd[prov_sd_len].data_len = sd_space; }{...} else { prov_sd[prov_sd_len].type = BLE_MESH_DATA_NAME_COMPLETE; prov_sd[prov_sd_len].data_len = name_len; }{...} prov_sd[prov_sd_len].data = (const uint8_t *)name; prov_sd_len++; }{...} return prov_sd_len; }{ ... } /* ... */#endif /* CONFIG_BLE_MESH_PB_GATT */ #if CONFIG_BLE_MESH_PROXY_SOLIC_PDU_RX static int32_t solic_adv_private_net_id(void) { uint16_t net_idx = BLE_MESH_KEY_UNUSED; struct bt_mesh_subnet *sub = NULL; int32_t remaining = 0; remaining = bt_mesh_proxy_server_get_solic_adv_remaining(); if (remaining == 0) { return 0; }{...} net_idx = bt_mesh_proxy_server_get_solic_adv_net_idx(); if (net_idx == BLE_MESH_KEY_UNUSED) { return 0; }{...} sub = bt_mesh_subnet_get(net_idx); if (sub == NULL) { return 0; }{...} private_net_id_adv(sub); return remaining; }{...} /* ... */#endif /* CONFIG_BLE_MESH_PROXY_SOLIC_PDU_RX */ int32_t bt_mesh_proxy_server_adv_start(void) { if (gatt_svc == MESH_GATT_NONE) { return K_FOREVER; }{...} #if CONFIG_BLE_MESH_PB_GATT if (prov_fast_adv) { prov_start_time = k_uptime_get_32(); }{...} if (!bt_mesh_is_provisioned()) { const struct bt_mesh_adv_param *param; struct bt_mesh_adv_data prov_sd[2]; size_t prov_sd_len; if (k_uptime_get_32() - prov_start_time < K_SECONDS(60)) { param = &fast_adv_param; }{...} else { param = &slow_adv_param; }{...} prov_sd_len = gatt_prov_adv_create(prov_sd); if (bt_le_adv_start(param, prov_ad, ARRAY_SIZE(prov_ad), prov_sd, prov_sd_len) == 0) { proxy_adv_enabled = true; /* Advertise 60 seconds using fast interval */ if (prov_fast_adv) { prov_fast_adv = false; return K_SECONDS(60); }{...} }{...} }{...} #endif/* ... */ /* PB_GATT */ #if CONFIG_BLE_MESH_GATT_PROXY_SERVER if (bt_mesh_is_provisioned()) { #if CONFIG_BLE_MESH_PROXY_SOLIC_PDU_RX /* When the server starts advertising with Private Network Identity * as a result of the reception of a Solicitation PDU, the server * shall only advertise the subnet corresponding to the network key * that is used to authenticate the Solicitation PDU; otherwise, the * server shall interleave the advertising of each of its subnets. *//* ... */ int32_t remaining = solic_adv_private_net_id(); if (remaining) { return remaining; }{...} #endif/* ... */ /* CONFIG_BLE_MESH_PROXY_SOLIC_PDU_RX */ return gatt_proxy_advertise(next_sub()); }{...} #endif/* ... */ /* GATT_PROXY */ return K_FOREVER; }{ ... } void bt_mesh_proxy_server_adv_stop(void) { int err = 0; BT_DBG("adv_enabled %u", proxy_adv_enabled); if (!proxy_adv_enabled) { return; }{...} err = bt_le_adv_stop(); if (err) { BT_ERR("Failed to stop advertising (err %d)", err); }{...} else { proxy_adv_enabled = false; }{...} }{ ... } static struct bt_mesh_conn_cb conn_callbacks = { .connected = proxy_connected, .disconnected = proxy_disconnected, }{...}; int bt_mesh_proxy_server_init(void) { int i; #if CONFIG_BLE_MESH_GATT_PROXY_SERVER bt_mesh_gatts_service_register(&proxy_svc); #endif #if CONFIG_BLE_MESH_PB_GATT bt_mesh_gatts_service_register(&prov_svc); #endif /* Initialize the client receive buffers */ for (i = 0; i < ARRAY_SIZE(clients); i++) { struct bt_mesh_proxy_client *client = &clients[i]; client->buf.size = BLE_MESH_PROXY_BUF_SIZE; client->buf.__buf = client_buf_data + (i * BLE_MESH_PROXY_BUF_SIZE); #if defined(CONFIG_BLE_MESH_GATT_PROXY_SERVER) k_delayed_work_init(&client->send_beacons, proxy_send_beacons); #endif k_delayed_work_init(&client->sar_timer, proxy_sar_timeout); }{...} #if CONFIG_BLE_MESH_GATT_PROXY_SERVER && CONFIG_BLE_MESH_PRB_SRV if (k_delayed_work_init(&rand_upd_timer, random_update_timeout)) { BT_ERR("Failed to create a random update timer"); return -EIO; }{...} #endif/* ... */ bt_mesh_gatts_conn_cb_register(&conn_callbacks); strncpy(device_name, "ESP-BLE-MESH", DEVICE_NAME_SIZE); return bt_mesh_gatts_set_local_device_name(device_name); }{ ... } #if CONFIG_BLE_MESH_DEINIT int bt_mesh_proxy_server_deinit(void) { int i; proxy_adv_enabled = false; gatt_svc = MESH_GATT_NONE; #if CONFIG_BLE_MESH_GATT_PROXY_SERVER bt_mesh_gatts_service_deregister(&proxy_svc); next_idx = 0;/* ... */ #endif #if CONFIG_BLE_MESH_PB_GATT bt_mesh_gatts_service_deregister(&prov_svc); #endif for (i = 0; i < ARRAY_SIZE(clients); i++) { struct bt_mesh_proxy_client *client = &clients[i]; #if defined(CONFIG_BLE_MESH_GATT_PROXY_SERVER) k_delayed_work_free(&client->send_beacons); #endif k_delayed_work_free(&client->sar_timer); memset(client, 0, sizeof(struct bt_mesh_proxy_client)); }{...} #if CONFIG_BLE_MESH_GATT_PROXY_SERVER && CONFIG_BLE_MESH_PRB_SRV k_delayed_work_free(&rand_upd_timer); #endif memset(client_buf_data, 0, sizeof(client_buf_data)); memset(device_name, 0, sizeof(device_name)); bt_mesh_gatts_conn_cb_deregister(); conn_count = 0; return 0; }{ ... } /* ... */#endif /* CONFIG_BLE_MESH_DEINIT */ /* ... */ #endif /* (CONFIG_BLE_MESH_NODE && CONFIG_BLE_MESH_PB_GATT) || \ CONFIG_BLE_MESH_GATT_PROXY_SERVER *//* ... */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.