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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
*
* BlueZ - Bluetooth protocol stack for Linux
*
* Copyright (C) 2014 Intel Corporation.
* Copyright (C) 2012 Marcel Holtmann <marcel@holtmann.org>
* Copyright (C) 2012 Nordic Semiconductor Inc.
* Copyright (C) 2012 Instituto Nokia de Tecnologia - INdT
*
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <stdbool.h>
#include <errno.h>
#include <unistd.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <inttypes.h>
#include <glib.h>
#include "lib/bluetooth.h"
#include "lib/sdp.h"
#include "lib/uuid.h"
#include "src/shared/util.h"
#include "src/shared/uhid.h"
#include "src/shared/queue.h"
#include "src/shared/att.h"
#include "src/shared/gatt-db.h"
#include "src/log.h"
#include "attrib/att.h"
#include "attrib/gattrib.h"
#include "attrib/gatt.h"
#include "btio/btio.h"
#include "profiles/scanparam/scpp.h"
#include "profiles/deviceinfo/dis.h"
#include "profiles/battery/bas.h"
#include "profiles/input/hog-lib.h"
#define HOG_UUID16 0x1812
#define HOG_INFO_UUID 0x2A4A
#define HOG_REPORT_MAP_UUID 0x2A4B
#define HOG_REPORT_UUID 0x2A4D
#define HOG_PROTO_MODE_UUID 0x2A4E
#define HOG_CONTROL_POINT_UUID 0x2A4C
#define HOG_REPORT_TYPE_INPUT 1
#define HOG_REPORT_TYPE_OUTPUT 2
#define HOG_REPORT_TYPE_FEATURE 3
#define HOG_PROTO_MODE_BOOT 0
#define HOG_PROTO_MODE_REPORT 1
#define HID_INFO_SIZE 4
#define ATT_NOTIFICATION_HEADER_SIZE 3
struct bt_hog {
int ref_count;
char *name;
uint16_t vendor;
uint16_t product;
uint16_t version;
uint8_t type;
struct gatt_db_attribute *attr;
struct gatt_primary *primary;
GAttrib *attrib;
GSList *reports;
struct bt_uhid *uhid;
int uhid_fd;
uint64_t uhid_flags;
uint16_t bcdhid;
uint8_t bcountrycode;
uint16_t proto_mode_handle;
uint16_t ctrlpt_handle;
uint8_t flags;
unsigned int getrep_att;
uint16_t getrep_id;
unsigned int setrep_att;
uint16_t setrep_id;
unsigned int report_map_id;
struct bt_scpp *scpp;
struct bt_dis *dis;
struct queue *bas;
GSList *instances;
struct queue *gatt_op;
struct gatt_db *gatt_db;
struct gatt_db_attribute *report_map_attr;
};
struct report {
struct bt_hog *hog;
bool numbered;
uint8_t id;
uint8_t type;
uint16_t handle;
uint16_t value_handle;
uint8_t properties;
uint16_t ccc_handle;
guint notifyid;
uint16_t len;
uint8_t *value;
};
struct gatt_request {
unsigned int id;
struct bt_hog *hog;
void *user_data;
};
static struct gatt_request *create_request(struct bt_hog *hog,
void *user_data)
{
struct gatt_request *req;
req = new0(struct gatt_request, 1);
if (!req)
return NULL;
req->user_data = user_data;
req->hog = bt_hog_ref(hog);
return req;
}
static bool set_and_store_gatt_req(struct bt_hog *hog,
struct gatt_request *req,
unsigned int id)
{
req->id = id;
return queue_push_head(hog->gatt_op, req);
}
static void destroy_gatt_req(void *data)
{
struct gatt_request *req = data;
bt_hog_unref(req->hog);
free(req);
}
static void read_report_map(struct bt_hog *hog);
static void remove_gatt_req(struct gatt_request *req, uint8_t status)
{
struct bt_hog *hog = req->hog;
queue_remove(hog->gatt_op, req);
if (!status && queue_isempty(hog->gatt_op)) {
/* Report Map must be read last since that can result
* in uhid being created and the driver may start to
* use UHID_SET_REPORT which requires the report->id to
* be known what attribute to send to.
*/
read_report_map(hog);
}
destroy_gatt_req(req);
}
static void write_char(struct bt_hog *hog, GAttrib *attrib, uint16_t handle,
const uint8_t *value, size_t vlen,
GAttribResultFunc func,
gpointer user_data)
{
struct gatt_request *req;
unsigned int id;
req = create_request(hog, user_data);
if (!req)
return;
id = gatt_write_char(attrib, handle, value, vlen, func, req);
if (!id) {
error("hog: Could not write char");
return;
}
if (!set_and_store_gatt_req(hog, req, id)) {
error("hog: Failed to queue write char req");
g_attrib_cancel(attrib, id);
free(req);
}
}
static unsigned int read_char(struct bt_hog *hog, GAttrib *attrib,
uint16_t handle, GAttribResultFunc func,
gpointer user_data)
{
struct gatt_request *req;
unsigned int id;
req = create_request(hog, user_data);
if (!req)
return 0;
id = gatt_read_char(attrib, handle, func, req);
if (!id) {
error("hog: Could not read char");
return 0;
}
if (!set_and_store_gatt_req(hog, req, id)) {
error("hog: Failed to queue read char req");
g_attrib_cancel(attrib, id);
free(req);
return 0;
}
return id;
}
static void discover_desc(struct bt_hog *hog, GAttrib *attrib,
uint16_t start, uint16_t end, gatt_cb_t func,
gpointer user_data)
{
struct gatt_request *req;
unsigned int id;
req = create_request(hog, user_data);
if (!req)
return;
id = gatt_discover_desc(attrib, start, end, NULL, func, req);
if (!id) {
error("hog: Could not discover descriptors");
return;
}
if (!set_and_store_gatt_req(hog, req, id)) {
error("hog: Failed to queue discover descriptors req");
g_attrib_cancel(attrib, id);
free(req);
}
}
static void discover_char(struct bt_hog *hog, GAttrib *attrib,
uint16_t start, uint16_t end,
bt_uuid_t *uuid, gatt_cb_t func,
gpointer user_data)
{
struct gatt_request *req;
unsigned int id;
req = create_request(hog, user_data);
if (!req)
return;
id = gatt_discover_char(attrib, start, end, uuid, func, req);
if (!id) {
error("hog: Could not discover characteristic");
return;
}
if (!set_and_store_gatt_req(hog, req, id)) {
error("hog: Failed to queue discover characteristic req");
g_attrib_cancel(attrib, id);
free(req);
}
}
static void discover_primary(struct bt_hog *hog, GAttrib *attrib,
bt_uuid_t *uuid, gatt_cb_t func,
gpointer user_data)
{
struct gatt_request *req;
unsigned int id;
req = create_request(hog, user_data);
if (!req)
return;
id = gatt_discover_primary(attrib, uuid, func, req);
if (!id) {
error("hog: Could not send discover primary");
return;
}
if (!set_and_store_gatt_req(hog, req, id)) {
error("hog: Failed to queue discover primary req");
g_attrib_cancel(attrib, id);
free(req);
}
}
static void find_included(struct bt_hog *hog, GAttrib *attrib,
uint16_t start, uint16_t end,
gatt_cb_t func, gpointer user_data)
{
struct gatt_request *req;
unsigned int id;
req = create_request(hog, user_data);
if (!req)
return;
id = gatt_find_included(attrib, start, end, func, req);
if (!id) {
error("hog: Could not find included");
return;
}
if (!set_and_store_gatt_req(hog, req, id)) {
error("hog: Failed to queue find included req");
g_attrib_cancel(attrib, id);
free(req);
}
}
static void report_value_cb(const guint8 *pdu, guint16 len, gpointer user_data)
{
struct report *report = user_data;
struct bt_hog *hog = report->hog;
int err;
if (len < ATT_NOTIFICATION_HEADER_SIZE) {
error("Malformed ATT notification");
return;
}
pdu += ATT_NOTIFICATION_HEADER_SIZE;
len -= ATT_NOTIFICATION_HEADER_SIZE;
err = bt_uhid_input(hog->uhid, report->numbered ? report->id : 0, pdu,
len);
if (err < 0)
error("bt_uhid_input: %s (%d)", strerror(-err), -err);
}
static void report_notify_destroy(void *user_data)
{
struct report *report = user_data;
DBG("");
report->notifyid = 0;
}
static void report_ccc_written_cb(guint8 status, const guint8 *pdu,
guint16 plen, gpointer user_data)
{
struct gatt_request *req = user_data;
struct report *report = req->user_data;
struct bt_hog *hog = report->hog;
if (status != 0) {
error("Write report characteristic descriptor failed: %s",
att_ecode2str(status));
goto remove;
}
if (report->notifyid)
goto remove;
report->notifyid = g_attrib_register(hog->attrib,
ATT_OP_HANDLE_NOTIFY,
report->value_handle,
report_value_cb, report,
report_notify_destroy);
if (!report->notifyid) {
error("Unable to register report notification: handle 0x%04x",
report->value_handle);
goto remove;
}
DBG("Report characteristic descriptor written: notifications enabled");
remove:
remove_gatt_req(req, status);
}
static void write_ccc(struct bt_hog *hog, GAttrib *attrib, uint16_t handle,
void *user_data)
{
uint8_t value[2];
put_le16(GATT_CLIENT_CHARAC_CFG_NOTIF_BIT, value);
write_char(hog, attrib, handle, value, sizeof(value),
report_ccc_written_cb, user_data);
}
static void ccc_read_cb(guint8 status, const guint8 *pdu, guint16 len,
gpointer user_data)
{
struct gatt_request *req = user_data;
struct report *report = req->user_data;
if (status != 0) {
error("Error reading CCC value: %s", att_ecode2str(status));
goto remove;
}
write_ccc(report->hog, report->hog->attrib, report->ccc_handle, report);
remove:
remove_gatt_req(req, status);
}
static const char *type_to_string(uint8_t type)
{
switch (type) {
case HOG_REPORT_TYPE_INPUT:
return "input";
case HOG_REPORT_TYPE_OUTPUT:
return "output";
case HOG_REPORT_TYPE_FEATURE:
return "feature";
}
return NULL;
}
static void report_reference_cb(guint8 status, const guint8 *pdu,
guint16 plen, gpointer user_data)
{
struct gatt_request *req = user_data;
struct report *report = req->user_data;
if (status != 0) {
error("Read Report Reference descriptor failed: %s",
att_ecode2str(status));
goto remove;
}
if (plen != 3) {
error("Malformed ATT read response");
goto remove;
}
report->id = pdu[1];
report->type = pdu[2];
DBG("Report 0x%04x: id 0x%02x type %s", report->value_handle,
report->id, type_to_string(report->type));
/* Enable notifications only for Input Reports */
if (report->type == HOG_REPORT_TYPE_INPUT)
read_char(report->hog, report->hog->attrib, report->ccc_handle,
ccc_read_cb, report);
remove:
remove_gatt_req(req, status);
}
static void external_report_reference_cb(guint8 status, const guint8 *pdu,
guint16 plen, gpointer user_data);
static void discover_external_cb(uint8_t status, GSList *descs, void *user_data)
{
struct gatt_request *req = user_data;
struct bt_hog *hog = req->user_data;
if (status != 0) {
error("Discover external descriptors failed: %s",
att_ecode2str(status));
goto remove;
}
for ( ; descs; descs = descs->next) {
struct gatt_desc *desc = descs->data;
read_char(hog, hog->attrib, desc->handle,
external_report_reference_cb,
hog);
}
remove:
remove_gatt_req(req, status);
}
static void discover_external(struct bt_hog *hog, GAttrib *attrib,
uint16_t start, uint16_t end,
gpointer user_data)
{
bt_uuid_t uuid;
if (start > end)
return;
bt_uuid16_create(&uuid, GATT_EXTERNAL_REPORT_REFERENCE);
discover_desc(hog, attrib, start, end, discover_external_cb,
user_data);
}
static void discover_report_cb(uint8_t status, GSList *descs, void *user_data)
{
struct gatt_request *req = user_data;
struct report *report = req->user_data;
struct bt_hog *hog = report->hog;
if (status != 0) {
error("Discover report descriptors failed: %s",
att_ecode2str(status));
goto remove;
}
for ( ; descs; descs = descs->next) {
struct gatt_desc *desc = descs->data;
switch (desc->uuid16) {
case GATT_CLIENT_CHARAC_CFG_UUID:
report->ccc_handle = desc->handle;
break;
case GATT_REPORT_REFERENCE:
read_char(hog, hog->attrib, desc->handle,
report_reference_cb, report);
break;
}
}
remove:
remove_gatt_req(req, status);
}
static void discover_report(struct bt_hog *hog, GAttrib *attrib,
uint16_t start, uint16_t end,
gpointer user_data)
{
if (start > end)
return;
discover_desc(hog, attrib, start, end, discover_report_cb, user_data);
}
static void report_read_cb(guint8 status, const guint8 *pdu, guint16 len,
gpointer user_data)
{
struct gatt_request *req = user_data;
struct report *report = req->user_data;
if (status != 0) {
error("Error reading Report value: %s", att_ecode2str(status));
goto remove;
}
if (report->value)
free(report->value);
report->value = util_memdup(pdu, len);
report->len = len;
remove:
remove_gatt_req(req, status);
}
static int report_chrc_cmp(const void *data, const void *user_data)
{
const struct report *report = data;
const struct gatt_char *decl = user_data;
return report->handle - decl->handle;
}
static struct report *report_new(struct bt_hog *hog, struct gatt_char *chr)
{
struct report *report;
GSList *l;
if (!chr)
return NULL;
/* Skip if report already exists */
l = g_slist_find_custom(hog->reports, chr, report_chrc_cmp);
if (l)
return l->data;
report = g_new0(struct report, 1);
report->hog = hog;
report->handle = chr->handle;
report->value_handle = chr->value_handle;
report->properties = chr->properties;
hog->reports = g_slist_append(hog->reports, report);
read_char(hog, hog->attrib, chr->value_handle, report_read_cb, report);
return report;
}
static void external_service_char_cb(uint8_t status, GSList *chars,
void *user_data)
{
struct gatt_request *req = user_data;
struct bt_hog *hog = req->user_data;
struct gatt_primary *primary = hog->primary;
struct report *report;
GSList *l;
if (status != 0) {
const char *str = att_ecode2str(status);
DBG("Discover external service characteristic failed: %s", str);
goto remove;
}
for (l = chars; l; l = g_slist_next(l)) {
struct gatt_char *chr, *next;
uint16_t start, end;
chr = l->data;
next = l->next ? l->next->data : NULL;
if (!chr)
continue;
DBG("0x%04x UUID: %s properties: %02x",
chr->handle, chr->uuid, chr->properties);
report = report_new(hog, chr);
start = chr->value_handle + 1;
end = (next ? next->handle - 1 : primary->range.end);
discover_report(hog, hog->attrib, start, end, report);
}
remove:
remove_gatt_req(req, status);
}
static void external_report_reference_cb(guint8 status, const guint8 *pdu,
guint16 plen, gpointer user_data)
{
struct gatt_request *req = user_data;
struct bt_hog *hog = req->user_data;
uint16_t uuid16;
bt_uuid_t uuid;
if (status != 0) {
error("Read External Report Reference descriptor failed: %s",
att_ecode2str(status));
goto remove;
}
if (plen != 3) {
error("Malformed ATT read response");
goto remove;
}
uuid16 = get_le16(&pdu[1]);
DBG("External report reference read, external report characteristic "
"UUID: 0x%04x", uuid16);
/* Do not discover if is not a Report */
if (uuid16 != HOG_REPORT_UUID)
goto remove;
bt_uuid16_create(&uuid, uuid16);
discover_char(hog, hog->attrib, 0x0001, 0xffff, &uuid,
external_service_char_cb, hog);
remove:
remove_gatt_req(req, status);
}
static int report_cmp(gconstpointer a, gconstpointer b)
{
const struct report *ra = a, *rb = b;
/* sort by type first.. */
if (ra->type != rb->type)
return ra->type - rb->type;
/* skip id check in case of reports not being numbered */
if (!ra->numbered && !rb->numbered)
return 0;
/* ..then by id */
return ra->id - rb->id;
}
static struct report *find_report(struct bt_hog *hog, uint8_t type, uint8_t id)
{
struct report cmp;
GSList *l;
memset(&cmp, 0, sizeof(cmp));
cmp.type = type;
cmp.id = id;
switch (type) {
case HOG_REPORT_TYPE_FEATURE:
if (hog->flags & UHID_DEV_NUMBERED_FEATURE_REPORTS)
cmp.numbered = true;
break;
case HOG_REPORT_TYPE_OUTPUT:
if (hog->flags & UHID_DEV_NUMBERED_OUTPUT_REPORTS)
cmp.numbered = true;
break;
case HOG_REPORT_TYPE_INPUT:
if (hog->flags & UHID_DEV_NUMBERED_INPUT_REPORTS)
cmp.numbered = true;
break;
}
l = g_slist_find_custom(hog->reports, &cmp, report_cmp);
return l ? l->data : NULL;
}
static struct report *find_report_by_rtype(struct bt_hog *hog, uint8_t rtype,
uint8_t id)
{
uint8_t type;
switch (rtype) {
case UHID_FEATURE_REPORT:
type = HOG_REPORT_TYPE_FEATURE;
break;
case UHID_OUTPUT_REPORT:
type = HOG_REPORT_TYPE_OUTPUT;
break;
case UHID_INPUT_REPORT:
type = HOG_REPORT_TYPE_INPUT;
break;
default:
return NULL;
}
return find_report(hog, type, id);
}
static void output_written_cb(guint8 status, const guint8 *pdu,
guint16 plen, gpointer user_data)
{
struct gatt_request *req = user_data;
if (status != 0)
error("Write output report failed: %s", att_ecode2str(status));
remove_gatt_req(req, status);
}
static void forward_report(struct uhid_event *ev, void *user_data)
{
struct bt_hog *hog = user_data;
struct report *report;
void *data;
int size;
report = find_report_by_rtype(hog, ev->u.output.rtype,
ev->u.output.data[0]);
if (!report)
return;
data = ev->u.output.data;
size = ev->u.output.size;
if (report->numbered && size > 0) {
data++;
--size;
}
DBG("Sending report type %d ID %d to handle 0x%X", report->type,
report->id, report->value_handle);
if (hog->attrib == NULL)
return;
if (report->properties & GATT_CHR_PROP_WRITE)
write_char(hog, hog->attrib, report->value_handle,
data, size, output_written_cb, hog);
else if (report->properties & GATT_CHR_PROP_WRITE_WITHOUT_RESP)
gatt_write_cmd(hog->attrib, report->value_handle,
data, size, NULL, NULL);
}
static void set_numbered(void *data, void *user_data)
{
struct report *report = data;
struct bt_hog *hog = user_data;
switch (report->type) {
case HOG_REPORT_TYPE_INPUT:
if (hog->uhid_flags & UHID_DEV_NUMBERED_INPUT_REPORTS)
report->numbered = true;
break;
case HOG_REPORT_TYPE_OUTPUT:
if (hog->uhid_flags & UHID_DEV_NUMBERED_OUTPUT_REPORTS)
report->numbered = true;
break;
case HOG_REPORT_TYPE_FEATURE:
if (hog->uhid_flags & UHID_DEV_NUMBERED_FEATURE_REPORTS)
report->numbered = true;
break;
}
}
static void start_flags(struct uhid_event *ev, void *user_data)
{
struct bt_hog *hog = user_data;
hog->uhid_flags = ev->u.start.dev_flags;
DBG("uHID device flags: 0x%16" PRIx64, hog->uhid_flags);
if (hog->uhid_flags)
g_slist_foreach(hog->reports, set_numbered, hog);
}
static void set_report_cb(guint8 status, const guint8 *pdu,
guint16 plen, gpointer user_data)
{
struct bt_hog *hog = user_data;
int err;
hog->setrep_att = 0;
if (status != 0)
error("Error setting Report value: %s", att_ecode2str(status));
err = bt_uhid_set_report_reply(hog->uhid, hog->setrep_id, status);
if (err < 0)
error("bt_uhid_set_report_reply: %s", strerror(-err));
}
static void uhid_destroy(struct bt_hog *hog, bool force)
{
int err;
if (!hog->uhid)
return;
bt_uhid_unregister_all(hog->uhid);
err = bt_uhid_destroy(hog->uhid, force);
if (err < 0) {
error("bt_uhid_destroy: %s", strerror(-err));
return;
}
}
static void set_report(struct uhid_event *ev, void *user_data)
{
struct bt_hog *hog = user_data;
struct report *report;
void *data;
int size;
int err;
/* Destroy input device if there is an attempt to communicate with it
* while disconnected.
*/
if (hog->attrib == NULL) {
uhid_destroy(hog, true);
return;
}
/* uhid never sends reqs in parallel; if there's a req, it timed out */
if (hog->setrep_att) {
g_attrib_cancel(hog->attrib, hog->setrep_att);
hog->setrep_att = 0;
}
hog->setrep_id = ev->u.set_report.id;
report = find_report_by_rtype(hog, ev->u.set_report.rtype,
ev->u.set_report.rnum);
if (!report) {
err = ENOTSUP;
goto fail;
}
data = ev->u.set_report.data;
size = ev->u.set_report.size;
if (report->numbered && size > 0) {
data++;
--size;
}
DBG("Sending report type %d ID %d to handle 0x%X", report->type,
report->id, report->value_handle);
hog->setrep_att = gatt_write_char(hog->attrib,
report->value_handle,
data, size, set_report_cb,
hog);
if (!hog->setrep_att) {
err = ENOMEM;
goto fail;
}
return;
fail:
/* cancel the request on failure */
set_report_cb(err, NULL, 0, hog);
}
static void report_reply(struct bt_hog *hog, uint8_t status, uint8_t id,
uint16_t len, const uint8_t *data)
{
int err;
hog->getrep_att = 0;
err = bt_uhid_get_report_reply(hog->uhid, hog->getrep_id, id, status,
data, len);
if (err < 0)
error("bt_uhid_get_report_reply: %s", strerror(-err));
}
static void get_report_cb(guint8 status, const guint8 *pdu, guint16 len,
gpointer user_data)
{
struct report *report = user_data;
struct bt_hog *hog = report->hog;
if (status != 0) {
error("Error reading Report value: %s", att_ecode2str(status));
goto exit;
}
if (len == 0) {
error("Error reading Report, length %d", len);
status = EIO;
goto exit;
}
if (pdu[0] != 0x0b) {
error("Error reading Report, invalid response: %02x", pdu[0]);
status = EPROTO;
goto exit;
}
--len;
++pdu;
exit:
report_reply(hog, status, report->numbered ? report->id : 0, len, pdu);
}
static void get_report(struct uhid_event *ev, void *user_data)
{
struct bt_hog *hog = user_data;
struct report *report;
guint8 err;
/* Destroy input device if there is an attempt to communicate with it
* while disconnected.
*/
if (hog->attrib == NULL) {
uhid_destroy(hog, true);
return;
}
/* uhid never sends reqs in parallel; if there's a req, it timed out */
if (hog->getrep_att) {
g_attrib_cancel(hog->attrib, hog->getrep_att);
hog->getrep_att = 0;
}
hog->getrep_id = ev->u.get_report.id;
report = find_report_by_rtype(hog, ev->u.get_report.rtype,
ev->u.get_report.rnum);
if (!report) {
err = ENOTSUP;
goto fail;
}
hog->getrep_att = gatt_read_char(hog->attrib,
report->value_handle,
get_report_cb, report);
if (!hog->getrep_att) {
err = ENOMEM;
goto fail;
}
return;
fail:
/* reply with an error on failure */
report_reply(hog, err, 0, 0, NULL);
}
static void uhid_create(struct bt_hog *hog, uint8_t *report_map,
size_t report_map_len)
{
uint8_t *value = report_map;
size_t vlen = report_map_len;
int err;
GError *gerr = NULL;
bdaddr_t src, dst;
bt_io_get(g_attrib_get_channel(hog->attrib), &gerr,
BT_IO_OPT_SOURCE_BDADDR, &src,
BT_IO_OPT_DEST_BDADDR, &dst,
BT_IO_OPT_INVALID);
if (gerr) {
error("Failed to connection details: %s", gerr->message);
g_error_free(gerr);
return;
}
err = bt_uhid_create(hog->uhid, hog->name, &src, &dst,
hog->vendor, hog->product, hog->version,
hog->bcountrycode, hog->type, value, vlen);
if (err < 0) {
error("bt_uhid_create: %s", strerror(-err));
return;
}
bt_uhid_register(hog->uhid, UHID_START, start_flags, hog);
bt_uhid_register(hog->uhid, UHID_OUTPUT, forward_report, hog);
bt_uhid_register(hog->uhid, UHID_GET_REPORT, get_report, hog);
bt_uhid_register(hog->uhid, UHID_SET_REPORT, set_report, hog);
DBG("HoG created uHID device");
}
static void db_report_map_write_value_cb(struct gatt_db_attribute *attr,
int err, void *user_data)
{
if (err)
error("Error writing report map value to gatt db");
}
static void report_map_read_cb(guint8 status, const guint8 *pdu, guint16 plen,
gpointer user_data)
{
struct gatt_request *req = user_data;
struct bt_hog *hog = req->user_data;
uint8_t *value;
ssize_t vlen;
remove_gatt_req(req, status);
if (status != 0) {
error("Report Map read failed: %s", att_ecode2str(status));
return;
}
value = new0(uint8_t, plen);
vlen = dec_read_resp(pdu, plen, value, plen);
if (vlen < 0) {
error("ATT protocol error");
goto done;
}
uhid_create(hog, value, vlen);
/* Cache the report map if gatt_db is available */
if (hog->report_map_attr) {
gatt_db_attribute_write(hog->report_map_attr, 0, value, vlen, 0,
NULL, db_report_map_write_value_cb,
NULL);
}
done:
free(value);
}
static void read_report_map(struct bt_hog *hog)
{
uint16_t handle;
if (!hog->report_map_attr || bt_uhid_created(hog->uhid) ||
hog->report_map_id)
return;
handle = gatt_db_attribute_get_handle(hog->report_map_attr);
hog->report_map_id = read_char(hog, hog->attrib, handle,
report_map_read_cb, hog);
}
static void info_read_cb(guint8 status, const guint8 *pdu, guint16 plen,
gpointer user_data)
{
struct gatt_request *req = user_data;
struct bt_hog *hog = req->user_data;
uint8_t value[HID_INFO_SIZE];
ssize_t vlen;
if (status != 0) {
error("HID Information read failed: %s",
att_ecode2str(status));
goto remove;
}
vlen = dec_read_resp(pdu, plen, value, sizeof(value));
if (vlen != 4) {
error("ATT protocol error");
goto remove;
}
hog->bcdhid = get_le16(&value[0]);
hog->bcountrycode = value[2];
hog->flags = value[3];
DBG("bcdHID: 0x%04X bCountryCode: 0x%02X Flags: 0x%02X",
hog->bcdhid, hog->bcountrycode, hog->flags);
remove:
remove_gatt_req(req, status);
}
static void proto_mode_read_cb(guint8 status, const guint8 *pdu, guint16 plen,
gpointer user_data)
{
struct gatt_request *req = user_data;
struct bt_hog *hog = req->user_data;
uint8_t value;
ssize_t vlen;
if (status != 0) {
error("Protocol Mode characteristic read failed: %s",
att_ecode2str(status));
goto remove;
}
vlen = dec_read_resp(pdu, plen, &value, sizeof(value));
if (vlen < 0) {
error("ATT protocol error");
goto remove;
}
if (value == HOG_PROTO_MODE_BOOT) {
uint8_t nval = HOG_PROTO_MODE_REPORT;
DBG("HoG is operating in Boot Procotol Mode");
gatt_write_cmd(hog->attrib, hog->proto_mode_handle, &nval,
sizeof(nval), NULL, NULL);
} else if (value == HOG_PROTO_MODE_REPORT)
DBG("HoG is operating in Report Protocol Mode");
remove:
remove_gatt_req(req, status);
}
static void char_discovered_cb(uint8_t status, GSList *chars, void *user_data)
{
struct gatt_request *req = user_data;
struct bt_hog *hog = req->user_data;
struct gatt_primary *primary = hog->primary;
bt_uuid_t report_uuid, report_map_uuid, info_uuid;
bt_uuid_t proto_mode_uuid, ctrlpt_uuid;
struct report *report;
GSList *l;
uint16_t info_handle = 0, proto_mode_handle = 0;
DBG("HoG inspecting characteristics");
if (status != 0) {
DBG("Discover all characteristics failed: %s",
att_ecode2str(status));
goto remove;
}
bt_uuid16_create(&report_uuid, HOG_REPORT_UUID);
bt_uuid16_create(&report_map_uuid, HOG_REPORT_MAP_UUID);
bt_uuid16_create(&info_uuid, HOG_INFO_UUID);
bt_uuid16_create(&proto_mode_uuid, HOG_PROTO_MODE_UUID);
bt_uuid16_create(&ctrlpt_uuid, HOG_CONTROL_POINT_UUID);
for (l = chars; l; l = g_slist_next(l)) {
struct gatt_char *chr, *next;
bt_uuid_t uuid;
uint16_t start, end;
chr = l->data;
next = l->next ? l->next->data : NULL;
if (!chr)
continue;
DBG("0x%04x UUID: %s properties: %02x",
chr->handle, chr->uuid, chr->properties);
bt_string_to_uuid(&uuid, chr->uuid);
start = chr->value_handle + 1;
end = (next ? next->handle - 1 : primary->range.end);
if (bt_uuid_cmp(&uuid, &report_uuid) == 0) {
report = report_new(hog, chr);
discover_report(hog, hog->attrib, start, end, report);
} else if (bt_uuid_cmp(&uuid, &report_map_uuid) == 0) {
DBG("HoG discovering report map");
read_char(hog, hog->attrib, chr->value_handle,
report_map_read_cb, hog);
discover_external(hog, hog->attrib, start, end, hog);
} else if (bt_uuid_cmp(&uuid, &info_uuid) == 0)
info_handle = chr->value_handle;
else if (bt_uuid_cmp(&uuid, &proto_mode_uuid) == 0)
proto_mode_handle = chr->value_handle;
else if (bt_uuid_cmp(&uuid, &ctrlpt_uuid) == 0)
hog->ctrlpt_handle = chr->value_handle;
}
if (proto_mode_handle) {
hog->proto_mode_handle = proto_mode_handle;
read_char(hog, hog->attrib, proto_mode_handle,
proto_mode_read_cb, hog);
}
if (info_handle)
read_char(hog, hog->attrib, info_handle, info_read_cb, hog);
remove:
remove_gatt_req(req, status);
}
static void report_free(void *data)
{
struct report *report = data;
free(report->value);
g_free(report);
}
static bool cancel_gatt_req(const void *data, const void *user_data)
{
struct gatt_request *req = (void *) data;
const struct bt_hog *hog = user_data;
return g_attrib_cancel(hog->attrib, req->id);
}
static void hog_free(void *data)
{
struct bt_hog *hog = data;
bt_hog_detach(hog, true);
uhid_destroy(hog, true);
queue_destroy(hog->bas, (void *) bt_bas_unref);
g_slist_free_full(hog->instances, hog_free);
bt_scpp_unref(hog->scpp);
bt_dis_unref(hog->dis);
bt_uhid_unref(hog->uhid);
g_slist_free_full(hog->reports, report_free);
g_free(hog->name);
free(hog->primary);
queue_destroy(hog->gatt_op, (void *) destroy_gatt_req);
if (hog->gatt_db)
gatt_db_unref(hog->gatt_db);
g_free(hog);
}
struct bt_hog *bt_hog_new_default(const char *name, uint16_t vendor,
uint16_t product, uint16_t version,
uint8_t type, struct gatt_db *db)
{
return bt_hog_new(-1, name, vendor, product, version, type, db);
}
static void foreach_hog_report(struct gatt_db_attribute *attr, void *user_data)
{
struct report *report = user_data;
struct bt_hog *hog = report->hog;
const bt_uuid_t *uuid;
bt_uuid_t ref_uuid, ccc_uuid;
uint16_t handle;
handle = gatt_db_attribute_get_handle(attr);
uuid = gatt_db_attribute_get_type(attr);
bt_uuid16_create(&ref_uuid, GATT_REPORT_REFERENCE);
if (!bt_uuid_cmp(&ref_uuid, uuid)) {
read_char(hog, hog->attrib, handle, report_reference_cb,
report);
return;
}
bt_uuid16_create(&ccc_uuid, GATT_CLIENT_CHARAC_CFG_UUID);
if (!bt_uuid_cmp(&ccc_uuid, uuid))
report->ccc_handle = handle;
}
static int report_attr_cmp(const void *data, const void *user_data)
{
const struct report *report = data;
const struct gatt_db_attribute *attr = user_data;
return report->handle - gatt_db_attribute_get_handle(attr);
}
static struct report *report_add(struct bt_hog *hog,
struct gatt_db_attribute *attr)
{
struct report *report;
GSList *l;
/* Skip if report already exists */
l = g_slist_find_custom(hog->reports, attr, report_attr_cmp);
if (l)
return l->data;
report = g_new0(struct report, 1);
report->hog = hog;
gatt_db_attribute_get_char_data(attr, &report->handle,
&report->value_handle,
&report->properties,
NULL, NULL);
hog->reports = g_slist_append(hog->reports, report);
read_char(hog, hog->attrib, report->value_handle, report_read_cb,
report);
return report;
}
static void foreach_hog_external(struct gatt_db_attribute *attr,
void *user_data)
{
struct bt_hog *hog = user_data;
const bt_uuid_t *uuid;
bt_uuid_t ext_uuid;
uint16_t handle;
handle = gatt_db_attribute_get_handle(attr);
uuid = gatt_db_attribute_get_type(attr);
bt_uuid16_create(&ext_uuid, GATT_EXTERNAL_REPORT_REFERENCE);
if (!bt_uuid_cmp(&ext_uuid, uuid))
read_char(hog, hog->attrib, handle,
external_report_reference_cb, hog);
}
static void db_report_map_read_value_cb(struct gatt_db_attribute *attrib,
int err, const uint8_t *value,
size_t length, void *user_data)
{
struct iovec *map = user_data;
if (err) {
error("Error reading report map from gatt db %s",
strerror(-err));
return;
}
if (!length)
return;
map->iov_len = length;
map->iov_base = (void *) value;
}
static void foreach_hog_chrc(struct gatt_db_attribute *attr, void *user_data)
{
struct bt_hog *hog = user_data;
bt_uuid_t uuid, report_uuid, report_map_uuid, info_uuid;
bt_uuid_t proto_mode_uuid, ctrlpt_uuid;
uint16_t handle, value_handle;
struct iovec map = {};
gatt_db_attribute_get_char_data(attr, &handle, &value_handle, NULL,
NULL, &uuid);
bt_uuid16_create(&report_uuid, HOG_REPORT_UUID);
if (!bt_uuid_cmp(&report_uuid, &uuid)) {
struct report *report = report_add(hog, attr);
gatt_db_service_foreach_desc(attr, foreach_hog_report, report);
return;
}
bt_uuid16_create(&report_map_uuid, HOG_REPORT_MAP_UUID);
if (!bt_uuid_cmp(&report_map_uuid, &uuid)) {
if (hog->gatt_db) {
/* Try to read the cache of report map if available */
hog->report_map_attr = gatt_db_get_attribute(
hog->gatt_db,
value_handle);
gatt_db_attribute_read(hog->report_map_attr, 0,
BT_ATT_OP_READ_REQ, NULL,
db_report_map_read_value_cb,
&map);
}
if (map.iov_len) {
/* Report map found in the cache, straight to creating
* UHID to optimize reconnection.
*/
uhid_create(hog, map.iov_base, map.iov_len);
}
gatt_db_service_foreach_desc(attr, foreach_hog_external, hog);
}
bt_uuid16_create(&info_uuid, HOG_INFO_UUID);
if (!bt_uuid_cmp(&info_uuid, &uuid)) {
read_char(hog, hog->attrib, value_handle, info_read_cb, hog);
return;
}
bt_uuid16_create(&proto_mode_uuid, HOG_PROTO_MODE_UUID);
if (!bt_uuid_cmp(&proto_mode_uuid, &uuid)) {
hog->proto_mode_handle = value_handle;
read_char(hog, hog->attrib, value_handle, proto_mode_read_cb,
hog);
}
bt_uuid16_create(&ctrlpt_uuid, HOG_CONTROL_POINT_UUID);
if (!bt_uuid_cmp(&ctrlpt_uuid, &uuid))
hog->ctrlpt_handle = value_handle;
}
static struct bt_hog *hog_new(int fd, const char *name, uint16_t vendor,
uint16_t product, uint16_t version,
uint8_t type,
struct gatt_db_attribute *attr)
{
struct bt_uhid *uhid;
struct bt_hog *hog;
if (fd < 0)
uhid = bt_uhid_new_default();
else
uhid = bt_uhid_new(fd);
if (!uhid) {
DBG("Unable to create UHID");
return NULL;
}
hog = g_try_new0(struct bt_hog, 1);
if (!hog)
return NULL;
hog->gatt_op = queue_new();
hog->bas = queue_new();
hog->uhid_fd = fd;
hog->uhid = uhid;
if (!hog->gatt_op || !hog->bas) {
hog_free(hog);
return NULL;
}
hog->name = g_strdup(name);
hog->vendor = vendor;
hog->product = product;
hog->version = version;
hog->type = type;
hog->attr = attr;
return hog;
}
static void hog_attach_instance(struct bt_hog *hog,
struct gatt_db_attribute *attr)
{
struct bt_hog *instance;
if (!hog->attr) {
hog->attr = attr;
return;
}
instance = hog_new(hog->uhid_fd, hog->name, hog->vendor, hog->product,
hog->version, hog->type, attr);
if (!instance)
return;
instance->gatt_db = gatt_db_ref(hog->gatt_db);
hog->instances = g_slist_append(hog->instances, bt_hog_ref(instance));
}
static void foreach_hog_service(struct gatt_db_attribute *attr, void *user_data)
{
struct bt_hog *hog = user_data;
hog_attach_instance(hog, attr);
}
static void dis_notify(uint8_t source, uint16_t vendor, uint16_t product,
uint16_t version, void *user_data)
{
struct bt_hog *hog = user_data;
GSList *l;
hog->vendor = vendor;
hog->product = product;
hog->version = version;
for (l = hog->instances; l; l = l->next) {
struct bt_hog *instance = l->data;
instance->vendor = vendor;
instance->product = product;
instance->version = version;
}
}
struct bt_hog *bt_hog_new(int fd, const char *name, uint16_t vendor,
uint16_t product, uint16_t version,
uint8_t type, struct gatt_db *db)
{
struct bt_hog *hog;
hog = hog_new(fd, name, vendor, product, version, type, NULL);
if (!hog)
return NULL;
hog->gatt_db = gatt_db_ref(db);
if (db) {
bt_uuid_t uuid;
/* Handle the HID services */
bt_uuid16_create(&uuid, HOG_UUID16);
gatt_db_foreach_service(db, &uuid, foreach_hog_service, hog);
if (!hog->attr) {
hog_free(hog);
return NULL;
}
/* Try creating a DIS instance in case pid/vid are not set */
if (!vendor && !product) {
hog->dis = bt_dis_new(db);
bt_dis_set_notification(hog->dis, dis_notify, hog);
}
}
return bt_hog_ref(hog);
}
struct bt_hog *bt_hog_ref(struct bt_hog *hog)
{
if (!hog)
return NULL;
__sync_fetch_and_add(&hog->ref_count, 1);
return hog;
}
void bt_hog_unref(struct bt_hog *hog)
{
if (!hog)
return;
if (__sync_sub_and_fetch(&hog->ref_count, 1))
return;
hog_free(hog);
}
static void find_included_cb(uint8_t status, GSList *services, void *user_data)
{
struct gatt_request *req = user_data;
GSList *l;
DBG("");
if (status) {
DBG("Find included failed: %s", att_ecode2str(status));
goto remove;
}
for (l = services; l; l = l->next) {
struct gatt_included *include = l->data;
DBG("included: handle %x, uuid %s",
include->handle, include->uuid);
}
remove:
remove_gatt_req(req, status);
}
static void hog_attach_scpp(struct bt_hog *hog, struct gatt_primary *primary)
{
if (hog->scpp) {
bt_scpp_attach(hog->scpp, hog->attrib);
return;
}
hog->scpp = bt_scpp_new(primary);
if (hog->scpp)
bt_scpp_attach(hog->scpp, hog->attrib);
}
static void hog_attach_dis(struct bt_hog *hog, struct gatt_primary *primary)
{
if (hog->dis) {
bt_dis_attach(hog->dis, hog->attrib);
return;
}
hog->dis = bt_dis_new_primary(primary);
if (hog->dis) {
bt_dis_set_notification(hog->dis, dis_notify, hog);
bt_dis_attach(hog->dis, hog->attrib);
}
}
static void hog_attach_bas(struct bt_hog *hog, struct gatt_primary *primary)
{
struct bt_bas *instance;
instance = bt_bas_new(primary);
bt_bas_attach(instance, hog->attrib);
queue_push_head(hog->bas, instance);
}
static void hog_attach_hog(struct bt_hog *hog, struct gatt_primary *primary)
{
struct bt_hog *instance;
if (!hog->primary) {
hog->primary = util_memdup(primary, sizeof(*primary));
discover_char(hog, hog->attrib, primary->range.start,
primary->range.end, NULL,
char_discovered_cb, hog);
find_included(hog, hog->attrib, primary->range.start,
primary->range.end, find_included_cb, hog);
return;
}
instance = bt_hog_new(hog->uhid_fd, hog->name, hog->vendor,
hog->product, hog->version,
hog->type, hog->gatt_db);
if (!instance)
return;
instance->primary = util_memdup(primary, sizeof(*primary));
find_included(instance, hog->attrib, primary->range.start,
primary->range.end, find_included_cb, instance);
bt_hog_attach(instance, hog->attrib);
hog->instances = g_slist_append(hog->instances, instance);
}
static void primary_cb(uint8_t status, GSList *services, void *user_data)
{
struct gatt_request *req = user_data;
struct bt_hog *hog = req->user_data;
struct gatt_primary *primary;
GSList *l;
DBG("");
if (status) {
DBG("Discover primary failed: %s", att_ecode2str(status));
goto remove;
}
if (!services) {
DBG("No primary service found");
goto remove;
}
for (l = services; l; l = l->next) {
primary = l->data;
if (strcmp(primary->uuid, SCAN_PARAMETERS_UUID) == 0) {
hog_attach_scpp(hog, primary);
continue;
}
if (strcmp(primary->uuid, DEVICE_INFORMATION_UUID) == 0) {
hog_attach_dis(hog, primary);
continue;
}
if (strcmp(primary->uuid, BATTERY_UUID) == 0) {
hog_attach_bas(hog, primary);
continue;
}
if (strcmp(primary->uuid, HOG_UUID) == 0)
hog_attach_hog(hog, primary);
}
remove:
remove_gatt_req(req, status);
}
bool bt_hog_attach(struct bt_hog *hog, void *gatt)
{
GSList *l;
if (hog->attrib)
return false;
hog->attrib = g_attrib_ref(gatt);
if (!hog->attr && !hog->primary) {
discover_primary(hog, hog->attrib, NULL, primary_cb, hog);
return true;
}
if (hog->scpp)
bt_scpp_attach(hog->scpp, gatt);
if (hog->dis)
bt_dis_attach(hog->dis, gatt);
queue_foreach(hog->bas, (void *) bt_bas_attach, gatt);
for (l = hog->instances; l; l = l->next) {
struct bt_hog *instance = l->data;
bt_hog_attach(instance, gatt);
}
if (!bt_uhid_created(hog->uhid)) {
DBG("HoG discovering characteristics");
if (hog->attr)
gatt_db_service_foreach_char(hog->attr,
foreach_hog_chrc, hog);
else
discover_char(hog, hog->attrib,
hog->primary->range.start,
hog->primary->range.end, NULL,
char_discovered_cb, hog);
}
if (!bt_uhid_created(hog->uhid))
return true;
/* If UHID is already created, set up the report value handlers to
* optimize reconnection.
*/
for (l = hog->reports; l; l = l->next) {
struct report *r = l->data;
if (r->notifyid)
continue;
r->notifyid = g_attrib_register(hog->attrib,
ATT_OP_HANDLE_NOTIFY,
r->value_handle,
report_value_cb, r,
report_notify_destroy);
if (!r->notifyid)
error("Unable to register report notification: "
"handle 0x%04x", r->value_handle);
}
/* Attempt to replay get/set report messages since the driver might not
* be aware the device has been disconnected in the meantime.
*/
bt_uhid_replay(hog->uhid);
return true;
}
void bt_hog_detach(struct bt_hog *hog, bool force)
{
GSList *l;
if (!hog)
return;
if (!hog->attrib)
goto done;
queue_foreach(hog->bas, (void *) bt_bas_detach, NULL);
for (l = hog->instances; l; l = l->next) {
struct bt_hog *instance = l->data;
bt_hog_detach(instance, force);
}
for (l = hog->reports; l; l = l->next) {
struct report *r = l->data;
if (r->notifyid > 0) {
g_attrib_unregister(hog->attrib, r->notifyid);
r->notifyid = 0;
}
}
if (hog->scpp)
bt_scpp_detach(hog->scpp);
if (hog->dis)
bt_dis_detach(hog->dis);
queue_remove_all(hog->gatt_op, cancel_gatt_req, hog, destroy_gatt_req);
g_attrib_unref(hog->attrib);
hog->attrib = NULL;
done:
uhid_destroy(hog, force);
}
int bt_hog_set_control_point(struct bt_hog *hog, bool suspend)
{
uint8_t value = suspend ? 0x00 : 0x01;
if (hog->attrib == NULL)
return -ENOTCONN;
if (hog->ctrlpt_handle == 0)
return -ENOTSUP;
gatt_write_cmd(hog->attrib, hog->ctrlpt_handle, &value,
sizeof(value), NULL, NULL);
return 0;
}
int bt_hog_send_report(struct bt_hog *hog, void *data, size_t size, int type)
{
struct report *report;
GSList *l;
if (!hog)
return -EINVAL;
if (!hog->attrib)
return -ENOTCONN;
report = find_report(hog, type, 0);
if (!report)
return -ENOTSUP;
DBG("hog: Write report, handle 0x%X", report->value_handle);
if (report->properties & GATT_CHR_PROP_WRITE)
write_char(hog, hog->attrib, report->value_handle,
data, size, output_written_cb, hog);
if (report->properties & GATT_CHR_PROP_WRITE_WITHOUT_RESP)
gatt_write_cmd(hog->attrib, report->value_handle,
data, size, NULL, NULL);
for (l = hog->instances; l; l = l->next) {
struct bt_hog *instance = l->data;
bt_hog_send_report(instance, data, size, type);
}
return 0;
}
|