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
|
/*
*
* BlueZ - Bluetooth protocol stack for Linux
*
* Copyright (C) 2000-2002 Maxim Krasnyansky <maxk@qualcomm.com>
* Copyright (C) 2003-2011 Marcel Holtmann <marcel@holtmann.org>
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#include "parser/parser.h"
#include "parser/sdp.h"
#include "lib/hci.h"
#include "lib/l2cap.h"
#include "lib/a2mp.h"
typedef struct {
uint16_t handle;
struct frame frm;
} handle_info;
#define HANDLE_TABLE_SIZE 10
static handle_info handle_table[HANDLE_TABLE_SIZE];
typedef struct {
uint16_t handle;
uint16_t cid;
uint16_t psm;
uint16_t num;
uint8_t mode;
uint8_t ext_ctrl;
} cid_info;
#define CID_TABLE_SIZE 20
static cid_info cid_table[2][CID_TABLE_SIZE];
#define SCID cid_table[0]
#define DCID cid_table[1]
/* Can we move this to l2cap.h? */
struct features {
char *name;
int flag;
};
static struct features l2cap_features[] = {
{ "Flow control mode", L2CAP_FEAT_FLOWCTL },
{ "Retransmission mode", L2CAP_FEAT_RETRANS },
{ "Bi-directional QoS", L2CAP_FEAT_BIDIR_QOS },
{ "Enhanced Retransmission mode", L2CAP_FEAT_ERTM },
{ "Streaming mode", L2CAP_FEAT_STREAMING },
{ "FCS Option", L2CAP_FEAT_FCS },
{ "Extended Flow Specification", L2CAP_FEAT_EXT_FLOW },
{ "Fixed Channels", L2CAP_FEAT_FIXED_CHAN },
{ "Extended Window Size", L2CAP_FEAT_EXT_WINDOW },
{ "Unicast Connectless Data Reception", L2CAP_FEAT_UCD },
{ 0 }
};
static struct features l2cap_fix_chan[] = {
{ "L2CAP Signalling Channel", L2CAP_FC_L2CAP },
{ "L2CAP Connless", L2CAP_FC_CONNLESS },
{ "AMP Manager Protocol", L2CAP_FC_A2MP },
{ 0 }
};
static struct frame *add_handle(uint16_t handle)
{
register handle_info *t = handle_table;
register int i;
for (i = 0; i < HANDLE_TABLE_SIZE; i++)
if (!t[i].handle) {
t[i].handle = handle;
return &t[i].frm;
}
return NULL;
}
static struct frame *get_frame(uint16_t handle)
{
register handle_info *t = handle_table;
register int i;
for (i = 0; i < HANDLE_TABLE_SIZE; i++)
if (t[i].handle == handle)
return &t[i].frm;
return add_handle(handle);
}
static void add_cid(int in, uint16_t handle, uint16_t cid, uint16_t psm)
{
register cid_info *table = cid_table[in];
register int i, pos = -1;
uint16_t num = 1;
for (i = 0; i < CID_TABLE_SIZE; i++) {
if ((pos < 0 && !table[i].cid) || table[i].cid == cid)
pos = i;
if (table[i].psm == psm)
num++;
}
if (pos >= 0) {
table[pos].handle = handle;
table[pos].cid = cid;
table[pos].psm = psm;
table[pos].num = num;
table[pos].mode = 0;
}
}
static void del_cid(int in, uint16_t dcid, uint16_t scid)
{
register int t, i;
uint16_t cid[2];
if (!in) {
cid[0] = dcid;
cid[1] = scid;
} else {
cid[0] = scid;
cid[1] = dcid;
}
for (t = 0; t < 2; t++) {
for (i = 0; i < CID_TABLE_SIZE; i++)
if (cid_table[t][i].cid == cid[t]) {
cid_table[t][i].handle = 0;
cid_table[t][i].cid = 0;
cid_table[t][i].psm = 0;
cid_table[t][i].num = 0;
cid_table[t][i].mode = 0;
break;
}
}
}
static void del_handle(uint16_t handle)
{
register int t, i;
for (t = 0; t < 2; t++) {
for (i = 0; i < CID_TABLE_SIZE; i++)
if (cid_table[t][i].handle == handle) {
cid_table[t][i].handle = 0;
cid_table[t][i].cid = 0;
cid_table[t][i].psm = 0;
cid_table[t][i].num = 0;
cid_table[t][i].mode = 0;
break;
}
}
}
static uint16_t get_psm(int in, uint16_t handle, uint16_t cid)
{
register cid_info *table = cid_table[in];
register int i;
for (i = 0; i < CID_TABLE_SIZE; i++)
if (table[i].handle == handle && table[i].cid == cid)
return table[i].psm;
return parser.defpsm;
}
static uint16_t get_num(int in, uint16_t handle, uint16_t cid)
{
register cid_info *table = cid_table[in];
register int i;
for (i = 0; i < CID_TABLE_SIZE; i++)
if (table[i].handle == handle && table[i].cid == cid)
return table[i].num;
return 0;
}
static void set_mode(int in, uint16_t handle, uint16_t cid, uint8_t mode)
{
register cid_info *table = cid_table[in];
register int i;
for (i = 0; i < CID_TABLE_SIZE; i++)
if (table[i].handle == handle && table[i].cid == cid)
table[i].mode = mode;
}
static uint8_t get_mode(int in, uint16_t handle, uint16_t cid)
{
register cid_info *table = cid_table[in];
register int i;
for (i = 0; i < CID_TABLE_SIZE; i++)
if (table[i].handle == handle && table[i].cid == cid)
return table[i].mode;
return 0;
}
static void set_ext_ctrl(int in, uint16_t handle, uint16_t cid,
uint8_t ext_ctrl)
{
register cid_info *table = cid_table[in];
register int i;
for (i = 0; i < CID_TABLE_SIZE; i++)
if (table[i].handle == handle && table[i].cid == cid)
table[i].ext_ctrl = ext_ctrl;
}
static uint8_t get_ext_ctrl(int in, uint16_t handle, uint16_t cid)
{
register cid_info *table = cid_table[in];
register int i;
for (i = 0; i < CID_TABLE_SIZE; i++)
if (table[i].handle == handle && table[i].cid == cid)
return table[i].ext_ctrl;
return 0;
}
static uint32_t get_val(uint8_t *ptr, uint8_t len)
{
switch (len) {
case 1:
return *ptr;
case 2:
return btohs(bt_get_unaligned((uint16_t *) ptr));
case 4:
return btohl(bt_get_unaligned((uint32_t *) ptr));
}
return 0;
}
static char *reason2str(uint16_t reason)
{
switch (reason) {
case 0x0000:
return "Command not understood";
case 0x0001:
return "Signalling MTU exceeded";
case 0x0002:
return "Invalid CID in request";
default:
return "Reserved";
}
}
static char *a2mpreason2str(uint16_t reason)
{
switch (reason) {
case A2MP_COMMAND_NOT_RECOGNIZED:
return "Command not recognized";
default:
return "Reserved";
}
}
static char *connresult2str(uint16_t result)
{
switch (result) {
case 0x0000:
return "Connection successful";
case 0x0001:
return "Connection pending";
case 0x0002:
return "Connection refused - PSM not supported";
case 0x0003:
return "Connection refused - security block";
case 0x0004:
return "Connection refused - no resources available";
default:
return "Reserved";
}
}
static char *status2str(uint16_t status)
{
switch (status) {
case 0x0000:
return "No futher information available";
case 0x0001:
return "Authentication pending";
case 0x0002:
return "Authorization pending";
default:
return "Reserved";
}
}
static char *confresult2str(uint16_t result)
{
switch (result) {
case L2CAP_CONF_SUCCESS:
return "Success";
case L2CAP_CONF_UNACCEPT:
return "Failure - unacceptable parameters";
case L2CAP_CONF_REJECT:
return "Failure - rejected (no reason provided)";
case L2CAP_CONF_UNKNOWN:
return "Failure - unknown options";
case L2CAP_CONF_PENDING:
return "Pending";
case L2CAP_CONF_EFS_REJECT:
return "Failure - flowspec reject";
default:
return "Reserved";
}
}
static char *inforesult2str(uint16_t result)
{
switch (result) {
case 0x0000:
return "Success";
case 0x0001:
return "Not supported";
default:
return "Reserved";
}
}
static char *type2str(uint8_t type)
{
switch (type) {
case L2CAP_SERVTYPE_NOTRAFFIC:
return "No traffic";
case L2CAP_SERVTYPE_BESTEFFORT:
return "Best Effort";
case L2CAP_SERVTYPE_GUARANTEED:
return "Guaranteed";
default:
return "Reserved";
}
}
static char *mode2str(uint8_t mode)
{
switch (mode) {
case 0x00:
return "Basic";
case 0x01:
return "Retransmission";
case 0x02:
return "Flow control";
case 0x03:
return "Enhanced Retransmission";
case 0x04:
return "Streaming";
default:
return "Reserved";
}
}
static char *fcs2str(uint8_t fcs)
{
switch (fcs) {
case 0x00:
return "No FCS";
case 0x01:
return "CRC16 Check";
default:
return "Reserved";
}
}
static char *sar2str(uint8_t sar)
{
switch (sar) {
case L2CAP_SAR_UNSEGMENTED:
return "Unsegmented";
case L2CAP_SAR_START:
return "Start";
case L2CAP_SAR_END:
return "End";
case L2CAP_SAR_CONTINUE:
return "Continuation";
default:
return "Bad SAR";
}
}
static char *supervisory2str(uint8_t supervisory)
{
switch (supervisory) {
case L2CAP_SUPER_RR:
return "Receiver Ready (RR)";
case L2CAP_SUPER_REJ:
return "Reject (REJ)";
case L2CAP_SUPER_RNR:
return "Receiver Not Ready (RNR)";
case L2CAP_SUPER_SREJ:
return "Select Reject (SREJ)";
default:
return "Bad Supervisory";
}
}
static char *ampctrltype2str(uint8_t type)
{
switch (type) {
case HCI_BREDR:
return "BR-EDR";
case HCI_AMP:
return "802.11 AMP";
default:
return "Reserved";
}
}
static char *ampctrlstatus2str(uint8_t status)
{
switch (status) {
case AMP_CTRL_POWERED_DOWN:
return "Powered down";
case AMP_CTRL_BLUETOOTH_ONLY:
return "Bluetooth only";
case AMP_CTRL_NO_CAPACITY:
return "No capacity";
case AMP_CTRL_LOW_CAPACITY:
return "Low capacity";
case AMP_CTRL_MEDIUM_CAPACITY:
return "Medium capacity";
case AMP_CTRL_HIGH_CAPACITY:
return "High capacity";
case AMP_CTRL_FULL_CAPACITY:
return "Full capacity";
default:
return "Reserved";
}
}
static char *a2mpstatus2str(uint8_t status)
{
switch (status) {
case A2MP_STATUS_SUCCESS:
return "Success";
case A2MP_STATUS_INVALID_CTRL_ID:
return "Invalid Controller ID";
default:
return "Reserved";
}
}
static char *a2mpcplstatus2str(uint8_t status)
{
switch (status) {
case A2MP_STATUS_SUCCESS:
return "Success";
case A2MP_STATUS_INVALID_CTRL_ID:
return "Invalid Controller ID";
case A2MP_STATUS_UNABLE_START_LINK_CREATION:
return "Failed - Unable to start link creation";
case A2MP_STATUS_COLLISION_OCCURED:
return "Failed - Collision occured";
case A2MP_STATUS_DISCONN_REQ_RECVD:
return "Failed - Disconnect physical link received";
case A2MP_STATUS_PHYS_LINK_EXISTS:
return "Failed - Physical link already exists";
case A2MP_STATUS_SECURITY_VIOLATION:
return "Failed - Security violation";
default:
return "Reserved";
}
}
static char *a2mpdplstatus2str(uint8_t status)
{
switch (status) {
case A2MP_STATUS_SUCCESS:
return "Success";
case A2MP_STATUS_INVALID_CTRL_ID:
return "Invalid Controller ID";
case A2MP_STATUS_NO_PHYSICAL_LINK_EXISTS:
return "Failed - No Physical Link exists";
default:
return "Reserved";
}
}
static inline void command_rej(int level, struct frame *frm)
{
l2cap_cmd_rej *h = frm->ptr;
uint16_t reason = btohs(h->reason);
uint32_t cid;
printf("Command rej: reason %d", reason);
switch (reason) {
case 0x0001:
printf(" mtu %d\n", get_val(frm->ptr + L2CAP_CMD_REJ_SIZE, 2));
break;
case 0x0002:
cid = get_val(frm->ptr + L2CAP_CMD_REJ_SIZE, 4);
printf(" dcid 0x%4.4x scid 0x%4.4x\n", cid & 0xffff, cid >> 16);
break;
default:
printf("\n");
break;
}
p_indent(level + 1, frm);
printf("%s\n", reason2str(reason));
}
static inline void conn_req(int level, struct frame *frm)
{
l2cap_conn_req *h = frm->ptr;
uint16_t psm = btohs(h->psm);
uint16_t scid = btohs(h->scid);
add_cid(frm->in, frm->handle, scid, psm);
if (p_filter(FILT_L2CAP))
return;
printf("Connect req: psm %d scid 0x%4.4x\n", psm, scid);
}
static inline void conn_rsp(int level, struct frame *frm)
{
l2cap_conn_rsp *h = frm->ptr;
uint16_t scid = btohs(h->scid);
uint16_t dcid = btohs(h->dcid);
uint16_t result = btohs(h->result);
uint16_t status = btohs(h->status);
uint16_t psm;
switch (h->result) {
case L2CAP_CR_SUCCESS:
if ((psm = get_psm(!frm->in, frm->handle, scid)))
add_cid(frm->in, frm->handle, dcid, psm);
break;
case L2CAP_CR_PEND:
break;
default:
del_cid(frm->in, dcid, scid);
break;
}
if (p_filter(FILT_L2CAP))
return;
printf("Connect rsp: dcid 0x%4.4x scid 0x%4.4x result %d status %d\n",
dcid, scid, result, status);
p_indent(level + 1, frm);
printf("%s", connresult2str(result));
if (result == 0x0001)
printf(" - %s\n", status2str(status));
else
printf("\n");
}
static void conf_rfc(void *ptr, int len, int in, uint16_t handle,
uint16_t cid)
{
uint8_t mode;
mode = *((uint8_t *) ptr);
set_mode(in, handle, cid, mode);
printf("RFC 0x%02x (%s", mode, mode2str(mode));
if (mode >= 0x01 && mode <= 0x04) {
uint8_t txwin, maxtrans;
uint16_t rto, mto, mps;
txwin = *((uint8_t *) (ptr + 1));
maxtrans = *((uint8_t *) (ptr + 2));
rto = btohs(bt_get_unaligned((uint16_t *) (ptr + 3)));
mto = btohs(bt_get_unaligned((uint16_t *) (ptr + 5)));
mps = btohs(bt_get_unaligned((uint16_t *) (ptr + 7)));
printf(", TxWin %d, MaxTx %d, RTo %d, MTo %d, MPS %d",
txwin, maxtrans, rto, mto, mps);
}
printf(")");
}
static void conf_efs(void *ptr)
{
uint8_t id, ser_type;
uint16_t max_sdu;
uint32_t sdu_itime, access_lat, flush_to;
id = get_val(ptr, sizeof(id));
ser_type = get_val(ptr + 1, sizeof(ser_type));
max_sdu = get_val(ptr + 2, sizeof(max_sdu));
sdu_itime = get_val(ptr + 4, sizeof(sdu_itime));
access_lat = get_val(ptr + 8, sizeof(access_lat));
flush_to = get_val(ptr + 12, sizeof(flush_to));
printf("EFS (Id 0x%02x, SerType %s, MaxSDU 0x%04x, SDUitime 0x%08x, "
"AccLat 0x%08x, FlushTO 0x%08x)",
id, type2str(ser_type), max_sdu, sdu_itime,
access_lat, flush_to);
}
static void conf_fcs(void *ptr, int len)
{
uint8_t fcs;
fcs = *((uint8_t *) ptr);
printf("FCS Option");
if (len > 0)
printf(" 0x%2.2x (%s)", fcs, fcs2str(fcs));
}
static void conf_opt(int level, void *ptr, int len, int in, uint16_t handle,
uint16_t cid)
{
int indent = 0;
p_indent(level, 0);
while (len > 0) {
l2cap_conf_opt *h = ptr;
ptr += L2CAP_CONF_OPT_SIZE + h->len;
len -= L2CAP_CONF_OPT_SIZE + h->len;
if (h->type & 0x80)
printf("[");
if (indent++) {
printf("\n");
p_indent(level, 0);
}
switch (h->type & 0x7f) {
case L2CAP_CONF_MTU:
set_mode(in, handle, cid, 0x00);
printf("MTU");
if (h->len > 0)
printf(" %d", get_val(h->val, h->len));
break;
case L2CAP_CONF_FLUSH_TO:
printf("FlushTO");
if (h->len > 0)
printf(" %d", get_val(h->val, h->len));
break;
case L2CAP_CONF_QOS:
printf("QoS");
if (h->len > 0)
printf(" 0x%02x (%s)", *(h->val + 1), type2str(*(h->val + 1)));
break;
case L2CAP_CONF_RFC:
conf_rfc(h->val, h->len, in, handle, cid);
break;
case L2CAP_CONF_FCS:
conf_fcs(h->val, h->len);
break;
case L2CAP_CONF_EFS:
conf_efs(h->val);
break;
case L2CAP_CONF_EWS:
printf("EWS");
if (h->len > 0)
printf(" %d", get_val(h->val, h->len));
set_ext_ctrl(in, handle, cid, 1);
break;
default:
printf("Unknown (type %2.2x, len %d)", h->type & 0x7f, h->len);
break;
}
if (h->type & 0x80)
printf("] ");
else
printf(" ");
}
printf("\n");
}
static void conf_list(int level, uint8_t *list, int len)
{
int i;
p_indent(level, 0);
for (i = 0; i < len; i++) {
switch (list[i] & 0x7f) {
case L2CAP_CONF_MTU:
printf("MTU ");
break;
case L2CAP_CONF_FLUSH_TO:
printf("FlushTo ");
break;
case L2CAP_CONF_QOS:
printf("QoS ");
break;
case L2CAP_CONF_RFC:
printf("RFC ");
break;
case L2CAP_CONF_FCS:
printf("FCS ");
break;
case L2CAP_CONF_EFS:
printf("EFS ");
break;
case L2CAP_CONF_EWS:
printf("EWS ");
break;
default:
printf("%2.2x ", list[i] & 0x7f);
break;
}
}
printf("\n");
}
static inline void conf_req(int level, l2cap_cmd_hdr *cmd, struct frame *frm)
{
l2cap_conf_req *h = frm->ptr;
uint16_t dcid = btohs(h->dcid);
int clen = btohs(cmd->len) - L2CAP_CONF_REQ_SIZE;
if (p_filter(FILT_L2CAP))
return;
printf("Config req: dcid 0x%4.4x flags 0x%2.2x clen %d\n",
dcid, btohs(h->flags), clen);
if (clen > 0)
conf_opt(level + 1, h->data, clen, frm->in, frm->handle,
dcid);
}
static inline void conf_rsp(int level, l2cap_cmd_hdr *cmd, struct frame *frm)
{
l2cap_conf_rsp *h = frm->ptr;
uint16_t scid = btohs(h->scid);
uint16_t result = btohs(h->result);
int clen = btohs(cmd->len) - L2CAP_CONF_RSP_SIZE;
if (p_filter(FILT_L2CAP))
return;
printf("Config rsp: scid 0x%4.4x flags 0x%2.2x result %d clen %d\n",
scid, btohs(h->flags), result, clen);
if (clen > 0) {
if (result) {
p_indent(level + 1, frm);
printf("%s\n", confresult2str(result));
}
if (result == 0x0003)
conf_list(level + 1, h->data, clen);
else
conf_opt(level + 1, h->data, clen, frm->in,
frm->handle, scid);
} else {
p_indent(level + 1, frm);
printf("%s\n", confresult2str(result));
}
}
static inline void disconn_req(int level, struct frame *frm)
{
l2cap_disconn_req *h = frm->ptr;
if (p_filter(FILT_L2CAP))
return;
printf("Disconn req: dcid 0x%4.4x scid 0x%4.4x\n",
btohs(h->dcid), btohs(h->scid));
}
static inline void disconn_rsp(int level, struct frame *frm)
{
l2cap_disconn_rsp *h = frm->ptr;
uint16_t dcid = btohs(h->dcid);
uint16_t scid = btohs(h->scid);
del_cid(frm->in, dcid, scid);
if (p_filter(FILT_L2CAP))
return;
printf("Disconn rsp: dcid 0x%4.4x scid 0x%4.4x\n",
btohs(h->dcid), btohs(h->scid));
}
static inline void echo_req(int level, l2cap_cmd_hdr *cmd, struct frame *frm)
{
if (p_filter(FILT_L2CAP))
return;
printf("Echo req: dlen %d\n", btohs(cmd->len));
raw_dump(level, frm);
}
static inline void echo_rsp(int level, l2cap_cmd_hdr *cmd, struct frame *frm)
{
if (p_filter(FILT_L2CAP))
return;
printf("Echo rsp: dlen %d\n", btohs(cmd->len));
raw_dump(level, frm);
}
static void info_opt(int level, int type, void *ptr, int len)
{
uint32_t mask;
uint64_t fc_mask;
int i;
p_indent(level, 0);
switch (type) {
case 0x0001:
printf("Connectionless MTU %d\n", get_val(ptr, len));
break;
case 0x0002:
mask = get_val(ptr, len);
printf("Extended feature mask 0x%4.4x\n", mask);
if (parser.flags & DUMP_VERBOSE)
for (i=0; l2cap_features[i].name; i++)
if (mask & l2cap_features[i].flag) {
p_indent(level + 1, 0);
printf("%s\n", l2cap_features[i].name);
}
break;
case 0x0003:
fc_mask = bt_get_le64(ptr);
printf("Fixed channel list 0x%8.8" PRIx64 "\n", fc_mask);
if (parser.flags & DUMP_VERBOSE)
for (i=0; l2cap_fix_chan[i].name; i++)
if (fc_mask & l2cap_fix_chan[i].flag) {
p_indent(level + 1, 0);
printf("%s\n", l2cap_fix_chan[i].name);
}
break;
default:
printf("Unknown (len %d)\n", len);
break;
}
}
static inline void info_req(int level, l2cap_cmd_hdr *cmd, struct frame *frm)
{
l2cap_info_req *h = frm->ptr;
if (p_filter(FILT_L2CAP))
return;
printf("Info req: type %d\n", btohs(h->type));
}
static inline void info_rsp(int level, l2cap_cmd_hdr *cmd, struct frame *frm)
{
l2cap_info_rsp *h = frm->ptr;
uint16_t type = btohs(h->type);
uint16_t result = btohs(h->result);
int ilen = btohs(cmd->len) - L2CAP_INFO_RSP_SIZE;
if (p_filter(FILT_L2CAP))
return;
printf("Info rsp: type %d result %d\n", type, result);
if (ilen > 0) {
info_opt(level + 1, type, h->data, ilen);
} else {
p_indent(level + 1, frm);
printf("%s\n", inforesult2str(result));
}
}
static void l2cap_ctrl_ext_parse(int level, struct frame *frm, uint32_t ctrl)
{
p_indent(level, frm);
printf("%s:", ctrl & L2CAP_EXT_CTRL_FRAME_TYPE ? "S-frame" : "I-frame");
if (ctrl & L2CAP_EXT_CTRL_FRAME_TYPE) {
printf(" %s", supervisory2str((ctrl & L2CAP_EXT_CTRL_SUPERVISE_MASK) >>
L2CAP_EXT_CTRL_SUPER_SHIFT));
if (ctrl & L2CAP_EXT_CTRL_POLL)
printf(" P-bit");
} else {
uint8_t sar = (ctrl & L2CAP_EXT_CTRL_SAR_MASK) >>
L2CAP_EXT_CTRL_SAR_SHIFT;
printf(" %s", sar2str(sar));
if (sar == L2CAP_SAR_START) {
uint16_t len;
len = btohs(bt_get_unaligned((uint16_t *) frm->ptr));
frm->ptr += L2CAP_SDULEN_SIZE;
frm->len -= L2CAP_SDULEN_SIZE;
printf(" (len %d)", len);
}
printf(" TxSeq %d", (ctrl & L2CAP_EXT_CTRL_TXSEQ_MASK) >>
L2CAP_EXT_CTRL_TXSEQ_SHIFT);
}
printf(" ReqSeq %d", (ctrl & L2CAP_EXT_CTRL_REQSEQ_MASK) >>
L2CAP_EXT_CTRL_REQSEQ_SHIFT);
if (ctrl & L2CAP_EXT_CTRL_FINAL)
printf(" F-bit");
}
static void l2cap_ctrl_parse(int level, struct frame *frm, uint32_t ctrl)
{
p_indent(level, frm);
printf("%s:", ctrl & L2CAP_CTRL_FRAME_TYPE ? "S-frame" : "I-frame");
if (ctrl & 0x01) {
printf(" %s", supervisory2str((ctrl & L2CAP_CTRL_SUPERVISE_MASK) >>
L2CAP_CTRL_SUPER_SHIFT));
if (ctrl & L2CAP_CTRL_POLL)
printf(" P-bit");
} else {
uint8_t sar = (ctrl & L2CAP_CTRL_SAR_MASK) >> L2CAP_CTRL_SAR_SHIFT;
printf(" %s", sar2str(sar));
if (sar == L2CAP_SAR_START) {
uint16_t len;
len = btohs(bt_get_unaligned((uint16_t *) frm->ptr));
frm->ptr += L2CAP_SDULEN_SIZE;
frm->len -= L2CAP_SDULEN_SIZE;
printf(" (len %d)", len);
}
printf(" TxSeq %d", (ctrl & L2CAP_CTRL_TXSEQ_MASK) >> L2CAP_CTRL_TXSEQ_SHIFT);
}
printf(" ReqSeq %d", (ctrl & L2CAP_CTRL_REQSEQ_MASK) >> L2CAP_CTRL_REQSEQ_SHIFT);
if (ctrl & L2CAP_CTRL_FINAL)
printf(" F-bit");
}
static inline void create_req(int level, l2cap_cmd_hdr *cmd, struct frame *frm)
{
l2cap_create_req *h = frm->ptr;
uint16_t psm = btohs(h->psm);
uint16_t scid = btohs(h->scid);
if (p_filter(FILT_L2CAP))
return;
printf("Create req: psm %d scid 0x%4.4x id %d\n", psm, scid, h->id);
}
static inline void create_rsp(int level, l2cap_cmd_hdr *cmd, struct frame *frm)
{
l2cap_create_rsp *h = frm->ptr;
uint16_t scid = btohs(h->scid);
uint16_t dcid = btohs(h->dcid);
uint16_t result = btohs(h->result);
uint16_t status = btohs(h->status);
if (p_filter(FILT_L2CAP))
return;
printf("Create rsp: dcid 0x%4.4x scid 0x%4.4x result %d status %d\n", dcid, scid, result, status);
}
static inline void move_req(int level, l2cap_cmd_hdr *cmd, struct frame *frm)
{
l2cap_move_req *h = frm->ptr;
uint16_t icid = btohs(h->icid);
if (p_filter(FILT_L2CAP))
return;
printf("Move req: icid 0x%4.4x id %d\n", icid, h->id);
}
static inline void move_rsp(int level, l2cap_cmd_hdr *cmd, struct frame *frm)
{
l2cap_move_rsp *h = frm->ptr;
uint16_t icid = btohs(h->icid);
uint16_t result = btohs(h->result);
if (p_filter(FILT_L2CAP))
return;
printf("Move rsp: icid 0x%4.4x result %d\n", icid, result);
}
static inline void move_cfm(int level, l2cap_cmd_hdr *cmd, struct frame *frm)
{
l2cap_move_cfm *h = frm->ptr;
uint16_t icid = btohs(h->icid);
uint16_t result = btohs(h->result);
if (p_filter(FILT_L2CAP))
return;
printf("Move cfm: icid 0x%4.4x result %d\n", icid, result);
}
static inline void move_cfm_rsp(int level, l2cap_cmd_hdr *cmd, struct frame *frm)
{
l2cap_move_cfm_rsp *h = frm->ptr;
uint16_t icid = btohs(h->icid);
if (p_filter(FILT_L2CAP))
return;
printf("Move cfm rsp: icid 0x%4.4x\n", icid);
}
static inline void a2mp_command_rej(int level, struct frame *frm)
{
struct a2mp_command_rej *h = frm->ptr;
uint16_t reason = btohs(h->reason);
printf("Command Reject: reason %d\n", reason);
p_indent(level + 1, 0);
printf("%s\n", a2mpreason2str(reason));
}
static inline void a2mp_discover_req(int level, struct frame *frm, uint16_t len)
{
struct a2mp_discover_req *h = frm->ptr;
uint16_t mtu = btohs(h->mtu);
uint8_t *octet = (uint8_t *)&(h->mask);
uint16_t mask;
uint8_t extension;
printf("Discover req: mtu/mps %d ", mtu);
len -= 2;
printf("mask:");
do {
len -= 2;
mask = btohs(*(uint16_t *)(&octet[0]));
printf(" 0x%4.4x", mask);
extension = octet[1] & 0x80;
octet += 2;
} while ((extension != 0) && (len >= 2));
printf("\n");
}
static inline void a2mp_ctrl_list_dump(int level, struct a2mp_ctrl *list, uint16_t len)
{
p_indent(level, 0);
printf("Controller list:\n");
while (len >= 3) {
p_indent(level + 1, 0);
printf("id %d type %d (%s) status 0x%2.2x (%s)\n",
list->id, list->type, ampctrltype2str(list->type), list->status, ampctrlstatus2str(list->status));
list++;
len -= 3;
}
}
static inline void a2mp_discover_rsp(int level, struct frame *frm, uint16_t len)
{
struct a2mp_discover_rsp *h = frm->ptr;
uint16_t mtu = btohs(h->mtu);
uint8_t *octet = (uint8_t *)&(h->mask);
uint16_t mask;
uint8_t extension;
printf("Discover rsp: mtu/mps %d ", mtu);
len -= 2;
printf("mask:");
do {
len -= 2;
mask = btohs(*(uint16_t *)(&octet[0]));
printf(" 0x%4.4x", mask);
extension = octet[1] & 0x80;
octet += 2;
} while ((extension != 0) && (len >= 2));
printf("\n");
if (len >= 3) {
a2mp_ctrl_list_dump(level + 1, (struct a2mp_ctrl *) octet, len);
}
}
static inline void a2mp_change_notify(int level, struct frame *frm, uint16_t len)
{
struct a2mp_ctrl *list = frm->ptr;
printf("Change Notify\n");
if (len >= 3) {
a2mp_ctrl_list_dump(level + 1, list, len);
}
}
static inline void a2mp_change_rsp(int level, struct frame *frm)
{
printf("Change Response\n");
}
static inline void a2mp_info_req(int level, struct frame *frm)
{
struct a2mp_info_req *h = frm->ptr;
printf("Get Info req: id %d\n", h->id);
}
static inline void a2mp_info_rsp(int level, struct frame *frm)
{
struct a2mp_info_rsp *h = frm->ptr;
printf("Get Info rsp: id %d status %d (%s)\n",
h->id, h->status, a2mpstatus2str(h->status));
p_indent(level + 1, 0);
printf("Total bandwidth %d\n", btohl(h->total_bw));
p_indent(level + 1, 0);
printf("Max guaranteed bandwidth %d\n", btohl(h->max_bw));
p_indent(level + 1, 0);
printf("Min latency %d\n", btohl(h->min_latency));
p_indent(level + 1, 0);
printf("Pal capabilities 0x%4.4x\n", btohs(h->pal_caps));
p_indent(level + 1, 0);
printf("Assoc size %d\n", btohs(h->assoc_size));
}
static inline void a2mp_assoc_req(int level, struct frame *frm)
{
struct a2mp_assoc_req *h = frm->ptr;
printf("Get AMP Assoc req: id %d\n", h->id);
}
static inline void a2mp_assoc_dump(int level, uint8_t *assoc, uint16_t len)
{
int i;
p_indent(level, 0);
printf("Assoc data:");
for (i = 0; i < len; i++) {
if (!(i%16)) {
printf("\n");
p_indent(level+1, 0);
}
printf("%2.2x ",*assoc++);
}
printf("\n");
}
static inline void a2mp_assoc_rsp(int level, struct frame *frm, uint16_t len)
{
struct a2mp_assoc_rsp *h = frm->ptr;
printf("Get AMP Assoc rsp: id %d status (%d) %s \n",
h->id, h->status, a2mpstatus2str(h->status));
a2mp_assoc_dump(level + 1, (uint8_t *) &h->assoc_data, len - 2);
}
static inline void a2mp_create_req(int level, struct frame *frm, uint16_t len)
{
struct a2mp_create_req *h = frm->ptr;
printf("Create Physical Link req: local id %d remote id %d\n",
h->local_id, h->remote_id);
a2mp_assoc_dump(level + 1, (uint8_t *) &h->assoc_data, len - 2);
}
static inline void a2mp_create_rsp(int level, struct frame *frm)
{
struct a2mp_create_rsp *h = frm->ptr;
printf("Create Physical Link rsp: local id %d remote id %d status %d\n",
h->local_id, h->remote_id, h->status);
p_indent(level+1, 0);
printf("%s\n", a2mpcplstatus2str(h->status));
}
static inline void a2mp_disconn_req(int level, struct frame *frm)
{
struct a2mp_disconn_req *h = frm->ptr;
printf("Disconnect Physical Link req: local id %d remote id %d\n",
h->local_id, h->remote_id);
}
static inline void a2mp_disconn_rsp(int level, struct frame *frm)
{
struct a2mp_disconn_rsp *h = frm->ptr;
printf("Disconnect Physical Link rsp: local id %d remote id %d status %d\n",
h->local_id, h->remote_id, h->status);
p_indent(level+1, 0);
printf("%s\n", a2mpdplstatus2str(h->status));
}
static void l2cap_parse(int level, struct frame *frm)
{
l2cap_hdr *hdr = (void *)frm->ptr;
uint16_t dlen = btohs(hdr->len);
uint16_t cid = btohs(hdr->cid);
uint16_t psm;
frm->ptr += L2CAP_HDR_SIZE;
frm->len -= L2CAP_HDR_SIZE;
if (cid == 0x1) {
/* Signaling channel */
while (frm->len >= L2CAP_CMD_HDR_SIZE) {
l2cap_cmd_hdr *hdr = frm->ptr;
frm->ptr += L2CAP_CMD_HDR_SIZE;
frm->len -= L2CAP_CMD_HDR_SIZE;
if (!p_filter(FILT_L2CAP)) {
p_indent(level, frm);
printf("L2CAP(s): ");
}
switch (hdr->code) {
case L2CAP_COMMAND_REJ:
command_rej(level, frm);
break;
case L2CAP_CONN_REQ:
conn_req(level, frm);
break;
case L2CAP_CONN_RSP:
conn_rsp(level, frm);
break;
case L2CAP_CONF_REQ:
conf_req(level, hdr, frm);
break;
case L2CAP_CONF_RSP:
conf_rsp(level, hdr, frm);
break;
case L2CAP_DISCONN_REQ:
disconn_req(level, frm);
break;
case L2CAP_DISCONN_RSP:
disconn_rsp(level, frm);
break;
case L2CAP_ECHO_REQ:
echo_req(level, hdr, frm);
break;
case L2CAP_ECHO_RSP:
echo_rsp(level, hdr, frm);
break;
case L2CAP_INFO_REQ:
info_req(level, hdr, frm);
break;
case L2CAP_INFO_RSP:
info_rsp(level, hdr, frm);
break;
case L2CAP_CREATE_REQ:
create_req(level, hdr, frm);
break;
case L2CAP_CREATE_RSP:
create_rsp(level, hdr, frm);
break;
case L2CAP_MOVE_REQ:
move_req(level, hdr, frm);
break;
case L2CAP_MOVE_RSP:
move_rsp(level, hdr, frm);
break;
case L2CAP_MOVE_CFM:
move_cfm(level, hdr, frm);
break;
case L2CAP_MOVE_CFM_RSP:
move_cfm_rsp(level, hdr, frm);
break;
default:
if (p_filter(FILT_L2CAP))
break;
printf("code 0x%2.2x ident %d len %d\n",
hdr->code, hdr->ident, btohs(hdr->len));
raw_dump(level, frm);
}
if (frm->len > btohs(hdr->len)) {
frm->len -= btohs(hdr->len);
frm->ptr += btohs(hdr->len);
} else
frm->len = 0;
}
} else if (cid == 0x2) {
/* Connectionless channel */
if (p_filter(FILT_L2CAP))
return;
psm = btohs(bt_get_unaligned((uint16_t *) frm->ptr));
frm->ptr += 2;
frm->len -= 2;
p_indent(level, frm);
printf("L2CAP(c): len %d psm %d\n", dlen, psm);
raw_dump(level, frm);
} else if (cid == 0x3) {
/* AMP Manager channel */
if (p_filter(FILT_A2MP))
return;
/* Adjust for ERTM control bytes */
frm->ptr += 2;
frm->len -= 2;
while (frm->len >= A2MP_HDR_SIZE) {
struct a2mp_hdr *hdr = frm->ptr;
frm->ptr += A2MP_HDR_SIZE;
frm->len -= A2MP_HDR_SIZE;
p_indent(level, frm);
printf("A2MP: ");
switch (hdr->code) {
case A2MP_COMMAND_REJ:
a2mp_command_rej(level, frm);
break;
case A2MP_DISCOVER_REQ:
a2mp_discover_req(level, frm, btohs(hdr->len));
break;
case A2MP_DISCOVER_RSP:
a2mp_discover_rsp(level, frm, btohs(hdr->len));
break;
case A2MP_CHANGE_NOTIFY:
a2mp_change_notify(level, frm, btohs(hdr->len));
break;
case A2MP_CHANGE_RSP:
a2mp_change_rsp(level, frm);
break;
case A2MP_INFO_REQ:
a2mp_info_req(level, frm);
break;
case A2MP_INFO_RSP:
a2mp_info_rsp(level, frm);
break;
case A2MP_ASSOC_REQ:
a2mp_assoc_req(level, frm);
break;
case A2MP_ASSOC_RSP:
a2mp_assoc_rsp(level, frm, btohs(hdr->len));
break;
case A2MP_CREATE_REQ:
a2mp_create_req(level, frm, btohs(hdr->len));
break;
case A2MP_CREATE_RSP:
a2mp_create_rsp(level, frm);
break;
case A2MP_DISCONN_REQ:
a2mp_disconn_req(level, frm);
break;
case A2MP_DISCONN_RSP:
a2mp_disconn_rsp(level, frm);
break;
default:
printf("code 0x%2.2x ident %d len %d\n",
hdr->code, hdr->ident, btohs(hdr->len));
raw_dump(level, frm);
}
if (frm->len > btohs(hdr->len)) {
frm->len -= btohs(hdr->len);
frm->ptr += btohs(hdr->len);
} else
frm->len = 0;
}
} else if (cid == 0x04) {
if (!p_filter(FILT_ATT))
att_dump(level, frm);
else
raw_dump(level + 1, frm);
} else if (cid == 0x06) {
if (!p_filter(FILT_SMP))
smp_dump(level, frm);
else
raw_dump(level + 1, frm);
} else {
/* Connection oriented channel */
uint8_t mode = get_mode(!frm->in, frm->handle, cid);
uint8_t ext_ctrl = get_ext_ctrl(!frm->in, frm->handle, cid);
uint16_t psm = get_psm(!frm->in, frm->handle, cid);
uint16_t fcs = 0;
uint32_t proto, ctrl = 0;
frm->cid = cid;
frm->num = get_num(!frm->in, frm->handle, cid);
if (mode > 0) {
if (ext_ctrl) {
ctrl = get_val(frm->ptr, 4);
frm->ptr += 4;
frm->len -= 6;
} else {
ctrl = get_val(frm->ptr, 2);
frm->ptr += 2;
frm->len -= 4;
}
fcs = btohs(bt_get_unaligned((uint16_t *) (frm->ptr + frm->len)));
}
if (!p_filter(FILT_L2CAP)) {
p_indent(level, frm);
printf("L2CAP(d): cid 0x%4.4x len %d", cid, dlen);
if (mode > 0) {
if (ext_ctrl)
printf(" ext_ctrl 0x%8.8x fcs 0x%4.4x", ctrl, fcs);
else
printf(" ctrl 0x%4.4x fcs 0x%4.4x", ctrl, fcs);
}
printf(" [psm %d]\n", psm);
level++;
if (mode > 0) {
if (ext_ctrl)
l2cap_ctrl_ext_parse(level, frm, ctrl);
else
l2cap_ctrl_parse(level, frm, ctrl);
printf("\n");
}
}
switch (psm) {
case 0x01:
if (!p_filter(FILT_SDP))
sdp_dump(level + 1, frm);
else
raw_dump(level + 1, frm);
break;
case 0x03:
if (!p_filter(FILT_RFCOMM))
rfcomm_dump(level, frm);
else
raw_dump(level + 1, frm);
break;
case 0x0f:
if (!p_filter(FILT_BNEP))
bnep_dump(level, frm);
else
raw_dump(level + 1, frm);
break;
case 0x11:
case 0x13:
if (!p_filter(FILT_HIDP))
hidp_dump(level, frm);
else
raw_dump(level + 1, frm);
break;
case 0x17:
if (!p_filter(FILT_AVCTP))
avctp_dump(level, frm);
else
raw_dump(level + 1, frm);
break;
case 0x19:
if (!p_filter(FILT_AVDTP))
avdtp_dump(level, frm);
else
raw_dump(level + 1, frm);
break;
case 0x1f:
if (!p_filter(FILT_ATT))
att_dump(level, frm);
else
raw_dump(level + 1, frm);
break;
default:
proto = get_proto(frm->handle, psm, 0);
switch (proto) {
case SDP_UUID_CMTP:
if (!p_filter(FILT_CMTP))
cmtp_dump(level, frm);
else
raw_dump(level + 1, frm);
break;
case SDP_UUID_HARDCOPY_CONTROL_CHANNEL:
if (!p_filter(FILT_HCRP))
hcrp_dump(level, frm);
else
raw_dump(level + 1, frm);
break;
case SDP_UUID_OBEX:
if (!p_filter(FILT_OBEX))
obex_dump(level, frm);
else
raw_dump(level + 1, frm);
break;
default:
if (p_filter(FILT_L2CAP))
break;
raw_dump(level, frm);
break;
}
break;
}
}
}
void l2cap_dump(int level, struct frame *frm)
{
struct frame *fr;
l2cap_hdr *hdr;
uint16_t dlen;
if ((frm->flags & ACL_START) || frm->flags == ACL_START_NO_FLUSH) {
hdr = frm->ptr;
dlen = btohs(hdr->len);
if (dlen + L2CAP_HDR_SIZE < (int) frm->len) {
/* invalid frame */
raw_dump(level,frm);
return;
}
if ((int) frm->len == (dlen + L2CAP_HDR_SIZE)) {
/* Complete frame */
l2cap_parse(level, frm);
return;
}
if (!(fr = get_frame(frm->handle))) {
fprintf(stderr, "Not enough connection handles\n");
raw_dump(level, frm);
return;
}
if (fr->data)
free(fr->data);
if (!(fr->data = malloc(dlen + L2CAP_HDR_SIZE))) {
perror("Can't allocate L2CAP reassembly buffer");
return;
}
memcpy(fr->data, frm->ptr, frm->len);
fr->data_len = dlen + L2CAP_HDR_SIZE;
fr->len = frm->len;
fr->ptr = fr->data;
fr->dev_id = frm->dev_id;
fr->in = frm->in;
fr->ts = frm->ts;
fr->handle = frm->handle;
fr->cid = frm->cid;
fr->num = frm->num;
fr->dlci = frm->dlci;
fr->channel = frm->channel;
fr->pppdump_fd = frm->pppdump_fd;
fr->audio_fd = frm->audio_fd;
} else {
if (!(fr = get_frame(frm->handle))) {
fprintf(stderr, "Not enough connection handles\n");
raw_dump(level, frm);
return;
}
if (!fr->data) {
/* Unexpected fragment */
raw_dump(level, frm);
return;
}
if (frm->len > (fr->data_len - fr->len)) {
/* Bad fragment */
raw_dump(level, frm);
free(fr->data); fr->data = NULL;
return;
}
memcpy(fr->data + fr->len, frm->ptr, frm->len);
fr->len += frm->len;
if (fr->len == fr->data_len) {
/* Complete frame */
l2cap_parse(level, fr);
free(fr->data); fr->data = NULL;
return;
}
}
}
void l2cap_clear(uint16_t handle)
{
del_handle(handle);
}
|