1 /******************************************************************
3 * Copyright 2014 Samsung Electronics All Rights Reserved.
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
19 ******************************************************************/
21 // Defining _BSD_SOURCE or _DEFAULT_SOURCE causes header files to expose
22 // definitions that may otherwise be skipped. Skipping can cause implicit
23 // declaration warnings and/or bugs and subtle problems in code execution.
24 // For glibc information on feature test macros,
25 // Refer http://www.gnu.org/software/libc/manual/html_node/Feature-Test-Macros.html
27 // For details on compatibility and glibc support,
28 // Refer http://www.gnu.org/software/libc/manual/html_node/BSD-Random.html
29 #define _DEFAULT_SOURCE
39 #include "caprotocolmessage.h"
41 #include "oic_malloc.h"
42 #include "oic_string.h"
44 #include "cacommonutil.h"
46 #define TAG "OIC_CA_PRTCL_MSG"
48 #define CA_PDU_MIN_SIZE (4)
49 #define CA_ENCODE_BUFFER_SIZE (4)
51 static const char COAP_URI_HEADER[] = "coap://[::]/";
53 CAResult_t CAGetRequestInfoFromPDU(const coap_pdu_t *pdu, const CAEndpoint_t *endpoint,
54 CARequestInfo_t *outReqInfo)
56 VERIFY_NON_NULL(pdu, TAG, "pdu");
57 VERIFY_NON_NULL(outReqInfo, TAG, "outReqInfo");
59 uint32_t code = CA_NOT_FOUND;
60 CAResult_t ret = CAGetInfoFromPDU(pdu, endpoint, &code, &(outReqInfo->info));
61 outReqInfo->method = code;
66 CAResult_t CAGetResponseInfoFromPDU(const coap_pdu_t *pdu, CAResponseInfo_t *outResInfo,
67 const CAEndpoint_t *endpoint)
69 VERIFY_NON_NULL(pdu, TAG, "pdu");
70 VERIFY_NON_NULL(outResInfo, TAG, "outResInfo");
72 uint32_t code = CA_NOT_FOUND;
73 CAResult_t ret = CAGetInfoFromPDU(pdu, endpoint, &code, &(outResInfo->info));
74 outResInfo->result = code;
79 CAResult_t CAGetErrorInfoFromPDU(const coap_pdu_t *pdu, const CAEndpoint_t *endpoint,
80 CAErrorInfo_t *errorInfo)
82 VERIFY_NON_NULL(pdu, TAG, "pdu");
85 CAResult_t ret = CAGetInfoFromPDU(pdu, endpoint, &code, &errorInfo->info);
90 coap_pdu_t *CAGeneratePDU(uint32_t code, const CAInfo_t *info, const CAEndpoint_t *endpoint,
91 coap_list_t **optlist, coap_transport_type *transport)
93 VERIFY_NON_NULL_RET(info, TAG, "info", NULL);
94 VERIFY_NON_NULL_RET(endpoint, TAG, "endpoint", NULL);
95 VERIFY_NON_NULL_RET(optlist, TAG, "optlist", NULL);
97 coap_pdu_t *pdu = NULL;
99 // RESET have to use only 4byte (empty message)
100 // and ACKNOWLEDGE can use empty message when code is empty.
101 if (CA_MSG_RESET == info->type || (CA_EMPTY == code && CA_MSG_ACKNOWLEDGE == info->type))
103 if (CA_EMPTY != code)
105 OIC_LOG(ERROR, TAG, "reset is not empty message");
109 if (info->payloadSize > 0 || info->payload || info->token || info->tokenLength > 0)
111 OIC_LOG(ERROR, TAG, "Empty message has unnecessary data after messageID");
115 OIC_LOG(DEBUG, TAG, "code is empty");
116 if (!(pdu = CAGeneratePDUImpl((code_t) code, info, endpoint, NULL, transport)))
118 OIC_LOG(ERROR, TAG, "pdu NULL");
124 if (info->resourceUri)
126 uint32_t length = strlen(info->resourceUri);
127 if (CA_MAX_URI_LENGTH < length)
129 OIC_LOG(ERROR, TAG, "URI len err");
133 uint32_t uriLength = length + sizeof(COAP_URI_HEADER);
134 char *coapUri = (char *) OICCalloc(1, uriLength);
137 OIC_LOG(ERROR, TAG, "out of memory");
140 OICStrcat(coapUri, uriLength, COAP_URI_HEADER);
141 OICStrcat(coapUri, uriLength, info->resourceUri);
143 // parsing options in URI
144 CAResult_t res = CAParseURI(coapUri, optlist);
145 if (CA_STATUS_OK != res)
153 // parsing options in HeadOption
154 CAResult_t ret = CAParseHeadOption(code, info, optlist);
155 if (CA_STATUS_OK != ret)
160 pdu = CAGeneratePDUImpl((code_t) code, info, endpoint, *optlist, transport);
163 OIC_LOG(ERROR, TAG, "pdu NULL");
168 // pdu print method : coap_show_pdu(pdu);
172 coap_pdu_t *CAParsePDU(const char *data, uint32_t length, uint32_t *outCode,
173 const CAEndpoint_t *endpoint)
175 VERIFY_NON_NULL_RET(data, TAG, "data", NULL);
176 VERIFY_NON_NULL_RET(endpoint, TAG, "endpoint", NULL);
178 coap_transport_type transport;
180 if (CAIsSupportedCoAPOverTCP(endpoint->adapter))
182 transport = coap_get_tcp_header_type_from_initbyte(((unsigned char *)data)[0] >> 4);
187 transport = coap_udp;
190 coap_pdu_t *outpdu = coap_new_pdu(transport, length);
193 OIC_LOG(ERROR, TAG, "outpdu is null");
197 OIC_LOG_V(DEBUG, TAG, "pdu parse-transport type : %d", transport);
199 int ret = coap_pdu_parse((unsigned char *) data, length, outpdu, transport);
200 OIC_LOG_V(DEBUG, TAG, "pdu parse ret: %d", ret);
203 OIC_LOG(ERROR, TAG, "pdu parse failed");
208 if (CAIsSupportedCoAPOverTCP(endpoint->adapter))
210 OIC_LOG(INFO, TAG, "there is no version info in coap header");
215 if (outpdu->hdr->coap_hdr_udp_t.version != COAP_DEFAULT_VERSION)
217 OIC_LOG_V(ERROR, TAG, "coap version is not available : %d",
218 outpdu->hdr->coap_hdr_udp_t.version);
221 if (outpdu->hdr->coap_hdr_udp_t.token_length > CA_MAX_TOKEN_LEN)
223 OIC_LOG_V(ERROR, TAG, "token length has been exceed : %d",
224 outpdu->hdr->coap_hdr_udp_t.token_length);
231 (*outCode) = (uint32_t) CA_RESPONSE_CODE(coap_get_code(outpdu, transport));
237 coap_delete_pdu(outpdu);
241 coap_pdu_t *CAGeneratePDUImpl(code_t code, const CAInfo_t *info,
242 const CAEndpoint_t *endpoint, coap_list_t *options,
243 coap_transport_type *transport)
245 VERIFY_NON_NULL_RET(info, TAG, "info", NULL);
246 VERIFY_NON_NULL_RET(endpoint, TAG, "endpoint", NULL);
247 VERIFY_NON_NULL_RET(transport, TAG, "transport", NULL);
249 unsigned int length = COAP_MAX_PDU_SIZE;
251 unsigned int msgLength = 0;
252 if (CAIsSupportedCoAPOverTCP(endpoint->adapter))
256 unsigned short prevOptNumber = 0;
257 for (coap_list_t *opt = options; opt; opt = opt->next)
259 unsigned short curOptNumber = COAP_OPTION_KEY(*(coap_option *) opt->data);
260 if (prevOptNumber > curOptNumber)
262 OIC_LOG(ERROR, TAG, "option list is wrong");
266 size_t optValueLen = COAP_OPTION_LENGTH(*(coap_option *) opt->data);
267 size_t optLength = coap_get_opt_header_length(curOptNumber - prevOptNumber, optValueLen);
270 OIC_LOG(ERROR, TAG, "Reserved for the Payload marker for the option");
273 msgLength += optLength;
274 prevOptNumber = curOptNumber;
275 OIC_LOG_V(DEBUG, TAG, "curOptNumber[%d], prevOptNumber[%d], optValueLen[%zu], "
276 "optLength[%zu], msgLength[%d]",
277 curOptNumber, prevOptNumber, optValueLen, optLength, msgLength);
281 if (info->payloadSize > 0)
283 msgLength = msgLength + info->payloadSize + PAYLOAD_MARKER;
285 *transport = coap_get_tcp_header_type_from_size(msgLength);
286 length = msgLength + coap_get_tcp_header_length_for_transport(*transport)
292 *transport = coap_udp;
295 coap_pdu_t *pdu = coap_new_pdu(*transport, length);
299 OIC_LOG(ERROR, TAG, "malloc failed");
303 OIC_LOG_V(DEBUG, TAG, "transport type: %d, payload size: %zu",
304 *transport, info->payloadSize);
307 if (CAIsSupportedCoAPOverTCP(endpoint->adapter))
309 coap_add_length(pdu, *transport, msgLength);
314 OIC_LOG_V(DEBUG, TAG, "msgID is %d", info->messageId);
315 uint16_t message_id = 0;
316 if (0 == info->messageId)
318 /* initialize message id */
319 prng((uint8_t * ) &message_id, sizeof(message_id));
321 OIC_LOG_V(DEBUG, TAG, "gen msg id=%d", message_id);
325 /* use saved message id */
326 message_id = info->messageId;
328 pdu->hdr->coap_hdr_udp_t.id = message_id;
329 OIC_LOG_V(DEBUG, TAG, "messageId in pdu is %d, %d", message_id, pdu->hdr->coap_hdr_udp_t.id);
331 pdu->hdr->coap_hdr_udp_t.type = info->type;
334 coap_add_code(pdu, *transport, code);
336 if (info->token && CA_EMPTY != code)
338 uint32_t tokenLength = info->tokenLength;
339 OIC_LOG_V(DEBUG, TAG, "token info token length: %d, token :", tokenLength);
340 OIC_LOG_BUFFER(DEBUG, TAG, (const uint8_t *)info->token, tokenLength);
342 int32_t ret = coap_add_token(pdu, tokenLength, (unsigned char *)info->token, *transport);
345 OIC_LOG(ERROR, TAG, "can't add token");
350 if (CA_ADAPTER_GATT_BTLE != endpoint->adapter
352 && !CAIsSupportedCoAPOverTCP(endpoint->adapter)
356 // option list will be added in blockwise-transfer
363 for (coap_list_t *opt = options; opt; opt = opt->next)
365 OIC_LOG_V(DEBUG, TAG, "[%s] opt will be added.",
366 COAP_OPTION_DATA(*(coap_option *) opt->data));
368 OIC_LOG_V(DEBUG, TAG, "[%d] pdu length", pdu->length);
369 coap_add_option(pdu, COAP_OPTION_KEY(*(coap_option *) opt->data),
370 COAP_OPTION_LENGTH(*(coap_option *) opt->data),
371 COAP_OPTION_DATA(*(coap_option *) opt->data), *transport);
375 OIC_LOG_V(DEBUG, TAG, "[%d] pdu length after option", pdu->length);
377 if (NULL != info->payload && 0 < info->payloadSize)
379 OIC_LOG(DEBUG, TAG, "payload is added");
380 coap_add_data(pdu, info->payloadSize, (const unsigned char *) info->payload);
386 CAResult_t CAParseURI(const char *uriInfo, coap_list_t **optlist)
388 VERIFY_NON_NULL(uriInfo, TAG, "uriInfo");
389 VERIFY_NON_NULL(optlist, TAG, "optlist");
391 OIC_LOG_V(DEBUG, TAG, "url : %s", uriInfo);
393 /* split arg into Uri-* options */
395 coap_split_uri((unsigned char *) uriInfo, strlen(uriInfo), &uri);
397 if (uri.port != COAP_DEFAULT_PORT)
399 unsigned char portbuf[CA_ENCODE_BUFFER_SIZE] = { 0 };
400 int ret = coap_insert(optlist,
401 CACreateNewOptionNode(COAP_OPTION_URI_PORT,
402 coap_encode_var_bytes(portbuf, uri.port),
407 return CA_STATUS_INVALID_PARAM;
411 if (uri.path.s && uri.path.length)
413 CAResult_t ret = CAParseUriPartial(uri.path.s, uri.path.length,
414 COAP_OPTION_URI_PATH, optlist);
415 if (CA_STATUS_OK != ret)
417 OIC_LOG(ERROR, TAG, "CAParseUriPartial failed(uri path)");
422 if (uri.query.s && uri.query.length)
424 CAResult_t ret = CAParseUriPartial(uri.query.s, uri.query.length, COAP_OPTION_URI_QUERY,
426 if (CA_STATUS_OK != ret)
428 OIC_LOG(ERROR, TAG, "CAParseUriPartial failed(uri query)");
436 CAResult_t CAParseUriPartial(const unsigned char *str, size_t length, int target,
437 coap_list_t **optlist)
439 VERIFY_NON_NULL(optlist, TAG, "optlist");
441 if ((target != COAP_OPTION_URI_PATH) && (target != COAP_OPTION_URI_QUERY))
443 // should never occur. Log just in case.
444 OIC_LOG(DEBUG, TAG, "Unexpected URI component.");
445 return CA_NOT_SUPPORTED;
447 else if (str && length)
449 unsigned char uriBuffer[CA_MAX_URI_LENGTH] = { 0 };
450 unsigned char *pBuf = uriBuffer;
451 size_t buflen = sizeof(uriBuffer);
452 int res = (target == COAP_OPTION_URI_PATH) ? coap_split_path(str, length, pBuf, &buflen) :
453 coap_split_query(str, length, pBuf, &buflen);
460 int ret = coap_insert(optlist,
461 CACreateNewOptionNode(target, COAP_OPT_LENGTH(pBuf),
462 (char *)COAP_OPT_VALUE(pBuf)),
466 return CA_STATUS_INVALID_PARAM;
469 size_t optSize = COAP_OPT_SIZE(pBuf);
470 if ((prevIdx + optSize) < buflen)
479 OIC_LOG_V(ERROR, TAG, "Problem parsing URI : %d for %d", res, target);
480 return CA_STATUS_FAILED;
485 OIC_LOG(ERROR, TAG, "str or length is not available");
486 return CA_STATUS_FAILED;
492 CAResult_t CAParseHeadOption(uint32_t code, const CAInfo_t *info, coap_list_t **optlist)
495 VERIFY_NON_NULL_RET(info, TAG, "info", CA_STATUS_INVALID_PARAM);
497 OIC_LOG_V(DEBUG, TAG, "parse Head Opt: %d", info->numOptions);
501 OIC_LOG(ERROR, TAG, "optlist is null");
502 return CA_STATUS_INVALID_PARAM;
505 for (uint32_t i = 0; i < info->numOptions; i++)
507 if(!(info->options + i))
509 OIC_LOG(ERROR, TAG, "options is not available");
510 return CA_STATUS_FAILED;
513 uint32_t id = (info->options + i)->optionID;
514 if (COAP_OPTION_URI_PATH == id || COAP_OPTION_URI_QUERY == id)
516 OIC_LOG_V(DEBUG, TAG, "not Header Opt: %d", id);
520 OIC_LOG_V(DEBUG, TAG, "Head opt ID: %d", id);
521 OIC_LOG_V(DEBUG, TAG, "Head opt data: %s", (info->options + i)->optionData);
522 OIC_LOG_V(DEBUG, TAG, "Head opt length: %d", (info->options + i)->optionLength);
523 int ret = coap_insert(optlist,
524 CACreateNewOptionNode(id, (info->options + i)->optionLength,
525 (info->options + i)->optionData),
529 return CA_STATUS_INVALID_PARAM;
534 // insert one extra header with the payload format if applicable.
535 if (CA_FORMAT_UNDEFINED != info->payloadFormat)
537 coap_list_t* node = NULL;
538 uint8_t buf[CA_ENCODE_BUFFER_SIZE] = {0};
539 switch (info->payloadFormat)
541 case CA_FORMAT_APPLICATION_CBOR:
542 node = CACreateNewOptionNode(
543 COAP_OPTION_CONTENT_FORMAT,
544 coap_encode_var_bytes(buf, (unsigned short)COAP_MEDIATYPE_APPLICATION_CBOR),
548 OIC_LOG_V(ERROR, TAG, "format option:[%d] not supported", info->payloadFormat);
552 OIC_LOG(ERROR, TAG, "format option not created");
553 return CA_STATUS_INVALID_PARAM;
555 int ret = coap_insert(optlist, node, CAOrderOpts);
559 OIC_LOG(ERROR, TAG, "format option not inserted in header");
560 return CA_STATUS_INVALID_PARAM;
563 if (CA_FORMAT_UNDEFINED != info->acceptFormat)
565 coap_list_t* node = NULL;
566 uint8_t buf[CA_ENCODE_BUFFER_SIZE] = {0};
567 switch (info->acceptFormat)
569 case CA_FORMAT_APPLICATION_CBOR:
570 node = CACreateNewOptionNode(
572 coap_encode_var_bytes(buf, (unsigned short)COAP_MEDIATYPE_APPLICATION_CBOR),
576 OIC_LOG_V(ERROR, TAG, "format option:[%d] not supported", info->acceptFormat);
580 OIC_LOG(ERROR, TAG, "format option not created");
581 return CA_STATUS_INVALID_PARAM;
583 int ret = coap_insert(optlist, node, CAOrderOpts);
587 OIC_LOG(ERROR, TAG, "format option not inserted in header");
588 return CA_STATUS_INVALID_PARAM;
595 coap_list_t *CACreateNewOptionNode(uint16_t key, uint32_t length, const char *data)
597 VERIFY_NON_NULL_RET(data, TAG, "data", NULL);
599 coap_option *option = coap_malloc(sizeof(coap_option) + length + 1);
602 OIC_LOG(ERROR, TAG, "Out of memory");
605 memset(option, 0, sizeof(coap_option) + length + 1);
607 COAP_OPTION_KEY(*option) = key;
609 coap_option_def_t* def = coap_opt_def(key);
610 if (NULL != def && coap_is_var_bytes(def))
612 if (length > def->max)
614 // make sure we shrink the value so it fits the coap option definition
615 // by truncating the value, disregard the leading bytes.
616 OIC_LOG_V(DEBUG, TAG, "Option [%d] data size [%d] shrunk to [%d]",
617 def->key, length, def->max);
618 data = &(data[length-def->max]);
621 // Shrink the encoding length to a minimum size for coap
622 // options that support variable length encoding.
623 COAP_OPTION_LENGTH(*option) = coap_encode_var_bytes(
624 COAP_OPTION_DATA(*option),
625 coap_decode_var_bytes((unsigned char *)data, length));
629 COAP_OPTION_LENGTH(*option) = length;
630 memcpy(COAP_OPTION_DATA(*option), data, length);
633 /* we can pass NULL here as delete function since option is released automatically */
634 coap_list_t *node = coap_new_listnode(option, NULL);
638 OIC_LOG(ERROR, TAG, "node is NULL");
646 int CAOrderOpts(void *a, void *b)
650 return a < b ? -1 : 1;
653 if (COAP_OPTION_KEY(*(coap_option *) a) < COAP_OPTION_KEY(*(coap_option * ) b))
658 return COAP_OPTION_KEY(*(coap_option *) a) == COAP_OPTION_KEY(*(coap_option * ) b);
661 uint32_t CAGetOptionCount(coap_opt_iterator_t opt_iter)
664 coap_opt_t *option = NULL;
666 while ((option = coap_option_next(&opt_iter)))
668 if (COAP_OPTION_URI_PATH != opt_iter.type && COAP_OPTION_URI_QUERY != opt_iter.type
669 && COAP_OPTION_BLOCK1 != opt_iter.type && COAP_OPTION_BLOCK2 != opt_iter.type
670 && COAP_OPTION_SIZE1 != opt_iter.type && COAP_OPTION_SIZE2 != opt_iter.type
671 && COAP_OPTION_CONTENT_FORMAT != opt_iter.type
672 && COAP_OPTION_ACCEPT != opt_iter.type
673 && COAP_OPTION_URI_HOST != opt_iter.type && COAP_OPTION_URI_PORT != opt_iter.type
674 && COAP_OPTION_ETAG != opt_iter.type && COAP_OPTION_MAXAGE != opt_iter.type
675 && COAP_OPTION_PROXY_URI != opt_iter.type && COAP_OPTION_PROXY_SCHEME != opt_iter.type)
684 CAResult_t CAGetInfoFromPDU(const coap_pdu_t *pdu, const CAEndpoint_t *endpoint,
685 uint32_t *outCode, CAInfo_t *outInfo)
687 VERIFY_NON_NULL(pdu, TAG, "pdu");
688 VERIFY_NON_NULL(endpoint, TAG, "endpoint");
689 VERIFY_NON_NULL(outCode, TAG, "outCode");
690 VERIFY_NON_NULL(outInfo, TAG, "outInfo");
692 coap_transport_type transport;
694 if (CAIsSupportedCoAPOverTCP(endpoint->adapter))
696 transport = coap_get_tcp_header_type_from_initbyte(((unsigned char *)pdu->hdr)[0] >> 4);
701 transport = coap_udp;
704 coap_opt_iterator_t opt_iter;
705 coap_option_iterator_init((coap_pdu_t *) pdu, &opt_iter, COAP_OPT_ALL, transport);
709 (*outCode) = (uint32_t) CA_RESPONSE_CODE(coap_get_code(pdu, transport));
712 // init HeaderOption list
713 uint32_t count = CAGetOptionCount(opt_iter);
714 memset(outInfo, 0, sizeof(*outInfo));
716 outInfo->numOptions = count;
719 if (CAIsSupportedCoAPOverTCP(endpoint->adapter))
722 outInfo->type = CA_MSG_NONCONFIRM;
723 outInfo->payloadFormat = CA_FORMAT_UNDEFINED;
731 outInfo->type = pdu->hdr->coap_hdr_udp_t.type;
734 outInfo->messageId = pdu->hdr->coap_hdr_udp_t.id;
735 outInfo->payloadFormat = CA_FORMAT_UNDEFINED;
736 outInfo->acceptFormat = CA_FORMAT_UNDEFINED;
741 outInfo->options = (CAHeaderOption_t *) OICCalloc(count, sizeof(CAHeaderOption_t));
742 if (NULL == outInfo->options)
744 OIC_LOG(ERROR, TAG, "Out of memory");
745 return CA_MEMORY_ALLOC_FAILED;
749 coap_opt_t *option = NULL;
750 char optionResult[CA_MAX_URI_LENGTH] = {0};
752 uint32_t optionLength = 0;
753 bool isfirstsetflag = false;
754 bool isQueryBeingProcessed = false;
756 while ((option = coap_option_next(&opt_iter)))
758 char buf[COAP_MAX_PDU_SIZE] = {0};
760 CAGetOptionData(opt_iter.type, (uint8_t *)(COAP_OPT_VALUE(option)),
761 COAP_OPT_LENGTH(option), (uint8_t *)buf, sizeof(buf));
764 OIC_LOG_V(DEBUG, TAG, "COAP URI element : %s", buf);
765 if (COAP_OPTION_URI_PATH == opt_iter.type || COAP_OPTION_URI_QUERY == opt_iter.type)
767 if (false == isfirstsetflag)
769 isfirstsetflag = true;
770 optionResult[optionLength] = '/';
772 // Make sure there is enough room in the optionResult buffer
773 if ((optionLength + bufLength) < sizeof(optionResult))
775 memcpy(&optionResult[optionLength], buf, bufLength);
776 optionLength += bufLength;
785 if (COAP_OPTION_URI_PATH == opt_iter.type)
787 // Make sure there is enough room in the optionResult buffer
788 if (optionLength < sizeof(optionResult))
790 optionResult[optionLength] = '/';
798 else if (COAP_OPTION_URI_QUERY == opt_iter.type)
800 if (false == isQueryBeingProcessed)
802 // Make sure there is enough room in the optionResult buffer
803 if (optionLength < sizeof(optionResult))
805 optionResult[optionLength] = '?';
807 isQueryBeingProcessed = true;
816 // Make sure there is enough room in the optionResult buffer
817 if (optionLength < sizeof(optionResult))
819 optionResult[optionLength] = ';';
828 // Make sure there is enough room in the optionResult buffer
829 if ((optionLength + bufLength) < sizeof(optionResult))
831 memcpy(&optionResult[optionLength], buf, bufLength);
832 optionLength += bufLength;
840 else if (COAP_OPTION_BLOCK1 == opt_iter.type || COAP_OPTION_BLOCK2 == opt_iter.type
841 || COAP_OPTION_SIZE1 == opt_iter.type || COAP_OPTION_SIZE2 == opt_iter.type)
843 OIC_LOG_V(DEBUG, TAG, "option[%d] will be filtering", opt_iter.type);
845 else if (COAP_OPTION_CONTENT_FORMAT == opt_iter.type)
847 if (1 == COAP_OPT_LENGTH(option))
849 outInfo->payloadFormat = CAConvertFormat((uint8_t)buf[0]);
853 outInfo->payloadFormat = CA_FORMAT_UNSUPPORTED;
854 OIC_LOG_V(DEBUG, TAG, "option[%d] has an unsupported format [%d]",
855 opt_iter.type, (uint8_t)buf[0]);
858 else if (COAP_OPTION_ACCEPT == opt_iter.type)
860 if (1 == COAP_OPT_LENGTH(option))
862 outInfo->acceptFormat = CAConvertFormat((uint8_t)buf[0]);
866 outInfo->acceptFormat = CA_FORMAT_UNSUPPORTED;
868 OIC_LOG_V(DEBUG, TAG, "option[%d] has an unsupported format [%d]",
869 opt_iter.type, (uint8_t)buf[0]);
871 else if (COAP_OPTION_URI_PORT == opt_iter.type ||
872 COAP_OPTION_URI_HOST == opt_iter.type ||
873 COAP_OPTION_ETAG == opt_iter.type ||
874 COAP_OPTION_MAXAGE == opt_iter.type ||
875 COAP_OPTION_PROXY_URI == opt_iter.type ||
876 COAP_OPTION_PROXY_SCHEME== opt_iter.type)
878 OIC_LOG_V(INFO, TAG, "option[%d] has an unsupported format [%d]",
879 opt_iter.type, (uint8_t)buf[0]);
885 if (bufLength <= sizeof(outInfo->options[0].optionData))
887 outInfo->options[idx].optionID = opt_iter.type;
888 outInfo->options[idx].optionLength = bufLength;
889 outInfo->options[idx].protocolID = CA_COAP_ID;
890 memcpy(outInfo->options[idx].optionData, buf, bufLength);
898 unsigned char* token = NULL;
899 unsigned int token_length = 0;
900 coap_get_token(pdu->hdr, transport, &token, &token_length);
903 if (token_length > 0)
905 OIC_LOG_V(DEBUG, TAG, "inside token length : %d", token_length);
906 outInfo->token = (char *) OICMalloc(token_length);
907 if (NULL == outInfo->token)
909 OIC_LOG(ERROR, TAG, "Out of memory");
910 OICFree(outInfo->options);
911 return CA_MEMORY_ALLOC_FAILED;
913 memcpy(outInfo->token, token, token_length);
916 outInfo->tokenLength = token_length;
921 if (coap_get_data(pdu, &dataSize, &data))
923 OIC_LOG(DEBUG, TAG, "inside pdu->data");
924 outInfo->payload = (uint8_t *) OICMalloc(dataSize);
925 if (NULL == outInfo->payload)
927 OIC_LOG(ERROR, TAG, "Out of memory");
928 OICFree(outInfo->options);
929 OICFree(outInfo->token);
930 return CA_MEMORY_ALLOC_FAILED;
932 memcpy(outInfo->payload, pdu->data, dataSize);
933 outInfo->payloadSize = dataSize;
936 if (optionResult[0] != '\0')
938 OIC_LOG_V(DEBUG, TAG, "URL length:%zu", strlen(optionResult));
939 outInfo->resourceUri = OICStrdup(optionResult);
940 if (!outInfo->resourceUri)
942 OIC_LOG(ERROR, TAG, "Out of memory");
943 OICFree(outInfo->options);
944 OICFree(outInfo->token);
945 return CA_MEMORY_ALLOC_FAILED;
952 OIC_LOG(ERROR, TAG, "buffer too small");
953 OICFree(outInfo->options);
954 return CA_STATUS_FAILED;
957 CAResult_t CAGetTokenFromPDU(const coap_hdr_t *pdu_hdr, CAInfo_t *outInfo,
958 const CAEndpoint_t *endpoint)
960 VERIFY_NON_NULL(pdu_hdr, TAG, "pdu_hdr");
961 VERIFY_NON_NULL(outInfo, TAG, "outInfo");
962 VERIFY_NON_NULL(endpoint, TAG, "endpoint");
964 coap_transport_type transport = coap_udp;
966 if (CAIsSupportedCoAPOverTCP(endpoint->adapter))
968 transport = coap_get_tcp_header_type_from_initbyte(((unsigned char *)pdu_hdr)[0] >> 4);
972 unsigned char* token = NULL;
973 unsigned int token_length = 0;
974 coap_get_token(pdu_hdr, transport, &token, &token_length);
977 if (token_length > 0)
979 OIC_LOG_V(DEBUG, TAG, "token len:%d", token_length);
980 outInfo->token = (char *) OICMalloc(token_length);
981 if (NULL == outInfo->token)
983 OIC_LOG(ERROR, TAG, "Out of memory");
984 return CA_MEMORY_ALLOC_FAILED;
986 memcpy(outInfo->token, token, token_length);
989 outInfo->tokenLength = token_length;
994 CAResult_t CAGenerateTokenInternal(CAToken_t *token, uint8_t tokenLength)
996 VERIFY_NON_NULL(token, TAG, "token");
998 if ((tokenLength > CA_MAX_TOKEN_LEN) || (0 == tokenLength))
1000 OIC_LOG(ERROR, TAG, "invalid token length");
1001 return CA_STATUS_INVALID_PARAM;
1004 // memory allocation
1005 char *temp = (char *) OICCalloc(tokenLength, sizeof(char));
1008 OIC_LOG(ERROR, TAG, "Out of memory");
1009 return CA_MEMORY_ALLOC_FAILED;
1012 OCFillRandomMem((uint8_t *)temp, tokenLength);
1017 OIC_LOG_V(DEBUG, TAG, "token len:%d, token:", tokenLength);
1018 OIC_LOG_BUFFER(DEBUG, TAG, (const uint8_t *)(*token), tokenLength);
1020 return CA_STATUS_OK;
1023 void CADestroyTokenInternal(CAToken_t token)
1028 uint32_t CAGetOptionData(uint16_t key, const uint8_t *data, uint32_t len,
1029 uint8_t *option, uint32_t buflen)
1033 OIC_LOG(ERROR, TAG, "buflen 0");
1039 OIC_LOG(ERROR, TAG, "option buffer too small");
1043 coap_option_def_t* def = coap_opt_def(key);
1044 if (NULL != def && coap_is_var_bytes(def) && 0 == len)
1046 // A 0 length option is permitted in CoAP but the
1047 // rest or the stack is unaware of variable byte encoding
1048 // should remain that way so a 0 byte of length 1 is inserted.
1054 memcpy(option, data, len);
1061 CAMessageType_t CAGetMessageTypeFromPduBinaryData(const void *pdu, uint32_t size)
1063 VERIFY_NON_NULL_RET(pdu, TAG, "pdu", CA_MSG_NONCONFIRM);
1065 // pdu minimum size is 4 byte.
1066 if (size < CA_PDU_MIN_SIZE)
1068 OIC_LOG(ERROR, TAG, "min size");
1069 return CA_MSG_NONCONFIRM;
1072 coap_hdr_t *hdr = (coap_hdr_t *) pdu;
1074 return (CAMessageType_t) hdr->coap_hdr_udp_t.type;
1077 uint16_t CAGetMessageIdFromPduBinaryData(const void *pdu, uint32_t size)
1079 VERIFY_NON_NULL_RET(pdu, TAG, "pdu", 0);
1081 // pdu minimum size is 4 byte.
1082 if (size < CA_PDU_MIN_SIZE)
1084 OIC_LOG(ERROR, TAG, "min size");
1088 coap_hdr_t *hdr = (coap_hdr_t *) pdu;
1090 return hdr->coap_hdr_udp_t.id;
1093 CAResponseResult_t CAGetCodeFromPduBinaryData(const void *pdu, uint32_t size)
1095 VERIFY_NON_NULL_RET(pdu, TAG, "pdu", CA_NOT_FOUND);
1097 // pdu minimum size is 4 byte.
1098 if (size < CA_PDU_MIN_SIZE)
1100 OIC_LOG(ERROR, TAG, "min size");
1101 return CA_NOT_FOUND;
1104 coap_hdr_t *hdr = (coap_hdr_t *) pdu;
1106 return (CAResponseResult_t) CA_RESPONSE_CODE(hdr->coap_hdr_udp_t.code);
1109 CAPayloadFormat_t CAConvertFormat(uint8_t format)
1113 case COAP_MEDIATYPE_TEXT_PLAIN:
1114 return CA_FORMAT_TEXT_PLAIN;
1115 case COAP_MEDIATYPE_APPLICATION_LINK_FORMAT:
1116 return CA_FORMAT_APPLICATION_LINK_FORMAT;
1117 case COAP_MEDIATYPE_APPLICATION_XML:
1118 return CA_FORMAT_APPLICATION_XML;
1119 case COAP_MEDIATYPE_APPLICATION_OCTET_STREAM:
1120 return CA_FORMAT_APPLICATION_OCTET_STREAM;
1121 case COAP_MEDIATYPE_APPLICATION_RDF_XML:
1122 return CA_FORMAT_APPLICATION_RDF_XML;
1123 case COAP_MEDIATYPE_APPLICATION_EXI:
1124 return CA_FORMAT_APPLICATION_EXI;
1125 case COAP_MEDIATYPE_APPLICATION_JSON:
1126 return CA_FORMAT_APPLICATION_JSON;
1127 case COAP_MEDIATYPE_APPLICATION_CBOR:
1128 return CA_FORMAT_APPLICATION_CBOR;
1130 return CA_FORMAT_UNSUPPORTED;
1135 bool CAIsSupportedBlockwiseTransfer(CATransportAdapter_t adapter)
1137 if (CA_ADAPTER_IP & adapter || CA_ADAPTER_NFC & adapter
1138 || CA_DEFAULT_ADAPTER == adapter)
1147 bool CAIsSupportedCoAPOverTCP(CATransportAdapter_t adapter)
1149 if (CA_ADAPTER_GATT_BTLE & adapter || CA_ADAPTER_RFCOMM_BTEDR & adapter
1150 || CA_ADAPTER_TCP & adapter || CA_DEFAULT_ADAPTER == adapter)