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"
71 //#ifdef DIRECT_PAIRING
72 #include "directpairing.h"
80 #include "coap_time.h"
85 #include <arpa/inet.h>
89 #define UINT32_MAX (0xFFFFFFFFUL)
92 //-----------------------------------------------------------------------------
94 //-----------------------------------------------------------------------------
97 OC_STACK_UNINITIALIZED = 0,
99 OC_STACK_UNINIT_IN_PROGRESS
105 OC_PRESENCE_UNINITIALIZED = 0,
106 OC_PRESENCE_INITIALIZED
110 //-----------------------------------------------------------------------------
112 //-----------------------------------------------------------------------------
113 static OCStackState stackState = OC_STACK_UNINITIALIZED;
115 OCResource *headResource = NULL;
116 static OCResource *tailResource = NULL;
117 static OCResourceHandle platformResource = {0};
118 static OCResourceHandle deviceResource = {0};
120 static OCPresenceState presenceState = OC_PRESENCE_UNINITIALIZED;
121 static PresenceResource presenceResource;
122 static uint8_t PresenceTimeOutSize = 0;
123 static uint32_t PresenceTimeOut[] = {50, 75, 85, 95, 100};
126 static OCMode myStackMode;
128 //TODO: revisit this design
129 static bool gRASetInfo = false;
131 OCDeviceEntityHandler defaultDeviceHandler;
132 void* defaultDeviceHandlerCallbackParameter = NULL;
133 static const char COAP_TCP[] = "coap+tcp:";
135 //#ifdef DIRECT_PAIRING
136 OCDirectPairingCB gDirectpairingCallback = NULL;
139 //-----------------------------------------------------------------------------
141 //-----------------------------------------------------------------------------
142 #define TAG "OIC_RI_STACK"
143 #define VERIFY_SUCCESS(op, successCode) { if ((op) != (successCode)) \
144 {OIC_LOG_V(FATAL, TAG, "%s failed!!", #op); goto exit;} }
145 #define VERIFY_NON_NULL(arg, logLevel, retVal) { if (!(arg)) { OIC_LOG((logLevel), \
146 TAG, #arg " is NULL"); return (retVal); } }
147 #define VERIFY_NON_NULL_NR(arg, logLevel) { if (!(arg)) { OIC_LOG((logLevel), \
148 TAG, #arg " is NULL"); return; } }
149 #define VERIFY_NON_NULL_V(arg) { if (!arg) {OIC_LOG(FATAL, TAG, #arg " is NULL");\
152 //TODO: we should allow the server to define this
153 #define MAX_OBSERVE_AGE (0x2FFFFUL)
155 #define MILLISECONDS_PER_SECOND (1000)
157 //-----------------------------------------------------------------------------
158 // Private internal function prototypes
159 //-----------------------------------------------------------------------------
162 * Generate handle of OCDoResource invocation for callback management.
164 * @return Generated OCDoResource handle.
166 static OCDoHandle GenerateInvocationHandle();
169 * Initialize resource data structures, variables, etc.
171 * @return ::OC_STACK_OK on success, some other value upon failure.
173 static OCStackResult initResources();
176 * Add a resource to the end of the linked list of resources.
178 * @param resource Resource to be added
180 static void insertResource(OCResource *resource);
183 * Find a resource in the linked list of resources.
185 * @param resource Resource to be found.
186 * @return Pointer to resource that was found in the linked list or NULL if the resource was not
189 static OCResource *findResource(OCResource *resource);
192 * Insert a resource type into a resource's resource type linked list.
193 * If resource type already exists, it will not be inserted and the
194 * resourceType will be free'd.
195 * resourceType->next should be null to avoid memory leaks.
196 * Function returns silently for null args.
198 * @param resource Resource where resource type is to be inserted.
199 * @param resourceType Resource type to be inserted.
201 static void insertResourceType(OCResource *resource,
202 OCResourceType *resourceType);
205 * Get a resource type at the specified index within a resource.
207 * @param handle Handle of resource.
208 * @param index Index of resource type.
210 * @return Pointer to resource type if found, NULL otherwise.
212 static OCResourceType *findResourceTypeAtIndex(OCResourceHandle handle,
216 * Insert a resource interface into a resource's resource interface linked list.
217 * If resource interface already exists, it will not be inserted and the
218 * resourceInterface will be free'd.
219 * resourceInterface->next should be null to avoid memory leaks.
221 * @param resource Resource where resource interface is to be inserted.
222 * @param resourceInterface Resource interface to be inserted.
224 static void insertResourceInterface(OCResource *resource,
225 OCResourceInterface *resourceInterface);
228 * Get a resource interface at the specified index within a resource.
230 * @param handle Handle of resource.
231 * @param index Index of resource interface.
233 * @return Pointer to resource interface if found, NULL otherwise.
235 static OCResourceInterface *findResourceInterfaceAtIndex(
236 OCResourceHandle handle, uint8_t index);
239 * Delete all of the dynamically allocated elements that were created for the resource type.
241 * @param resourceType Specified resource type.
243 static void deleteResourceType(OCResourceType *resourceType);
246 * Delete all of the dynamically allocated elements that were created for the resource interface.
248 * @param resourceInterface Specified resource interface.
250 static void deleteResourceInterface(OCResourceInterface *resourceInterface);
253 * Delete all of the dynamically allocated elements that were created for the resource.
255 * @param resource Specified resource.
257 static void deleteResourceElements(OCResource *resource);
260 * Delete resource specified by handle. Deletes resource and all resourcetype and resourceinterface
263 * @param handle Handle of resource to be deleted.
265 * @return ::OC_STACK_OK on success, some other value upon failure.
267 static OCStackResult deleteResource(OCResource *resource);
270 * Delete all of the resources in the resource list.
272 static void deleteAllResources();
275 * Increment resource sequence number. Handles rollover.
277 * @param resPtr Pointer to resource.
279 static void incrementSequenceNumber(OCResource * resPtr);
282 * Verify the lengths of the URI and the query separately.
284 * @param inputUri Input URI and query.
285 * @param uriLen The length of the initial URI with query.
286 * @return ::OC_STACK_OK on success, some other value upon failure.
288 static OCStackResult verifyUriQueryLength(const char * inputUri,
292 * Attempts to initialize every network interface that the CA Layer might have compiled in.
294 * Note: At least one interface must succeed to initialize. If all calls to @ref CASelectNetwork
295 * return something other than @ref CA_STATUS_OK, then this function fails.
297 * @return ::CA_STATUS_OK on success, some other value upon failure.
299 static CAResult_t OCSelectNetwork();
302 * Get the CoAP ticks after the specified number of milli-seconds.
304 * @param afterMilliSeconds Milli-seconds.
308 static uint32_t GetTicks(uint32_t afterMilliSeconds);
311 * Convert CAResponseResult_t to OCStackResult.
313 * @param caCode CAResponseResult_t code.
314 * @return ::OC_STACK_OK on success, some other value upon failure.
316 static OCStackResult CAToOCStackResult(CAResponseResult_t caCode);
319 * Convert OCStackResult to CAResponseResult_t.
321 * @param caCode OCStackResult code.
322 * @param method OCMethod method the return code replies to.
323 * @return ::CA_CONTENT on OK, some other value upon failure.
325 static CAResponseResult_t OCToCAStackResult(OCStackResult ocCode, OCMethod method);
328 * Convert OCTransportFlags_t to CATransportModifiers_t.
330 * @param ocConType OCTransportFlags_t input.
331 * @return CATransportFlags
333 static CATransportFlags_t OCToCATransportFlags(OCTransportFlags ocConType);
336 * Convert CATransportFlags_t to OCTransportModifiers_t.
338 * @param caConType CATransportFlags_t input.
339 * @return OCTransportFlags
341 static OCTransportFlags CAToOCTransportFlags(CATransportFlags_t caConType);
344 * Handle response from presence request.
346 * @param endPoint CA remote endpoint.
347 * @param responseInfo CA response info.
348 * @return ::OC_STACK_OK on success, some other value upon failure.
350 static OCStackResult HandlePresenceResponse(const CAEndpoint_t *endPoint,
351 const CAResponseInfo_t *responseInfo);
354 * This function will be called back by CA layer when a response is received.
356 * @param endPoint CA remote endpoint.
357 * @param responseInfo CA response info.
359 static void HandleCAResponses(const CAEndpoint_t* endPoint,
360 const CAResponseInfo_t* responseInfo);
363 * This function will be called back by CA layer when a request is received.
365 * @param endPoint CA remote endpoint.
366 * @param requestInfo CA request info.
368 static void HandleCARequests(const CAEndpoint_t* endPoint,
369 const CARequestInfo_t* requestInfo);
372 * Extract query from a URI.
374 * @param uri Full URI with query.
375 * @param query Pointer to string that will contain query.
376 * @param newURI Pointer to string that will contain URI.
377 * @return ::OC_STACK_OK on success, some other value upon failure.
379 static OCStackResult getQueryFromUri(const char * uri, char** resourceType, char ** newURI);
382 * Finds a resource type in an OCResourceType link-list.
384 * @param resourceTypeList The link-list to be searched through.
385 * @param resourceTypeName The key to search for.
387 * @return Resource type that matches the key (ie. resourceTypeName) or
388 * NULL if there is either an invalid parameter or this function was unable to find the key.
390 static OCResourceType *findResourceType(OCResourceType * resourceTypeList,
391 const char * resourceTypeName);
394 * Reset presence TTL for a ClientCB struct. ttlLevel will be set to 0.
395 * TTL will be set to maxAge.
397 * @param cbNode Callback Node for which presence ttl is to be reset.
398 * @param maxAge New value of ttl in seconds.
400 * @return ::OC_STACK_OK on success, some other value upon failure.
402 static OCStackResult ResetPresenceTTL(ClientCB *cbNode, uint32_t maxAgeSeconds);
405 * Ensure the accept header option is set appropriatly before sending the requests and routing
406 * header option is updated with destination.
408 * @param object CA remote endpoint.
409 * @param requestInfo CA request info.
411 * @return ::OC_STACK_OK on success, some other value upon failure.
413 static OCStackResult OCSendRequest(const CAEndpoint_t *object, CARequestInfo_t *requestInfo);
415 //-----------------------------------------------------------------------------
416 // Internal functions
417 //-----------------------------------------------------------------------------
419 uint32_t GetTicks(uint32_t afterMilliSeconds)
424 // Guard against overflow of uint32_t
425 if (afterMilliSeconds <= ((UINT32_MAX - (uint32_t)now) * MILLISECONDS_PER_SECOND) /
426 COAP_TICKS_PER_SECOND)
428 return now + (afterMilliSeconds * COAP_TICKS_PER_SECOND)/MILLISECONDS_PER_SECOND;
436 void CopyEndpointToDevAddr(const CAEndpoint_t *in, OCDevAddr *out)
438 VERIFY_NON_NULL_NR(in, FATAL);
439 VERIFY_NON_NULL_NR(out, FATAL);
441 out->adapter = (OCTransportAdapter)in->adapter;
442 out->flags = CAToOCTransportFlags(in->flags);
443 OICStrcpy(out->addr, sizeof(out->addr), in->addr);
444 out->port = in->port;
445 out->ifindex = in->ifindex;
446 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
447 memcpy(out->routeData, in->routeData, sizeof(out->routeData));
451 void CopyDevAddrToEndpoint(const OCDevAddr *in, CAEndpoint_t *out)
453 VERIFY_NON_NULL_NR(in, FATAL);
454 VERIFY_NON_NULL_NR(out, FATAL);
456 out->adapter = (CATransportAdapter_t)in->adapter;
457 out->flags = OCToCATransportFlags(in->flags);
458 OICStrcpy(out->addr, sizeof(out->addr), in->addr);
459 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
460 memcpy(out->routeData, in->routeData, sizeof(out->routeData));
462 out->port = in->port;
463 out->ifindex = in->ifindex;
466 void FixUpClientResponse(OCClientResponse *cr)
468 VERIFY_NON_NULL_NR(cr, FATAL);
470 cr->addr = &cr->devAddr;
471 cr->connType = (OCConnectivityType)
472 ((cr->devAddr.adapter << CT_ADAPTER_SHIFT) | (cr->devAddr.flags & CT_MASK_FLAGS));
475 static OCStackResult OCSendRequest(const CAEndpoint_t *object, CARequestInfo_t *requestInfo)
477 VERIFY_NON_NULL(object, FATAL, OC_STACK_INVALID_PARAM);
478 VERIFY_NON_NULL(requestInfo, FATAL, OC_STACK_INVALID_PARAM);
480 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
481 OCStackResult rmResult = RMAddInfo(object->routeData, requestInfo, true, NULL);
482 if (OC_STACK_OK != rmResult)
484 OIC_LOG(ERROR, TAG, "Add destination option failed");
489 // OC stack prefer CBOR encoded payloads.
490 requestInfo->info.acceptFormat = CA_FORMAT_APPLICATION_CBOR;
491 CAResult_t result = CASendRequest(object, requestInfo);
492 if(CA_STATUS_OK != result)
494 OIC_LOG_V(ERROR, TAG, "CASendRequest failed with CA error %u", result);
495 return CAResultToOCResult(result);
499 //-----------------------------------------------------------------------------
500 // Internal API function
501 //-----------------------------------------------------------------------------
503 // This internal function is called to update the stack with the status of
504 // observers and communication failures
505 OCStackResult OCStackFeedBack(CAToken_t token, uint8_t tokenLength, uint8_t status)
507 OCStackResult result = OC_STACK_ERROR;
508 ResourceObserver * observer = NULL;
509 OCEntityHandlerRequest ehRequest = {0};
513 case OC_OBSERVER_NOT_INTERESTED:
514 OIC_LOG(DEBUG, TAG, "observer not interested in our notifications");
515 observer = GetObserverUsingToken (token, tokenLength);
518 result = FormOCEntityHandlerRequest(&ehRequest,
519 (OCRequestHandle)NULL,
522 (OCResourceHandle)NULL,
523 NULL, PAYLOAD_TYPE_REPRESENTATION,
525 OC_OBSERVE_DEREGISTER,
526 observer->observeId);
527 if(result != OC_STACK_OK)
531 observer->resource->entityHandler(OC_OBSERVE_FLAG, &ehRequest,
532 observer->resource->entityHandlerCallbackParam);
535 result = DeleteObserverUsingToken (token, tokenLength);
536 if(result == OC_STACK_OK)
538 OIC_LOG(DEBUG, TAG, "Removed observer successfully");
542 result = OC_STACK_OK;
543 OIC_LOG(DEBUG, TAG, "Observer Removal failed");
547 case OC_OBSERVER_STILL_INTERESTED:
548 OIC_LOG(DEBUG, TAG, "observer still interested, reset the failedCount");
549 observer = GetObserverUsingToken (token, tokenLength);
552 observer->forceHighQos = 0;
553 observer->failedCommCount = 0;
554 result = OC_STACK_OK;
558 result = OC_STACK_OBSERVER_NOT_FOUND;
562 case OC_OBSERVER_FAILED_COMM:
563 OIC_LOG(DEBUG, TAG, "observer is unreachable");
564 observer = GetObserverUsingToken (token, tokenLength);
567 if(observer->failedCommCount >= MAX_OBSERVER_FAILED_COMM)
569 result = FormOCEntityHandlerRequest(&ehRequest,
570 (OCRequestHandle)NULL,
573 (OCResourceHandle)NULL,
574 NULL, PAYLOAD_TYPE_REPRESENTATION,
576 OC_OBSERVE_DEREGISTER,
577 observer->observeId);
578 if(result != OC_STACK_OK)
580 return OC_STACK_ERROR;
582 observer->resource->entityHandler(OC_OBSERVE_FLAG, &ehRequest,
583 observer->resource->entityHandlerCallbackParam);
585 result = DeleteObserverUsingToken (token, tokenLength);
586 if(result == OC_STACK_OK)
588 OIC_LOG(DEBUG, TAG, "Removed observer successfully");
592 result = OC_STACK_OK;
593 OIC_LOG(DEBUG, TAG, "Observer Removal failed");
598 observer->failedCommCount++;
599 result = OC_STACK_CONTINUE;
601 observer->forceHighQos = 1;
602 OIC_LOG_V(DEBUG, TAG, "Failed count for this observer is %d",observer->failedCommCount);
606 OIC_LOG(ERROR, TAG, "Unknown status");
607 result = OC_STACK_ERROR;
612 OCStackResult CAToOCStackResult(CAResponseResult_t caCode)
614 OCStackResult ret = OC_STACK_ERROR;
619 ret = OC_STACK_RESOURCE_CREATED;
622 ret = OC_STACK_RESOURCE_DELETED;
630 ret = OC_STACK_INVALID_QUERY;
632 case CA_UNAUTHORIZED_REQ:
633 ret = OC_STACK_UNAUTHORIZED_REQ;
636 ret = OC_STACK_INVALID_OPTION;
639 ret = OC_STACK_NO_RESOURCE;
641 case CA_RETRANSMIT_TIMEOUT:
642 ret = OC_STACK_COMM_ERROR;
650 CAResponseResult_t OCToCAStackResult(OCStackResult ocCode, OCMethod method)
652 CAResponseResult_t ret = CA_INTERNAL_SERVER_ERROR;
661 // This Response Code is like HTTP 204 "No Content" but only used in
662 // response to POST and PUT requests.
666 // This Response Code is like HTTP 200 "OK" but only used in response to
671 // This should not happen but,
672 // give it a value just in case but output an error
674 OIC_LOG_V(ERROR, TAG, "Unexpected OC_STACK_OK return code for method [%d].", method);
677 case OC_STACK_RESOURCE_CREATED:
680 case OC_STACK_RESOURCE_DELETED:
683 case OC_STACK_INVALID_QUERY:
686 case OC_STACK_INVALID_OPTION:
689 case OC_STACK_NO_RESOURCE:
692 case OC_STACK_COMM_ERROR:
693 ret = CA_RETRANSMIT_TIMEOUT;
695 case OC_STACK_UNAUTHORIZED_REQ:
696 ret = CA_UNAUTHORIZED_REQ;
704 CATransportFlags_t OCToCATransportFlags(OCTransportFlags ocFlags)
706 CATransportFlags_t caFlags = (CATransportFlags_t)ocFlags;
708 // supply default behavior.
709 if ((caFlags & (CA_IPV6|CA_IPV4)) == 0)
711 caFlags = (CATransportFlags_t)(caFlags|CA_IPV6|CA_IPV4);
713 if ((caFlags & OC_MASK_SCOPE) == 0)
715 caFlags = (CATransportFlags_t)(caFlags|OC_SCOPE_LINK);
720 OCTransportFlags CAToOCTransportFlags(CATransportFlags_t caFlags)
722 return (OCTransportFlags)caFlags;
725 static OCStackResult ResetPresenceTTL(ClientCB *cbNode, uint32_t maxAgeSeconds)
727 uint32_t lowerBound = 0;
728 uint32_t higherBound = 0;
730 if (!cbNode || !cbNode->presence || !cbNode->presence->timeOut)
732 return OC_STACK_INVALID_PARAM;
735 OIC_LOG_V(INFO, TAG, "Update presence TTL, time is %u", GetTicks(0));
737 cbNode->presence->TTL = maxAgeSeconds;
739 for (int index = 0; index < PresenceTimeOutSize; index++)
741 // Guard against overflow
742 if (cbNode->presence->TTL < (UINT32_MAX/(MILLISECONDS_PER_SECOND*PresenceTimeOut[index]))
745 lowerBound = GetTicks((PresenceTimeOut[index] *
746 cbNode->presence->TTL *
747 MILLISECONDS_PER_SECOND)/100);
751 lowerBound = GetTicks(UINT32_MAX);
754 if (cbNode->presence->TTL < (UINT32_MAX/(MILLISECONDS_PER_SECOND*PresenceTimeOut[index+1]))
757 higherBound = GetTicks((PresenceTimeOut[index + 1] *
758 cbNode->presence->TTL *
759 MILLISECONDS_PER_SECOND)/100);
763 higherBound = GetTicks(UINT32_MAX);
766 cbNode->presence->timeOut[index] = OCGetRandomRange(lowerBound, higherBound);
768 OIC_LOG_V(DEBUG, TAG, "lowerBound timeout %d", lowerBound);
769 OIC_LOG_V(DEBUG, TAG, "higherBound timeout %d", higherBound);
770 OIC_LOG_V(DEBUG, TAG, "timeOut entry %d", cbNode->presence->timeOut[index]);
773 cbNode->presence->TTLlevel = 0;
775 OIC_LOG_V(DEBUG, TAG, "this TTL level %d", cbNode->presence->TTLlevel);
779 const char *convertTriggerEnumToString(OCPresenceTrigger trigger)
781 if (trigger == OC_PRESENCE_TRIGGER_CREATE)
783 return OC_RSRVD_TRIGGER_CREATE;
785 else if (trigger == OC_PRESENCE_TRIGGER_CHANGE)
787 return OC_RSRVD_TRIGGER_CHANGE;
791 return OC_RSRVD_TRIGGER_DELETE;
795 OCPresenceTrigger convertTriggerStringToEnum(const char * triggerStr)
799 return OC_PRESENCE_TRIGGER_CREATE;
801 else if(strcmp(triggerStr, OC_RSRVD_TRIGGER_CREATE) == 0)
803 return OC_PRESENCE_TRIGGER_CREATE;
805 else if(strcmp(triggerStr, OC_RSRVD_TRIGGER_CHANGE) == 0)
807 return OC_PRESENCE_TRIGGER_CHANGE;
811 return OC_PRESENCE_TRIGGER_DELETE;
816 * The cononical presence allows constructed URIs to be string compared.
818 * requestUri must be a char array of size CA_MAX_URI_LENGTH
820 static int FormCanonicalPresenceUri(const CAEndpoint_t *endpoint, char *resourceUri,
823 VERIFY_NON_NULL(endpoint , FATAL, OC_STACK_INVALID_PARAM);
824 VERIFY_NON_NULL(resourceUri, FATAL, OC_STACK_INVALID_PARAM);
825 VERIFY_NON_NULL(presenceUri, FATAL, OC_STACK_INVALID_PARAM);
827 CAEndpoint_t *ep = (CAEndpoint_t *)endpoint;
829 if (ep->adapter == CA_ADAPTER_IP)
831 if ((ep->flags & CA_IPV6) && !(ep->flags & CA_IPV4))
833 if ('\0' == ep->addr[0]) // multicast
835 return snprintf(presenceUri, CA_MAX_URI_LENGTH, OC_RSRVD_PRESENCE_URI);
839 return snprintf(presenceUri, CA_MAX_URI_LENGTH, "coap://[%s]:%u%s",
840 ep->addr, ep->port, OC_RSRVD_PRESENCE_URI);
845 if ('\0' == ep->addr[0]) // multicast
847 OICStrcpy(ep->addr, sizeof(ep->addr), OC_MULTICAST_IP);
848 ep->port = OC_MULTICAST_PORT;
850 return snprintf(presenceUri, CA_MAX_URI_LENGTH, "coap://%s:%u%s",
851 ep->addr, ep->port, OC_RSRVD_PRESENCE_URI);
855 // might work for other adapters (untested, but better than nothing)
856 return snprintf(presenceUri, CA_MAX_URI_LENGTH, "coap://%s%s", ep->addr,
857 OC_RSRVD_PRESENCE_URI);
861 OCStackResult HandlePresenceResponse(const CAEndpoint_t *endpoint,
862 const CAResponseInfo_t *responseInfo)
864 VERIFY_NON_NULL(endpoint, FATAL, OC_STACK_INVALID_PARAM);
865 VERIFY_NON_NULL(responseInfo, FATAL, OC_STACK_INVALID_PARAM);
867 OCStackApplicationResult cbResult = OC_STACK_DELETE_TRANSACTION;
868 ClientCB * cbNode = NULL;
869 char *resourceTypeName = NULL;
870 OCClientResponse response = {.devAddr = {.adapter = OC_DEFAULT_ADAPTER}};
871 OCStackResult result = OC_STACK_ERROR;
874 char presenceUri[CA_MAX_URI_LENGTH];
876 int presenceSubscribe = 0;
877 int multicastPresenceSubscribe = 0;
879 if (responseInfo->result != CA_CONTENT)
881 OIC_LOG_V(ERROR, TAG, "HandlePresenceResponse failed %d", responseInfo->result);
882 return OC_STACK_ERROR;
885 // check for unicast presence
886 uriLen = FormCanonicalPresenceUri(endpoint, OC_RSRVD_PRESENCE_URI, presenceUri);
887 if (uriLen < 0 || (size_t)uriLen >= sizeof (presenceUri))
889 return OC_STACK_INVALID_URI;
892 cbNode = GetClientCB(NULL, 0, NULL, presenceUri);
895 presenceSubscribe = 1;
899 // check for multiicast presence
900 CAEndpoint_t ep = { .adapter = endpoint->adapter,
901 .flags = endpoint->flags };
903 uriLen = FormCanonicalPresenceUri(&ep, OC_RSRVD_PRESENCE_URI, presenceUri);
905 cbNode = GetClientCB(NULL, 0, NULL, presenceUri);
908 multicastPresenceSubscribe = 1;
912 if (!presenceSubscribe && !multicastPresenceSubscribe)
914 OIC_LOG(ERROR, TAG, "Received a presence notification, but no callback, ignoring");
918 response.payload = NULL;
919 response.result = OC_STACK_OK;
921 CopyEndpointToDevAddr(endpoint, &response.devAddr);
922 FixUpClientResponse(&response);
924 if (responseInfo->info.payload)
926 result = OCParsePayload(&response.payload,
927 PAYLOAD_TYPE_PRESENCE,
928 responseInfo->info.payload,
929 responseInfo->info.payloadSize);
931 if(result != OC_STACK_OK)
933 OIC_LOG(ERROR, TAG, "Presence parse failed");
936 if(!response.payload || response.payload->type != PAYLOAD_TYPE_PRESENCE)
938 OIC_LOG(ERROR, TAG, "Presence payload was wrong type");
939 result = OC_STACK_ERROR;
942 response.sequenceNumber = ((OCPresencePayload*)response.payload)->sequenceNumber;
943 resourceTypeName = ((OCPresencePayload*)response.payload)->resourceType;
944 maxAge = ((OCPresencePayload*)response.payload)->maxAge;
947 if (presenceSubscribe)
949 if(cbNode->sequenceNumber == response.sequenceNumber)
951 OIC_LOG(INFO, TAG, "No presence change");
952 ResetPresenceTTL(cbNode, maxAge);
953 OIC_LOG_V(INFO, TAG, "ResetPresenceTTL - TTLlevel:%d\n", cbNode->presence->TTLlevel);
959 OIC_LOG(INFO, TAG, "Stopping presence");
960 response.result = OC_STACK_PRESENCE_STOPPED;
963 OICFree(cbNode->presence->timeOut);
964 OICFree(cbNode->presence);
965 cbNode->presence = NULL;
970 if(!cbNode->presence)
972 cbNode->presence = (OCPresence *)OICMalloc(sizeof (OCPresence));
974 if(!(cbNode->presence))
976 OIC_LOG(ERROR, TAG, "Could not allocate memory for cbNode->presence");
977 result = OC_STACK_NO_MEMORY;
981 VERIFY_NON_NULL_V(cbNode->presence);
982 cbNode->presence->timeOut = NULL;
983 cbNode->presence->timeOut = (uint32_t *)
984 OICMalloc(PresenceTimeOutSize * sizeof(uint32_t));
985 if(!(cbNode->presence->timeOut)){
987 "Could not allocate memory for cbNode->presence->timeOut");
988 OICFree(cbNode->presence);
989 result = OC_STACK_NO_MEMORY;
994 ResetPresenceTTL(cbNode, maxAge);
996 cbNode->sequenceNumber = response.sequenceNumber;
998 // Ensure that a filter is actually applied.
999 if( resourceTypeName && cbNode->filterResourceType)
1001 if(!findResourceType(cbNode->filterResourceType, resourceTypeName))
1010 // This is the multicast case
1011 OCMulticastNode* mcNode = NULL;
1012 mcNode = GetMCPresenceNode(presenceUri);
1016 if(mcNode->nonce == response.sequenceNumber)
1018 OIC_LOG(INFO, TAG, "No presence change (Multicast)");
1021 mcNode->nonce = response.sequenceNumber;
1025 OIC_LOG(INFO, TAG, "Stopping presence");
1026 response.result = OC_STACK_PRESENCE_STOPPED;
1031 char* uri = OICStrdup(presenceUri);
1035 "No Memory for URI to store in the presence node");
1036 result = OC_STACK_NO_MEMORY;
1040 result = AddMCPresenceNode(&mcNode, uri, response.sequenceNumber);
1041 if(result == OC_STACK_NO_MEMORY)
1044 "No Memory for Multicast Presence Node");
1048 // presence node now owns uri
1051 // Ensure that a filter is actually applied.
1052 if(resourceTypeName && cbNode->filterResourceType)
1054 if(!findResourceType(cbNode->filterResourceType, resourceTypeName))
1061 cbResult = cbNode->callBack(cbNode->context, cbNode->handle, &response);
1063 if (cbResult == OC_STACK_DELETE_TRANSACTION)
1065 FindAndDeleteClientCB(cbNode);
1069 OCPayloadDestroy(response.payload);
1073 void OCHandleResponse(const CAEndpoint_t* endPoint, const CAResponseInfo_t* responseInfo)
1075 OIC_LOG(DEBUG, TAG, "Enter OCHandleResponse");
1077 if(responseInfo->info.resourceUri &&
1078 strcmp(responseInfo->info.resourceUri, OC_RSRVD_PRESENCE_URI) == 0)
1080 HandlePresenceResponse(endPoint, responseInfo);
1084 ClientCB *cbNode = GetClientCB(responseInfo->info.token,
1085 responseInfo->info.tokenLength, NULL, NULL);
1087 ResourceObserver * observer = GetObserverUsingToken (responseInfo->info.token,
1088 responseInfo->info.tokenLength);
1092 OIC_LOG(INFO, TAG, "There is a cbNode associated with the response token");
1093 if(responseInfo->result == CA_EMPTY)
1095 OIC_LOG(INFO, TAG, "Receiving A ACK/RESET for this token");
1096 // We do not have a case for the client to receive a RESET
1097 if(responseInfo->info.type == CA_MSG_ACKNOWLEDGE)
1099 //This is the case of receiving an ACK on a request to a slow resource!
1100 OIC_LOG(INFO, TAG, "This is a pure ACK");
1101 //TODO: should we inform the client
1102 // app that at least the request was received at the server?
1105 else if(responseInfo->result == CA_RETRANSMIT_TIMEOUT)
1107 OIC_LOG(INFO, TAG, "Receiving A Timeout for this token");
1108 OIC_LOG(INFO, TAG, "Calling into application address space");
1110 OCClientResponse response =
1111 {.devAddr = {.adapter = OC_DEFAULT_ADAPTER}};
1112 CopyEndpointToDevAddr(endPoint, &response.devAddr);
1113 FixUpClientResponse(&response);
1114 response.resourceUri = responseInfo->info.resourceUri;
1115 memcpy(response.identity.id, responseInfo->info.identity.id,
1116 sizeof (response.identity.id));
1117 response.identity.id_length = responseInfo->info.identity.id_length;
1119 response.result = CAToOCStackResult(responseInfo->result);
1120 cbNode->callBack(cbNode->context,
1121 cbNode->handle, &response);
1122 FindAndDeleteClientCB(cbNode);
1126 OIC_LOG(INFO, TAG, "This is a regular response, A client call back is found");
1127 OIC_LOG(INFO, TAG, "Calling into application address space");
1129 OCClientResponse response =
1130 {.devAddr = {.adapter = OC_DEFAULT_ADAPTER}};
1131 response.sequenceNumber = OC_OBSERVE_NO_OPTION;
1132 CopyEndpointToDevAddr(endPoint, &response.devAddr);
1133 FixUpClientResponse(&response);
1134 response.resourceUri = responseInfo->info.resourceUri;
1135 memcpy(response.identity.id, responseInfo->info.identity.id,
1136 sizeof (response.identity.id));
1137 response.identity.id_length = responseInfo->info.identity.id_length;
1139 response.result = CAToOCStackResult(responseInfo->result);
1141 if(responseInfo->info.payload &&
1142 responseInfo->info.payloadSize)
1144 OCPayloadType type = PAYLOAD_TYPE_INVALID;
1145 // check the security resource
1146 if (SRMIsSecurityResourceURI(cbNode->requestUri))
1148 type = PAYLOAD_TYPE_SECURITY;
1150 else if (cbNode->method == OC_REST_DISCOVER)
1152 if (strncmp(OC_RSRVD_WELL_KNOWN_URI,cbNode->requestUri,
1153 sizeof(OC_RSRVD_WELL_KNOWN_URI) - 1) == 0)
1155 type = PAYLOAD_TYPE_DISCOVERY;
1157 else if (strcmp(cbNode->requestUri, OC_RSRVD_DEVICE_URI) == 0)
1159 type = PAYLOAD_TYPE_DEVICE;
1161 else if (strcmp(cbNode->requestUri, OC_RSRVD_PLATFORM_URI) == 0)
1163 type = PAYLOAD_TYPE_PLATFORM;
1165 #ifdef ROUTING_GATEWAY
1166 else if (strcmp(cbNode->requestUri, OC_RSRVD_GATEWAY_URI) == 0)
1168 type = PAYLOAD_TYPE_REPRESENTATION;
1171 else if (strcmp(cbNode->requestUri, OC_RSRVD_RD_URI) == 0)
1173 type = PAYLOAD_TYPE_RD;
1176 else if (strcmp(cbNode->requestUri, KEEPALIVE_RESOURCE_URI) == 0)
1178 type = PAYLOAD_TYPE_REPRESENTATION;
1183 OIC_LOG_V(ERROR, TAG, "Unknown Payload type in Discovery: %d %s",
1184 cbNode->method, cbNode->requestUri);
1188 else if (cbNode->method == OC_REST_GET ||
1189 cbNode->method == OC_REST_PUT ||
1190 cbNode->method == OC_REST_POST ||
1191 cbNode->method == OC_REST_OBSERVE ||
1192 cbNode->method == OC_REST_OBSERVE_ALL ||
1193 cbNode->method == OC_REST_DELETE)
1195 char targetUri[MAX_URI_LENGTH];
1196 snprintf(targetUri, MAX_URI_LENGTH, "%s?rt=%s", OC_RSRVD_RD_URI,
1197 OC_RSRVD_RESOURCE_TYPE_RDPUBLISH);
1198 if (strcmp(targetUri, cbNode->requestUri) == 0)
1200 type = PAYLOAD_TYPE_RD;
1202 else if (strcmp(OC_RSRVD_PLATFORM_URI, cbNode->requestUri) == 0)
1204 type = PAYLOAD_TYPE_PLATFORM;
1206 else if (strcmp(OC_RSRVD_DEVICE_URI, cbNode->requestUri) == 0)
1208 type = PAYLOAD_TYPE_DEVICE;
1210 if (type == PAYLOAD_TYPE_INVALID)
1212 OIC_LOG_V(INFO, TAG, "Assuming PAYLOAD_TYPE_REPRESENTATION: %d %s",
1213 cbNode->method, cbNode->requestUri);
1214 type = PAYLOAD_TYPE_REPRESENTATION;
1219 OIC_LOG_V(ERROR, TAG, "Unknown Payload type: %d %s",
1220 cbNode->method, cbNode->requestUri);
1224 if(OC_STACK_OK != OCParsePayload(&response.payload,
1226 responseInfo->info.payload,
1227 responseInfo->info.payloadSize))
1229 OIC_LOG(ERROR, TAG, "Error converting payload");
1230 OCPayloadDestroy(response.payload);
1235 response.numRcvdVendorSpecificHeaderOptions = 0;
1236 if(responseInfo->info.numOptions > 0)
1239 //First option always with option ID is COAP_OPTION_OBSERVE if it is available.
1240 if(responseInfo->info.options[0].optionID == COAP_OPTION_OBSERVE)
1243 uint32_t observationOption;
1244 uint8_t* optionData = (uint8_t*)responseInfo->info.options[0].optionData;
1245 for (observationOption=0, i=0;
1246 i<sizeof(uint32_t) && i<responseInfo->info.options[0].optionLength;
1250 (observationOption << 8) | optionData[i];
1252 response.sequenceNumber = observationOption;
1254 response.numRcvdVendorSpecificHeaderOptions = responseInfo->info.numOptions - 1;
1259 response.numRcvdVendorSpecificHeaderOptions = responseInfo->info.numOptions;
1262 if(response.numRcvdVendorSpecificHeaderOptions > MAX_HEADER_OPTIONS)
1264 OIC_LOG(ERROR, TAG, "#header options are more than MAX_HEADER_OPTIONS");
1265 OCPayloadDestroy(response.payload);
1269 for (uint8_t i = start; i < responseInfo->info.numOptions; i++)
1271 memcpy (&(response.rcvdVendorSpecificHeaderOptions[i-start]),
1272 &(responseInfo->info.options[i]), sizeof(OCHeaderOption));
1276 if (cbNode->method == OC_REST_OBSERVE &&
1277 response.sequenceNumber > OC_OFFSET_SEQUENCE_NUMBER &&
1278 response.sequenceNumber <= cbNode->sequenceNumber)
1280 OIC_LOG_V(INFO, TAG, "Received stale notification. Number :%d",
1281 response.sequenceNumber);
1285 OCStackApplicationResult appFeedback = cbNode->callBack(cbNode->context,
1288 cbNode->sequenceNumber = response.sequenceNumber;
1290 if (appFeedback == OC_STACK_DELETE_TRANSACTION)
1292 FindAndDeleteClientCB(cbNode);
1296 // To keep discovery callbacks active.
1297 cbNode->TTL = GetTicks(MAX_CB_TIMEOUT_SECONDS *
1298 MILLISECONDS_PER_SECOND);
1302 //Need to send ACK when the response is CON
1303 if(responseInfo->info.type == CA_MSG_CONFIRM)
1305 SendDirectStackResponse(endPoint, responseInfo->info.messageId, CA_EMPTY,
1306 CA_MSG_ACKNOWLEDGE, 0, NULL, NULL, 0, NULL);
1309 OCPayloadDestroy(response.payload);
1316 OIC_LOG(INFO, TAG, "There is an observer associated with the response token");
1317 if(responseInfo->result == CA_EMPTY)
1319 OIC_LOG(INFO, TAG, "Receiving A ACK/RESET for this token");
1320 if(responseInfo->info.type == CA_MSG_RESET)
1322 OIC_LOG(INFO, TAG, "This is a RESET");
1323 OCStackFeedBack(responseInfo->info.token, responseInfo->info.tokenLength,
1324 OC_OBSERVER_NOT_INTERESTED);
1326 else if(responseInfo->info.type == CA_MSG_ACKNOWLEDGE)
1328 OIC_LOG(INFO, TAG, "This is a pure ACK");
1329 OCStackFeedBack(responseInfo->info.token, responseInfo->info.tokenLength,
1330 OC_OBSERVER_STILL_INTERESTED);
1333 else if(responseInfo->result == CA_RETRANSMIT_TIMEOUT)
1335 OIC_LOG(INFO, TAG, "Receiving Time Out for an observer");
1336 OCStackFeedBack(responseInfo->info.token, responseInfo->info.tokenLength,
1337 OC_OBSERVER_FAILED_COMM);
1342 if(!cbNode && !observer)
1344 if(myStackMode == OC_CLIENT || myStackMode == OC_CLIENT_SERVER
1345 || myStackMode == OC_GATEWAY)
1347 OIC_LOG(INFO, TAG, "This is a client, but no cbNode was found for token");
1348 if(responseInfo->result == CA_EMPTY)
1350 OIC_LOG(INFO, TAG, "Receiving CA_EMPTY in the ocstack");
1354 OIC_LOG(INFO, TAG, "Received a message without callbacks. Sending RESET");
1355 SendDirectStackResponse(endPoint, responseInfo->info.messageId, CA_EMPTY,
1356 CA_MSG_RESET, 0, NULL, NULL, 0, NULL);
1360 if(myStackMode == OC_SERVER || myStackMode == OC_CLIENT_SERVER
1361 || myStackMode == OC_GATEWAY)
1363 OIC_LOG(INFO, TAG, "This is a server, but no observer was found for token");
1364 if (responseInfo->info.type == CA_MSG_ACKNOWLEDGE)
1366 OIC_LOG_V(INFO, TAG, "Received ACK at server for messageId : %d",
1367 responseInfo->info.messageId);
1369 if (responseInfo->info.type == CA_MSG_RESET)
1371 OIC_LOG_V(INFO, TAG, "Received RESET at server for messageId : %d",
1372 responseInfo->info.messageId);
1379 OIC_LOG(INFO, TAG, "Exit HandleCAResponses");
1382 void HandleCAResponses(const CAEndpoint_t* endPoint, const CAResponseInfo_t* responseInfo)
1384 VERIFY_NON_NULL_NR(endPoint, FATAL);
1385 VERIFY_NON_NULL_NR(responseInfo, FATAL);
1387 OIC_LOG(INFO, TAG, "Enter HandleCAResponses");
1389 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
1390 #ifdef ROUTING_GATEWAY
1391 bool needRIHandling = false;
1393 * Routing manager is going to update either of endpoint or response or both.
1394 * This typecasting is done to avoid unnecessary duplication of Endpoint and responseInfo
1395 * RM can update "routeData" option in endPoint so that future RI requests can be sent to proper
1398 OCStackResult ret = RMHandleResponse((CAResponseInfo_t *)responseInfo, (CAEndpoint_t *)endPoint,
1400 if(ret != OC_STACK_OK || !needRIHandling)
1402 OIC_LOG_V(INFO, TAG, "Routing status![%d]. Not forwarding to RI", ret);
1408 * Put source in sender endpoint so that the next packet from application can be routed to
1409 * proper destination and remove "RM" coap header option before passing request / response to
1410 * RI as this option will make no sense to either RI or application.
1412 RMUpdateInfo((CAHeaderOption_t **) &(responseInfo->info.options),
1413 (uint8_t *) &(responseInfo->info.numOptions),
1414 (CAEndpoint_t *) endPoint);
1417 OCHandleResponse(endPoint, responseInfo);
1419 OIC_LOG(INFO, TAG, "Exit HandleCAResponses");
1423 * This function handles error response from CA
1424 * code shall be added to handle the errors
1426 void HandleCAErrorResponse(const CAEndpoint_t *endPoint, const CAErrorInfo_t *errrorInfo)
1428 OIC_LOG(INFO, TAG, "Enter HandleCAErrorResponse");
1430 if(NULL == endPoint)
1432 OIC_LOG(ERROR, TAG, "endPoint is NULL");
1436 if(NULL == errrorInfo)
1438 OIC_LOG(ERROR, TAG, "errrorInfo is NULL");
1441 OIC_LOG(INFO, TAG, "Exit HandleCAErrorResponse");
1445 * This function sends out Direct Stack Responses. These are responses that are not coming
1446 * from the application entity handler. These responses have no payload and are usually ACKs,
1447 * RESETs or some error conditions that were caught by the stack.
1449 OCStackResult SendDirectStackResponse(const CAEndpoint_t* endPoint, const uint16_t coapID,
1450 const CAResponseResult_t responseResult, const CAMessageType_t type,
1451 const uint8_t numOptions, const CAHeaderOption_t *options,
1452 CAToken_t token, uint8_t tokenLength, const char *resourceUri)
1454 OIC_LOG(DEBUG, TAG, "Entering SendDirectStackResponse");
1455 CAResponseInfo_t respInfo = {
1456 .result = responseResult
1458 respInfo.info.messageId = coapID;
1459 respInfo.info.numOptions = numOptions;
1461 if (respInfo.info.numOptions)
1463 respInfo.info.options =
1464 (CAHeaderOption_t *)OICCalloc(respInfo.info.numOptions, sizeof(CAHeaderOption_t));
1465 memcpy (respInfo.info.options, options,
1466 sizeof(CAHeaderOption_t) * respInfo.info.numOptions);
1470 respInfo.info.payload = NULL;
1471 respInfo.info.token = token;
1472 respInfo.info.tokenLength = tokenLength;
1473 respInfo.info.type = type;
1474 respInfo.info.resourceUri = OICStrdup (resourceUri);
1475 respInfo.info.acceptFormat = CA_FORMAT_UNDEFINED;
1477 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
1478 // Add the destination to route option from the endpoint->routeData.
1479 bool doPost = false;
1480 OCStackResult result = RMAddInfo(endPoint->routeData, &respInfo, false, &doPost);
1481 if(OC_STACK_OK != result)
1483 OIC_LOG_V(ERROR, TAG, "Add routing option failed [%d]", result);
1488 OIC_LOG(DEBUG, TAG, "Sending a POST message for EMPTY ACK in Client Mode");
1489 CARequestInfo_t reqInfo = {.method = CA_POST };
1490 /* The following initialization is not done in a single initializer block as in
1491 * arduino, .c file is compiled as .cpp and moves it from C99 to C++11. The latter
1492 * does not have designated initalizers. This is a work-around for now.
1494 reqInfo.info.type = CA_MSG_NONCONFIRM;
1495 reqInfo.info.messageId = coapID;
1496 reqInfo.info.tokenLength = tokenLength;
1497 reqInfo.info.token = token;
1498 reqInfo.info.numOptions = respInfo.info.numOptions;
1499 reqInfo.info.payload = NULL;
1500 reqInfo.info.resourceUri = OICStrdup (OC_RSRVD_GATEWAY_URI);
1501 if (reqInfo.info.numOptions)
1503 reqInfo.info.options =
1504 (CAHeaderOption_t *)OICCalloc(reqInfo.info.numOptions, sizeof(CAHeaderOption_t));
1505 if (NULL == reqInfo.info.options)
1507 OIC_LOG(ERROR, TAG, "Calloc failed");
1508 return OC_STACK_NO_MEMORY;
1510 memcpy (reqInfo.info.options, respInfo.info.options,
1511 sizeof(CAHeaderOption_t) * reqInfo.info.numOptions);
1514 CAResult_t caResult = CASendRequest(endPoint, &reqInfo);
1515 OICFree (reqInfo.info.resourceUri);
1516 OICFree (reqInfo.info.options);
1517 OICFree (respInfo.info.resourceUri);
1518 OICFree (respInfo.info.options);
1519 if (CA_STATUS_OK != caResult)
1521 OIC_LOG(ERROR, TAG, "CASendRequest error");
1522 return CAResultToOCResult(caResult);
1528 CAResult_t caResult = CASendResponse(endPoint, &respInfo);
1530 // resourceUri in the info field is cloned in the CA layer and
1531 // thus ownership is still here.
1532 OICFree (respInfo.info.resourceUri);
1533 OICFree (respInfo.info.options);
1534 if(CA_STATUS_OK != caResult)
1536 OIC_LOG(ERROR, TAG, "CASendResponse error");
1537 return CAResultToOCResult(caResult);
1540 OIC_LOG(DEBUG, TAG, "Exit SendDirectStackResponse");
1544 OCStackResult HandleStackRequests(OCServerProtocolRequest * protocolRequest)
1546 OIC_LOG(INFO, TAG, "Entering HandleStackRequests (OCStack Layer)");
1547 OCStackResult result = OC_STACK_ERROR;
1548 if(!protocolRequest)
1550 OIC_LOG(ERROR, TAG, "protocolRequest is NULL");
1551 return OC_STACK_INVALID_PARAM;
1554 OCServerRequest * request = GetServerRequestUsingToken(protocolRequest->requestToken,
1555 protocolRequest->tokenLength);
1558 OIC_LOG(INFO, TAG, "This is a new Server Request");
1559 result = AddServerRequest(&request, protocolRequest->coapID,
1560 protocolRequest->delayedResNeeded, 0, protocolRequest->method,
1561 protocolRequest->numRcvdVendorSpecificHeaderOptions,
1562 protocolRequest->observationOption, protocolRequest->qos,
1563 protocolRequest->query, protocolRequest->rcvdVendorSpecificHeaderOptions,
1564 protocolRequest->payload, protocolRequest->requestToken,
1565 protocolRequest->tokenLength, protocolRequest->resourceUrl,
1566 protocolRequest->reqTotalSize, protocolRequest->acceptFormat,
1567 &protocolRequest->devAddr);
1568 if (OC_STACK_OK != result)
1570 OIC_LOG(ERROR, TAG, "Error adding server request");
1576 OIC_LOG(ERROR, TAG, "Out of Memory");
1577 return OC_STACK_NO_MEMORY;
1580 if(!protocolRequest->reqMorePacket)
1582 request->requestComplete = 1;
1587 OIC_LOG(INFO, TAG, "This is either a repeated or blocked Server Request");
1590 if(request->requestComplete)
1592 OIC_LOG(INFO, TAG, "This Server Request is complete");
1593 ResourceHandling resHandling = OC_RESOURCE_VIRTUAL;
1594 OCResource *resource = NULL;
1595 result = DetermineResourceHandling (request, &resHandling, &resource);
1596 if (result == OC_STACK_OK)
1598 result = ProcessRequest(resHandling, resource, request);
1603 OIC_LOG(INFO, TAG, "This Server Request is incomplete");
1604 result = OC_STACK_CONTINUE;
1609 void OCHandleRequests(const CAEndpoint_t* endPoint, const CARequestInfo_t* requestInfo)
1611 OIC_LOG(DEBUG, TAG, "Enter OCHandleRequests");
1614 if (requestInfo->info.resourceUri &&
1615 strcmp(requestInfo->info.resourceUri, KEEPALIVE_RESOURCE_URI) == 0)
1617 HandleKeepAliveRequest(endPoint, requestInfo);
1622 OCStackResult requestResult = OC_STACK_ERROR;
1624 if(myStackMode == OC_CLIENT)
1626 //TODO: should the client be responding to requests?
1630 OCServerProtocolRequest serverRequest = {0};
1632 OIC_LOG_V(INFO, TAG, "Endpoint URI : %s", requestInfo->info.resourceUri);
1634 char * uriWithoutQuery = NULL;
1635 char * query = NULL;
1637 requestResult = getQueryFromUri(requestInfo->info.resourceUri, &query, &uriWithoutQuery);
1639 if (requestResult != OC_STACK_OK || !uriWithoutQuery)
1641 OIC_LOG_V(ERROR, TAG, "getQueryFromUri() failed with OC error code %d\n", requestResult);
1644 OIC_LOG_V(INFO, TAG, "URI without query: %s", uriWithoutQuery);
1645 OIC_LOG_V(INFO, TAG, "Query : %s", query);
1647 if(strlen(uriWithoutQuery) < MAX_URI_LENGTH)
1649 OICStrcpy(serverRequest.resourceUrl, sizeof(serverRequest.resourceUrl), uriWithoutQuery);
1650 OICFree(uriWithoutQuery);
1654 OIC_LOG(ERROR, TAG, "URI length exceeds MAX_URI_LENGTH.");
1655 OICFree(uriWithoutQuery);
1662 if(strlen(query) < MAX_QUERY_LENGTH)
1664 OICStrcpy(serverRequest.query, sizeof(serverRequest.query), query);
1669 OIC_LOG(ERROR, TAG, "Query length exceeds MAX_QUERY_LENGTH.");
1675 if ((requestInfo->info.payload) && (0 < requestInfo->info.payloadSize))
1677 serverRequest.reqTotalSize = requestInfo->info.payloadSize;
1678 serverRequest.payload = (uint8_t *) OICMalloc(requestInfo->info.payloadSize);
1679 if (!serverRequest.payload)
1681 OIC_LOG(ERROR, TAG, "Allocation for payload failed.");
1684 memcpy (serverRequest.payload, requestInfo->info.payload,
1685 requestInfo->info.payloadSize);
1689 serverRequest.reqTotalSize = 0;
1692 switch (requestInfo->method)
1695 serverRequest.method = OC_REST_GET;
1698 serverRequest.method = OC_REST_PUT;
1701 serverRequest.method = OC_REST_POST;
1704 serverRequest.method = OC_REST_DELETE;
1707 OIC_LOG_V(ERROR, TAG, "Received CA method %d not supported", requestInfo->method);
1708 SendDirectStackResponse(endPoint, requestInfo->info.messageId, CA_BAD_REQ,
1709 requestInfo->info.type, requestInfo->info.numOptions,
1710 requestInfo->info.options, requestInfo->info.token,
1711 requestInfo->info.tokenLength, requestInfo->info.resourceUri);
1712 OICFree(serverRequest.payload);
1716 OIC_LOG_BUFFER(INFO, TAG, (const uint8_t *)requestInfo->info.token,
1717 requestInfo->info.tokenLength);
1719 serverRequest.tokenLength = requestInfo->info.tokenLength;
1720 if (serverRequest.tokenLength) {
1722 serverRequest.requestToken = (CAToken_t)OICMalloc(requestInfo->info.tokenLength);
1724 if (!serverRequest.requestToken)
1726 OIC_LOG(FATAL, TAG, "Allocation for token failed.");
1727 SendDirectStackResponse(endPoint, requestInfo->info.messageId, CA_INTERNAL_SERVER_ERROR,
1728 requestInfo->info.type, requestInfo->info.numOptions,
1729 requestInfo->info.options, requestInfo->info.token,
1730 requestInfo->info.tokenLength, requestInfo->info.resourceUri);
1731 OICFree(serverRequest.payload);
1734 memcpy(serverRequest.requestToken, requestInfo->info.token, requestInfo->info.tokenLength);
1737 switch (requestInfo->info.acceptFormat)
1739 case CA_FORMAT_APPLICATION_CBOR:
1740 serverRequest.acceptFormat = OC_FORMAT_CBOR;
1742 case CA_FORMAT_UNDEFINED:
1743 serverRequest.acceptFormat = OC_FORMAT_UNDEFINED;
1746 serverRequest.acceptFormat = OC_FORMAT_UNSUPPORTED;
1749 if (requestInfo->info.type == CA_MSG_CONFIRM)
1751 serverRequest.qos = OC_HIGH_QOS;
1755 serverRequest.qos = OC_LOW_QOS;
1757 // CA does not need the following field
1758 // Are we sure CA does not need them? how is it responding to multicast
1759 serverRequest.delayedResNeeded = 0;
1761 serverRequest.coapID = requestInfo->info.messageId;
1763 CopyEndpointToDevAddr(endPoint, &serverRequest.devAddr);
1765 // copy vendor specific header options
1766 uint8_t tempNum = (requestInfo->info.numOptions);
1768 // Assume no observation requested and it is a pure GET.
1769 // If obs registration/de-registration requested it'll be fetched from the
1770 // options in GetObserveHeaderOption()
1771 serverRequest.observationOption = OC_OBSERVE_NO_OPTION;
1773 GetObserveHeaderOption(&serverRequest.observationOption, requestInfo->info.options, &tempNum);
1774 if (requestInfo->info.numOptions > MAX_HEADER_OPTIONS)
1777 "The request info numOptions is greater than MAX_HEADER_OPTIONS");
1778 SendDirectStackResponse(endPoint, requestInfo->info.messageId, CA_BAD_OPT,
1779 requestInfo->info.type, requestInfo->info.numOptions,
1780 requestInfo->info.options, requestInfo->info.token,
1781 requestInfo->info.tokenLength, requestInfo->info.resourceUri);
1782 OICFree(serverRequest.payload);
1783 OICFree(serverRequest.requestToken);
1786 serverRequest.numRcvdVendorSpecificHeaderOptions = tempNum;
1787 if (serverRequest.numRcvdVendorSpecificHeaderOptions)
1789 memcpy (&(serverRequest.rcvdVendorSpecificHeaderOptions), requestInfo->info.options,
1790 sizeof(CAHeaderOption_t)*tempNum);
1793 requestResult = HandleStackRequests (&serverRequest);
1795 // Send ACK to client as precursor to slow response
1796 if(requestResult == OC_STACK_SLOW_RESOURCE)
1798 SendDirectStackResponse(endPoint, requestInfo->info.messageId, CA_EMPTY,
1799 CA_MSG_ACKNOWLEDGE,0, NULL, NULL, 0, NULL);
1801 else if(requestResult != OC_STACK_OK)
1803 OIC_LOG_V(ERROR, TAG, "HandleStackRequests failed. error: %d", requestResult);
1805 CAResponseResult_t stackResponse =
1806 OCToCAStackResult(requestResult, serverRequest.method);
1808 SendDirectStackResponse(endPoint, requestInfo->info.messageId, stackResponse,
1809 requestInfo->info.type, requestInfo->info.numOptions,
1810 requestInfo->info.options, requestInfo->info.token,
1811 requestInfo->info.tokenLength, requestInfo->info.resourceUri);
1813 // requestToken is fed to HandleStackRequests, which then goes to AddServerRequest.
1814 // The token is copied in there, and is thus still owned by this function.
1815 OICFree(serverRequest.payload);
1816 OICFree(serverRequest.requestToken);
1817 OIC_LOG(INFO, TAG, "Exit OCHandleRequests");
1820 //This function will be called back by CA layer when a request is received
1821 void HandleCARequests(const CAEndpoint_t* endPoint, const CARequestInfo_t* requestInfo)
1823 OIC_LOG(INFO, TAG, "Enter HandleCARequests");
1826 OIC_LOG(ERROR, TAG, "endPoint is NULL");
1832 OIC_LOG(ERROR, TAG, "requestInfo is NULL");
1836 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
1837 #ifdef ROUTING_GATEWAY
1838 bool needRIHandling = false;
1839 bool isEmptyMsg = false;
1841 * Routing manager is going to update either of endpoint or request or both.
1842 * This typecasting is done to avoid unnecessary duplication of Endpoint and requestInfo
1843 * RM can update "routeData" option in endPoint so that future RI requests can be sent to proper
1844 * destination. It can also remove "RM" coap header option before passing request / response to
1845 * RI as this option will make no sense to either RI or application.
1847 OCStackResult ret = RMHandleRequest((CARequestInfo_t *)requestInfo, (CAEndpoint_t *)endPoint,
1848 &needRIHandling, &isEmptyMsg);
1849 if(OC_STACK_OK != ret || !needRIHandling)
1851 OIC_LOG_V(INFO, TAG, "Routing status![%d]. Not forwarding to RI", ret);
1857 * Put source in sender endpoint so that the next packet from application can be routed to
1858 * proper destination and remove RM header option.
1860 RMUpdateInfo((CAHeaderOption_t **) &(requestInfo->info.options),
1861 (uint8_t *) &(requestInfo->info.numOptions),
1862 (CAEndpoint_t *) endPoint);
1864 #ifdef ROUTING_GATEWAY
1868 * In Gateways, the MSGType in route option is used to check if the actual
1869 * response is EMPTY message(4 bytes CoAP Header). In case of Client, the
1870 * EMPTY response is sent in the form of POST request which need to be changed
1871 * to a EMPTY response by RM. This translation is done in this part of the code.
1873 OIC_LOG(INFO, TAG, "This is a Empty response from the Client");
1874 CAResponseInfo_t respInfo = {.result = CA_EMPTY,
1875 .info.messageId = requestInfo->info.messageId,
1876 .info.type = CA_MSG_ACKNOWLEDGE};
1877 OCHandleResponse(endPoint, &respInfo);
1883 // Normal handling of the packet
1884 OCHandleRequests(endPoint, requestInfo);
1886 OIC_LOG(INFO, TAG, "Exit HandleCARequests");
1889 bool validatePlatformInfo(OCPlatformInfo info)
1892 if (!info.platformID)
1894 OIC_LOG(ERROR, TAG, "No platform ID found.");
1898 if (info.manufacturerName)
1900 size_t lenManufacturerName = strlen(info.manufacturerName);
1902 if(lenManufacturerName == 0 || lenManufacturerName > MAX_MANUFACTURER_NAME_LENGTH)
1904 OIC_LOG(ERROR, TAG, "Manufacturer name fails length requirements.");
1910 OIC_LOG(ERROR, TAG, "No manufacturer name present");
1914 if (info.manufacturerUrl)
1916 if(strlen(info.manufacturerUrl) > MAX_MANUFACTURER_URL_LENGTH)
1918 OIC_LOG(ERROR, TAG, "Manufacturer url fails length requirements.");
1925 //-----------------------------------------------------------------------------
1927 //-----------------------------------------------------------------------------
1929 OCStackResult OCSetRAInfo(const OCRAInfo_t *raInfo)
1932 !raInfo->username ||
1933 !raInfo->hostname ||
1934 !raInfo->xmpp_domain)
1937 return OC_STACK_INVALID_PARAM;
1939 OCStackResult result = CAResultToOCResult(CASetRAInfo((const CARAInfo_t *) raInfo));
1940 gRASetInfo = (result == OC_STACK_OK)? true : false;
1946 OCStackResult OCInit(const char *ipAddr, uint16_t port, OCMode mode)
1950 return OCInit1(mode, OC_DEFAULT_FLAGS, OC_DEFAULT_FLAGS);
1953 OCStackResult OCInit1(OCMode mode, OCTransportFlags serverFlags, OCTransportFlags clientFlags)
1955 if(stackState == OC_STACK_INITIALIZED)
1957 OIC_LOG(INFO, TAG, "Subsequent calls to OCInit() without calling \
1958 OCStop() between them are ignored.");
1962 #ifndef ROUTING_GATEWAY
1963 if (OC_GATEWAY == mode)
1965 OIC_LOG(ERROR, TAG, "Routing Manager not supported");
1966 return OC_STACK_INVALID_PARAM;
1973 OIC_LOG(ERROR, TAG, "Need to call OCSetRAInfo before calling OCInit");
1974 return OC_STACK_ERROR;
1978 OCStackResult result = OC_STACK_ERROR;
1979 OIC_LOG(INFO, TAG, "Entering OCInit");
1982 if (!((mode == OC_CLIENT) || (mode == OC_SERVER) || (mode == OC_CLIENT_SERVER)
1983 || (mode == OC_GATEWAY)))
1985 OIC_LOG(ERROR, TAG, "Invalid mode");
1986 return OC_STACK_ERROR;
1990 if (mode == OC_CLIENT || mode == OC_CLIENT_SERVER || mode == OC_GATEWAY)
1992 caglobals.client = true;
1994 if (mode == OC_SERVER || mode == OC_CLIENT_SERVER || mode == OC_GATEWAY)
1996 caglobals.server = true;
1999 caglobals.serverFlags = (CATransportFlags_t)serverFlags;
2000 if (!(caglobals.serverFlags & CA_IPFAMILY_MASK))
2002 caglobals.serverFlags = (CATransportFlags_t)(caglobals.serverFlags|CA_IPV4|CA_IPV6);
2004 caglobals.clientFlags = (CATransportFlags_t)clientFlags;
2005 if (!(caglobals.clientFlags & CA_IPFAMILY_MASK))
2007 caglobals.clientFlags = (CATransportFlags_t)(caglobals.clientFlags|CA_IPV4|CA_IPV6);
2010 defaultDeviceHandler = NULL;
2011 defaultDeviceHandlerCallbackParameter = NULL;
2013 result = CAResultToOCResult(CAInitialize());
2014 VERIFY_SUCCESS(result, OC_STACK_OK);
2016 result = CAResultToOCResult(OCSelectNetwork());
2017 VERIFY_SUCCESS(result, OC_STACK_OK);
2019 switch (myStackMode)
2022 CARegisterHandler(HandleCARequests, HandleCAResponses, HandleCAErrorResponse);
2023 result = CAResultToOCResult(CAStartDiscoveryServer());
2024 OIC_LOG(INFO, TAG, "Client mode: CAStartDiscoveryServer");
2027 SRMRegisterHandler(HandleCARequests, HandleCAResponses, HandleCAErrorResponse);
2028 result = CAResultToOCResult(CAStartListeningServer());
2029 OIC_LOG(INFO, TAG, "Server mode: CAStartListeningServer");
2031 case OC_CLIENT_SERVER:
2033 SRMRegisterHandler(HandleCARequests, HandleCAResponses, HandleCAErrorResponse);
2034 result = CAResultToOCResult(CAStartListeningServer());
2035 if(result == OC_STACK_OK)
2037 result = CAResultToOCResult(CAStartDiscoveryServer());
2041 VERIFY_SUCCESS(result, OC_STACK_OK);
2044 CARegisterKeepAliveHandler(HandleKeepAliveConnCB);
2047 #ifdef WITH_PRESENCE
2048 PresenceTimeOutSize = sizeof (PresenceTimeOut) / sizeof (PresenceTimeOut[0]) - 1;
2049 #endif // WITH_PRESENCE
2051 //Update Stack state to initialized
2052 stackState = OC_STACK_INITIALIZED;
2054 // Initialize resource
2055 if(myStackMode != OC_CLIENT)
2057 result = initResources();
2060 // Initialize the SRM Policy Engine
2061 if(result == OC_STACK_OK)
2063 result = SRMInitPolicyEngine();
2064 // TODO after BeachHead delivery: consolidate into single SRMInit()
2066 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
2067 RMSetStackMode(mode);
2068 #ifdef ROUTING_GATEWAY
2069 if (OC_GATEWAY == myStackMode)
2071 result = RMInitialize();
2077 if (result == OC_STACK_OK)
2079 result = InitializeKeepAlive(myStackMode);
2084 if(result != OC_STACK_OK)
2086 OIC_LOG(ERROR, TAG, "Stack initialization error");
2087 deleteAllResources();
2089 stackState = OC_STACK_UNINITIALIZED;
2094 OCStackResult OCStop()
2096 OIC_LOG(INFO, TAG, "Entering OCStop");
2098 if (stackState == OC_STACK_UNINIT_IN_PROGRESS)
2100 OIC_LOG(DEBUG, TAG, "Stack already stopping, exiting");
2103 else if (stackState != OC_STACK_INITIALIZED)
2105 OIC_LOG(ERROR, TAG, "Stack not initialized");
2106 return OC_STACK_ERROR;
2109 stackState = OC_STACK_UNINIT_IN_PROGRESS;
2111 #ifdef WITH_PRESENCE
2112 // Ensure that the TTL associated with ANY and ALL presence notifications originating from
2113 // here send with the code "OC_STACK_PRESENCE_STOPPED" result.
2114 presenceResource.presenceTTL = 0;
2115 #endif // WITH_PRESENCE
2117 #ifdef ROUTING_GATEWAY
2118 if (OC_GATEWAY == myStackMode)
2125 TerminateKeepAlive(myStackMode);
2128 // Free memory dynamically allocated for resources
2129 deleteAllResources();
2131 DeletePlatformInfo();
2133 // Remove all observers
2134 DeleteObserverList();
2135 // Remove all the client callbacks
2136 DeleteClientCBList();
2138 // De-init the SRM Policy Engine
2139 // TODO after BeachHead delivery: consolidate into single SRMDeInit()
2140 SRMDeInitPolicyEngine();
2143 stackState = OC_STACK_UNINITIALIZED;
2147 OCStackResult OCStartMulticastServer()
2149 if(stackState != OC_STACK_INITIALIZED)
2151 OIC_LOG(ERROR, TAG, "OCStack is not initalized. Cannot start multicast server.");
2152 return OC_STACK_ERROR;
2154 CAResult_t ret = CAStartListeningServer();
2155 if (CA_STATUS_OK != ret)
2157 OIC_LOG_V(ERROR, TAG, "Failed starting listening server: %d", ret);
2158 return OC_STACK_ERROR;
2163 OCStackResult OCStopMulticastServer()
2165 CAResult_t ret = CAStopListeningServer();
2166 if (CA_STATUS_OK != ret)
2168 OIC_LOG_V(ERROR, TAG, "Failed stopping listening server: %d", ret);
2169 return OC_STACK_ERROR;
2174 CAMessageType_t qualityOfServiceToMessageType(OCQualityOfService qos)
2179 return CA_MSG_CONFIRM;
2184 return CA_MSG_NONCONFIRM;
2188 OCStackResult verifyUriQueryLength(const char *inputUri, uint16_t uriLen)
2192 query = strchr (inputUri, '?');
2196 if((query - inputUri) > MAX_URI_LENGTH)
2198 return OC_STACK_INVALID_URI;
2201 if((inputUri + uriLen - 1 - query) > MAX_QUERY_LENGTH)
2203 return OC_STACK_INVALID_QUERY;
2206 else if(uriLen > MAX_URI_LENGTH)
2208 return OC_STACK_INVALID_URI;
2214 * A request uri consists of the following components in order:
2217 * CoAP over UDP prefix "coap://"
2218 * CoAP over TCP prefix "coap+tcp://"
2220 * IPv6 address "[1234::5678]"
2221 * IPv4 address "192.168.1.1"
2222 * optional port ":5683"
2223 * resource uri "/oc/core..."
2225 * for PRESENCE requests, extract resource type.
2227 static OCStackResult ParseRequestUri(const char *fullUri,
2228 OCTransportAdapter adapter,
2229 OCTransportFlags flags,
2230 OCDevAddr **devAddr,
2232 char **resourceType)
2234 VERIFY_NON_NULL(fullUri, FATAL, OC_STACK_INVALID_CALLBACK);
2236 OCStackResult result = OC_STACK_OK;
2237 OCDevAddr *da = NULL;
2241 // provide defaults for all returned values
2248 *resourceUri = NULL;
2252 *resourceType = NULL;
2255 // delimit url prefix, if any
2256 const char *start = fullUri;
2257 char *slash2 = strstr(start, "//");
2262 char *slash = strchr(start, '/');
2265 return OC_STACK_INVALID_URI;
2268 // process url scheme
2269 size_t prefixLen = slash2 - fullUri;
2273 if ((prefixLen == sizeof(COAP_TCP) - 1) && (!strncmp(fullUri, COAP_TCP, prefixLen)))
2279 // TODO: this logic should come in with unit tests exercising the various strings
2280 // processs url prefix, if any
2281 size_t urlLen = slash - start;
2285 if (urlLen && devAddr)
2286 { // construct OCDevAddr
2287 if (start[0] == '[')
2289 char *close = strchr(++start, ']');
2290 if (!close || close > slash)
2292 return OC_STACK_INVALID_URI;
2295 if (close[1] == ':')
2302 adapter = (OCTransportAdapter)(adapter | OC_ADAPTER_TCP);
2306 adapter = (OCTransportAdapter)(adapter | OC_ADAPTER_IP);
2308 flags = (OCTransportFlags)(flags | OC_IP_USE_V6);
2312 char *dot = strchr(start, '.');
2313 if (dot && dot < slash)
2315 colon = strchr(start, ':');
2316 end = (colon && colon < slash) ? colon : slash;
2321 adapter = (OCTransportAdapter)(adapter | OC_ADAPTER_TCP);
2325 adapter = (OCTransportAdapter)(adapter | OC_ADAPTER_IP);
2327 flags = (OCTransportFlags)(flags | OC_IP_USE_V4);
2335 if (len >= sizeof(da->addr))
2337 return OC_STACK_INVALID_URI;
2339 // collect port, if any
2340 if (colon && colon < slash)
2342 for (colon++; colon < slash; colon++)
2345 if (c < '0' || c > '9')
2347 return OC_STACK_INVALID_URI;
2349 port = 10 * port + c - '0';
2354 if (len >= sizeof(da->addr))
2356 return OC_STACK_INVALID_URI;
2359 da = (OCDevAddr *)OICCalloc(sizeof (OCDevAddr), 1);
2362 return OC_STACK_NO_MEMORY;
2364 OICStrcpyPartial(da->addr, sizeof(da->addr), start, len);
2366 da->adapter = adapter;
2368 if (!strncmp(fullUri, "coaps:", 6))
2370 da->flags = (OCTransportFlags)(da->flags|CA_SECURE);
2375 // process resource uri, if any
2377 { // request uri and query
2378 size_t ulen = strlen(slash); // resource uri length
2379 size_t tlen = 0; // resource type length
2382 static const char strPresence[] = "/oic/ad?rt=";
2383 static const size_t lenPresence = sizeof(strPresence) - 1;
2384 if (!strncmp(slash, strPresence, lenPresence))
2386 type = slash + lenPresence;
2387 tlen = ulen - lenPresence;
2392 *resourceUri = (char *)OICMalloc(ulen + 1);
2395 result = OC_STACK_NO_MEMORY;
2398 strcpy(*resourceUri, slash);
2401 if (type && resourceType)
2403 *resourceType = (char *)OICMalloc(tlen + 1);
2406 result = OC_STACK_NO_MEMORY;
2410 OICStrcpy(*resourceType, (tlen+1), type);
2417 // free all returned values
2424 OICFree(*resourceUri);
2428 OICFree(*resourceType);
2433 static OCStackResult OCPreparePresence(CAEndpoint_t *endpoint,
2434 char *resourceUri, char **requestUri)
2436 char uri[CA_MAX_URI_LENGTH];
2438 FormCanonicalPresenceUri(endpoint, resourceUri, uri);
2440 *requestUri = OICStrdup(uri);
2443 return OC_STACK_NO_MEMORY;
2450 * Discover or Perform requests on a specified resource
2452 OCStackResult OCDoResource(OCDoHandle *handle,
2454 const char *requestUri,
2455 const OCDevAddr *destination,
2457 OCConnectivityType connectivityType,
2458 OCQualityOfService qos,
2459 OCCallbackData *cbData,
2460 OCHeaderOption *options,
2463 OIC_LOG(INFO, TAG, "Entering OCDoResource");
2465 // Validate input parameters
2466 VERIFY_NON_NULL(cbData, FATAL, OC_STACK_INVALID_CALLBACK);
2467 VERIFY_NON_NULL(cbData->cb, FATAL, OC_STACK_INVALID_CALLBACK);
2468 VERIFY_NON_NULL(requestUri , FATAL, OC_STACK_INVALID_URI);
2470 OCStackResult result = OC_STACK_ERROR;
2471 CAResult_t caResult;
2472 CAToken_t token = NULL;
2473 uint8_t tokenLength = CA_MAX_TOKEN_LEN;
2474 ClientCB *clientCB = NULL;
2475 OCDoHandle resHandle = NULL;
2476 CAEndpoint_t endpoint = {.adapter = CA_DEFAULT_ADAPTER};
2477 OCDevAddr tmpDevAddr = { OC_DEFAULT_ADAPTER };
2479 OCTransportAdapter adapter;
2480 OCTransportFlags flags;
2481 // the request contents are put here
2482 CARequestInfo_t requestInfo = {.method = CA_GET};
2483 // requestUri will be parsed into the following three variables
2484 OCDevAddr *devAddr = NULL;
2485 char *resourceUri = NULL;
2486 char *resourceType = NULL;
2488 // This validation is broken, but doesn't cause harm
2489 size_t uriLen = strlen(requestUri );
2490 if ((result = verifyUriQueryLength(requestUri , uriLen)) != OC_STACK_OK)
2496 * Support original behavior with address on resourceUri argument.
2498 adapter = (OCTransportAdapter)(connectivityType >> CT_ADAPTER_SHIFT);
2499 flags = (OCTransportFlags)(connectivityType & CT_MASK_FLAGS);
2501 result = ParseRequestUri(requestUri, adapter, flags, &devAddr, &resourceUri, &resourceType);
2503 if (result != OC_STACK_OK)
2505 OIC_LOG_V(DEBUG, TAG, "Unable to parse uri: %s", requestUri);
2512 case OC_REST_OBSERVE:
2513 case OC_REST_OBSERVE_ALL:
2514 case OC_REST_CANCEL_OBSERVE:
2515 requestInfo.method = CA_GET;
2518 requestInfo.method = CA_PUT;
2521 requestInfo.method = CA_POST;
2523 case OC_REST_DELETE:
2524 requestInfo.method = CA_DELETE;
2526 case OC_REST_DISCOVER:
2528 if (destination || devAddr)
2530 requestInfo.isMulticast = false;
2534 tmpDevAddr.adapter = adapter;
2535 tmpDevAddr.flags = flags;
2536 destination = &tmpDevAddr;
2537 requestInfo.isMulticast = true;
2539 // CA_DISCOVER will become GET and isMulticast
2540 requestInfo.method = CA_GET;
2542 #ifdef WITH_PRESENCE
2543 case OC_REST_PRESENCE:
2544 // Replacing method type with GET because "presence"
2545 // is a stack layer only implementation.
2546 requestInfo.method = CA_GET;
2550 result = OC_STACK_INVALID_METHOD;
2554 if (!devAddr && !destination)
2556 OIC_LOG(DEBUG, TAG, "no devAddr and no destination");
2557 result = OC_STACK_INVALID_PARAM;
2561 /* If not original behavior, use destination argument */
2562 if (destination && !devAddr)
2564 devAddr = (OCDevAddr *)OICMalloc(sizeof (OCDevAddr));
2567 result = OC_STACK_NO_MEMORY;
2570 *devAddr = *destination;
2573 resHandle = GenerateInvocationHandle();
2576 result = OC_STACK_NO_MEMORY;
2580 caResult = CAGenerateToken(&token, tokenLength);
2581 if (caResult != CA_STATUS_OK)
2583 OIC_LOG(ERROR, TAG, "CAGenerateToken error");
2584 result= OC_STACK_ERROR;
2588 // fill in request data
2589 requestInfo.info.type = qualityOfServiceToMessageType(qos);
2590 requestInfo.info.token = token;
2591 requestInfo.info.tokenLength = tokenLength;
2592 requestInfo.info.resourceUri = resourceUri;
2594 if ((method == OC_REST_OBSERVE) || (method == OC_REST_OBSERVE_ALL))
2596 result = CreateObserveHeaderOption (&(requestInfo.info.options),
2597 options, numOptions, OC_OBSERVE_REGISTER);
2598 if (result != OC_STACK_OK)
2602 requestInfo.info.numOptions = numOptions + 1;
2606 requestInfo.info.numOptions = numOptions;
2607 requestInfo.info.options =
2608 (CAHeaderOption_t*) OICCalloc(numOptions, sizeof(CAHeaderOption_t));
2609 memcpy(requestInfo.info.options, (CAHeaderOption_t*)options,
2610 numOptions * sizeof(CAHeaderOption_t));
2613 CopyDevAddrToEndpoint(devAddr, &endpoint);
2618 OCConvertPayload(payload, &requestInfo.info.payload, &requestInfo.info.payloadSize))
2621 OIC_LOG(ERROR, TAG, "Failed to create CBOR Payload");
2624 requestInfo.info.payloadFormat = CA_FORMAT_APPLICATION_CBOR;
2628 requestInfo.info.payload = NULL;
2629 requestInfo.info.payloadSize = 0;
2630 requestInfo.info.payloadFormat = CA_FORMAT_UNDEFINED;
2633 if (result != OC_STACK_OK)
2635 OIC_LOG(ERROR, TAG, "CACreateEndpoint error");
2639 // prepare for response
2640 #ifdef WITH_PRESENCE
2641 if (method == OC_REST_PRESENCE)
2643 char *presenceUri = NULL;
2644 result = OCPreparePresence(&endpoint, resourceUri, &presenceUri);
2645 if (OC_STACK_OK != result)
2650 // Assign full presence uri as coap://ip:port/oic/ad to add to callback list.
2651 // Presence notification will form a canonical uri to
2652 // look for callbacks into the application.
2653 resourceUri = presenceUri;
2657 ttl = GetTicks(MAX_CB_TIMEOUT_SECONDS * MILLISECONDS_PER_SECOND);
2658 result = AddClientCB(&clientCB, cbData, token, tokenLength, &resHandle,
2659 method, devAddr, resourceUri, resourceType, ttl);
2660 if (OC_STACK_OK != result)
2665 devAddr = NULL; // Client CB list entry now owns it
2666 resourceUri = NULL; // Client CB list entry now owns it
2667 resourceType = NULL; // Client CB list entry now owns it
2670 result = OCSendRequest(&endpoint, &requestInfo);
2671 if (OC_STACK_OK != result)
2678 *handle = resHandle;
2682 if (result != OC_STACK_OK)
2684 OIC_LOG(ERROR, TAG, "OCDoResource error");
2685 FindAndDeleteClientCB(clientCB);
2686 CADestroyToken(token);
2694 // This is the owner of the payload object, so we free it
2695 OCPayloadDestroy(payload);
2696 OICFree(requestInfo.info.payload);
2698 OICFree(resourceUri);
2699 OICFree(resourceType);
2700 OICFree(requestInfo.info.options);
2704 OCStackResult OCCancel(OCDoHandle handle, OCQualityOfService qos, OCHeaderOption * options,
2708 * This ftn is implemented one of two ways in the case of observation:
2710 * 1. qos == OC_NON_CONFIRMABLE. When observe is unobserved..
2711 * Remove the callback associated on client side.
2712 * When the next notification comes in from server,
2713 * reply with RESET message to server.
2714 * Keep in mind that the server will react to RESET only
2715 * if the last notification was sent as CON
2717 * 2. qos == OC_CONFIRMABLE. When OCCancel is called,
2718 * and it is associated with an observe request
2719 * (i.e. ClientCB->method == OC_REST_OBSERVE || OC_REST_OBSERVE_ALL),
2720 * Send CON Observe request to server with
2721 * observe flag = OC_RESOURCE_OBSERVE_DEREGISTER.
2722 * Remove the callback associated on client side.
2724 OCStackResult ret = OC_STACK_OK;
2725 CAEndpoint_t endpoint = {.adapter = CA_DEFAULT_ADAPTER};
2726 CARequestInfo_t requestInfo = {.method = CA_GET};
2730 return OC_STACK_INVALID_PARAM;
2733 ClientCB *clientCB = GetClientCB(NULL, 0, handle, NULL);
2736 OIC_LOG(ERROR, TAG, "Callback not found. Called OCCancel on same resource twice?");
2737 return OC_STACK_ERROR;
2740 switch (clientCB->method)
2742 case OC_REST_OBSERVE:
2743 case OC_REST_OBSERVE_ALL:
2745 OIC_LOG_V(INFO, TAG, "Canceling observation for resource %s", clientCB->requestUri);
2747 CopyDevAddrToEndpoint(clientCB->devAddr, &endpoint);
2749 if ((endpoint.adapter & CA_ADAPTER_IP) && qos != OC_HIGH_QOS)
2751 FindAndDeleteClientCB(clientCB);
2755 OIC_LOG(INFO, TAG, "Cancelling observation as CONFIRMABLE");
2757 requestInfo.info.type = qualityOfServiceToMessageType(qos);
2758 requestInfo.info.token = clientCB->token;
2759 requestInfo.info.tokenLength = clientCB->tokenLength;
2761 if (CreateObserveHeaderOption (&(requestInfo.info.options),
2762 options, numOptions, OC_OBSERVE_DEREGISTER) != OC_STACK_OK)
2764 return OC_STACK_ERROR;
2766 requestInfo.info.numOptions = numOptions + 1;
2767 requestInfo.info.resourceUri = OICStrdup (clientCB->requestUri);
2770 ret = OCSendRequest(&endpoint, &requestInfo);
2772 if (requestInfo.info.options)
2774 OICFree (requestInfo.info.options);
2776 if (requestInfo.info.resourceUri)
2778 OICFree (requestInfo.info.resourceUri);
2783 case OC_REST_DISCOVER:
2784 OIC_LOG_V(INFO, TAG, "Cancelling discovery callback for resource %s",
2785 clientCB->requestUri);
2786 FindAndDeleteClientCB(clientCB);
2789 #ifdef WITH_PRESENCE
2790 case OC_REST_PRESENCE:
2791 FindAndDeleteClientCB(clientCB);
2796 ret = OC_STACK_INVALID_METHOD;
2804 * @brief Register Persistent storage callback.
2805 * @param persistentStorageHandler [IN] Pointers to open, read, write, close & unlink handlers.
2807 * OC_STACK_OK - No errors; Success
2808 * OC_STACK_INVALID_PARAM - Invalid parameter
2810 OCStackResult OCRegisterPersistentStorageHandler(OCPersistentStorage* persistentStorageHandler)
2812 OIC_LOG(INFO, TAG, "RegisterPersistentStorageHandler !!");
2813 if(!persistentStorageHandler)
2815 OIC_LOG(ERROR, TAG, "The persistent storage handler is invalid");
2816 return OC_STACK_INVALID_PARAM;
2820 if( !persistentStorageHandler->open ||
2821 !persistentStorageHandler->close ||
2822 !persistentStorageHandler->read ||
2823 !persistentStorageHandler->unlink ||
2824 !persistentStorageHandler->write)
2826 OIC_LOG(ERROR, TAG, "The persistent storage handler is invalid");
2827 return OC_STACK_INVALID_PARAM;
2830 return SRMRegisterPersistentStorageHandler(persistentStorageHandler);
2833 #ifdef WITH_PRESENCE
2835 OCStackResult OCProcessPresence()
2837 OCStackResult result = OC_STACK_OK;
2839 // the following line floods the log with messages that are irrelevant
2840 // to most purposes. Uncomment as needed.
2841 //OIC_LOG(INFO, TAG, "Entering RequestPresence");
2842 ClientCB* cbNode = NULL;
2843 OCClientResponse clientResponse;
2844 OCStackApplicationResult cbResult = OC_STACK_DELETE_TRANSACTION;
2846 LL_FOREACH(cbList, cbNode)
2848 if (OC_REST_PRESENCE != cbNode->method || !cbNode->presence)
2853 uint32_t now = GetTicks(0);
2854 OIC_LOG_V(DEBUG, TAG, "this TTL level %d",
2855 cbNode->presence->TTLlevel);
2856 OIC_LOG_V(DEBUG, TAG, "current ticks %d", now);
2858 if (cbNode->presence->TTLlevel > PresenceTimeOutSize)
2863 if (cbNode->presence->TTLlevel < PresenceTimeOutSize)
2865 OIC_LOG_V(DEBUG, TAG, "timeout ticks %d",
2866 cbNode->presence->timeOut[cbNode->presence->TTLlevel]);
2868 if (cbNode->presence->TTLlevel >= PresenceTimeOutSize)
2870 OIC_LOG(DEBUG, TAG, "No more timeout ticks");
2872 clientResponse.sequenceNumber = 0;
2873 clientResponse.result = OC_STACK_PRESENCE_TIMEOUT;
2874 clientResponse.devAddr = *cbNode->devAddr;
2875 FixUpClientResponse(&clientResponse);
2876 clientResponse.payload = NULL;
2878 // Increment the TTLLevel (going to a next state), so we don't keep
2879 // sending presence notification to client.
2880 cbNode->presence->TTLlevel++;
2881 OIC_LOG_V(DEBUG, TAG, "moving to TTL level %d",
2882 cbNode->presence->TTLlevel);
2884 cbResult = cbNode->callBack(cbNode->context, cbNode->handle, &clientResponse);
2885 if (cbResult == OC_STACK_DELETE_TRANSACTION)
2887 FindAndDeleteClientCB(cbNode);
2891 if (now < cbNode->presence->timeOut[cbNode->presence->TTLlevel])
2896 CAEndpoint_t endpoint = {.adapter = CA_DEFAULT_ADAPTER};
2897 CAInfo_t requestData = {.type = CA_MSG_CONFIRM};
2898 CARequestInfo_t requestInfo = {.method = CA_GET};
2900 OIC_LOG(DEBUG, TAG, "time to test server presence");
2902 CopyDevAddrToEndpoint(cbNode->devAddr, &endpoint);
2904 requestData.type = CA_MSG_NONCONFIRM;
2905 requestData.token = cbNode->token;
2906 requestData.tokenLength = cbNode->tokenLength;
2907 requestData.resourceUri = OC_RSRVD_PRESENCE_URI;
2908 requestInfo.method = CA_GET;
2909 requestInfo.info = requestData;
2911 result = OCSendRequest(&endpoint, &requestInfo);
2912 if (OC_STACK_OK != result)
2917 cbNode->presence->TTLlevel++;
2918 OIC_LOG_V(DEBUG, TAG, "moving to TTL level %d", cbNode->presence->TTLlevel);
2921 if (result != OC_STACK_OK)
2923 OIC_LOG(ERROR, TAG, "OCProcessPresence error");
2928 #endif // WITH_PRESENCE
2930 OCStackResult OCProcess()
2932 #ifdef WITH_PRESENCE
2933 OCProcessPresence();
2935 CAHandleRequestResponse();
2937 #ifdef ROUTING_GATEWAY
2947 #ifdef WITH_PRESENCE
2948 OCStackResult OCStartPresence(const uint32_t ttl)
2950 uint8_t tokenLength = CA_MAX_TOKEN_LEN;
2951 OCChangeResourceProperty(
2952 &(((OCResource *)presenceResource.handle)->resourceProperties),
2955 if (OC_MAX_PRESENCE_TTL_SECONDS < ttl)
2957 presenceResource.presenceTTL = OC_MAX_PRESENCE_TTL_SECONDS;
2958 OIC_LOG(INFO, TAG, "Setting Presence TTL to max value");
2962 presenceResource.presenceTTL = OC_DEFAULT_PRESENCE_TTL_SECONDS;
2963 OIC_LOG(INFO, TAG, "Setting Presence TTL to default value");
2967 presenceResource.presenceTTL = ttl;
2969 OIC_LOG_V(DEBUG, TAG, "Presence TTL is %" PRIu32 " seconds", presenceResource.presenceTTL);
2971 if (OC_PRESENCE_UNINITIALIZED == presenceState)
2973 presenceState = OC_PRESENCE_INITIALIZED;
2975 OCDevAddr devAddr = { OC_DEFAULT_ADAPTER };
2977 CAToken_t caToken = NULL;
2978 CAResult_t caResult = CAGenerateToken(&caToken, tokenLength);
2979 if (caResult != CA_STATUS_OK)
2981 OIC_LOG(ERROR, TAG, "CAGenerateToken error");
2982 CADestroyToken(caToken);
2983 return OC_STACK_ERROR;
2986 AddObserver(OC_RSRVD_PRESENCE_URI, NULL, 0, caToken, tokenLength,
2987 (OCResource *)presenceResource.handle, OC_LOW_QOS, OC_FORMAT_UNDEFINED, &devAddr);
2988 CADestroyToken(caToken);
2991 // Each time OCStartPresence is called
2992 // a different random 32-bit integer number is used
2993 ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
2995 return SendPresenceNotification(((OCResource *)presenceResource.handle)->rsrcType,
2996 OC_PRESENCE_TRIGGER_CREATE);
2999 OCStackResult OCStopPresence()
3001 OCStackResult result = OC_STACK_ERROR;
3003 if(presenceResource.handle)
3005 ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
3007 // make resource inactive
3008 result = OCChangeResourceProperty(
3009 &(((OCResource *) presenceResource.handle)->resourceProperties),
3013 if(result != OC_STACK_OK)
3016 "Changing the presence resource properties to ACTIVE not successful");
3020 return SendStopNotification();
3024 OCStackResult OCSetDefaultDeviceEntityHandler(OCDeviceEntityHandler entityHandler,
3025 void* callbackParameter)
3027 defaultDeviceHandler = entityHandler;
3028 defaultDeviceHandlerCallbackParameter = callbackParameter;
3033 OCStackResult OCSetPlatformInfo(OCPlatformInfo platformInfo)
3035 OIC_LOG(INFO, TAG, "Entering OCSetPlatformInfo");
3037 if(myStackMode == OC_SERVER || myStackMode == OC_CLIENT_SERVER || myStackMode == OC_GATEWAY)
3039 if (validatePlatformInfo(platformInfo))
3041 return SavePlatformInfo(platformInfo);
3045 return OC_STACK_INVALID_PARAM;
3050 return OC_STACK_ERROR;
3054 OCStackResult OCSetDeviceInfo(OCDeviceInfo deviceInfo)
3056 OIC_LOG(INFO, TAG, "Entering OCSetDeviceInfo");
3058 if (!deviceInfo.deviceName || deviceInfo.deviceName[0] == '\0')
3060 OIC_LOG(ERROR, TAG, "Null or empty device name.");
3061 return OC_STACK_INVALID_PARAM;
3064 if (deviceInfo.types)
3066 OCStringLL *type = deviceInfo.types;
3067 OCResource *resource = findResource((OCResource *) deviceResource);
3070 return OC_STACK_INVALID_PARAM;
3072 deleteResourceType(resource->rsrcType);
3073 resource->rsrcType = NULL;
3077 OCBindResourceTypeToResource(deviceResource, type->value);
3081 return SaveDeviceInfo(deviceInfo);
3084 OCStackResult OCCreateResource(OCResourceHandle *handle,
3085 const char *resourceTypeName,
3086 const char *resourceInterfaceName,
3087 const char *uri, OCEntityHandler entityHandler,
3088 void* callbackParam,
3089 uint8_t resourceProperties)
3092 OCResource *pointer = NULL;
3093 OCStackResult result = OC_STACK_ERROR;
3095 OIC_LOG(INFO, TAG, "Entering OCCreateResource");
3097 if(myStackMode == OC_CLIENT)
3099 return OC_STACK_INVALID_PARAM;
3101 // Validate parameters
3102 if(!uri || uri[0]=='\0' || strlen(uri)>=MAX_URI_LENGTH )
3104 OIC_LOG(ERROR, TAG, "URI is empty or too long");
3105 return OC_STACK_INVALID_URI;
3107 // Is it presented during resource discovery?
3108 if (!handle || !resourceTypeName || resourceTypeName[0] == '\0' )
3110 OIC_LOG(ERROR, TAG, "Input parameter is NULL");
3111 return OC_STACK_INVALID_PARAM;
3114 if(!resourceInterfaceName || strlen(resourceInterfaceName) == 0)
3116 resourceInterfaceName = OC_RSRVD_INTERFACE_DEFAULT;
3119 // Make sure resourceProperties bitmask has allowed properties specified
3120 if (resourceProperties
3121 > (OC_ACTIVE | OC_DISCOVERABLE | OC_OBSERVABLE | OC_SLOW | OC_SECURE |
3122 OC_EXPLICIT_DISCOVERABLE))
3124 OIC_LOG(ERROR, TAG, "Invalid property");
3125 return OC_STACK_INVALID_PARAM;
3128 // If the headResource is NULL, then no resources have been created...
3129 pointer = headResource;
3132 // At least one resources is in the resource list, so we need to search for
3133 // repeated URLs, which are not allowed. If a repeat is found, exit with an error
3136 if (strncmp(uri, pointer->uri, MAX_URI_LENGTH) == 0)
3138 OIC_LOG_V(ERROR, TAG, "Resource %s already exists", uri);
3139 return OC_STACK_INVALID_PARAM;
3141 pointer = pointer->next;
3144 // Create the pointer and insert it into the resource list
3145 pointer = (OCResource *) OICCalloc(1, sizeof(OCResource));
3148 result = OC_STACK_NO_MEMORY;
3151 pointer->sequenceNum = OC_OFFSET_SEQUENCE_NUMBER;
3153 insertResource(pointer);
3156 pointer->uri = OICStrdup(uri);
3159 result = OC_STACK_NO_MEMORY;
3163 // Set properties. Set OC_ACTIVE
3164 pointer->resourceProperties = (OCResourceProperty) (resourceProperties
3167 // Add the resourcetype to the resource
3168 result = BindResourceTypeToResource(pointer, resourceTypeName);
3169 if (result != OC_STACK_OK)
3171 OIC_LOG(ERROR, TAG, "Error adding resourcetype");
3175 // Add the resourceinterface to the resource
3176 result = BindResourceInterfaceToResource(pointer, resourceInterfaceName);
3177 if (result != OC_STACK_OK)
3179 OIC_LOG(ERROR, TAG, "Error adding resourceinterface");
3183 // If an entity handler has been passed, attach it to the newly created
3184 // resource. Otherwise, set the default entity handler.
3187 pointer->entityHandler = entityHandler;
3188 pointer->entityHandlerCallbackParam = callbackParam;
3192 pointer->entityHandler = defaultResourceEHandler;
3193 pointer->entityHandlerCallbackParam = NULL;
3196 // Initialize a pointer indicating child resources in case of collection
3197 pointer->rsrcChildResourcesHead = NULL;
3200 result = OC_STACK_OK;
3202 #ifdef WITH_PRESENCE
3203 if (presenceResource.handle)
3205 ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
3206 SendPresenceNotification(pointer->rsrcType, OC_PRESENCE_TRIGGER_CREATE);
3210 if (result != OC_STACK_OK)
3212 // Deep delete of resource and other dynamic elements that it contains
3213 deleteResource(pointer);
3218 OCStackResult OCBindResource(
3219 OCResourceHandle collectionHandle, OCResourceHandle resourceHandle)
3221 OCResource *resource = NULL;
3222 OCChildResource *tempChildResource = NULL;
3223 OCChildResource *newChildResource = NULL;
3225 OIC_LOG(INFO, TAG, "Entering OCBindResource");
3227 // Validate parameters
3228 VERIFY_NON_NULL(collectionHandle, ERROR, OC_STACK_ERROR);
3229 VERIFY_NON_NULL(resourceHandle, ERROR, OC_STACK_ERROR);
3230 // Container cannot contain itself
3231 if (collectionHandle == resourceHandle)
3233 OIC_LOG(ERROR, TAG, "Added handle equals collection handle");
3234 return OC_STACK_INVALID_PARAM;
3237 // Use the handle to find the resource in the resource linked list
3238 resource = findResource((OCResource *) collectionHandle);
3241 OIC_LOG(ERROR, TAG, "Collection handle not found");
3242 return OC_STACK_INVALID_PARAM;
3245 // Look for an open slot to add add the child resource.
3246 // If found, add it and return success
3248 tempChildResource = resource->rsrcChildResourcesHead;
3250 while(resource->rsrcChildResourcesHead && tempChildResource->next)
3252 // TODO: what if one of child resource was deregistered without unbinding?
3253 tempChildResource = tempChildResource->next;
3256 // Do memory allocation for child resource
3257 newChildResource = (OCChildResource *) OICCalloc(1, sizeof(OCChildResource));
3258 if(!newChildResource)
3260 OIC_LOG(ERROR, TAG, "Adding new child resource is failed due to memory allocation failure");
3261 return OC_STACK_ERROR;
3264 newChildResource->rsrcResource = (OCResource *) resourceHandle;
3265 newChildResource->next = NULL;
3267 if(!resource->rsrcChildResourcesHead)
3269 resource->rsrcChildResourcesHead = newChildResource;
3272 tempChildResource->next = newChildResource;
3275 OIC_LOG(INFO, TAG, "resource bound");
3277 #ifdef WITH_PRESENCE
3278 if (presenceResource.handle)
3280 ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
3281 SendPresenceNotification(((OCResource *) resourceHandle)->rsrcType,
3282 OC_PRESENCE_TRIGGER_CHANGE);
3289 OCStackResult OCUnBindResource(
3290 OCResourceHandle collectionHandle, OCResourceHandle resourceHandle)
3292 OCResource *resource = NULL;
3293 OCChildResource *tempChildResource = NULL;
3294 OCChildResource *tempLastChildResource = NULL;
3296 OIC_LOG(INFO, TAG, "Entering OCUnBindResource");
3298 // Validate parameters
3299 VERIFY_NON_NULL(collectionHandle, ERROR, OC_STACK_ERROR);
3300 VERIFY_NON_NULL(resourceHandle, ERROR, OC_STACK_ERROR);
3301 // Container cannot contain itself
3302 if (collectionHandle == resourceHandle)
3304 OIC_LOG(ERROR, TAG, "removing handle equals collection handle");
3305 return OC_STACK_INVALID_PARAM;
3308 // Use the handle to find the resource in the resource linked list
3309 resource = findResource((OCResource *) collectionHandle);
3312 OIC_LOG(ERROR, TAG, "Collection handle not found");
3313 return OC_STACK_INVALID_PARAM;
3316 // Look for an open slot to add add the child resource.
3317 // If found, add it and return success
3318 if(!resource->rsrcChildResourcesHead)
3320 OIC_LOG(INFO, TAG, "resource not found in collection");
3322 // Unable to add resourceHandle, so return error
3323 return OC_STACK_ERROR;
3327 tempChildResource = resource->rsrcChildResourcesHead;
3329 while (tempChildResource)
3331 if(tempChildResource->rsrcResource == resourceHandle)
3333 // if resource going to be unbinded is the head one.
3334 if( tempChildResource == resource->rsrcChildResourcesHead )
3336 OCChildResource *temp = resource->rsrcChildResourcesHead->next;
3337 OICFree(resource->rsrcChildResourcesHead);
3338 resource->rsrcChildResourcesHead = temp;
3343 OCChildResource *temp = tempChildResource->next;
3344 OICFree(tempChildResource);
3345 tempLastChildResource->next = temp;
3349 OIC_LOG(INFO, TAG, "resource unbound");
3351 // Send notification when resource is unbounded successfully.
3352 #ifdef WITH_PRESENCE
3353 if (presenceResource.handle)
3355 ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
3356 SendPresenceNotification(((OCResource *) resourceHandle)->rsrcType,
3357 OC_PRESENCE_TRIGGER_CHANGE);
3360 tempChildResource = NULL;
3361 tempLastChildResource = NULL;
3367 tempLastChildResource = tempChildResource;
3368 tempChildResource = tempChildResource->next;
3371 OIC_LOG(INFO, TAG, "resource not found in collection");
3373 tempChildResource = NULL;
3374 tempLastChildResource = NULL;
3376 // Unable to add resourceHandle, so return error
3377 return OC_STACK_ERROR;
3380 // Precondition is that the parameter has been checked to not equal NULL.
3381 static bool ValidateResourceTypeInterface(const char *resourceItemName)
3383 if (resourceItemName[0] < 'a' || resourceItemName[0] > 'z')
3389 while (resourceItemName[index] != '\0')
3391 if (resourceItemName[index] != '.' &&
3392 resourceItemName[index] != '-' &&
3393 (resourceItemName[index] < 'a' || resourceItemName[index] > 'z') &&
3394 (resourceItemName[index] < '0' || resourceItemName[index] > '9'))
3403 OCStackResult BindResourceTypeToResource(OCResource* resource,
3404 const char *resourceTypeName)
3406 OCResourceType *pointer = NULL;
3408 OCStackResult result = OC_STACK_ERROR;
3410 VERIFY_NON_NULL(resourceTypeName, ERROR, OC_STACK_INVALID_PARAM);
3412 if (!ValidateResourceTypeInterface(resourceTypeName))
3414 OIC_LOG(ERROR, TAG, "resource type illegal (see RFC 6690)");
3415 return OC_STACK_INVALID_PARAM;
3418 pointer = (OCResourceType *) OICCalloc(1, sizeof(OCResourceType));
3421 result = OC_STACK_NO_MEMORY;
3425 str = OICStrdup(resourceTypeName);
3428 result = OC_STACK_NO_MEMORY;
3431 pointer->resourcetypename = str;
3432 pointer->next = NULL;
3434 insertResourceType(resource, pointer);
3435 result = OC_STACK_OK;
3438 if (result != OC_STACK_OK)
3447 OCStackResult BindResourceInterfaceToResource(OCResource* resource,
3448 const char *resourceInterfaceName)
3450 OCResourceInterface *pointer = NULL;
3452 OCStackResult result = OC_STACK_ERROR;
3454 VERIFY_NON_NULL(resourceInterfaceName, ERROR, OC_STACK_INVALID_PARAM);
3456 if (!ValidateResourceTypeInterface(resourceInterfaceName))
3458 OIC_LOG(ERROR, TAG, "resource /interface illegal (see RFC 6690)");
3459 return OC_STACK_INVALID_PARAM;
3462 OIC_LOG_V(INFO, TAG, "Binding %s interface to %s", resourceInterfaceName, resource->uri);
3464 pointer = (OCResourceInterface *) OICCalloc(1, sizeof(OCResourceInterface));
3467 result = OC_STACK_NO_MEMORY;
3471 str = OICStrdup(resourceInterfaceName);
3474 result = OC_STACK_NO_MEMORY;
3477 pointer->name = str;
3479 // Bind the resourceinterface to the resource
3480 insertResourceInterface(resource, pointer);
3482 result = OC_STACK_OK;
3485 if (result != OC_STACK_OK)
3494 OCStackResult OCBindResourceTypeToResource(OCResourceHandle handle,
3495 const char *resourceTypeName)
3498 OCStackResult result = OC_STACK_ERROR;
3499 OCResource *resource = NULL;
3501 resource = findResource((OCResource *) handle);
3504 OIC_LOG(ERROR, TAG, "Resource not found");
3505 return OC_STACK_ERROR;
3508 result = BindResourceTypeToResource(resource, resourceTypeName);
3510 #ifdef WITH_PRESENCE
3511 if(presenceResource.handle)
3513 ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
3514 SendPresenceNotification(resource->rsrcType, OC_PRESENCE_TRIGGER_CHANGE);
3521 OCStackResult OCBindResourceInterfaceToResource(OCResourceHandle handle,
3522 const char *resourceInterfaceName)
3525 OCStackResult result = OC_STACK_ERROR;
3526 OCResource *resource = NULL;
3528 resource = findResource((OCResource *) handle);
3531 OIC_LOG(ERROR, TAG, "Resource not found");
3532 return OC_STACK_ERROR;
3535 result = BindResourceInterfaceToResource(resource, resourceInterfaceName);
3537 #ifdef WITH_PRESENCE
3538 if (presenceResource.handle)
3540 ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
3541 SendPresenceNotification(resource->rsrcType, OC_PRESENCE_TRIGGER_CHANGE);
3548 OCStackResult OCGetNumberOfResources(uint8_t *numResources)
3550 OCResource *pointer = headResource;
3552 VERIFY_NON_NULL(numResources, ERROR, OC_STACK_INVALID_PARAM);
3556 *numResources = *numResources + 1;
3557 pointer = pointer->next;
3562 OCResourceHandle OCGetResourceHandle(uint8_t index)
3564 OCResource *pointer = headResource;
3566 for( uint8_t i = 0; i < index && pointer; ++i)
3568 pointer = pointer->next;
3570 return (OCResourceHandle) pointer;
3573 OCStackResult OCDeleteResource(OCResourceHandle handle)
3577 OIC_LOG(ERROR, TAG, "Invalid handle for deletion");
3578 return OC_STACK_INVALID_PARAM;
3581 OCResource *resource = findResource((OCResource *) handle);
3582 if (resource == NULL)
3584 OIC_LOG(ERROR, TAG, "Resource not found");
3585 return OC_STACK_NO_RESOURCE;
3588 if (deleteResource((OCResource *) handle) != OC_STACK_OK)
3590 OIC_LOG(ERROR, TAG, "Error deleting resource");
3591 return OC_STACK_ERROR;
3597 const char *OCGetResourceUri(OCResourceHandle handle)
3599 OCResource *resource = NULL;
3601 resource = findResource((OCResource *) handle);
3604 return resource->uri;
3606 return (const char *) NULL;
3609 OCResourceProperty OCGetResourceProperties(OCResourceHandle handle)
3611 OCResource *resource = NULL;
3613 resource = findResource((OCResource *) handle);
3616 return resource->resourceProperties;
3618 return (OCResourceProperty)-1;
3621 OCStackResult OCGetNumberOfResourceTypes(OCResourceHandle handle,
3622 uint8_t *numResourceTypes)
3624 OCResource *resource = NULL;
3625 OCResourceType *pointer = NULL;
3627 VERIFY_NON_NULL(numResourceTypes, ERROR, OC_STACK_INVALID_PARAM);
3628 VERIFY_NON_NULL(handle, ERROR, OC_STACK_INVALID_PARAM);
3630 *numResourceTypes = 0;
3632 resource = findResource((OCResource *) handle);
3635 pointer = resource->rsrcType;
3638 *numResourceTypes = *numResourceTypes + 1;
3639 pointer = pointer->next;
3645 const char *OCGetResourceTypeName(OCResourceHandle handle, uint8_t index)
3647 OCResourceType *resourceType = NULL;
3649 resourceType = findResourceTypeAtIndex(handle, index);
3652 return resourceType->resourcetypename;
3654 return (const char *) NULL;
3657 OCStackResult OCGetNumberOfResourceInterfaces(OCResourceHandle handle,
3658 uint8_t *numResourceInterfaces)
3660 OCResourceInterface *pointer = NULL;
3661 OCResource *resource = NULL;
3663 VERIFY_NON_NULL(handle, ERROR, OC_STACK_INVALID_PARAM);
3664 VERIFY_NON_NULL(numResourceInterfaces, ERROR, OC_STACK_INVALID_PARAM);
3666 *numResourceInterfaces = 0;
3667 resource = findResource((OCResource *) handle);
3670 pointer = resource->rsrcInterface;
3673 *numResourceInterfaces = *numResourceInterfaces + 1;
3674 pointer = pointer->next;
3680 const char *OCGetResourceInterfaceName(OCResourceHandle handle, uint8_t index)
3682 OCResourceInterface *resourceInterface = NULL;
3684 resourceInterface = findResourceInterfaceAtIndex(handle, index);
3685 if (resourceInterface)
3687 return resourceInterface->name;
3689 return (const char *) NULL;
3692 OCResourceHandle OCGetResourceHandleFromCollection(OCResourceHandle collectionHandle,
3695 OCResource *resource = NULL;
3696 OCChildResource *tempChildResource = NULL;
3699 resource = findResource((OCResource *) collectionHandle);
3705 tempChildResource = resource->rsrcChildResourcesHead;
3707 while(tempChildResource)
3711 return tempChildResource->rsrcResource;
3714 tempChildResource = tempChildResource->next;
3717 // In this case, the number of resource handles in the collection exceeds the index
3718 tempChildResource = NULL;
3722 OCStackResult OCBindResourceHandler(OCResourceHandle handle,
3723 OCEntityHandler entityHandler,
3724 void* callbackParam)
3726 OCResource *resource = NULL;
3728 // Validate parameters
3729 VERIFY_NON_NULL(handle, ERROR, OC_STACK_INVALID_PARAM);
3731 // Use the handle to find the resource in the resource linked list
3732 resource = findResource((OCResource *)handle);
3735 OIC_LOG(ERROR, TAG, "Resource not found");
3736 return OC_STACK_ERROR;
3740 resource->entityHandler = entityHandler;
3741 resource->entityHandlerCallbackParam = callbackParam;
3743 #ifdef WITH_PRESENCE
3744 if (presenceResource.handle)
3746 ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
3747 SendPresenceNotification(resource->rsrcType, OC_PRESENCE_TRIGGER_CHANGE);
3754 OCEntityHandler OCGetResourceHandler(OCResourceHandle handle)
3756 OCResource *resource = NULL;
3758 resource = findResource((OCResource *)handle);
3761 OIC_LOG(ERROR, TAG, "Resource not found");
3766 return resource->entityHandler;
3769 void incrementSequenceNumber(OCResource * resPtr)
3771 // Increment the sequence number
3772 resPtr->sequenceNum += 1;
3773 if (resPtr->sequenceNum == MAX_SEQUENCE_NUMBER)
3775 resPtr->sequenceNum = OC_OFFSET_SEQUENCE_NUMBER+1;
3780 #ifdef WITH_PRESENCE
3781 OCStackResult SendPresenceNotification(OCResourceType *resourceType,
3782 OCPresenceTrigger trigger)
3784 OCResource *resPtr = NULL;
3785 OCStackResult result = OC_STACK_ERROR;
3786 OCMethod method = OC_REST_PRESENCE;
3787 uint32_t maxAge = 0;
3788 resPtr = findResource((OCResource *) presenceResource.handle);
3791 return OC_STACK_NO_RESOURCE;
3794 if((((OCResource *) presenceResource.handle)->resourceProperties) & OC_ACTIVE)
3796 maxAge = presenceResource.presenceTTL;
3798 result = SendAllObserverNotification(method, resPtr, maxAge,
3799 trigger, resourceType, OC_LOW_QOS);
3805 OCStackResult SendStopNotification()
3807 OCResource *resPtr = NULL;
3808 OCStackResult result = OC_STACK_ERROR;
3809 OCMethod method = OC_REST_PRESENCE;
3810 resPtr = findResource((OCResource *) presenceResource.handle);
3813 return OC_STACK_NO_RESOURCE;
3816 // maxAge is 0. ResourceType is NULL.
3817 result = SendAllObserverNotification(method, resPtr, 0, OC_PRESENCE_TRIGGER_DELETE,
3823 #endif // WITH_PRESENCE
3824 OCStackResult OCNotifyAllObservers(OCResourceHandle handle, OCQualityOfService qos)
3826 OCResource *resPtr = NULL;
3827 OCStackResult result = OC_STACK_ERROR;
3828 OCMethod method = OC_REST_NOMETHOD;
3829 uint32_t maxAge = 0;
3831 OIC_LOG(INFO, TAG, "Notifying all observers");
3832 #ifdef WITH_PRESENCE
3833 if(handle == presenceResource.handle)
3837 #endif // WITH_PRESENCE
3838 VERIFY_NON_NULL(handle, ERROR, OC_STACK_ERROR);
3840 // Verify that the resource exists
3841 resPtr = findResource ((OCResource *) handle);
3844 return OC_STACK_NO_RESOURCE;
3848 //only increment in the case of regular observing (not presence)
3849 incrementSequenceNumber(resPtr);
3850 method = OC_REST_OBSERVE;
3851 maxAge = MAX_OBSERVE_AGE;
3852 #ifdef WITH_PRESENCE
3853 result = SendAllObserverNotification (method, resPtr, maxAge,
3854 OC_PRESENCE_TRIGGER_DELETE, NULL, qos);
3856 result = SendAllObserverNotification (method, resPtr, maxAge, qos);
3863 OCNotifyListOfObservers (OCResourceHandle handle,
3864 OCObservationId *obsIdList,
3865 uint8_t numberOfIds,
3866 const OCRepPayload *payload,
3867 OCQualityOfService qos)
3869 OIC_LOG(INFO, TAG, "Entering OCNotifyListOfObservers");
3871 OCResource *resPtr = NULL;
3872 //TODO: we should allow the server to define this
3873 uint32_t maxAge = MAX_OBSERVE_AGE;
3875 VERIFY_NON_NULL(handle, ERROR, OC_STACK_ERROR);
3876 VERIFY_NON_NULL(obsIdList, ERROR, OC_STACK_ERROR);
3877 VERIFY_NON_NULL(payload, ERROR, OC_STACK_ERROR);
3879 resPtr = findResource ((OCResource *) handle);
3880 if (NULL == resPtr || myStackMode == OC_CLIENT)
3882 return OC_STACK_NO_RESOURCE;
3886 incrementSequenceNumber(resPtr);
3888 return (SendListObserverNotification(resPtr, obsIdList, numberOfIds,
3889 payload, maxAge, qos));
3892 OCStackResult OCDoResponse(OCEntityHandlerResponse *ehResponse)
3894 OCStackResult result = OC_STACK_ERROR;
3895 OCServerRequest *serverRequest = NULL;
3897 OIC_LOG(INFO, TAG, "Entering OCDoResponse");
3899 // Validate input parameters
3900 VERIFY_NON_NULL(ehResponse, ERROR, OC_STACK_INVALID_PARAM);
3901 VERIFY_NON_NULL(ehResponse->requestHandle, ERROR, OC_STACK_INVALID_PARAM);
3904 // Get pointer to request info
3905 serverRequest = GetServerRequestUsingHandle((OCServerRequest *)ehResponse->requestHandle);
3908 // response handler in ocserverrequest.c. Usually HandleSingleResponse.
3909 result = serverRequest->ehResponseHandler(ehResponse);
3915 //#ifdef DIRECT_PAIRING
3916 const OCDPDev_t* OCDiscoverDirectPairingDevices(unsigned short waittime)
3918 OIC_LOG(INFO, TAG, "Start OCDiscoverDirectPairingDevices");
3919 if(OC_STACK_OK != DPDeviceDiscovery(waittime))
3921 OIC_LOG(ERROR, TAG, "Fail to discover Direct-Pairing device");
3925 return (const OCDPDev_t*)DPGetDiscoveredDevices();
3928 const OCDPDev_t* OCGetDirectPairedDevices()
3930 return (const OCDPDev_t*)DPGetPairedDevices();
3933 void DirectPairingCB (OCDirectPairingDev_t * peer, OCStackResult result)
3935 if (gDirectpairingCallback)
3937 gDirectpairingCallback((OCDPDev_t*)peer, result);
3938 gDirectpairingCallback = NULL;
3942 OCStackResult OCDoDirectPairing(OCDPDev_t* peer, OCPrm_t pmSel, char *pinNumber,
3943 OCDirectPairingCB resultCallback)
3945 OIC_LOG(INFO, TAG, "Start OCDoDirectPairing");
3948 OIC_LOG(ERROR, TAG, "Invalid parameters");
3949 return OC_STACK_INVALID_PARAM;
3952 if(NULL == resultCallback)
3954 OIC_LOG(ERROR, TAG, "Invalid parameters");
3955 return OC_STACK_INVALID_CALLBACK;
3957 gDirectpairingCallback = resultCallback;
3958 return DPDirectPairing((OCDirectPairingDev_t*)peer, (OicSecPrm_t)pmSel,
3959 pinNumber, DirectPairingCB);
3961 //#endif // DIRECT_PAIRING
3963 //-----------------------------------------------------------------------------
3964 // Private internal function definitions
3965 //-----------------------------------------------------------------------------
3966 static OCDoHandle GenerateInvocationHandle()
3968 OCDoHandle handle = NULL;
3969 // Generate token here, it will be deleted when the transaction is deleted
3970 handle = (OCDoHandle) OICMalloc(sizeof(uint8_t[CA_MAX_TOKEN_LEN]));
3973 OCFillRandomMem((uint8_t*)handle, sizeof(uint8_t[CA_MAX_TOKEN_LEN]));
3979 #ifdef WITH_PRESENCE
3980 OCStackResult OCChangeResourceProperty(OCResourceProperty * inputProperty,
3981 OCResourceProperty resourceProperties, uint8_t enable)
3985 return OC_STACK_INVALID_PARAM;
3987 if (resourceProperties
3988 > (OC_ACTIVE | OC_DISCOVERABLE | OC_OBSERVABLE | OC_SLOW))
3990 OIC_LOG(ERROR, TAG, "Invalid property");
3991 return OC_STACK_INVALID_PARAM;
3995 *inputProperty = (OCResourceProperty) (*inputProperty & ~(resourceProperties));
3999 *inputProperty = (OCResourceProperty) (*inputProperty | resourceProperties);
4005 OCStackResult initResources()
4007 OCStackResult result = OC_STACK_OK;
4009 headResource = NULL;
4010 tailResource = NULL;
4011 // Init Virtual Resources
4012 #ifdef WITH_PRESENCE
4013 presenceResource.presenceTTL = OC_DEFAULT_PRESENCE_TTL_SECONDS;
4015 result = OCCreateResource(&presenceResource.handle,
4016 OC_RSRVD_RESOURCE_TYPE_PRESENCE,
4018 OC_RSRVD_PRESENCE_URI,
4022 //make resource inactive
4023 result = OCChangeResourceProperty(
4024 &(((OCResource *) presenceResource.handle)->resourceProperties),
4027 #ifndef WITH_ARDUINO
4028 if (result == OC_STACK_OK)
4030 result = SRMInitSecureResources();
4034 if(result == OC_STACK_OK)
4036 result = OCCreateResource(&deviceResource,
4037 OC_RSRVD_RESOURCE_TYPE_DEVICE,
4038 OC_RSRVD_INTERFACE_DEFAULT,
4039 OC_RSRVD_DEVICE_URI,
4043 if(result == OC_STACK_OK)
4045 result = BindResourceInterfaceToResource((OCResource *)deviceResource,
4046 OC_RSRVD_INTERFACE_READ);
4050 if(result == OC_STACK_OK)
4052 result = OCCreateResource(&platformResource,
4053 OC_RSRVD_RESOURCE_TYPE_PLATFORM,
4054 OC_RSRVD_INTERFACE_DEFAULT,
4055 OC_RSRVD_PLATFORM_URI,
4059 if(result == OC_STACK_OK)
4061 result = BindResourceInterfaceToResource((OCResource *)platformResource,
4062 OC_RSRVD_INTERFACE_READ);
4069 void insertResource(OCResource *resource)
4073 headResource = resource;
4074 tailResource = resource;
4078 tailResource->next = resource;
4079 tailResource = resource;
4081 resource->next = NULL;
4084 OCResource *findResource(OCResource *resource)
4086 OCResource *pointer = headResource;
4090 if (pointer == resource)
4094 pointer = pointer->next;
4099 void deleteAllResources()
4101 OCResource *pointer = headResource;
4102 OCResource *temp = NULL;
4106 temp = pointer->next;
4107 #ifdef WITH_PRESENCE
4108 if (pointer != (OCResource *) presenceResource.handle)
4110 #endif // WITH_PRESENCE
4111 deleteResource(pointer);
4112 #ifdef WITH_PRESENCE
4114 #endif // WITH_PRESENCE
4118 SRMDeInitSecureResources();
4120 #ifdef WITH_PRESENCE
4121 // Ensure that the last resource to be deleted is the presence resource. This allows for all
4122 // presence notification attributed to their deletion to be processed.
4123 deleteResource((OCResource *) presenceResource.handle);
4124 #endif // WITH_PRESENCE
4127 OCStackResult deleteResource(OCResource *resource)
4129 OCResource *prev = NULL;
4130 OCResource *temp = NULL;
4133 OIC_LOG(DEBUG,TAG,"resource is NULL");
4134 return OC_STACK_INVALID_PARAM;
4137 OIC_LOG_V (INFO, TAG, "Deleting resource %s", resource->uri);
4139 temp = headResource;
4142 if (temp == resource)
4144 // Invalidate all Resource Properties.
4145 resource->resourceProperties = (OCResourceProperty) 0;
4146 #ifdef WITH_PRESENCE
4147 if(resource != (OCResource *) presenceResource.handle)
4149 #endif // WITH_PRESENCE
4150 OCNotifyAllObservers((OCResourceHandle)resource, OC_HIGH_QOS);
4151 #ifdef WITH_PRESENCE
4154 if(presenceResource.handle)
4156 ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
4157 SendPresenceNotification(resource->rsrcType, OC_PRESENCE_TRIGGER_DELETE);
4160 // Only resource in list.
4161 if (temp == headResource && temp == tailResource)
4163 headResource = NULL;
4164 tailResource = NULL;
4167 else if (temp == headResource)
4169 headResource = temp->next;
4172 else if (temp == tailResource)
4174 tailResource = prev;
4175 tailResource->next = NULL;
4179 prev->next = temp->next;
4182 deleteResourceElements(temp);
4193 return OC_STACK_ERROR;
4196 void deleteResourceElements(OCResource *resource)
4203 OICFree(resource->uri);
4204 deleteResourceType(resource->rsrcType);
4205 deleteResourceInterface(resource->rsrcInterface);
4208 void deleteResourceType(OCResourceType *resourceType)
4210 OCResourceType *pointer = resourceType;
4211 OCResourceType *next = NULL;
4215 next = pointer->next;
4216 OICFree(pointer->resourcetypename);
4222 void deleteResourceInterface(OCResourceInterface *resourceInterface)
4224 OCResourceInterface *pointer = resourceInterface;
4225 OCResourceInterface *next = NULL;
4229 next = pointer->next;
4230 OICFree(pointer->name);
4236 void insertResourceType(OCResource *resource, OCResourceType *resourceType)
4238 OCResourceType *pointer = NULL;
4239 OCResourceType *previous = NULL;
4240 if (!resource || !resourceType)
4244 // resource type list is empty.
4245 else if (!resource->rsrcType)
4247 resource->rsrcType = resourceType;
4251 pointer = resource->rsrcType;
4255 if (!strcmp(resourceType->resourcetypename, pointer->resourcetypename))
4257 OIC_LOG_V(INFO, TAG, "Type %s already exists", resourceType->resourcetypename);
4258 OICFree(resourceType->resourcetypename);
4259 OICFree(resourceType);
4263 pointer = pointer->next;
4268 previous->next = resourceType;
4271 resourceType->next = NULL;
4273 OIC_LOG_V(INFO, TAG, "Added type %s to %s", resourceType->resourcetypename, resource->uri);
4276 OCResourceType *findResourceTypeAtIndex(OCResourceHandle handle, uint8_t index)
4278 OCResource *resource = NULL;
4279 OCResourceType *pointer = NULL;
4281 // Find the specified resource
4282 resource = findResource((OCResource *) handle);
4288 // Make sure a resource has a resourcetype
4289 if (!resource->rsrcType)
4294 // Iterate through the list
4295 pointer = resource->rsrcType;
4296 for(uint8_t i = 0; i< index && pointer; ++i)
4298 pointer = pointer->next;
4303 OCResourceType *findResourceType(OCResourceType * resourceTypeList, const char * resourceTypeName)
4305 if(resourceTypeList && resourceTypeName)
4307 OCResourceType * rtPointer = resourceTypeList;
4308 while(resourceTypeName && rtPointer)
4310 if(rtPointer->resourcetypename &&
4311 strcmp(resourceTypeName, (const char *)
4312 (rtPointer->resourcetypename)) == 0)
4316 rtPointer = rtPointer->next;
4324 * Insert a new interface into interface linked list only if not already present.
4325 * If alredy present, 2nd arg is free'd.
4326 * Default interface will always be first if present.
4328 void insertResourceInterface(OCResource *resource, OCResourceInterface *newInterface)
4330 OCResourceInterface *pointer = NULL;
4331 OCResourceInterface *previous = NULL;
4333 newInterface->next = NULL;
4335 OCResourceInterface **firstInterface = &(resource->rsrcInterface);
4337 if (!*firstInterface)
4339 // If first interface is not oic.if.baseline, by default add it as first interface type.
4340 if (0 == strcmp(newInterface->name, OC_RSRVD_INTERFACE_DEFAULT))
4342 *firstInterface = newInterface;
4346 OCStackResult result = BindResourceInterfaceToResource(resource, OC_RSRVD_INTERFACE_DEFAULT);
4347 if (result != OC_STACK_OK)
4349 OICFree(newInterface->name);
4350 OICFree(newInterface);
4353 if (*firstInterface)
4355 (*firstInterface)->next = newInterface;
4359 // If once add oic.if.baseline, later too below code take care of freeing memory.
4360 else if (strcmp(newInterface->name, OC_RSRVD_INTERFACE_DEFAULT) == 0)
4362 if (strcmp((*firstInterface)->name, OC_RSRVD_INTERFACE_DEFAULT) == 0)
4364 OICFree(newInterface->name);
4365 OICFree(newInterface);
4368 // This code will not hit anymore, keeping
4371 newInterface->next = *firstInterface;
4372 *firstInterface = newInterface;
4377 pointer = *firstInterface;
4380 if (strcmp(newInterface->name, pointer->name) == 0)
4382 OICFree(newInterface->name);
4383 OICFree(newInterface);
4387 pointer = pointer->next;
4389 previous->next = newInterface;
4393 OCResourceInterface *findResourceInterfaceAtIndex(OCResourceHandle handle,
4396 OCResource *resource = NULL;
4397 OCResourceInterface *pointer = NULL;
4399 // Find the specified resource
4400 resource = findResource((OCResource *) handle);
4406 // Make sure a resource has a resourceinterface
4407 if (!resource->rsrcInterface)
4412 // Iterate through the list
4413 pointer = resource->rsrcInterface;
4415 for (uint8_t i = 0; i < index && pointer; ++i)
4417 pointer = pointer->next;
4423 * This function splits the uri using the '?' delimiter.
4424 * "uriWithoutQuery" is the block of characters between the beginning
4425 * till the delimiter or '\0' which ever comes first.
4426 * "query" is whatever is to the right of the delimiter if present.
4427 * No delimiter sets the query to NULL.
4428 * If either are present, they will be malloc'ed into the params 2, 3.
4429 * The first param, *uri is left untouched.
4431 * NOTE: This function does not account for whitespace at the end of the uri NOR
4432 * malformed uri's with '??'. Whitespace at the end will be assumed to be
4433 * part of the query.
4435 OCStackResult getQueryFromUri(const char * uri, char** query, char ** uriWithoutQuery)
4439 return OC_STACK_INVALID_URI;
4441 if(!query || !uriWithoutQuery)
4443 return OC_STACK_INVALID_PARAM;
4447 *uriWithoutQuery = NULL;
4449 size_t uriWithoutQueryLen = 0;
4450 size_t queryLen = 0;
4451 size_t uriLen = strlen(uri);
4453 char *pointerToDelimiter = strstr(uri, "?");
4455 uriWithoutQueryLen = pointerToDelimiter == NULL ? uriLen : (size_t)(pointerToDelimiter - uri);
4456 queryLen = pointerToDelimiter == NULL ? 0 : uriLen - uriWithoutQueryLen - 1;
4458 if (uriWithoutQueryLen)
4460 *uriWithoutQuery = (char *) OICCalloc(uriWithoutQueryLen + 1, 1);
4461 if (!*uriWithoutQuery)
4465 OICStrcpy(*uriWithoutQuery, uriWithoutQueryLen +1, uri);
4469 *query = (char *) OICCalloc(queryLen + 1, 1);
4472 OICFree(*uriWithoutQuery);
4473 *uriWithoutQuery = NULL;
4476 OICStrcpy(*query, queryLen + 1, pointerToDelimiter + 1);
4482 return OC_STACK_NO_MEMORY;
4485 static const OicUuid_t* OCGetServerInstanceID(void)
4487 static bool generated = false;
4488 static OicUuid_t sid;
4494 if (OC_STACK_OK != GetDoxmDeviceID(&sid))
4496 OIC_LOG(FATAL, TAG, "Generate UUID for Server Instance failed!");
4503 const char* OCGetServerInstanceIDString(void)
4505 static bool generated = false;
4506 static char sidStr[UUID_STRING_SIZE];
4513 const OicUuid_t *sid = OCGetServerInstanceID();
4514 if(OCConvertUuidToString(sid->id, sidStr) != RAND_UUID_OK)
4516 OIC_LOG(FATAL, TAG, "Generate UUID String for Server Instance failed!");
4524 CAResult_t OCSelectNetwork()
4526 CAResult_t retResult = CA_STATUS_FAILED;
4527 CAResult_t caResult = CA_STATUS_OK;
4529 CATransportAdapter_t connTypes[] = {
4531 CA_ADAPTER_RFCOMM_BTEDR,
4532 CA_ADAPTER_GATT_BTLE,
4535 ,CA_ADAPTER_REMOTE_ACCESS
4542 int numConnTypes = sizeof(connTypes)/sizeof(connTypes[0]);
4544 for(int i = 0; i<numConnTypes; i++)
4546 // Ignore CA_NOT_SUPPORTED error. The CA Layer may have not compiled in the interface.
4547 if(caResult == CA_STATUS_OK || caResult == CA_NOT_SUPPORTED)
4549 caResult = CASelectNetwork(connTypes[i]);
4550 if(caResult == CA_STATUS_OK)
4552 retResult = CA_STATUS_OK;
4557 if(retResult != CA_STATUS_OK)
4559 return caResult; // Returns error of appropriate transport that failed fatally.
4565 OCStackResult CAResultToOCResult(CAResult_t caResult)
4571 case CA_STATUS_INVALID_PARAM:
4572 return OC_STACK_INVALID_PARAM;
4573 case CA_ADAPTER_NOT_ENABLED:
4574 return OC_STACK_ADAPTER_NOT_ENABLED;
4575 case CA_SERVER_STARTED_ALREADY:
4577 case CA_SERVER_NOT_STARTED:
4578 return OC_STACK_ERROR;
4579 case CA_DESTINATION_NOT_REACHABLE:
4580 return OC_STACK_COMM_ERROR;
4581 case CA_SOCKET_OPERATION_FAILED:
4582 return OC_STACK_COMM_ERROR;
4583 case CA_SEND_FAILED:
4584 return OC_STACK_COMM_ERROR;
4585 case CA_RECEIVE_FAILED:
4586 return OC_STACK_COMM_ERROR;
4587 case CA_MEMORY_ALLOC_FAILED:
4588 return OC_STACK_NO_MEMORY;
4589 case CA_REQUEST_TIMEOUT:
4590 return OC_STACK_TIMEOUT;
4591 case CA_DESTINATION_DISCONNECTED:
4592 return OC_STACK_COMM_ERROR;
4593 case CA_STATUS_FAILED:
4594 return OC_STACK_ERROR;
4595 case CA_NOT_SUPPORTED:
4596 return OC_STACK_NOTIMPL;
4598 return OC_STACK_ERROR;