| /* |
| * |
| * BlueZ - Bluetooth protocol stack for Linux |
| * |
| * Copyright (C) 2001-2002 Nokia Corporation |
| * Copyright (C) 2002-2003 Maxim Krasnyansky <maxk@qualcomm.com> |
| * Copyright (C) 2002-2010 Marcel Holtmann <marcel@holtmann.org> |
| * Copyright (C) 2002-2003 Stephen Crane <steve.crane@rococosoft.com> |
| * |
| * |
| * 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 <errno.h> |
| #include <stdlib.h> |
| #include <limits.h> |
| #include <stdbool.h> |
| |
| #include "lib/bluetooth.h" |
| #include "lib/l2cap.h" |
| #include "lib/sdp.h" |
| #include "lib/sdp_lib.h" |
| |
| #include "src/shared/util.h" |
| |
| #include "sdpd.h" |
| #include "log.h" |
| |
| typedef struct { |
| uint32_t timestamp; |
| union { |
| uint16_t maxBytesSent; |
| uint16_t lastIndexSent; |
| } cStateValue; |
| } sdp_cont_state_t; |
| |
| #define SDP_CONT_STATE_SIZE (sizeof(uint8_t) + sizeof(sdp_cont_state_t)) |
| |
| #define MIN(x, y) ((x) < (y)) ? (x): (y) |
| |
| typedef struct _sdp_cstate_list sdp_cstate_list_t; |
| |
| struct _sdp_cstate_list { |
| sdp_cstate_list_t *next; |
| uint32_t timestamp; |
| sdp_buf_t buf; |
| }; |
| |
| static sdp_cstate_list_t *cstates; |
| |
| /* FIXME: should probably remove it when it's found */ |
| static sdp_buf_t *sdp_get_cached_rsp(sdp_cont_state_t *cstate) |
| { |
| sdp_cstate_list_t *p; |
| |
| for (p = cstates; p; p = p->next) |
| if (p->timestamp == cstate->timestamp) |
| return &p->buf; |
| return 0; |
| } |
| |
| static uint32_t sdp_cstate_alloc_buf(sdp_buf_t *buf) |
| { |
| sdp_cstate_list_t *cstate = malloc(sizeof(sdp_cstate_list_t)); |
| uint8_t *data = malloc(buf->data_size); |
| |
| memcpy(data, buf->data, buf->data_size); |
| memset((char *)cstate, 0, sizeof(sdp_cstate_list_t)); |
| cstate->buf.data = data; |
| cstate->buf.data_size = buf->data_size; |
| cstate->buf.buf_size = buf->data_size; |
| cstate->timestamp = sdp_get_time(); |
| cstate->next = cstates; |
| cstates = cstate; |
| return cstate->timestamp; |
| } |
| |
| /* Additional values for checking datatype (not in spec) */ |
| #define SDP_TYPE_UUID 0xfe |
| #define SDP_TYPE_ATTRID 0xff |
| |
| struct attrid { |
| uint8_t dtd; |
| union { |
| uint16_t uint16; |
| uint32_t uint32; |
| }; |
| }; |
| |
| /* |
| * Generic data element sequence extractor. Builds |
| * a list whose elements are those found in the |
| * sequence. The data type of elements found in the |
| * sequence is returned in the reference pDataType |
| */ |
| static int extract_des(uint8_t *buf, int len, sdp_list_t **svcReqSeq, uint8_t *pDataType, uint8_t expectedType) |
| { |
| uint8_t seqType; |
| int scanned, data_size = 0; |
| short numberOfElements = 0; |
| int seqlen = 0; |
| sdp_list_t *pSeq = NULL; |
| uint8_t dataType; |
| int status = 0; |
| const uint8_t *p; |
| size_t bufsize; |
| |
| scanned = sdp_extract_seqtype(buf, len, &seqType, &data_size); |
| |
| SDPDBG("Seq type : %d", seqType); |
| if (!scanned || (seqType != SDP_SEQ8 && seqType != SDP_SEQ16)) { |
| error("Unknown seq type"); |
| return -1; |
| } |
| p = buf + scanned; |
| bufsize = len - scanned; |
| |
| SDPDBG("Data size : %d", data_size); |
| |
| for (;;) { |
| char *pElem = NULL; |
| int localSeqLength = 0; |
| uuid_t *puuid; |
| |
| if (bufsize < sizeof(uint8_t)) { |
| SDPDBG("->Unexpected end of buffer"); |
| goto failed; |
| } |
| |
| dataType = *p; |
| |
| SDPDBG("Data type: 0x%02x", dataType); |
| |
| if (expectedType == SDP_TYPE_UUID) { |
| if (dataType != SDP_UUID16 && dataType != SDP_UUID32 && dataType != SDP_UUID128) { |
| SDPDBG("->Unexpected Data type (expected UUID_ANY)"); |
| goto failed; |
| } |
| } else if (expectedType == SDP_TYPE_ATTRID && |
| (dataType != SDP_UINT16 && dataType != SDP_UINT32)) { |
| SDPDBG("->Unexpected Data type (expected 0x%02x or 0x%02x)", |
| SDP_UINT16, SDP_UINT32); |
| goto failed; |
| } else if (expectedType != SDP_TYPE_ATTRID && dataType != expectedType) { |
| SDPDBG("->Unexpected Data type (expected 0x%02x)", expectedType); |
| goto failed; |
| } |
| |
| switch (dataType) { |
| case SDP_UINT16: |
| p += sizeof(uint8_t); |
| seqlen += sizeof(uint8_t); |
| bufsize -= sizeof(uint8_t); |
| if (bufsize < sizeof(uint16_t)) { |
| SDPDBG("->Unexpected end of buffer"); |
| goto failed; |
| } |
| |
| if (expectedType == SDP_TYPE_ATTRID) { |
| struct attrid *aid; |
| aid = malloc(sizeof(struct attrid)); |
| aid->dtd = dataType; |
| aid->uint16 = get_be16(p); |
| pElem = (char *) aid; |
| } else { |
| uint16_t tmp; |
| |
| memcpy(&tmp, p, sizeof(tmp)); |
| |
| pElem = malloc(sizeof(uint16_t)); |
| put_be16(tmp, pElem); |
| } |
| p += sizeof(uint16_t); |
| seqlen += sizeof(uint16_t); |
| bufsize -= sizeof(uint16_t); |
| break; |
| case SDP_UINT32: |
| p += sizeof(uint8_t); |
| seqlen += sizeof(uint8_t); |
| bufsize -= sizeof(uint8_t); |
| if (bufsize < (int)sizeof(uint32_t)) { |
| SDPDBG("->Unexpected end of buffer"); |
| goto failed; |
| } |
| |
| if (expectedType == SDP_TYPE_ATTRID) { |
| struct attrid *aid; |
| aid = malloc(sizeof(struct attrid)); |
| aid->dtd = dataType; |
| aid->uint32 = get_be32(p); |
| |
| pElem = (char *) aid; |
| } else { |
| uint32_t tmp; |
| |
| memcpy(&tmp, p, sizeof(tmp)); |
| |
| pElem = malloc(sizeof(uint32_t)); |
| put_be32(tmp, pElem); |
| } |
| p += sizeof(uint32_t); |
| seqlen += sizeof(uint32_t); |
| bufsize -= sizeof(uint32_t); |
| break; |
| case SDP_UUID16: |
| case SDP_UUID32: |
| case SDP_UUID128: |
| puuid = malloc(sizeof(uuid_t)); |
| status = sdp_uuid_extract(p, bufsize, puuid, &localSeqLength); |
| if (status < 0) { |
| free(puuid); |
| goto failed; |
| } |
| |
| pElem = (char *) puuid; |
| seqlen += localSeqLength; |
| p += localSeqLength; |
| bufsize -= localSeqLength; |
| break; |
| default: |
| return -1; |
| } |
| if (status == 0) { |
| pSeq = sdp_list_append(pSeq, pElem); |
| numberOfElements++; |
| SDPDBG("No of elements : %d", numberOfElements); |
| |
| if (seqlen == data_size) |
| break; |
| else if (seqlen > data_size || seqlen > len) |
| goto failed; |
| } else |
| free(pElem); |
| } |
| *svcReqSeq = pSeq; |
| scanned += seqlen; |
| *pDataType = dataType; |
| return scanned; |
| |
| failed: |
| sdp_list_free(pSeq, free); |
| return -1; |
| } |
| |
| static int sdp_set_cstate_pdu(sdp_buf_t *buf, sdp_cont_state_t *cstate) |
| { |
| uint8_t *pdata = buf->data + buf->data_size; |
| int length = 0; |
| |
| if (cstate) { |
| SDPDBG("Non null sdp_cstate_t id : 0x%x", cstate->timestamp); |
| *pdata = sizeof(sdp_cont_state_t); |
| pdata += sizeof(uint8_t); |
| length += sizeof(uint8_t); |
| memcpy(pdata, cstate, sizeof(sdp_cont_state_t)); |
| length += sizeof(sdp_cont_state_t); |
| } else { |
| /* set "null" continuation state */ |
| *pdata = 0; |
| length += sizeof(uint8_t); |
| } |
| buf->data_size += length; |
| return length; |
| } |
| |
| static int sdp_cstate_get(uint8_t *buffer, size_t len, |
| sdp_cont_state_t **cstate) |
| { |
| uint8_t cStateSize = *buffer; |
| |
| SDPDBG("Continuation State size : %d", cStateSize); |
| |
| if (cStateSize == 0) { |
| *cstate = NULL; |
| return 0; |
| } |
| |
| buffer++; |
| len--; |
| |
| if (len < sizeof(sdp_cont_state_t)) |
| return -EINVAL; |
| |
| /* |
| * Check if continuation state exists, if yes attempt |
| * to get response remainder from cache, else send error |
| */ |
| |
| *cstate = malloc(sizeof(sdp_cont_state_t)); |
| if (!(*cstate)) |
| return -ENOMEM; |
| |
| memcpy(*cstate, buffer, sizeof(sdp_cont_state_t)); |
| |
| SDPDBG("Cstate TS : 0x%x", (*cstate)->timestamp); |
| SDPDBG("Bytes sent : %d", (*cstate)->cStateValue.maxBytesSent); |
| |
| return 0; |
| } |
| |
| /* |
| * The matching process is defined as "each and every UUID |
| * specified in the "search pattern" must be present in the |
| * "target pattern". Here "search pattern" is the set of UUIDs |
| * specified by the service discovery client and "target pattern" |
| * is the set of UUIDs present in a service record. |
| * |
| * Return 1 if each and every UUID in the search |
| * pattern exists in the target pattern, 0 if the |
| * match succeeds and -1 on error. |
| */ |
| static int sdp_match_uuid(sdp_list_t *search, sdp_list_t *pattern) |
| { |
| /* |
| * The target is a sorted list, so we need not look |
| * at all elements to confirm existence of an element |
| * from the search pattern |
| */ |
| int patlen = sdp_list_len(pattern); |
| |
| if (patlen < sdp_list_len(search)) |
| return -1; |
| for (; search; search = search->next) { |
| uuid_t *uuid128; |
| void *data = search->data; |
| sdp_list_t *list; |
| if (data == NULL) |
| return -1; |
| |
| /* create 128-bit form of the search UUID */ |
| uuid128 = sdp_uuid_to_uuid128((uuid_t *)data); |
| list = sdp_list_find(pattern, uuid128, sdp_uuid128_cmp); |
| bt_free(uuid128); |
| if (!list) |
| return 0; |
| } |
| return 1; |
| } |
| |
| /* |
| * Service search request PDU. This method extracts the search pattern |
| * (a sequence of UUIDs) and calls the matching function |
| * to find matching services |
| */ |
| static int service_search_req(sdp_req_t *req, sdp_buf_t *buf) |
| { |
| int status = 0, i, plen, mlen, mtu, scanned; |
| sdp_list_t *pattern = NULL; |
| uint16_t expected, actual, rsp_count = 0; |
| uint8_t dtd; |
| sdp_cont_state_t *cstate = NULL; |
| uint8_t *pCacheBuffer = NULL; |
| int handleSize = 0; |
| uint32_t cStateId = 0; |
| uint8_t *pTotalRecordCount, *pCurrentRecordCount; |
| uint8_t *pdata = req->buf + sizeof(sdp_pdu_hdr_t); |
| size_t data_left = req->len - sizeof(sdp_pdu_hdr_t); |
| |
| scanned = extract_des(pdata, data_left, &pattern, &dtd, SDP_TYPE_UUID); |
| |
| if (scanned == -1) { |
| status = SDP_INVALID_SYNTAX; |
| goto done; |
| } |
| pdata += scanned; |
| data_left -= scanned; |
| |
| plen = ntohs(((sdp_pdu_hdr_t *)(req->buf))->plen); |
| mlen = scanned + sizeof(uint16_t) + 1; |
| /* ensure we don't read past buffer */ |
| if (plen < mlen || plen != mlen + *(uint8_t *)(pdata+sizeof(uint16_t))) { |
| status = SDP_INVALID_SYNTAX; |
| goto done; |
| } |
| |
| if (data_left < sizeof(uint16_t)) { |
| status = SDP_INVALID_SYNTAX; |
| goto done; |
| } |
| |
| expected = get_be16(pdata); |
| |
| SDPDBG("Expected count: %d", expected); |
| SDPDBG("Bytes scanned : %d", scanned); |
| |
| pdata += sizeof(uint16_t); |
| data_left -= sizeof(uint16_t); |
| |
| /* |
| * Check if continuation state exists, if yes attempt |
| * to get rsp remainder from cache, else send error |
| */ |
| if (sdp_cstate_get(pdata, data_left, &cstate) < 0) { |
| status = SDP_INVALID_SYNTAX; |
| goto done; |
| } |
| |
| mtu = req->mtu - sizeof(sdp_pdu_hdr_t) - sizeof(uint16_t) - sizeof(uint16_t) - SDP_CONT_STATE_SIZE; |
| actual = MIN(expected, mtu >> 2); |
| |
| /* make space in the rsp buffer for total and current record counts */ |
| pdata = buf->data; |
| |
| /* total service record count = 0 */ |
| pTotalRecordCount = pdata; |
| put_be16(0, pdata); |
| pdata += sizeof(uint16_t); |
| buf->data_size += sizeof(uint16_t); |
| |
| /* current service record count = 0 */ |
| pCurrentRecordCount = pdata; |
| put_be16(0, pdata); |
| pdata += sizeof(uint16_t); |
| buf->data_size += sizeof(uint16_t); |
| |
| if (cstate == NULL) { |
| /* for every record in the DB, do a pattern search */ |
| sdp_list_t *list = sdp_get_record_list(); |
| |
| handleSize = 0; |
| for (; list && rsp_count < expected; list = list->next) { |
| sdp_record_t *rec = list->data; |
| |
| SDPDBG("Checking svcRec : 0x%x", rec->handle); |
| |
| if (sdp_match_uuid(pattern, rec->pattern) > 0 && |
| sdp_check_access(rec->handle, &req->device)) { |
| rsp_count++; |
| put_be32(rec->handle, pdata); |
| pdata += sizeof(uint32_t); |
| handleSize += sizeof(uint32_t); |
| } |
| } |
| |
| SDPDBG("Match count: %d", rsp_count); |
| |
| buf->data_size += handleSize; |
| put_be16(rsp_count, pTotalRecordCount); |
| put_be16(rsp_count, pCurrentRecordCount); |
| |
| if (rsp_count > actual) { |
| /* cache the rsp and generate a continuation state */ |
| cStateId = sdp_cstate_alloc_buf(buf); |
| /* |
| * subtract handleSize since we now send only |
| * a subset of handles |
| */ |
| buf->data_size -= handleSize; |
| } else { |
| /* NULL continuation state */ |
| sdp_set_cstate_pdu(buf, NULL); |
| } |
| } |
| |
| /* under both the conditions below, the rsp buffer is not built yet */ |
| if (cstate || cStateId > 0) { |
| short lastIndex = 0; |
| |
| if (cstate) { |
| /* |
| * Get the previous sdp_cont_state_t and obtain |
| * the cached rsp |
| */ |
| sdp_buf_t *pCache = sdp_get_cached_rsp(cstate); |
| if (pCache) { |
| pCacheBuffer = pCache->data; |
| /* get the rsp_count from the cached buffer */ |
| rsp_count = get_be16(pCacheBuffer); |
| |
| /* get index of the last sdp_record_t sent */ |
| lastIndex = cstate->cStateValue.lastIndexSent; |
| } else { |
| status = SDP_INVALID_CSTATE; |
| goto done; |
| } |
| } else { |
| pCacheBuffer = buf->data; |
| lastIndex = 0; |
| } |
| |
| /* |
| * Set the local buffer pointer to after the |
| * current record count and increment the cached |
| * buffer pointer to beyond the counters |
| */ |
| pdata = pCurrentRecordCount + sizeof(uint16_t); |
| |
| /* increment beyond the totalCount and the currentCount */ |
| pCacheBuffer += 2 * sizeof(uint16_t); |
| |
| if (cstate) { |
| handleSize = 0; |
| for (i = lastIndex; (i - lastIndex) < actual && i < rsp_count; i++) { |
| memcpy(pdata, pCacheBuffer + i * sizeof(uint32_t), sizeof(uint32_t)); |
| pdata += sizeof(uint32_t); |
| handleSize += sizeof(uint32_t); |
| } |
| } else { |
| handleSize = actual << 2; |
| i = actual; |
| } |
| |
| buf->data_size += handleSize; |
| put_be16(rsp_count, pTotalRecordCount); |
| put_be16(i - lastIndex, pCurrentRecordCount); |
| |
| if (i == rsp_count) { |
| /* set "null" continuationState */ |
| sdp_set_cstate_pdu(buf, NULL); |
| } else { |
| /* |
| * there's more: set lastIndexSent to |
| * the new value and move on |
| */ |
| sdp_cont_state_t newState; |
| |
| SDPDBG("Setting non-NULL sdp_cstate_t"); |
| |
| if (cstate) |
| memcpy(&newState, cstate, sizeof(sdp_cont_state_t)); |
| else { |
| memset(&newState, 0, sizeof(sdp_cont_state_t)); |
| newState.timestamp = cStateId; |
| } |
| newState.cStateValue.lastIndexSent = i; |
| sdp_set_cstate_pdu(buf, &newState); |
| } |
| } |
| |
| done: |
| free(cstate); |
| if (pattern) |
| sdp_list_free(pattern, free); |
| |
| return status; |
| } |
| |
| /* |
| * Extract attribute identifiers from the request PDU. |
| * Clients could request a subset of attributes (by id) |
| * from a service record, instead of the whole set. The |
| * requested identifiers are present in the PDU form of |
| * the request |
| */ |
| static int extract_attrs(sdp_record_t *rec, sdp_list_t *seq, sdp_buf_t *buf) |
| { |
| sdp_buf_t pdu; |
| |
| if (!rec) |
| return SDP_INVALID_RECORD_HANDLE; |
| |
| if (seq == NULL) { |
| SDPDBG("Attribute sequence is NULL"); |
| return 0; |
| } |
| |
| SDPDBG("Entries in attr seq : %d", sdp_list_len(seq)); |
| |
| sdp_gen_record_pdu(rec, &pdu); |
| |
| for (; seq; seq = seq->next) { |
| struct attrid *aid = seq->data; |
| |
| SDPDBG("AttrDataType : %d", aid->dtd); |
| |
| if (aid->dtd == SDP_UINT16) { |
| uint16_t attr = aid->uint16; |
| sdp_data_t *a = sdp_data_get(rec, attr); |
| if (a) |
| sdp_append_to_pdu(buf, a); |
| } else if (aid->dtd == SDP_UINT32) { |
| uint32_t range = aid->uint32; |
| uint16_t attr; |
| uint16_t low = (0xffff0000 & range) >> 16; |
| uint16_t high = 0x0000ffff & range; |
| sdp_data_t *data; |
| |
| SDPDBG("attr range : 0x%x", range); |
| SDPDBG("Low id : 0x%x", low); |
| SDPDBG("High id : 0x%x", high); |
| |
| if (low == 0x0000 && high == 0xffff && pdu.data_size <= buf->buf_size) { |
| /* copy it */ |
| memcpy(buf->data, pdu.data, pdu.data_size); |
| buf->data_size = pdu.data_size; |
| break; |
| } |
| /* (else) sub-range of attributes */ |
| for (attr = low; attr < high; attr++) { |
| data = sdp_data_get(rec, attr); |
| if (data) |
| sdp_append_to_pdu(buf, data); |
| } |
| data = sdp_data_get(rec, high); |
| if (data) |
| sdp_append_to_pdu(buf, data); |
| } else { |
| error("Unexpected data type : 0x%x", aid->dtd); |
| error("Expect uint16_t or uint32_t"); |
| free(pdu.data); |
| return SDP_INVALID_SYNTAX; |
| } |
| } |
| |
| free(pdu.data); |
| |
| return 0; |
| } |
| |
| /* |
| * A request for the attributes of a service record. |
| * First check if the service record (specified by |
| * service record handle) exists, then call the attribute |
| * streaming function |
| */ |
| static int service_attr_req(sdp_req_t *req, sdp_buf_t *buf) |
| { |
| sdp_cont_state_t *cstate = NULL; |
| uint8_t *pResponse = NULL; |
| short cstate_size = 0; |
| sdp_list_t *seq = NULL; |
| uint8_t dtd = 0; |
| int scanned = 0; |
| unsigned int max_rsp_size; |
| int status = 0, plen, mlen; |
| uint8_t *pdata = req->buf + sizeof(sdp_pdu_hdr_t); |
| size_t data_left = req->len - sizeof(sdp_pdu_hdr_t); |
| uint32_t handle; |
| |
| if (data_left < sizeof(uint32_t)) { |
| status = SDP_INVALID_SYNTAX; |
| goto done; |
| } |
| |
| handle = get_be32(pdata); |
| |
| pdata += sizeof(uint32_t); |
| data_left -= sizeof(uint32_t); |
| |
| if (data_left < sizeof(uint16_t)) { |
| status = SDP_INVALID_SYNTAX; |
| goto done; |
| } |
| |
| max_rsp_size = get_be16(pdata); |
| |
| pdata += sizeof(uint16_t); |
| data_left -= sizeof(uint16_t); |
| |
| if (data_left < sizeof(sdp_pdu_hdr_t)) { |
| status = SDP_INVALID_SYNTAX; |
| goto done; |
| } |
| |
| /* extract the attribute list */ |
| scanned = extract_des(pdata, data_left, &seq, &dtd, SDP_TYPE_ATTRID); |
| if (scanned == -1) { |
| status = SDP_INVALID_SYNTAX; |
| goto done; |
| } |
| pdata += scanned; |
| data_left -= scanned; |
| |
| plen = ntohs(((sdp_pdu_hdr_t *)(req->buf))->plen); |
| mlen = scanned + sizeof(uint32_t) + sizeof(uint16_t) + 1; |
| /* ensure we don't read past buffer */ |
| if (plen < mlen || plen != mlen + *(uint8_t *)pdata) { |
| status = SDP_INVALID_PDU_SIZE; |
| goto done; |
| } |
| |
| /* |
| * if continuation state exists, attempt |
| * to get rsp remainder from cache, else send error |
| */ |
| if (sdp_cstate_get(pdata, data_left, &cstate) < 0) { |
| status = SDP_INVALID_SYNTAX; |
| goto done; |
| } |
| |
| SDPDBG("SvcRecHandle : 0x%x", handle); |
| SDPDBG("max_rsp_size : %d", max_rsp_size); |
| |
| /* |
| * Check that max_rsp_size is within valid range |
| * a minimum size of 0x0007 has to be used for data field |
| */ |
| if (max_rsp_size < 0x0007) { |
| status = SDP_INVALID_SYNTAX; |
| goto done; |
| } |
| |
| /* |
| * Calculate Attribute size according to MTU |
| * We can send only (MTU - sizeof(sdp_pdu_hdr_t) - sizeof(sdp_cont_state_t)) |
| */ |
| max_rsp_size = MIN(max_rsp_size, req->mtu - sizeof(sdp_pdu_hdr_t) - |
| sizeof(uint32_t) - SDP_CONT_STATE_SIZE - sizeof(uint16_t)); |
| |
| /* pull header for AttributeList byte count */ |
| buf->data += sizeof(uint16_t); |
| buf->buf_size -= sizeof(uint16_t); |
| |
| if (cstate) { |
| sdp_buf_t *pCache = sdp_get_cached_rsp(cstate); |
| |
| SDPDBG("Obtained cached rsp : %p", pCache); |
| |
| if (pCache) { |
| short sent = MIN(max_rsp_size, pCache->data_size - cstate->cStateValue.maxBytesSent); |
| pResponse = pCache->data; |
| memcpy(buf->data, pResponse + cstate->cStateValue.maxBytesSent, sent); |
| buf->data_size += sent; |
| cstate->cStateValue.maxBytesSent += sent; |
| |
| SDPDBG("Response size : %d sending now : %d bytes sent so far : %d", |
| pCache->data_size, sent, cstate->cStateValue.maxBytesSent); |
| if (cstate->cStateValue.maxBytesSent == pCache->data_size) |
| cstate_size = sdp_set_cstate_pdu(buf, NULL); |
| else |
| cstate_size = sdp_set_cstate_pdu(buf, cstate); |
| } else { |
| status = SDP_INVALID_CSTATE; |
| error("NULL cache buffer and non-NULL continuation state"); |
| } |
| } else { |
| sdp_record_t *rec = sdp_record_find(handle); |
| status = extract_attrs(rec, seq, buf); |
| if (buf->data_size > max_rsp_size) { |
| sdp_cont_state_t newState; |
| |
| memset((char *)&newState, 0, sizeof(sdp_cont_state_t)); |
| newState.timestamp = sdp_cstate_alloc_buf(buf); |
| /* |
| * Reset the buffer size to the maximum expected and |
| * set the sdp_cont_state_t |
| */ |
| SDPDBG("Creating continuation state of size : %d", buf->data_size); |
| buf->data_size = max_rsp_size; |
| newState.cStateValue.maxBytesSent = max_rsp_size; |
| cstate_size = sdp_set_cstate_pdu(buf, &newState); |
| } else { |
| if (buf->data_size == 0) |
| sdp_append_to_buf(buf, NULL, 0); |
| cstate_size = sdp_set_cstate_pdu(buf, NULL); |
| } |
| } |
| |
| /* push header */ |
| buf->data -= sizeof(uint16_t); |
| buf->buf_size += sizeof(uint16_t); |
| |
| done: |
| free(cstate); |
| if (seq) |
| sdp_list_free(seq, free); |
| if (status) |
| return status; |
| |
| /* set attribute list byte count */ |
| put_be16(buf->data_size - cstate_size, buf->data); |
| buf->data_size += sizeof(uint16_t); |
| return 0; |
| } |
| |
| /* |
| * combined service search and attribute extraction |
| */ |
| static int service_search_attr_req(sdp_req_t *req, sdp_buf_t *buf) |
| { |
| int status = 0, plen, totscanned; |
| uint8_t *pdata, *pResponse = NULL; |
| unsigned int max; |
| int scanned, rsp_count = 0; |
| sdp_list_t *pattern = NULL, *seq = NULL, *svcList; |
| sdp_cont_state_t *cstate = NULL; |
| short cstate_size = 0; |
| uint8_t dtd = 0; |
| sdp_buf_t tmpbuf; |
| size_t data_left; |
| |
| tmpbuf.data = NULL; |
| pdata = req->buf + sizeof(sdp_pdu_hdr_t); |
| data_left = req->len - sizeof(sdp_pdu_hdr_t); |
| scanned = extract_des(pdata, data_left, &pattern, &dtd, SDP_TYPE_UUID); |
| if (scanned == -1) { |
| status = SDP_INVALID_SYNTAX; |
| goto done; |
| } |
| totscanned = scanned; |
| |
| SDPDBG("Bytes scanned: %d", scanned); |
| |
| pdata += scanned; |
| data_left -= scanned; |
| |
| if (data_left < sizeof(uint16_t)) { |
| status = SDP_INVALID_SYNTAX; |
| goto done; |
| } |
| |
| max = get_be16(pdata); |
| |
| pdata += sizeof(uint16_t); |
| data_left -= sizeof(uint16_t); |
| |
| SDPDBG("Max Attr expected: %d", max); |
| |
| if (data_left < sizeof(sdp_pdu_hdr_t)) { |
| status = SDP_INVALID_SYNTAX; |
| goto done; |
| } |
| |
| /* extract the attribute list */ |
| scanned = extract_des(pdata, data_left, &seq, &dtd, SDP_TYPE_ATTRID); |
| if (scanned == -1) { |
| status = SDP_INVALID_SYNTAX; |
| goto done; |
| } |
| |
| pdata += scanned; |
| data_left -= scanned; |
| |
| totscanned += scanned + sizeof(uint16_t) + 1; |
| |
| plen = ntohs(((sdp_pdu_hdr_t *)(req->buf))->plen); |
| if (plen < totscanned || plen != totscanned + *(uint8_t *)pdata) { |
| status = SDP_INVALID_PDU_SIZE; |
| goto done; |
| } |
| |
| /* |
| * if continuation state exists attempt |
| * to get rsp remainder from cache, else send error |
| */ |
| if (sdp_cstate_get(pdata, data_left, &cstate) < 0) { |
| status = SDP_INVALID_SYNTAX; |
| goto done; |
| } |
| |
| svcList = sdp_get_record_list(); |
| |
| tmpbuf.data = malloc(USHRT_MAX); |
| tmpbuf.data_size = 0; |
| tmpbuf.buf_size = USHRT_MAX; |
| memset(tmpbuf.data, 0, USHRT_MAX); |
| |
| /* |
| * Calculate Attribute size according to MTU |
| * We can send only (MTU - sizeof(sdp_pdu_hdr_t) - sizeof(sdp_cont_state_t)) |
| */ |
| max = MIN(max, req->mtu - sizeof(sdp_pdu_hdr_t) - SDP_CONT_STATE_SIZE - sizeof(uint16_t)); |
| |
| /* pull header for AttributeList byte count */ |
| buf->data += sizeof(uint16_t); |
| buf->buf_size -= sizeof(uint16_t); |
| |
| if (cstate == NULL) { |
| /* no continuation state -> create new response */ |
| sdp_list_t *p; |
| for (p = svcList; p; p = p->next) { |
| sdp_record_t *rec = p->data; |
| if (sdp_match_uuid(pattern, rec->pattern) > 0 && |
| sdp_check_access(rec->handle, &req->device)) { |
| rsp_count++; |
| status = extract_attrs(rec, seq, &tmpbuf); |
| |
| SDPDBG("Response count : %d", rsp_count); |
| SDPDBG("Local PDU size : %d", tmpbuf.data_size); |
| if (status) { |
| SDPDBG("Extract attr from record returns err"); |
| break; |
| } |
| if (buf->data_size + tmpbuf.data_size < buf->buf_size) { |
| /* to be sure no relocations */ |
| sdp_append_to_buf(buf, tmpbuf.data, tmpbuf.data_size); |
| tmpbuf.data_size = 0; |
| memset(tmpbuf.data, 0, USHRT_MAX); |
| } else { |
| error("Relocation needed"); |
| break; |
| } |
| SDPDBG("Net PDU size : %d", buf->data_size); |
| } |
| } |
| if (buf->data_size > max) { |
| sdp_cont_state_t newState; |
| |
| memset((char *)&newState, 0, sizeof(sdp_cont_state_t)); |
| newState.timestamp = sdp_cstate_alloc_buf(buf); |
| /* |
| * Reset the buffer size to the maximum expected and |
| * set the sdp_cont_state_t |
| */ |
| buf->data_size = max; |
| newState.cStateValue.maxBytesSent = max; |
| cstate_size = sdp_set_cstate_pdu(buf, &newState); |
| } else |
| cstate_size = sdp_set_cstate_pdu(buf, NULL); |
| } else { |
| /* continuation State exists -> get from cache */ |
| sdp_buf_t *pCache = sdp_get_cached_rsp(cstate); |
| if (pCache && cstate->cStateValue.maxBytesSent < pCache->data_size) { |
| uint16_t sent = MIN(max, pCache->data_size - cstate->cStateValue.maxBytesSent); |
| pResponse = pCache->data; |
| memcpy(buf->data, pResponse + cstate->cStateValue.maxBytesSent, sent); |
| buf->data_size += sent; |
| cstate->cStateValue.maxBytesSent += sent; |
| if (cstate->cStateValue.maxBytesSent == pCache->data_size) |
| cstate_size = sdp_set_cstate_pdu(buf, NULL); |
| else |
| cstate_size = sdp_set_cstate_pdu(buf, cstate); |
| } else { |
| status = SDP_INVALID_CSTATE; |
| SDPDBG("Non-null continuation state, but null cache buffer"); |
| } |
| } |
| |
| if (!rsp_count && !cstate) { |
| /* found nothing */ |
| buf->data_size = 0; |
| sdp_append_to_buf(buf, tmpbuf.data, tmpbuf.data_size); |
| sdp_set_cstate_pdu(buf, NULL); |
| } |
| |
| /* push header */ |
| buf->data -= sizeof(uint16_t); |
| buf->buf_size += sizeof(uint16_t); |
| |
| if (!status) { |
| /* set attribute list byte count */ |
| put_be16(buf->data_size - cstate_size, buf->data); |
| buf->data_size += sizeof(uint16_t); |
| } |
| |
| done: |
| free(cstate); |
| free(tmpbuf.data); |
| if (pattern) |
| sdp_list_free(pattern, free); |
| if (seq) |
| sdp_list_free(seq, free); |
| return status; |
| } |
| |
| /* |
| * Top level request processor. Calls the appropriate processing |
| * function based on request type. Handles service registration |
| * client requests also. |
| */ |
| static void process_request(sdp_req_t *req) |
| { |
| sdp_pdu_hdr_t *reqhdr = (sdp_pdu_hdr_t *)req->buf; |
| sdp_pdu_hdr_t *rsphdr; |
| sdp_buf_t rsp; |
| uint8_t *buf = malloc(USHRT_MAX); |
| int status = SDP_INVALID_SYNTAX; |
| |
| memset(buf, 0, USHRT_MAX); |
| rsp.data = buf + sizeof(sdp_pdu_hdr_t); |
| rsp.data_size = 0; |
| rsp.buf_size = USHRT_MAX - sizeof(sdp_pdu_hdr_t); |
| rsphdr = (sdp_pdu_hdr_t *)buf; |
| |
| if (ntohs(reqhdr->plen) != req->len - sizeof(sdp_pdu_hdr_t)) { |
| status = SDP_INVALID_PDU_SIZE; |
| goto send_rsp; |
| } |
| switch (reqhdr->pdu_id) { |
| case SDP_SVC_SEARCH_REQ: |
| SDPDBG("Got a svc srch req"); |
| status = service_search_req(req, &rsp); |
| rsphdr->pdu_id = SDP_SVC_SEARCH_RSP; |
| break; |
| case SDP_SVC_ATTR_REQ: |
| SDPDBG("Got a svc attr req"); |
| status = service_attr_req(req, &rsp); |
| rsphdr->pdu_id = SDP_SVC_ATTR_RSP; |
| break; |
| case SDP_SVC_SEARCH_ATTR_REQ: |
| SDPDBG("Got a svc srch attr req"); |
| status = service_search_attr_req(req, &rsp); |
| rsphdr->pdu_id = SDP_SVC_SEARCH_ATTR_RSP; |
| break; |
| /* Following requests are allowed only for local connections */ |
| case SDP_SVC_REGISTER_REQ: |
| SDPDBG("Service register request"); |
| if (req->local) { |
| status = service_register_req(req, &rsp); |
| rsphdr->pdu_id = SDP_SVC_REGISTER_RSP; |
| } |
| break; |
| case SDP_SVC_UPDATE_REQ: |
| SDPDBG("Service update request"); |
| if (req->local) { |
| status = service_update_req(req, &rsp); |
| rsphdr->pdu_id = SDP_SVC_UPDATE_RSP; |
| } |
| break; |
| case SDP_SVC_REMOVE_REQ: |
| SDPDBG("Service removal request"); |
| if (req->local) { |
| status = service_remove_req(req, &rsp); |
| rsphdr->pdu_id = SDP_SVC_REMOVE_RSP; |
| } |
| break; |
| default: |
| error("Unknown PDU ID : 0x%x received", reqhdr->pdu_id); |
| status = SDP_INVALID_SYNTAX; |
| break; |
| } |
| |
| send_rsp: |
| if (status) { |
| rsphdr->pdu_id = SDP_ERROR_RSP; |
| put_be16(status, rsp.data); |
| rsp.data_size = sizeof(uint16_t); |
| } |
| |
| SDPDBG("Sending rsp. status %d", status); |
| |
| rsphdr->tid = reqhdr->tid; |
| rsphdr->plen = htons(rsp.data_size); |
| |
| /* point back to the real buffer start and set the real rsp length */ |
| rsp.data_size += sizeof(sdp_pdu_hdr_t); |
| rsp.data = buf; |
| |
| /* stream the rsp PDU */ |
| if (send(req->sock, rsp.data, rsp.data_size, 0) < 0) |
| error("send: %s (%d)", strerror(errno), errno); |
| |
| SDPDBG("Bytes Sent : %d", rsp.data_size); |
| |
| free(rsp.data); |
| free(req->buf); |
| } |
| |
| void handle_internal_request(int sk, int mtu, void *data, int len) |
| { |
| sdp_req_t req; |
| |
| bacpy(&req.device, BDADDR_ANY); |
| bacpy(&req.bdaddr, BDADDR_LOCAL); |
| req.local = 0; |
| req.sock = sk; |
| req.mtu = mtu; |
| req.flags = 0; |
| req.buf = data; |
| req.len = len; |
| |
| process_request(&req); |
| } |
| |
| void handle_request(int sk, uint8_t *data, int len) |
| { |
| struct sockaddr_l2 sa; |
| socklen_t size; |
| sdp_req_t req; |
| |
| size = sizeof(sa); |
| if (getpeername(sk, (struct sockaddr *) &sa, &size) < 0) { |
| error("getpeername: %s", strerror(errno)); |
| return; |
| } |
| |
| if (sa.l2_family == AF_BLUETOOTH) { |
| struct l2cap_options lo; |
| |
| memset(&lo, 0, sizeof(lo)); |
| size = sizeof(lo); |
| |
| if (getsockopt(sk, SOL_L2CAP, L2CAP_OPTIONS, &lo, &size) < 0) { |
| error("getsockopt: %s", strerror(errno)); |
| return; |
| } |
| |
| bacpy(&req.bdaddr, &sa.l2_bdaddr); |
| req.mtu = lo.omtu; |
| req.local = 0; |
| memset(&sa, 0, sizeof(sa)); |
| size = sizeof(sa); |
| |
| if (getsockname(sk, (struct sockaddr *) &sa, &size) < 0) { |
| error("getsockname: %s", strerror(errno)); |
| return; |
| } |
| |
| bacpy(&req.device, &sa.l2_bdaddr); |
| } else { |
| bacpy(&req.device, BDADDR_ANY); |
| bacpy(&req.bdaddr, BDADDR_LOCAL); |
| req.mtu = 2048; |
| req.local = 1; |
| } |
| |
| req.sock = sk; |
| req.buf = data; |
| req.len = len; |
| |
| process_request(&req); |
| } |