Loading...
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 | /** @file * @brief Service Discovery Protocol handling. */ /* * Copyright (c) 2016 Intel Corporation * * SPDX-License-Identifier: Apache-2.0 */ #include <errno.h> #include <sys/types.h> #include <misc/byteorder.h> #include <misc/__assert.h> #define BT_DBG_ENABLED IS_ENABLED(CONFIG_BLUETOOTH_DEBUG_SDP) #include <bluetooth/log.h> #include <bluetooth/sdp.h> #include "l2cap_internal.h" #include "sdp_internal.h" #define SDP_PSM 0x0001 #define SDP_CHAN(_ch) CONTAINER_OF(_ch, struct bt_sdp, chan.chan) #define SDP_DATA_MTU 200 #define SDP_MTU (SDP_DATA_MTU + sizeof(struct bt_sdp_hdr)) #define SDP_SERVICE_HANDLE_BASE 0x10000 struct bt_sdp { struct bt_l2cap_br_chan chan; struct k_fifo partial_resp_queue; /* TODO: Allow more than one pending request */ }; static struct bt_sdp_record *db; static uint8_t num_services; static struct bt_sdp bt_sdp_pool[CONFIG_BLUETOOTH_MAX_CONN]; /* Pool for outgoing SDP packets */ NET_BUF_POOL_DEFINE(sdp_pool, CONFIG_BLUETOOTH_MAX_CONN, BT_L2CAP_BUF_SIZE(SDP_MTU), BT_BUF_USER_DATA_MIN, NULL); #define SDP_CLIENT_CHAN(_ch) CONTAINER_OF(_ch, struct bt_sdp_client, chan.chan) #define SDP_CLIENT_MTU 64 struct bt_sdp_client { struct bt_l2cap_br_chan chan; /* list of waiting to be resolved UUID params */ sys_slist_t reqs; /* required SDP transaction ID */ uint16_t tid; /* UUID params holder being now resolved */ const struct bt_sdp_discover_params *param; /* PDU continuation state object */ struct bt_sdp_pdu_cstate cstate; /* buffer for collecting record data */ struct net_buf *rec_buf; }; static struct bt_sdp_client bt_sdp_client_pool[CONFIG_BLUETOOTH_MAX_CONN]; /** @brief Callback for SDP connection * * Gets called when an SDP connection is established * * @param chan L2CAP channel * * @return None */ static void bt_sdp_connected(struct bt_l2cap_chan *chan) { struct bt_l2cap_br_chan *ch = CONTAINER_OF(chan, struct bt_l2cap_br_chan, chan); struct bt_sdp *sdp = CONTAINER_OF(ch, struct bt_sdp, chan); BT_DBG("chan %p cid 0x%04x", ch, ch->tx.cid); k_fifo_init(&sdp->partial_resp_queue); ch->tx.mtu = SDP_MTU; ch->rx.mtu = SDP_MTU; } /** @brief Callback for SDP disconnection * * Gets called when an SDP connection is terminated * * @param chan L2CAP channel * * @return None */ static void bt_sdp_disconnected(struct bt_l2cap_chan *chan) { struct bt_l2cap_br_chan *ch = CONTAINER_OF(chan, struct bt_l2cap_br_chan, chan); struct bt_sdp *sdp = CONTAINER_OF(ch, struct bt_sdp, chan); BT_DBG("chan %p cid 0x%04x", ch, ch->tx.cid); memset(sdp, 0, sizeof(*sdp)); } /** @brief Creates an SDP PDU * * Creates an empty SDP PDU and returns the buffer * * @param None * * @return Pointer to the net_buf buffer */ static struct net_buf *bt_sdp_create_pdu(void) { struct net_buf *buf; buf = bt_l2cap_create_pdu(&sdp_pool, 0); /* NULL is not a possible return due to K_FOREVER */ net_buf_reserve(buf, sizeof(struct bt_sdp_hdr)); return buf; } /** @brief Sends out an SDP PDU * * Sends out an SDP PDU after adding the relevant header * * @param chan L2CAP channel * @param buf Buffer to be sent out * @param op Opcode to be used in the packet header * @param tid Transaction ID to be used in the packet header * * @return None */ static void bt_sdp_send(struct bt_l2cap_chan *chan, struct net_buf *buf, uint8_t op, uint16_t tid) { struct bt_sdp_hdr *hdr; uint16_t param_len = buf->len; hdr = net_buf_push(buf, sizeof(struct bt_sdp_hdr)); hdr->op_code = op; hdr->tid = tid; hdr->param_len = sys_cpu_to_be16(param_len); bt_l2cap_chan_send(chan, buf); } /** @brief Sends an error response PDU * * Creates and sends an error response PDU * * @param chan L2CAP channel * @param err Error code to be sent in the packet * @param tid Transaction ID to be used in the packet header * * @return None */ static void send_err_rsp(struct bt_l2cap_chan *chan, uint16_t err, uint16_t tid) { struct net_buf *buf; BT_DBG("tid %u, error %u", tid, err); buf = bt_sdp_create_pdu(); net_buf_add_be16(buf, err); bt_sdp_send(chan, buf, BT_SDP_ERROR_RSP, tid); } static const struct { uint8_t op_code; uint16_t (*func)(struct bt_sdp *sdp, struct net_buf *buf, uint16_t tid); } handlers[] = { }; /** @brief Callback for SDP data receive * * Gets called when an SDP PDU is received. Calls the corresponding handler * based on the op code of the PDU. * * @param chan L2CAP channel * @param buf Received PDU * * @return None */ static void bt_sdp_recv(struct bt_l2cap_chan *chan, struct net_buf *buf) { struct bt_l2cap_br_chan *ch = CONTAINER_OF(chan, struct bt_l2cap_br_chan, chan); struct bt_sdp *sdp = CONTAINER_OF(ch, struct bt_sdp, chan); struct bt_sdp_hdr *hdr = (struct bt_sdp_hdr *)buf->data; uint16_t err = BT_SDP_INVALID_SYNTAX; size_t i; BT_DBG("chan %p, ch %p, cid 0x%04x", chan, ch, ch->tx.cid); BT_ASSERT(sdp); if (buf->len < sizeof(*hdr)) { BT_ERR("Too small SDP PDU received"); return; } BT_DBG("Received SDP code 0x%02x len %u", hdr->op_code, buf->len); net_buf_pull(buf, sizeof(*hdr)); if (sys_cpu_to_be16(hdr->param_len) != buf->len) { err = BT_SDP_INVALID_PDU_SIZE; } else { for (i = 0; i < ARRAY_SIZE(handlers); i++) { if (hdr->op_code != handlers[i].op_code) { continue; } err = handlers[i].func(sdp, buf, hdr->tid); break; } } if (err) { BT_WARN("SDP error 0x%02x", err); send_err_rsp(chan, err, hdr->tid); } } /** @brief Callback for SDP connection accept * * Gets called when an incoming SDP connection needs to be authorized. * Registers the L2CAP callbacks and allocates an SDP context to the connection * * @param conn BT connection object * @param chan L2CAP channel structure (to be returned) * * @return 0 for success, or relevant error code */ static int bt_sdp_accept(struct bt_conn *conn, struct bt_l2cap_chan **chan) { static struct bt_l2cap_chan_ops ops = { .connected = bt_sdp_connected, .disconnected = bt_sdp_disconnected, .recv = bt_sdp_recv, }; int i; BT_DBG("conn %p", conn); for (i = 0; i < ARRAY_SIZE(bt_sdp_pool); i++) { struct bt_sdp *sdp = &bt_sdp_pool[i]; if (sdp->chan.chan.conn) { continue; } sdp->chan.chan.ops = &ops; sdp->chan.rx.mtu = SDP_MTU; *chan = &sdp->chan.chan; return 0; } BT_ERR("No available SDP context for conn %p", conn); return -ENOMEM; } void bt_sdp_init(void) { static struct bt_l2cap_server server = { .psm = SDP_PSM, .accept = bt_sdp_accept, }; int res; res = bt_l2cap_br_server_register(&server); if (res) { BT_ERR("L2CAP server registration failed with error %d", res); } } int bt_sdp_register_service(struct bt_sdp_record *service) { uint32_t handle = SDP_SERVICE_HANDLE_BASE; if (!service) { BT_ERR("No service record specified"); return 0; } if (db) { handle = db->handle + 1; } service->next = db; service->index = num_services++; service->handle = handle; *((uint32_t *)(service->attrs[0].val.data)) = handle; db = service; BT_DBG("Service registered at %u", handle); return 0; } #define GET_PARAM(__node) \ CONTAINER_OF(__node, struct bt_sdp_discover_params, _node) /* ServiceSearchAttribute PDU, ref to BT Core 4.2, Vol 3, part B, 4.7.1 */ static int sdp_client_ssa_search(struct bt_sdp_client *session) { const struct bt_sdp_discover_params *param; struct bt_sdp_hdr *hdr; struct net_buf *buf; /* * Select proper user params, if session->param is invalid it means * getting new UUID from top of to be resolved params list. Otherwise * the context is in a middle of partial SDP PDU responses and cached * value from context can be used. */ if (!session->param) { param = GET_PARAM(sys_slist_peek_head(&session->reqs)); } else { param = session->param; } if (!param) { BT_WARN("No UUIDs to be resolved on remote"); return -EINVAL; } buf = bt_l2cap_create_pdu(&sdp_pool, 0); hdr = net_buf_add(buf, sizeof(*hdr)); hdr->op_code = BT_SDP_SVC_SEARCH_ATTR_REQ; /* BT_SDP_SEQ8 means length of sequence is on additional next byte */ net_buf_add_u8(buf, BT_SDP_SEQ8); switch (param->uuid->type) { case BT_UUID_TYPE_16: /* Seq length */ net_buf_add_u8(buf, 0x03); /* Seq type */ net_buf_add_u8(buf, BT_SDP_UUID16); /* Seq value */ net_buf_add_be16(buf, BT_UUID_16(param->uuid)->val); break; case BT_UUID_TYPE_32: net_buf_add_u8(buf, 0x05); net_buf_add_u8(buf, BT_SDP_UUID32); net_buf_add_be32(buf, BT_UUID_32(param->uuid)->val); break; case BT_UUID_TYPE_128: net_buf_add_u8(buf, 0x11); net_buf_add_u8(buf, BT_SDP_UUID128); net_buf_add_mem(buf, BT_UUID_128(param->uuid)->val, ARRAY_SIZE(BT_UUID_128(param->uuid)->val)); break; default: BT_ERR("Unknown UUID type %u", param->uuid->type); return -EINVAL; } /* Set attribute max bytes count to be returned from server */ net_buf_add_be16(buf, BT_SDP_MAX_ATTR_LEN); /* * Sequence definition where data is sequence of elements and where * additional next byte points the size of elements within */ net_buf_add_u8(buf, BT_SDP_SEQ8); net_buf_add_u8(buf, 0x05); /* Data element definition for two following 16bits range elements */ net_buf_add_u8(buf, BT_SDP_UINT32); /* Get all attributes. It enables filter out wanted only attributes */ net_buf_add_be16(buf, 0x0000); net_buf_add_be16(buf, 0xffff); /* * Update and validate PDU ContinuationState. Initial SSA Request has * zero length continuation state since no interaction has place with * server so far, otherwise use the original state taken from remote's * last response PDU that is cached by SDP client context. */ if (session->cstate.length == 0) { net_buf_add_u8(buf, 0x00); } else { net_buf_add_u8(buf, session->cstate.length); net_buf_add_mem(buf, session->cstate.data, session->cstate.length); } /* set overall PDU length */ hdr->param_len = sys_cpu_to_be16(buf->len - sizeof(*hdr)); /* Update context param to the one being resolving now */ session->param = param; session->tid++; hdr->tid = sys_cpu_to_be16(session->tid); return bt_l2cap_chan_send(&session->chan.chan, buf); } static void sdp_client_params_iterator(struct bt_sdp_client *session) { struct bt_l2cap_chan *chan = &session->chan.chan; struct bt_sdp_discover_params *param, *tmp; SYS_SLIST_FOR_EACH_CONTAINER_SAFE(&session->reqs, param, tmp, _node) { if (param != session->param) { continue; } BT_DBG(""); /* Remove already checked UUID node */ sys_slist_remove(&session->reqs, NULL, ¶m->_node); /* Invalidate cached param in context */ session->param = NULL; /* Reset continuation state in current context */ memset(&session->cstate, 0, sizeof(session->cstate)); /* Check if there's valid next UUID */ if (!sys_slist_is_empty(&session->reqs)) { sdp_client_ssa_search(session); return; } /* No UUID items, disconnect channel */ bt_l2cap_chan_disconnect(chan); break; } } static uint16_t sdp_client_get_total(struct bt_sdp_client *session, struct net_buf *buf, uint16_t *total) { uint16_t pulled; uint8_t seq; /* * Pull value of total octets of all attributes available to be * collected when response gets completed for given UUID. Such info can * be get from the very first response frame after initial SSA request * was sent. For subsequent calls related to the same SSA request input * buf and in/out function parameters stays neutral. */ if (session->cstate.length == 0) { seq = net_buf_pull_u8(buf); pulled = 1; switch (seq) { case BT_SDP_SEQ8: *total = net_buf_pull_u8(buf); pulled += 1; break; case BT_SDP_SEQ16: *total = net_buf_pull_be16(buf); pulled += 2; break; default: BT_WARN("Sequence type 0x%02x not handled", seq); *total = 0; break; } BT_DBG("Total %u octets of all attributes", *total); } else { pulled = 0; *total = 0; } return pulled; } static uint16_t get_record_len(struct net_buf *buf) { uint16_t len; uint8_t seq; seq = net_buf_pull_u8(buf); switch (seq) { case BT_SDP_SEQ8: len = net_buf_pull_u8(buf); break; case BT_SDP_SEQ16: len = net_buf_pull_be16(buf); break; default: BT_WARN("Sequence type 0x%02x not handled", seq); len = 0; break; } BT_DBG("Record len %u", len); return len; } enum uuid_state { UUID_NOT_RESOLVED, UUID_RESOLVED, }; static void sdp_client_notify_result(struct bt_sdp_client *session, enum uuid_state state) { struct bt_conn *conn = session->chan.chan.conn; struct bt_sdp_client_result result; uint16_t rec_len; uint8_t user_ret; result.uuid = session->param->uuid; if (state == UUID_NOT_RESOLVED) { result.resp_buf = NULL; result.next_record_hint = false; session->param->func(conn, &result); return; } while (session->rec_buf->len) { struct net_buf_simple_state buf_state; rec_len = get_record_len(session->rec_buf); /* tell the user about multi record resolution */ if (session->rec_buf->len > rec_len) { result.next_record_hint = true; } else { result.next_record_hint = false; } /* save the original session buffer */ net_buf_simple_save(&session->rec_buf->b, &buf_state); /* initialize internal result buffer instead of memcpy */ result.resp_buf = session->rec_buf; /* * Set user internal result buffer length as same as record * length to fake user. User will see the individual record * length as rec_len insted of whole session rec_buf length. */ result.resp_buf->len = rec_len; user_ret = session->param->func(conn, &result); /* restore original session buffer */ net_buf_simple_restore(&session->rec_buf->b, &buf_state); /* * sync session buffer data length with next record chunk not * send to user so far */ net_buf_pull(session->rec_buf, rec_len); if (user_ret == BT_SDP_DISCOVER_UUID_STOP) { break; } } } static void sdp_client_receive(struct bt_l2cap_chan *chan, struct net_buf *buf) { struct bt_sdp_client *session = SDP_CLIENT_CHAN(chan); struct bt_sdp_hdr *hdr = (void *)buf->data; struct bt_sdp_pdu_cstate *cstate; uint16_t len, tid, frame_len; uint16_t total; BT_DBG("session %p buf %p", session, buf); if (buf->len < sizeof(*hdr)) { BT_ERR("Too small SDP PDU"); return; } if (hdr->op_code == BT_SDP_ERROR_RSP) { BT_INFO("Error SDP PDU response"); return; } len = sys_be16_to_cpu(hdr->param_len); tid = sys_be16_to_cpu(hdr->tid); net_buf_pull(buf, sizeof(*hdr)); BT_DBG("SDP PDU tid %u len %u", tid, len); if (buf->len != len) { BT_ERR("SDP PDU length mismatch (%u != %u)", buf->len, len); return; } if (tid != session->tid) { BT_ERR("Mismatch transaction ID value in SDP PDU"); return; } switch (hdr->op_code) { case BT_SDP_SVC_SEARCH_ATTR_RSP: /* Get number of attributes in this frame. */ frame_len = net_buf_pull_be16(buf); /* Check valid range of attributes length */ if (frame_len < 2) { BT_ERR("Invalid attributes data length"); return; } /* Get PDU continuation state */ cstate = (struct bt_sdp_pdu_cstate *)(buf->data + frame_len); if (cstate->length > BT_SDP_MAX_PDU_CSTATE_LEN) { BT_ERR("Invalid SDP PDU Continuation State length %u", cstate->length); return; } if ((frame_len + cstate->length) > len) { BT_ERR("Invalid frame payload length"); return; } /* * No record found for given UUID. The check catches case when * current response frame has Continuation State shortest and * valid and this is the first response frame as well. */ if (frame_len == 2 && cstate->length == 0 && session->cstate.length == 0) { BT_DBG("record for UUID 0x%s not found", bt_uuid_str(session->param->uuid)); /* Call user UUID handler */ sdp_client_notify_result(session, UUID_NOT_RESOLVED); net_buf_pull(buf, frame_len + sizeof(cstate->length)); goto iterate; } /* Get total value of all attributes to be collected */ frame_len -= sdp_client_get_total(session, buf, &total); if (total > net_buf_tailroom(session->rec_buf)) { BT_WARN("Not enough room for getting records data"); goto iterate; } net_buf_add_mem(session->rec_buf, buf->data, frame_len); net_buf_pull(buf, frame_len); /* * check if current response says there's next portion to be * fetched */ if (cstate->length) { /* Cache original Continuation State in context */ memcpy(&session->cstate, cstate, sizeof(struct bt_sdp_pdu_cstate)); net_buf_pull(buf, cstate->length + sizeof(cstate->length)); /* Request for next portion of attributes data */ sdp_client_ssa_search(session); break; } net_buf_pull(buf, sizeof(cstate->length)); BT_DBG("UUID 0x%s resolved", bt_uuid_str(session->param->uuid)); sdp_client_notify_result(session, UUID_RESOLVED); iterate: /* Get next UUID and start resolving it */ sdp_client_params_iterator(session); break; default: BT_DBG("PDU 0x%0x response not handled", hdr->op_code); break; } } static int sdp_client_chan_connect(struct bt_sdp_client *session) { return bt_l2cap_br_chan_connect(session->chan.chan.conn, &session->chan.chan, SDP_PSM); } static struct net_buf *sdp_client_alloc_buf(struct bt_l2cap_chan *chan) { struct bt_sdp_client *session = SDP_CLIENT_CHAN(chan); struct net_buf *buf; BT_DBG("session %p chan %p", session, chan); session->param = GET_PARAM(sys_slist_peek_head(&session->reqs)); buf = net_buf_alloc(session->param->pool, K_FOREVER); __ASSERT_NO_MSG(buf); return buf; } static void sdp_client_connected(struct bt_l2cap_chan *chan) { struct bt_sdp_client *session = SDP_CLIENT_CHAN(chan); BT_DBG("session %p chan %p connected", session, chan); session->rec_buf = chan->ops->alloc_buf(chan); sdp_client_ssa_search(session); } static void sdp_client_disconnected(struct bt_l2cap_chan *chan) { struct bt_sdp_client *session = SDP_CLIENT_CHAN(chan); BT_DBG("session %p chan %p disconnected", session, chan); net_buf_unref(session->rec_buf); /* * Reset session excluding L2CAP channel member. Let's the channel * resets autonomous. */ memset(&session->reqs, 0, sizeof(*session) - sizeof(session->chan)); } static struct bt_l2cap_chan_ops sdp_client_chan_ops = { .connected = sdp_client_connected, .disconnected = sdp_client_disconnected, .recv = sdp_client_receive, .alloc_buf = sdp_client_alloc_buf, }; static struct bt_sdp_client *sdp_client_new_session(struct bt_conn *conn) { int i; for (i = 0; i < ARRAY_SIZE(bt_sdp_client_pool); i++) { struct bt_sdp_client *session = &bt_sdp_client_pool[i]; int err; if (session->chan.chan.conn) { continue; } sys_slist_init(&session->reqs); session->chan.chan.ops = &sdp_client_chan_ops; session->chan.chan.conn = conn; session->chan.rx.mtu = SDP_CLIENT_MTU; err = sdp_client_chan_connect(session); if (err) { memset(session, 0, sizeof(*session)); BT_ERR("Cannot connect %d", err); return NULL; } return session; } BT_ERR("No available SDP client context"); return NULL; } static struct bt_sdp_client *sdp_client_get_session(struct bt_conn *conn) { int i; for (i = 0; i < ARRAY_SIZE(bt_sdp_client_pool); i++) { if (bt_sdp_client_pool[i].chan.chan.conn == conn) { return &bt_sdp_client_pool[i]; } } /* * Try to allocate session context since not found in pool and attempt * connect to remote SDP endpoint. */ return sdp_client_new_session(conn); } int bt_sdp_discover(struct bt_conn *conn, const struct bt_sdp_discover_params *params) { struct bt_sdp_client *session; if (!params || !params->uuid || !params->func || !params->pool) { BT_WARN("Invalid user params"); return -EINVAL; } session = sdp_client_get_session(conn); if (!session) { return -ENOMEM; } sys_slist_append(&session->reqs, (sys_snode_t *)¶ms->_node); return 0; } /* Helper getting length of data determined by DTD for integers */ static inline ssize_t sdp_get_int_len(const uint8_t *data, size_t len) { BT_ASSERT(data); switch (data[0]) { case BT_SDP_DATA_NIL: return 1; case BT_SDP_BOOL: case BT_SDP_INT8: case BT_SDP_UINT8: if (len < 2) { break; } return 2; case BT_SDP_INT16: case BT_SDP_UINT16: if (len < 3) { break; } return 3; case BT_SDP_INT32: case BT_SDP_UINT32: if (len < 5) { break; } return 5; case BT_SDP_INT64: case BT_SDP_UINT64: if (len < 9) { break; } return 9; case BT_SDP_INT128: case BT_SDP_UINT128: default: BT_ERR("Invalid/unhandled DTD 0x%02x", data[0]); return -EINVAL; } BT_ERR("Too short buffer length %zu", len); return -EMSGSIZE; } /* Helper getting length of data determined by DTD for UUID */ static inline ssize_t sdp_get_uuid_len(const uint8_t *data, size_t len) { BT_ASSERT(data); switch (data[0]) { case BT_SDP_UUID16: if (len < 3) { break; } return 3; case BT_SDP_UUID32: if (len < 5) { break; } return 5; case BT_SDP_UUID128: default: BT_ERR("Invalid/unhandled DTD 0x%02x", data[0]); return -EINVAL; } BT_ERR("Too short buffer length %zu", len); return -EMSGSIZE; } /* Helper getting length of data determined by DTD for strings */ static inline ssize_t sdp_get_str_len(const uint8_t *data, size_t len) { const uint8_t *pnext; BT_ASSERT(data); /* validate len for pnext safe use to read next 8bit value */ if (len < 2) { goto err; } pnext = data + sizeof(uint8_t); switch (data[0]) { case BT_SDP_TEXT_STR8: case BT_SDP_URL_STR8: if (len < (2 + pnext[0])) { break; } return 2 + pnext[0]; case BT_SDP_TEXT_STR16: case BT_SDP_URL_STR16: /* validate len for pnext safe use to read 16bit value */ if (len < 3) { break; } if (len < (3 + sys_get_be16(pnext))) { break; } return 3 + sys_get_be16(pnext); case BT_SDP_TEXT_STR32: case BT_SDP_URL_STR32: default: BT_ERR("Invalid/unhandled DTD 0x%02x", data[0]); return -EINVAL; } err: BT_ERR("Too short buffer length %zu", len); return -EMSGSIZE; } /* Helper getting length of data determined by DTD for sequences */ static inline ssize_t sdp_get_seq_len(const uint8_t *data, size_t len) { const uint8_t *pnext; BT_ASSERT(data); /* validate len for pnext safe use to read 8bit bit value */ if (len < 2) { goto err; } pnext = data + sizeof(uint8_t); switch (data[0]) { case BT_SDP_SEQ8: case BT_SDP_ALT8: if (len < (2 + pnext[0])) { break; } return 2 + pnext[0]; case BT_SDP_SEQ16: case BT_SDP_ALT16: /* validate len for pnext safe use to read 16bit value */ if (len < 3) { break; } if (len < (3 + sys_get_be16(pnext))) { break; } return 3 + sys_get_be16(pnext); case BT_SDP_SEQ32: case BT_SDP_ALT32: default: BT_ERR("Invalid/unhandled DTD 0x%02x", data[0]); return -EINVAL; } err: BT_ERR("Too short buffer length %zu", len); return -EMSGSIZE; } /* Helper getting length of attribute value data */ static ssize_t sdp_get_attr_value_len(const uint8_t *data, size_t len) { BT_ASSERT(data); BT_DBG("Attr val DTD 0x%02x", data[0]); switch (data[0]) { case BT_SDP_DATA_NIL: case BT_SDP_BOOL: case BT_SDP_UINT8: case BT_SDP_UINT16: case BT_SDP_UINT32: case BT_SDP_UINT64: case BT_SDP_UINT128: case BT_SDP_INT8: case BT_SDP_INT16: case BT_SDP_INT32: case BT_SDP_INT64: case BT_SDP_INT128: return sdp_get_int_len(data, len); case BT_SDP_UUID16: case BT_SDP_UUID32: case BT_SDP_UUID128: return sdp_get_uuid_len(data, len); case BT_SDP_TEXT_STR8: case BT_SDP_TEXT_STR16: case BT_SDP_TEXT_STR32: case BT_SDP_URL_STR8: case BT_SDP_URL_STR16: case BT_SDP_URL_STR32: return sdp_get_str_len(data, len); case BT_SDP_SEQ8: case BT_SDP_SEQ16: case BT_SDP_SEQ32: case BT_SDP_ALT8: case BT_SDP_ALT16: case BT_SDP_ALT32: return sdp_get_seq_len(data, len); default: BT_ERR("Unknown DTD 0x%02x", data[0]); return -EINVAL; } } /* Type holding UUID item and related to it specific information. */ struct bt_sdp_uuid_desc { union { struct bt_uuid uuid; struct bt_uuid_16 uuid16; struct bt_uuid_32 uuid32; }; uint16_t attr_id; uint8_t *params; uint16_t params_len; }; /* Generic attribute item collector. */ struct bt_sdp_attr_item { /* Attribute identifier. */ uint16_t attr_id; /* Address of beginning attribute value taken from original buffer * holding response from server. */ uint8_t *val; /* Says about the length of attribute value. */ uint16_t len; }; static int bt_sdp_get_attr(const struct net_buf *buf, struct bt_sdp_attr_item *attr, uint16_t attr_id) { uint8_t *data; uint16_t id; data = buf->data; while (data - buf->data < buf->len) { ssize_t dlen; /* data need to point to attribute id descriptor field (DTD)*/ if (data[0] != BT_SDP_UINT16) { BT_ERR("Invalid descriptor 0x%02x", data[0]); return -EINVAL; } data += sizeof(uint8_t); id = sys_get_be16(data); BT_DBG("Attribute ID 0x%04x", id); data += sizeof(uint16_t); dlen = sdp_get_attr_value_len(data, buf->len - (data - buf->data)); if (dlen < 0) { BT_ERR("Invalid attribute value data"); return -EINVAL; } if (id == attr_id) { BT_DBG("Attribute ID 0x%04x Value found", id); /* * Initialize attribute value buffer data using selected * data slice from original buffer. */ attr->val = data; attr->len = dlen; attr->attr_id = id; return 0; } data += dlen; } return -ENOENT; } /* reads SEQ item length, moves input buffer data reader forward */ static ssize_t sdp_get_seq_len_item(uint8_t **data, size_t len) { const uint8_t *pnext; BT_ASSERT(data); BT_ASSERT(*data); /* validate len for pnext safe use to read 8bit bit value */ if (len < 2) { goto err; } pnext = *data + sizeof(uint8_t); switch (*data[0]) { case BT_SDP_SEQ8: if (len < (2 + pnext[0])) { break; } *data += 2; return pnext[0]; case BT_SDP_SEQ16: /* validate len for pnext safe use to read 16bit value */ if (len < 3) { break; } if (len < (3 + sys_get_be16(pnext))) { break; } *data += 3; return sys_get_be16(pnext); case BT_SDP_SEQ32: /* validate len for pnext safe use to read 32bit value */ if (len < 5) { break; } if (len < (5 + sys_get_be32(pnext))) { break; } *data += 5; return sys_get_be32(pnext); default: BT_ERR("Invalid/unhandled DTD 0x%02x", *data[0]); return -EINVAL; } err: BT_ERR("Too short buffer length %zu", len); return -EMSGSIZE; } static int sdp_get_uuid_data(const struct bt_sdp_attr_item *attr, struct bt_sdp_uuid_desc *pd, uint16_t proto_profile) { /* get start address of attribute value */ uint8_t *p = attr->val; ssize_t slen; BT_ASSERT(p); /* Attribute value is a SEQ, get length of parent SEQ frame */ slen = sdp_get_seq_len_item(&p, attr->len); if (slen < 0) { return slen; } /* start reading stacked UUIDs in analyzed sequences tree */ while (p - attr->val < attr->len) { size_t to_end, left = 0; /* to_end tells how far to the end of input buffer */ to_end = attr->len - (p - attr->val); /* how long is current UUID's item data associated to */ slen = sdp_get_seq_len_item(&p, to_end); if (slen < 0) { return slen; } /* left tells how far is to the end of current UUID */ left = slen; /* check if at least DTD + UUID16 can be read safely */ if (left < 3) { return -EMSGSIZE; } /* check DTD and get stacked UUID value */ switch (p[0]) { case BT_SDP_UUID16: memcpy(&pd->uuid16, BT_UUID_DECLARE_16(sys_get_be16(++p)), sizeof(struct bt_uuid_16)); p += sizeof(uint16_t); left -= sizeof(uint16_t); break; case BT_SDP_UUID32: /* check if valid UUID32 can be read safely */ if (left < 5) { return -EMSGSIZE; } memcpy(&pd->uuid32, BT_UUID_DECLARE_32(sys_get_be32(++p)), sizeof(struct bt_uuid_32)); p += sizeof(uint32_t); left -= sizeof(uint32_t); break; default: BT_ERR("Invalid/unhandled DTD 0x%02x\n", p[0]); return -EINVAL; } /* include last DTD in p[0] size itself updating left */ left -= sizeof(p[0]); /* * Check if current UUID value matches input one given by user. * If found save it's location and length and return. */ if ((proto_profile == BT_UUID_16(&pd->uuid)->val) || (proto_profile == BT_UUID_32(&pd->uuid)->val)) { pd->params = p; pd->params_len = left; BT_DBG("UUID 0x%s found", bt_uuid_str(&pd->uuid)); return 0; } /* skip left octets to point beginning of next UUID in tree */ p += left; } BT_DBG("Value 0x%04x not found", proto_profile); return -ENOENT; } /* * Helper extracting specific parameters associated with UUID node given in * protocol descriptor list or profile descriptor list. */ static int sdp_get_param_item(struct bt_sdp_uuid_desc *pd_item, uint16_t *param) { const uint8_t *p = pd_item->params; bool len_err = false; BT_ASSERT(p); BT_DBG("Getting UUID's 0x%s params", bt_uuid_str(&pd_item->uuid)); switch (p[0]) { case BT_SDP_UINT8: /* check if 8bits value can be read safely */ if (pd_item->params_len < 2) { len_err = true; break; } *param = (++p)[0]; p += sizeof(uint8_t); break; case BT_SDP_UINT16: /* check if 16bits value can be read safely */ if (pd_item->params_len < 3) { len_err = true; break; } *param = sys_get_be16(++p); p += sizeof(uint16_t); break; case BT_SDP_UINT32: /* check if 32bits value can be read safely */ if (pd_item->params_len < 5) { len_err = true; break; } *param = sys_get_be32(++p); p += sizeof(uint32_t); break; default: BT_ERR("Invalid/unhandled DTD 0x%02x\n", p[0]); return -EINVAL; } /* * Check if no more data than already read is associated with UUID. In * valid case after getting parameter we should reach data buf end. */ if (p - pd_item->params != pd_item->params_len || len_err) { BT_DBG("Invalid param buffer length"); return -EMSGSIZE; } return 0; } int bt_sdp_get_proto_param(const struct net_buf *buf, enum bt_sdp_proto proto, uint16_t *param) { struct bt_sdp_attr_item attr; struct bt_sdp_uuid_desc pd; int res; if (proto != BT_SDP_PROTO_RFCOMM && proto != BT_SDP_PROTO_L2CAP) { BT_ERR("Invalid protocol specifier"); return -EINVAL; } res = bt_sdp_get_attr(buf, &attr, BT_SDP_ATTR_PROTO_DESC_LIST); if (res < 0) { BT_WARN("Attribute 0x%04x not found, err %d", BT_SDP_ATTR_PROTO_DESC_LIST, res); return res; } res = sdp_get_uuid_data(&attr, &pd, proto); if (res < 0) { BT_WARN("Protocol specifier 0x%04x not found, err %d", proto, res); return res; } return sdp_get_param_item(&pd, param); } int bt_sdp_get_profile_version(const struct net_buf *buf, uint16_t profile, uint16_t *version) { struct bt_sdp_attr_item attr; struct bt_sdp_uuid_desc pd; int res; res = bt_sdp_get_attr(buf, &attr, BT_SDP_ATTR_PROFILE_DESC_LIST); if (res < 0) { BT_WARN("Attribute 0x%04x not found, err %d", BT_SDP_ATTR_PROFILE_DESC_LIST, res); return res; } res = sdp_get_uuid_data(&attr, &pd, profile); if (res < 0) { BT_WARN("Profile 0x%04x not found, err %d", profile, res); return res; } return sdp_get_param_item(&pd, version); } int bt_sdp_get_features(const struct net_buf *buf, uint16_t *features) { struct bt_sdp_attr_item attr; const uint8_t *p; int res; res = bt_sdp_get_attr(buf, &attr, BT_SDP_ATTR_SUPPORTED_FEATURES); if (res < 0) { BT_WARN("Attribute 0x%04x not found, err %d", BT_SDP_ATTR_SUPPORTED_FEATURES, res); return res; } p = attr.val; BT_ASSERT(p); if (p[0] != BT_SDP_UINT16) { BT_ERR("Invalid DTD 0x%02x", p[0]); return -EINVAL; } /* assert 16bit can be read safely */ if (attr.len < 3) { BT_ERR("Data length too short %u", attr.len); return -EMSGSIZE; } *features = sys_get_be16(++p); p += sizeof(uint16_t); if (p - attr.val != attr.len) { BT_ERR("Invalid data length %u", attr.len); return -EMSGSIZE; } return 0; } |