Blob: gatt-client.c
Blob id: f6d5dc4b7c5e311fcfc48ed7e98933544059ab3b
Size: 83.6 KB
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 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 | // SPDX-License-Identifier: LGPL-2.1-or-later /* * * BlueZ - Bluetooth protocol stack for Linux * * Copyright (C) 2014 Google Inc. * * */ #ifdef HAVE_CONFIG_H #include <config.h> #endif #include "src/shared/att.h" #include "bluetooth/bluetooth.h" #include "bluetooth/uuid.h" #include "src/shared/gatt-helpers.h" #include "src/shared/util.h" #include "src/shared/queue.h" #include "src/shared/gatt-db.h" #include "src/shared/gatt-client.h" #include <assert.h> #include <limits.h> #include <sys/uio.h> #ifndef MAX #define MAX(a, b) ((a) > (b) ? (a) : (b)) #endif #ifndef MIN #define MIN(a, b) ((a) < (b) ? (a) : (b)) #endif #define UUID_BYTES (BT_GATT_UUID_SIZE * sizeof(uint8_t)) #define GATT_SVC_UUID 0x1801 #define SVC_CHNGD_UUID 0x2a05 #define DBG(_client, _format, arg...) \ gatt_log(_client, "[%p] %s:%s() " _format, _client, __FILE__, \ __func__, ## arg) struct ready_cb { bt_gatt_client_callback_t callback; bt_gatt_client_destroy_func_t destroy; void *data; }; struct idle_cb { bt_gatt_client_idle_callback_t callback; bt_gatt_client_destroy_func_t destroy; void *data; }; struct bt_gatt_client { struct bt_att *att; int ref_count; uint8_t features; struct bt_gatt_client *parent; struct queue *clones; struct queue *ready_cbs; struct queue *idle_cbs; bt_gatt_client_service_changed_callback_t svc_chngd_callback; bt_gatt_client_destroy_func_t svc_chngd_destroy; void *svc_chngd_data; bt_gatt_client_debug_func_t debug_callback; bt_gatt_client_destroy_func_t debug_destroy; void *debug_data; struct gatt_db *db; bool in_init; bool ready; /* * Queue of long write requests. An error during "prepare write" * requests can result in a cancel through "execute write". To prevent * cancellation of prepared writes to the wrong attribute and multiple * requests to the same attribute that may result in a corrupted final * value, we avoid interleaving prepared writes. */ struct queue *long_write_queue; bool in_long_write; unsigned int reliable_write_session_id; /* List of registered disconnect/notification/indication callbacks */ struct queue *notify_list; struct queue *notify_chrcs; int next_reg_id; unsigned int disc_id, nfy_id, nfy_mult_id, ind_id; /* * Handles of the GATT Service and the Service Changed characteristic * value handle. These will have the value 0 if they are not present on * the remote peripheral. */ unsigned int svc_chngd_ind_id; bool svc_chngd_registered; struct queue *svc_chngd_queue; /* Queued service changed events */ bool in_svc_chngd; /* * List of pending read/write operations. For operations that span * across multiple PDUs, this list provides a mapping from an operation * id to an ATT request id. */ struct queue *pending_requests; unsigned int next_request_id; struct bt_gatt_request *discovery_req; unsigned int mtu_req_id; }; struct request { struct bt_gatt_client *client; bool long_write; bool prep_write; bool removed; int ref_count; unsigned int id; unsigned int att_id; void *data; void (*destroy)(void *); }; static struct request *request_ref(struct request *req) { __sync_fetch_and_add(&req->ref_count, 1); return req; } static struct request *request_create(struct bt_gatt_client *client) { struct request *req; if (!client->att) return NULL; req = new0(struct request, 1); if (client->next_request_id < 1) client->next_request_id = 1; queue_push_tail(client->pending_requests, req); req->client = client; req->id = client->next_request_id++; return request_ref(req); } static void idle_destroy(void *data) { struct idle_cb *idle = data; if (idle->destroy) idle->destroy(idle->data); free(idle); } static bool idle_notify(const void *data, const void *user_data) { const struct idle_cb *idle = data; idle->callback(idle->data); return true; } static struct bt_gatt_client * bt_gatt_client_ref_safe(struct bt_gatt_client *client) { if (!client || !client->ref_count) return NULL; return bt_gatt_client_ref(client); } static void notify_client_idle(struct bt_gatt_client *client) { client = bt_gatt_client_ref_safe(client); if (!client) return; queue_remove_all(client->idle_cbs, idle_notify, NULL, idle_destroy); bt_gatt_client_unref(client); } static void request_unref(void *data) { struct request *req = data; struct bt_gatt_client *client = req->client; if (__sync_sub_and_fetch(&req->ref_count, 1)) return; if (req->destroy) req->destroy(req->data); if (!req->removed) { queue_remove(client->pending_requests, req); if (queue_isempty(client->pending_requests)) notify_client_idle(client); } free(req); } struct notify_chrc { struct bt_gatt_client *client; struct gatt_db_attribute *attr; uint16_t value_handle; uint16_t ccc_handle; uint16_t properties; unsigned int notify_id; int notify_count; /* Reference count of registered notify callbacks */ /* Pending calls to register_notify are queued here so that they can be * processed after a write that modifies the CCC descriptor. */ struct queue *reg_notify_queue; unsigned int ccc_write_id; }; struct notify_data { struct bt_gatt_client *client; unsigned int id; unsigned int att_id; uint8_t att_ecode; int ref_count; struct notify_chrc *chrc; bt_gatt_client_register_callback_t callback; bt_gatt_client_notify_callback_t notify; void *user_data; bt_gatt_client_destroy_func_t destroy; }; static struct notify_data *notify_data_ref(struct notify_data *notify_data) { __sync_fetch_and_add(¬ify_data->ref_count, 1); return notify_data; } static void notify_data_unref(void *data) { struct notify_data *notify_data = data; if (__sync_sub_and_fetch(¬ify_data->ref_count, 1)) return; if (notify_data->destroy) notify_data->destroy(notify_data->user_data); free(notify_data); } static bool match_notify_chrc(const void *data, const void *user_data) { const struct notify_data *notify_data = data; const struct notify_chrc *chrc = user_data; return notify_data->chrc == chrc; } static void notify_data_cleanup(void *data) { struct notify_data *notify_data = data; if (notify_data->att_id) bt_att_cancel(notify_data->client->att, notify_data->att_id); notify_data_unref(notify_data); } static void notify_chrc_free(void *data) { struct notify_chrc *chrc = data; if (chrc->notify_id) gatt_db_attribute_unregister(chrc->attr, chrc->notify_id); queue_destroy(chrc->reg_notify_queue, notify_data_unref); free(chrc); } static void chrc_removed(struct gatt_db_attribute *attr, void *user_data) { struct notify_chrc *chrc = user_data; struct bt_gatt_client *client = chrc->client; struct notify_data *data; chrc->notify_id = 0; while ((data = queue_remove_if(client->notify_list, match_notify_chrc, chrc))) notify_data_cleanup(data); queue_remove(client->notify_chrcs, chrc); notify_chrc_free(chrc); } static struct notify_chrc *notify_chrc_create(struct bt_gatt_client *client, uint16_t handle) { struct gatt_db_attribute *attr, *ccc; struct notify_chrc *chrc; uint16_t value_handle; uint8_t properties; /* Check that there is an attribute with handle */ attr = gatt_db_get_attribute(client->db, handle); if (!attr) return NULL; if (!gatt_db_attribute_get_char_data(attr, NULL, &value_handle, &properties, NULL, NULL)) return NULL; /* Check that there is an attribute with value_handle */ attr = gatt_db_get_attribute(client->db, value_handle); if (!attr) return NULL; chrc = new0(struct notify_chrc, 1); chrc->reg_notify_queue = queue_new(); if (!chrc->reg_notify_queue) { free(chrc); return NULL; } ccc = gatt_db_attribute_get_ccc(attr); if (ccc) chrc->ccc_handle = gatt_db_attribute_get_handle(ccc); chrc->client = client; chrc->attr = attr; chrc->value_handle = value_handle; chrc->properties = properties; chrc->notify_id = gatt_db_attribute_register(attr, chrc_removed, chrc, NULL); queue_push_tail(client->notify_chrcs, chrc); return chrc; } static bool match_notify_data_id(const void *a, const void *b) { const struct notify_data *notify_data = a; unsigned int id = PTR_TO_UINT(b); return notify_data->id == id; } struct handle_range { uint16_t start; uint16_t end; }; struct discovery_op; typedef void (*discovery_op_complete_func_t)(struct discovery_op *op, bool success, uint8_t att_ecode); typedef void (*discovery_op_fail_func_t)(struct discovery_op *op); struct discovery_op { struct bt_gatt_client *client; struct queue *discov_ranges; struct queue *pending_svcs; struct queue *pending_chrcs; struct queue *ext_prop_desc; struct gatt_db_attribute *cur_svc; struct gatt_db_attribute *hash; uint8_t server_feat; bool success; uint16_t start; uint16_t end; uint16_t last; uint16_t svc_first; uint16_t svc_last; unsigned int db_id; int ref_count; discovery_op_complete_func_t complete_func; discovery_op_fail_func_t failure_func; }; static void discovery_op_free(struct discovery_op *op) { if (op->db_id > 0) gatt_db_unregister(op->client->db, op->db_id); queue_destroy(op->discov_ranges, free); queue_destroy(op->pending_svcs, NULL); queue_destroy(op->pending_chrcs, free); queue_destroy(op->ext_prop_desc, NULL); free(op); } static bool read_db_hash(struct discovery_op *op); static void gatt_log_va(struct bt_gatt_client *client, const char *format, va_list va) { if (!client || !format) return; if (client->debug_callback) util_debug_va(client->debug_callback, client->debug_data, format, va); else gatt_log_va(client->parent, format, va); } static void gatt_log(struct bt_gatt_client *client, const char *format, ...) { va_list ap; if (!client || !format) return; va_start(ap, format); gatt_log_va(client, format, ap); va_end(ap); } static void discovery_op_complete(struct discovery_op *op, bool success, uint8_t err) { const struct queue_entry *svc; op->success = success; /* Read database hash if discovery has been successful */ if (success && read_db_hash(op)) return; /* * Unregister remove callback so it is not called when clearing unused * range. */ gatt_db_unregister(op->client->db, op->db_id); op->db_id = 0; /* Remove services pending */ for (svc = queue_get_entries(op->pending_svcs); svc; svc = svc->next) { struct gatt_db_attribute *attr = svc->data; uint16_t start, end; /* Leave active services if operation was aborted */ if ((!success && err == 0) && gatt_db_service_get_active(attr)) continue; gatt_db_attribute_get_service_data(attr, &start, &end, NULL, NULL); DBG(op->client, "service disappeared: start 0x%04x end 0x%04x", start, end); gatt_db_remove_service(op->client->db, attr); } /* Reset remaining range */ if (op->last != UINT16_MAX) gatt_db_clear_range(op->client->db, op->last + 1, UINT16_MAX); op->complete_func(op, success, err); } static void discovery_load_services(struct gatt_db_attribute *attr, void *user_data) { struct discovery_op *op = user_data; queue_push_tail(op->pending_svcs, attr); } static void discovery_service_changed(struct gatt_db_attribute *attr, void *user_data) { struct discovery_op *op = user_data; queue_remove(op->pending_svcs, attr); } static struct discovery_op *discovery_op_create(struct bt_gatt_client *client, uint16_t start, uint16_t end, discovery_op_complete_func_t complete_func, discovery_op_fail_func_t failure_func) { struct discovery_op *op; struct handle_range *range; op = new0(struct discovery_op, 1); op->discov_ranges = queue_new(); op->pending_svcs = queue_new(); op->pending_chrcs = queue_new(); op->ext_prop_desc = queue_new(); op->client = client; op->complete_func = complete_func; op->failure_func = failure_func; op->start = start; op->end = end; op->last = gatt_db_isempty(client->db) ? 0 : UINT16_MAX; op->svc_first = UINT16_MAX; op->svc_last = 0; /* Load existing services as pending */ gatt_db_foreach_service_in_range(client->db, NULL, discovery_load_services, op, start, end); /* * Services are only added when set active in which case they are no * longer pending so it is safe to remove either way. */ op->db_id = gatt_db_register(client->db, discovery_service_changed, discovery_service_changed, op, NULL); range = new0(struct handle_range, 1); range->start = start; range->end = end; queue_push_tail(op->discov_ranges, range); return op; } static struct discovery_op *discovery_op_ref(struct discovery_op *op) { __sync_fetch_and_add(&op->ref_count, 1); return op; } static void discovery_op_unref(void *data) { struct discovery_op *op = data; if (__sync_sub_and_fetch(&op->ref_count, 1)) return; if (!op->success && op->failure_func) op->failure_func(op); discovery_op_free(op); } static void discovery_req_clear(struct bt_gatt_client *client) { if (!client->discovery_req) return; bt_gatt_request_unref(client->discovery_req); client->discovery_req = NULL; } static void discover_remove_pending(struct discovery_op *op, struct gatt_db_attribute *attr) { struct gatt_db_attribute *svc; svc = gatt_db_attribute_get_service(attr); if (!svc) return; if (!queue_remove(op->pending_svcs, svc)) return; gatt_db_service_set_active(svc, true); if (op->cur_svc == svc) op->cur_svc = NULL; } static void discover_chrcs_cb(bool success, uint8_t att_ecode, struct bt_gatt_result *result, void *user_data); static void discover_incl_cb(bool success, uint8_t att_ecode, struct bt_gatt_result *result, void *user_data) { struct discovery_op *op = user_data; struct bt_gatt_client *client = op->client; struct bt_gatt_iter iter; struct gatt_db_attribute *attr; uint16_t handle, start, end; uint128_t u128; bt_uuid_t uuid; char uuid_str[MAX_LEN_UUID_STR]; unsigned int includes_count, i; struct handle_range *range; discovery_req_clear(client); if (!success) { if (att_ecode == BT_ATT_ERROR_ATTRIBUTE_NOT_FOUND) goto next; goto failed; } if (!result || !bt_gatt_iter_init(&iter, result)) goto failed; includes_count = bt_gatt_result_included_count(result); if (includes_count == 0) goto failed; DBG(client, "Included services found: %u", includes_count); for (i = 0; i < includes_count; i++) { if (!bt_gatt_iter_next_included_service(&iter, &handle, &start, &end, u128.data)) break; bt_uuid128_create(&uuid, u128); /* Log debug message */ bt_uuid_to_string(&uuid, uuid_str, sizeof(uuid_str)); DBG(client, "handle: 0x%04x, start: 0x%04x, end: 0x%04x," "uuid: %s", handle, start, end, uuid_str); attr = gatt_db_get_attribute(client->db, start); if (!attr) { DBG(client, "Unable to find attribute at 0x%04x: skipping", start); continue; } attr = gatt_db_insert_included(client->db, handle, attr); if (!attr) { DBG(client, "Unable to add include attribute at 0x%04x", handle); goto failed; } /* * GATT requires that all include definitions precede * characteristic declarations. Based on the order we're adding * these entries, the correct handle must be assigned to the new * attribute. */ if (gatt_db_attribute_get_handle(attr) != handle) { DBG(client, "Invalid attribute 0x%04x expect it at 0x%04x", gatt_db_attribute_get_handle(attr), handle); goto failed; } if (!gatt_db_attribute_get_service_data(attr, NULL, &end, NULL, NULL)) { DBG(client, "Unable to get service data at 0x%04x", handle); goto failed; } /* Skip if there are no attributes */ if (handle == end) discover_remove_pending(op, attr); } next: range = queue_pop_head(op->discov_ranges); if (!range) { /* Skip if there are no attributes */ discover_remove_pending(op, op->cur_svc); goto failed; } client->discovery_req = bt_gatt_discover_characteristics(client->att, range->start, range->end, discover_chrcs_cb, discovery_op_ref(op), discovery_op_unref); free(range); if (client->discovery_req) return; DBG(client, "Failed to start characteristic discovery"); discovery_op_unref(op); failed: discovery_op_complete(op, false, att_ecode); } struct chrc { uint16_t start_handle; uint16_t end_handle; uint16_t value_handle; uint8_t properties; bt_uuid_t uuid; }; static void discover_descs_cb(bool success, uint8_t att_ecode, struct bt_gatt_result *result, void *user_data); static bool discover_descs(struct discovery_op *op, bool *discovering) { struct bt_gatt_client *client = op->client; struct gatt_db_attribute *attr; struct chrc *chrc_data; uint16_t desc_start; *discovering = false; while ((chrc_data = queue_pop_head(op->pending_chrcs))) { struct gatt_db_attribute *svc; uint16_t start, end; /* Adjust current service */ svc = gatt_db_get_service(client->db, chrc_data->value_handle); if (op->cur_svc != svc) { if (op->cur_svc) { queue_remove(op->pending_svcs, op->cur_svc); /* Done with the current service */ gatt_db_service_set_active(op->cur_svc, true); } op->cur_svc = svc; } attr = gatt_db_insert_characteristic(client->db, chrc_data->start_handle, chrc_data->value_handle, &chrc_data->uuid, 0, chrc_data->properties, NULL, NULL, NULL); if (!attr) { DBG(client, "Failed to insert characteristic at 0x%04x", chrc_data->value_handle); /* Some devices have been seen reporting orphaned * characteristics. In order to favor interoperability * we skip over characteristics in error */ free(chrc_data); continue; } if (gatt_db_attribute_get_handle(attr) != chrc_data->value_handle) goto failed; gatt_db_attribute_get_service_handles(svc, &start, &end); /* * Adjust end_handle in case the next chrc is not within the * same service. */ if (chrc_data->end_handle > end) chrc_data->end_handle = end; /* * check for descriptors presence, before initializing the * desc_handle and avoid integer overflow during desc_handle * initialization. */ if (chrc_data->value_handle >= chrc_data->end_handle) { free(chrc_data); continue; } desc_start = chrc_data->value_handle + 1; if (desc_start == chrc_data->end_handle && (chrc_data->properties & BT_GATT_CHRC_PROP_NOTIFY || chrc_data->properties & BT_GATT_CHRC_PROP_INDICATE)) { bt_uuid_t ccc_uuid; /* If there is only one descriptor that must be the CCC * in case either notify or indicate are supported. */ bt_uuid16_create(&ccc_uuid, GATT_CLIENT_CHARAC_CFG_UUID); attr = gatt_db_insert_descriptor(client->db, desc_start, &ccc_uuid, 0, NULL, NULL, NULL); if (attr) { free(chrc_data); continue; } } /* Check if the start range is within characteristic range */ if (desc_start > chrc_data->end_handle) { free(chrc_data); continue; } client->discovery_req = bt_gatt_discover_descriptors( client->att, desc_start, chrc_data->end_handle, discover_descs_cb, discovery_op_ref(op), discovery_op_unref); if (client->discovery_req) { *discovering = true; goto done; } DBG(client, "Failed to start descriptor discovery"); discovery_op_unref(op); goto failed; } /* Done with the current service */ discover_remove_pending(op, op->cur_svc); done: free(chrc_data); return true; failed: DBG(client, "Failed to discover descriptors"); free(chrc_data); return false; } static void ext_prop_write_cb(struct gatt_db_attribute *attrib, int err, void *user_data) { struct bt_gatt_client *client = user_data; DBG(client, "Value set status: %d", err); } static void ext_prop_read_cb(bool success, uint8_t att_ecode, const uint8_t *value, uint16_t length, void *user_data); static bool read_ext_prop_desc(struct discovery_op *op) { struct bt_gatt_client *client = op->client; uint16_t handle; struct gatt_db_attribute *attr; attr = queue_peek_head(op->ext_prop_desc); if (!attr) return false; handle = gatt_db_attribute_get_handle(attr); if (!bt_gatt_client_read_value(client, handle, ext_prop_read_cb, discovery_op_ref(op), discovery_op_unref)) return false; return true; } static void ext_prop_read_cb(bool success, uint8_t att_ecode, const uint8_t *value, uint16_t length, void *user_data) { struct discovery_op *op = user_data; struct bt_gatt_client *client = op->client; bool discovering; struct gatt_db_attribute *desc_attr = NULL; if (!success) goto done; DBG(client, "Ext. prop value: 0x%04x", (uint16_t)value[0]); desc_attr = queue_pop_head(op->ext_prop_desc); if (!desc_attr) goto failed; if (!gatt_db_attribute_write(desc_attr, 0, value, length, 0, NULL, ext_prop_write_cb, client)) goto failed; /* Any other descriptor to read? */ if (read_ext_prop_desc(op)) return; if (!discover_descs(op, &discovering)) goto failed; if (discovering) return; goto done; failed: success = false; done: discovery_op_complete(op, success, att_ecode); } static void discover_descs_cb(bool success, uint8_t att_ecode, struct bt_gatt_result *result, void *user_data) { struct discovery_op *op = user_data; struct bt_gatt_client *client = op->client; struct bt_gatt_iter iter; struct gatt_db_attribute *attr; uint16_t handle; uint128_t u128; bt_uuid_t uuid; char uuid_str[MAX_LEN_UUID_STR]; unsigned int desc_count; bool discovering; bt_uuid_t ext_prop_uuid; discovery_req_clear(client); if (!success) { if (att_ecode == BT_ATT_ERROR_ATTRIBUTE_NOT_FOUND) { success = true; goto next; } goto done; } if (!result || !bt_gatt_iter_init(&iter, result)) goto failed; desc_count = bt_gatt_result_descriptor_count(result); if (desc_count == 0) goto failed; DBG(client, "Descriptors found: %u", desc_count); bt_uuid16_create(&ext_prop_uuid, GATT_CHARAC_EXT_PROPER_UUID); while (bt_gatt_iter_next_descriptor(&iter, &handle, u128.data)) { bt_uuid128_create(&uuid, u128); /* Log debug message */ bt_uuid_to_string(&uuid, uuid_str, sizeof(uuid_str)); DBG(client, "handle: 0x%04x, uuid: %s", handle, uuid_str); attr = gatt_db_insert_descriptor(client->db, handle, &uuid, 0, NULL, NULL, NULL); if (!attr) { attr = gatt_db_get_attribute(client->db, handle); if (attr && !bt_uuid_cmp(&uuid, gatt_db_attribute_get_type(attr))) continue; DBG(client, "Failed to insert descriptor at 0x%04x", handle); goto failed; } if (gatt_db_attribute_get_handle(attr) != handle) goto failed; if (!bt_uuid_cmp(&ext_prop_uuid, &uuid)) queue_push_tail(op->ext_prop_desc, attr); } /* If we got extended prop descriptor, lets read it right away */ if (read_ext_prop_desc(op)) return; next: if (!discover_descs(op, &discovering)) goto failed; if (discovering) return; goto done; failed: success = false; done: discovery_op_complete(op, success, att_ecode); } static void discover_chrcs_cb(bool success, uint8_t att_ecode, struct bt_gatt_result *result, void *user_data) { struct discovery_op *op = user_data; struct bt_gatt_client *client = op->client; struct bt_gatt_iter iter; struct chrc *chrc_data; uint16_t start, end, value; uint8_t properties; uint128_t u128; bt_uuid_t uuid; char uuid_str[MAX_LEN_UUID_STR]; unsigned int chrc_count; bool discovering; discovery_req_clear(client); if (!success) { if (att_ecode == BT_ATT_ERROR_ATTRIBUTE_NOT_FOUND) { success = true; goto next; } goto done; } if (!result || !bt_gatt_iter_init(&iter, result)) goto failed; chrc_count = bt_gatt_result_characteristic_count(result); DBG(client, "Characteristics found: %u", chrc_count); if (chrc_count == 0) goto failed; while (bt_gatt_iter_next_characteristic(&iter, &start, &end, &value, &properties, u128.data)) { bt_uuid128_create(&uuid, u128); /* Log debug message */ bt_uuid_to_string(&uuid, uuid_str, sizeof(uuid_str)); DBG(client, "start: 0x%04x, end: 0x%04x, value: 0x%04x, " "props: 0x%02x, uuid: %s", start, end, value, properties, uuid_str); chrc_data = new0(struct chrc, 1); chrc_data->start_handle = start; chrc_data->end_handle = end; chrc_data->value_handle = value; chrc_data->properties = properties; chrc_data->uuid = uuid; queue_push_tail(op->pending_chrcs, chrc_data); } next: /* * Before attempting to process discovered characteristics make sure we * discovered all missing ranges. */ if (queue_length(op->discov_ranges)) { struct handle_range *range; range = queue_peek_head(op->discov_ranges); if (!range) goto failed; client->discovery_req = bt_gatt_discover_included_services(client->att, range->start, range->end, discover_incl_cb, discovery_op_ref(op), discovery_op_unref); if (client->discovery_req) return; DBG(client, "Failed to start included services discovery"); discovery_op_unref(op); goto failed; } /* * Sequentially discover descriptors for each characteristic and insert * the characteristics into the database as we proceed. */ if (!discover_descs(op, &discovering)) goto failed; if (discovering) return; goto done; failed: success = false; done: discovery_op_complete(op, success, att_ecode); } static bool match_handle_range(const void *data, const void *match_data) { const struct handle_range *range = data; const struct handle_range *match_range = match_data; return (match_range->start >= range->start) && (match_range->start <= range->end); } static struct handle_range *range_new(uint16_t start, uint16_t end) { struct handle_range *range; if (!start || !end || start > end) return NULL; range = new0(struct handle_range, 1); range->start = start; range->end = end; return range; } static void remove_discov_range(struct discovery_op *op, uint16_t start, uint16_t end) { struct handle_range match_range; struct handle_range *range, *new_range; match_range.start = start; match_range.end = end; range = queue_find(op->discov_ranges, match_handle_range, &match_range); if (!range) return; if ((range->start == start) && (range->end == end)) { queue_remove(op->discov_ranges, range); free(range); } else if (range->start == start) { range->start = end + 1; if (!range->start || range->start > range->end) { queue_remove(op->discov_ranges, range); free(range); } } else if (range->end == end) range->end = start - 1; else { new_range = range_new(end + 1, range->end); if (new_range) queue_push_after(op->discov_ranges, range, new_range); range->end = start - 1; } } static void discovery_found_service(struct discovery_op *op, struct gatt_db_attribute *attr, uint16_t start, uint16_t end) { /* Skip if service already active */ if (!gatt_db_service_get_active(attr)) { /* Skip if there are no attributes */ if (end == start) gatt_db_service_set_active(attr, true); else queue_push_tail(op->pending_svcs, attr); if (start < op->svc_first) op->svc_first = start; if (end > op->svc_last) op->svc_last = end; } else { /* Remove from pending if active */ queue_remove(op->pending_svcs, attr); remove_discov_range(op, start, end); } /* Update last handle */ if (end > op->last) op->last = end; } static bool discovery_parse_services(struct discovery_op *op, bool primary, struct bt_gatt_iter *iter) { struct bt_gatt_client *client = op->client; struct gatt_db_attribute *attr; uint16_t start, end; uint128_t u128; bt_uuid_t uuid; char uuid_str[MAX_LEN_UUID_STR]; while (bt_gatt_iter_next_service(iter, &start, &end, u128.data)) { bt_uuid128_create(&uuid, u128); /* Log debug message */ bt_uuid_to_string(&uuid, uuid_str, sizeof(uuid_str)); DBG(client, "start: 0x%04x, end: 0x%04x, uuid: %s", start, end, uuid_str); /* Store the service */ attr = gatt_db_insert_service(client->db, start, &uuid, primary, end - start + 1); if (!attr) { gatt_db_clear_range(client->db, start, end); attr = gatt_db_insert_service(client->db, start, &uuid, false, end - start + 1); if (!attr) { DBG(client, "Failed to store service"); return false; } /* Database has changed adjust last handle */ op->last = end; } /* Update pending list */ discovery_found_service(op, attr, start, end); } return true; } static void discover_secondary_cb(bool success, uint8_t att_ecode, struct bt_gatt_result *result, void *user_data) { struct discovery_op *op = user_data; struct bt_gatt_client *client = op->client; struct bt_gatt_iter iter; struct handle_range *range; discovery_req_clear(client); if (!success) { switch (att_ecode) { case BT_ATT_ERROR_ATTRIBUTE_NOT_FOUND: case BT_ATT_ERROR_UNSUPPORTED_GROUP_TYPE: success = true; att_ecode = 0; goto next; default: DBG(client, "Secondary service discovery failed." " ATT ECODE: 0x%02x", att_ecode); goto done; } } if (!result || !bt_gatt_iter_init(&iter, result)) { success = false; goto done; } DBG(client, "Secondary services found: %u", bt_gatt_result_service_count(result)); if (!discovery_parse_services(op, false, &iter)) { success = false; goto done; } next: if (queue_isempty(op->pending_svcs) || queue_isempty(op->discov_ranges)) goto done; if (op->svc_first > 0x0001) remove_discov_range(op, 1, op->svc_first - 1); if (op->svc_last < 0xffff) remove_discov_range(op, op->svc_last + 1, 0xffff); range = queue_peek_head(op->discov_ranges); if (range) client->discovery_req = bt_gatt_discover_included_services( client->att, range->start, range->end, discover_incl_cb, discovery_op_ref(op), discovery_op_unref); if (client->discovery_req) return; DBG(client, "Failed to start included services discovery"); discovery_op_unref(op); success = false; done: discovery_op_complete(op, success, att_ecode); } static void discover_primary_cb(bool success, uint8_t att_ecode, struct bt_gatt_result *result, void *user_data) { struct discovery_op *op = user_data; struct bt_gatt_client *client = op->client; struct bt_gatt_iter iter; discovery_req_clear(client); if (!success) { /* Reset error in case of not found */ switch (att_ecode) { case BT_ATT_ERROR_ATTRIBUTE_NOT_FOUND: success = true; att_ecode = 0; goto secondary; default: DBG(client, "Primary service discovery failed." " ATT ECODE: 0x%02x", att_ecode); goto done; } } if (!result || !bt_gatt_iter_init(&iter, result)) { success = false; goto done; } DBG(client, "Primary services found: %u", bt_gatt_result_service_count(result)); if (!discovery_parse_services(op, true, &iter)) { success = false; goto done; } secondary: /* * Version 4.2 [Vol 1, Part A] page 101: * A secondary service is a service that provides auxiliary * functionality of a device and is referenced from at least one * primary service on the device. */ if (queue_isempty(op->pending_svcs)) goto done; /* Discover secondary services */ client->discovery_req = bt_gatt_discover_secondary_services(client->att, NULL, op->start, op->end, discover_secondary_cb, discovery_op_ref(op), discovery_op_unref); if (client->discovery_req) return; DBG(client, "Failed to start secondary service discovery"); discovery_op_unref(op); success = false; done: discovery_op_complete(op, success, att_ecode); } static void ready_destroy(void *data) { struct ready_cb *ready = data; if (ready->destroy) ready->destroy(ready->data); free(ready); } static void notify_client_ready(struct bt_gatt_client *client, bool success, uint8_t att_ecode) { const struct queue_entry *entry; client = bt_gatt_client_ref_safe(client); if (!client) return; if (client->ready) goto done; client->ready = success; if (client->parent) client->features = client->parent->features; for (entry = queue_get_entries(client->ready_cbs); entry; entry = entry->next) { struct ready_cb *ready = entry->data; ready->callback(success, att_ecode, ready->data); } queue_remove_all(client->ready_cbs, NULL, NULL, ready_destroy); /* Notify clones */ for (entry = queue_get_entries(client->clones); entry; entry = entry->next) { struct bt_gatt_client *clone = entry->data; notify_client_ready(clone, success, att_ecode); } done: bt_gatt_client_unref(client); } static void discover_all(struct discovery_op *op) { struct bt_gatt_client *client = op->client; client->discovery_req = bt_gatt_discover_all_primary_services( client->att, NULL, discover_primary_cb, discovery_op_ref(op), discovery_op_unref); if (client->discovery_req) return; DBG(client, "Failed to initiate primary service discovery"); client->in_init = false; notify_client_ready(client, false, BT_ATT_ERROR_UNLIKELY); discovery_op_unref(op); } static void db_hash_write_value_cb(struct gatt_db_attribute *attrib, int err, void *user_data) { struct bt_gatt_client *client = user_data; DBG(client, "Value set status: %d", err); } static void db_hash_read_value_cb(struct gatt_db_attribute *attrib, int err, const uint8_t *value, size_t length, void *user_data) { const uint8_t **hash = user_data; if (err || (length != 16)) return; *hash = value; } static void db_hash_read_cb(bool success, uint8_t att_ecode, struct bt_gatt_result *result, void *user_data) { struct discovery_op *op = user_data; struct bt_gatt_client *client = op->client; const uint8_t *hash = NULL, *value; uint16_t len, handle; struct bt_gatt_iter iter; if (!success) goto discover; bt_gatt_iter_init(&iter, result); bt_gatt_iter_next_read_by_type(&iter, &handle, &len, &value); DBG(client, "DB Hash found: handle 0x%04x length 0x%04x", handle, len); if (len != 16) goto discover; /* Read stored value in the db */ gatt_db_attribute_read(op->hash, 0, BT_ATT_OP_READ_REQ, NULL, db_hash_read_value_cb, &hash); /* Check if the has has changed since last time */ if (hash && !memcmp(hash, value, len)) { DBG(client, "DB Hash match: skipping discovery"); queue_remove_all(op->pending_svcs, NULL, NULL, NULL); discovery_op_complete(op, true, 0); return; } DBG(client, "DB Hash value:"); util_hexdump(' ', value, len, client->debug_callback, client->debug_data); /* Store ithe new hash in the db */ gatt_db_attribute_write(op->hash, 0, value, len, 0, NULL, db_hash_write_value_cb, client); discover: if (!op->success) { discover_all(op); return; } discovery_op_complete(op, true, 0); } static void get_first_attribute(struct gatt_db_attribute *attrib, void *user_data) { struct gatt_db_attribute **stored = user_data; if (*stored) return; *stored = attrib; } static bool read_db_hash(struct discovery_op *op) { struct bt_gatt_client *client = op->client; bt_uuid_t uuid; /* Check if hash was already been read or there are more services to * process. */ if (op->hash || !queue_isempty(client->svc_chngd_queue)) return false; bt_uuid16_create(&uuid, GATT_CHARAC_DB_HASH); gatt_db_find_by_type(client->db, 0x0001, 0xffff, &uuid, get_first_attribute, &op->hash); if (!op->hash) return false; if (!bt_gatt_read_by_type(client->att, 0x0001, 0xffff, &uuid, db_hash_read_cb, discovery_op_ref(op), discovery_op_unref)) { discovery_op_unref(op); return false; } return true; } static void db_server_feat_read(bool success, uint8_t att_ecode, struct bt_gatt_result *result, void *user_data) { struct discovery_op *op = user_data; struct bt_gatt_client *client = op->client; const uint8_t *value; uint16_t len, handle; struct bt_gatt_iter iter; if (!result) return; bt_gatt_iter_init(&iter, result); bt_gatt_iter_next_read_by_type(&iter, &handle, &len, &value); DBG(client, "Server Features found: handle 0x%04x " "length 0x%04x value 0x%02x", handle, len, value[0]); op->server_feat = value[0]; } static void server_feat_read_value(struct gatt_db_attribute *attrib, int err, const uint8_t *value, size_t length, void *user_data) { const uint8_t **feat = user_data; if (err) return; *feat = value; } static void read_server_feat(struct discovery_op *op) { struct bt_gatt_client *client = op->client; struct gatt_db_attribute *attr = NULL; const uint8_t *feat = NULL; bt_uuid_t uuid; bt_uuid16_create(&uuid, GATT_CHARAC_SERVER_FEAT); gatt_db_find_by_type(client->db, 0x0001, 0xffff, &uuid, get_first_attribute, &attr); if (attr) { /* Read stored value in the db */ gatt_db_attribute_read(attr, 0, BT_ATT_OP_READ_REQ, NULL, server_feat_read_value, &feat); if (feat) return; } if (!bt_gatt_read_by_type(client->att, 0x0001, 0xffff, &uuid, db_server_feat_read, discovery_op_ref(op), discovery_op_unref)) discovery_op_unref(op); } static void exchange_mtu_cb(bool success, uint8_t att_ecode, void *user_data) { struct discovery_op *op = user_data; struct bt_gatt_client *client = op->client; op->success = success; client->mtu_req_id = 0; if (!success) { DBG(client, "MTU Exchange failed. ATT ECODE: 0x%02x", att_ecode); /* * BLUETOOTH SPECIFICATION Version 4.2 [Vol 3, Part G] page 546 * If the Error Response is sent by the server with the Error * Code set to RequestNot Supported , the Attribute Opcode is * not supported and the default MTU shall be used. */ if (att_ecode == BT_ATT_ERROR_REQUEST_NOT_SUPPORTED) goto discover; client->in_init = false; notify_client_ready(client, success, att_ecode); return; } DBG(client, "MTU exchange complete, with MTU: %u", bt_att_get_mtu(client->att)); discover: read_server_feat(op); if (read_db_hash(op)) { op->success = false; return; } discover_all(op); } struct service_changed_op { struct bt_gatt_client *client; uint16_t start_handle; uint16_t end_handle; }; static void process_service_changed(struct bt_gatt_client *client, uint16_t start_handle, uint16_t end_handle); static void service_changed_cb(uint16_t value_handle, const uint8_t *value, uint16_t length, void *user_data); static void complete_notify_request(void *data) { struct notify_data *notify_data = data; notify_data->att_id = 0; if (notify_data->callback) notify_data->callback(notify_data->att_ecode, notify_data->user_data); } static bool notify_data_write_ccc(struct notify_data *notify_data, bool enable, bt_gatt_client_callback_t callback) { unsigned int att_id; uint16_t value = 0x0000; uint16_t properties = notify_data->chrc->properties; assert(notify_data->chrc->ccc_handle); if (enable) { /* Try to enable notifications or indications based on * whatever the characteristic supports. */ if (properties & BT_GATT_CHRC_PROP_NOTIFY) value = cpu_to_le16(0x0001); else if (properties & BT_GATT_CHRC_PROP_INDICATE) value = cpu_to_le16(0x0002); else return false; } att_id = bt_gatt_client_write_value(notify_data->client, notify_data->chrc->ccc_handle, (void *)&value, sizeof(value), callback, notify_data_ref(notify_data), notify_data_unref); notify_data->chrc->ccc_write_id = notify_data->att_id = att_id; return !!att_id; } static uint8_t process_error(const void *pdu, uint16_t length) { const struct bt_att_pdu_error_rsp *error_pdu; if (!pdu || length != sizeof(struct bt_att_pdu_error_rsp)) return BT_ATT_ERROR_UNLIKELY; error_pdu = pdu; return error_pdu->ecode; } static bool notify_set_ecode(const void *data, const void *match_data) { struct notify_data *notify_data = (void *)data; uint8_t ecode = PTR_TO_UINT(match_data); notify_data->att_ecode = ecode; return true; } static void enable_ccc_callback(bool success, uint8_t att_ecode, void *user_data) { struct notify_data *notify_data = user_data; assert(notify_data->chrc->ccc_write_id); notify_data->chrc->ccc_write_id = 0; bt_gatt_client_ref_safe(notify_data->client); notify_data->att_ecode = att_ecode; /* Notify for all remaining requests. */ complete_notify_request(notify_data); queue_remove_all(notify_data->chrc->reg_notify_queue, notify_set_ecode, UINT_TO_PTR(notify_data->att_ecode), complete_notify_request); bt_gatt_client_unref(notify_data->client); } static bool match_notify_chrc_value_handle(const void *a, const void *b) { const struct notify_chrc *chrc = a; uint16_t value_handle = PTR_TO_UINT(b); return chrc->value_handle == value_handle; } static unsigned int register_notify(struct bt_gatt_client *client, uint16_t handle, bt_gatt_client_register_callback_t callback, bt_gatt_client_notify_callback_t notify, void *user_data, bt_gatt_client_destroy_func_t destroy) { struct notify_data *notify_data; struct notify_chrc *chrc = NULL; /* Check if a characteristic ref count has been started already */ chrc = queue_find(client->notify_chrcs, match_notify_chrc_value_handle, UINT_TO_PTR(handle)); if (!chrc) { /* * Create an entry if the characteristic is known and has a CCC * descriptor. */ chrc = notify_chrc_create(client, handle); if (!chrc) { DBG(client, "Unable to locate characteristic at 0x%04x", handle); return 0; } } /* Fail if we've hit the maximum allowed notify sessions */ if (chrc->notify_count == INT_MAX) return 0; notify_data = new0(struct notify_data, 1); notify_data->client = client; notify_data->ref_count = 1; notify_data->chrc = chrc; notify_data->callback = callback; notify_data->notify = notify; notify_data->user_data = user_data; notify_data->destroy = destroy; /* Add the handler to the bt_gatt_client's general list */ queue_push_tail(client->notify_list, notify_data); /* Assign an ID to the handler. */ if (client->next_reg_id < 1) client->next_reg_id = 1; notify_data->id = client->next_reg_id++; /* Increment the per-characteristic ref count of notify handlers */ __sync_fetch_and_add(¬ify_data->chrc->notify_count, 1); /* * If a write to the CCC descriptor is in progress, then queue this * request. */ if (chrc->ccc_write_id) { queue_push_tail(chrc->reg_notify_queue, notify_data); return notify_data->id; } /* * If the ref count > 1, ccc handle cannot be found or registration * callback is not set consider notifications are already enabled. */ if (chrc->notify_count > 1 || !chrc->ccc_handle || !callback) { complete_notify_request(notify_data); return notify_data->id; } /* Write to the CCC descriptor */ if (!notify_data_write_ccc(notify_data, true, enable_ccc_callback)) { queue_remove(client->notify_list, notify_data); free(notify_data); return 0; } return notify_data->id; } static void service_changed_register_cb(uint16_t att_ecode, void *user_data) { bool success; struct bt_gatt_client *client = user_data; if (att_ecode) { DBG(client, "Failed to register handler for \"Service Changed\""); success = false; client->svc_chngd_ind_id = 0; goto done; } client->svc_chngd_registered = true; success = true; DBG(client, "Registered handler for \"Service Changed\": %u", client->svc_chngd_ind_id); done: notify_client_ready(client, success, att_ecode); } static bool register_service_changed(struct bt_gatt_client *client) { bt_uuid_t uuid; struct gatt_db_attribute *attr = NULL; bt_uuid16_create(&uuid, SVC_CHNGD_UUID); if (client->svc_chngd_ind_id) return true; gatt_db_find_by_type(client->db, 0x0001, 0xffff, &uuid, get_first_attribute, &attr); if (!attr) return true; /* * Register an indication handler for the "Service Changed" * characteristic and report ready only if the handler is registered * successfully. */ client->svc_chngd_ind_id = register_notify(client, gatt_db_attribute_get_handle(attr), service_changed_register_cb, service_changed_cb, client, NULL); return client->svc_chngd_ind_id ? true : false; } static void service_changed_complete(struct discovery_op *op, bool success, uint8_t att_ecode) { struct bt_gatt_client *client = op->client; struct service_changed_op *next_sc_op; uint16_t start_handle = op->start; uint16_t end_handle = op->end; const struct queue_entry *entry; client->in_svc_chngd = false; if (!success && att_ecode != BT_ATT_ERROR_ATTRIBUTE_NOT_FOUND) { DBG(client, "Failed to discover services within changed range - " "error: 0x%02x", att_ecode); gatt_db_clear_range(client->db, start_handle, end_handle); } /* Notify the upper layer of changed services */ if (client->svc_chngd_callback) client->svc_chngd_callback(start_handle, end_handle, client->svc_chngd_data); /* Notify clones */ for (entry = queue_get_entries(client->clones); entry; entry = entry->next) { struct bt_gatt_client *clone = entry->data; if (clone->svc_chngd_callback) clone->svc_chngd_callback(start_handle, end_handle, clone->svc_chngd_data); } /* Process any queued events */ next_sc_op = queue_pop_head(client->svc_chngd_queue); if (next_sc_op) { process_service_changed(client, next_sc_op->start_handle, next_sc_op->end_handle); free(next_sc_op); return; } if (register_service_changed(client)) return; DBG(client, "Failed to re-register handler for \"Service Changed\""); } static void service_changed_failure(struct discovery_op *op) { struct bt_gatt_client *client = op->client; gatt_db_clear_range(client->db, op->start, op->end); } static void process_service_changed(struct bt_gatt_client *client, uint16_t start_handle, uint16_t end_handle) { struct discovery_op *op; op = discovery_op_create(client, start_handle, end_handle, service_changed_complete, service_changed_failure); if (!op) goto fail; client->discovery_req = bt_gatt_discover_primary_services(client->att, NULL, start_handle, end_handle, discover_primary_cb, discovery_op_ref(op), discovery_op_unref); if (client->discovery_req) { client->in_svc_chngd = true; return; } discovery_op_free(op); fail: DBG(client, "Failed to initiate service discovery after Service Changed"); } static void service_changed_cb(uint16_t value_handle, const uint8_t *value, uint16_t length, void *user_data) { struct bt_gatt_client *client = user_data; struct service_changed_op *op; uint16_t start, end; if (length != 4) return; start = get_le16(value); end = get_le16(value + 2); if (start > end) { DBG(client, "Service Changed received with invalid handles"); return; } DBG(client, "Service Changed received - start: 0x%04x end: 0x%04x", start, end); if (!client->in_svc_chngd) { process_service_changed(client, start, end); return; } op = new0(struct service_changed_op, 1); op->start_handle = start; op->end_handle = end; queue_push_tail(client->svc_chngd_queue, op); } static void server_feat_write_value(struct gatt_db_attribute *attrib, int err, void *user_data) { struct bt_gatt_client *client = user_data; DBG(client, "Server Features Value set status: %d", err); } static void write_server_features(struct bt_gatt_client *client, uint8_t feat) { bt_uuid_t uuid; struct gatt_db_attribute *attr = NULL; bt_uuid16_create(&uuid, GATT_CHARAC_SERVER_FEAT); gatt_db_find_by_type(client->db, 0x0001, 0xffff, &uuid, get_first_attribute, &attr); if (!attr) return; /* Store value in the DB */ if (!gatt_db_attribute_write(attr, 0, &feat, sizeof(feat), 0, NULL, server_feat_write_value, client)) DBG(client, "Unable to store Server Features"); } static void write_client_features(struct bt_gatt_client *client) { bt_uuid_t uuid; struct gatt_db_attribute *attr = NULL; uint16_t handle; const uint8_t *feat = NULL; bt_uuid16_create(&uuid, GATT_CHARAC_CLI_FEAT); gatt_db_find_by_type(client->db, 0x0001, 0xffff, &uuid, get_first_attribute, &attr); if (!attr) return; handle = gatt_db_attribute_get_handle(attr); client->features |= BT_GATT_CHRC_CLI_FEAT_ROBUST_CACHING; bt_uuid16_create(&uuid, GATT_CHARAC_SERVER_FEAT); attr = NULL; gatt_db_find_by_type(client->db, 0x0001, 0xffff, &uuid, get_first_attribute, &attr); if (attr) { /* Read stored value in the db */ gatt_db_attribute_read(attr, 0, BT_ATT_OP_READ_REQ, NULL, server_feat_read_value, &feat); if (!(feat && feat[0] & BT_GATT_CHRC_SERVER_FEAT_EATT) || !(client->features & BT_GATT_CHRC_CLI_FEAT_EATT)) client->features &= ~BT_GATT_CHRC_CLI_FEAT_EATT; } client->features |= BT_GATT_CHRC_CLI_FEAT_NFY_MULTI; DBG(client, "Writing Client Features 0x%02x", client->features); bt_gatt_client_write_value(client, handle, &client->features, sizeof(client->features), NULL, NULL, NULL); } static void init_complete(struct discovery_op *op, bool success, uint8_t att_ecode) { struct bt_gatt_client *client = op->client; client->in_init = false; if (!success) goto fail; if (op->server_feat) write_server_features(client, op->server_feat); write_client_features(client); if (register_service_changed(client)) goto done; DBG(client, "Failed to register handler for \"Service Changed\""); success = false; fail: DBG(client, "Failed to initialize gatt-client"); op->success = false; done: notify_client_ready(client, success, att_ecode); } static bool gatt_client_init(struct bt_gatt_client *client, uint16_t mtu) { struct discovery_op *op; if (client->in_init || client->ready) return false; op = discovery_op_create(client, 0x0001, 0xffff, init_complete, NULL); if (!op) return false; /* * BLUETOOTH SPECIFICATION Version 4.2 [Vol 3, Part G] page 546: * * 4.3.1 Exchange MTU * * This sub-procedure shall not be used on a BR/EDR physical link since * the MTU size is negotiated using L2CAP channel configuration * procedures. */ if (bt_att_get_link_type(client->att) == BT_ATT_BREDR) goto discover; /* Check if MTU needs to be send */ mtu = MAX(BT_ATT_DEFAULT_LE_MTU, mtu); if (mtu == BT_ATT_DEFAULT_LE_MTU) goto discover; /* Configure the MTU */ client->mtu_req_id = bt_gatt_exchange_mtu(client->att, mtu, exchange_mtu_cb, discovery_op_ref(op), discovery_op_unref); if (!client->mtu_req_id) { discovery_op_free(op); return false; } client->in_init = true; return true; discover: read_server_feat(op); if (read_db_hash(op)) { op->success = false; goto done; } client->discovery_req = bt_gatt_discover_all_primary_services( client->att, NULL, discover_primary_cb, discovery_op_ref(op), discovery_op_unref); if (!client->discovery_req) { discovery_op_free(op); return false; } done: client->in_init = true; return true; } struct value_data { uint16_t handle; uint16_t len; const void *data; }; static void disable_ccc_callback(bool success, uint8_t att_ecode, void *user_data) { struct notify_data *notify_data = user_data; struct notify_data *next_data; assert(notify_data->chrc->ccc_write_id); notify_data->chrc->ccc_write_id = 0; /* This is a best effort procedure, so ignore errors and process any * queued requests. */ while (1) { next_data = queue_pop_head(notify_data->chrc->reg_notify_queue); if (!next_data || notify_data_write_ccc(next_data, true, enable_ccc_callback)) return; } } static void complete_unregister_notify(void *data) { struct notify_data *notify_data = data; /* * If a procedure to enable the CCC is still pending, then cancel it and * return. */ if (notify_data->att_id) { bt_att_cancel(notify_data->client->att, notify_data->att_id); notify_data->att_id = 0; goto done; } if (__sync_sub_and_fetch(¬ify_data->chrc->notify_count, 1) || !notify_data->chrc->ccc_handle) goto done; notify_data_write_ccc(notify_data, false, disable_ccc_callback); done: notify_data_unref(notify_data); } static void notify_handler(void *data, void *user_data) { struct notify_data *notify_data = data; struct value_data *value_data = user_data; if (notify_data->chrc->value_handle != value_data->handle) return; /* * Even if the notify data has a pending ATT request to write to the * CCC, there is really no reason not to notify the handlers. */ if (notify_data->notify) notify_data->notify(value_data->handle, value_data->data, value_data->len, notify_data->user_data); } static void notify_cb(struct bt_att_chan *chan, uint16_t mtu, uint8_t opcode, const void *pdu, uint16_t length, void *user_data) { struct bt_gatt_client *client = user_data; struct value_data data; bt_gatt_client_ref(client); if (queue_isempty(client->notify_list)) goto done; memset(&data, 0, sizeof(data)); if (opcode == BT_ATT_OP_HANDLE_NFY_MULT) { while (length >= 4) { data.handle = get_le16(pdu); length -= 2; pdu += 2; data.len = get_le16(pdu); length -= 2; pdu += 2; if (data.len > length) data.len = length; data.data = pdu; queue_foreach(client->notify_list, notify_handler, &data); length -= data.len; pdu += data.len; } } else { data.handle = get_le16(pdu); length -= 2; pdu += 2; data.len = length; data.data = pdu; queue_foreach(client->notify_list, notify_handler, &data); } done: if (opcode == BT_ATT_OP_HANDLE_IND && !client->parent) bt_att_chan_send(chan, BT_ATT_OP_HANDLE_CONF, NULL, 0, NULL, NULL, NULL); bt_gatt_client_unref(client); } static void bt_gatt_client_free(struct bt_gatt_client *client) { bt_gatt_client_cancel_all(client); queue_destroy(client->notify_chrcs, notify_chrc_free); queue_destroy(client->notify_list, notify_data_cleanup); queue_destroy(client->ready_cbs, ready_destroy); queue_destroy(client->idle_cbs, idle_destroy); if (client->debug_destroy) client->debug_destroy(client->debug_data); if (client->att) { bt_att_unregister_disconnect(client->att, client->disc_id); bt_att_unregister(client->att, client->nfy_id); bt_att_unregister(client->att, client->nfy_mult_id); bt_att_unregister(client->att, client->ind_id); bt_att_unref(client->att); } gatt_db_unref(client->db); queue_destroy(client->clones, NULL); queue_destroy(client->svc_chngd_queue, free); queue_destroy(client->long_write_queue, request_unref); queue_destroy(client->pending_requests, request_unref); if (client->parent) { queue_remove(client->parent->clones, client); bt_gatt_client_unref(client->parent); } free(client); } static void att_disconnect_cb(int err, void *user_data) { struct bt_gatt_client *client = user_data; bool in_init = client->in_init; client->disc_id = 0; bt_att_unref(client->att); client->att = NULL; client->in_init = false; client->ready = false; if (in_init) notify_client_ready(client, false, 0); } static struct bt_gatt_client *gatt_client_new(struct gatt_db *db, struct bt_att *att, uint8_t features) { struct bt_gatt_client *client; client = new0(struct bt_gatt_client, 1); client->disc_id = bt_att_register_disconnect(att, att_disconnect_cb, client, NULL); if (!client->disc_id) goto fail; client->clones = queue_new(); client->ready_cbs = queue_new(); client->idle_cbs = queue_new(); client->long_write_queue = queue_new(); client->svc_chngd_queue = queue_new(); client->notify_list = queue_new(); client->notify_chrcs = queue_new(); client->pending_requests = queue_new(); client->nfy_id = bt_att_register(att, BT_ATT_OP_HANDLE_NFY, notify_cb, client, NULL); if (!client->nfy_id) goto fail; client->nfy_mult_id = bt_att_register(att, BT_ATT_OP_HANDLE_NFY_MULT, notify_cb, client, NULL); if (!client->nfy_mult_id) goto fail; client->ind_id = bt_att_register(att, BT_ATT_OP_HANDLE_IND, notify_cb, client, NULL); if (!client->ind_id) goto fail; client->att = bt_att_ref(att); client->db = gatt_db_ref(db); client->features = features; return client; fail: bt_gatt_client_free(client); return NULL; } struct bt_gatt_client *bt_gatt_client_new(struct gatt_db *db, struct bt_att *att, uint16_t mtu, uint8_t features) { struct bt_gatt_client *client; if (!att || !db) return NULL; client = gatt_client_new(db, att, features); if (!client) return NULL; if (!gatt_client_init(client, mtu)) { bt_gatt_client_free(client); return NULL; } return bt_gatt_client_ref(client); } struct bt_gatt_client *bt_gatt_client_clone(struct bt_gatt_client *client) { struct bt_gatt_client *clone; if (!client) return NULL; clone = gatt_client_new(client->db, client->att, client->features); if (!clone) return NULL; queue_push_tail(client->clones, clone); /* * Reference the parent since the clones depend on it to propagate * service changed and ready callbacks. */ clone->parent = bt_gatt_client_ref(client); clone->ready = client->ready; return bt_gatt_client_ref(clone); } struct bt_gatt_client *bt_gatt_client_ref(struct bt_gatt_client *client) { if (!client) return NULL; __sync_fetch_and_add(&client->ref_count, 1); return client; } void bt_gatt_client_unref(struct bt_gatt_client *client) { if (!client) return; if (__sync_sub_and_fetch(&client->ref_count, 1)) return; bt_gatt_client_free(client); } bool bt_gatt_client_is_ready(struct bt_gatt_client *client) { return (client && client->ready); } unsigned int bt_gatt_client_ready_register(struct bt_gatt_client *client, bt_gatt_client_callback_t callback, void *user_data, bt_gatt_client_destroy_func_t destroy) { struct ready_cb *ready; if (!client) return 0; ready = new0(struct ready_cb, 1); ready->callback = callback; ready->destroy = destroy; ready->data = user_data; queue_push_tail(client->ready_cbs, ready); return PTR_TO_UINT(ready); } bool bt_gatt_client_ready_unregister(struct bt_gatt_client *client, unsigned int id) { struct ready_cb *ready = UINT_TO_PTR(id); if (queue_remove(client->ready_cbs, ready)) { ready_destroy(ready); return true; } return false; } bool bt_gatt_client_set_service_changed(struct bt_gatt_client *client, bt_gatt_client_service_changed_callback_t callback, void *user_data, bt_gatt_client_destroy_func_t destroy) { if (!client) return false; if (client->svc_chngd_destroy) client->svc_chngd_destroy(client->svc_chngd_data); client->svc_chngd_callback = callback; client->svc_chngd_destroy = destroy; client->svc_chngd_data = user_data; return true; } bool bt_gatt_client_set_debug(struct bt_gatt_client *client, bt_gatt_client_debug_func_t callback, void *user_data, bt_gatt_client_destroy_func_t destroy) { if (!client) return false; if (client->debug_destroy) client->debug_destroy(client->debug_data); client->debug_callback = callback; client->debug_destroy = destroy; client->debug_data = user_data; return true; } uint16_t bt_gatt_client_get_mtu(struct bt_gatt_client *client) { if (!client || !client->att) return 0; return bt_att_get_mtu(client->att); } struct bt_att *bt_gatt_client_get_att(struct bt_gatt_client *client) { if (!client) return NULL; return client->att; } struct gatt_db *bt_gatt_client_get_db(struct bt_gatt_client *client) { if (!client || !client->db) return NULL; return client->db; } uint8_t bt_gatt_client_get_features(struct bt_gatt_client *client) { if (!client) return 0; if (client->parent) return client->parent->features; return client->features; } static bool match_req_id(const void *a, const void *b) { const struct request *req = a; unsigned int id = PTR_TO_UINT(b); return req->id == id; } static void cancel_long_write_cb(uint8_t opcode, const void *pdu, uint16_t len, void *user_data) { struct bt_gatt_client *client = user_data; if (queue_isempty(client->long_write_queue)) client->in_long_write = false; } static bool cancel_long_write_req(struct bt_gatt_client *client, struct request *req) { uint8_t pdu = 0x00; /* * att_id == 0 means that request has been queued and no prepare write * has been sent so far.Let's just remove if from the queue. * Otherwise execute write needs to be send. */ if (!req->att_id) return queue_remove(client->long_write_queue, req); return !!bt_att_send(client->att, BT_ATT_OP_EXEC_WRITE_REQ, &pdu, sizeof(pdu), cancel_long_write_cb, client, NULL); } static void cancel_prep_write_cb(uint8_t opcode, const void *pdu, uint16_t len, void *user_data) { struct request *req = user_data; struct bt_gatt_client *client = req->client; client->reliable_write_session_id = 0; } static bool cancel_prep_write_session(struct bt_gatt_client *client, struct request *req) { uint8_t pdu = 0x00; return !!bt_att_send(client->att, BT_ATT_OP_EXEC_WRITE_REQ, &pdu, sizeof(pdu), cancel_prep_write_cb, req, request_unref); } static bool cancel_request(struct request *req) { req->removed = true; if (req->long_write) return cancel_long_write_req(req->client, req); if (req->prep_write) return cancel_prep_write_session(req->client, req); return bt_att_cancel(req->client->att, req->att_id); } bool bt_gatt_client_cancel(struct bt_gatt_client *client, unsigned int id) { struct request *req; if (!client || !id || !client->att) return false; req = queue_remove_if(client->pending_requests, match_req_id, UINT_TO_PTR(id)); if (!req) return false; return cancel_request(req); } static void cancel_pending(void *data) { cancel_request(data); } bool bt_gatt_client_cancel_all(struct bt_gatt_client *client) { if (!client || !client->att) return false; queue_remove_all(client->pending_requests, NULL, NULL, cancel_pending); if (client->discovery_req) { bt_gatt_request_cancel(client->discovery_req); bt_gatt_request_unref(client->discovery_req); client->discovery_req = NULL; } if (client->mtu_req_id) bt_att_cancel(client->att, client->mtu_req_id); return true; } struct read_op { bt_gatt_client_read_callback_t callback; void *user_data; bt_gatt_client_destroy_func_t destroy; }; static void destroy_read_op(void *data) { struct read_op *op = data; if (op->destroy) op->destroy(op->user_data); free(op); } unsigned int bt_gatt_client_read_value(struct bt_gatt_client *client, uint16_t value_handle, bt_gatt_client_read_callback_t callback, void *user_data, bt_gatt_client_destroy_func_t destroy) { return bt_gatt_client_read_long_value(client, value_handle, 0, callback, user_data, destroy); } static void read_multiple_cb(uint8_t opcode, const void *pdu, uint16_t length, void *user_data) { struct request *req = user_data; struct read_op *op = req->data; uint8_t att_ecode; bool success; if ((opcode != BT_ATT_OP_READ_MULT_RSP && opcode != BT_ATT_OP_READ_MULT_VL_RSP) || (!pdu && length)) { success = false; if (opcode == BT_ATT_OP_ERROR_RSP) att_ecode = process_error(pdu, length); else att_ecode = 0; pdu = NULL; length = 0; } else { success = true; att_ecode = 0; } if (!op->callback) return; if (opcode == BT_ATT_OP_READ_MULT_RSP || att_ecode) { op->callback(success, att_ecode, pdu, length, op->user_data); return; } if (length < 2) { op->callback(success, att_ecode, pdu, length, op->user_data); return; } /* Parse response */ while (length >= 2) { uint16_t len; len = get_le16(pdu); length -= 2; pdu += 2; /* The Length Value Tuple List may be truncated within the * first two octets of a tuple due to the size limits of the * current ATT_MTU. */ if (len > length) length = len; op->callback(success, att_ecode, pdu, len, op->user_data); } } unsigned int bt_gatt_client_read_multiple(struct bt_gatt_client *client, uint16_t *handles, uint8_t num_handles, bt_gatt_client_read_callback_t callback, void *user_data, bt_gatt_client_destroy_func_t destroy) { uint8_t *pdu = newa(uint8_t, num_handles * 2); struct request *req; struct read_op *op; uint8_t opcode; int i; if (!client) return 0; if (num_handles < 2) return 0; if (num_handles * 2 > bt_att_get_mtu(client->att) - 1) return 0; op = new0(struct read_op, 1); req = request_create(client); if (!req) { free(op); return 0; } op->callback = callback; op->user_data = user_data; op->destroy = destroy; req->data = op; req->destroy = destroy_read_op; for (i = 0; i < num_handles; i++) put_le16(handles[i], pdu + (2 * i)); opcode = bt_gatt_client_get_features(client) & BT_GATT_CHRC_CLI_FEAT_EATT ? BT_ATT_OP_READ_MULT_VL_REQ : BT_ATT_OP_READ_MULT_REQ; req->att_id = bt_att_send(client->att, opcode, pdu, num_handles * 2, read_multiple_cb, req, request_unref); if (!req->att_id) { op->destroy = NULL; request_unref(req); return 0; } return req->id; } struct read_long_op { struct bt_gatt_client *client; int ref_count; uint16_t value_handle; uint16_t offset; struct iovec iov; bt_gatt_client_read_callback_t callback; void *user_data; bt_gatt_client_destroy_func_t destroy; }; static void destroy_read_long_op(void *data) { struct read_long_op *op = data; if (op->destroy) op->destroy(op->user_data); free(op->iov.iov_base); free(op); } static bool append_chunk(struct read_long_op *op, const uint8_t *data, uint16_t len) { void *buf; /* Truncate if the data would exceed maximum length */ if (op->offset + len > BT_ATT_MAX_VALUE_LEN) len = BT_ATT_MAX_VALUE_LEN - op->offset; buf = realloc(op->iov.iov_base, op->iov.iov_len + len); if (!buf) return false; op->iov.iov_base = buf; memcpy(op->iov.iov_base + op->iov.iov_len, data, len); op->iov.iov_len += len; op->offset += len; return true; } static void read_long_cb(uint8_t opcode, const void *pdu, uint16_t length, void *user_data) { struct request *req = user_data; struct read_long_op *op = req->data; bool success; uint8_t att_ecode = 0; if (opcode == BT_ATT_OP_ERROR_RSP) { success = false; att_ecode = process_error(pdu, length); goto done; } if ((!op->offset && opcode != BT_ATT_OP_READ_RSP) || (op->offset && opcode != BT_ATT_OP_READ_BLOB_RSP) || (!pdu && length)) { success = false; goto done; } if (!length) goto success; if (!append_chunk(op, pdu, length)) { success = false; goto done; } if (op->offset >= BT_ATT_MAX_VALUE_LEN) goto success; if (length >= bt_att_get_mtu(op->client->att) - 1) { uint8_t pdu[4]; int err; put_le16(op->value_handle, pdu); put_le16(op->offset, pdu + 2); err = bt_att_resend(op->client->att, req->att_id, BT_ATT_OP_READ_BLOB_REQ, pdu, sizeof(pdu), read_long_cb, request_ref(req), request_unref); if (!err) return; request_unref(req); success = false; goto done; } success: success = true; done: if (op->callback) op->callback(success, att_ecode, op->iov.iov_base, op->iov.iov_len, op->user_data); } unsigned int bt_gatt_client_read_long_value(struct bt_gatt_client *client, uint16_t value_handle, uint16_t offset, bt_gatt_client_read_callback_t callback, void *user_data, bt_gatt_client_destroy_func_t destroy) { struct request *req; struct read_long_op *op; uint8_t att_op; uint8_t pdu[4]; uint16_t pdu_len; if (!client) return 0; op = new0(struct read_long_op, 1); req = request_create(client); if (!req) { free(op); return 0; } op->client = client; op->value_handle = value_handle; op->offset = offset; op->callback = callback; op->user_data = user_data; op->destroy = destroy; req->data = op; req->destroy = destroy_read_long_op; put_le16(value_handle, pdu); pdu_len = sizeof(value_handle); /* * Core v4.2, part F, section 1.3.4.4.5: * If the attribute value has a fixed length that is less than or equal * to (ATT_MTU - 3) octets in length, then an Error Response can be sent * with the error code «Attribute Not Long». * * To remove need for caller to handle "Attribute Not Long" error when * reading characteristics with short values, use Read Request for * reading first part of characteristics value instead of Read Blob * Request. Both are allowed in this case. */ if (op->offset) { att_op = BT_ATT_OP_READ_BLOB_REQ; pdu_len += sizeof(op->offset); put_le16(op->offset, pdu + 2); } else { att_op = BT_ATT_OP_READ_REQ; } req->att_id = bt_att_send(client->att, att_op, pdu, pdu_len, read_long_cb, req, request_unref); if (!req->att_id) { op->destroy = NULL; request_unref(req); return 0; } return req->id; } unsigned int bt_gatt_client_write_without_response( struct bt_gatt_client *client, uint16_t value_handle, bool signed_write, const uint8_t *value, uint16_t length) { uint8_t *pdu = newa(uint8_t, 2 + length); struct request *req; int security; uint8_t op; if (!client) return 0; req = request_create(client); if (!req) return 0; /* Only use signed write if unencrypted */ if (signed_write) { security = bt_att_get_security(client->att, NULL); op = security > BT_SECURITY_LOW ? BT_ATT_OP_WRITE_CMD : BT_ATT_OP_SIGNED_WRITE_CMD; } else op = BT_ATT_OP_WRITE_CMD; put_le16(value_handle, pdu); memcpy(pdu + 2, value, length); req->att_id = bt_att_send(client->att, op, pdu, 2 + length, NULL, req, request_unref); if (!req->att_id) { request_unref(req); return 0; } return req->id; } struct write_op { struct bt_gatt_client *client; bt_gatt_client_callback_t callback; void *user_data; bt_gatt_destroy_func_t destroy; }; static void destroy_write_op(void *data) { struct write_op *op = data; if (op->destroy) op->destroy(op->user_data); free(op); } static void write_cb(uint8_t opcode, const void *pdu, uint16_t length, void *user_data) { struct request *req = user_data; struct write_op *op = req->data; bool success = true; uint8_t att_ecode = 0; if (opcode == BT_ATT_OP_ERROR_RSP) { success = false; att_ecode = process_error(pdu, length); goto done; } if (opcode != BT_ATT_OP_WRITE_RSP || pdu || length) success = false; done: if (op->callback) op->callback(success, att_ecode, op->user_data); } unsigned int bt_gatt_client_write_value(struct bt_gatt_client *client, uint16_t value_handle, const uint8_t *value, uint16_t length, bt_gatt_client_callback_t callback, void *user_data, bt_gatt_client_destroy_func_t destroy) { struct request *req; struct write_op *op; uint8_t *pdu = newa(uint8_t, 2 + length); if (!client) return 0; op = new0(struct write_op, 1); req = request_create(client); if (!req) { free(op); return 0; } op->callback = callback; op->user_data = user_data; op->destroy = destroy; req->data = op; req->destroy = destroy_write_op; put_le16(value_handle, pdu); memcpy(pdu + 2, value, length); req->att_id = bt_att_send(client->att, BT_ATT_OP_WRITE_REQ, pdu, 2 + length, write_cb, req, request_unref); if (!req->att_id) { op->destroy = NULL; request_unref(req); return 0; } return req->id; } struct long_write_op { struct bt_gatt_client *client; bool reliable; bool success; uint8_t att_ecode; bool reliable_error; uint16_t value_handle; uint8_t *value; uint16_t length; uint16_t offset; uint16_t index; uint16_t cur_length; bt_gatt_client_write_long_callback_t callback; void *user_data; bt_gatt_client_destroy_func_t destroy; }; static void long_write_op_free(void *data) { struct long_write_op *op = data; if (op->destroy) op->destroy(op->user_data); free(op->value); free(op); } static void prepare_write_cb(uint8_t opcode, const void *pdu, uint16_t length, void *user_data); static void complete_write_long_op(struct request *req, bool success, uint8_t att_ecode, bool reliable_error); static void handle_next_prep_write(struct request *req) { struct long_write_op *op = req->data; bool success = true; uint8_t *pdu; int err; pdu = malloc(op->cur_length + 4); if (!pdu) { success = false; goto done; } put_le16(op->value_handle, pdu); put_le16(op->offset + op->index, pdu + 2); memcpy(pdu + 4, op->value + op->index, op->cur_length); err = bt_att_resend(op->client->att, req->att_id, BT_ATT_OP_PREP_WRITE_REQ, pdu, op->cur_length + 4, prepare_write_cb, request_ref(req), request_unref); if (err) { request_unref(req); success = false; } free(pdu); /* If so far successful, then the operation should continue. * Otherwise, there was an error and the procedure should be * completed. */ if (success) return; done: complete_write_long_op(req, success, 0, false); } static void start_next_long_write(struct bt_gatt_client *client) { struct request *req; if (queue_isempty(client->long_write_queue)) { client->in_long_write = false; return; } req = queue_pop_head(client->long_write_queue); if (!req) return; handle_next_prep_write(req); /* * send_next_prep_write adds an extra ref. Unref here to clean up if * necessary, since we also added a ref before pushing to the queue. */ request_unref(req); } static void execute_write_cb(uint8_t opcode, const void *pdu, uint16_t length, void *user_data) { struct request *req = user_data; struct long_write_op *op = req->data; bool success = op->success; uint8_t att_ecode = op->att_ecode; if (opcode == BT_ATT_OP_ERROR_RSP) { success = false; att_ecode = process_error(pdu, length); } else if (opcode != BT_ATT_OP_EXEC_WRITE_RSP || pdu || length) success = false; bt_gatt_client_ref(op->client); if (op->callback) op->callback(success, op->reliable_error, att_ecode, op->user_data); start_next_long_write(op->client); bt_gatt_client_unref(op->client); } static void complete_write_long_op(struct request *req, bool success, uint8_t att_ecode, bool reliable_error) { struct long_write_op *op = req->data; uint8_t pdu; int err; op->success = success; op->att_ecode = att_ecode; op->reliable_error = reliable_error; if (success) pdu = 0x01; /* Write */ else pdu = 0x00; /* Cancel */ err = bt_att_resend(op->client->att, req->att_id, BT_ATT_OP_EXEC_WRITE_REQ, &pdu, sizeof(pdu), execute_write_cb, request_ref(req), request_unref); if (!err) return; request_unref(req); success = false; bt_gatt_client_ref(op->client); if (op->callback) op->callback(success, reliable_error, att_ecode, op->user_data); start_next_long_write(op->client); bt_gatt_client_unref(op->client); } static void prepare_write_cb(uint8_t opcode, const void *pdu, uint16_t length, void *user_data) { struct request *req = user_data; struct long_write_op *op = req->data; bool success = true; bool reliable_error = false; uint8_t att_ecode = 0; uint16_t next_index; if (opcode == BT_ATT_OP_ERROR_RSP) { success = false; att_ecode = process_error(pdu, length); goto done; } if (opcode != BT_ATT_OP_PREP_WRITE_RSP) { success = false; goto done; } if (op->reliable) { if (!pdu || length != (op->cur_length + 4)) { success = false; reliable_error = true; goto done; } if (get_le16(pdu) != op->value_handle || get_le16(pdu + 2) != (op->offset + op->index)) { success = false; reliable_error = true; goto done; } if (memcmp(pdu + 4, op->value + op->index, op->cur_length)) { success = false; reliable_error = true; goto done; } } next_index = op->index + op->cur_length; if (next_index == op->length) { /* All bytes written */ goto done; } /* If the last written length was greater than or equal to what can fit * inside a PDU, then there is more data to send. */ if (op->cur_length >= bt_att_get_mtu(op->client->att) - 5) { op->index = next_index; op->cur_length = MIN(op->length - op->index, bt_att_get_mtu(op->client->att) - 5); handle_next_prep_write(req); return; } done: complete_write_long_op(req, success, att_ecode, reliable_error); } unsigned int bt_gatt_client_write_long_value(struct bt_gatt_client *client, bool reliable, uint16_t value_handle, uint16_t offset, const uint8_t *value, uint16_t length, bt_gatt_client_write_long_callback_t callback, void *user_data, bt_gatt_client_destroy_func_t destroy) { struct request *req; struct long_write_op *op; uint8_t *pdu; if (!client) return 0; if ((size_t)(length + offset) > UINT16_MAX) return 0; /* Don't allow writing a 0-length value using this procedure. The * upper-layer should use bt_gatt_write_value for that instead. */ if (!length || !value) return 0; op = new0(struct long_write_op, 1); op->value = malloc(length); if (!op->value) { free(op); return 0; } req = request_create(client); if (!req) { free(op->value); free(op); return 0; } memcpy(op->value, value, length); op->client = client; op->reliable = reliable; op->value_handle = value_handle; op->length = length; op->offset = offset; op->cur_length = MIN(length, bt_att_get_mtu(client->att) - 5); op->callback = callback; op->user_data = user_data; op->destroy = destroy; req->data = op; req->destroy = long_write_op_free; req->long_write = true; if (client->in_long_write || client->reliable_write_session_id > 0) { queue_push_tail(client->long_write_queue, req); return req->id; } pdu = malloc(op->cur_length + 4); if (!pdu) { free(op->value); free(op); return 0; } put_le16(value_handle, pdu); put_le16(offset, pdu + 2); memcpy(pdu + 4, op->value, op->cur_length); req->att_id = bt_att_send(client->att, BT_ATT_OP_PREP_WRITE_REQ, pdu, op->cur_length + 4, prepare_write_cb, req, request_unref); free(pdu); if (!req->att_id) { op->destroy = NULL; request_unref(req); return 0; } client->in_long_write = true; return req->id; } struct prep_write_op { bt_gatt_client_write_long_callback_t callback; void *user_data; bt_gatt_destroy_func_t destroy; uint8_t *pdu; uint16_t pdu_len; }; static void destroy_prep_write_op(void *data) { struct prep_write_op *op = data; if (op->destroy) op->destroy(op->user_data); free(op->pdu); free(op); } static void prep_write_cb(uint8_t opcode, const void *pdu, uint16_t length, void *user_data) { struct request *req = user_data; struct prep_write_op *op = req->data; bool success; uint8_t att_ecode; bool reliable_error; if (opcode == BT_ATT_OP_ERROR_RSP) { success = false; reliable_error = false; att_ecode = process_error(pdu, length); goto done; } if (opcode != BT_ATT_OP_PREP_WRITE_RSP) { success = false; reliable_error = false; att_ecode = 0; goto done; } if (!pdu || length != op->pdu_len || memcmp(pdu, op->pdu, op->pdu_len)) { success = false; reliable_error = true; att_ecode = 0; goto done; } success = true; reliable_error = false; att_ecode = 0; done: if (op->callback) op->callback(success, reliable_error, att_ecode, op->user_data); } static struct request *get_reliable_request(struct bt_gatt_client *client, unsigned int id) { struct request *req; struct prep_write_op *op; op = new0(struct prep_write_op, 1); /* Following prepare writes */ if (id != 0) req = queue_find(client->pending_requests, match_req_id, UINT_TO_PTR(id)); else req = request_create(client); if (!req) { free(op); return NULL; } req->data = op; return req; } unsigned int bt_gatt_client_prepare_write(struct bt_gatt_client *client, unsigned int id, uint16_t value_handle, uint16_t offset, const uint8_t *value, uint16_t length, bt_gatt_client_write_long_callback_t callback, void *user_data, bt_gatt_client_destroy_func_t destroy) { struct request *req; struct prep_write_op *op; uint8_t *pdu = newa(uint8_t, 4 + length); if (!client) return 0; if (client->in_long_write) return 0; /* * Make sure that client who owns reliable session continues with * prepare writes or this is brand new reliable session (id == 0) */ if (id != client->reliable_write_session_id) { DBG(client, "There is other reliable write session ongoing %u", client->reliable_write_session_id); return 0; } req = get_reliable_request(client, id); if (!req) return 0; op = (struct prep_write_op *)req->data; op->callback = callback; op->user_data = user_data; op->destroy = destroy; req->destroy = destroy_prep_write_op; req->prep_write = true; put_le16(value_handle, pdu); put_le16(offset, pdu + 2); memcpy(pdu + 4, value, length); /* * Before sending command we need to remember pdu as we need to validate * it in the response. Store handle, offset and value. Therefore * increase length by 4 (handle + offset) as we need it in couple places * below */ length += 4; op->pdu = malloc(length); if (!op->pdu) { op->destroy = NULL; request_unref(req); return 0; } memcpy(op->pdu, pdu, length); op->pdu_len = length; /* * Now we are ready to send command * Note that request_unref will be done on write execute */ req->att_id = bt_att_send(client->att, BT_ATT_OP_PREP_WRITE_REQ, pdu, length, prep_write_cb, req, NULL); if (!req->att_id) { op->destroy = NULL; request_unref(req); return 0; } /* * Store first request id for prepare write and treat it as a session id * valid until write execute is done */ if (client->reliable_write_session_id == 0) client->reliable_write_session_id = req->id; return client->reliable_write_session_id; } static void exec_write_cb(uint8_t opcode, const void *pdu, uint16_t length, void *user_data) { struct request *req = user_data; struct write_op *op = req->data; bool success; uint8_t att_ecode; if (opcode == BT_ATT_OP_ERROR_RSP) { success = false; att_ecode = process_error(pdu, length); goto done; } if (opcode != BT_ATT_OP_EXEC_WRITE_RSP || pdu || length) { success = false; att_ecode = 0; goto done; } success = true; att_ecode = 0; done: if (op->callback) op->callback(success, att_ecode, op->user_data); op->client->reliable_write_session_id = 0; start_next_long_write(op->client); } unsigned int bt_gatt_client_write_execute(struct bt_gatt_client *client, unsigned int id, bt_gatt_client_callback_t callback, void *user_data, bt_gatt_client_destroy_func_t destroy) { struct request *req; struct write_op *op; uint8_t pdu; if (!client) return 0; if (client->in_long_write) return 0; if (client->reliable_write_session_id != id) return 0; op = new0(struct write_op, 1); req = queue_find(client->pending_requests, match_req_id, UINT_TO_PTR(id)); if (!req) { free(op); return 0; } op->client = client; op->callback = callback; op->user_data = user_data; op->destroy = destroy; pdu = 0x01; req->data = op; req->destroy = destroy_write_op; req->att_id = bt_att_send(client->att, BT_ATT_OP_EXEC_WRITE_REQ, &pdu, sizeof(pdu), exec_write_cb, req, request_unref); if (!req->att_id) { op->destroy = NULL; request_unref(req); return 0; } return id; } unsigned int bt_gatt_client_register_notify(struct bt_gatt_client *client, uint16_t chrc_value_handle, bt_gatt_client_register_callback_t callback, bt_gatt_client_notify_callback_t notify, void *user_data, bt_gatt_client_destroy_func_t destroy) { if (!client || !client->db || !chrc_value_handle || (!callback && !notify)) return 0; if (client->in_svc_chngd) return 0; return register_notify(client, chrc_value_handle, callback, notify, user_data, destroy); } bool bt_gatt_client_unregister_notify(struct bt_gatt_client *client, unsigned int id) { struct notify_data *notify_data; if (!client || !id) return false; notify_data = queue_remove_if(client->notify_list, match_notify_data_id, UINT_TO_PTR(id)); if (!notify_data) return false; /* Remove data if it has been queued */ queue_remove(notify_data->chrc->reg_notify_queue, notify_data); /* Reset callbacks */ notify_data->callback = NULL; notify_data->notify = NULL; complete_unregister_notify(notify_data); return true; } bool bt_gatt_client_set_security(struct bt_gatt_client *client, int level) { if (!client) return false; return bt_att_set_security(client->att, level); } int bt_gatt_client_get_security(struct bt_gatt_client *client) { if (!client) return -1; return bt_att_get_security(client->att, NULL); } unsigned int bt_gatt_client_idle_register(struct bt_gatt_client *client, bt_gatt_client_idle_callback_t callback, void *user_data, bt_gatt_client_destroy_func_t destroy) { struct idle_cb *idle; if (!client) return 0; idle = new0(struct idle_cb, 1); idle->callback = callback; idle->destroy = destroy; idle->data = user_data; queue_push_tail(client->idle_cbs, idle); return PTR_TO_UINT(idle); } bool bt_gatt_client_idle_unregister(struct bt_gatt_client *client, unsigned int id) { struct idle_cb *idle = UINT_TO_PTR(id); if (!client || !id) return false; if (queue_remove(client->idle_cbs, idle)) { idle_destroy(idle); return true; } return false; } bool bt_gatt_client_set_retry(struct bt_gatt_client *client, unsigned int id, bool retry) { struct request *req; if (!client || !id) return false; req = queue_find(client->pending_requests, match_req_id, UINT_TO_PTR(id)); if (!req) return false; bt_att_set_retry(client->att, req->att_id, retry); return true; } |