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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
*
* BlueZ - Bluetooth protocol stack for Linux
*
* Copyright (C) 2004-2010 Marcel Holtmann <marcel@holtmann.org>
* Copyright (C) 2014 Google Inc.
*
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#define _GNU_SOURCE
#include <stdlib.h>
#include <stdbool.h>
#include <errno.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/uio.h>
#include "lib/bluetooth.h"
#include "lib/hidp.h"
#include "lib/sdp.h"
#include "lib/sdp_lib.h"
#include "lib/uuid.h"
#include "gdbus/gdbus.h"
#include "btio/btio.h"
#include "src/log.h"
#include "src/adapter.h"
#include "src/device.h"
#include "src/profile.h"
#include "src/service.h"
#include "src/storage.h"
#include "src/dbus-common.h"
#include "src/error.h"
#include "src/sdp-client.h"
#include "src/shared/timeout.h"
#include "src/shared/uhid.h"
#include "src/shared/util.h"
#include "src/shared/queue.h"
#include "device.h"
#include "hidp_defs.h"
#include "server.h"
#define INPUT_INTERFACE "org.bluez.Input1"
enum reconnect_mode_t {
RECONNECT_NONE = 0,
RECONNECT_DEVICE,
RECONNECT_HOST,
RECONNECT_ANY
};
struct hidp_msg {
uint8_t hdr;
struct iovec *iov;
};
struct input_device {
struct btd_service *service;
struct btd_device *device;
char *path;
bdaddr_t src;
bdaddr_t dst;
const sdp_record_t *rec;
GIOChannel *ctrl_io;
GIOChannel *intr_io;
guint ctrl_watch;
guint intr_watch;
guint sec_watch;
struct hidp_connadd_req *req;
bool disable_sdp;
enum reconnect_mode_t reconnect_mode;
unsigned int reconnect_timer;
uint32_t reconnect_attempt;
struct bt_uhid *uhid;
uint8_t report_req_pending;
unsigned int report_req_timer;
uint32_t report_rsp_id;
bool virtual_cable_unplug;
uint8_t type;
unsigned int idle_timer;
};
static int idle_timeout = 0;
static uhid_state_t uhid_state = UHID_ENABLED;
static bool classic_bonded_only = true;
void input_set_idle_timeout(int timeout)
{
idle_timeout = timeout;
}
void input_set_userspace_hid(char *state)
{
if (!strcasecmp(state, "false") || !strcasecmp(state, "no") ||
!strcasecmp(state, "off"))
uhid_state = UHID_DISABLED;
else if (!strcasecmp(state, "true") || !strcasecmp(state, "yes") ||
!strcasecmp(state, "on"))
uhid_state = UHID_ENABLED;
else if (!strcasecmp(state, "persist"))
uhid_state = UHID_PERSIST;
else
error("Unknown value '%s'", state);
}
void input_set_classic_bonded_only(bool state)
{
classic_bonded_only = state;
}
bool input_get_classic_bonded_only(void)
{
return classic_bonded_only;
}
static void input_device_enter_reconnect_mode(struct input_device *idev);
static int connection_disconnect(struct input_device *idev, uint32_t flags);
static bool input_device_bonded(struct input_device *idev)
{
return device_is_bonded(idev->device,
btd_device_get_bdaddr_type(idev->device));
}
static void input_device_free(struct input_device *idev)
{
bt_uhid_unref(idev->uhid);
btd_service_unref(idev->service);
btd_device_unref(idev->device);
g_free(idev->path);
if (idev->ctrl_watch > 0)
g_source_remove(idev->ctrl_watch);
if (idev->intr_watch > 0)
g_source_remove(idev->intr_watch);
if (idev->sec_watch > 0)
g_source_remove(idev->sec_watch);
if (idev->intr_io)
g_io_channel_unref(idev->intr_io);
if (idev->ctrl_io)
g_io_channel_unref(idev->ctrl_io);
if (idev->req) {
g_free(idev->req->rd_data);
g_free(idev->req);
}
if (idev->idle_timer)
timeout_remove(idev->idle_timer);
if (idev->reconnect_timer > 0)
timeout_remove(idev->reconnect_timer);
if (idev->report_req_timer > 0)
timeout_remove(idev->report_req_timer);
g_free(idev);
}
static void virtual_cable_unplug(struct input_device *idev)
{
device_remove_bonding(idev->device,
btd_device_get_bdaddr_type(idev->device));
idev->virtual_cable_unplug = false;
}
static int uhid_disconnect(struct input_device *idev, bool force)
{
int err;
if (!bt_uhid_created(idev->uhid))
return 0;
/* Force destroy the node if virtual cable unplug flag has been set */
if (idev->virtual_cable_unplug && !force)
force = true;
if (!force && uhid_state != UHID_PERSIST)
force = true;
err = bt_uhid_destroy(idev->uhid, force);
if (err < 0) {
error("bt_uhid_destroy: %s", strerror(-err));
return err;
}
if (!bt_uhid_created(idev->uhid))
bt_uhid_unregister_all(idev->uhid);
return err;
}
static bool input_device_idle_timeout(gpointer user_data)
{
struct input_device *idev = user_data;
idev->idle_timer = 0;
DBG("path=%s", idev->path);
uhid_disconnect(idev, true);
connection_disconnect(idev, 0);
return false;
}
static void input_device_idle_reset(struct input_device *idev)
{
timeout_remove(idev->idle_timer);
if (idle_timeout)
idev->idle_timer = timeout_add_seconds(idle_timeout,
input_device_idle_timeout, idev,
NULL);
}
static bool hidp_send_message(struct input_device *idev, GIOChannel *chan,
uint8_t hdr, const uint8_t *data, size_t size)
{
int fd;
ssize_t len;
struct iovec iov[2];
if (!chan) {
error("BT socket not connected");
return false;
}
iov[0].iov_base = &hdr;
iov[0].iov_len = sizeof(hdr);
if (data == NULL)
size = 0;
iov[1].iov_base = (void *)data;
iov[1].iov_len = size;
fd = g_io_channel_unix_get_fd(chan);
len = writev(fd, iov, 2);
if (len < 0) {
error("BT socket write error: %s (%d)", strerror(errno), errno);
return false;
}
if ((size_t) len < size + 1) {
error("BT socket write error: partial write (%zd of %zu bytes)",
len, size + 1);
return false;
}
input_device_idle_reset(idev);
return true;
}
static bool hidp_send_ctrl_message(struct input_device *idev, uint8_t hdr,
const uint8_t *data, size_t size)
{
if (hdr == (HIDP_TRANS_HID_CONTROL | HIDP_CTRL_VIRTUAL_CABLE_UNPLUG))
idev->virtual_cable_unplug = true;
return hidp_send_message(idev, idev->ctrl_io, hdr, data, size);
}
static bool hidp_send_intr_message(struct input_device *idev, uint8_t hdr,
const uint8_t *data, size_t size)
{
return hidp_send_message(idev, idev->intr_io, hdr, data, size);
}
static bool uhid_send_get_report_reply(struct input_device *idev,
const uint8_t *data, size_t size,
uint32_t id, uint16_t err)
{
int ret;
if (data == NULL)
size = 0;
if (!bt_uhid_created(idev->uhid)) {
DBG("HID report (%zu bytes) dropped", size);
return false;
}
ret = bt_uhid_get_report_reply(idev->uhid, id, 0, err, data, size);
if (ret < 0) {
error("bt_uhid_get_report_reply: %s (%d)", strerror(-ret),
-ret);
return false;
}
DBG("HID report (%zu bytes)", size);
return true;
}
static bool uhid_send_set_report_reply(struct input_device *idev,
uint32_t id, uint16_t err)
{
int ret;
if (!bt_uhid_created(idev->uhid))
return false;
ret = bt_uhid_set_report_reply(idev->uhid, id, err);
if (ret < 0) {
error("bt_uhid_set_report_reply: %s (%d)", strerror(-ret),
-ret);
return false;
}
return true;
}
static bool uhid_send_input_report(struct input_device *idev,
const uint8_t *data, size_t size)
{
int err;
if (data == NULL)
size = 0;
if (!bt_uhid_created(idev->uhid)) {
DBG("HID report (%zu bytes) dropped", size);
return false;
}
err = bt_uhid_input(idev->uhid, 0, data, size);
if (err < 0) {
error("bt_uhid_input: %s (%d)", strerror(-err), -err);
return false;
}
DBG("HID report (%zu bytes)", size);
return true;
}
static bool hidp_recv_intr_data(GIOChannel *chan, struct input_device *idev)
{
int fd;
ssize_t len;
uint8_t hdr;
uint8_t data[UHID_DATA_MAX + 1];
fd = g_io_channel_unix_get_fd(chan);
len = read(fd, data, sizeof(data));
if (len < 0) {
error("BT socket read error: %s (%d)", strerror(errno), errno);
return false;
}
if (len == 0) {
DBG("BT socket read returned 0 bytes");
return true;
}
input_device_idle_reset(idev);
hdr = data[0];
if (hdr != (HIDP_TRANS_DATA | HIDP_DATA_RTYPE_INPUT)) {
DBG("unsupported HIDP protocol header 0x%02x", hdr);
return true;
}
if (len < 2) {
DBG("received empty HID report");
return true;
}
uhid_send_input_report(idev, data + 1, len - 1);
return true;
}
static gboolean intr_watch_cb(GIOChannel *chan, GIOCondition cond, gpointer data)
{
struct input_device *idev = data;
char address[18];
if (cond & G_IO_IN) {
if (hidp_recv_intr_data(chan, idev) && (cond == G_IO_IN))
return TRUE;
}
ba2str(&idev->dst, address);
DBG("Device %s disconnected", address);
/* Checking for ctrl_watch avoids a double g_io_channel_shutdown since
* it's likely that ctrl_watch_cb has been queued for dispatching in
* this mainloop iteration */
if ((cond & (G_IO_HUP | G_IO_ERR)) && idev->ctrl_watch)
g_io_channel_shutdown(chan, TRUE, NULL);
idev->intr_watch = 0;
if (idev->intr_io) {
g_io_channel_unref(idev->intr_io);
idev->intr_io = NULL;
}
/* Close control channel if the closing of interrupt channel is not
* initiated by the other party
*/
if (idev->ctrl_io && !(cond & (G_IO_NVAL | G_IO_ERR)))
g_io_channel_shutdown(idev->ctrl_io, TRUE, NULL);
btd_service_disconnecting_complete(idev->service, 0);
/* Enter the auto-reconnect mode if needed */
input_device_enter_reconnect_mode(idev);
if (!idev->ctrl_io && idev->virtual_cable_unplug)
virtual_cable_unplug(idev);
/* If connection abruptly ended, uhid might be not yet disconnected */
uhid_disconnect(idev, false);
return FALSE;
}
static void hidp_recv_ctrl_handshake(struct input_device *idev, uint8_t param)
{
bool pending_req_complete = false;
uint8_t pending_req_type;
DBG("");
pending_req_type = idev->report_req_pending & HIDP_HEADER_TRANS_MASK;
switch (param) {
case HIDP_HSHK_SUCCESSFUL:
if (pending_req_type == HIDP_TRANS_SET_REPORT) {
DBG("SET_REPORT successful");
pending_req_complete = true;
} else
DBG("Spurious HIDP_HSHK_SUCCESSFUL");
break;
case HIDP_HSHK_NOT_READY:
case HIDP_HSHK_ERR_INVALID_REPORT_ID:
case HIDP_HSHK_ERR_UNSUPPORTED_REQUEST:
case HIDP_HSHK_ERR_INVALID_PARAMETER:
case HIDP_HSHK_ERR_UNKNOWN:
case HIDP_HSHK_ERR_FATAL:
if (pending_req_type == HIDP_TRANS_GET_REPORT) {
DBG("GET_REPORT failed (%u)", param);
uhid_send_get_report_reply(idev, NULL, 0,
idev->report_rsp_id, EIO);
pending_req_complete = true;
} else if (pending_req_type == HIDP_TRANS_SET_REPORT) {
DBG("SET_REPORT failed (%u)", param);
uhid_send_set_report_reply(idev, idev->report_rsp_id,
EIO);
pending_req_complete = true;
} else
DBG("Spurious HIDP_HSHK_ERR");
if (param == HIDP_HSHK_ERR_FATAL)
hidp_send_ctrl_message(idev, HIDP_TRANS_HID_CONTROL |
HIDP_CTRL_SOFT_RESET, NULL, 0);
break;
default:
hidp_send_ctrl_message(idev, HIDP_TRANS_HANDSHAKE |
HIDP_HSHK_ERR_INVALID_PARAMETER, NULL, 0);
break;
}
if (pending_req_complete) {
idev->report_req_pending = 0;
if (idev->report_req_timer > 0) {
timeout_remove(idev->report_req_timer);
idev->report_req_timer = 0;
}
uhid_send_set_report_reply(idev, idev->report_rsp_id, 0);
idev->report_rsp_id = 0;
}
}
static void hidp_recv_ctrl_hid_control(struct input_device *idev, uint8_t param)
{
DBG("");
if (param == HIDP_CTRL_VIRTUAL_CABLE_UNPLUG)
connection_disconnect(idev, (1 << HIDP_VIRTUAL_CABLE_UNPLUG));
}
static void hidp_recv_ctrl_data(struct input_device *idev, uint8_t param,
const uint8_t *data, size_t size)
{
uint8_t pending_req_type;
uint8_t pending_req_param;
DBG("");
pending_req_type = idev->report_req_pending & HIDP_HEADER_TRANS_MASK;
if (pending_req_type != HIDP_TRANS_GET_REPORT &&
pending_req_type != HIDP_TRANS_SET_REPORT) {
DBG("Spurious DATA on control channel");
return;
}
pending_req_param = idev->report_req_pending & HIDP_HEADER_PARAM_MASK;
if (pending_req_param != param) {
DBG("Received DATA RTYPE doesn't match pending request RTYPE");
return;
}
switch (param) {
case HIDP_DATA_RTYPE_FEATURE:
case HIDP_DATA_RTYPE_INPUT:
case HIDP_DATA_RTYPE_OUTPUT:
if (pending_req_type == HIDP_TRANS_GET_REPORT)
uhid_send_get_report_reply(idev, data + 1, size - 1,
idev->report_rsp_id, 0);
else
uhid_send_set_report_reply(idev, idev->report_rsp_id,
0);
break;
case HIDP_DATA_RTYPE_OTHER:
DBG("Received DATA_RTYPE_OTHER");
break;
default:
hidp_send_ctrl_message(idev, HIDP_TRANS_HANDSHAKE |
HIDP_HSHK_ERR_INVALID_PARAMETER, NULL, 0);
break;
}
idev->report_req_pending = 0;
if (idev->report_req_timer > 0) {
timeout_remove(idev->report_req_timer);
idev->report_req_timer = 0;
}
idev->report_rsp_id = 0;
}
static bool hidp_recv_ctrl_message(GIOChannel *chan, struct input_device *idev)
{
int fd;
ssize_t len;
uint8_t hdr, type, param;
uint8_t data[UHID_DATA_MAX + 1];
fd = g_io_channel_unix_get_fd(chan);
len = read(fd, data, sizeof(data));
if (len < 0) {
error("BT socket read error: %s (%d)", strerror(errno), errno);
return false;
}
if (len == 0) {
DBG("BT socket read returned 0 bytes");
return true;
}
input_device_idle_reset(idev);
hdr = data[0];
type = hdr & HIDP_HEADER_TRANS_MASK;
param = hdr & HIDP_HEADER_PARAM_MASK;
switch (type) {
case HIDP_TRANS_HANDSHAKE:
hidp_recv_ctrl_handshake(idev, param);
break;
case HIDP_TRANS_HID_CONTROL:
hidp_recv_ctrl_hid_control(idev, param);
break;
case HIDP_TRANS_DATA:
hidp_recv_ctrl_data(idev, param, data, len);
break;
default:
error("unsupported HIDP control message");
hidp_send_ctrl_message(idev, HIDP_TRANS_HANDSHAKE |
HIDP_HSHK_ERR_UNSUPPORTED_REQUEST, NULL, 0);
break;
}
return true;
}
static gboolean ctrl_watch_cb(GIOChannel *chan, GIOCondition cond, gpointer data)
{
struct input_device *idev = data;
char address[18];
if (cond & G_IO_IN) {
if (hidp_recv_ctrl_message(chan, idev) && (cond == G_IO_IN))
return TRUE;
}
ba2str(&idev->dst, address);
DBG("Device %s disconnected", address);
/* Checking for intr_watch avoids a double g_io_channel_shutdown since
* it's likely that intr_watch_cb has been queued for dispatching in
* this mainloop iteration */
if ((cond & (G_IO_HUP | G_IO_ERR)) && idev->intr_watch)
g_io_channel_shutdown(chan, TRUE, NULL);
idev->ctrl_watch = 0;
if (idev->ctrl_io) {
g_io_channel_unref(idev->ctrl_io);
idev->ctrl_io = NULL;
}
/* Close interrupt channel */
if (idev->intr_io && !(cond & G_IO_NVAL))
g_io_channel_shutdown(idev->intr_io, TRUE, NULL);
/* It's possible this is triggered while the intr channel is not even
* connected yet, therefore we are still in the connecting state.
*/
if (btd_service_get_state(idev->service) ==
BTD_SERVICE_STATE_CONNECTING)
btd_service_connecting_complete(idev->service, -EIO);
if (!idev->intr_io && idev->virtual_cable_unplug)
virtual_cable_unplug(idev);
return FALSE;
}
#define REPORT_REQ_TIMEOUT 3
static bool hidp_report_req_timeout(gpointer data)
{
struct input_device *idev = data;
uint8_t pending_req_type;
const char *req_type_str;
char address[18];
ba2str(&idev->dst, address);
pending_req_type = idev->report_req_pending & HIDP_HEADER_TRANS_MASK;
switch (pending_req_type) {
case HIDP_TRANS_GET_REPORT:
req_type_str = "GET_REPORT";
uhid_send_get_report_reply(idev, NULL, 0, idev->report_rsp_id,
ETIMEDOUT);
break;
case HIDP_TRANS_SET_REPORT:
req_type_str = "SET_REPORT";
uhid_send_set_report_reply(idev, idev->report_rsp_id,
ETIMEDOUT);
break;
default:
/* Should never happen */
req_type_str = "OTHER_TRANS";
break;
}
error("Device %s HIDP %s request timed out", address, req_type_str);
idev->report_req_pending = 0;
idev->report_req_timer = 0;
idev->report_rsp_id = 0;
return FALSE;
}
static void hidp_send_output(struct uhid_event *ev, void *user_data)
{
struct input_device *idev = user_data;
uint8_t hdr = HIDP_TRANS_DATA | HIDP_DATA_RTYPE_OUTPUT;
bool sent;
DBG("");
sent = hidp_send_intr_message(idev, hdr, ev->u.output.data,
ev->u.output.size);
if (!sent)
uhid_disconnect(idev, true);
}
static void hidp_send_set_report(struct uhid_event *ev, void *user_data)
{
struct input_device *idev = user_data;
uint8_t hdr;
bool sent;
DBG("");
switch (ev->u.set_report.rtype) {
case UHID_FEATURE_REPORT:
hdr = HIDP_TRANS_SET_REPORT | HIDP_DATA_RTYPE_FEATURE;
break;
case UHID_INPUT_REPORT:
hdr = HIDP_TRANS_SET_REPORT | HIDP_DATA_RTYPE_INPUT;
break;
case UHID_OUTPUT_REPORT:
hdr = HIDP_TRANS_SET_REPORT | HIDP_DATA_RTYPE_OUTPUT;
break;
default:
DBG("Unsupported HID report type %u", ev->u.set_report.rtype);
return;
}
if (idev->report_req_pending) {
DBG("Old GET_REPORT or SET_REPORT still pending");
uhid_send_set_report_reply(idev, ev->u.set_report.id, EBUSY);
return;
}
sent = hidp_send_ctrl_message(idev, hdr, ev->u.set_report.data,
ev->u.set_report.size);
if (sent) {
idev->report_req_pending = hdr;
idev->report_req_timer =
timeout_add_seconds(REPORT_REQ_TIMEOUT,
hidp_report_req_timeout, idev, NULL);
idev->report_rsp_id = ev->u.set_report.id;
} else {
uhid_send_set_report_reply(idev, ev->u.set_report.id, EIO);
/* Force UHID_DESTROY on error */
uhid_disconnect(idev, true);
}
}
static void hidp_send_get_report(struct uhid_event *ev, void *user_data)
{
struct input_device *idev = user_data;
uint8_t hdr;
bool sent;
DBG("");
if (idev->report_req_pending) {
DBG("Old GET_REPORT or SET_REPORT still pending");
uhid_send_get_report_reply(idev, NULL, 0, ev->u.get_report.id,
EBUSY);
return;
}
/* Send GET_REPORT on control channel */
switch (ev->u.get_report.rtype) {
case UHID_FEATURE_REPORT:
hdr = HIDP_TRANS_GET_REPORT | HIDP_DATA_RTYPE_FEATURE;
break;
case UHID_INPUT_REPORT:
hdr = HIDP_TRANS_GET_REPORT | HIDP_DATA_RTYPE_INPUT;
break;
case UHID_OUTPUT_REPORT:
hdr = HIDP_TRANS_GET_REPORT | HIDP_DATA_RTYPE_OUTPUT;
break;
default:
DBG("Unsupported HID report type %u", ev->u.get_report.rtype);
return;
}
sent = hidp_send_ctrl_message(idev, hdr, &ev->u.get_report.rnum,
sizeof(ev->u.get_report.rnum));
if (sent) {
idev->report_req_pending = hdr;
idev->report_req_timer =
timeout_add_seconds(REPORT_REQ_TIMEOUT,
hidp_report_req_timeout, idev,
NULL);
idev->report_rsp_id = ev->u.get_report.id;
} else {
uhid_send_get_report_reply(idev, NULL, 0, ev->u.get_report.id,
EIO);
/* Force UHID_DESTROY on error */
uhid_disconnect(idev, true);
}
}
static void epox_endian_quirk(unsigned char *data, int size)
{
/* USAGE_PAGE (Keyboard) 05 07
* USAGE_MINIMUM (0) 19 00
* USAGE_MAXIMUM (65280) 2A 00 FF <= must be FF 00
* LOGICAL_MINIMUM (0) 15 00
* LOGICAL_MAXIMUM (65280) 26 00 FF <= must be FF 00
*/
unsigned char pattern[] = { 0x05, 0x07, 0x19, 0x00, 0x2a, 0x00, 0xff,
0x15, 0x00, 0x26, 0x00, 0xff };
unsigned int i;
if (!data)
return;
for (i = 0; i < size - sizeof(pattern); i++) {
if (!memcmp(data + i, pattern, sizeof(pattern))) {
data[i + 5] = 0xff;
data[i + 6] = 0x00;
data[i + 10] = 0xff;
data[i + 11] = 0x00;
}
}
}
static int create_hid_dev_name(const sdp_record_t *rec,
struct hidp_connadd_req *req)
{
char sdesc[sizeof(req->name) / 2];
if (sdp_get_service_desc(rec, sdesc, sizeof(sdesc)) == 0) {
char pname[sizeof(req->name) / 2];
if (sdp_get_provider_name(rec, pname, sizeof(pname)) == 0 &&
strncmp(sdesc, pname, 5) != 0)
snprintf(req->name, sizeof(req->name), "%s %s",
pname, sdesc);
else
snprintf(req->name, sizeof(req->name), "%s", sdesc);
} else {
return sdp_get_service_name(rec, req->name, sizeof(req->name));
}
return 0;
}
/* See HID profile specification v1.0, "7.11.6 HIDDescriptorList" for details
* on the attribute format. */
static int extract_hid_desc_data(const sdp_record_t *rec,
struct hidp_connadd_req *req)
{
sdp_data_t *d;
d = sdp_data_get(rec, SDP_ATTR_HID_DESCRIPTOR_LIST);
if (!d)
goto invalid_desc;
if (!SDP_IS_SEQ(d->dtd))
goto invalid_desc;
/* First HIDDescriptor */
d = d->val.dataseq;
if (!SDP_IS_SEQ(d->dtd))
goto invalid_desc;
/* ClassDescriptorType */
d = d->val.dataseq;
if (d->dtd != SDP_UINT8)
goto invalid_desc;
/* ClassDescriptorData */
d = d->next;
if (!d || !SDP_IS_TEXT_STR(d->dtd))
goto invalid_desc;
req->rd_data = g_try_malloc0(d->unitSize);
if (req->rd_data) {
memcpy(req->rd_data, d->val.str, d->unitSize);
req->rd_size = d->unitSize;
epox_endian_quirk(req->rd_data, req->rd_size);
}
return 0;
invalid_desc:
error("Missing or invalid HIDDescriptorList SDP attribute");
return -EINVAL;
}
static int extract_hid_record(struct input_device *idev,
struct hidp_connadd_req *req)
{
sdp_data_t *pdlist;
uint8_t attr_val;
int err;
if (!idev->rec)
return -ENOENT;
err = create_hid_dev_name(idev->rec, req);
if (err < 0)
DBG("No valid Service Name or Service Description found");
pdlist = sdp_data_get(idev->rec, SDP_ATTR_HID_PARSER_VERSION);
req->parser = pdlist ? pdlist->val.uint16 : 0x0100;
pdlist = sdp_data_get(idev->rec, SDP_ATTR_HID_DEVICE_SUBCLASS);
req->subclass = pdlist ? pdlist->val.uint8 : 0;
pdlist = sdp_data_get(idev->rec, SDP_ATTR_HID_COUNTRY_CODE);
req->country = pdlist ? pdlist->val.uint8 : 0;
pdlist = sdp_data_get(idev->rec, SDP_ATTR_HID_VIRTUAL_CABLE);
attr_val = pdlist ? pdlist->val.uint8 : 0;
if (attr_val)
req->flags |= (1 << HIDP_VIRTUAL_CABLE_UNPLUG);
pdlist = sdp_data_get(idev->rec, SDP_ATTR_HID_BOOT_DEVICE);
attr_val = pdlist ? pdlist->val.uint8 : 0;
if (attr_val)
req->flags |= (1 << HIDP_BOOT_PROTOCOL_MODE);
err = extract_hid_desc_data(idev->rec, req);
if (err < 0)
return err;
return 0;
}
static int ioctl_connadd(struct hidp_connadd_req *req)
{
int ctl, err = 0;
ctl = socket(AF_BLUETOOTH, SOCK_RAW, BTPROTO_HIDP);
if (ctl < 0)
return -errno;
if (ioctl(ctl, HIDPCONNADD, req) < 0)
err = -errno;
close(ctl);
return err;
}
static bool ioctl_is_connected(struct input_device *idev)
{
struct hidp_conninfo ci;
int ctl;
/* Standard HID */
ctl = socket(AF_BLUETOOTH, SOCK_RAW, BTPROTO_HIDP);
if (ctl < 0) {
error("Can't open HIDP control socket");
return false;
}
memset(&ci, 0, sizeof(ci));
bacpy(&ci.bdaddr, &idev->dst);
if (ioctl(ctl, HIDPGETCONNINFO, &ci) < 0) {
error("Can't get HIDP connection info");
close(ctl);
return false;
}
close(ctl);
if (ci.state != BT_CONNECTED)
return false;
return true;
}
static int ioctl_disconnect(struct input_device *idev, uint32_t flags)
{
struct hidp_conndel_req req;
struct hidp_conninfo ci;
int ctl, err = 0;
ctl = socket(AF_BLUETOOTH, SOCK_RAW, BTPROTO_HIDP);
if (ctl < 0) {
error("Can't open HIDP control socket");
return -errno;
}
memset(&ci, 0, sizeof(ci));
bacpy(&ci.bdaddr, &idev->dst);
if ((ioctl(ctl, HIDPGETCONNINFO, &ci) < 0) ||
(ci.state != BT_CONNECTED)) {
close(ctl);
return -ENOTCONN;
}
memset(&req, 0, sizeof(req));
bacpy(&req.bdaddr, &idev->dst);
req.flags = flags;
if (ioctl(ctl, HIDPCONNDEL, &req) < 0) {
err = -errno;
error("Can't delete the HID device: %s (%d)",
strerror(-err), -err);
}
close(ctl);
return err;
}
static int uhid_connadd(struct input_device *idev, struct hidp_connadd_req *req)
{
int err;
if (bt_uhid_created(idev->uhid))
return bt_uhid_replay(idev->uhid);
err = bt_uhid_create(idev->uhid, req->name, &idev->src, &idev->dst,
req->vendor, req->product, req->version,
req->country, idev->type,
req->rd_data, req->rd_size);
if (err < 0) {
error("bt_uhid_create: %s", strerror(-err));
return err;
}
bt_uhid_register(idev->uhid, UHID_OUTPUT, hidp_send_output, idev);
bt_uhid_register(idev->uhid, UHID_GET_REPORT, hidp_send_get_report,
idev);
bt_uhid_register(idev->uhid, UHID_SET_REPORT, hidp_send_set_report,
idev);
return err;
}
static gboolean encrypt_notify(GIOChannel *io, GIOCondition condition,
gpointer data)
{
struct input_device *idev = data;
int err;
DBG("");
if (idev->uhid)
err = uhid_connadd(idev, idev->req);
else
err = ioctl_connadd(idev->req);
if (err < 0) {
error("ioctl_connadd(): %s (%d)", strerror(-err), -err);
if (idev->ctrl_io) {
g_io_channel_shutdown(idev->ctrl_io, FALSE, NULL);
g_io_channel_unref(idev->ctrl_io);
idev->ctrl_io = NULL;
}
if (idev->intr_io) {
g_io_channel_shutdown(idev->intr_io, FALSE, NULL);
g_io_channel_unref(idev->intr_io);
idev->intr_io = NULL;
}
}
idev->sec_watch = 0;
g_free(idev->req->rd_data);
g_free(idev->req);
idev->req = NULL;
return FALSE;
}
static int hidp_add_connection(struct input_device *idev)
{
struct hidp_connadd_req *req;
bool cable_pairing;
GError *gerr = NULL;
int err;
req = g_new0(struct hidp_connadd_req, 1);
req->ctrl_sock = g_io_channel_unix_get_fd(idev->ctrl_io);
req->intr_sock = g_io_channel_unix_get_fd(idev->intr_io);
req->flags = 0;
req->idle_to = idle_timeout;
err = extract_hid_record(idev, req);
if (err < 0) {
error("Could not parse HID SDP record: %s (%d)", strerror(-err),
-err);
goto cleanup;
}
req->vendor = btd_device_get_vendor(idev->device);
req->product = btd_device_get_product(idev->device);
req->version = btd_device_get_version(idev->device);
if (device_name_known(idev->device))
device_get_name(idev->device, req->name, sizeof(req->name));
cable_pairing = device_is_cable_pairing(idev->device);
/* Make sure the device is bonded if required */
if (!cable_pairing && classic_bonded_only &&
!input_device_bonded(idev)) {
error("Rejected connection from !bonded device %s", idev->path);
goto cleanup;
}
/* Encryption is mandatory for keyboards */
/* Some platforms may choose to require encryption for all devices */
/* Note that this only matters for pre 2.1 devices as otherwise the */
/* device is encrypted by default by the lower layers */
/* Don't enforce encryption for cable paired devices because they */
/* don't support it */
if (!cable_pairing && (classic_bonded_only ||
idev->type == BT_UHID_KEYBOARD)) {
if (!bt_io_set(idev->intr_io, &gerr,
BT_IO_OPT_SEC_LEVEL, BT_IO_SEC_MEDIUM,
BT_IO_OPT_INVALID)) {
error("btio: %s", gerr->message);
g_error_free(gerr);
err = -EFAULT;
goto cleanup;
}
idev->req = req;
idev->sec_watch = g_io_add_watch(idev->intr_io, G_IO_OUT,
encrypt_notify, idev);
return 0;
}
if (idev->uhid)
err = uhid_connadd(idev, req);
else
err = ioctl_connadd(req);
cleanup:
g_free(req->rd_data);
g_free(req);
return err;
}
static bool is_connected(struct input_device *idev)
{
if (idev->uhid)
return (idev->intr_io != NULL && idev->ctrl_io != NULL);
else
return ioctl_is_connected(idev);
}
static int connection_disconnect(struct input_device *idev, uint32_t flags)
{
int sock;
if (!is_connected(idev))
return -ENOTCONN;
/* Standard HID disconnect
* Intr channel must be disconnected before ctrl channel, so only
* disconnect intr here, ctrl is disconnected in intr_watch_cb.
*/
if (idev->intr_io) {
sock = g_io_channel_unix_get_fd(idev->intr_io);
shutdown(sock, SHUT_WR);
}
if (flags & (1 << HIDP_VIRTUAL_CABLE_UNPLUG)) {
idev->virtual_cable_unplug = true;
if (idev->uhid)
hidp_send_ctrl_message(idev, HIDP_TRANS_HID_CONTROL |
HIDP_CTRL_VIRTUAL_CABLE_UNPLUG,
NULL, 0);
}
if (idev->uhid)
return uhid_disconnect(idev, false);
else
return ioctl_disconnect(idev, flags);
}
static bool is_device_sdp_disable(const sdp_record_t *rec)
{
sdp_data_t *data;
data = sdp_data_get(rec, SDP_ATTR_HID_SDP_DISABLE);
return data && data->val.uint8;
}
static enum reconnect_mode_t hid_reconnection_mode(bool reconnect_initiate,
bool normally_connectable)
{
if (!reconnect_initiate && !normally_connectable)
return RECONNECT_NONE;
else if (!reconnect_initiate && normally_connectable)
return RECONNECT_HOST;
else if (reconnect_initiate && !normally_connectable)
return RECONNECT_DEVICE;
else /* (reconnect_initiate && normally_connectable) */
return RECONNECT_ANY;
}
static void extract_hid_props(struct input_device *idev,
const sdp_record_t *rec)
{
/* Extract HID connectability */
bool reconnect_initiate, normally_connectable;
sdp_data_t *pdlist;
/* HIDNormallyConnectable is optional and assumed FALSE if not
* present.
*/
pdlist = sdp_data_get(rec, SDP_ATTR_HID_RECONNECT_INITIATE);
reconnect_initiate = pdlist ? pdlist->val.uint8 : TRUE;
pdlist = sdp_data_get(rec, SDP_ATTR_HID_NORMALLY_CONNECTABLE);
normally_connectable = pdlist ? pdlist->val.uint8 : FALSE;
/* Update local values */
idev->reconnect_mode =
hid_reconnection_mode(reconnect_initiate, normally_connectable);
}
static void input_device_update_rec(struct input_device *idev)
{
struct btd_profile *p = btd_service_get_profile(idev->service);
const sdp_record_t *rec;
rec = btd_device_get_record(idev->device, p->remote_uuid);
if (!rec || idev->rec == rec)
return;
idev->rec = rec;
idev->disable_sdp = is_device_sdp_disable(rec);
/* Initialize device properties */
extract_hid_props(idev, rec);
if (idev->disable_sdp)
device_set_refresh_discovery(idev->device, false);
}
static int input_device_connected(struct input_device *idev)
{
int err;
if (idev->intr_io == NULL || idev->ctrl_io == NULL)
return -ENOTCONN;
/* Attempt to update SDP record if it had changed */
input_device_update_rec(idev);
err = hidp_add_connection(idev);
if (err < 0)
return err;
btd_service_connecting_complete(idev->service, 0);
return 0;
}
static void interrupt_connect_cb(GIOChannel *chan, GError *conn_err,
gpointer user_data)
{
struct input_device *idev = user_data;
GIOCondition cond = G_IO_HUP | G_IO_ERR | G_IO_NVAL;
int err;
if (conn_err) {
err = -EIO;
goto failed;
}
err = input_device_connected(idev);
if (err < 0)
goto failed;
if (idev->uhid)
cond |= G_IO_IN;
idev->intr_watch = g_io_add_watch(idev->intr_io, cond, intr_watch_cb,
idev);
return;
failed:
btd_service_connecting_complete(idev->service, err);
/* So we guarantee the interrupt channel is closed before the
* control channel (if we only do unref GLib will close it only
* after returning control to the mainloop */
if (!conn_err)
g_io_channel_shutdown(idev->intr_io, FALSE, NULL);
g_io_channel_unref(idev->intr_io);
idev->intr_io = NULL;
if (idev->ctrl_io) {
g_io_channel_unref(idev->ctrl_io);
idev->ctrl_io = NULL;
}
}
static void control_connect_cb(GIOChannel *chan, GError *conn_err,
gpointer user_data)
{
struct input_device *idev = user_data;
GIOCondition cond = G_IO_HUP | G_IO_ERR | G_IO_NVAL;
GIOChannel *io;
GError *err = NULL;
if (conn_err) {
error("%s", conn_err->message);
goto failed;
}
/* Connect to the HID interrupt channel */
io = bt_io_connect(interrupt_connect_cb, idev,
NULL, &err,
BT_IO_OPT_SOURCE_BDADDR, &idev->src,
BT_IO_OPT_DEST_BDADDR, &idev->dst,
BT_IO_OPT_PSM, L2CAP_PSM_HIDP_INTR,
BT_IO_OPT_SEC_LEVEL, BT_IO_SEC_LOW,
BT_IO_OPT_INVALID);
if (!io) {
error("%s", err->message);
g_error_free(err);
goto failed;
}
idev->intr_io = io;
if (idev->uhid)
cond |= G_IO_IN;
idev->ctrl_watch = g_io_add_watch(idev->ctrl_io, cond, ctrl_watch_cb,
idev);
return;
failed:
btd_service_connecting_complete(idev->service, -EIO);
g_io_channel_unref(idev->ctrl_io);
idev->ctrl_io = NULL;
}
static int dev_connect(struct input_device *idev)
{
GError *err = NULL;
GIOChannel *io;
BtIOSecLevel sec_level;
if (idev->disable_sdp)
bt_clear_cached_session(&idev->src, &idev->dst);
/* encrypt connection if device is bonded */
if (input_device_bonded(idev))
sec_level = BT_IO_SEC_MEDIUM;
else
sec_level = BT_IO_SEC_LOW;
io = bt_io_connect(control_connect_cb, idev,
NULL, &err,
BT_IO_OPT_SOURCE_BDADDR, &idev->src,
BT_IO_OPT_DEST_BDADDR, &idev->dst,
BT_IO_OPT_PSM, L2CAP_PSM_HIDP_CTRL,
BT_IO_OPT_SEC_LEVEL, sec_level,
BT_IO_OPT_INVALID);
idev->ctrl_io = io;
if (err == NULL)
return 0;
error("%s", err->message);
g_error_free(err);
return -EIO;
}
static bool input_device_auto_reconnect(gpointer user_data)
{
struct input_device *idev = user_data;
DBG("path=%s, attempt=%d", idev->path, idev->reconnect_attempt);
/* Stop the recurrent reconnection attempts if the device is
* reconnected or is marked for removal.
*/
if (device_is_temporary(idev->device) ||
btd_device_is_connected(idev->device))
goto bail;
/* Only attempt an auto-reconnect for at most 3 minutes (6 * 30s). */
if (idev->reconnect_attempt >= 6)
goto bail;
/* Check if the profile is already connected. */
if (idev->ctrl_io)
goto bail;
if (is_connected(idev))
goto bail;
idev->reconnect_attempt++;
dev_connect(idev);
return TRUE;
bail:
idev->reconnect_timer = 0;
return FALSE;
}
static const char * const _reconnect_mode_str[] = {
"none",
"device",
"host",
"any"
};
static const char *reconnect_mode_to_string(const enum reconnect_mode_t mode)
{
return _reconnect_mode_str[mode];
}
static void input_device_enter_reconnect_mode(struct input_device *idev)
{
DBG("path=%s reconnect_mode=%s", idev->path,
reconnect_mode_to_string(idev->reconnect_mode));
/* Make sure the device is bonded if required */
if (classic_bonded_only && !input_device_bonded(idev))
return;
/* Only attempt an auto-reconnect when the device is required to
* accept reconnections from the host.
*/
if (idev->reconnect_mode != RECONNECT_ANY &&
idev->reconnect_mode != RECONNECT_HOST)
return;
/* If the device is temporary we are not required to reconnect
* with the device. This is likely the case of a removing device.
*/
if (device_is_temporary(idev->device) ||
btd_device_is_connected(idev->device))
return;
if (idev->reconnect_timer > 0)
timeout_remove(idev->reconnect_timer);
DBG("registering auto-reconnect");
idev->reconnect_attempt = 0;
idev->reconnect_timer = timeout_add_seconds(30,
input_device_auto_reconnect, idev,
NULL);
}
int input_device_connect(struct btd_service *service)
{
struct input_device *idev;
DBG("");
idev = btd_service_get_user_data(service);
if (idev->ctrl_io)
return -EBUSY;
if (is_connected(idev))
return -EALREADY;
return dev_connect(idev);
}
int input_device_disconnect(struct btd_service *service)
{
struct input_device *idev;
int err, flags;
DBG("");
idev = btd_service_get_user_data(service);
flags = device_is_temporary(idev->device) ?
(1 << HIDP_VIRTUAL_CABLE_UNPLUG) : 0;
err = connection_disconnect(idev, flags);
if (err < 0)
return err;
return 0;
}
static struct input_device *input_device_new(struct btd_service *service)
{
struct btd_device *device = btd_service_get_device(service);
const char *path = device_get_path(device);
struct btd_adapter *adapter = device_get_adapter(device);
struct input_device *idev;
idev = g_new0(struct input_device, 1);
bacpy(&idev->src, btd_adapter_get_address(adapter));
bacpy(&idev->dst, device_get_address(device));
idev->service = btd_service_ref(service);
idev->device = btd_device_ref(device);
idev->path = g_strdup(path);
idev->type = bt_uhid_icon_to_type(btd_device_get_icon(device));
input_device_update_rec(idev);
return idev;
}
static gboolean property_get_reconnect_mode(
const GDBusPropertyTable *property,
DBusMessageIter *iter, void *data)
{
struct input_device *idev = data;
const char *str_mode = reconnect_mode_to_string(idev->reconnect_mode);
dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &str_mode);
return TRUE;
}
static const GDBusPropertyTable input_properties[] = {
{ "ReconnectMode", "s", property_get_reconnect_mode },
{ }
};
int input_device_register(struct btd_service *service)
{
struct btd_device *device = btd_service_get_device(service);
const char *path = device_get_path(device);
struct input_device *idev;
DBG("%s", path);
idev = input_device_new(service);
if (!idev)
return -EINVAL;
if (uhid_state) {
idev->uhid = bt_uhid_new_default();
if (!idev->uhid) {
DBG("bt_uhid_new_default failed, switching to kernel "
"mode");
uhid_state = UHID_DISABLED;
}
}
if (g_dbus_register_interface(btd_get_dbus_connection(),
idev->path, INPUT_INTERFACE,
NULL, NULL,
input_properties, idev,
NULL) == FALSE) {
error("Unable to register %s interface", INPUT_INTERFACE);
input_device_free(idev);
return -EINVAL;
}
btd_service_set_user_data(service, idev);
device_set_wake_support(device, true);
if (device_is_cable_pairing(device)) {
struct btd_adapter *adapter = device_get_adapter(device);
const bdaddr_t *bdaddr = btd_adapter_get_address(adapter);
server_set_cable_pairing(bdaddr, true);
}
return 0;
}
static struct input_device *find_device(const bdaddr_t *src,
const bdaddr_t *dst)
{
struct btd_device *device;
struct btd_service *service;
device = btd_adapter_find_device(adapter_find(src), dst, BDADDR_BREDR);
if (device == NULL)
return NULL;
service = btd_device_get_service(device, HID_UUID);
if (service == NULL)
return NULL;
return btd_service_get_user_data(service);
}
void input_device_unregister(struct btd_service *service)
{
struct btd_device *device = btd_service_get_device(service);
const char *path = device_get_path(device);
struct input_device *idev = btd_service_get_user_data(service);
DBG("%s", path);
g_dbus_unregister_interface(btd_get_dbus_connection(),
idev->path, INPUT_INTERFACE);
input_device_free(idev);
}
static int input_device_connadd(struct input_device *idev)
{
int err;
err = input_device_connected(idev);
if (err == 0)
return 0;
if (idev->ctrl_io) {
g_io_channel_shutdown(idev->ctrl_io, FALSE, NULL);
g_io_channel_unref(idev->ctrl_io);
idev->ctrl_io = NULL;
}
if (idev->intr_io) {
g_io_channel_shutdown(idev->intr_io, FALSE, NULL);
g_io_channel_unref(idev->intr_io);
idev->intr_io = NULL;
}
return err;
}
bool input_device_exists(const bdaddr_t *src, const bdaddr_t *dst)
{
if (find_device(src, dst))
return true;
return false;
}
int input_device_set_channel(const bdaddr_t *src, const bdaddr_t *dst, int psm,
GIOChannel *io)
{
struct input_device *idev = find_device(src, dst);
GIOCondition cond = G_IO_HUP | G_IO_ERR | G_IO_NVAL;
DBG("idev %p psm %d", idev, psm);
if (!idev)
return -ENOENT;
if (uhid_state)
cond |= G_IO_IN;
switch (psm) {
case L2CAP_PSM_HIDP_CTRL:
if (idev->ctrl_io)
return -EALREADY;
idev->ctrl_io = g_io_channel_ref(io);
idev->ctrl_watch = g_io_add_watch(idev->ctrl_io, cond,
ctrl_watch_cb, idev);
break;
case L2CAP_PSM_HIDP_INTR:
if (idev->intr_io)
return -EALREADY;
idev->intr_io = g_io_channel_ref(io);
idev->intr_watch = g_io_add_watch(idev->intr_io, cond,
intr_watch_cb, idev);
break;
}
if (idev->intr_io && idev->ctrl_io)
input_device_connadd(idev);
return 0;
}
int input_device_close_channels(const bdaddr_t *src, const bdaddr_t *dst)
{
struct input_device *idev = find_device(src, dst);
if (!idev)
return -ENOENT;
if (idev->intr_io)
g_io_channel_shutdown(idev->intr_io, TRUE, NULL);
if (idev->ctrl_io)
g_io_channel_shutdown(idev->ctrl_io, TRUE, NULL);
return 0;
}
|