1 //******************************************************************
3 // Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
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 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
22 //-----------------------------------------------------------------------------
24 //-----------------------------------------------------------------------------
26 // Defining _POSIX_C_SOURCE macro with 200112L (or greater) as value
27 // causes header files to expose definitions
28 // corresponding to the POSIX.1-2001 base
29 // specification (excluding the XSI extension).
30 // For POSIX.1-2001 base specification,
31 // Refer http://pubs.opengroup.org/onlinepubs/009695399/
32 #define _POSIX_C_SOURCE 200112L
33 #ifndef __STDC_FORMAT_MACROS
34 #define __STDC_FORMAT_MACROS
36 #ifndef __STDC_LIMIT_MACROS
37 #define __STDC_LIMIT_MACROS
44 #include "ocstackinternal.h"
45 #include "ocresourcehandler.h"
46 #include "occlientcb.h"
47 #include "ocobserve.h"
49 #include "oic_malloc.h"
50 #include "oic_string.h"
52 #include "ocserverrequest.h"
53 #include "secureresourcemanager.h"
54 #include "doxmresource.h"
56 #include "cainterface.h"
57 #include "ocpayload.h"
58 #include "ocpayloadcbor.h"
60 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
61 #include "routingutility.h"
62 #ifdef ROUTING_GATEWAY
63 #include "routingmanager.h"
68 #include "oickeepalive.h"
76 #include "coap_time.h"
81 #include <arpa/inet.h>
85 #define UINT32_MAX (0xFFFFFFFFUL)
88 //-----------------------------------------------------------------------------
90 //-----------------------------------------------------------------------------
93 OC_STACK_UNINITIALIZED = 0,
95 OC_STACK_UNINIT_IN_PROGRESS
101 OC_PRESENCE_UNINITIALIZED = 0,
102 OC_PRESENCE_INITIALIZED
106 //-----------------------------------------------------------------------------
108 //-----------------------------------------------------------------------------
109 static OCStackState stackState = OC_STACK_UNINITIALIZED;
111 OCResource *headResource = NULL;
112 static OCResource *tailResource = NULL;
113 static OCResourceHandle platformResource = {0};
114 static OCResourceHandle deviceResource = {0};
116 static OCPresenceState presenceState = OC_PRESENCE_UNINITIALIZED;
117 static PresenceResource presenceResource;
118 static uint8_t PresenceTimeOutSize = 0;
119 static uint32_t PresenceTimeOut[] = {50, 75, 85, 95, 100};
122 static OCMode myStackMode;
124 //TODO: revisit this design
125 static bool gRASetInfo = false;
127 OCDeviceEntityHandler defaultDeviceHandler;
128 void* defaultDeviceHandlerCallbackParameter = NULL;
129 static const char COAP_TCP[] = "coap+tcp:";
131 //-----------------------------------------------------------------------------
133 //-----------------------------------------------------------------------------
134 #define TAG "OIC_RI_STACK"
135 #define VERIFY_SUCCESS(op, successCode) { if ((op) != (successCode)) \
136 {OIC_LOG_V(FATAL, TAG, "%s failed!!", #op); goto exit;} }
137 #define VERIFY_NON_NULL(arg, logLevel, retVal) { if (!(arg)) { OIC_LOG((logLevel), \
138 TAG, #arg " is NULL"); return (retVal); } }
139 #define VERIFY_NON_NULL_NR(arg, logLevel) { if (!(arg)) { OIC_LOG((logLevel), \
140 TAG, #arg " is NULL"); return; } }
141 #define VERIFY_NON_NULL_V(arg) { if (!arg) {OIC_LOG(FATAL, TAG, #arg " is NULL");\
144 //TODO: we should allow the server to define this
145 #define MAX_OBSERVE_AGE (0x2FFFFUL)
147 #define MILLISECONDS_PER_SECOND (1000)
149 //-----------------------------------------------------------------------------
150 // Private internal function prototypes
151 //-----------------------------------------------------------------------------
154 * Generate handle of OCDoResource invocation for callback management.
156 * @return Generated OCDoResource handle.
158 static OCDoHandle GenerateInvocationHandle();
161 * Initialize resource data structures, variables, etc.
163 * @return ::OC_STACK_OK on success, some other value upon failure.
165 static OCStackResult initResources();
168 * Add a resource to the end of the linked list of resources.
170 * @param resource Resource to be added
172 static void insertResource(OCResource *resource);
175 * Find a resource in the linked list of resources.
177 * @param resource Resource to be found.
178 * @return Pointer to resource that was found in the linked list or NULL if the resource was not
181 static OCResource *findResource(OCResource *resource);
184 * Insert a resource type into a resource's resource type linked list.
185 * If resource type already exists, it will not be inserted and the
186 * resourceType will be free'd.
187 * resourceType->next should be null to avoid memory leaks.
188 * Function returns silently for null args.
190 * @param resource Resource where resource type is to be inserted.
191 * @param resourceType Resource type to be inserted.
193 static void insertResourceType(OCResource *resource,
194 OCResourceType *resourceType);
197 * Get a resource type at the specified index within a resource.
199 * @param handle Handle of resource.
200 * @param index Index of resource type.
202 * @return Pointer to resource type if found, NULL otherwise.
204 static OCResourceType *findResourceTypeAtIndex(OCResourceHandle handle,
208 * Insert a resource interface into a resource's resource interface linked list.
209 * If resource interface already exists, it will not be inserted and the
210 * resourceInterface will be free'd.
211 * resourceInterface->next should be null to avoid memory leaks.
213 * @param resource Resource where resource interface is to be inserted.
214 * @param resourceInterface Resource interface to be inserted.
216 static void insertResourceInterface(OCResource *resource,
217 OCResourceInterface *resourceInterface);
220 * Get a resource interface at the specified index within a resource.
222 * @param handle Handle of resource.
223 * @param index Index of resource interface.
225 * @return Pointer to resource interface if found, NULL otherwise.
227 static OCResourceInterface *findResourceInterfaceAtIndex(
228 OCResourceHandle handle, uint8_t index);
231 * Delete all of the dynamically allocated elements that were created for the resource type.
233 * @param resourceType Specified resource type.
235 static void deleteResourceType(OCResourceType *resourceType);
238 * Delete all of the dynamically allocated elements that were created for the resource interface.
240 * @param resourceInterface Specified resource interface.
242 static void deleteResourceInterface(OCResourceInterface *resourceInterface);
245 * Delete all of the dynamically allocated elements that were created for the resource.
247 * @param resource Specified resource.
249 static void deleteResourceElements(OCResource *resource);
252 * Delete resource specified by handle. Deletes resource and all resourcetype and resourceinterface
255 * @param handle Handle of resource to be deleted.
257 * @return ::OC_STACK_OK on success, some other value upon failure.
259 static OCStackResult deleteResource(OCResource *resource);
262 * Delete all of the resources in the resource list.
264 static void deleteAllResources();
267 * Increment resource sequence number. Handles rollover.
269 * @param resPtr Pointer to resource.
271 static void incrementSequenceNumber(OCResource * resPtr);
274 * Verify the lengths of the URI and the query separately.
276 * @param inputUri Input URI and query.
277 * @param uriLen The length of the initial URI with query.
278 * @return ::OC_STACK_OK on success, some other value upon failure.
280 static OCStackResult verifyUriQueryLength(const char * inputUri,
284 * Attempts to initialize every network interface that the CA Layer might have compiled in.
286 * Note: At least one interface must succeed to initialize. If all calls to @ref CASelectNetwork
287 * return something other than @ref CA_STATUS_OK, then this function fails.
289 * @return ::CA_STATUS_OK on success, some other value upon failure.
291 static CAResult_t OCSelectNetwork();
294 * Get the CoAP ticks after the specified number of milli-seconds.
296 * @param afterMilliSeconds Milli-seconds.
300 static uint32_t GetTicks(uint32_t afterMilliSeconds);
303 * Convert CAResponseResult_t to OCStackResult.
305 * @param caCode CAResponseResult_t code.
306 * @return ::OC_STACK_OK on success, some other value upon failure.
308 static OCStackResult CAToOCStackResult(CAResponseResult_t caCode);
311 * Convert OCStackResult to CAResponseResult_t.
313 * @param caCode OCStackResult code.
314 * @param method OCMethod method the return code replies to.
315 * @return ::CA_CONTENT on OK, some other value upon failure.
317 static CAResponseResult_t OCToCAStackResult(OCStackResult ocCode, OCMethod method);
320 * Convert OCTransportFlags_t to CATransportModifiers_t.
322 * @param ocConType OCTransportFlags_t input.
323 * @return CATransportFlags
325 static CATransportFlags_t OCToCATransportFlags(OCTransportFlags ocConType);
328 * Convert CATransportFlags_t to OCTransportModifiers_t.
330 * @param caConType CATransportFlags_t input.
331 * @return OCTransportFlags
333 static OCTransportFlags CAToOCTransportFlags(CATransportFlags_t caConType);
336 * Handle response from presence request.
338 * @param endPoint CA remote endpoint.
339 * @param responseInfo CA response info.
340 * @return ::OC_STACK_OK on success, some other value upon failure.
342 static OCStackResult HandlePresenceResponse(const CAEndpoint_t *endPoint,
343 const CAResponseInfo_t *responseInfo);
346 * This function will be called back by CA layer when a response is received.
348 * @param endPoint CA remote endpoint.
349 * @param responseInfo CA response info.
351 static void HandleCAResponses(const CAEndpoint_t* endPoint,
352 const CAResponseInfo_t* responseInfo);
355 * This function will be called back by CA layer when a request is received.
357 * @param endPoint CA remote endpoint.
358 * @param requestInfo CA request info.
360 static void HandleCARequests(const CAEndpoint_t* endPoint,
361 const CARequestInfo_t* requestInfo);
364 * Extract query from a URI.
366 * @param uri Full URI with query.
367 * @param query Pointer to string that will contain query.
368 * @param newURI Pointer to string that will contain URI.
369 * @return ::OC_STACK_OK on success, some other value upon failure.
371 static OCStackResult getQueryFromUri(const char * uri, char** resourceType, char ** newURI);
374 * Finds a resource type in an OCResourceType link-list.
376 * @param resourceTypeList The link-list to be searched through.
377 * @param resourceTypeName The key to search for.
379 * @return Resource type that matches the key (ie. resourceTypeName) or
380 * NULL if there is either an invalid parameter or this function was unable to find the key.
382 static OCResourceType *findResourceType(OCResourceType * resourceTypeList,
383 const char * resourceTypeName);
386 * Reset presence TTL for a ClientCB struct. ttlLevel will be set to 0.
387 * TTL will be set to maxAge.
389 * @param cbNode Callback Node for which presence ttl is to be reset.
390 * @param maxAge New value of ttl in seconds.
392 * @return ::OC_STACK_OK on success, some other value upon failure.
394 static OCStackResult ResetPresenceTTL(ClientCB *cbNode, uint32_t maxAgeSeconds);
397 * Ensure the accept header option is set appropriatly before sending the requests and routing
398 * header option is updated with destination.
400 * @param object CA remote endpoint.
401 * @param requestInfo CA request info.
403 * @return ::OC_STACK_OK on success, some other value upon failure.
405 static OCStackResult OCSendRequest(const CAEndpoint_t *object, CARequestInfo_t *requestInfo);
407 //-----------------------------------------------------------------------------
408 // Internal functions
409 //-----------------------------------------------------------------------------
411 uint32_t GetTicks(uint32_t afterMilliSeconds)
416 // Guard against overflow of uint32_t
417 if (afterMilliSeconds <= ((UINT32_MAX - (uint32_t)now) * MILLISECONDS_PER_SECOND) /
418 COAP_TICKS_PER_SECOND)
420 return now + (afterMilliSeconds * COAP_TICKS_PER_SECOND)/MILLISECONDS_PER_SECOND;
428 void CopyEndpointToDevAddr(const CAEndpoint_t *in, OCDevAddr *out)
430 VERIFY_NON_NULL_NR(in, FATAL);
431 VERIFY_NON_NULL_NR(out, FATAL);
433 out->adapter = (OCTransportAdapter)in->adapter;
434 out->flags = CAToOCTransportFlags(in->flags);
435 OICStrcpy(out->addr, sizeof(out->addr), in->addr);
436 out->port = in->port;
437 out->interface = in->interface;
438 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
439 memcpy(out->routeData, in->routeData, sizeof(out->routeData));
443 void CopyDevAddrToEndpoint(const OCDevAddr *in, CAEndpoint_t *out)
445 VERIFY_NON_NULL_NR(in, FATAL);
446 VERIFY_NON_NULL_NR(out, FATAL);
448 out->adapter = (CATransportAdapter_t)in->adapter;
449 out->flags = OCToCATransportFlags(in->flags);
450 OICStrcpy(out->addr, sizeof(out->addr), in->addr);
451 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
452 memcpy(out->routeData, in->routeData, sizeof(out->routeData));
454 out->port = in->port;
455 out->interface = in->interface;
458 void FixUpClientResponse(OCClientResponse *cr)
460 VERIFY_NON_NULL_NR(cr, FATAL);
462 cr->addr = &cr->devAddr;
463 cr->connType = (OCConnectivityType)
464 ((cr->devAddr.adapter << CT_ADAPTER_SHIFT) | (cr->devAddr.flags & CT_MASK_FLAGS));
467 static OCStackResult OCSendRequest(const CAEndpoint_t *object, CARequestInfo_t *requestInfo)
469 VERIFY_NON_NULL(object, FATAL, OC_STACK_INVALID_PARAM);
470 VERIFY_NON_NULL(requestInfo, FATAL, OC_STACK_INVALID_PARAM);
472 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
473 OCStackResult rmResult = RMAddInfo(object->routeData, requestInfo, true, NULL);
474 if (OC_STACK_OK != rmResult)
476 OIC_LOG(ERROR, TAG, "Add destination option failed");
481 // OC stack prefer CBOR encoded payloads.
482 requestInfo->info.acceptFormat = CA_FORMAT_APPLICATION_CBOR;
483 CAResult_t result = CASendRequest(object, requestInfo);
484 if(CA_STATUS_OK != result)
486 OIC_LOG_V(ERROR, TAG, "CASendRequest failed with CA error %u", result);
487 return CAResultToOCResult(result);
491 //-----------------------------------------------------------------------------
492 // Internal API function
493 //-----------------------------------------------------------------------------
495 // This internal function is called to update the stack with the status of
496 // observers and communication failures
497 OCStackResult OCStackFeedBack(CAToken_t token, uint8_t tokenLength, uint8_t status)
499 OCStackResult result = OC_STACK_ERROR;
500 ResourceObserver * observer = NULL;
501 OCEntityHandlerRequest ehRequest = {0};
505 case OC_OBSERVER_NOT_INTERESTED:
506 OIC_LOG(DEBUG, TAG, "observer not interested in our notifications");
507 observer = GetObserverUsingToken (token, tokenLength);
510 result = FormOCEntityHandlerRequest(&ehRequest,
511 (OCRequestHandle)NULL,
514 (OCResourceHandle)NULL,
515 NULL, PAYLOAD_TYPE_REPRESENTATION,
517 OC_OBSERVE_DEREGISTER,
518 observer->observeId);
519 if(result != OC_STACK_OK)
523 observer->resource->entityHandler(OC_OBSERVE_FLAG, &ehRequest,
524 observer->resource->entityHandlerCallbackParam);
527 result = DeleteObserverUsingToken (token, tokenLength);
528 if(result == OC_STACK_OK)
530 OIC_LOG(DEBUG, TAG, "Removed observer successfully");
534 result = OC_STACK_OK;
535 OIC_LOG(DEBUG, TAG, "Observer Removal failed");
539 case OC_OBSERVER_STILL_INTERESTED:
540 OIC_LOG(DEBUG, TAG, "observer still interested, reset the failedCount");
541 observer = GetObserverUsingToken (token, tokenLength);
544 observer->forceHighQos = 0;
545 observer->failedCommCount = 0;
546 result = OC_STACK_OK;
550 result = OC_STACK_OBSERVER_NOT_FOUND;
554 case OC_OBSERVER_FAILED_COMM:
555 OIC_LOG(DEBUG, TAG, "observer is unreachable");
556 observer = GetObserverUsingToken (token, tokenLength);
559 if(observer->failedCommCount >= MAX_OBSERVER_FAILED_COMM)
561 result = FormOCEntityHandlerRequest(&ehRequest,
562 (OCRequestHandle)NULL,
565 (OCResourceHandle)NULL,
566 NULL, PAYLOAD_TYPE_REPRESENTATION,
568 OC_OBSERVE_DEREGISTER,
569 observer->observeId);
570 if(result != OC_STACK_OK)
572 return OC_STACK_ERROR;
574 observer->resource->entityHandler(OC_OBSERVE_FLAG, &ehRequest,
575 observer->resource->entityHandlerCallbackParam);
577 result = DeleteObserverUsingToken (token, tokenLength);
578 if(result == OC_STACK_OK)
580 OIC_LOG(DEBUG, TAG, "Removed observer successfully");
584 result = OC_STACK_OK;
585 OIC_LOG(DEBUG, TAG, "Observer Removal failed");
590 observer->failedCommCount++;
591 result = OC_STACK_CONTINUE;
593 observer->forceHighQos = 1;
594 OIC_LOG_V(DEBUG, TAG, "Failed count for this observer is %d",observer->failedCommCount);
598 OIC_LOG(ERROR, TAG, "Unknown status");
599 result = OC_STACK_ERROR;
604 OCStackResult CAToOCStackResult(CAResponseResult_t caCode)
606 OCStackResult ret = OC_STACK_ERROR;
611 ret = OC_STACK_RESOURCE_CREATED;
614 ret = OC_STACK_RESOURCE_DELETED;
622 ret = OC_STACK_INVALID_QUERY;
624 case CA_UNAUTHORIZED_REQ:
625 ret = OC_STACK_UNAUTHORIZED_REQ;
628 ret = OC_STACK_INVALID_OPTION;
631 ret = OC_STACK_NO_RESOURCE;
633 case CA_RETRANSMIT_TIMEOUT:
634 ret = OC_STACK_COMM_ERROR;
642 CAResponseResult_t OCToCAStackResult(OCStackResult ocCode, OCMethod method)
644 CAResponseResult_t ret = CA_INTERNAL_SERVER_ERROR;
653 // This Response Code is like HTTP 204 "No Content" but only used in
654 // response to POST and PUT requests.
658 // This Response Code is like HTTP 200 "OK" but only used in response to
663 // This should not happen but,
664 // give it a value just in case but output an error
666 OIC_LOG_V(ERROR, TAG, "Unexpected OC_STACK_OK return code for method [%d].", method);
669 case OC_STACK_RESOURCE_CREATED:
672 case OC_STACK_RESOURCE_DELETED:
675 case OC_STACK_INVALID_QUERY:
678 case OC_STACK_INVALID_OPTION:
681 case OC_STACK_NO_RESOURCE:
684 case OC_STACK_COMM_ERROR:
685 ret = CA_RETRANSMIT_TIMEOUT;
687 case OC_STACK_UNAUTHORIZED_REQ:
688 ret = CA_UNAUTHORIZED_REQ;
696 CATransportFlags_t OCToCATransportFlags(OCTransportFlags ocFlags)
698 CATransportFlags_t caFlags = (CATransportFlags_t)ocFlags;
700 // supply default behavior.
701 if ((caFlags & (CA_IPV6|CA_IPV4)) == 0)
703 caFlags = (CATransportFlags_t)(caFlags|CA_IPV6|CA_IPV4);
705 if ((caFlags & OC_MASK_SCOPE) == 0)
707 caFlags = (CATransportFlags_t)(caFlags|OC_SCOPE_LINK);
712 OCTransportFlags CAToOCTransportFlags(CATransportFlags_t caFlags)
714 return (OCTransportFlags)caFlags;
717 static OCStackResult ResetPresenceTTL(ClientCB *cbNode, uint32_t maxAgeSeconds)
719 uint32_t lowerBound = 0;
720 uint32_t higherBound = 0;
722 if (!cbNode || !cbNode->presence || !cbNode->presence->timeOut)
724 return OC_STACK_INVALID_PARAM;
727 OIC_LOG_V(INFO, TAG, "Update presence TTL, time is %u", GetTicks(0));
729 cbNode->presence->TTL = maxAgeSeconds;
731 for (int index = 0; index < PresenceTimeOutSize; index++)
733 // Guard against overflow
734 if (cbNode->presence->TTL < (UINT32_MAX/(MILLISECONDS_PER_SECOND*PresenceTimeOut[index]))
737 lowerBound = GetTicks((PresenceTimeOut[index] *
738 cbNode->presence->TTL *
739 MILLISECONDS_PER_SECOND)/100);
743 lowerBound = GetTicks(UINT32_MAX);
746 if (cbNode->presence->TTL < (UINT32_MAX/(MILLISECONDS_PER_SECOND*PresenceTimeOut[index+1]))
749 higherBound = GetTicks((PresenceTimeOut[index + 1] *
750 cbNode->presence->TTL *
751 MILLISECONDS_PER_SECOND)/100);
755 higherBound = GetTicks(UINT32_MAX);
758 cbNode->presence->timeOut[index] = OCGetRandomRange(lowerBound, higherBound);
760 OIC_LOG_V(DEBUG, TAG, "lowerBound timeout %d", lowerBound);
761 OIC_LOG_V(DEBUG, TAG, "higherBound timeout %d", higherBound);
762 OIC_LOG_V(DEBUG, TAG, "timeOut entry %d", cbNode->presence->timeOut[index]);
765 cbNode->presence->TTLlevel = 0;
767 OIC_LOG_V(DEBUG, TAG, "this TTL level %d", cbNode->presence->TTLlevel);
771 const char *convertTriggerEnumToString(OCPresenceTrigger trigger)
773 if (trigger == OC_PRESENCE_TRIGGER_CREATE)
775 return OC_RSRVD_TRIGGER_CREATE;
777 else if (trigger == OC_PRESENCE_TRIGGER_CHANGE)
779 return OC_RSRVD_TRIGGER_CHANGE;
783 return OC_RSRVD_TRIGGER_DELETE;
787 OCPresenceTrigger convertTriggerStringToEnum(const char * triggerStr)
791 return OC_PRESENCE_TRIGGER_CREATE;
793 else if(strcmp(triggerStr, OC_RSRVD_TRIGGER_CREATE) == 0)
795 return OC_PRESENCE_TRIGGER_CREATE;
797 else if(strcmp(triggerStr, OC_RSRVD_TRIGGER_CHANGE) == 0)
799 return OC_PRESENCE_TRIGGER_CHANGE;
803 return OC_PRESENCE_TRIGGER_DELETE;
808 * The cononical presence allows constructed URIs to be string compared.
810 * requestUri must be a char array of size CA_MAX_URI_LENGTH
812 static int FormCanonicalPresenceUri(const CAEndpoint_t *endpoint, char *resourceUri,
815 VERIFY_NON_NULL(endpoint , FATAL, OC_STACK_INVALID_PARAM);
816 VERIFY_NON_NULL(resourceUri, FATAL, OC_STACK_INVALID_PARAM);
817 VERIFY_NON_NULL(presenceUri, FATAL, OC_STACK_INVALID_PARAM);
819 CAEndpoint_t *ep = (CAEndpoint_t *)endpoint;
821 if (ep->adapter == CA_ADAPTER_IP)
823 if ((ep->flags & CA_IPV6) && !(ep->flags & CA_IPV4))
825 if ('\0' == ep->addr[0]) // multicast
827 return snprintf(presenceUri, CA_MAX_URI_LENGTH, OC_RSRVD_PRESENCE_URI);
831 return snprintf(presenceUri, CA_MAX_URI_LENGTH, "coap://[%s]:%u%s",
832 ep->addr, ep->port, OC_RSRVD_PRESENCE_URI);
837 if ('\0' == ep->addr[0]) // multicast
839 OICStrcpy(ep->addr, sizeof(ep->addr), OC_MULTICAST_IP);
840 ep->port = OC_MULTICAST_PORT;
842 return snprintf(presenceUri, CA_MAX_URI_LENGTH, "coap://%s:%u%s",
843 ep->addr, ep->port, OC_RSRVD_PRESENCE_URI);
847 // might work for other adapters (untested, but better than nothing)
848 return snprintf(presenceUri, CA_MAX_URI_LENGTH, "coap://%s%s", ep->addr,
849 OC_RSRVD_PRESENCE_URI);
853 OCStackResult HandlePresenceResponse(const CAEndpoint_t *endpoint,
854 const CAResponseInfo_t *responseInfo)
856 VERIFY_NON_NULL(endpoint, FATAL, OC_STACK_INVALID_PARAM);
857 VERIFY_NON_NULL(responseInfo, FATAL, OC_STACK_INVALID_PARAM);
859 OCStackApplicationResult cbResult = OC_STACK_DELETE_TRANSACTION;
860 ClientCB * cbNode = NULL;
861 char *resourceTypeName = NULL;
862 OCClientResponse response = {.devAddr = {.adapter = OC_DEFAULT_ADAPTER}};
863 OCStackResult result = OC_STACK_ERROR;
866 char presenceUri[CA_MAX_URI_LENGTH];
868 int presenceSubscribe = 0;
869 int multicastPresenceSubscribe = 0;
871 if (responseInfo->result != CA_CONTENT)
873 OIC_LOG_V(ERROR, TAG, "HandlePresenceResponse failed %d", responseInfo->result);
874 return OC_STACK_ERROR;
877 // check for unicast presence
878 uriLen = FormCanonicalPresenceUri(endpoint, OC_RSRVD_PRESENCE_URI, presenceUri);
879 if (uriLen < 0 || (size_t)uriLen >= sizeof (presenceUri))
881 return OC_STACK_INVALID_URI;
884 cbNode = GetClientCB(NULL, 0, NULL, presenceUri);
887 presenceSubscribe = 1;
891 // check for multiicast presence
892 CAEndpoint_t ep = { .adapter = endpoint->adapter,
893 .flags = endpoint->flags };
895 uriLen = FormCanonicalPresenceUri(&ep, OC_RSRVD_PRESENCE_URI, presenceUri);
897 cbNode = GetClientCB(NULL, 0, NULL, presenceUri);
900 multicastPresenceSubscribe = 1;
904 if (!presenceSubscribe && !multicastPresenceSubscribe)
906 OIC_LOG(ERROR, TAG, "Received a presence notification, but no callback, ignoring");
910 response.payload = NULL;
911 response.result = OC_STACK_OK;
913 CopyEndpointToDevAddr(endpoint, &response.devAddr);
914 FixUpClientResponse(&response);
916 if (responseInfo->info.payload)
918 result = OCParsePayload(&response.payload,
919 PAYLOAD_TYPE_PRESENCE,
920 responseInfo->info.payload,
921 responseInfo->info.payloadSize);
923 if(result != OC_STACK_OK)
925 OIC_LOG(ERROR, TAG, "Presence parse failed");
928 if(!response.payload || response.payload->type != PAYLOAD_TYPE_PRESENCE)
930 OIC_LOG(ERROR, TAG, "Presence payload was wrong type");
931 result = OC_STACK_ERROR;
934 response.sequenceNumber = ((OCPresencePayload*)response.payload)->sequenceNumber;
935 resourceTypeName = ((OCPresencePayload*)response.payload)->resourceType;
936 maxAge = ((OCPresencePayload*)response.payload)->maxAge;
939 if (presenceSubscribe)
941 if(cbNode->sequenceNumber == response.sequenceNumber)
943 OIC_LOG(INFO, TAG, "No presence change");
944 ResetPresenceTTL(cbNode, maxAge);
945 OIC_LOG_V(INFO, TAG, "ResetPresenceTTL - TTLlevel:%d\n", cbNode->presence->TTLlevel);
951 OIC_LOG(INFO, TAG, "Stopping presence");
952 response.result = OC_STACK_PRESENCE_STOPPED;
955 OICFree(cbNode->presence->timeOut);
956 OICFree(cbNode->presence);
957 cbNode->presence = NULL;
962 if(!cbNode->presence)
964 cbNode->presence = (OCPresence *)OICMalloc(sizeof (OCPresence));
966 if(!(cbNode->presence))
968 OIC_LOG(ERROR, TAG, "Could not allocate memory for cbNode->presence");
969 result = OC_STACK_NO_MEMORY;
973 VERIFY_NON_NULL_V(cbNode->presence);
974 cbNode->presence->timeOut = NULL;
975 cbNode->presence->timeOut = (uint32_t *)
976 OICMalloc(PresenceTimeOutSize * sizeof(uint32_t));
977 if(!(cbNode->presence->timeOut)){
979 "Could not allocate memory for cbNode->presence->timeOut");
980 OICFree(cbNode->presence);
981 result = OC_STACK_NO_MEMORY;
986 ResetPresenceTTL(cbNode, maxAge);
988 cbNode->sequenceNumber = response.sequenceNumber;
990 // Ensure that a filter is actually applied.
991 if( resourceTypeName && cbNode->filterResourceType)
993 if(!findResourceType(cbNode->filterResourceType, resourceTypeName))
1002 // This is the multicast case
1003 OCMulticastNode* mcNode = NULL;
1004 mcNode = GetMCPresenceNode(presenceUri);
1008 if(mcNode->nonce == response.sequenceNumber)
1010 OIC_LOG(INFO, TAG, "No presence change (Multicast)");
1013 mcNode->nonce = response.sequenceNumber;
1017 OIC_LOG(INFO, TAG, "Stopping presence");
1018 response.result = OC_STACK_PRESENCE_STOPPED;
1023 char* uri = OICStrdup(presenceUri);
1027 "No Memory for URI to store in the presence node");
1028 result = OC_STACK_NO_MEMORY;
1032 result = AddMCPresenceNode(&mcNode, uri, response.sequenceNumber);
1033 if(result == OC_STACK_NO_MEMORY)
1036 "No Memory for Multicast Presence Node");
1040 // presence node now owns uri
1043 // Ensure that a filter is actually applied.
1044 if(resourceTypeName && cbNode->filterResourceType)
1046 if(!findResourceType(cbNode->filterResourceType, resourceTypeName))
1053 cbResult = cbNode->callBack(cbNode->context, cbNode->handle, &response);
1055 if (cbResult == OC_STACK_DELETE_TRANSACTION)
1057 FindAndDeleteClientCB(cbNode);
1061 OCPayloadDestroy(response.payload);
1065 void OCHandleResponse(const CAEndpoint_t* endPoint, const CAResponseInfo_t* responseInfo)
1067 OIC_LOG(DEBUG, TAG, "Enter OCHandleResponse");
1069 if(responseInfo->info.resourceUri &&
1070 strcmp(responseInfo->info.resourceUri, OC_RSRVD_PRESENCE_URI) == 0)
1072 HandlePresenceResponse(endPoint, responseInfo);
1076 ClientCB *cbNode = GetClientCB(responseInfo->info.token,
1077 responseInfo->info.tokenLength, NULL, NULL);
1079 ResourceObserver * observer = GetObserverUsingToken (responseInfo->info.token,
1080 responseInfo->info.tokenLength);
1084 OIC_LOG(INFO, TAG, "There is a cbNode associated with the response token");
1085 if(responseInfo->result == CA_EMPTY)
1087 OIC_LOG(INFO, TAG, "Receiving A ACK/RESET for this token");
1088 // We do not have a case for the client to receive a RESET
1089 if(responseInfo->info.type == CA_MSG_ACKNOWLEDGE)
1091 //This is the case of receiving an ACK on a request to a slow resource!
1092 OIC_LOG(INFO, TAG, "This is a pure ACK");
1093 //TODO: should we inform the client
1094 // app that at least the request was received at the server?
1097 else if(responseInfo->result == CA_RETRANSMIT_TIMEOUT)
1099 OIC_LOG(INFO, TAG, "Receiving A Timeout for this token");
1100 OIC_LOG(INFO, TAG, "Calling into application address space");
1102 OCClientResponse response =
1103 {.devAddr = {.adapter = OC_DEFAULT_ADAPTER}};
1104 CopyEndpointToDevAddr(endPoint, &response.devAddr);
1105 FixUpClientResponse(&response);
1106 response.resourceUri = responseInfo->info.resourceUri;
1107 memcpy(response.identity.id, responseInfo->info.identity.id,
1108 sizeof (response.identity.id));
1109 response.identity.id_length = responseInfo->info.identity.id_length;
1111 response.result = CAToOCStackResult(responseInfo->result);
1112 cbNode->callBack(cbNode->context,
1113 cbNode->handle, &response);
1114 FindAndDeleteClientCB(cbNode);
1118 OIC_LOG(INFO, TAG, "This is a regular response, A client call back is found");
1119 OIC_LOG(INFO, TAG, "Calling into application address space");
1121 OCClientResponse response =
1122 {.devAddr = {.adapter = OC_DEFAULT_ADAPTER}};
1123 response.sequenceNumber = OC_OBSERVE_NO_OPTION;
1124 CopyEndpointToDevAddr(endPoint, &response.devAddr);
1125 FixUpClientResponse(&response);
1126 response.resourceUri = responseInfo->info.resourceUri;
1127 memcpy(response.identity.id, responseInfo->info.identity.id,
1128 sizeof (response.identity.id));
1129 response.identity.id_length = responseInfo->info.identity.id_length;
1131 response.result = CAToOCStackResult(responseInfo->result);
1133 if(responseInfo->info.payload &&
1134 responseInfo->info.payloadSize)
1136 OCPayloadType type = PAYLOAD_TYPE_INVALID;
1137 // check the security resource
1138 if (SRMIsSecurityResourceURI(cbNode->requestUri))
1140 type = PAYLOAD_TYPE_SECURITY;
1142 else if (cbNode->method == OC_REST_DISCOVER)
1144 if (strncmp(OC_RSRVD_WELL_KNOWN_URI,cbNode->requestUri,
1145 sizeof(OC_RSRVD_WELL_KNOWN_URI) - 1) == 0)
1147 type = PAYLOAD_TYPE_DISCOVERY;
1149 else if (strcmp(cbNode->requestUri, OC_RSRVD_DEVICE_URI) == 0)
1151 type = PAYLOAD_TYPE_DEVICE;
1153 else if (strcmp(cbNode->requestUri, OC_RSRVD_PLATFORM_URI) == 0)
1155 type = PAYLOAD_TYPE_PLATFORM;
1157 #ifdef ROUTING_GATEWAY
1158 else if (strcmp(cbNode->requestUri, OC_RSRVD_GATEWAY_URI) == 0)
1160 type = PAYLOAD_TYPE_REPRESENTATION;
1163 else if (strcmp(cbNode->requestUri, OC_RSRVD_RD_URI) == 0)
1165 type = PAYLOAD_TYPE_RD;
1168 else if (strcmp(cbNode->requestUri, KEEPALIVE_RESOURCE_URI) == 0)
1170 type = PAYLOAD_TYPE_REPRESENTATION;
1175 OIC_LOG_V(ERROR, TAG, "Unknown Payload type in Discovery: %d %s",
1176 cbNode->method, cbNode->requestUri);
1180 else if (cbNode->method == OC_REST_GET ||
1181 cbNode->method == OC_REST_PUT ||
1182 cbNode->method == OC_REST_POST ||
1183 cbNode->method == OC_REST_OBSERVE ||
1184 cbNode->method == OC_REST_OBSERVE_ALL ||
1185 cbNode->method == OC_REST_DELETE)
1187 char targetUri[MAX_URI_LENGTH];
1188 snprintf(targetUri, MAX_URI_LENGTH, "%s?rt=%s",
1189 OC_RSRVD_RD_URI, OC_RSRVD_RESOURCE_TYPE_RDPUBLISH);
1190 if (strcmp(targetUri, cbNode->requestUri) == 0)
1192 type = PAYLOAD_TYPE_RD;
1194 if (type == PAYLOAD_TYPE_INVALID)
1196 OIC_LOG_V(INFO, TAG, "Assuming PAYLOAD_TYPE_REPRESENTATION: %d %s",
1197 cbNode->method, cbNode->requestUri);
1198 type = PAYLOAD_TYPE_REPRESENTATION;
1203 OIC_LOG_V(ERROR, TAG, "Unknown Payload type: %d %s",
1204 cbNode->method, cbNode->requestUri);
1208 if(OC_STACK_OK != OCParsePayload(&response.payload,
1210 responseInfo->info.payload,
1211 responseInfo->info.payloadSize))
1213 OIC_LOG(ERROR, TAG, "Error converting payload");
1214 OCPayloadDestroy(response.payload);
1219 response.numRcvdVendorSpecificHeaderOptions = 0;
1220 if(responseInfo->info.numOptions > 0)
1223 //First option always with option ID is COAP_OPTION_OBSERVE if it is available.
1224 if(responseInfo->info.options[0].optionID == COAP_OPTION_OBSERVE)
1227 uint32_t observationOption;
1228 uint8_t* optionData = (uint8_t*)responseInfo->info.options[0].optionData;
1229 for (observationOption=0, i=0;
1230 i<sizeof(uint32_t) && i<responseInfo->info.options[0].optionLength;
1234 (observationOption << 8) | optionData[i];
1236 response.sequenceNumber = observationOption;
1238 response.numRcvdVendorSpecificHeaderOptions = responseInfo->info.numOptions - 1;
1243 response.numRcvdVendorSpecificHeaderOptions = responseInfo->info.numOptions;
1246 if(response.numRcvdVendorSpecificHeaderOptions > MAX_HEADER_OPTIONS)
1248 OIC_LOG(ERROR, TAG, "#header options are more than MAX_HEADER_OPTIONS");
1249 OCPayloadDestroy(response.payload);
1253 for (uint8_t i = start; i < responseInfo->info.numOptions; i++)
1255 memcpy (&(response.rcvdVendorSpecificHeaderOptions[i-start]),
1256 &(responseInfo->info.options[i]), sizeof(OCHeaderOption));
1260 if (cbNode->method == OC_REST_OBSERVE &&
1261 response.sequenceNumber > OC_OFFSET_SEQUENCE_NUMBER &&
1262 response.sequenceNumber <= cbNode->sequenceNumber)
1264 OIC_LOG_V(INFO, TAG, "Received stale notification. Number :%d",
1265 response.sequenceNumber);
1269 OCStackApplicationResult appFeedback = cbNode->callBack(cbNode->context,
1272 cbNode->sequenceNumber = response.sequenceNumber;
1274 if (appFeedback == OC_STACK_DELETE_TRANSACTION)
1276 FindAndDeleteClientCB(cbNode);
1280 // To keep discovery callbacks active.
1281 cbNode->TTL = GetTicks(MAX_CB_TIMEOUT_SECONDS *
1282 MILLISECONDS_PER_SECOND);
1286 //Need to send ACK when the response is CON
1287 if(responseInfo->info.type == CA_MSG_CONFIRM)
1289 SendDirectStackResponse(endPoint, responseInfo->info.messageId, CA_EMPTY,
1290 CA_MSG_ACKNOWLEDGE, 0, NULL, NULL, 0, NULL);
1293 OCPayloadDestroy(response.payload);
1300 OIC_LOG(INFO, TAG, "There is an observer associated with the response token");
1301 if(responseInfo->result == CA_EMPTY)
1303 OIC_LOG(INFO, TAG, "Receiving A ACK/RESET for this token");
1304 if(responseInfo->info.type == CA_MSG_RESET)
1306 OIC_LOG(INFO, TAG, "This is a RESET");
1307 OCStackFeedBack(responseInfo->info.token, responseInfo->info.tokenLength,
1308 OC_OBSERVER_NOT_INTERESTED);
1310 else if(responseInfo->info.type == CA_MSG_ACKNOWLEDGE)
1312 OIC_LOG(INFO, TAG, "This is a pure ACK");
1313 OCStackFeedBack(responseInfo->info.token, responseInfo->info.tokenLength,
1314 OC_OBSERVER_STILL_INTERESTED);
1317 else if(responseInfo->result == CA_RETRANSMIT_TIMEOUT)
1319 OIC_LOG(INFO, TAG, "Receiving Time Out for an observer");
1320 OCStackFeedBack(responseInfo->info.token, responseInfo->info.tokenLength,
1321 OC_OBSERVER_FAILED_COMM);
1326 if(!cbNode && !observer)
1328 if(myStackMode == OC_CLIENT || myStackMode == OC_CLIENT_SERVER
1329 || myStackMode == OC_GATEWAY)
1331 OIC_LOG(INFO, TAG, "This is a client, but no cbNode was found for token");
1332 if(responseInfo->result == CA_EMPTY)
1334 OIC_LOG(INFO, TAG, "Receiving CA_EMPTY in the ocstack");
1338 OIC_LOG(INFO, TAG, "Received a message without callbacks. Sending RESET");
1339 SendDirectStackResponse(endPoint, responseInfo->info.messageId, CA_EMPTY,
1340 CA_MSG_RESET, 0, NULL, NULL, 0, NULL);
1344 if(myStackMode == OC_SERVER || myStackMode == OC_CLIENT_SERVER
1345 || myStackMode == OC_GATEWAY)
1347 OIC_LOG(INFO, TAG, "This is a server, but no observer was found for token");
1348 if (responseInfo->info.type == CA_MSG_ACKNOWLEDGE)
1350 OIC_LOG_V(INFO, TAG, "Received ACK at server for messageId : %d",
1351 responseInfo->info.messageId);
1353 if (responseInfo->info.type == CA_MSG_RESET)
1355 OIC_LOG_V(INFO, TAG, "Received RESET at server for messageId : %d",
1356 responseInfo->info.messageId);
1363 OIC_LOG(INFO, TAG, "Exit HandleCAResponses");
1366 void HandleCAResponses(const CAEndpoint_t* endPoint, const CAResponseInfo_t* responseInfo)
1368 VERIFY_NON_NULL_NR(endPoint, FATAL);
1369 VERIFY_NON_NULL_NR(responseInfo, FATAL);
1371 OIC_LOG(INFO, TAG, "Enter HandleCAResponses");
1373 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
1374 #ifdef ROUTING_GATEWAY
1375 bool needRIHandling = false;
1377 * Routing manager is going to update either of endpoint or response or both.
1378 * This typecasting is done to avoid unnecessary duplication of Endpoint and responseInfo
1379 * RM can update "routeData" option in endPoint so that future RI requests can be sent to proper
1382 OCStackResult ret = RMHandleResponse((CAResponseInfo_t *)responseInfo, (CAEndpoint_t *)endPoint,
1384 if(ret != OC_STACK_OK || !needRIHandling)
1386 OIC_LOG_V(INFO, TAG, "Routing status![%d]. Not forwarding to RI", ret);
1392 * Put source in sender endpoint so that the next packet from application can be routed to
1393 * proper destination and remove "RM" coap header option before passing request / response to
1394 * RI as this option will make no sense to either RI or application.
1396 RMUpdateInfo((CAHeaderOption_t **) &(responseInfo->info.options),
1397 (uint8_t *) &(responseInfo->info.numOptions),
1398 (CAEndpoint_t *) endPoint);
1401 OCHandleResponse(endPoint, responseInfo);
1403 OIC_LOG(INFO, TAG, "Exit HandleCAResponses");
1407 * This function handles error response from CA
1408 * code shall be added to handle the errors
1410 void HandleCAErrorResponse(const CAEndpoint_t *endPoint, const CAErrorInfo_t *errrorInfo)
1412 OIC_LOG(INFO, TAG, "Enter HandleCAErrorResponse");
1414 if(NULL == endPoint)
1416 OIC_LOG(ERROR, TAG, "endPoint is NULL");
1420 if(NULL == errrorInfo)
1422 OIC_LOG(ERROR, TAG, "errrorInfo is NULL");
1425 OIC_LOG(INFO, TAG, "Exit HandleCAErrorResponse");
1429 * This function sends out Direct Stack Responses. These are responses that are not coming
1430 * from the application entity handler. These responses have no payload and are usually ACKs,
1431 * RESETs or some error conditions that were caught by the stack.
1433 OCStackResult SendDirectStackResponse(const CAEndpoint_t* endPoint, const uint16_t coapID,
1434 const CAResponseResult_t responseResult, const CAMessageType_t type,
1435 const uint8_t numOptions, const CAHeaderOption_t *options,
1436 CAToken_t token, uint8_t tokenLength, const char *resourceUri)
1438 OIC_LOG(DEBUG, TAG, "Entering SendDirectStackResponse");
1439 CAResponseInfo_t respInfo = {
1440 .result = responseResult
1442 respInfo.info.messageId = coapID;
1443 respInfo.info.numOptions = numOptions;
1445 if (respInfo.info.numOptions)
1447 respInfo.info.options =
1448 (CAHeaderOption_t *)OICCalloc(respInfo.info.numOptions, sizeof(CAHeaderOption_t));
1449 memcpy (respInfo.info.options, options,
1450 sizeof(CAHeaderOption_t) * respInfo.info.numOptions);
1454 respInfo.info.payload = NULL;
1455 respInfo.info.token = token;
1456 respInfo.info.tokenLength = tokenLength;
1457 respInfo.info.type = type;
1458 respInfo.info.resourceUri = OICStrdup (resourceUri);
1459 respInfo.info.acceptFormat = CA_FORMAT_UNDEFINED;
1461 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
1462 // Add the destination to route option from the endpoint->routeData.
1463 bool doPost = false;
1464 OCStackResult result = RMAddInfo(endPoint->routeData, &respInfo, false, &doPost);
1465 if(OC_STACK_OK != result)
1467 OIC_LOG_V(ERROR, TAG, "Add routing option failed [%d]", result);
1472 OIC_LOG(DEBUG, TAG, "Sending a POST message for EMPTY ACK in Client Mode");
1473 CARequestInfo_t reqInfo = {.method = CA_POST };
1474 /* The following initialization is not done in a single initializer block as in
1475 * arduino, .c file is compiled as .cpp and moves it from C99 to C++11. The latter
1476 * does not have designated initalizers. This is a work-around for now.
1478 reqInfo.info.type = CA_MSG_NONCONFIRM;
1479 reqInfo.info.messageId = coapID;
1480 reqInfo.info.tokenLength = tokenLength;
1481 reqInfo.info.token = token;
1482 reqInfo.info.numOptions = respInfo.info.numOptions;
1483 reqInfo.info.payload = NULL;
1484 reqInfo.info.resourceUri = OICStrdup (OC_RSRVD_GATEWAY_URI);
1485 if (reqInfo.info.numOptions)
1487 reqInfo.info.options =
1488 (CAHeaderOption_t *)OICCalloc(reqInfo.info.numOptions, sizeof(CAHeaderOption_t));
1489 if (NULL == reqInfo.info.options)
1491 OIC_LOG(ERROR, TAG, "Calloc failed");
1492 return OC_STACK_NO_MEMORY;
1494 memcpy (reqInfo.info.options, respInfo.info.options,
1495 sizeof(CAHeaderOption_t) * reqInfo.info.numOptions);
1498 CAResult_t caResult = CASendRequest(endPoint, &reqInfo);
1499 OICFree (reqInfo.info.resourceUri);
1500 OICFree (reqInfo.info.options);
1501 OICFree (respInfo.info.resourceUri);
1502 OICFree (respInfo.info.options);
1503 if (CA_STATUS_OK != caResult)
1505 OIC_LOG(ERROR, TAG, "CASendRequest error");
1506 return CAResultToOCResult(caResult);
1512 CAResult_t caResult = CASendResponse(endPoint, &respInfo);
1514 // resourceUri in the info field is cloned in the CA layer and
1515 // thus ownership is still here.
1516 OICFree (respInfo.info.resourceUri);
1517 OICFree (respInfo.info.options);
1518 if(CA_STATUS_OK != caResult)
1520 OIC_LOG(ERROR, TAG, "CASendResponse error");
1521 return CAResultToOCResult(caResult);
1524 OIC_LOG(DEBUG, TAG, "Exit SendDirectStackResponse");
1528 OCStackResult HandleStackRequests(OCServerProtocolRequest * protocolRequest)
1530 OIC_LOG(INFO, TAG, "Entering HandleStackRequests (OCStack Layer)");
1531 OCStackResult result = OC_STACK_ERROR;
1532 if(!protocolRequest)
1534 OIC_LOG(ERROR, TAG, "protocolRequest is NULL");
1535 return OC_STACK_INVALID_PARAM;
1538 OCServerRequest * request = GetServerRequestUsingToken(protocolRequest->requestToken,
1539 protocolRequest->tokenLength);
1542 OIC_LOG(INFO, TAG, "This is a new Server Request");
1543 result = AddServerRequest(&request, protocolRequest->coapID,
1544 protocolRequest->delayedResNeeded, 0, protocolRequest->method,
1545 protocolRequest->numRcvdVendorSpecificHeaderOptions,
1546 protocolRequest->observationOption, protocolRequest->qos,
1547 protocolRequest->query, protocolRequest->rcvdVendorSpecificHeaderOptions,
1548 protocolRequest->payload, protocolRequest->requestToken,
1549 protocolRequest->tokenLength, protocolRequest->resourceUrl,
1550 protocolRequest->reqTotalSize, protocolRequest->acceptFormat,
1551 &protocolRequest->devAddr);
1552 if (OC_STACK_OK != result)
1554 OIC_LOG(ERROR, TAG, "Error adding server request");
1560 OIC_LOG(ERROR, TAG, "Out of Memory");
1561 return OC_STACK_NO_MEMORY;
1564 if(!protocolRequest->reqMorePacket)
1566 request->requestComplete = 1;
1571 OIC_LOG(INFO, TAG, "This is either a repeated or blocked Server Request");
1574 if(request->requestComplete)
1576 OIC_LOG(INFO, TAG, "This Server Request is complete");
1577 ResourceHandling resHandling = OC_RESOURCE_VIRTUAL;
1578 OCResource *resource = NULL;
1579 result = DetermineResourceHandling (request, &resHandling, &resource);
1580 if (result == OC_STACK_OK)
1582 result = ProcessRequest(resHandling, resource, request);
1587 OIC_LOG(INFO, TAG, "This Server Request is incomplete");
1588 result = OC_STACK_CONTINUE;
1593 void OCHandleRequests(const CAEndpoint_t* endPoint, const CARequestInfo_t* requestInfo)
1595 OIC_LOG(DEBUG, TAG, "Enter OCHandleRequests");
1598 if (requestInfo->info.resourceUri &&
1599 strcmp(requestInfo->info.resourceUri, KEEPALIVE_RESOURCE_URI) == 0)
1601 HandleKeepAliveRequest(endPoint, requestInfo);
1606 OCStackResult requestResult = OC_STACK_ERROR;
1608 if(myStackMode == OC_CLIENT)
1610 //TODO: should the client be responding to requests?
1614 OCServerProtocolRequest serverRequest = {0};
1616 OIC_LOG_V(INFO, TAG, "Endpoint URI : %s", requestInfo->info.resourceUri);
1618 char * uriWithoutQuery = NULL;
1619 char * query = NULL;
1621 requestResult = getQueryFromUri(requestInfo->info.resourceUri, &query, &uriWithoutQuery);
1623 if (requestResult != OC_STACK_OK || !uriWithoutQuery)
1625 OIC_LOG_V(ERROR, TAG, "getQueryFromUri() failed with OC error code %d\n", requestResult);
1628 OIC_LOG_V(INFO, TAG, "URI without query: %s", uriWithoutQuery);
1629 OIC_LOG_V(INFO, TAG, "Query : %s", query);
1631 if(strlen(uriWithoutQuery) < MAX_URI_LENGTH)
1633 OICStrcpy(serverRequest.resourceUrl, sizeof(serverRequest.resourceUrl), uriWithoutQuery);
1634 OICFree(uriWithoutQuery);
1638 OIC_LOG(ERROR, TAG, "URI length exceeds MAX_URI_LENGTH.");
1639 OICFree(uriWithoutQuery);
1646 if(strlen(query) < MAX_QUERY_LENGTH)
1648 OICStrcpy(serverRequest.query, sizeof(serverRequest.query), query);
1653 OIC_LOG(ERROR, TAG, "Query length exceeds MAX_QUERY_LENGTH.");
1659 if ((requestInfo->info.payload) && (0 < requestInfo->info.payloadSize))
1661 serverRequest.reqTotalSize = requestInfo->info.payloadSize;
1662 serverRequest.payload = (uint8_t *) OICMalloc(requestInfo->info.payloadSize);
1663 memcpy (serverRequest.payload, requestInfo->info.payload,
1664 requestInfo->info.payloadSize);
1668 serverRequest.reqTotalSize = 0;
1671 switch (requestInfo->method)
1674 serverRequest.method = OC_REST_GET;
1677 serverRequest.method = OC_REST_PUT;
1680 serverRequest.method = OC_REST_POST;
1683 serverRequest.method = OC_REST_DELETE;
1686 OIC_LOG_V(ERROR, TAG, "Received CA method %d not supported", requestInfo->method);
1687 SendDirectStackResponse(endPoint, requestInfo->info.messageId, CA_BAD_REQ,
1688 requestInfo->info.type, requestInfo->info.numOptions,
1689 requestInfo->info.options, requestInfo->info.token,
1690 requestInfo->info.tokenLength, requestInfo->info.resourceUri);
1691 OICFree(serverRequest.payload);
1695 OIC_LOG_BUFFER(INFO, TAG, (const uint8_t *)requestInfo->info.token,
1696 requestInfo->info.tokenLength);
1698 serverRequest.tokenLength = requestInfo->info.tokenLength;
1699 if (serverRequest.tokenLength) {
1701 serverRequest.requestToken = (CAToken_t)OICMalloc(requestInfo->info.tokenLength);
1703 if (!serverRequest.requestToken)
1705 OIC_LOG(FATAL, TAG, "Allocation for token failed.");
1706 SendDirectStackResponse(endPoint, requestInfo->info.messageId, CA_INTERNAL_SERVER_ERROR,
1707 requestInfo->info.type, requestInfo->info.numOptions,
1708 requestInfo->info.options, requestInfo->info.token,
1709 requestInfo->info.tokenLength, requestInfo->info.resourceUri);
1710 OICFree(serverRequest.payload);
1713 memcpy(serverRequest.requestToken, requestInfo->info.token, requestInfo->info.tokenLength);
1716 switch (requestInfo->info.acceptFormat)
1718 case CA_FORMAT_APPLICATION_CBOR:
1719 serverRequest.acceptFormat = OC_FORMAT_CBOR;
1721 case CA_FORMAT_UNDEFINED:
1722 serverRequest.acceptFormat = OC_FORMAT_UNDEFINED;
1725 serverRequest.acceptFormat = OC_FORMAT_UNSUPPORTED;
1728 if (requestInfo->info.type == CA_MSG_CONFIRM)
1730 serverRequest.qos = OC_HIGH_QOS;
1734 serverRequest.qos = OC_LOW_QOS;
1736 // CA does not need the following field
1737 // Are we sure CA does not need them? how is it responding to multicast
1738 serverRequest.delayedResNeeded = 0;
1740 serverRequest.coapID = requestInfo->info.messageId;
1742 CopyEndpointToDevAddr(endPoint, &serverRequest.devAddr);
1744 // copy vendor specific header options
1745 uint8_t tempNum = (requestInfo->info.numOptions);
1747 // Assume no observation requested and it is a pure GET.
1748 // If obs registration/de-registration requested it'll be fetched from the
1749 // options in GetObserveHeaderOption()
1750 serverRequest.observationOption = OC_OBSERVE_NO_OPTION;
1752 GetObserveHeaderOption(&serverRequest.observationOption, requestInfo->info.options, &tempNum);
1753 if (requestInfo->info.numOptions > MAX_HEADER_OPTIONS)
1756 "The request info numOptions is greater than MAX_HEADER_OPTIONS");
1757 SendDirectStackResponse(endPoint, requestInfo->info.messageId, CA_BAD_OPT,
1758 requestInfo->info.type, requestInfo->info.numOptions,
1759 requestInfo->info.options, requestInfo->info.token,
1760 requestInfo->info.tokenLength, requestInfo->info.resourceUri);
1761 OICFree(serverRequest.payload);
1762 OICFree(serverRequest.requestToken);
1765 serverRequest.numRcvdVendorSpecificHeaderOptions = tempNum;
1766 if (serverRequest.numRcvdVendorSpecificHeaderOptions)
1768 memcpy (&(serverRequest.rcvdVendorSpecificHeaderOptions), requestInfo->info.options,
1769 sizeof(CAHeaderOption_t)*tempNum);
1772 requestResult = HandleStackRequests (&serverRequest);
1774 // Send ACK to client as precursor to slow response
1775 if(requestResult == OC_STACK_SLOW_RESOURCE)
1777 SendDirectStackResponse(endPoint, requestInfo->info.messageId, CA_EMPTY,
1778 CA_MSG_ACKNOWLEDGE,0, NULL, NULL, 0, NULL);
1780 else if(requestResult != OC_STACK_OK)
1782 OIC_LOG_V(ERROR, TAG, "HandleStackRequests failed. error: %d", requestResult);
1784 CAResponseResult_t stackResponse =
1785 OCToCAStackResult(requestResult, serverRequest.method);
1787 SendDirectStackResponse(endPoint, requestInfo->info.messageId, stackResponse,
1788 requestInfo->info.type, requestInfo->info.numOptions,
1789 requestInfo->info.options, requestInfo->info.token,
1790 requestInfo->info.tokenLength, requestInfo->info.resourceUri);
1792 // requestToken is fed to HandleStackRequests, which then goes to AddServerRequest.
1793 // The token is copied in there, and is thus still owned by this function.
1794 OICFree(serverRequest.payload);
1795 OICFree(serverRequest.requestToken);
1796 OIC_LOG(INFO, TAG, "Exit OCHandleRequests");
1799 //This function will be called back by CA layer when a request is received
1800 void HandleCARequests(const CAEndpoint_t* endPoint, const CARequestInfo_t* requestInfo)
1802 OIC_LOG(INFO, TAG, "Enter HandleCARequests");
1805 OIC_LOG(ERROR, TAG, "endPoint is NULL");
1811 OIC_LOG(ERROR, TAG, "requestInfo is NULL");
1815 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
1816 #ifdef ROUTING_GATEWAY
1817 bool needRIHandling = false;
1818 bool isEmptyMsg = false;
1820 * Routing manager is going to update either of endpoint or request or both.
1821 * This typecasting is done to avoid unnecessary duplication of Endpoint and requestInfo
1822 * RM can update "routeData" option in endPoint so that future RI requests can be sent to proper
1823 * destination. It can also remove "RM" coap header option before passing request / response to
1824 * RI as this option will make no sense to either RI or application.
1826 OCStackResult ret = RMHandleRequest((CARequestInfo_t *)requestInfo, (CAEndpoint_t *)endPoint,
1827 &needRIHandling, &isEmptyMsg);
1828 if(OC_STACK_OK != ret || !needRIHandling)
1830 OIC_LOG_V(INFO, TAG, "Routing status![%d]. Not forwarding to RI", ret);
1836 * Put source in sender endpoint so that the next packet from application can be routed to
1837 * proper destination and remove RM header option.
1839 RMUpdateInfo((CAHeaderOption_t **) &(requestInfo->info.options),
1840 (uint8_t *) &(requestInfo->info.numOptions),
1841 (CAEndpoint_t *) endPoint);
1843 #ifdef ROUTING_GATEWAY
1847 * In Gateways, the MSGType in route option is used to check if the actual
1848 * response is EMPTY message(4 bytes CoAP Header). In case of Client, the
1849 * EMPTY response is sent in the form of POST request which need to be changed
1850 * to a EMPTY response by RM. This translation is done in this part of the code.
1852 OIC_LOG(INFO, TAG, "This is a Empty response from the Client");
1853 CAResponseInfo_t respInfo = {.result = CA_EMPTY,
1854 .info.messageId = requestInfo->info.messageId,
1855 .info.type = CA_MSG_ACKNOWLEDGE};
1856 OCHandleResponse(endPoint, &respInfo);
1862 // Normal handling of the packet
1863 OCHandleRequests(endPoint, requestInfo);
1865 OIC_LOG(INFO, TAG, "Exit HandleCARequests");
1868 bool validatePlatformInfo(OCPlatformInfo info)
1871 if (!info.platformID)
1873 OIC_LOG(ERROR, TAG, "No platform ID found.");
1877 if (info.manufacturerName)
1879 size_t lenManufacturerName = strlen(info.manufacturerName);
1881 if(lenManufacturerName == 0 || lenManufacturerName > MAX_MANUFACTURER_NAME_LENGTH)
1883 OIC_LOG(ERROR, TAG, "Manufacturer name fails length requirements.");
1889 OIC_LOG(ERROR, TAG, "No manufacturer name present");
1893 if (info.manufacturerUrl)
1895 if(strlen(info.manufacturerUrl) > MAX_MANUFACTURER_URL_LENGTH)
1897 OIC_LOG(ERROR, TAG, "Manufacturer url fails length requirements.");
1904 //-----------------------------------------------------------------------------
1906 //-----------------------------------------------------------------------------
1908 OCStackResult OCSetRAInfo(const OCRAInfo_t *raInfo)
1911 !raInfo->username ||
1912 !raInfo->hostname ||
1913 !raInfo->xmpp_domain)
1916 return OC_STACK_INVALID_PARAM;
1918 OCStackResult result = CAResultToOCResult(CASetRAInfo((const CARAInfo_t *) raInfo));
1919 gRASetInfo = (result == OC_STACK_OK)? true : false;
1925 OCStackResult OCInit(const char *ipAddr, uint16_t port, OCMode mode)
1929 return OCInit1(mode, OC_DEFAULT_FLAGS, OC_DEFAULT_FLAGS);
1932 OCStackResult OCInit1(OCMode mode, OCTransportFlags serverFlags, OCTransportFlags clientFlags)
1934 if(stackState == OC_STACK_INITIALIZED)
1936 OIC_LOG(INFO, TAG, "Subsequent calls to OCInit() without calling \
1937 OCStop() between them are ignored.");
1941 #ifndef ROUTING_GATEWAY
1942 if (OC_GATEWAY == mode)
1944 OIC_LOG(ERROR, TAG, "Routing Manager not supported");
1945 return OC_STACK_INVALID_PARAM;
1952 OIC_LOG(ERROR, TAG, "Need to call OCSetRAInfo before calling OCInit");
1953 return OC_STACK_ERROR;
1957 OCStackResult result = OC_STACK_ERROR;
1958 OIC_LOG(INFO, TAG, "Entering OCInit");
1961 if (!((mode == OC_CLIENT) || (mode == OC_SERVER) || (mode == OC_CLIENT_SERVER)
1962 || (mode == OC_GATEWAY)))
1964 OIC_LOG(ERROR, TAG, "Invalid mode");
1965 return OC_STACK_ERROR;
1969 if (mode == OC_CLIENT || mode == OC_CLIENT_SERVER || mode == OC_GATEWAY)
1971 caglobals.client = true;
1973 if (mode == OC_SERVER || mode == OC_CLIENT_SERVER || mode == OC_GATEWAY)
1975 caglobals.server = true;
1978 caglobals.serverFlags = (CATransportFlags_t)serverFlags;
1979 if (!(caglobals.serverFlags & CA_IPFAMILY_MASK))
1981 caglobals.serverFlags = (CATransportFlags_t)(caglobals.serverFlags|CA_IPV4|CA_IPV6);
1983 caglobals.clientFlags = (CATransportFlags_t)clientFlags;
1984 if (!(caglobals.clientFlags & CA_IPFAMILY_MASK))
1986 caglobals.clientFlags = (CATransportFlags_t)(caglobals.clientFlags|CA_IPV4|CA_IPV6);
1989 defaultDeviceHandler = NULL;
1990 defaultDeviceHandlerCallbackParameter = NULL;
1992 result = CAResultToOCResult(CAInitialize());
1993 VERIFY_SUCCESS(result, OC_STACK_OK);
1995 result = CAResultToOCResult(OCSelectNetwork());
1996 VERIFY_SUCCESS(result, OC_STACK_OK);
1998 switch (myStackMode)
2001 CARegisterHandler(HandleCARequests, HandleCAResponses, HandleCAErrorResponse);
2002 result = CAResultToOCResult(CAStartDiscoveryServer());
2003 OIC_LOG(INFO, TAG, "Client mode: CAStartDiscoveryServer");
2006 SRMRegisterHandler(HandleCARequests, HandleCAResponses, HandleCAErrorResponse);
2007 result = CAResultToOCResult(CAStartListeningServer());
2008 OIC_LOG(INFO, TAG, "Server mode: CAStartListeningServer");
2010 case OC_CLIENT_SERVER:
2012 SRMRegisterHandler(HandleCARequests, HandleCAResponses, HandleCAErrorResponse);
2013 result = CAResultToOCResult(CAStartListeningServer());
2014 if(result == OC_STACK_OK)
2016 result = CAResultToOCResult(CAStartDiscoveryServer());
2020 VERIFY_SUCCESS(result, OC_STACK_OK);
2023 CARegisterKeepAliveHandler(HandleKeepAliveConnCB, HandleKeepAliveDisconnCB);
2026 #ifdef WITH_PRESENCE
2027 PresenceTimeOutSize = sizeof (PresenceTimeOut) / sizeof (PresenceTimeOut[0]) - 1;
2028 #endif // WITH_PRESENCE
2030 //Update Stack state to initialized
2031 stackState = OC_STACK_INITIALIZED;
2033 // Initialize resource
2034 if(myStackMode != OC_CLIENT)
2036 result = initResources();
2039 // Initialize the SRM Policy Engine
2040 if(result == OC_STACK_OK)
2042 result = SRMInitPolicyEngine();
2043 // TODO after BeachHead delivery: consolidate into single SRMInit()
2045 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
2046 RMSetStackMode(mode);
2047 #ifdef ROUTING_GATEWAY
2048 if (OC_GATEWAY == myStackMode)
2050 result = RMInitialize();
2056 if(result == OC_STACK_OK)
2058 result = InitializeKeepAlive();
2063 if(result != OC_STACK_OK)
2065 OIC_LOG(ERROR, TAG, "Stack initialization error");
2066 deleteAllResources();
2068 stackState = OC_STACK_UNINITIALIZED;
2073 OCStackResult OCStop()
2075 OIC_LOG(INFO, TAG, "Entering OCStop");
2077 if (stackState == OC_STACK_UNINIT_IN_PROGRESS)
2079 OIC_LOG(DEBUG, TAG, "Stack already stopping, exiting");
2082 else if (stackState != OC_STACK_INITIALIZED)
2084 OIC_LOG(ERROR, TAG, "Stack not initialized");
2085 return OC_STACK_ERROR;
2088 stackState = OC_STACK_UNINIT_IN_PROGRESS;
2090 #ifdef WITH_PRESENCE
2091 // Ensure that the TTL associated with ANY and ALL presence notifications originating from
2092 // here send with the code "OC_STACK_PRESENCE_STOPPED" result.
2093 presenceResource.presenceTTL = 0;
2094 #endif // WITH_PRESENCE
2096 #ifdef ROUTING_GATEWAY
2097 if (OC_GATEWAY == myStackMode)
2104 TerminateKeepAlive();
2107 // Free memory dynamically allocated for resources
2108 deleteAllResources();
2110 DeletePlatformInfo();
2112 // Remove all observers
2113 DeleteObserverList();
2114 // Remove all the client callbacks
2115 DeleteClientCBList();
2117 // De-init the SRM Policy Engine
2118 // TODO after BeachHead delivery: consolidate into single SRMDeInit()
2119 SRMDeInitPolicyEngine();
2122 stackState = OC_STACK_UNINITIALIZED;
2126 OCStackResult OCStartMulticastServer()
2128 if(stackState != OC_STACK_INITIALIZED)
2130 OIC_LOG(ERROR, TAG, "OCStack is not initalized. Cannot start multicast server.");
2131 return OC_STACK_ERROR;
2133 CAResult_t ret = CAStartListeningServer();
2134 if (CA_STATUS_OK != ret)
2136 OIC_LOG_V(ERROR, TAG, "Failed starting listening server: %d", ret);
2137 return OC_STACK_ERROR;
2142 OCStackResult OCStopMulticastServer()
2144 CAResult_t ret = CAStopListeningServer();
2145 if (CA_STATUS_OK != ret)
2147 OIC_LOG_V(ERROR, TAG, "Failed stopping listening server: %d", ret);
2148 return OC_STACK_ERROR;
2153 CAMessageType_t qualityOfServiceToMessageType(OCQualityOfService qos)
2158 return CA_MSG_CONFIRM;
2163 return CA_MSG_NONCONFIRM;
2167 OCStackResult verifyUriQueryLength(const char *inputUri, uint16_t uriLen)
2171 query = strchr (inputUri, '?');
2175 if((query - inputUri) > MAX_URI_LENGTH)
2177 return OC_STACK_INVALID_URI;
2180 if((inputUri + uriLen - 1 - query) > MAX_QUERY_LENGTH)
2182 return OC_STACK_INVALID_QUERY;
2185 else if(uriLen > MAX_URI_LENGTH)
2187 return OC_STACK_INVALID_URI;
2193 * A request uri consists of the following components in order:
2196 * CoAP over UDP prefix "coap://"
2197 * CoAP over TCP prefix "coap+tcp://"
2199 * IPv6 address "[1234::5678]"
2200 * IPv4 address "192.168.1.1"
2201 * optional port ":5683"
2202 * resource uri "/oc/core..."
2204 * for PRESENCE requests, extract resource type.
2206 static OCStackResult ParseRequestUri(const char *fullUri,
2207 OCTransportAdapter adapter,
2208 OCTransportFlags flags,
2209 OCDevAddr **devAddr,
2211 char **resourceType)
2213 VERIFY_NON_NULL(fullUri, FATAL, OC_STACK_INVALID_CALLBACK);
2215 OCStackResult result = OC_STACK_OK;
2216 OCDevAddr *da = NULL;
2220 // provide defaults for all returned values
2227 *resourceUri = NULL;
2231 *resourceType = NULL;
2234 // delimit url prefix, if any
2235 const char *start = fullUri;
2236 char *slash2 = strstr(start, "//");
2241 char *slash = strchr(start, '/');
2244 return OC_STACK_INVALID_URI;
2247 // process url scheme
2248 size_t prefixLen = slash2 - fullUri;
2252 if ((prefixLen == sizeof(COAP_TCP) - 1) && (!strncmp(fullUri, COAP_TCP, prefixLen)))
2258 // TODO: this logic should come in with unit tests exercising the various strings
2259 // processs url prefix, if any
2260 size_t urlLen = slash - start;
2264 if (urlLen && devAddr)
2265 { // construct OCDevAddr
2266 if (start[0] == '[')
2268 char *close = strchr(++start, ']');
2269 if (!close || close > slash)
2271 return OC_STACK_INVALID_URI;
2274 if (close[1] == ':')
2278 adapter = (OCTransportAdapter)(adapter | OC_ADAPTER_IP);
2279 flags = (OCTransportFlags)(flags | OC_IP_USE_V6);
2283 char *dot = strchr(start, '.');
2284 if (dot && dot < slash)
2286 colon = strchr(start, ':');
2287 end = (colon && colon < slash) ? colon : slash;
2291 adapter = (OCTransportAdapter)(adapter | OC_ADAPTER_TCP);
2295 adapter = (OCTransportAdapter)(adapter | OC_ADAPTER_IP);
2296 flags = (OCTransportFlags)(flags | OC_IP_USE_V4);
2305 if (len >= sizeof(da->addr))
2307 return OC_STACK_INVALID_URI;
2309 // collect port, if any
2310 if (colon && colon < slash)
2312 for (colon++; colon < slash; colon++)
2315 if (c < '0' || c > '9')
2317 return OC_STACK_INVALID_URI;
2319 port = 10 * port + c - '0';
2324 if (len >= sizeof(da->addr))
2326 return OC_STACK_INVALID_URI;
2329 da = (OCDevAddr *)OICCalloc(sizeof (OCDevAddr), 1);
2332 return OC_STACK_NO_MEMORY;
2334 OICStrcpyPartial(da->addr, sizeof(da->addr), start, len);
2336 da->adapter = adapter;
2338 if (!strncmp(fullUri, "coaps:", 6))
2340 da->flags = (OCTransportFlags)(da->flags|CA_SECURE);
2345 // process resource uri, if any
2347 { // request uri and query
2348 size_t ulen = strlen(slash); // resource uri length
2349 size_t tlen = 0; // resource type length
2352 static const char strPresence[] = "/oic/ad?rt=";
2353 static const size_t lenPresence = sizeof(strPresence) - 1;
2354 if (!strncmp(slash, strPresence, lenPresence))
2356 type = slash + lenPresence;
2357 tlen = ulen - lenPresence;
2362 *resourceUri = (char *)OICMalloc(ulen + 1);
2365 result = OC_STACK_NO_MEMORY;
2368 strcpy(*resourceUri, slash);
2371 if (type && resourceType)
2373 *resourceType = (char *)OICMalloc(tlen + 1);
2376 result = OC_STACK_NO_MEMORY;
2380 OICStrcpy(*resourceType, (tlen+1), type);
2387 // free all returned values
2394 OICFree(*resourceUri);
2398 OICFree(*resourceType);
2403 static OCStackResult OCPreparePresence(CAEndpoint_t *endpoint,
2404 char *resourceUri, char **requestUri)
2406 char uri[CA_MAX_URI_LENGTH];
2408 FormCanonicalPresenceUri(endpoint, resourceUri, uri);
2410 *requestUri = OICStrdup(uri);
2413 return OC_STACK_NO_MEMORY;
2420 * Discover or Perform requests on a specified resource
2422 OCStackResult OCDoResource(OCDoHandle *handle,
2424 const char *requestUri,
2425 const OCDevAddr *destination,
2427 OCConnectivityType connectivityType,
2428 OCQualityOfService qos,
2429 OCCallbackData *cbData,
2430 OCHeaderOption *options,
2433 OIC_LOG(INFO, TAG, "Entering OCDoResource");
2435 // Validate input parameters
2436 VERIFY_NON_NULL(cbData, FATAL, OC_STACK_INVALID_CALLBACK);
2437 VERIFY_NON_NULL(cbData->cb, FATAL, OC_STACK_INVALID_CALLBACK);
2438 VERIFY_NON_NULL(requestUri , FATAL, OC_STACK_INVALID_URI);
2440 OCStackResult result = OC_STACK_ERROR;
2441 CAResult_t caResult;
2442 CAToken_t token = NULL;
2443 uint8_t tokenLength = CA_MAX_TOKEN_LEN;
2444 ClientCB *clientCB = NULL;
2445 OCDoHandle resHandle = NULL;
2446 CAEndpoint_t endpoint = {.adapter = CA_DEFAULT_ADAPTER};
2447 OCDevAddr tmpDevAddr = { OC_DEFAULT_ADAPTER };
2449 OCTransportAdapter adapter;
2450 OCTransportFlags flags;
2451 // the request contents are put here
2452 CARequestInfo_t requestInfo = {.method = CA_GET};
2453 // requestUri will be parsed into the following three variables
2454 OCDevAddr *devAddr = NULL;
2455 char *resourceUri = NULL;
2456 char *resourceType = NULL;
2458 // This validation is broken, but doesn't cause harm
2459 size_t uriLen = strlen(requestUri );
2460 if ((result = verifyUriQueryLength(requestUri , uriLen)) != OC_STACK_OK)
2466 * Support original behavior with address on resourceUri argument.
2468 adapter = (OCTransportAdapter)(connectivityType >> CT_ADAPTER_SHIFT);
2469 flags = (OCTransportFlags)(connectivityType & CT_MASK_FLAGS);
2471 result = ParseRequestUri(requestUri, adapter, flags, &devAddr, &resourceUri, &resourceType);
2473 if (result != OC_STACK_OK)
2475 OIC_LOG_V(DEBUG, TAG, "Unable to parse uri: %s", requestUri);
2482 case OC_REST_OBSERVE:
2483 case OC_REST_OBSERVE_ALL:
2484 case OC_REST_CANCEL_OBSERVE:
2485 requestInfo.method = CA_GET;
2488 requestInfo.method = CA_PUT;
2491 requestInfo.method = CA_POST;
2493 case OC_REST_DELETE:
2494 requestInfo.method = CA_DELETE;
2496 case OC_REST_DISCOVER:
2498 if (destination || devAddr)
2500 requestInfo.isMulticast = false;
2504 tmpDevAddr.adapter = adapter;
2505 tmpDevAddr.flags = flags;
2506 destination = &tmpDevAddr;
2507 requestInfo.isMulticast = true;
2509 // CA_DISCOVER will become GET and isMulticast
2510 requestInfo.method = CA_GET;
2512 #ifdef WITH_PRESENCE
2513 case OC_REST_PRESENCE:
2514 // Replacing method type with GET because "presence"
2515 // is a stack layer only implementation.
2516 requestInfo.method = CA_GET;
2520 result = OC_STACK_INVALID_METHOD;
2524 if (!devAddr && !destination)
2526 OIC_LOG(DEBUG, TAG, "no devAddr and no destination");
2527 result = OC_STACK_INVALID_PARAM;
2531 /* If not original behavior, use destination argument */
2532 if (destination && !devAddr)
2534 devAddr = (OCDevAddr *)OICMalloc(sizeof (OCDevAddr));
2537 result = OC_STACK_NO_MEMORY;
2540 *devAddr = *destination;
2543 resHandle = GenerateInvocationHandle();
2546 result = OC_STACK_NO_MEMORY;
2550 caResult = CAGenerateToken(&token, tokenLength);
2551 if (caResult != CA_STATUS_OK)
2553 OIC_LOG(ERROR, TAG, "CAGenerateToken error");
2554 result= OC_STACK_ERROR;
2558 // fill in request data
2559 requestInfo.info.type = qualityOfServiceToMessageType(qos);
2560 requestInfo.info.token = token;
2561 requestInfo.info.tokenLength = tokenLength;
2562 requestInfo.info.resourceUri = resourceUri;
2564 if ((method == OC_REST_OBSERVE) || (method == OC_REST_OBSERVE_ALL))
2566 result = CreateObserveHeaderOption (&(requestInfo.info.options),
2567 options, numOptions, OC_OBSERVE_REGISTER);
2568 if (result != OC_STACK_OK)
2572 requestInfo.info.numOptions = numOptions + 1;
2576 requestInfo.info.numOptions = numOptions;
2577 requestInfo.info.options =
2578 (CAHeaderOption_t*) OICCalloc(numOptions, sizeof(CAHeaderOption_t));
2579 memcpy(requestInfo.info.options, (CAHeaderOption_t*)options,
2580 numOptions * sizeof(CAHeaderOption_t));
2583 CopyDevAddrToEndpoint(devAddr, &endpoint);
2588 OCConvertPayload(payload, &requestInfo.info.payload, &requestInfo.info.payloadSize))
2591 OIC_LOG(ERROR, TAG, "Failed to create CBOR Payload");
2594 requestInfo.info.payloadFormat = CA_FORMAT_APPLICATION_CBOR;
2598 requestInfo.info.payload = NULL;
2599 requestInfo.info.payloadSize = 0;
2600 requestInfo.info.payloadFormat = CA_FORMAT_UNDEFINED;
2603 if (result != OC_STACK_OK)
2605 OIC_LOG(ERROR, TAG, "CACreateEndpoint error");
2609 // prepare for response
2610 #ifdef WITH_PRESENCE
2611 if (method == OC_REST_PRESENCE)
2613 char *presenceUri = NULL;
2614 result = OCPreparePresence(&endpoint, resourceUri, &presenceUri);
2615 if (OC_STACK_OK != result)
2620 // Assign full presence uri as coap://ip:port/oic/ad to add to callback list.
2621 // Presence notification will form a canonical uri to
2622 // look for callbacks into the application.
2623 resourceUri = presenceUri;
2627 ttl = GetTicks(MAX_CB_TIMEOUT_SECONDS * MILLISECONDS_PER_SECOND);
2628 result = AddClientCB(&clientCB, cbData, token, tokenLength, &resHandle,
2629 method, devAddr, resourceUri, resourceType, ttl);
2630 if (OC_STACK_OK != result)
2635 devAddr = NULL; // Client CB list entry now owns it
2636 resourceUri = NULL; // Client CB list entry now owns it
2637 resourceType = NULL; // Client CB list entry now owns it
2640 result = OCSendRequest(&endpoint, &requestInfo);
2641 if (OC_STACK_OK != result)
2648 *handle = resHandle;
2652 if (result != OC_STACK_OK)
2654 OIC_LOG(ERROR, TAG, "OCDoResource error");
2655 FindAndDeleteClientCB(clientCB);
2656 CADestroyToken(token);
2664 // This is the owner of the payload object, so we free it
2665 OCPayloadDestroy(payload);
2666 OICFree(requestInfo.info.payload);
2668 OICFree(resourceUri);
2669 OICFree(resourceType);
2670 OICFree(requestInfo.info.options);
2674 OCStackResult OCCancel(OCDoHandle handle, OCQualityOfService qos, OCHeaderOption * options,
2678 * This ftn is implemented one of two ways in the case of observation:
2680 * 1. qos == OC_NON_CONFIRMABLE. When observe is unobserved..
2681 * Remove the callback associated on client side.
2682 * When the next notification comes in from server,
2683 * reply with RESET message to server.
2684 * Keep in mind that the server will react to RESET only
2685 * if the last notification was sent as CON
2687 * 2. qos == OC_CONFIRMABLE. When OCCancel is called,
2688 * and it is associated with an observe request
2689 * (i.e. ClientCB->method == OC_REST_OBSERVE || OC_REST_OBSERVE_ALL),
2690 * Send CON Observe request to server with
2691 * observe flag = OC_RESOURCE_OBSERVE_DEREGISTER.
2692 * Remove the callback associated on client side.
2694 OCStackResult ret = OC_STACK_OK;
2695 CAEndpoint_t endpoint = {.adapter = CA_DEFAULT_ADAPTER};
2696 CARequestInfo_t requestInfo = {.method = CA_GET};
2700 return OC_STACK_INVALID_PARAM;
2703 ClientCB *clientCB = GetClientCB(NULL, 0, handle, NULL);
2706 OIC_LOG(ERROR, TAG, "Callback not found. Called OCCancel on same resource twice?");
2707 return OC_STACK_ERROR;
2710 switch (clientCB->method)
2712 case OC_REST_OBSERVE:
2713 case OC_REST_OBSERVE_ALL:
2715 OIC_LOG_V(INFO, TAG, "Canceling observation for resource %s",
2716 clientCB->requestUri);
2717 if (qos != OC_HIGH_QOS)
2719 FindAndDeleteClientCB(clientCB);
2723 OIC_LOG(INFO, TAG, "Cancelling observation as CONFIRMABLE");
2725 requestInfo.info.type = qualityOfServiceToMessageType(qos);
2726 requestInfo.info.token = clientCB->token;
2727 requestInfo.info.tokenLength = clientCB->tokenLength;
2729 if (CreateObserveHeaderOption (&(requestInfo.info.options),
2730 options, numOptions, OC_OBSERVE_DEREGISTER) != OC_STACK_OK)
2732 return OC_STACK_ERROR;
2734 requestInfo.info.numOptions = numOptions + 1;
2735 requestInfo.info.resourceUri = OICStrdup (clientCB->requestUri);
2737 CopyDevAddrToEndpoint(clientCB->devAddr, &endpoint);
2739 ret = OCSendRequest(&endpoint, &requestInfo);
2741 if (requestInfo.info.options)
2743 OICFree (requestInfo.info.options);
2745 if (requestInfo.info.resourceUri)
2747 OICFree (requestInfo.info.resourceUri);
2752 case OC_REST_DISCOVER:
2753 OIC_LOG_V(INFO, TAG, "Cancelling discovery callback for resource %s",
2754 clientCB->requestUri);
2755 FindAndDeleteClientCB(clientCB);
2758 #ifdef WITH_PRESENCE
2759 case OC_REST_PRESENCE:
2760 FindAndDeleteClientCB(clientCB);
2765 ret = OC_STACK_INVALID_METHOD;
2773 * @brief Register Persistent storage callback.
2774 * @param persistentStorageHandler [IN] Pointers to open, read, write, close & unlink handlers.
2776 * OC_STACK_OK - No errors; Success
2777 * OC_STACK_INVALID_PARAM - Invalid parameter
2779 OCStackResult OCRegisterPersistentStorageHandler(OCPersistentStorage* persistentStorageHandler)
2781 OIC_LOG(INFO, TAG, "RegisterPersistentStorageHandler !!");
2782 if(!persistentStorageHandler)
2784 OIC_LOG(ERROR, TAG, "The persistent storage handler is invalid");
2785 return OC_STACK_INVALID_PARAM;
2789 if( !persistentStorageHandler->open ||
2790 !persistentStorageHandler->close ||
2791 !persistentStorageHandler->read ||
2792 !persistentStorageHandler->unlink ||
2793 !persistentStorageHandler->write)
2795 OIC_LOG(ERROR, TAG, "The persistent storage handler is invalid");
2796 return OC_STACK_INVALID_PARAM;
2799 return SRMRegisterPersistentStorageHandler(persistentStorageHandler);
2802 #ifdef WITH_PRESENCE
2804 OCStackResult OCProcessPresence()
2806 OCStackResult result = OC_STACK_OK;
2808 // the following line floods the log with messages that are irrelevant
2809 // to most purposes. Uncomment as needed.
2810 //OIC_LOG(INFO, TAG, "Entering RequestPresence");
2811 ClientCB* cbNode = NULL;
2812 OCClientResponse clientResponse;
2813 OCStackApplicationResult cbResult = OC_STACK_DELETE_TRANSACTION;
2815 LL_FOREACH(cbList, cbNode)
2817 if (OC_REST_PRESENCE != cbNode->method || !cbNode->presence)
2822 uint32_t now = GetTicks(0);
2823 OIC_LOG_V(DEBUG, TAG, "this TTL level %d",
2824 cbNode->presence->TTLlevel);
2825 OIC_LOG_V(DEBUG, TAG, "current ticks %d", now);
2827 if (cbNode->presence->TTLlevel > PresenceTimeOutSize)
2832 if (cbNode->presence->TTLlevel < PresenceTimeOutSize)
2834 OIC_LOG_V(DEBUG, TAG, "timeout ticks %d",
2835 cbNode->presence->timeOut[cbNode->presence->TTLlevel]);
2837 if (cbNode->presence->TTLlevel >= PresenceTimeOutSize)
2839 OIC_LOG(DEBUG, TAG, "No more timeout ticks");
2841 clientResponse.sequenceNumber = 0;
2842 clientResponse.result = OC_STACK_PRESENCE_TIMEOUT;
2843 clientResponse.devAddr = *cbNode->devAddr;
2844 FixUpClientResponse(&clientResponse);
2845 clientResponse.payload = NULL;
2847 // Increment the TTLLevel (going to a next state), so we don't keep
2848 // sending presence notification to client.
2849 cbNode->presence->TTLlevel++;
2850 OIC_LOG_V(DEBUG, TAG, "moving to TTL level %d",
2851 cbNode->presence->TTLlevel);
2853 cbResult = cbNode->callBack(cbNode->context, cbNode->handle, &clientResponse);
2854 if (cbResult == OC_STACK_DELETE_TRANSACTION)
2856 FindAndDeleteClientCB(cbNode);
2860 if (now < cbNode->presence->timeOut[cbNode->presence->TTLlevel])
2865 CAEndpoint_t endpoint = {.adapter = CA_DEFAULT_ADAPTER};
2866 CAInfo_t requestData = {.type = CA_MSG_CONFIRM};
2867 CARequestInfo_t requestInfo = {.method = CA_GET};
2869 OIC_LOG(DEBUG, TAG, "time to test server presence");
2871 CopyDevAddrToEndpoint(cbNode->devAddr, &endpoint);
2873 requestData.type = CA_MSG_NONCONFIRM;
2874 requestData.token = cbNode->token;
2875 requestData.tokenLength = cbNode->tokenLength;
2876 requestData.resourceUri = OC_RSRVD_PRESENCE_URI;
2877 requestInfo.method = CA_GET;
2878 requestInfo.info = requestData;
2880 result = OCSendRequest(&endpoint, &requestInfo);
2881 if (OC_STACK_OK != result)
2886 cbNode->presence->TTLlevel++;
2887 OIC_LOG_V(DEBUG, TAG, "moving to TTL level %d", cbNode->presence->TTLlevel);
2890 if (result != OC_STACK_OK)
2892 OIC_LOG(ERROR, TAG, "OCProcessPresence error");
2897 #endif // WITH_PRESENCE
2899 OCStackResult OCProcess()
2901 #ifdef WITH_PRESENCE
2902 OCProcessPresence();
2904 CAHandleRequestResponse();
2906 #ifdef ROUTING_GATEWAY
2916 #ifdef WITH_PRESENCE
2917 OCStackResult OCStartPresence(const uint32_t ttl)
2919 uint8_t tokenLength = CA_MAX_TOKEN_LEN;
2920 OCChangeResourceProperty(
2921 &(((OCResource *)presenceResource.handle)->resourceProperties),
2924 if (OC_MAX_PRESENCE_TTL_SECONDS < ttl)
2926 presenceResource.presenceTTL = OC_MAX_PRESENCE_TTL_SECONDS;
2927 OIC_LOG(INFO, TAG, "Setting Presence TTL to max value");
2931 presenceResource.presenceTTL = OC_DEFAULT_PRESENCE_TTL_SECONDS;
2932 OIC_LOG(INFO, TAG, "Setting Presence TTL to default value");
2936 presenceResource.presenceTTL = ttl;
2938 OIC_LOG_V(DEBUG, TAG, "Presence TTL is %" PRIu32 " seconds", presenceResource.presenceTTL);
2940 if (OC_PRESENCE_UNINITIALIZED == presenceState)
2942 presenceState = OC_PRESENCE_INITIALIZED;
2944 OCDevAddr devAddr = { OC_DEFAULT_ADAPTER };
2946 CAToken_t caToken = NULL;
2947 CAResult_t caResult = CAGenerateToken(&caToken, tokenLength);
2948 if (caResult != CA_STATUS_OK)
2950 OIC_LOG(ERROR, TAG, "CAGenerateToken error");
2951 CADestroyToken(caToken);
2952 return OC_STACK_ERROR;
2955 AddObserver(OC_RSRVD_PRESENCE_URI, NULL, 0, caToken, tokenLength,
2956 (OCResource *)presenceResource.handle, OC_LOW_QOS, OC_FORMAT_UNDEFINED, &devAddr);
2957 CADestroyToken(caToken);
2960 // Each time OCStartPresence is called
2961 // a different random 32-bit integer number is used
2962 ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
2964 return SendPresenceNotification(((OCResource *)presenceResource.handle)->rsrcType,
2965 OC_PRESENCE_TRIGGER_CREATE);
2968 OCStackResult OCStopPresence()
2970 OCStackResult result = OC_STACK_ERROR;
2972 if(presenceResource.handle)
2974 ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
2976 // make resource inactive
2977 result = OCChangeResourceProperty(
2978 &(((OCResource *) presenceResource.handle)->resourceProperties),
2982 if(result != OC_STACK_OK)
2985 "Changing the presence resource properties to ACTIVE not successful");
2989 return SendStopNotification();
2993 OCStackResult OCSetDefaultDeviceEntityHandler(OCDeviceEntityHandler entityHandler,
2994 void* callbackParameter)
2996 defaultDeviceHandler = entityHandler;
2997 defaultDeviceHandlerCallbackParameter = callbackParameter;
3002 OCStackResult OCSetPlatformInfo(OCPlatformInfo platformInfo)
3004 OIC_LOG(INFO, TAG, "Entering OCSetPlatformInfo");
3006 if(myStackMode == OC_SERVER || myStackMode == OC_CLIENT_SERVER || myStackMode == OC_GATEWAY)
3008 if (validatePlatformInfo(platformInfo))
3010 return SavePlatformInfo(platformInfo);
3014 return OC_STACK_INVALID_PARAM;
3019 return OC_STACK_ERROR;
3023 OCStackResult OCSetDeviceInfo(OCDeviceInfo deviceInfo)
3025 OIC_LOG(INFO, TAG, "Entering OCSetDeviceInfo");
3027 if (!deviceInfo.deviceName || deviceInfo.deviceName[0] == '\0')
3029 OIC_LOG(ERROR, TAG, "Null or empty device name.");
3030 return OC_STACK_INVALID_PARAM;
3033 return SaveDeviceInfo(deviceInfo);
3036 OCStackResult OCCreateResource(OCResourceHandle *handle,
3037 const char *resourceTypeName,
3038 const char *resourceInterfaceName,
3039 const char *uri, OCEntityHandler entityHandler,
3040 void* callbackParam,
3041 uint8_t resourceProperties)
3044 OCResource *pointer = NULL;
3045 OCStackResult result = OC_STACK_ERROR;
3047 OIC_LOG(INFO, TAG, "Entering OCCreateResource");
3049 if(myStackMode == OC_CLIENT)
3051 return OC_STACK_INVALID_PARAM;
3053 // Validate parameters
3054 if(!uri || uri[0]=='\0' || strlen(uri)>=MAX_URI_LENGTH )
3056 OIC_LOG(ERROR, TAG, "URI is empty or too long");
3057 return OC_STACK_INVALID_URI;
3059 // Is it presented during resource discovery?
3060 if (!handle || !resourceTypeName || resourceTypeName[0] == '\0' )
3062 OIC_LOG(ERROR, TAG, "Input parameter is NULL");
3063 return OC_STACK_INVALID_PARAM;
3066 if(!resourceInterfaceName || strlen(resourceInterfaceName) == 0)
3068 resourceInterfaceName = OC_RSRVD_INTERFACE_DEFAULT;
3071 // Make sure resourceProperties bitmask has allowed properties specified
3072 if (resourceProperties
3073 > (OC_ACTIVE | OC_DISCOVERABLE | OC_OBSERVABLE | OC_SLOW | OC_SECURE |
3074 OC_EXPLICIT_DISCOVERABLE))
3076 OIC_LOG(ERROR, TAG, "Invalid property");
3077 return OC_STACK_INVALID_PARAM;
3080 // If the headResource is NULL, then no resources have been created...
3081 pointer = headResource;
3084 // At least one resources is in the resource list, so we need to search for
3085 // repeated URLs, which are not allowed. If a repeat is found, exit with an error
3088 if (strncmp(uri, pointer->uri, MAX_URI_LENGTH) == 0)
3090 OIC_LOG_V(ERROR, TAG, "Resource %s already exists", uri);
3091 return OC_STACK_INVALID_PARAM;
3093 pointer = pointer->next;
3096 // Create the pointer and insert it into the resource list
3097 pointer = (OCResource *) OICCalloc(1, sizeof(OCResource));
3100 result = OC_STACK_NO_MEMORY;
3103 pointer->sequenceNum = OC_OFFSET_SEQUENCE_NUMBER;
3105 insertResource(pointer);
3108 pointer->uri = OICStrdup(uri);
3111 result = OC_STACK_NO_MEMORY;
3115 // Set properties. Set OC_ACTIVE
3116 pointer->resourceProperties = (OCResourceProperty) (resourceProperties
3119 // Add the resourcetype to the resource
3120 result = BindResourceTypeToResource(pointer, resourceTypeName);
3121 if (result != OC_STACK_OK)
3123 OIC_LOG(ERROR, TAG, "Error adding resourcetype");
3127 // Add the resourceinterface to the resource
3128 result = BindResourceInterfaceToResource(pointer, resourceInterfaceName);
3129 if (result != OC_STACK_OK)
3131 OIC_LOG(ERROR, TAG, "Error adding resourceinterface");
3135 // If an entity handler has been passed, attach it to the newly created
3136 // resource. Otherwise, set the default entity handler.
3139 pointer->entityHandler = entityHandler;
3140 pointer->entityHandlerCallbackParam = callbackParam;
3144 pointer->entityHandler = defaultResourceEHandler;
3145 pointer->entityHandlerCallbackParam = NULL;
3148 // Initialize a pointer indicating child resources in case of collection
3149 pointer->rsrcChildResourcesHead = NULL;
3152 result = OC_STACK_OK;
3154 #ifdef WITH_PRESENCE
3155 if (presenceResource.handle)
3157 ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
3158 SendPresenceNotification(pointer->rsrcType, OC_PRESENCE_TRIGGER_CREATE);
3162 if (result != OC_STACK_OK)
3164 // Deep delete of resource and other dynamic elements that it contains
3165 deleteResource(pointer);
3170 OCStackResult OCBindResource(
3171 OCResourceHandle collectionHandle, OCResourceHandle resourceHandle)
3173 OCResource *resource = NULL;
3174 OCChildResource *tempChildResource = NULL;
3175 OCChildResource *newChildResource = NULL;
3177 OIC_LOG(INFO, TAG, "Entering OCBindResource");
3179 // Validate parameters
3180 VERIFY_NON_NULL(collectionHandle, ERROR, OC_STACK_ERROR);
3181 VERIFY_NON_NULL(resourceHandle, ERROR, OC_STACK_ERROR);
3182 // Container cannot contain itself
3183 if (collectionHandle == resourceHandle)
3185 OIC_LOG(ERROR, TAG, "Added handle equals collection handle");
3186 return OC_STACK_INVALID_PARAM;
3189 // Use the handle to find the resource in the resource linked list
3190 resource = findResource((OCResource *) collectionHandle);
3193 OIC_LOG(ERROR, TAG, "Collection handle not found");
3194 return OC_STACK_INVALID_PARAM;
3197 // Look for an open slot to add add the child resource.
3198 // If found, add it and return success
3200 tempChildResource = resource->rsrcChildResourcesHead;
3202 while(resource->rsrcChildResourcesHead && tempChildResource->next)
3204 // TODO: what if one of child resource was deregistered without unbinding?
3205 tempChildResource = tempChildResource->next;
3208 // Do memory allocation for child resource
3209 newChildResource = (OCChildResource *) OICCalloc(1, sizeof(OCChildResource));
3210 if(!newChildResource)
3212 OIC_LOG(ERROR, TAG, "Adding new child resource is failed due to memory allocation failure");
3213 return OC_STACK_ERROR;
3216 newChildResource->rsrcResource = (OCResource *) resourceHandle;
3217 newChildResource->next = NULL;
3219 if(!resource->rsrcChildResourcesHead)
3221 resource->rsrcChildResourcesHead = newChildResource;
3224 tempChildResource->next = newChildResource;
3227 OIC_LOG(INFO, TAG, "resource bound");
3229 #ifdef WITH_PRESENCE
3230 if (presenceResource.handle)
3232 ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
3233 SendPresenceNotification(((OCResource *) resourceHandle)->rsrcType,
3234 OC_PRESENCE_TRIGGER_CHANGE);
3241 OCStackResult OCUnBindResource(
3242 OCResourceHandle collectionHandle, OCResourceHandle resourceHandle)
3244 OCResource *resource = NULL;
3245 OCChildResource *tempChildResource = NULL;
3246 OCChildResource *tempLastChildResource = NULL;
3248 OIC_LOG(INFO, TAG, "Entering OCUnBindResource");
3250 // Validate parameters
3251 VERIFY_NON_NULL(collectionHandle, ERROR, OC_STACK_ERROR);
3252 VERIFY_NON_NULL(resourceHandle, ERROR, OC_STACK_ERROR);
3253 // Container cannot contain itself
3254 if (collectionHandle == resourceHandle)
3256 OIC_LOG(ERROR, TAG, "removing handle equals collection handle");
3257 return OC_STACK_INVALID_PARAM;
3260 // Use the handle to find the resource in the resource linked list
3261 resource = findResource((OCResource *) collectionHandle);
3264 OIC_LOG(ERROR, TAG, "Collection handle not found");
3265 return OC_STACK_INVALID_PARAM;
3268 // Look for an open slot to add add the child resource.
3269 // If found, add it and return success
3270 if(!resource->rsrcChildResourcesHead)
3272 OIC_LOG(INFO, TAG, "resource not found in collection");
3274 // Unable to add resourceHandle, so return error
3275 return OC_STACK_ERROR;
3279 tempChildResource = resource->rsrcChildResourcesHead;
3281 while (tempChildResource)
3283 if(tempChildResource->rsrcResource == resourceHandle)
3285 // if resource going to be unbinded is the head one.
3286 if( tempChildResource == resource->rsrcChildResourcesHead )
3288 OCChildResource *temp = resource->rsrcChildResourcesHead->next;
3289 OICFree(resource->rsrcChildResourcesHead);
3290 resource->rsrcChildResourcesHead = temp;
3295 OCChildResource *temp = tempChildResource->next;
3296 OICFree(tempChildResource);
3297 tempLastChildResource->next = temp;
3301 OIC_LOG(INFO, TAG, "resource unbound");
3303 // Send notification when resource is unbounded successfully.
3304 #ifdef WITH_PRESENCE
3305 if (presenceResource.handle)
3307 ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
3308 SendPresenceNotification(((OCResource *) resourceHandle)->rsrcType,
3309 OC_PRESENCE_TRIGGER_CHANGE);
3312 tempChildResource = NULL;
3313 tempLastChildResource = NULL;
3319 tempLastChildResource = tempChildResource;
3320 tempChildResource = tempChildResource->next;
3323 OIC_LOG(INFO, TAG, "resource not found in collection");
3325 tempChildResource = NULL;
3326 tempLastChildResource = NULL;
3328 // Unable to add resourceHandle, so return error
3329 return OC_STACK_ERROR;
3332 // Precondition is that the parameter has been checked to not equal NULL.
3333 static bool ValidateResourceTypeInterface(const char *resourceItemName)
3335 if (resourceItemName[0] < 'a' || resourceItemName[0] > 'z')
3341 while (resourceItemName[index] != '\0')
3343 if (resourceItemName[index] != '.' &&
3344 resourceItemName[index] != '-' &&
3345 (resourceItemName[index] < 'a' || resourceItemName[index] > 'z') &&
3346 (resourceItemName[index] < '0' || resourceItemName[index] > '9'))
3355 OCStackResult BindResourceTypeToResource(OCResource* resource,
3356 const char *resourceTypeName)
3358 OCResourceType *pointer = NULL;
3360 OCStackResult result = OC_STACK_ERROR;
3362 VERIFY_NON_NULL(resourceTypeName, ERROR, OC_STACK_INVALID_PARAM);
3364 if (!ValidateResourceTypeInterface(resourceTypeName))
3366 OIC_LOG(ERROR, TAG, "resource type illegal (see RFC 6690)");
3367 return OC_STACK_INVALID_PARAM;
3370 pointer = (OCResourceType *) OICCalloc(1, sizeof(OCResourceType));
3373 result = OC_STACK_NO_MEMORY;
3377 str = OICStrdup(resourceTypeName);
3380 result = OC_STACK_NO_MEMORY;
3383 pointer->resourcetypename = str;
3385 insertResourceType(resource, pointer);
3386 result = OC_STACK_OK;
3389 if (result != OC_STACK_OK)
3398 OCStackResult BindResourceInterfaceToResource(OCResource* resource,
3399 const char *resourceInterfaceName)
3401 OCResourceInterface *pointer = NULL;
3403 OCStackResult result = OC_STACK_ERROR;
3405 VERIFY_NON_NULL(resourceInterfaceName, ERROR, OC_STACK_INVALID_PARAM);
3407 if (!ValidateResourceTypeInterface(resourceInterfaceName))
3409 OIC_LOG(ERROR, TAG, "resource /interface illegal (see RFC 6690)");
3410 return OC_STACK_INVALID_PARAM;
3413 OIC_LOG_V(INFO, TAG, "Binding %s interface to %s", resourceInterfaceName, resource->uri);
3415 pointer = (OCResourceInterface *) OICCalloc(1, sizeof(OCResourceInterface));
3418 result = OC_STACK_NO_MEMORY;
3422 str = OICStrdup(resourceInterfaceName);
3425 result = OC_STACK_NO_MEMORY;
3428 pointer->name = str;
3430 // Bind the resourceinterface to the resource
3431 insertResourceInterface(resource, pointer);
3433 result = OC_STACK_OK;
3436 if (result != OC_STACK_OK)
3445 OCStackResult OCBindResourceTypeToResource(OCResourceHandle handle,
3446 const char *resourceTypeName)
3449 OCStackResult result = OC_STACK_ERROR;
3450 OCResource *resource = NULL;
3452 resource = findResource((OCResource *) handle);
3455 OIC_LOG(ERROR, TAG, "Resource not found");
3456 return OC_STACK_ERROR;
3459 result = BindResourceTypeToResource(resource, resourceTypeName);
3461 #ifdef WITH_PRESENCE
3462 if(presenceResource.handle)
3464 ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
3465 SendPresenceNotification(resource->rsrcType, OC_PRESENCE_TRIGGER_CHANGE);
3472 OCStackResult OCBindResourceInterfaceToResource(OCResourceHandle handle,
3473 const char *resourceInterfaceName)
3476 OCStackResult result = OC_STACK_ERROR;
3477 OCResource *resource = NULL;
3479 resource = findResource((OCResource *) handle);
3482 OIC_LOG(ERROR, TAG, "Resource not found");
3483 return OC_STACK_ERROR;
3486 result = BindResourceInterfaceToResource(resource, resourceInterfaceName);
3488 #ifdef WITH_PRESENCE
3489 if (presenceResource.handle)
3491 ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
3492 SendPresenceNotification(resource->rsrcType, OC_PRESENCE_TRIGGER_CHANGE);
3499 OCStackResult OCGetNumberOfResources(uint8_t *numResources)
3501 OCResource *pointer = headResource;
3503 VERIFY_NON_NULL(numResources, ERROR, OC_STACK_INVALID_PARAM);
3507 *numResources = *numResources + 1;
3508 pointer = pointer->next;
3513 OCResourceHandle OCGetResourceHandle(uint8_t index)
3515 OCResource *pointer = headResource;
3517 for( uint8_t i = 0; i < index && pointer; ++i)
3519 pointer = pointer->next;
3521 return (OCResourceHandle) pointer;
3524 OCStackResult OCDeleteResource(OCResourceHandle handle)
3528 OIC_LOG(ERROR, TAG, "Invalid handle for deletion");
3529 return OC_STACK_INVALID_PARAM;
3532 OCResource *resource = findResource((OCResource *) handle);
3533 if (resource == NULL)
3535 OIC_LOG(ERROR, TAG, "Resource not found");
3536 return OC_STACK_NO_RESOURCE;
3539 if (deleteResource((OCResource *) handle) != OC_STACK_OK)
3541 OIC_LOG(ERROR, TAG, "Error deleting resource");
3542 return OC_STACK_ERROR;
3548 const char *OCGetResourceUri(OCResourceHandle handle)
3550 OCResource *resource = NULL;
3552 resource = findResource((OCResource *) handle);
3555 return resource->uri;
3557 return (const char *) NULL;
3560 OCResourceProperty OCGetResourceProperties(OCResourceHandle handle)
3562 OCResource *resource = NULL;
3564 resource = findResource((OCResource *) handle);
3567 return resource->resourceProperties;
3569 return (OCResourceProperty)-1;
3572 OCStackResult OCGetNumberOfResourceTypes(OCResourceHandle handle,
3573 uint8_t *numResourceTypes)
3575 OCResource *resource = NULL;
3576 OCResourceType *pointer = NULL;
3578 VERIFY_NON_NULL(numResourceTypes, ERROR, OC_STACK_INVALID_PARAM);
3579 VERIFY_NON_NULL(handle, ERROR, OC_STACK_INVALID_PARAM);
3581 *numResourceTypes = 0;
3583 resource = findResource((OCResource *) handle);
3586 pointer = resource->rsrcType;
3589 *numResourceTypes = *numResourceTypes + 1;
3590 pointer = pointer->next;
3596 const char *OCGetResourceTypeName(OCResourceHandle handle, uint8_t index)
3598 OCResourceType *resourceType = NULL;
3600 resourceType = findResourceTypeAtIndex(handle, index);
3603 return resourceType->resourcetypename;
3605 return (const char *) NULL;
3608 OCStackResult OCGetNumberOfResourceInterfaces(OCResourceHandle handle,
3609 uint8_t *numResourceInterfaces)
3611 OCResourceInterface *pointer = NULL;
3612 OCResource *resource = NULL;
3614 VERIFY_NON_NULL(handle, ERROR, OC_STACK_INVALID_PARAM);
3615 VERIFY_NON_NULL(numResourceInterfaces, ERROR, OC_STACK_INVALID_PARAM);
3617 *numResourceInterfaces = 0;
3618 resource = findResource((OCResource *) handle);
3621 pointer = resource->rsrcInterface;
3624 *numResourceInterfaces = *numResourceInterfaces + 1;
3625 pointer = pointer->next;
3631 const char *OCGetResourceInterfaceName(OCResourceHandle handle, uint8_t index)
3633 OCResourceInterface *resourceInterface = NULL;
3635 resourceInterface = findResourceInterfaceAtIndex(handle, index);
3636 if (resourceInterface)
3638 return resourceInterface->name;
3640 return (const char *) NULL;
3643 OCResourceHandle OCGetResourceHandleFromCollection(OCResourceHandle collectionHandle,
3646 OCResource *resource = NULL;
3647 OCChildResource *tempChildResource = NULL;
3650 resource = findResource((OCResource *) collectionHandle);
3656 tempChildResource = resource->rsrcChildResourcesHead;
3658 while(tempChildResource)
3662 return tempChildResource->rsrcResource;
3665 tempChildResource = tempChildResource->next;
3668 // In this case, the number of resource handles in the collection exceeds the index
3669 tempChildResource = NULL;
3673 OCStackResult OCBindResourceHandler(OCResourceHandle handle,
3674 OCEntityHandler entityHandler,
3675 void* callbackParam)
3677 OCResource *resource = NULL;
3679 // Validate parameters
3680 VERIFY_NON_NULL(handle, ERROR, OC_STACK_INVALID_PARAM);
3682 // Use the handle to find the resource in the resource linked list
3683 resource = findResource((OCResource *)handle);
3686 OIC_LOG(ERROR, TAG, "Resource not found");
3687 return OC_STACK_ERROR;
3691 resource->entityHandler = entityHandler;
3692 resource->entityHandlerCallbackParam = callbackParam;
3694 #ifdef WITH_PRESENCE
3695 if (presenceResource.handle)
3697 ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
3698 SendPresenceNotification(resource->rsrcType, OC_PRESENCE_TRIGGER_CHANGE);
3705 OCEntityHandler OCGetResourceHandler(OCResourceHandle handle)
3707 OCResource *resource = NULL;
3709 resource = findResource((OCResource *)handle);
3712 OIC_LOG(ERROR, TAG, "Resource not found");
3717 return resource->entityHandler;
3720 void incrementSequenceNumber(OCResource * resPtr)
3722 // Increment the sequence number
3723 resPtr->sequenceNum += 1;
3724 if (resPtr->sequenceNum == MAX_SEQUENCE_NUMBER)
3726 resPtr->sequenceNum = OC_OFFSET_SEQUENCE_NUMBER+1;
3731 #ifdef WITH_PRESENCE
3732 OCStackResult SendPresenceNotification(OCResourceType *resourceType,
3733 OCPresenceTrigger trigger)
3735 OCResource *resPtr = NULL;
3736 OCStackResult result = OC_STACK_ERROR;
3737 OCMethod method = OC_REST_PRESENCE;
3738 uint32_t maxAge = 0;
3739 resPtr = findResource((OCResource *) presenceResource.handle);
3742 return OC_STACK_NO_RESOURCE;
3745 if((((OCResource *) presenceResource.handle)->resourceProperties) & OC_ACTIVE)
3747 maxAge = presenceResource.presenceTTL;
3749 result = SendAllObserverNotification(method, resPtr, maxAge,
3750 trigger, resourceType, OC_LOW_QOS);
3756 OCStackResult SendStopNotification()
3758 OCResource *resPtr = NULL;
3759 OCStackResult result = OC_STACK_ERROR;
3760 OCMethod method = OC_REST_PRESENCE;
3761 resPtr = findResource((OCResource *) presenceResource.handle);
3764 return OC_STACK_NO_RESOURCE;
3767 // maxAge is 0. ResourceType is NULL.
3768 result = SendAllObserverNotification(method, resPtr, 0, OC_PRESENCE_TRIGGER_DELETE,
3774 #endif // WITH_PRESENCE
3775 OCStackResult OCNotifyAllObservers(OCResourceHandle handle, OCQualityOfService qos)
3777 OCResource *resPtr = NULL;
3778 OCStackResult result = OC_STACK_ERROR;
3779 OCMethod method = OC_REST_NOMETHOD;
3780 uint32_t maxAge = 0;
3782 OIC_LOG(INFO, TAG, "Notifying all observers");
3783 #ifdef WITH_PRESENCE
3784 if(handle == presenceResource.handle)
3788 #endif // WITH_PRESENCE
3789 VERIFY_NON_NULL(handle, ERROR, OC_STACK_ERROR);
3791 // Verify that the resource exists
3792 resPtr = findResource ((OCResource *) handle);
3795 return OC_STACK_NO_RESOURCE;
3799 //only increment in the case of regular observing (not presence)
3800 incrementSequenceNumber(resPtr);
3801 method = OC_REST_OBSERVE;
3802 maxAge = MAX_OBSERVE_AGE;
3803 #ifdef WITH_PRESENCE
3804 result = SendAllObserverNotification (method, resPtr, maxAge,
3805 OC_PRESENCE_TRIGGER_DELETE, NULL, qos);
3807 result = SendAllObserverNotification (method, resPtr, maxAge, qos);
3814 OCNotifyListOfObservers (OCResourceHandle handle,
3815 OCObservationId *obsIdList,
3816 uint8_t numberOfIds,
3817 const OCRepPayload *payload,
3818 OCQualityOfService qos)
3820 OIC_LOG(INFO, TAG, "Entering OCNotifyListOfObservers");
3822 OCResource *resPtr = NULL;
3823 //TODO: we should allow the server to define this
3824 uint32_t maxAge = MAX_OBSERVE_AGE;
3826 VERIFY_NON_NULL(handle, ERROR, OC_STACK_ERROR);
3827 VERIFY_NON_NULL(obsIdList, ERROR, OC_STACK_ERROR);
3828 VERIFY_NON_NULL(payload, ERROR, OC_STACK_ERROR);
3830 resPtr = findResource ((OCResource *) handle);
3831 if (NULL == resPtr || myStackMode == OC_CLIENT)
3833 return OC_STACK_NO_RESOURCE;
3837 incrementSequenceNumber(resPtr);
3839 return (SendListObserverNotification(resPtr, obsIdList, numberOfIds,
3840 payload, maxAge, qos));
3843 OCStackResult OCDoResponse(OCEntityHandlerResponse *ehResponse)
3845 OCStackResult result = OC_STACK_ERROR;
3846 OCServerRequest *serverRequest = NULL;
3848 OIC_LOG(INFO, TAG, "Entering OCDoResponse");
3850 // Validate input parameters
3851 VERIFY_NON_NULL(ehResponse, ERROR, OC_STACK_INVALID_PARAM);
3852 VERIFY_NON_NULL(ehResponse->requestHandle, ERROR, OC_STACK_INVALID_PARAM);
3855 // Get pointer to request info
3856 serverRequest = GetServerRequestUsingHandle((OCServerRequest *)ehResponse->requestHandle);
3859 // response handler in ocserverrequest.c. Usually HandleSingleResponse.
3860 result = serverRequest->ehResponseHandler(ehResponse);
3866 //-----------------------------------------------------------------------------
3867 // Private internal function definitions
3868 //-----------------------------------------------------------------------------
3869 static OCDoHandle GenerateInvocationHandle()
3871 OCDoHandle handle = NULL;
3872 // Generate token here, it will be deleted when the transaction is deleted
3873 handle = (OCDoHandle) OICMalloc(sizeof(uint8_t[CA_MAX_TOKEN_LEN]));
3876 OCFillRandomMem((uint8_t*)handle, sizeof(uint8_t[CA_MAX_TOKEN_LEN]));
3882 #ifdef WITH_PRESENCE
3883 OCStackResult OCChangeResourceProperty(OCResourceProperty * inputProperty,
3884 OCResourceProperty resourceProperties, uint8_t enable)
3888 return OC_STACK_INVALID_PARAM;
3890 if (resourceProperties
3891 > (OC_ACTIVE | OC_DISCOVERABLE | OC_OBSERVABLE | OC_SLOW))
3893 OIC_LOG(ERROR, TAG, "Invalid property");
3894 return OC_STACK_INVALID_PARAM;
3898 *inputProperty = (OCResourceProperty) (*inputProperty & ~(resourceProperties));
3902 *inputProperty = (OCResourceProperty) (*inputProperty | resourceProperties);
3908 OCStackResult initResources()
3910 OCStackResult result = OC_STACK_OK;
3912 headResource = NULL;
3913 tailResource = NULL;
3914 // Init Virtual Resources
3915 #ifdef WITH_PRESENCE
3916 presenceResource.presenceTTL = OC_DEFAULT_PRESENCE_TTL_SECONDS;
3918 result = OCCreateResource(&presenceResource.handle,
3919 OC_RSRVD_RESOURCE_TYPE_PRESENCE,
3921 OC_RSRVD_PRESENCE_URI,
3925 //make resource inactive
3926 result = OCChangeResourceProperty(
3927 &(((OCResource *) presenceResource.handle)->resourceProperties),
3930 #ifndef WITH_ARDUINO
3931 if (result == OC_STACK_OK)
3933 result = SRMInitSecureResources();
3937 if(result == OC_STACK_OK)
3939 result = OCCreateResource(&deviceResource,
3940 OC_RSRVD_RESOURCE_TYPE_DEVICE,
3941 OC_RSRVD_INTERFACE_DEFAULT,
3942 OC_RSRVD_DEVICE_URI,
3946 if(result == OC_STACK_OK)
3948 result = BindResourceInterfaceToResource((OCResource *)deviceResource,
3949 OC_RSRVD_INTERFACE_READ);
3953 if(result == OC_STACK_OK)
3955 result = OCCreateResource(&platformResource,
3956 OC_RSRVD_RESOURCE_TYPE_PLATFORM,
3957 OC_RSRVD_INTERFACE_DEFAULT,
3958 OC_RSRVD_PLATFORM_URI,
3962 if(result == OC_STACK_OK)
3964 result = BindResourceInterfaceToResource((OCResource *)platformResource,
3965 OC_RSRVD_INTERFACE_READ);
3972 void insertResource(OCResource *resource)
3976 headResource = resource;
3977 tailResource = resource;
3981 tailResource->next = resource;
3982 tailResource = resource;
3984 resource->next = NULL;
3987 OCResource *findResource(OCResource *resource)
3989 OCResource *pointer = headResource;
3993 if (pointer == resource)
3997 pointer = pointer->next;
4002 void deleteAllResources()
4004 OCResource *pointer = headResource;
4005 OCResource *temp = NULL;
4009 temp = pointer->next;
4010 #ifdef WITH_PRESENCE
4011 if (pointer != (OCResource *) presenceResource.handle)
4013 #endif // WITH_PRESENCE
4014 deleteResource(pointer);
4015 #ifdef WITH_PRESENCE
4017 #endif // WITH_PRESENCE
4021 SRMDeInitSecureResources();
4023 #ifdef WITH_PRESENCE
4024 // Ensure that the last resource to be deleted is the presence resource. This allows for all
4025 // presence notification attributed to their deletion to be processed.
4026 deleteResource((OCResource *) presenceResource.handle);
4027 #endif // WITH_PRESENCE
4030 OCStackResult deleteResource(OCResource *resource)
4032 OCResource *prev = NULL;
4033 OCResource *temp = NULL;
4036 OIC_LOG(DEBUG,TAG,"resource is NULL");
4037 return OC_STACK_INVALID_PARAM;
4040 OIC_LOG_V (INFO, TAG, "Deleting resource %s", resource->uri);
4042 temp = headResource;
4045 if (temp == resource)
4047 // Invalidate all Resource Properties.
4048 resource->resourceProperties = (OCResourceProperty) 0;
4049 #ifdef WITH_PRESENCE
4050 if(resource != (OCResource *) presenceResource.handle)
4052 #endif // WITH_PRESENCE
4053 OCNotifyAllObservers((OCResourceHandle)resource, OC_HIGH_QOS);
4054 #ifdef WITH_PRESENCE
4057 if(presenceResource.handle)
4059 ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
4060 SendPresenceNotification(resource->rsrcType, OC_PRESENCE_TRIGGER_DELETE);
4063 // Only resource in list.
4064 if (temp == headResource && temp == tailResource)
4066 headResource = NULL;
4067 tailResource = NULL;
4070 else if (temp == headResource)
4072 headResource = temp->next;
4075 else if (temp == tailResource)
4077 tailResource = prev;
4078 tailResource->next = NULL;
4082 prev->next = temp->next;
4085 deleteResourceElements(temp);
4096 return OC_STACK_ERROR;
4099 void deleteResourceElements(OCResource *resource)
4106 OICFree(resource->uri);
4107 deleteResourceType(resource->rsrcType);
4108 deleteResourceInterface(resource->rsrcInterface);
4111 void deleteResourceType(OCResourceType *resourceType)
4113 OCResourceType *pointer = resourceType;
4114 OCResourceType *next = NULL;
4118 next = pointer->next;
4119 OICFree(pointer->resourcetypename);
4125 void deleteResourceInterface(OCResourceInterface *resourceInterface)
4127 OCResourceInterface *pointer = resourceInterface;
4128 OCResourceInterface *next = NULL;
4132 next = pointer->next;
4133 OICFree(pointer->name);
4139 void insertResourceType(OCResource *resource, OCResourceType *resourceType)
4141 OCResourceType *pointer = NULL;
4142 OCResourceType *previous = NULL;
4143 if (!resource || !resourceType)
4147 // resource type list is empty.
4148 else if (!resource->rsrcType)
4150 resource->rsrcType = resourceType;
4154 pointer = resource->rsrcType;
4158 if (!strcmp(resourceType->resourcetypename, pointer->resourcetypename))
4160 OIC_LOG_V(INFO, TAG, "Type %s already exists", resourceType->resourcetypename);
4161 OICFree(resourceType->resourcetypename);
4162 OICFree(resourceType);
4166 pointer = pointer->next;
4168 previous->next = resourceType;
4170 resourceType->next = NULL;
4172 OIC_LOG_V(INFO, TAG, "Added type %s to %s", resourceType->resourcetypename, resource->uri);
4175 OCResourceType *findResourceTypeAtIndex(OCResourceHandle handle, uint8_t index)
4177 OCResource *resource = NULL;
4178 OCResourceType *pointer = NULL;
4180 // Find the specified resource
4181 resource = findResource((OCResource *) handle);
4187 // Make sure a resource has a resourcetype
4188 if (!resource->rsrcType)
4193 // Iterate through the list
4194 pointer = resource->rsrcType;
4195 for(uint8_t i = 0; i< index && pointer; ++i)
4197 pointer = pointer->next;
4202 OCResourceType *findResourceType(OCResourceType * resourceTypeList, const char * resourceTypeName)
4204 if(resourceTypeList && resourceTypeName)
4206 OCResourceType * rtPointer = resourceTypeList;
4207 while(resourceTypeName && rtPointer)
4209 if(rtPointer->resourcetypename &&
4210 strcmp(resourceTypeName, (const char *)
4211 (rtPointer->resourcetypename)) == 0)
4215 rtPointer = rtPointer->next;
4223 * Insert a new interface into interface linked list only if not already present.
4224 * If alredy present, 2nd arg is free'd.
4225 * Default interface will always be first if present.
4227 void insertResourceInterface(OCResource *resource, OCResourceInterface *newInterface)
4229 OCResourceInterface *pointer = NULL;
4230 OCResourceInterface *previous = NULL;
4232 newInterface->next = NULL;
4234 OCResourceInterface **firstInterface = &(resource->rsrcInterface);
4236 if (!*firstInterface)
4238 *firstInterface = newInterface;
4240 else if (strcmp(newInterface->name, OC_RSRVD_INTERFACE_DEFAULT) == 0)
4242 if (strcmp((*firstInterface)->name, OC_RSRVD_INTERFACE_DEFAULT) == 0)
4244 OICFree(newInterface->name);
4245 OICFree(newInterface);
4250 newInterface->next = *firstInterface;
4251 *firstInterface = newInterface;
4256 pointer = *firstInterface;
4259 if (strcmp(newInterface->name, pointer->name) == 0)
4261 OICFree(newInterface->name);
4262 OICFree(newInterface);
4266 pointer = pointer->next;
4268 previous->next = newInterface;
4272 OCResourceInterface *findResourceInterfaceAtIndex(OCResourceHandle handle,
4275 OCResource *resource = NULL;
4276 OCResourceInterface *pointer = NULL;
4278 // Find the specified resource
4279 resource = findResource((OCResource *) handle);
4285 // Make sure a resource has a resourceinterface
4286 if (!resource->rsrcInterface)
4291 // Iterate through the list
4292 pointer = resource->rsrcInterface;
4294 for (uint8_t i = 0; i < index && pointer; ++i)
4296 pointer = pointer->next;
4302 * This function splits the uri using the '?' delimiter.
4303 * "uriWithoutQuery" is the block of characters between the beginning
4304 * till the delimiter or '\0' which ever comes first.
4305 * "query" is whatever is to the right of the delimiter if present.
4306 * No delimiter sets the query to NULL.
4307 * If either are present, they will be malloc'ed into the params 2, 3.
4308 * The first param, *uri is left untouched.
4310 * NOTE: This function does not account for whitespace at the end of the uri NOR
4311 * malformed uri's with '??'. Whitespace at the end will be assumed to be
4312 * part of the query.
4314 OCStackResult getQueryFromUri(const char * uri, char** query, char ** uriWithoutQuery)
4318 return OC_STACK_INVALID_URI;
4320 if(!query || !uriWithoutQuery)
4322 return OC_STACK_INVALID_PARAM;
4326 *uriWithoutQuery = NULL;
4328 size_t uriWithoutQueryLen = 0;
4329 size_t queryLen = 0;
4330 size_t uriLen = strlen(uri);
4332 char *pointerToDelimiter = strstr(uri, "?");
4334 uriWithoutQueryLen = pointerToDelimiter == NULL ? uriLen : (size_t)(pointerToDelimiter - uri);
4335 queryLen = pointerToDelimiter == NULL ? 0 : uriLen - uriWithoutQueryLen - 1;
4337 if (uriWithoutQueryLen)
4339 *uriWithoutQuery = (char *) OICCalloc(uriWithoutQueryLen + 1, 1);
4340 if (!*uriWithoutQuery)
4344 OICStrcpy(*uriWithoutQuery, uriWithoutQueryLen +1, uri);
4348 *query = (char *) OICCalloc(queryLen + 1, 1);
4351 OICFree(*uriWithoutQuery);
4352 *uriWithoutQuery = NULL;
4355 OICStrcpy(*query, queryLen + 1, pointerToDelimiter + 1);
4361 return OC_STACK_NO_MEMORY;
4364 const OicUuid_t* OCGetServerInstanceID(void)
4366 static bool generated = false;
4367 static OicUuid_t sid;
4373 if (GetDoxmDeviceID(&sid) != OC_STACK_OK)
4375 OIC_LOG(FATAL, TAG, "Generate UUID for Server Instance failed!");
4382 const char* OCGetServerInstanceIDString(void)
4384 static bool generated = false;
4385 static char sidStr[UUID_STRING_SIZE];
4392 const OicUuid_t* sid = OCGetServerInstanceID();
4394 if(OCConvertUuidToString(sid->id, sidStr) != RAND_UUID_OK)
4396 OIC_LOG(FATAL, TAG, "Generate UUID String for Server Instance failed!");
4404 CAResult_t OCSelectNetwork()
4406 CAResult_t retResult = CA_STATUS_FAILED;
4407 CAResult_t caResult = CA_STATUS_OK;
4409 CATransportAdapter_t connTypes[] = {
4411 CA_ADAPTER_RFCOMM_BTEDR,
4412 CA_ADAPTER_GATT_BTLE,
4415 ,CA_ADAPTER_REMOTE_ACCESS
4422 int numConnTypes = sizeof(connTypes)/sizeof(connTypes[0]);
4424 for(int i = 0; i<numConnTypes; i++)
4426 // Ignore CA_NOT_SUPPORTED error. The CA Layer may have not compiled in the interface.
4427 if(caResult == CA_STATUS_OK || caResult == CA_NOT_SUPPORTED)
4429 caResult = CASelectNetwork(connTypes[i]);
4430 if(caResult == CA_STATUS_OK)
4432 retResult = CA_STATUS_OK;
4437 if(retResult != CA_STATUS_OK)
4439 return caResult; // Returns error of appropriate transport that failed fatally.
4445 OCStackResult CAResultToOCResult(CAResult_t caResult)
4451 case CA_STATUS_INVALID_PARAM:
4452 return OC_STACK_INVALID_PARAM;
4453 case CA_ADAPTER_NOT_ENABLED:
4454 return OC_STACK_ADAPTER_NOT_ENABLED;
4455 case CA_SERVER_STARTED_ALREADY:
4457 case CA_SERVER_NOT_STARTED:
4458 return OC_STACK_ERROR;
4459 case CA_DESTINATION_NOT_REACHABLE:
4460 return OC_STACK_COMM_ERROR;
4461 case CA_SOCKET_OPERATION_FAILED:
4462 return OC_STACK_COMM_ERROR;
4463 case CA_SEND_FAILED:
4464 return OC_STACK_COMM_ERROR;
4465 case CA_RECEIVE_FAILED:
4466 return OC_STACK_COMM_ERROR;
4467 case CA_MEMORY_ALLOC_FAILED:
4468 return OC_STACK_NO_MEMORY;
4469 case CA_REQUEST_TIMEOUT:
4470 return OC_STACK_TIMEOUT;
4471 case CA_DESTINATION_DISCONNECTED:
4472 return OC_STACK_COMM_ERROR;
4473 case CA_STATUS_FAILED:
4474 return OC_STACK_ERROR;
4475 case CA_NOT_SUPPORTED:
4476 return OC_STACK_NOTIMPL;
4478 return OC_STACK_ERROR;