Update snapshot(2018-01-24)
[platform/upstream/iotivity.git] / resource / csdk / stack / src / ocstack.c
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
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
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
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.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21
22 //-----------------------------------------------------------------------------
23 // Includes
24 //-----------------------------------------------------------------------------
25
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
35 #endif
36 #ifndef __STDC_LIMIT_MACROS
37 #define __STDC_LIMIT_MACROS
38 #endif
39 #include "iotivity_config.h"
40 #include <inttypes.h>
41 #include <string.h>
42 #include <ctype.h>
43
44 #include "ocstack.h"
45 #include "ocstackinternal.h"
46 #include "ocresourcehandler.h"
47 #include "occlientcb.h"
48 #include "ocobserve.h"
49 #include "ocrandom.h"
50 #include "oic_malloc.h"
51 #include "oic_string.h"
52 #include "logger.h"
53 #include "trace.h"
54 #include "ocserverrequest.h"
55 #include "secureresourcemanager.h"
56 #include "psinterface.h"
57 #include "psiutils.h"
58 #include "doxmresource.h"
59 #include "cacommon.h"
60 #include "cainterface.h"
61 #include "ocpayload.h"
62 #include "ocpayloadcbor.h"
63 #include "cautilinterface.h"
64 #include "oicgroup.h"
65
66 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
67 #include "routingutility.h"
68 #ifdef ROUTING_GATEWAY
69 #include "routingmanager.h"
70 #endif
71 #endif
72
73 #ifdef TCP_ADAPTER
74 #include "oickeepaliveinternal.h"
75 #endif
76
77 //#ifdef DIRECT_PAIRING
78 #include "directpairing.h"
79 //#endif
80
81 #ifdef HAVE_ARDUINO_TIME_H
82 #include "Time.h"
83 #endif
84 #ifdef HAVE_SYS_TIME_H
85 #include <sys/time.h>
86 #endif
87 #include <coap/coap.h>
88
89 #ifdef HAVE_ARPA_INET_H
90 #include <arpa/inet.h>
91 #endif
92
93 #ifndef UINT32_MAX
94 #define UINT32_MAX   (0xFFFFFFFFUL)
95 #endif
96
97 //-----------------------------------------------------------------------------
98 // Typedefs
99 //-----------------------------------------------------------------------------
100 typedef enum
101 {
102     OC_STACK_UNINITIALIZED = 0,
103     OC_STACK_INITIALIZED,
104     OC_STACK_UNINIT_IN_PROGRESS
105 } OCStackState;
106
107 #ifdef WITH_PRESENCE
108 typedef enum
109 {
110     OC_PRESENCE_UNINITIALIZED = 0,
111     OC_PRESENCE_INITIALIZED
112 } OCPresenceState;
113 #endif
114
115 #if defined(__WITH_DTLS__) || defined (__WITH_TLS__)
116 typedef struct
117 {
118     OCOtmEventHandler cb;
119     void *ctx;
120 } OCOtmEventHandler_t;
121 #endif
122
123 //-----------------------------------------------------------------------------
124 // Private variables
125 //-----------------------------------------------------------------------------
126 static OCStackState stackState = OC_STACK_UNINITIALIZED;
127
128 OCResource *headResource = NULL;
129 static OCResource *tailResource = NULL;
130 static OCResourceHandle platformResource = {0};
131 static OCResourceHandle deviceResource = {0};
132 #ifdef MQ_BROKER
133 static OCResourceHandle brokerResource = {0};
134 #endif
135
136 #ifdef WITH_PRESENCE
137 static OCPresenceState presenceState = OC_PRESENCE_UNINITIALIZED;
138 static PresenceResource presenceResource = {0};
139 static uint8_t PresenceTimeOutSize = 0;
140 static uint32_t PresenceTimeOut[] = {50, 75, 85, 95, 100};
141 #endif
142
143 static OCMode myStackMode;
144 #ifdef RA_ADAPTER
145 //TODO: revisit this design
146 static bool gRASetInfo = false;
147 #endif
148 OCDeviceEntityHandler defaultDeviceHandler;
149 void* defaultDeviceHandlerCallbackParameter = NULL;
150 static const char COAP_TCP_SCHEME[] = "coap+tcp:";
151 static const char COAPS_TCP_SCHEME[] = "coaps+tcp:";
152 static const char CORESPEC[] = "core";
153
154 CAAdapterStateChangedCB g_adapterHandler = NULL;
155 CAConnectionStateChangedCB g_connectionHandler = NULL;
156
157 #if defined(__WITH_DTLS__) || defined (__WITH_TLS__)
158 static OCOtmEventHandler_t g_otmEventHandler = {NULL, NULL};
159 #endif
160
161 //-----------------------------------------------------------------------------
162 // Macros
163 //-----------------------------------------------------------------------------
164 #define TAG  "OIC_RI_STACK"
165 #define VERIFY_SUCCESS(op, successCode) { if ((op) != (successCode)) \
166             {OIC_LOG_V(FATAL, TAG, "%s failed!!", #op); goto exit;} }
167 #define VERIFY_NON_NULL(arg, logLevel, retVal) { if (!(arg)) { OIC_LOG((logLevel), \
168              TAG, #arg " is NULL"); return (retVal); } }
169 #define VERIFY_NON_NULL_NR(arg, logLevel) { if (!(arg)) { OIC_LOG((logLevel), \
170              TAG, #arg " is NULL"); return; } }
171 #define VERIFY_NON_NULL_V(arg) { if (!arg) {OIC_LOG(FATAL, TAG, #arg " is NULL");\
172     goto exit;} }
173
174 //TODO: we should allow the server to define this
175 #define MAX_OBSERVE_AGE (0x2FFFFUL)
176
177 #define MILLISECONDS_PER_SECOND   (1000)
178
179 //-----------------------------------------------------------------------------
180 // Private internal function prototypes
181 //-----------------------------------------------------------------------------
182
183 /**
184  * Generate handle of OCDoResource invocation for callback management.
185  *
186  * @return Generated OCDoResource handle.
187  */
188 static OCDoHandle GenerateInvocationHandle();
189
190 /**
191  * Initialize resource data structures, variables, etc.
192  *
193  * @return ::OC_STACK_OK on success, some other value upon failure.
194  */
195 static OCStackResult initResources();
196
197 /**
198  * Add a resource to the end of the linked list of resources.
199  *
200  * @param resource Resource to be added
201  */
202 static void insertResource(OCResource *resource);
203
204 /**
205  * Find a resource in the linked list of resources.
206  *
207  * @param resource Resource to be found.
208  * @return Pointer to resource that was found in the linked list or NULL if the resource was not
209  *         found.
210  */
211 static OCResource *findResource(OCResource *resource);
212
213 /**
214  * Insert a resource type into a resource's resource type linked list.
215  * If resource type already exists, it will not be inserted and the
216  * resourceType will be free'd.
217  * resourceType->next should be null to avoid memory leaks.
218  * Function returns silently for null args.
219  *
220  * @param resource Resource where resource type is to be inserted.
221  * @param resourceType Resource type to be inserted.
222  */
223 static void insertResourceType(OCResource *resource,
224         OCResourceType *resourceType);
225
226 /**
227  * Get a resource type at the specified index within a resource.
228  *
229  * @param handle Handle of resource.
230  * @param index Index of resource type.
231  *
232  * @return Pointer to resource type if found, NULL otherwise.
233  */
234 static OCResourceType *findResourceTypeAtIndex(OCResourceHandle handle,
235         uint8_t index);
236
237 /**
238  * Insert a resource interface into a resource's resource interface linked list.
239  * If resource interface already exists, it will not be inserted and the
240  * resourceInterface will be free'd.
241  * resourceInterface->next should be null to avoid memory leaks.
242  *
243  * @param resource Resource where resource interface is to be inserted.
244  * @param resourceInterface Resource interface to be inserted.
245  */
246 static void insertResourceInterface(OCResource *resource,
247         OCResourceInterface *resourceInterface);
248
249 /**
250  * Get a resource interface at the specified index within a resource.
251  *
252  * @param handle Handle of resource.
253  * @param index Index of resource interface.
254  *
255  * @return Pointer to resource interface if found, NULL otherwise.
256  */
257 static OCResourceInterface *findResourceInterfaceAtIndex(
258         OCResourceHandle handle, uint8_t index);
259
260 /**
261  * Delete all of the dynamically allocated elements that were created for the resource type.
262  *
263  * @param resourceType Specified resource type.
264  */
265 static void deleteResourceType(OCResourceType *resourceType);
266
267 /**
268  * Delete all of the dynamically allocated elements that were created for the resource interface.
269  *
270  * @param resourceInterface Specified resource interface.
271  */
272 static void deleteResourceInterface(OCResourceInterface *resourceInterface);
273
274 /**
275  * Unbind all child resources.
276  *
277  * @param resourceChild Specified binded resource head is deleted from parent.
278  */
279 static void unbindChildResources(OCChildResource *resourceChild);
280
281 /**
282  * Delete all of the dynamically allocated elements that were created for the resource.
283  *
284  * @param resource Specified resource.
285  */
286 static void deleteResourceElements(OCResource *resource);
287
288 /**
289  * Delete resource specified by handle.  Deletes resource and all resourcetype and resourceinterface
290  * linked lists.
291  *
292  * @param handle Handle of resource to be deleted.
293  *
294  * @return ::OC_STACK_OK on success, some other value upon failure.
295  */
296 static OCStackResult deleteResource(OCResource *resource);
297
298 /**
299  * Delete all of the resources in the resource list.
300  */
301 static void deleteAllResources();
302
303 /**
304  * Increment resource sequence number.  Handles rollover.
305  *
306  * @param resPtr Pointer to resource.
307  */
308 static void incrementSequenceNumber(OCResource * resPtr);
309
310 /*
311  * Attempts to initialize every network interface that the CA Layer might have compiled in.
312  *
313  * Note: At least one interface must succeed to initialize. If all calls to @ref CASelectNetwork
314  * return something other than @ref CA_STATUS_OK, then this function fails.
315  * @param transportType  OCTransportAdapter value to select.
316  * @return ::CA_STATUS_OK on success, some other value upon failure.
317  */
318 static CAResult_t OCSelectNetwork(OCTransportAdapter transportType);
319
320 /**
321  * Convert CAResponseResult_t to OCStackResult.
322  *
323  * @param caCode CAResponseResult_t code.
324  * @return ::OC_STACK_OK on success, some other value upon failure.
325  */
326 static OCStackResult CAResponseToOCStackResult(CAResponseResult_t caCode);
327
328 /**
329  * Convert OCTransportFlags_t to CATransportModifiers_t.
330  *
331  * @param ocConType OCTransportFlags_t input.
332  * @return CATransportFlags
333  */
334 static CATransportFlags_t OCToCATransportFlags(OCTransportFlags ocConType);
335
336 /**
337  * Convert CATransportFlags_t to OCTransportModifiers_t.
338  *
339  * @param caConType CATransportFlags_t input.
340  * @return OCTransportFlags
341  */
342 static OCTransportFlags CAToOCTransportFlags(CATransportFlags_t caConType);
343
344 /**
345  * Handle response from presence request.
346  *
347  * @param endPoint CA remote endpoint.
348  * @param responseInfo CA response info.
349  * @return ::OC_STACK_OK on success, some other value upon failure.
350  */
351 static OCStackResult HandlePresenceResponse(const CAEndpoint_t *endPoint,
352         const CAResponseInfo_t *responseInfo);
353
354 /**
355  * This function will be called back by CA layer when a response is received.
356  *
357  * @param endPoint CA remote endpoint.
358  * @param responseInfo CA response info.
359  */
360 static void HandleCAResponses(const CAEndpoint_t* endPoint,
361         const CAResponseInfo_t* responseInfo);
362
363 /**
364  * This function will be called back by CA layer when a request is received.
365  *
366  * @param endPoint CA remote endpoint.
367  * @param requestInfo CA request info.
368  */
369 static void HandleCARequests(const CAEndpoint_t* endPoint,
370         const CARequestInfo_t* requestInfo);
371
372 /**
373  * Extract query from a URI.
374  *
375  * @param uri Full URI with query.
376  * @param query Pointer to string that will contain query.
377  * @param newURI Pointer to string that will contain URI.
378  * @return ::OC_STACK_OK on success, some other value upon failure.
379  */
380 static OCStackResult getQueryFromUri(const char * uri, char** resourceType, char ** newURI);
381
382 /**
383  * Finds a resource type in an OCResourceType link-list.
384  *
385  * @param resourceTypeList The link-list to be searched through.
386  * @param resourceTypeName The key to search for.
387  *
388  * @return Resource type that matches the key (ie. resourceTypeName) or
389  *      NULL if there is either an invalid parameter or this function was unable to find the key.
390  */
391 static OCResourceType *findResourceType(OCResourceType * resourceTypeList,
392         const char * resourceTypeName);
393
394 #ifdef WITH_PRESENCE
395 /**
396  * Reset presence TTL for a ClientCB struct. ttlLevel will be set to 0.
397  * TTL will be set to maxAge.
398  *
399  * @param cbNode Callback Node for which presence ttl is to be reset.
400  * @param maxAge New value of ttl in seconds.
401
402  * @return ::OC_STACK_OK on success, some other value upon failure.
403  */
404 static OCStackResult ResetPresenceTTL(ClientCB *cbNode, uint32_t maxAgeSeconds);
405 #endif
406
407 /**
408  * Ensure the accept header option is set appropriatly before sending the requests and routing
409  * header option is updated with destination.
410  *
411  * @param object CA remote endpoint.
412  * @param requestInfo CA request info.
413  *
414  * @return ::OC_STACK_OK on success, some other value upon failure.
415  */
416 static OCStackResult OCSendRequest(const CAEndpoint_t *object, CARequestInfo_t *requestInfo);
417
418 /**
419  * default adapter state change callback method
420  *
421  * @param adapter   CA network adapter type.
422  * @param enabled   current adapter state.
423  */
424 static void OCDefaultAdapterStateChangedHandler(CATransportAdapter_t adapter, bool enabled);
425
426 /**
427  * default connection state change callback method
428  *
429  * @param info          CAEndpoint which has address, port and etc.
430  * @param isConnected   current connection state.
431  */
432 static void OCDefaultConnectionStateChangedHandler(const CAEndpoint_t *info, bool isConnected);
433
434 //-----------------------------------------------------------------------------
435 // Internal functions
436 //-----------------------------------------------------------------------------
437
438 bool checkProxyUri(OCHeaderOption *options, uint8_t numOptions)
439 {
440     if (!options || 0 == numOptions)
441     {
442         OIC_LOG (INFO, TAG, "No options present");
443         return false;
444     }
445
446     for (uint8_t i = 0; i < numOptions; i++)
447     {
448         if (options[i].protocolID == OC_COAP_ID && options[i].optionID == OC_RSRVD_PROXY_OPTION_ID)
449         {
450             OIC_LOG(DEBUG, TAG, "Proxy URI is present");
451             return true;
452         }
453     }
454     return false;
455 }
456
457 uint32_t GetTicks(uint32_t milliSeconds)
458 {
459     coap_tick_t now;
460     coap_ticks(&now);
461
462     // Guard against overflow of uint32_t
463     if (milliSeconds <= ((UINT32_MAX - (uint32_t)now) * MILLISECONDS_PER_SECOND) /
464                              COAP_TICKS_PER_SECOND)
465     {
466         return now + (milliSeconds * COAP_TICKS_PER_SECOND)/MILLISECONDS_PER_SECOND;
467     }
468     else
469     {
470         return UINT32_MAX;
471     }
472 }
473
474 void CopyEndpointToDevAddr(const CAEndpoint_t *in, OCDevAddr *out)
475 {
476     VERIFY_NON_NULL_NR(in, FATAL);
477     VERIFY_NON_NULL_NR(out, FATAL);
478
479     out->adapter = (OCTransportAdapter)in->adapter;
480     out->flags = CAToOCTransportFlags(in->flags);
481     OICStrcpy(out->addr, sizeof(out->addr), in->addr);
482     out->port = in->port;
483     out->ifindex = in->ifindex;
484 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
485     /* This assert is to prevent accidental mismatch between address size macros defined in
486      * RI and CA and cause crash here. */
487     OC_STATIC_ASSERT(MAX_ADDR_STR_SIZE_CA == MAX_ADDR_STR_SIZE,
488                                         "Address size mismatch between RI and CA");
489     memcpy(out->routeData, in->routeData, sizeof(in->routeData));
490 #endif
491 }
492
493 void CopyDevAddrToEndpoint(const OCDevAddr *in, CAEndpoint_t *out)
494 {
495     VERIFY_NON_NULL_NR(in, FATAL);
496     VERIFY_NON_NULL_NR(out, FATAL);
497
498     out->adapter = (CATransportAdapter_t)in->adapter;
499     out->flags = OCToCATransportFlags(in->flags);
500     OICStrcpy(out->addr, sizeof(out->addr), in->addr);
501     OICStrcpy(out->remoteId, sizeof(out->remoteId), in->remoteId);
502 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
503     /* This assert is to prevent accidental mismatch between address size macros defined in
504      * RI and CA and cause crash here. */
505     OC_STATIC_ASSERT(MAX_ADDR_STR_SIZE_CA == MAX_ADDR_STR_SIZE,
506                                         "Address size mismatch between RI and CA");
507     memcpy(out->routeData, in->routeData, sizeof(in->routeData));
508 #endif
509     out->port = in->port;
510     out->ifindex = in->ifindex;
511 }
512
513 void FixUpClientResponse(OCClientResponse *cr)
514 {
515     VERIFY_NON_NULL_NR(cr, FATAL);
516
517     cr->addr = &cr->devAddr;
518     cr->connType = (OCConnectivityType)
519         ((cr->devAddr.adapter << CT_ADAPTER_SHIFT) | (cr->devAddr.flags & CT_MASK_FLAGS));
520 }
521
522 static OCStackResult OCSendRequest(const CAEndpoint_t *object, CARequestInfo_t *requestInfo)
523 {
524     VERIFY_NON_NULL(object, FATAL, OC_STACK_INVALID_PARAM);
525     VERIFY_NON_NULL(requestInfo, FATAL, OC_STACK_INVALID_PARAM);
526     OIC_TRACE_BEGIN(%s:OCSendRequest, TAG);
527
528 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
529     OCStackResult rmResult = RMAddInfo(object->routeData, requestInfo, true, NULL);
530     if (OC_STACK_OK != rmResult)
531     {
532         OIC_LOG(ERROR, TAG, "Add destination option failed");
533         OIC_TRACE_END();
534         return rmResult;
535     }
536 #endif
537
538     // OC stack prefer CBOR encoded payloads.
539     requestInfo->info.acceptFormat = CA_FORMAT_APPLICATION_CBOR;
540     CAResult_t result = CASendRequest(object, requestInfo);
541     if(CA_STATUS_OK != result)
542     {
543         OIC_LOG_V(ERROR, TAG, "CASendRequest failed with CA error %u", result);
544         OIC_TRACE_END();
545         return CAResultToOCResult(result);
546     }
547
548     OIC_TRACE_END();
549     return OC_STACK_OK;
550 }
551 //-----------------------------------------------------------------------------
552 // Internal API function
553 //-----------------------------------------------------------------------------
554
555 // This internal function is called to update the stack with the status of
556 // observers and communication failures
557 OCStackResult OCStackFeedBack(CAToken_t token, uint8_t tokenLength, uint8_t status)
558 {
559     OCStackResult result = OC_STACK_ERROR;
560     ResourceObserver * observer = NULL;
561     OCEntityHandlerRequest ehRequest = {0};
562
563     switch(status)
564     {
565     case OC_OBSERVER_NOT_INTERESTED:
566         OIC_LOG(DEBUG, TAG, "observer not interested in our notifications");
567         observer = GetObserverUsingToken(token, tokenLength);
568         if (observer)
569         {
570             result = FormOCEntityHandlerRequest(&ehRequest,
571                                                 0,
572                                                 OC_REST_NOMETHOD,
573                                                 &observer->devAddr,
574                                                 (OCResourceHandle)NULL,
575                                                 NULL, PAYLOAD_TYPE_REPRESENTATION,
576                                                 NULL, 0, 0, NULL,
577                                                 OC_OBSERVE_DEREGISTER,
578                                                 observer->observeId,
579                                                 0);
580             if (result != OC_STACK_OK)
581             {
582                 FreeObserver(observer);
583                 return result;
584             }
585
586             if (observer->resource && observer->resource->entityHandler)
587             {
588                 observer->resource->entityHandler(OC_OBSERVE_FLAG, &ehRequest,
589                                                   observer->resource->entityHandlerCallbackParam);
590             }
591
592             FreeObserver(observer);
593         }
594
595         result = DeleteObserverUsingToken(token, tokenLength);
596         if (result == OC_STACK_OK)
597         {
598             OIC_LOG(DEBUG, TAG, "Removed observer successfully");
599         }
600         else
601         {
602             result = OC_STACK_OK;
603             OIC_LOG(DEBUG, TAG, "Observer Removal failed");
604         }
605         break;
606
607     case OC_OBSERVER_STILL_INTERESTED:
608         OIC_LOG(DEBUG, TAG, "observer still interested, reset the failedCount");
609         observer = GetObserverUsingToken(token, tokenLength);
610         if (observer)
611         {
612             observer->forceHighQos = 0;
613             observer->failedCommCount = 0;
614             result = OC_STACK_OK;
615             FreeObserver(observer);
616         }
617         else
618         {
619             result = OC_STACK_OBSERVER_NOT_FOUND;
620         }
621         break;
622
623     case OC_OBSERVER_FAILED_COMM:
624         OIC_LOG(DEBUG, TAG, "observer is unreachable");
625         observer = GetObserverUsingToken (token, tokenLength);
626         if (observer)
627         {
628             if (observer->failedCommCount >= MAX_OBSERVER_FAILED_COMM)
629             {
630                 result = FormOCEntityHandlerRequest(&ehRequest,
631                                                     0,
632                                                     OC_REST_NOMETHOD,
633                                                     &observer->devAddr,
634                                                     (OCResourceHandle)NULL,
635                                                     NULL, PAYLOAD_TYPE_REPRESENTATION,
636                                                     NULL, 0, 0, NULL,
637                                                     OC_OBSERVE_DEREGISTER,
638                                                     observer->observeId,
639                                                     0);
640                 if (result != OC_STACK_OK)
641                 {
642                     FreeObserver(observer);
643                     return OC_STACK_ERROR;
644                 }
645
646                 if (observer->resource && observer->resource->entityHandler)
647                 {
648                     observer->resource->entityHandler(OC_OBSERVE_FLAG, &ehRequest,
649                                         observer->resource->entityHandlerCallbackParam);
650                 }
651
652                 result = DeleteObserverUsingToken(token, tokenLength);
653                 if (result == OC_STACK_OK)
654                 {
655                     OIC_LOG(DEBUG, TAG, "Removed observer successfully");
656                 }
657                 else
658                 {
659                     result = OC_STACK_OK;
660                     OIC_LOG(DEBUG, TAG, "Observer Removal failed");
661                 }
662             }
663             else
664             {
665                 observer->failedCommCount++;
666                 observer->forceHighQos = 1;
667                 OIC_LOG_V(DEBUG, TAG, "Failed count for this observer is %d",
668                           observer->failedCommCount);
669                 result = OC_STACK_CONTINUE;
670             }
671
672             FreeObserver(observer);
673         }
674         break;
675     default:
676         OIC_LOG(ERROR, TAG, "Unknown status");
677         result = OC_STACK_ERROR;
678         break;
679         }
680     return result;
681 }
682
683 OCStackResult CAResponseToOCStackResult(CAResponseResult_t caCode)
684 {
685     OCStackResult ret = OC_STACK_ERROR;
686     switch(caCode)
687     {
688         case CA_CREATED:
689             ret = OC_STACK_RESOURCE_CREATED;
690             break;
691         case CA_DELETED:
692             ret = OC_STACK_RESOURCE_DELETED;
693             break;
694         case CA_CHANGED:
695             ret = OC_STACK_RESOURCE_CHANGED;
696             break;
697         case CA_CONTENT:
698         case CA_VALID:
699             ret = OC_STACK_OK;
700             break;
701         case CA_BAD_REQ:
702             ret = OC_STACK_INVALID_QUERY;
703             break;
704         case CA_UNAUTHORIZED_REQ:
705             ret = OC_STACK_UNAUTHORIZED_REQ;
706             break;
707         case CA_BAD_OPT:
708             ret = OC_STACK_INVALID_OPTION;
709             break;
710         case CA_NOT_FOUND:
711             ret = OC_STACK_NO_RESOURCE;
712             break;
713         case CA_REQUEST_ENTITY_TOO_LARGE:
714             ret = OC_STACK_TOO_LARGE_REQ;
715             break;
716         case CA_METHOD_NOT_ALLOWED:
717             ret = OC_STACK_METHOD_NOT_ALLOWED;
718             break;
719         case CA_NOT_ACCEPTABLE:
720             ret = OC_STACK_NOT_ACCEPTABLE;
721             break;
722         case CA_FORBIDDEN_REQ:
723             ret = OC_STACK_FORBIDDEN_REQ;
724             break;
725         case CA_INTERNAL_SERVER_ERROR:
726             ret = OC_STACK_INTERNAL_SERVER_ERROR;
727             break;
728         case CA_NOT_IMPLEMENTED:
729             ret = OC_STACK_NOT_IMPLEMENTED;
730             break;
731         case CA_BAD_GATEWAY:
732             ret = OC_STACK_BAD_GATEWAY;
733             break;
734         case CA_SERVICE_UNAVAILABLE:
735             ret = OC_STACK_SERVICE_UNAVAILABLE;
736             break;
737         case CA_RETRANSMIT_TIMEOUT:
738             ret = OC_STACK_GATEWAY_TIMEOUT;
739             break;
740         case CA_PROXY_NOT_SUPPORTED:
741             ret = OC_STACK_PROXY_NOT_SUPPORTED;
742             break;
743         default:
744             break;
745     }
746     return ret;
747 }
748
749 CAResponseResult_t OCToCAStackResult(OCStackResult ocCode, OCMethod method)
750 {
751     CAResponseResult_t ret = CA_INTERNAL_SERVER_ERROR;
752
753     switch(ocCode)
754     {
755         case OC_STACK_OK:
756            switch (method)
757            {
758                case OC_REST_PUT:
759                case OC_REST_POST:
760                    // This Response Code is like HTTP 204 "No Content" but only used in
761                    // response to POST and PUT requests.
762                    ret = CA_CHANGED;
763                    break;
764                case OC_REST_GET:
765                    // This Response Code is like HTTP 200 "OK" but only used in response to
766                    // GET requests.
767                    ret = CA_CONTENT;
768                    break;
769                default:
770                    // This should not happen but,
771                    // give it a value just in case but output an error
772                    ret = CA_CONTENT;
773                    OIC_LOG_V(ERROR, TAG, "Unexpected OC_STACK_OK return code for method [%d].",
774                             method);
775             }
776             break;
777         case OC_STACK_RESOURCE_CREATED:
778             ret = CA_CREATED;
779             break;
780         case OC_STACK_RESOURCE_DELETED:
781             ret = CA_DELETED;
782             break;
783         case OC_STACK_RESOURCE_CHANGED:
784             ret = CA_CHANGED;
785             break;
786         case OC_STACK_INVALID_QUERY:
787             ret = CA_BAD_REQ;
788             break;
789         case OC_STACK_INVALID_OPTION:
790             ret = CA_BAD_OPT;
791             break;
792         case OC_STACK_NO_RESOURCE:
793             ret = CA_NOT_FOUND;
794             break;
795         case OC_STACK_COMM_ERROR:
796             ret = CA_RETRANSMIT_TIMEOUT;
797             break;
798         case OC_STACK_METHOD_NOT_ALLOWED:
799             ret = CA_METHOD_NOT_ALLOWED;
800             break;
801         case OC_STACK_NOT_ACCEPTABLE:
802             ret = CA_NOT_ACCEPTABLE;
803             break;
804         case OC_STACK_UNAUTHORIZED_REQ:
805             ret = CA_UNAUTHORIZED_REQ;
806             break;
807         case OC_STACK_FORBIDDEN_REQ:
808             ret = CA_FORBIDDEN_REQ;
809             break;
810         case OC_STACK_INTERNAL_SERVER_ERROR:
811             ret = CA_INTERNAL_SERVER_ERROR;
812             break;
813         case OC_STACK_NOT_IMPLEMENTED:
814             ret = CA_NOT_IMPLEMENTED;
815             break;
816         case OC_STACK_BAD_GATEWAY:
817             ret = CA_BAD_GATEWAY;
818             break;
819         case OC_STACK_SERVICE_UNAVAILABLE:
820             ret = CA_SERVICE_UNAVAILABLE;
821             break;
822         case OC_STACK_GATEWAY_TIMEOUT:
823             ret = CA_RETRANSMIT_TIMEOUT;
824             break;
825         case OC_STACK_PROXY_NOT_SUPPORTED:
826             ret = CA_PROXY_NOT_SUPPORTED;
827             break;
828         default:
829             break;
830     }
831     return ret;
832 }
833
834 CATransportFlags_t OCToCATransportFlags(OCTransportFlags ocFlags)
835 {
836     CATransportFlags_t caFlags = (CATransportFlags_t)ocFlags;
837
838     // supply default behavior.
839     if ((caFlags & (CA_IPV6|CA_IPV4)) == 0)
840     {
841         caFlags = (CATransportFlags_t)(caFlags|CA_IPV6|CA_IPV4);
842     }
843     if ((caFlags & OC_MASK_SCOPE) == 0)
844     {
845         caFlags = (CATransportFlags_t)(caFlags|OC_SCOPE_LINK);
846     }
847     return caFlags;
848 }
849
850 OCTransportFlags CAToOCTransportFlags(CATransportFlags_t caFlags)
851 {
852     return (OCTransportFlags)caFlags;
853 }
854
855 #ifdef WITH_PRESENCE
856 static OCStackResult ResetPresenceTTL(ClientCB *cbNode, uint32_t maxAgeSeconds)
857 {
858     uint32_t lowerBound  = 0;
859     uint32_t higherBound = 0;
860
861     if (!cbNode || !cbNode->presence || !cbNode->presence->timeOut)
862     {
863         return OC_STACK_INVALID_PARAM;
864     }
865
866     OIC_LOG_V(INFO, TAG, "Update presence TTL, time is %u", GetTicks(0));
867
868     cbNode->presence->TTL = maxAgeSeconds;
869
870     for (int index = 0; index < PresenceTimeOutSize; index++)
871     {
872         // Guard against overflow
873         if (cbNode->presence->TTL < (UINT32_MAX/(MILLISECONDS_PER_SECOND*PresenceTimeOut[index]))
874                                      * 100)
875         {
876             lowerBound = GetTicks((PresenceTimeOut[index] *
877                                   cbNode->presence->TTL *
878                                   MILLISECONDS_PER_SECOND)/100);
879         }
880         else
881         {
882             lowerBound = GetTicks(UINT32_MAX);
883         }
884
885         if (cbNode->presence->TTL < (UINT32_MAX/(MILLISECONDS_PER_SECOND*PresenceTimeOut[index+1]))
886                                      * 100)
887         {
888             higherBound = GetTicks((PresenceTimeOut[index + 1] *
889                                    cbNode->presence->TTL *
890                                    MILLISECONDS_PER_SECOND)/100);
891         }
892         else
893         {
894             higherBound = GetTicks(UINT32_MAX);
895         }
896
897         cbNode->presence->timeOut[index] = OCGetRandomRange(lowerBound, higherBound);
898
899         OIC_LOG_V(DEBUG, TAG, "lowerBound timeout  %d", lowerBound);
900         OIC_LOG_V(DEBUG, TAG, "higherBound timeout %d", higherBound);
901         OIC_LOG_V(DEBUG, TAG, "timeOut entry  %d", cbNode->presence->timeOut[index]);
902     }
903
904     cbNode->presence->TTLlevel = 0;
905
906     OIC_LOG_V(DEBUG, TAG, "this TTL level %d", cbNode->presence->TTLlevel);
907     return OC_STACK_OK;
908 }
909
910 const char *convertTriggerEnumToString(OCPresenceTrigger trigger)
911 {
912     if (trigger == OC_PRESENCE_TRIGGER_CREATE)
913     {
914         return OC_RSRVD_TRIGGER_CREATE;
915     }
916     else if (trigger == OC_PRESENCE_TRIGGER_CHANGE)
917     {
918         return OC_RSRVD_TRIGGER_CHANGE;
919     }
920     else
921     {
922         return OC_RSRVD_TRIGGER_DELETE;
923     }
924 }
925
926 OCPresenceTrigger convertTriggerStringToEnum(const char * triggerStr)
927 {
928     if(!triggerStr)
929     {
930         return OC_PRESENCE_TRIGGER_CREATE;
931     }
932     else if(strcmp(triggerStr, OC_RSRVD_TRIGGER_CREATE) == 0)
933     {
934         return OC_PRESENCE_TRIGGER_CREATE;
935     }
936     else if(strcmp(triggerStr, OC_RSRVD_TRIGGER_CHANGE) == 0)
937     {
938         return OC_PRESENCE_TRIGGER_CHANGE;
939     }
940     else
941     {
942         return OC_PRESENCE_TRIGGER_DELETE;
943     }
944 }
945 #endif // WITH_PRESENCE
946
947 OCStackResult OCEncodeAddressForRFC6874(char *outputAddress,
948                                         size_t outputSize,
949                                         const char *inputAddress)
950 {
951     VERIFY_NON_NULL(inputAddress,  FATAL, OC_STACK_INVALID_PARAM);
952     VERIFY_NON_NULL(outputAddress, FATAL, OC_STACK_INVALID_PARAM);
953
954     size_t inputLength = strnlen(inputAddress, outputSize);
955
956     // inputSize includes the null terminator
957     size_t inputSize = inputLength + 1;
958
959     if (inputSize > outputSize)
960     {
961         OIC_LOG_V(ERROR, TAG,
962                   "OCEncodeAddressForRFC6874 failed: "
963                   "outputSize (%zu) < inputSize (%zu)",
964                   outputSize, inputSize);
965
966         return OC_STACK_ERROR;
967     }
968
969     char* percentChar = strchr(inputAddress, '%');
970
971     // If there is no '%' character, then no change is required to the string.
972     if (NULL == percentChar)
973     {
974         OICStrcpy(outputAddress, outputSize, inputAddress);
975         return OC_STACK_OK;
976     }
977
978     const char* addressPart = &inputAddress[0];
979     const char* scopeIdPart = percentChar + 1;
980
981     // Sanity check to make sure this string doesn't have more '%' characters
982     if (NULL != strchr(scopeIdPart, '%'))
983     {
984         return OC_STACK_ERROR;
985     }
986
987     // If no string follows the first '%', then the input was invalid.
988     if (scopeIdPart[0] == '\0')
989     {
990         OIC_LOG(ERROR, TAG, "OCEncodeAddressForRFC6874 failed: Invalid input string: no scope ID!");
991         return OC_STACK_ERROR;
992     }
993
994     // Check to see if the string is already encoded
995     if ((scopeIdPart[0] == '2') && (scopeIdPart[1] == '5'))
996     {
997         OIC_LOG(ERROR, TAG, "OCEncodeAddressForRFC6874 failed: Input string is already encoded");
998         return OC_STACK_ERROR;
999     }
1000
1001     // Fail if we don't have room for encoded string's two additional chars
1002     if (outputSize < (inputSize + 2))
1003     {
1004         OIC_LOG(ERROR, TAG, "OCEncodeAddressForRFC6874 failed: encoded output will not fit!");
1005         return OC_STACK_ERROR;
1006     }
1007
1008     // Restore the null terminator with an escaped '%' character, per RFC 6874
1009     OICStrcpy(outputAddress, scopeIdPart - addressPart, addressPart);
1010     OICStrcat(outputAddress, outputSize, "%25");
1011     OICStrcat(outputAddress, outputSize, scopeIdPart);
1012
1013     return OC_STACK_OK;
1014 }
1015
1016 OCStackResult OCDecodeAddressForRFC6874(char *outputAddress,
1017                                         size_t outputSize,
1018                                         const char *inputAddress,
1019                                         const char *end)
1020 {
1021     VERIFY_NON_NULL(inputAddress,  FATAL, OC_STACK_INVALID_PARAM);
1022     VERIFY_NON_NULL(outputAddress, FATAL, OC_STACK_INVALID_PARAM);
1023
1024     if (NULL == end)
1025     {
1026         end = inputAddress + strlen(inputAddress);
1027     }
1028     size_t inputLength = end - inputAddress;
1029
1030     const char *percent = strchr(inputAddress, '%');
1031     if (!percent || (percent > end))
1032     {
1033         OICStrcpyPartial(outputAddress, outputSize, inputAddress, inputLength);
1034     }
1035     else
1036     {
1037         if (percent[1] != '2' || percent[2] != '5')
1038         {
1039             return OC_STACK_INVALID_URI;
1040         }
1041
1042         int addrlen = percent - inputAddress + 1;
1043         OICStrcpyPartial(outputAddress, outputSize, inputAddress, addrlen);
1044         OICStrcpyPartial(outputAddress + addrlen, outputSize - addrlen,
1045                          percent + 3, end - percent - 3);
1046     }
1047
1048     return OC_STACK_OK;
1049 }
1050
1051 #ifdef WITH_PRESENCE
1052 /**
1053  * The cononical presence allows constructed URIs to be string compared.
1054  *
1055  * requestUri must be a char array of size CA_MAX_URI_LENGTH
1056  */
1057 static int FormCanonicalPresenceUri(const CAEndpoint_t *endpoint,
1058                                     char *presenceUri, bool isMulticast)
1059 {
1060     VERIFY_NON_NULL(endpoint   , FATAL, OC_STACK_INVALID_PARAM);
1061     VERIFY_NON_NULL(presenceUri, FATAL, OC_STACK_INVALID_PARAM);
1062
1063     if (isMulticast)
1064     {
1065         OIC_LOG(DEBUG, TAG, "Make Multicast Presence URI");
1066         return snprintf(presenceUri, CA_MAX_URI_LENGTH, "%s", OC_RSRVD_PRESENCE_URI);
1067     }
1068
1069     CAEndpoint_t *ep = (CAEndpoint_t *)endpoint;
1070     if (ep->adapter == CA_ADAPTER_IP)
1071     {
1072         if ((ep->flags & CA_IPV6) && !(ep->flags & CA_IPV4))
1073         {
1074             if ('\0' == ep->addr[0])  // multicast
1075             {
1076                 return snprintf(presenceUri, CA_MAX_URI_LENGTH, OC_RSRVD_PRESENCE_URI);
1077             }
1078             else
1079             {
1080                 char addressEncoded[CA_MAX_URI_LENGTH] = {0};
1081
1082                 OCStackResult result = OCEncodeAddressForRFC6874(addressEncoded,
1083                                                                  sizeof(addressEncoded),
1084                                                                  ep->addr);
1085
1086                 if (OC_STACK_OK != result)
1087                 {
1088                     return -1;
1089                 }
1090
1091                 return snprintf(presenceUri, CA_MAX_URI_LENGTH, "coap://[%s]:%u%s",
1092                         addressEncoded, ep->port, OC_RSRVD_PRESENCE_URI);
1093             }
1094         }
1095         else
1096         {
1097             if ('\0' == ep->addr[0])  // multicast
1098             {
1099                 OICStrcpy(ep->addr, sizeof(ep->addr), OC_MULTICAST_IP);
1100                 ep->port = OC_MULTICAST_PORT;
1101             }
1102             return snprintf(presenceUri, CA_MAX_URI_LENGTH, "coap://%s:%u%s",
1103                     ep->addr, ep->port, OC_RSRVD_PRESENCE_URI);
1104         }
1105     }
1106
1107     // might work for other adapters (untested, but better than nothing)
1108     return snprintf(presenceUri, CA_MAX_URI_LENGTH, "coap://%s%s", ep->addr,
1109                     OC_RSRVD_PRESENCE_URI);
1110 }
1111
1112
1113 OCStackResult HandlePresenceResponse(const CAEndpoint_t *endpoint,
1114                             const CAResponseInfo_t *responseInfo)
1115 {
1116     VERIFY_NON_NULL(endpoint, FATAL, OC_STACK_INVALID_PARAM);
1117     VERIFY_NON_NULL(responseInfo, FATAL, OC_STACK_INVALID_PARAM);
1118
1119     OCStackApplicationResult cbResult = OC_STACK_DELETE_TRANSACTION;
1120     ClientCB * cbNode = NULL;
1121     char *resourceTypeName = NULL;
1122     OCClientResponse response = {.devAddr = {.adapter = OC_DEFAULT_ADAPTER}};
1123     OCStackResult result = OC_STACK_ERROR;
1124     uint32_t maxAge = 0;
1125     int uriLen;
1126     char presenceUri[CA_MAX_URI_LENGTH];
1127
1128     int presenceSubscribe = 0;
1129     int multicastPresenceSubscribe = 0;
1130
1131     if (responseInfo->result != CA_CONTENT)
1132     {
1133         OIC_LOG_V(ERROR, TAG, "HandlePresenceResponse failed %d", responseInfo->result);
1134         return OC_STACK_ERROR;
1135     }
1136
1137     response.payload = NULL;
1138     response.result = OC_STACK_OK;
1139
1140     CopyEndpointToDevAddr(endpoint, &response.devAddr);
1141     FixUpClientResponse(&response);
1142
1143     if (responseInfo->info.payload)
1144     {
1145         result = OCParsePayload(&response.payload,
1146                 PAYLOAD_TYPE_PRESENCE,
1147                 responseInfo->info.payload,
1148                 responseInfo->info.payloadSize);
1149
1150         if(result != OC_STACK_OK)
1151         {
1152             OIC_LOG(ERROR, TAG, "Presence parse failed");
1153             goto exit;
1154         }
1155         if(!response.payload || response.payload->type != PAYLOAD_TYPE_PRESENCE)
1156         {
1157             OIC_LOG(ERROR, TAG, "Presence payload was wrong type");
1158             result = OC_STACK_ERROR;
1159             goto exit;
1160         }
1161         response.sequenceNumber = ((OCPresencePayload*)response.payload)->sequenceNumber;
1162         resourceTypeName = ((OCPresencePayload*)response.payload)->resourceType;
1163         maxAge = ((OCPresencePayload*)response.payload)->maxAge;
1164     }
1165
1166     // check for unicast presence
1167     uriLen = FormCanonicalPresenceUri(endpoint, presenceUri,
1168                                       responseInfo->isMulticast);
1169     if (uriLen < 0 || (size_t)uriLen >= sizeof (presenceUri))
1170     {
1171         return OC_STACK_INVALID_URI;
1172     }
1173     OIC_LOG(INFO, TAG, "check for unicast presence");
1174     cbNode = GetClientCB(NULL, 0, NULL, presenceUri);
1175     if (cbNode)
1176     {
1177         presenceSubscribe = 1;
1178     }
1179     else
1180     {
1181         // check for multicast presence
1182         OIC_LOG(INFO, TAG, "check for multicast presence");
1183         cbNode = GetClientCB(NULL, 0, NULL, OC_RSRVD_PRESENCE_URI);
1184         if (cbNode)
1185         {
1186             multicastPresenceSubscribe = 1;
1187         }
1188     }
1189
1190     if (!presenceSubscribe && !multicastPresenceSubscribe)
1191     {
1192         OIC_LOG(INFO, TAG, "Received a presence notification, "
1193                 "but need to register presence callback, ignoring");
1194         goto exit;
1195     }
1196
1197     if (presenceSubscribe)
1198     {
1199         if(cbNode->sequenceNumber == response.sequenceNumber)
1200         {
1201             OIC_LOG(INFO, TAG, "No presence change");
1202             ResetPresenceTTL(cbNode, maxAge);
1203             OIC_LOG_V(INFO, TAG, "ResetPresenceTTL - TTLlevel:%d\n", cbNode->presence->TTLlevel);
1204             goto exit;
1205         }
1206
1207         if(maxAge == 0)
1208         {
1209             OIC_LOG(INFO, TAG, "Stopping presence");
1210             response.result = OC_STACK_PRESENCE_STOPPED;
1211             if(cbNode->presence)
1212             {
1213                 OICFree(cbNode->presence->timeOut);
1214                 OICFree(cbNode->presence);
1215                 cbNode->presence = NULL;
1216             }
1217         }
1218         else
1219         {
1220             if(!cbNode->presence)
1221             {
1222                 cbNode->presence = (OCPresence *)OICMalloc(sizeof (OCPresence));
1223
1224                 if(!(cbNode->presence))
1225                 {
1226                     OIC_LOG(ERROR, TAG, "Could not allocate memory for cbNode->presence");
1227                     result = OC_STACK_NO_MEMORY;
1228                     goto exit;
1229                 }
1230
1231                 VERIFY_NON_NULL_V(cbNode->presence);
1232                 cbNode->presence->timeOut = NULL;
1233                 cbNode->presence->timeOut = (uint32_t *)
1234                         OICMalloc(PresenceTimeOutSize * sizeof(uint32_t));
1235                 if(!(cbNode->presence->timeOut)){
1236                     OIC_LOG(ERROR, TAG,
1237                                   "Could not allocate memory for cbNode->presence->timeOut");
1238                     OICFree(cbNode->presence);
1239                     result = OC_STACK_NO_MEMORY;
1240                     goto exit;
1241                 }
1242             }
1243
1244             ResetPresenceTTL(cbNode, maxAge);
1245
1246             cbNode->sequenceNumber = response.sequenceNumber;
1247         }
1248     }
1249     else
1250     {
1251         // This is the multicast case
1252         OIC_LOG(INFO, TAG, "this is the multicast presence");
1253         if (0 == maxAge)
1254         {
1255             OIC_LOG(INFO, TAG, "Stopping presence");
1256             response.result = OC_STACK_PRESENCE_STOPPED;
1257         }
1258     }
1259
1260     // Ensure that a filter is actually applied.
1261     if (resourceTypeName && cbNode->filterResourceType)
1262     {
1263         OIC_LOG_V(INFO, TAG, "find resource type : %s", resourceTypeName);
1264         if(!findResourceType(cbNode->filterResourceType, resourceTypeName))
1265         {
1266             goto exit;
1267         }
1268     }
1269
1270     OIC_LOG(INFO, TAG, "Before calling into application address space for presence");
1271     cbResult = cbNode->callBack(cbNode->context, cbNode->handle, &response);
1272     OIC_LOG(INFO, TAG, "After calling into application address space for presence");
1273
1274     if (cbResult == OC_STACK_DELETE_TRANSACTION)
1275     {
1276         FindAndDeleteClientCB(cbNode);
1277     }
1278
1279 exit:
1280     OCPayloadDestroy(response.payload);
1281     return result;
1282 }
1283 #endif // WITH_PRESENCE
1284
1285 OCStackResult HandleBatchResponse(char *requestUri, OCRepPayload **payload)
1286 {
1287     if (requestUri && *payload)
1288     {
1289         char *interfaceName = NULL;
1290         char *rtTypeName = NULL;
1291         char *uriQuery = NULL;
1292         char *uriWithoutQuery = NULL;
1293         if (OC_STACK_OK == getQueryFromUri(requestUri, &uriQuery, &uriWithoutQuery))
1294         {
1295             if (OC_STACK_OK == ExtractFiltersFromQuery(uriQuery, &interfaceName, &rtTypeName))
1296             {
1297                 if (interfaceName && (0 == strcmp(OC_RSRVD_INTERFACE_BATCH, interfaceName)))
1298                 {
1299                     char *uri = (*payload)->uri;
1300                     if (uri && 0 != strcmp(uriWithoutQuery, uri))
1301                     {
1302                         OCRepPayload *newPayload = OCRepPayloadCreate();
1303                         if (newPayload)
1304                         {
1305                             OCRepPayloadSetUri(newPayload, uri);
1306                             newPayload->next = *payload;
1307                             *payload = newPayload;
1308                         }
1309                     }
1310                 }
1311             }
1312         }
1313
1314         OICFree(interfaceName);
1315         OICFree(rtTypeName);
1316         OICFree(uriQuery);
1317         OICFree(uriWithoutQuery);
1318         return OC_STACK_OK;
1319     }
1320     return OC_STACK_INVALID_PARAM;
1321 }
1322
1323 void OCHandleResponse(const CAEndpoint_t* endPoint, const CAResponseInfo_t* responseInfo)
1324 {
1325     OIC_TRACE_MARK(%s:OCHandleResponse:%s, TAG, responseInfo->info.resourceUri);
1326     OIC_LOG(DEBUG, TAG, "Enter OCHandleResponse");
1327
1328 #ifdef WITH_PRESENCE
1329     if(responseInfo->info.resourceUri &&
1330         strcmp(responseInfo->info.resourceUri, OC_RSRVD_PRESENCE_URI) == 0)
1331     {
1332         HandlePresenceResponse(endPoint, responseInfo);
1333         return;
1334     }
1335 #endif
1336
1337     ClientCB *cbNode = GetClientCB(responseInfo->info.token,
1338             responseInfo->info.tokenLength, NULL, NULL);
1339
1340     if(cbNode)
1341     {
1342         OIC_LOG(INFO, TAG, "There is a cbNode associated with the response token");
1343 #ifdef __TIZENRT__
1344         // check obs header option
1345         bool obsHeaderOpt = false;
1346         CAHeaderOption_t *options = responseInfo->info.options;
1347         for (uint8_t i = 0; i< responseInfo->info.numOptions; i++)
1348         {
1349             if (options && options[i].protocolID == CA_COAP_ID &&
1350                            options[i].optionID == COAP_OPTION_OBSERVE)
1351             {
1352                 obsHeaderOpt = true;
1353                 break;
1354             }
1355         }
1356 #endif
1357         if(responseInfo->result == CA_EMPTY)
1358         {
1359             OIC_LOG(INFO, TAG, "Receiving A ACK/RESET for this token");
1360             // We do not have a case for the client to receive a RESET
1361             if(responseInfo->info.type == CA_MSG_ACKNOWLEDGE)
1362             {
1363                 //This is the case of receiving an ACK on a request to a slow resource!
1364                 OIC_LOG(INFO, TAG, "This is a pure ACK");
1365                 //TODO: should we inform the client
1366                 //      app that at least the request was received at the server?
1367             }
1368         }
1369         else if(responseInfo->result == CA_RETRANSMIT_TIMEOUT)
1370         {
1371             OIC_LOG(INFO, TAG, "Receiving A Timeout for this token");
1372
1373             OCClientResponse response =
1374                 {.devAddr = {.adapter = OC_DEFAULT_ADAPTER}};
1375             CopyEndpointToDevAddr(endPoint, &response.devAddr);
1376             FixUpClientResponse(&response);
1377             response.resourceUri = OICStrdup(responseInfo->info.resourceUri);
1378             memcpy(response.identity.id, responseInfo->info.identity.id,
1379                                                 sizeof (response.identity.id));
1380             response.identity.id_length = responseInfo->info.identity.id_length;
1381
1382             response.result = CAResponseToOCStackResult(responseInfo->result);
1383             OIC_LOG(INFO, TAG, "Before calling into application address space for reTrans timeout");
1384             cbNode->callBack(cbNode->context,
1385                     cbNode->handle, &response);
1386             OIC_LOG(INFO, TAG, "After calling into application address space for reTrans timeout");
1387             FindAndDeleteClientCB(cbNode);
1388             OICFree((void *)response.resourceUri);
1389         }
1390 #ifdef __TIZENRT__
1391         else if ((cbNode->method == OC_REST_OBSERVE || cbNode->method == OC_REST_OBSERVE_ALL)
1392                 && (responseInfo->result == CA_CONTENT) && !obsHeaderOpt)
1393         {
1394             OCClientResponse response =
1395                 {.devAddr = {.adapter = OC_DEFAULT_ADAPTER}};
1396             CopyEndpointToDevAddr(endPoint, &response.devAddr);
1397             FixUpClientResponse(&response);
1398             response.resourceUri =  OICStrdup(responseInfo->info.resourceUri);
1399             memcpy(response.identity.id, responseInfo->info.identity.id,
1400                                     sizeof (response.identity.id));
1401             response.identity.id_length = responseInfo->info.identity.id_length;
1402             response.result = OC_STACK_UNAUTHORIZED_REQ;
1403
1404             OIC_LOG(INFO, TAG, "Before calling into application address space for observe resp");
1405             cbNode->callBack(cbNode->context,
1406                              cbNode->handle,
1407                              &response);
1408             OIC_LOG(INFO, TAG, "After calling into application address space for observe resp");
1409
1410             FindAndDeleteClientCB(cbNode);
1411             OICFree(response.resourceUri);
1412         }
1413 #endif
1414         else
1415         {
1416             OIC_LOG(INFO, TAG, "This is a regular response, A client call back is found");
1417
1418             OCClientResponse response;
1419             memset(&response, 0, sizeof(OCClientResponse));
1420             response.devAddr.adapter = OC_DEFAULT_ADAPTER;
1421
1422             response.sequenceNumber = MAX_SEQUENCE_NUMBER + 1;
1423             CopyEndpointToDevAddr(endPoint, &response.devAddr);
1424             FixUpClientResponse(&response);
1425             response.resourceUri = OICStrdup(responseInfo->info.resourceUri);
1426             memcpy(response.identity.id, responseInfo->info.identity.id,
1427                                                 sizeof (response.identity.id));
1428             response.identity.id_length = responseInfo->info.identity.id_length;
1429
1430             response.result = CAResponseToOCStackResult(responseInfo->result);
1431
1432             if(responseInfo->info.payload &&
1433                responseInfo->info.payloadSize)
1434             {
1435                 OCPayloadType type = PAYLOAD_TYPE_INVALID;
1436                 // check the security resource
1437                 if (SRMIsSecurityResourceURI(cbNode->requestUri))
1438                 {
1439                     type = PAYLOAD_TYPE_SECURITY;
1440                 }
1441                 else if (cbNode->method == OC_REST_DISCOVER)
1442                 {
1443                     if (strncmp(OC_RSRVD_WELL_KNOWN_URI,cbNode->requestUri,
1444                                 sizeof(OC_RSRVD_WELL_KNOWN_URI) - 1) == 0)
1445                     {
1446                         type = PAYLOAD_TYPE_DISCOVERY;
1447                     }
1448 #ifdef WITH_MQ
1449                     else if (strcmp(cbNode->requestUri, OC_RSRVD_WELL_KNOWN_MQ_URI) == 0)
1450                     {
1451                         type = PAYLOAD_TYPE_DISCOVERY;
1452                     }
1453 #endif
1454                     else if (strcmp(cbNode->requestUri, OC_RSRVD_DEVICE_URI) == 0)
1455                     {
1456                         type = PAYLOAD_TYPE_REPRESENTATION;
1457                     }
1458                     else if (strcmp(cbNode->requestUri, OC_RSRVD_PLATFORM_URI) == 0)
1459                     {
1460                         type = PAYLOAD_TYPE_REPRESENTATION;
1461                     }
1462
1463 #ifdef ROUTING_GATEWAY
1464                     else if (strcmp(cbNode->requestUri, OC_RSRVD_GATEWAY_URI) == 0)
1465                     {
1466                         type = PAYLOAD_TYPE_REPRESENTATION;
1467                     }
1468 #endif
1469                     else if (strcmp(cbNode->requestUri, OC_RSRVD_RD_URI) == 0)
1470                     {
1471                         type = PAYLOAD_TYPE_REPRESENTATION;
1472                     }
1473 #ifdef TCP_ADAPTER
1474                     else if (strcmp(cbNode->requestUri, OC_RSRVD_KEEPALIVE_URI) == 0)
1475                     {
1476                         type = PAYLOAD_TYPE_REPRESENTATION;
1477                     }
1478 #endif
1479                     else
1480                     {
1481                         OIC_LOG_V(ERROR, TAG, "Unknown Payload type in Discovery: %d %s",
1482                                 cbNode->method, cbNode->requestUri);
1483                         OICFree((void *)response.resourceUri);
1484                         return;
1485                     }
1486                 }
1487                 else if (cbNode->method == OC_REST_GET ||
1488                          cbNode->method == OC_REST_PUT ||
1489                          cbNode->method == OC_REST_POST ||
1490                          cbNode->method == OC_REST_OBSERVE ||
1491                          cbNode->method == OC_REST_OBSERVE_ALL ||
1492                          cbNode->method == OC_REST_DELETE)
1493                 {
1494                     if (cbNode->requestUri)
1495                     {
1496                         if (0 == strcmp(OC_RSRVD_PLATFORM_URI, cbNode->requestUri))
1497                         {
1498                             type = PAYLOAD_TYPE_REPRESENTATION;
1499                         }
1500                         else if (0 == strcmp(OC_RSRVD_DEVICE_URI, cbNode->requestUri))
1501                         {
1502                             type = PAYLOAD_TYPE_REPRESENTATION;
1503                         }
1504                         if (type == PAYLOAD_TYPE_INVALID)
1505                         {
1506                             OIC_LOG_V(INFO, TAG, "Assuming PAYLOAD_TYPE_REPRESENTATION: %d %s",
1507                                     cbNode->method, cbNode->requestUri);
1508                             type = PAYLOAD_TYPE_REPRESENTATION;
1509                         }
1510                     }
1511                     else
1512                     {
1513                         OIC_LOG(INFO, TAG, "No Request URI, PROXY URI");
1514                         type = PAYLOAD_TYPE_REPRESENTATION;
1515                     }
1516                 }
1517                 else
1518                 {
1519                     OIC_LOG_V(ERROR, TAG, "Unknown Payload type: %d %s",
1520                             cbNode->method, cbNode->requestUri);
1521                     OICFree((void *)response.resourceUri);
1522                     return;
1523                 }
1524
1525                 // In case of error, still want application to receive the error message.
1526                 if (OCResultToSuccess(response.result) || PAYLOAD_TYPE_REPRESENTATION == type)
1527                 {
1528                     if(OC_STACK_OK != OCParsePayload(&response.payload,
1529                             type,
1530                             responseInfo->info.payload,
1531                             responseInfo->info.payloadSize))
1532                     {
1533                         OIC_LOG(ERROR, TAG, "Error converting payload");
1534                         OCPayloadDestroy(response.payload);
1535                         OICFree((void *)response.resourceUri);
1536                         return;
1537                     }
1538                 }
1539                 else
1540                 {
1541                     OICFree((void *)response.resourceUri);
1542                     response.resourceUri = OICStrdup(cbNode->requestUri);
1543                 }
1544             }
1545
1546             response.numRcvdVendorSpecificHeaderOptions = 0;
1547             if(responseInfo->info.numOptions > 0)
1548             {
1549                 int start = 0;
1550                 //First option always with option ID is COAP_OPTION_OBSERVE if it is available.
1551                 if(responseInfo->info.options
1552                    && responseInfo->info.options[0].optionID == COAP_OPTION_OBSERVE)
1553                 {
1554                     size_t i;
1555                     uint32_t observationOption;
1556                     uint8_t* optionData = (uint8_t*)responseInfo->info.options[0].optionData;
1557                     for (observationOption=0, i=0;
1558                             i<sizeof(uint32_t) && i<responseInfo->info.options[0].optionLength;
1559                             i++)
1560                     {
1561                         observationOption =
1562                             (observationOption << 8) | optionData[i];
1563                     }
1564                     response.sequenceNumber = observationOption;
1565                     response.numRcvdVendorSpecificHeaderOptions = responseInfo->info.numOptions - 1;
1566                     start = 1;
1567                 }
1568                 else
1569                 {
1570                     response.numRcvdVendorSpecificHeaderOptions = responseInfo->info.numOptions;
1571                 }
1572
1573                 if(response.numRcvdVendorSpecificHeaderOptions > MAX_HEADER_OPTIONS)
1574                 {
1575                     OIC_LOG(ERROR, TAG, "#header options are more than MAX_HEADER_OPTIONS");
1576                     OCPayloadDestroy(response.payload);
1577                     OICFree((void *)response.resourceUri);
1578                     return;
1579                 }
1580
1581                 if (response.numRcvdVendorSpecificHeaderOptions > 0)
1582                 {
1583                     response.rcvdVendorSpecificHeaderOptions =
1584                         (OCHeaderOption *) OICCalloc(response.numRcvdVendorSpecificHeaderOptions, sizeof(OCHeaderOption));
1585                     if (NULL == response.rcvdVendorSpecificHeaderOptions)
1586                     {
1587                         OIC_LOG(ERROR, TAG, "Failed to allocate memory for vendor header options");
1588                         OCPayloadDestroy(response.payload);
1589                         OICFree((void *)response.resourceUri);
1590                         return;
1591                     }
1592
1593                     memcpy(response.rcvdVendorSpecificHeaderOptions, responseInfo->info.options + start,
1594                         response.numRcvdVendorSpecificHeaderOptions*sizeof(OCHeaderOption));
1595                 }
1596             }
1597
1598             if (cbNode->method == OC_REST_OBSERVE &&
1599                 response.sequenceNumber > OC_OFFSET_SEQUENCE_NUMBER &&
1600                 cbNode->sequenceNumber <=  MAX_SEQUENCE_NUMBER &&
1601                 response.sequenceNumber <= cbNode->sequenceNumber)
1602             {
1603                 OIC_LOG_V(INFO, TAG, "Received stale notification. Number :%d",
1604                                                  response.sequenceNumber);
1605             }
1606             else
1607             {
1608 #ifdef RD_CLIENT
1609                 if (cbNode->requestUri)
1610                 {
1611                     // if request uri is '/oic/rd', update ins value of resource.
1612                     char *targetUri = strstr(cbNode->requestUri, OC_RSRVD_RD_URI);
1613                     if (targetUri)
1614                     {
1615                         OCUpdateResourceInsWithResponse(cbNode->requestUri, &response);
1616                     }
1617                 }
1618 #endif
1619                 // set remoteID(device ID) into OCClientResponse callback parameter
1620                 if (OC_REST_DISCOVER == cbNode->method)
1621                 {
1622                     OIC_LOG(INFO, TAG, "cbNode method is OC_REST_DISCOVER");
1623                     OCDiscoveryPayload *payload = (OCDiscoveryPayload*) response.payload;
1624                     // Payload can be empty in case of error message.
1625                     if (payload && payload->sid)
1626                     {
1627                         OICStrcpy(response.devAddr.remoteId, sizeof(response.devAddr.remoteId),
1628                                   payload->sid);
1629                         OIC_LOG_V(INFO_PRIVATE, TAG, "Device ID of response : %s",
1630                                   response.devAddr.remoteId);
1631                     }
1632
1633                     if(NULL == response.resourceUri)
1634                     {
1635                         response.resourceUri = OICStrdup(cbNode->requestUri);
1636                     }
1637                 }
1638 #ifdef TCP_ADAPTER
1639                 if (cbNode->requestUri)
1640                 {
1641                     OIC_LOG_V(INFO, TAG, "cbNode requestUri is %s", cbNode->requestUri);
1642                     if (cbNode->method == OC_REST_POST &&
1643                             strcmp(cbNode->requestUri, OC_RSRVD_KEEPALIVE_URI) == 0)
1644                     {
1645                         OCHandleKeepAliveResponse(endPoint, response.payload);
1646                     }
1647                 }
1648 #endif
1649                 if (response.payload && response.payload->type == PAYLOAD_TYPE_REPRESENTATION)
1650                 {
1651                     OIC_LOG(INFO, TAG, "Handle batch response");
1652                     HandleBatchResponse(cbNode->requestUri, (OCRepPayload **)&response.payload);
1653                 }
1654
1655                 OIC_LOG(INFO, TAG, "Before calling into application address space for handleResponse");
1656                 OCStackApplicationResult appFeedback = cbNode->callBack(cbNode->context,
1657                                                                         cbNode->handle,
1658                                                                         &response);
1659                 OIC_LOG(INFO, TAG, "After calling into application address space for handleResponse");
1660
1661                 cbNode->sequenceNumber = response.sequenceNumber;
1662
1663                 if (appFeedback == OC_STACK_DELETE_TRANSACTION)
1664                 {
1665                     FindAndDeleteClientCB(cbNode);
1666                 }
1667                 else
1668                 {
1669                     // To keep discovery callbacks active.
1670                     cbNode->TTL = GetTicks(MAX_CB_TIMEOUT_SECONDS *
1671                                             MILLISECONDS_PER_SECOND);
1672                 }
1673             }
1674
1675             //Need to send ACK when the response is CON
1676             if(responseInfo->info.type == CA_MSG_CONFIRM)
1677             {
1678                 if (!(endPoint->adapter & CA_ADAPTER_TCP))
1679                 {
1680                     OIC_LOG(INFO, TAG, "Received a confirmable message. Sending EMPTY");
1681                     SendDirectStackResponse(endPoint, responseInfo->info.messageId, CA_EMPTY,
1682                         CA_MSG_ACKNOWLEDGE, 0, NULL, NULL, 0, NULL, CA_RESPONSE_FOR_RES);
1683                 }
1684             }
1685
1686             OICFree((void *)response.resourceUri);
1687             OCPayloadDestroy(response.payload);
1688             OICFree(response.rcvdVendorSpecificHeaderOptions);
1689         }
1690         return;
1691     }
1692
1693     ResourceObserver * observer = GetObserverUsingToken (responseInfo->info.token,
1694             responseInfo->info.tokenLength);
1695
1696     if(observer)
1697     {
1698         OIC_LOG(INFO, TAG, "There is an observer associated with the response token");
1699         if(responseInfo->result == CA_EMPTY)
1700         {
1701             OIC_LOG(INFO, TAG, "Receiving A ACK/RESET for this token");
1702             if(responseInfo->info.type == CA_MSG_RESET)
1703             {
1704                 OIC_LOG(INFO, TAG, "This is a RESET");
1705                 OCStackFeedBack(responseInfo->info.token, responseInfo->info.tokenLength,
1706                         OC_OBSERVER_NOT_INTERESTED);
1707             }
1708             else if(responseInfo->info.type == CA_MSG_ACKNOWLEDGE)
1709             {
1710                 OIC_LOG(INFO, TAG, "This is a pure ACK");
1711                 OCStackFeedBack(responseInfo->info.token, responseInfo->info.tokenLength,
1712                         OC_OBSERVER_STILL_INTERESTED);
1713             }
1714         }
1715         else if(responseInfo->result == CA_RETRANSMIT_TIMEOUT)
1716         {
1717             OIC_LOG(INFO, TAG, "Receiving Time Out for an observer");
1718             OCStackFeedBack(responseInfo->info.token, responseInfo->info.tokenLength,
1719                     OC_OBSERVER_FAILED_COMM);
1720         }
1721
1722         FreeObserver(observer);
1723         return;
1724     }
1725
1726     if(!cbNode && !observer)
1727     {
1728         if(myStackMode == OC_CLIENT || myStackMode == OC_CLIENT_SERVER
1729            || myStackMode == OC_GATEWAY)
1730         {
1731             OIC_LOG(INFO, TAG, "This is a client, but no cbNode was found for token");
1732             if(responseInfo->result == CA_EMPTY)
1733             {
1734                 OIC_LOG(INFO, TAG, "Receiving CA_EMPTY in the ocstack");
1735             }
1736             else
1737             {
1738                 if (!(endPoint->adapter & CA_ADAPTER_TCP))
1739                 {
1740                     OIC_LOG(INFO, TAG, "Received a message without callbacks. Sending RESET");
1741                     SendDirectStackResponse(endPoint, responseInfo->info.messageId, CA_EMPTY,
1742                                             CA_MSG_RESET, 0, NULL, NULL, 0, NULL,
1743                                             CA_RESPONSE_FOR_RES);
1744                 }
1745             }
1746         }
1747
1748         if(myStackMode == OC_SERVER || myStackMode == OC_CLIENT_SERVER
1749            || myStackMode == OC_GATEWAY)
1750         {
1751             OIC_LOG(INFO, TAG, "This is a server, but no observer was found for token");
1752             if (responseInfo->info.type == CA_MSG_ACKNOWLEDGE)
1753             {
1754                 OIC_LOG_V(INFO, TAG, "Received ACK at server for messageId : %d",
1755                                             responseInfo->info.messageId);
1756             }
1757             if (responseInfo->info.type == CA_MSG_RESET)
1758             {
1759                 OIC_LOG_V(INFO, TAG, "Received RESET at server for messageId : %d",
1760                                             responseInfo->info.messageId);
1761             }
1762         }
1763
1764         return;
1765     }
1766 }
1767
1768 void HandleCAResponses(const CAEndpoint_t* endPoint, const CAResponseInfo_t* responseInfo)
1769 {
1770     VERIFY_NON_NULL_NR(endPoint, FATAL);
1771     VERIFY_NON_NULL_NR(responseInfo, FATAL);
1772
1773     OIC_LOG(INFO, TAG, "Enter HandleCAResponses");
1774     OIC_TRACE_BEGIN(%s:HandleCAResponses, TAG);
1775
1776 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
1777 #ifdef ROUTING_GATEWAY
1778     bool needRIHandling = false;
1779     /*
1780      * Routing manager is going to update either of endpoint or response or both.
1781      * This typecasting is done to avoid unnecessary duplication of Endpoint and responseInfo
1782      * RM can update "routeData" option in endPoint so that future RI requests can be sent to proper
1783      * destination.
1784      */
1785     OCStackResult ret = RMHandleResponse((CAResponseInfo_t *)responseInfo, (CAEndpoint_t *)endPoint,
1786                                          &needRIHandling);
1787     if(ret != OC_STACK_OK || !needRIHandling)
1788     {
1789         OIC_LOG_V(INFO, TAG, "Routing status![%d]. Not forwarding to RI", ret);
1790         OIC_TRACE_END();
1791         return;
1792     }
1793 #endif
1794
1795     /*
1796      * Put source in sender endpoint so that the next packet from application can be routed to
1797      * proper destination and remove "RM" coap header option before passing request / response to
1798      * RI as this option will make no sense to either RI or application.
1799      */
1800     RMUpdateInfo((CAHeaderOption_t **) &(responseInfo->info.options),
1801                  (uint8_t *) &(responseInfo->info.numOptions),
1802                  (CAEndpoint_t *) endPoint);
1803 #endif
1804
1805     OCHandleResponse(endPoint, responseInfo);
1806     OIC_TRACE_END();
1807     OIC_LOG(INFO, TAG, "Exit HandleCAResponses");
1808 }
1809
1810 /*
1811  * This function handles error response from CA
1812  * code shall be added to handle the errors
1813  */
1814 void HandleCAErrorResponse(const CAEndpoint_t *endPoint, const CAErrorInfo_t *errorInfo)
1815 {
1816     VERIFY_NON_NULL_NR(endPoint, FATAL);
1817     VERIFY_NON_NULL_NR(errorInfo, FATAL);
1818
1819     OIC_LOG(INFO, TAG, "Enter HandleCAErrorResponse");
1820     OIC_TRACE_BEGIN(%s:HandleCAErrorResponse, TAG);
1821
1822     ClientCB *cbNode = GetClientCB(errorInfo->info.token,
1823                                    errorInfo->info.tokenLength, NULL, NULL);
1824     if (cbNode)
1825     {
1826         OCClientResponse response = { .devAddr = { .adapter = OC_DEFAULT_ADAPTER } };
1827         CopyEndpointToDevAddr(endPoint, &response.devAddr);
1828         FixUpClientResponse(&response);
1829         response.resourceUri = errorInfo->info.resourceUri;
1830         memcpy(response.identity.id, errorInfo->info.identity.id,
1831                sizeof (response.identity.id));
1832         response.identity.id_length = errorInfo->info.identity.id_length;
1833         response.result = CAResultToOCResult(errorInfo->result);
1834
1835         OIC_LOG(INFO, TAG, "Before calling into application address space for error response");
1836         cbNode->callBack(cbNode->context, cbNode->handle, &response);
1837         OIC_LOG(INFO, TAG, "After calling into application address space for error response");
1838     }
1839
1840     ResourceObserver *observer = GetObserverUsingToken(errorInfo->info.token,
1841                                                        errorInfo->info.tokenLength);
1842     if (observer)
1843     {
1844         OIC_LOG(INFO, TAG, "Receiving communication error for an observer");
1845         OCStackResult result = CAResultToOCResult(errorInfo->result);
1846         if (OC_STACK_COMM_ERROR == result)
1847         {
1848             OCStackFeedBack(errorInfo->info.token, errorInfo->info.tokenLength,
1849                             OC_OBSERVER_FAILED_COMM);
1850         }
1851     }
1852
1853     OIC_LOG(INFO, TAG, "Exit HandleCAErrorResponse");
1854     OIC_TRACE_END();
1855 }
1856
1857 /*
1858  * This function sends out Direct Stack Responses. These are responses that are not coming
1859  * from the application entity handler. These responses have no payload and are usually ACKs,
1860  * RESETs or some error conditions that were caught by the stack.
1861  */
1862 OCStackResult SendDirectStackResponse(const CAEndpoint_t* endPoint, const uint16_t coapID,
1863         const CAResponseResult_t responseResult, const CAMessageType_t type,
1864         const uint8_t numOptions, const CAHeaderOption_t *options,
1865         CAToken_t token, uint8_t tokenLength, const char *resourceUri,
1866         CADataType_t dataType)
1867 {
1868     OIC_LOG(DEBUG, TAG, "Entering SendDirectStackResponse");
1869
1870     if (endPoint->flags & CA_MULTICAST)
1871     {
1872         OIC_LOG(ERROR, TAG, "It is unnecessary to respond to a multicast request");
1873         return OC_STACK_OK;
1874     }
1875
1876     CAResponseInfo_t respInfo = { .result = responseResult };
1877     respInfo.info.messageId = coapID;
1878     respInfo.info.numOptions = numOptions;
1879
1880     if (respInfo.info.numOptions)
1881     {
1882         respInfo.info.options =
1883             (CAHeaderOption_t *)OICCalloc(respInfo.info.numOptions, sizeof(CAHeaderOption_t));
1884         memcpy (respInfo.info.options, options,
1885                 sizeof(CAHeaderOption_t) * respInfo.info.numOptions);
1886
1887     }
1888
1889     respInfo.info.payload = NULL;
1890     respInfo.info.token = token;
1891     respInfo.info.tokenLength = tokenLength;
1892     respInfo.info.type = type;
1893     respInfo.info.resourceUri = OICStrdup (resourceUri);
1894     respInfo.info.acceptFormat = CA_FORMAT_UNDEFINED;
1895     respInfo.info.dataType = dataType;
1896
1897 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
1898     // Add the destination to route option from the endpoint->routeData.
1899     bool doPost = false;
1900     OCStackResult result = RMAddInfo(endPoint->routeData, &respInfo, false, &doPost);
1901     if(OC_STACK_OK != result)
1902     {
1903         OIC_LOG_V(ERROR, TAG, "Add routing option failed [%d]", result);
1904         OICFree (respInfo.info.resourceUri);
1905         OICFree (respInfo.info.options);
1906         return result;
1907     }
1908     if (doPost)
1909     {
1910         OIC_LOG(DEBUG, TAG, "Sending a POST message for EMPTY ACK in Client Mode");
1911         CARequestInfo_t reqInfo = {.method = CA_POST };
1912         /* The following initialization is not done in a single initializer block as in
1913          * arduino, .c file is compiled as .cpp and moves it from C99 to C++11.  The latter
1914          * does not have designated initalizers. This is a work-around for now.
1915          */
1916         reqInfo.info.type = CA_MSG_NONCONFIRM;
1917         reqInfo.info.messageId = coapID;
1918         reqInfo.info.tokenLength = tokenLength;
1919         reqInfo.info.token = token;
1920         reqInfo.info.numOptions = respInfo.info.numOptions;
1921         reqInfo.info.payload = NULL;
1922         reqInfo.info.resourceUri = OICStrdup (OC_RSRVD_GATEWAY_URI);
1923         if (reqInfo.info.numOptions)
1924         {
1925             reqInfo.info.options =
1926                 (CAHeaderOption_t *)OICCalloc(reqInfo.info.numOptions, sizeof(CAHeaderOption_t));
1927             if (NULL == reqInfo.info.options)
1928             {
1929                 OIC_LOG(ERROR, TAG, "Calloc failed");
1930                 OICFree (reqInfo.info.resourceUri);
1931                 OICFree (respInfo.info.resourceUri);
1932                 OICFree (respInfo.info.options);
1933                 return OC_STACK_NO_MEMORY;
1934             }
1935             memcpy (reqInfo.info.options, respInfo.info.options,
1936                     sizeof(CAHeaderOption_t) * reqInfo.info.numOptions);
1937
1938         }
1939         CAResult_t caResult = CASendRequest(endPoint, &reqInfo);
1940         OICFree (reqInfo.info.resourceUri);
1941         OICFree (reqInfo.info.options);
1942         OICFree (respInfo.info.resourceUri);
1943         OICFree (respInfo.info.options);
1944         if (CA_STATUS_OK != caResult)
1945         {
1946             OIC_LOG(ERROR, TAG, "CASendRequest error");
1947             return CAResultToOCResult(caResult);
1948         }
1949     }
1950     else
1951 #endif
1952     {
1953         CAResult_t caResult = CASendResponse(endPoint, &respInfo);
1954
1955         // resourceUri in the info field is cloned in the CA layer and
1956         // thus ownership is still here.
1957         OICFree (respInfo.info.resourceUri);
1958         OICFree (respInfo.info.options);
1959         if(CA_STATUS_OK != caResult)
1960         {
1961             OIC_LOG(ERROR, TAG, "CASendResponse error");
1962             return CAResultToOCResult(caResult);
1963         }
1964     }
1965     OIC_LOG(DEBUG, TAG, "Exit SendDirectStackResponse");
1966     return OC_STACK_OK;
1967 }
1968
1969 OCStackResult HandleStackRequests(OCServerProtocolRequest * protocolRequest)
1970 {
1971     OIC_LOG(INFO, TAG, "Entering HandleStackRequests (OCStack Layer)");
1972     OCStackResult result = OC_STACK_ERROR;
1973     if(!protocolRequest)
1974     {
1975         OIC_LOG(ERROR, TAG, "protocolRequest is NULL");
1976         return OC_STACK_INVALID_PARAM;
1977     }
1978
1979     OCServerRequest * request = GetServerRequestUsingToken(protocolRequest->requestToken,
1980             protocolRequest->tokenLength);
1981     if(!request)
1982     {
1983         OIC_LOG(INFO, TAG, "This is a new Server Request");
1984         result = AddServerRequest(&request, protocolRequest->coapID,
1985                 protocolRequest->delayedResNeeded, 0, protocolRequest->method,
1986                 protocolRequest->numRcvdVendorSpecificHeaderOptions,
1987                 protocolRequest->observationOption, protocolRequest->qos,
1988                 protocolRequest->query, protocolRequest->rcvdVendorSpecificHeaderOptions,
1989                 protocolRequest->payload, protocolRequest->requestToken,
1990                 protocolRequest->tokenLength, protocolRequest->resourceUrl,
1991                 protocolRequest->reqTotalSize, protocolRequest->acceptFormat,
1992                 &protocolRequest->devAddr);
1993         if (OC_STACK_OK != result)
1994         {
1995             OIC_LOG(ERROR, TAG, "Error adding server request");
1996             return result;
1997         }
1998
1999         if(!request)
2000         {
2001             OIC_LOG(ERROR, TAG, "Out of Memory");
2002             return OC_STACK_NO_MEMORY;
2003         }
2004
2005         if(!protocolRequest->reqMorePacket)
2006         {
2007             request->requestComplete = 1;
2008         }
2009     }
2010     else
2011     {
2012         OIC_LOG(INFO, TAG, "This is either a repeated or blocked Server Request");
2013     }
2014
2015     if(request->requestComplete)
2016     {
2017         OIC_LOG(INFO, TAG, "This Server Request is complete");
2018         ResourceHandling resHandling = OC_RESOURCE_VIRTUAL;
2019         OCResource *resource = NULL;
2020         result = DetermineResourceHandling (request, &resHandling, &resource);
2021         if (result == OC_STACK_OK)
2022         {
2023             result = ProcessRequest(resHandling, resource, request);
2024         }
2025     }
2026     else
2027     {
2028         OIC_LOG(INFO, TAG, "This Server Request is incomplete");
2029         result = OC_STACK_CONTINUE;
2030     }
2031     return result;
2032 }
2033
2034 void OCHandleRequests(const CAEndpoint_t* endPoint, const CARequestInfo_t* requestInfo)
2035 {
2036     OIC_TRACE_MARK(%s:OCHandleRequests:%s, TAG, requestInfo->info.resourceUri);
2037     OIC_LOG(DEBUG, TAG, "Enter OCHandleRequests");
2038
2039     OCStackResult requestResult = OC_STACK_ERROR;
2040
2041     if(myStackMode == OC_CLIENT)
2042     {
2043         //TODO: should the client be responding to requests?
2044         return;
2045     }
2046
2047     OCServerProtocolRequest serverRequest = {0};
2048
2049     OIC_LOG_V(INFO, TAG, "Endpoint URI : %s", requestInfo->info.resourceUri);
2050
2051     char * uriWithoutQuery = NULL;
2052     char * query  = NULL;
2053
2054     requestResult = getQueryFromUri(requestInfo->info.resourceUri, &query, &uriWithoutQuery);
2055
2056     if (requestResult != OC_STACK_OK || !uriWithoutQuery)
2057     {
2058         OIC_LOG_V(ERROR, TAG, "getQueryFromUri() failed with OC error code %d\n", requestResult);
2059         return;
2060     }
2061     OIC_LOG_V(INFO, TAG, "URI without query: %s", uriWithoutQuery);
2062     OIC_LOG_V(INFO, TAG, "Query : %s", query);
2063
2064     if(strlen(uriWithoutQuery) < MAX_URI_LENGTH)
2065     {
2066         OICStrcpy(serverRequest.resourceUrl, sizeof(serverRequest.resourceUrl), uriWithoutQuery);
2067         OICFree(uriWithoutQuery);
2068     }
2069     else
2070     {
2071         OIC_LOG(ERROR, TAG, "URI length exceeds MAX_URI_LENGTH.");
2072         OICFree(uriWithoutQuery);
2073         OICFree(query);
2074         return;
2075     }
2076
2077     if(query)
2078     {
2079         if(strlen(query) < MAX_QUERY_LENGTH)
2080         {
2081             OICStrcpy(serverRequest.query, sizeof(serverRequest.query), query);
2082             OICFree(query);
2083         }
2084         else
2085         {
2086             OIC_LOG(ERROR, TAG, "Query length exceeds MAX_QUERY_LENGTH.");
2087             OICFree(query);
2088             return;
2089         }
2090     }
2091
2092     if ((requestInfo->info.payload) && (0 < requestInfo->info.payloadSize))
2093     {
2094         serverRequest.reqTotalSize = requestInfo->info.payloadSize;
2095         serverRequest.payload = (uint8_t *) OICMalloc(requestInfo->info.payloadSize);
2096         if (!serverRequest.payload)
2097         {
2098             OIC_LOG(ERROR, TAG, "Allocation for payload failed.");
2099             return;
2100         }
2101         memcpy (serverRequest.payload, requestInfo->info.payload,
2102                 requestInfo->info.payloadSize);
2103     }
2104     else
2105     {
2106         serverRequest.reqTotalSize = 0;
2107     }
2108
2109     switch (requestInfo->method)
2110     {
2111         case CA_GET:
2112             serverRequest.method = OC_REST_GET;
2113             break;
2114         case CA_PUT:
2115             serverRequest.method = OC_REST_PUT;
2116             break;
2117         case CA_POST:
2118             serverRequest.method = OC_REST_POST;
2119             break;
2120         case CA_DELETE:
2121             serverRequest.method = OC_REST_DELETE;
2122             break;
2123         default:
2124             OIC_LOG_V(ERROR, TAG, "Received CA method %d not supported", requestInfo->method);
2125             SendDirectStackResponse(endPoint, requestInfo->info.messageId, CA_BAD_REQ,
2126                         requestInfo->info.type, requestInfo->info.numOptions,
2127                         requestInfo->info.options, requestInfo->info.token,
2128                         requestInfo->info.tokenLength, requestInfo->info.resourceUri,
2129                         CA_RESPONSE_DATA);
2130             OICFree(serverRequest.payload);
2131             return;
2132     }
2133
2134     OIC_LOG_BUFFER(INFO, TAG, (const uint8_t *)requestInfo->info.token,
2135             requestInfo->info.tokenLength);
2136
2137     serverRequest.tokenLength = requestInfo->info.tokenLength;
2138     if (serverRequest.tokenLength) {
2139         // Non empty token
2140         serverRequest.requestToken = (CAToken_t)OICMalloc(requestInfo->info.tokenLength);
2141
2142         if (!serverRequest.requestToken)
2143         {
2144             OIC_LOG(FATAL, TAG, "Allocation for token failed.");
2145             SendDirectStackResponse(endPoint, requestInfo->info.messageId, CA_INTERNAL_SERVER_ERROR,
2146                     requestInfo->info.type, requestInfo->info.numOptions,
2147                     requestInfo->info.options, requestInfo->info.token,
2148                     requestInfo->info.tokenLength, requestInfo->info.resourceUri,
2149                     CA_RESPONSE_DATA);
2150             OICFree(serverRequest.payload);
2151             return;
2152         }
2153         memcpy(serverRequest.requestToken, requestInfo->info.token, requestInfo->info.tokenLength);
2154     }
2155
2156     switch (requestInfo->info.acceptFormat)
2157     {
2158         case CA_FORMAT_APPLICATION_CBOR:
2159             serverRequest.acceptFormat = OC_FORMAT_CBOR;
2160             break;
2161         case CA_FORMAT_UNDEFINED:
2162             serverRequest.acceptFormat = OC_FORMAT_UNDEFINED;
2163             break;
2164         default:
2165             serverRequest.acceptFormat = OC_FORMAT_UNSUPPORTED;
2166     }
2167
2168     if (requestInfo->info.type == CA_MSG_CONFIRM)
2169     {
2170         serverRequest.qos = OC_HIGH_QOS;
2171     }
2172     else
2173     {
2174         serverRequest.qos = OC_LOW_QOS;
2175     }
2176     // CA does not need the following field
2177     // Are we sure CA does not need them? how is it responding to multicast
2178     serverRequest.delayedResNeeded = 0;
2179
2180     serverRequest.coapID = requestInfo->info.messageId;
2181
2182     CopyEndpointToDevAddr(endPoint, &serverRequest.devAddr);
2183
2184     // copy vendor specific header options
2185     uint8_t tempNum = (requestInfo->info.numOptions);
2186
2187     // Assume no observation requested and it is a pure GET.
2188     // If obs registration/de-registration requested it'll be fetched from the
2189     // options in GetObserveHeaderOption()
2190     serverRequest.observationOption = OC_OBSERVE_NO_OPTION;
2191
2192     GetObserveHeaderOption(&serverRequest.observationOption, requestInfo->info.options, &tempNum);
2193     if (requestInfo->info.numOptions > MAX_HEADER_OPTIONS)
2194     {
2195         OIC_LOG(ERROR, TAG,
2196                 "The request info numOptions is greater than MAX_HEADER_OPTIONS");
2197         SendDirectStackResponse(endPoint, requestInfo->info.messageId, CA_BAD_OPT,
2198                 requestInfo->info.type, requestInfo->info.numOptions,
2199                 requestInfo->info.options, requestInfo->info.token,
2200                 requestInfo->info.tokenLength, requestInfo->info.resourceUri,
2201                 CA_RESPONSE_DATA);
2202         OICFree(serverRequest.payload);
2203         OICFree(serverRequest.requestToken);
2204         return;
2205     }
2206
2207     serverRequest.numRcvdVendorSpecificHeaderOptions = tempNum;
2208     if (serverRequest.numRcvdVendorSpecificHeaderOptions && requestInfo->info.options)
2209     {
2210         serverRequest.rcvdVendorSpecificHeaderOptions = (OCHeaderOption*) OICCalloc(tempNum, sizeof(OCHeaderOption));
2211         if (NULL == serverRequest.rcvdVendorSpecificHeaderOptions)
2212         {
2213             OIC_LOG(ERROR, TAG, "Failed to allocated memory to vnd header options!");
2214             OICFree(serverRequest.payload);
2215             OICFree(serverRequest.requestToken);
2216             return;
2217         }
2218
2219         memcpy (serverRequest.rcvdVendorSpecificHeaderOptions, requestInfo->info.options,
2220             sizeof(CAHeaderOption_t)*tempNum);
2221     }
2222
2223     requestResult = HandleStackRequests (&serverRequest);
2224
2225     // Send ACK to client as precursor to slow response
2226     if (requestResult == OC_STACK_SLOW_RESOURCE)
2227     {
2228         if (requestInfo->info.type == CA_MSG_CONFIRM)
2229         {
2230             SendDirectStackResponse(endPoint, requestInfo->info.messageId, CA_EMPTY,
2231                                     CA_MSG_ACKNOWLEDGE,0, NULL, NULL, 0, NULL,
2232                                     CA_RESPONSE_DATA);
2233         }
2234     }
2235 #ifndef __TIZENRT__
2236     if (requestResult == OC_STACK_RESOURCE_ERROR
2237             && serverRequest.observationOption == OC_OBSERVE_REGISTER)
2238     {
2239         OIC_LOG_V(ERROR, TAG, "Observe Registration failed due to resource error");
2240     }
2241 #else
2242     if (serverRequest.observationOption == OC_OBSERVE_REGISTER)
2243     {
2244         if (requestResult == OC_STACK_RESOURCE_ERROR)
2245         {
2246             OIC_LOG_V(ERROR, TAG, "Observe Registration failed due to resource error");
2247         }
2248         else if (!OCResultToSuccess(requestResult))
2249         {
2250             DeleteObserverUsingToken(requestInfo->info.token, requestInfo->info.tokenLength);
2251         }
2252     }
2253 #endif
2254     else if(!OCResultToSuccess(requestResult))
2255     {
2256         OIC_LOG_V(ERROR, TAG, "HandleStackRequests failed. error: %d", requestResult);
2257
2258         // Delete observer node if it is OBSERVE failure from app
2259         if (serverRequest.observationOption == OC_OBSERVE_REGISTER)
2260         {
2261             DeleteObserverUsingToken(requestInfo->info.token, requestInfo->info.tokenLength);
2262         }
2263
2264         CAResponseResult_t stackResponse =
2265             OCToCAStackResult(requestResult, serverRequest.method);
2266
2267         SendDirectStackResponse(endPoint, requestInfo->info.messageId, stackResponse,
2268                 requestInfo->info.type, requestInfo->info.numOptions,
2269                 requestInfo->info.options, requestInfo->info.token,
2270                 requestInfo->info.tokenLength, requestInfo->info.resourceUri,
2271                 CA_RESPONSE_DATA);
2272     }
2273     // requestToken is fed to HandleStackRequests, which then goes to AddServerRequest.
2274     // The token is copied in there, and is thus still owned by this function.
2275     OICFree(serverRequest.payload);
2276     OICFree(serverRequest.requestToken);
2277     OICFree(serverRequest.rcvdVendorSpecificHeaderOptions);
2278     OIC_LOG(INFO, TAG, "Exit OCHandleRequests");
2279 }
2280
2281 //This function will be called back by CA layer when a request is received
2282 void HandleCARequests(const CAEndpoint_t* endPoint, const CARequestInfo_t* requestInfo)
2283 {
2284     OIC_LOG(INFO, TAG, "Enter HandleCARequests");
2285     OIC_TRACE_BEGIN(%s:HandleCARequests, TAG);
2286     if(!endPoint)
2287     {
2288         OIC_LOG(ERROR, TAG, "endPoint is NULL");
2289         OIC_TRACE_END();
2290         return;
2291     }
2292
2293     if(!requestInfo)
2294     {
2295         OIC_LOG(ERROR, TAG, "requestInfo is NULL");
2296         OIC_TRACE_END();
2297         return;
2298     }
2299
2300 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
2301 #ifdef ROUTING_GATEWAY
2302     bool needRIHandling = false;
2303     bool isEmptyMsg = false;
2304     /*
2305      * Routing manager is going to update either of endpoint or request or both.
2306      * This typecasting is done to avoid unnecessary duplication of Endpoint and requestInfo
2307      * RM can update "routeData" option in endPoint so that future RI requests can be sent to proper
2308      * destination. It can also remove "RM" coap header option before passing request / response to
2309      * RI as this option will make no sense to either RI or application.
2310      */
2311     OCStackResult ret = RMHandleRequest((CARequestInfo_t *)requestInfo, (CAEndpoint_t *)endPoint,
2312                                         &needRIHandling, &isEmptyMsg);
2313     if(OC_STACK_OK != ret || !needRIHandling)
2314     {
2315         OIC_LOG_V(INFO, TAG, "Routing status![%d]. Not forwarding to RI", ret);
2316         OIC_TRACE_END();
2317         return;
2318     }
2319 #endif
2320
2321     /*
2322      * Put source in sender endpoint so that the next packet from application can be routed to
2323      * proper destination and remove RM header option.
2324      */
2325     RMUpdateInfo((CAHeaderOption_t **) &(requestInfo->info.options),
2326                  (uint8_t *) &(requestInfo->info.numOptions),
2327                  (CAEndpoint_t *) endPoint);
2328
2329 #ifdef ROUTING_GATEWAY
2330     if (isEmptyMsg)
2331     {
2332         /*
2333          * In Gateways, the MSGType in route option is used to check if the actual
2334          * response is EMPTY message(4 bytes CoAP Header).  In case of Client, the
2335          * EMPTY response is sent in the form of POST request which need to be changed
2336          * to a EMPTY response by RM.  This translation is done in this part of the code.
2337          */
2338         OIC_LOG(INFO, TAG, "This is a Empty response from the Client");
2339         CAResponseInfo_t respInfo = {.result = CA_EMPTY,
2340                                      .info.messageId = requestInfo->info.messageId,
2341                                      .info.type = CA_MSG_ACKNOWLEDGE};
2342         OCHandleResponse(endPoint, &respInfo);
2343     }
2344     else
2345 #endif
2346 #endif
2347     {
2348         // Normal handling of the packet
2349         OCHandleRequests(endPoint, requestInfo);
2350     }
2351     OIC_LOG(INFO, TAG, "Exit HandleCARequests");
2352     OIC_TRACE_END();
2353 }
2354
2355 //-----------------------------------------------------------------------------
2356 // Public APIs
2357 //-----------------------------------------------------------------------------
2358 #ifdef RA_ADAPTER
2359 OCStackResult OCSetRAInfo(const OCRAInfo_t *raInfo)
2360 {
2361     if (!raInfo           ||
2362         !raInfo->username ||
2363         !raInfo->hostname ||
2364         !raInfo->xmpp_domain)
2365     {
2366
2367         return OC_STACK_INVALID_PARAM;
2368     }
2369     OCStackResult result = CAResultToOCResult(CASetRAInfo((const CARAInfo_t *) raInfo));
2370     gRASetInfo = (result == OC_STACK_OK)? true : false;
2371
2372     return result;
2373 }
2374 #endif
2375
2376 OCStackResult OCInit(const char *ipAddr, uint16_t port, OCMode mode)
2377 {
2378     (void) ipAddr;
2379     (void) port;
2380     return OCInit1(mode, OC_DEFAULT_FLAGS, OC_DEFAULT_FLAGS);
2381 }
2382
2383 OCStackResult OCInit1(OCMode mode, OCTransportFlags serverFlags, OCTransportFlags clientFlags)
2384 {
2385     OC_UNUSED(serverFlags);
2386     OC_UNUSED(clientFlags);
2387
2388     OIC_LOG(DEBUG, TAG, "call OCInit1");
2389     return OCInit2(mode, OC_DEFAULT_FLAGS, OC_DEFAULT_FLAGS, OC_DEFAULT_ADAPTER);
2390 }
2391
2392 OCStackResult OCInit2(OCMode mode, OCTransportFlags serverFlags, OCTransportFlags clientFlags,
2393                       OCTransportAdapter transportType)
2394 {
2395     if(stackState == OC_STACK_INITIALIZED)
2396     {
2397         OIC_LOG(INFO, TAG, "Subsequent calls to OCInit() without calling \
2398                 OCStop() between them are ignored.");
2399         return OC_STACK_OK;
2400     }
2401
2402 #ifndef ROUTING_GATEWAY
2403     if (OC_GATEWAY == mode)
2404     {
2405         OIC_LOG(ERROR, TAG, "Routing Manager not supported");
2406         return OC_STACK_INVALID_PARAM;
2407     }
2408 #endif
2409
2410 #ifdef RA_ADAPTER
2411     if(!gRASetInfo)
2412     {
2413         OIC_LOG(ERROR, TAG, "Need to call OCSetRAInfo before calling OCInit");
2414         return OC_STACK_ERROR;
2415     }
2416 #endif
2417
2418     OCStackResult result = OC_STACK_ERROR;
2419     OIC_LOG(INFO, TAG, "Entering OCInit");
2420
2421     // Validate mode
2422     if (!((mode == OC_CLIENT) || (mode == OC_SERVER) || (mode == OC_CLIENT_SERVER)
2423         || (mode == OC_GATEWAY)))
2424     {
2425         OIC_LOG(ERROR, TAG, "Invalid mode");
2426         return OC_STACK_ERROR;
2427     }
2428     myStackMode = mode;
2429
2430     if (mode == OC_CLIENT || mode == OC_CLIENT_SERVER || mode == OC_GATEWAY)
2431     {
2432         caglobals.client = true;
2433     }
2434     if (mode == OC_SERVER || mode == OC_CLIENT_SERVER || mode == OC_GATEWAY)
2435     {
2436         caglobals.server = true;
2437     }
2438
2439     caglobals.serverFlags = (CATransportFlags_t)serverFlags;
2440     if (!(caglobals.serverFlags & CA_IPFAMILY_MASK))
2441     {
2442         caglobals.serverFlags = (CATransportFlags_t)(caglobals.serverFlags|CA_IPV4|CA_IPV6);
2443     }
2444     caglobals.clientFlags = (CATransportFlags_t)clientFlags;
2445     if (!(caglobals.clientFlags & CA_IPFAMILY_MASK))
2446     {
2447         caglobals.clientFlags = (CATransportFlags_t)(caglobals.clientFlags|CA_IPV4|CA_IPV6);
2448     }
2449
2450     defaultDeviceHandler = NULL;
2451     defaultDeviceHandlerCallbackParameter = NULL;
2452
2453     result = InitializeScheduleResourceList();
2454     VERIFY_SUCCESS(result, OC_STACK_OK);
2455
2456     result = CAResultToOCResult(CAInitialize((CATransportAdapter_t)transportType));
2457     VERIFY_SUCCESS(result, OC_STACK_OK);
2458
2459     result = CAResultToOCResult(OCSelectNetwork(transportType));
2460     VERIFY_SUCCESS(result, OC_STACK_OK);
2461
2462     result = CAResultToOCResult(CARegisterNetworkMonitorHandler(
2463       OCDefaultAdapterStateChangedHandler, OCDefaultConnectionStateChangedHandler));
2464     VERIFY_SUCCESS(result, OC_STACK_OK);
2465
2466     switch (myStackMode)
2467     {
2468         case OC_CLIENT:
2469             CARegisterHandler(HandleCARequests, HandleCAResponses, HandleCAErrorResponse);
2470             result = CAResultToOCResult(CAStartDiscoveryServer());
2471             OIC_LOG(INFO, TAG, "Client mode: CAStartDiscoveryServer");
2472             break;
2473         case OC_SERVER:
2474             SRMRegisterHandler(HandleCARequests, HandleCAResponses, HandleCAErrorResponse);
2475             result = CAResultToOCResult(CAStartListeningServer());
2476             OIC_LOG(INFO, TAG, "Server mode: CAStartListeningServer");
2477             break;
2478         case OC_CLIENT_SERVER:
2479         case OC_GATEWAY:
2480             SRMRegisterHandler(HandleCARequests, HandleCAResponses, HandleCAErrorResponse);
2481             result = CAResultToOCResult(CAStartListeningServer());
2482             if(result == OC_STACK_OK)
2483             {
2484                 result = CAResultToOCResult(CAStartDiscoveryServer());
2485             }
2486             break;
2487     }
2488     VERIFY_SUCCESS(result, OC_STACK_OK);
2489
2490 #ifdef TCP_ADAPTER
2491     CARegisterKeepAliveHandler(OCHandleKeepAliveConnCB);
2492 #endif
2493
2494 #ifdef WITH_PRESENCE
2495     PresenceTimeOutSize = sizeof (PresenceTimeOut) / sizeof (PresenceTimeOut[0]) - 1;
2496 #endif // WITH_PRESENCE
2497
2498     //Update Stack state to initialized
2499     stackState = OC_STACK_INITIALIZED;
2500
2501     // Initialize resource
2502     if(myStackMode != OC_CLIENT)
2503     {
2504         result = initResources();
2505     }
2506
2507     // Initialize the SRM Policy Engine
2508     if(result == OC_STACK_OK)
2509     {
2510         result = SRMInitPolicyEngine();
2511         // TODO after BeachHead delivery: consolidate into single SRMInit()
2512     }
2513 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
2514     RMSetStackMode(mode);
2515 #ifdef ROUTING_GATEWAY
2516     if (OC_GATEWAY == myStackMode)
2517     {
2518         result = RMInitialize();
2519     }
2520 #endif
2521 #endif
2522
2523 #ifdef TCP_ADAPTER
2524     if (result == OC_STACK_OK)
2525     {
2526         result = OCInitializeKeepAlive(myStackMode);
2527     }
2528 #endif
2529
2530     InitializeObserverList();
2531
2532 exit:
2533     if(result != OC_STACK_OK)
2534     {
2535         OIC_LOG(ERROR, TAG, "Stack initialization error");
2536         TerminateScheduleResourceList();
2537         deleteAllResources();
2538         CATerminate();
2539         stackState = OC_STACK_UNINITIALIZED;
2540     }
2541     return result;
2542 }
2543
2544 OCStackResult OCStop()
2545 {
2546     OIC_LOG(INFO, TAG, "Entering OCStop");
2547
2548     if (stackState == OC_STACK_UNINIT_IN_PROGRESS)
2549     {
2550         OIC_LOG(DEBUG, TAG, "Stack already stopping, exiting");
2551         return OC_STACK_OK;
2552     }
2553     else if (stackState != OC_STACK_INITIALIZED)
2554     {
2555         OIC_LOG(INFO, TAG, "Stack not initialized");
2556         return OC_STACK_ERROR;
2557     }
2558
2559     // unset cautil config
2560     CAUtilConfig_t configs = {(CATransportBTFlags_t)CA_DEFAULT_BT_FLAGS};
2561     CAUtilSetBTConfigure(configs);
2562
2563     stackState = OC_STACK_UNINIT_IN_PROGRESS;
2564
2565     CAUnregisterNetworkMonitorHandler(OCDefaultAdapterStateChangedHandler,
2566                                       OCDefaultConnectionStateChangedHandler);
2567
2568 #ifdef WITH_PRESENCE
2569     // Ensure that the TTL associated with ANY and ALL presence notifications originating from
2570     // here send with the code "OC_STACK_PRESENCE_STOPPED" result.
2571     presenceResource.presenceTTL = 0;
2572     presenceState = OC_PRESENCE_UNINITIALIZED;
2573 #endif // WITH_PRESENCE
2574
2575 #ifdef ROUTING_GATEWAY
2576     if (OC_GATEWAY == myStackMode)
2577     {
2578         RMTerminate();
2579     }
2580 #endif
2581
2582 #ifdef TCP_ADAPTER
2583     OCTerminateKeepAlive(myStackMode);
2584 #endif
2585
2586     TerminateScheduleResourceList();
2587     // Remove all observers
2588     DeleteObserverList();
2589     // Free memory dynamically allocated for resources
2590     deleteAllResources();
2591     // Remove all the client callbacks
2592     DeleteClientCBList();
2593     // Terminate connectivity-abstraction layer.
2594     CATerminate();
2595
2596     // De-init the SRM Policy Engine
2597     // TODO after BeachHead delivery: consolidate into single SRMDeInit()
2598     SRMDeInitPolicyEngine();
2599
2600     // Destroy Observer List Mutex
2601     TerminateObserverList();
2602
2603     stackState = OC_STACK_UNINITIALIZED;
2604     return OC_STACK_OK;
2605 }
2606
2607 OCStackResult OCStartMulticastServer()
2608 {
2609     if(stackState != OC_STACK_INITIALIZED)
2610     {
2611         OIC_LOG(ERROR, TAG, "OCStack is not initalized. Cannot start multicast server.");
2612         return OC_STACK_ERROR;
2613     }
2614     CAResult_t ret = CAStartListeningServer();
2615     if (CA_STATUS_OK != ret)
2616     {
2617         OIC_LOG_V(ERROR, TAG, "Failed starting listening server: %d", ret);
2618         return OC_STACK_ERROR;
2619     }
2620     return OC_STACK_OK;
2621 }
2622
2623 OCStackResult OCStopMulticastServer()
2624 {
2625     CAResult_t ret = CAStopListeningServer();
2626     if (CA_STATUS_OK != ret)
2627     {
2628         OIC_LOG_V(ERROR, TAG, "Failed stopping listening server: %d", ret);
2629         return OC_STACK_ERROR;
2630     }
2631     return OC_STACK_OK;
2632 }
2633
2634 CAMessageType_t qualityOfServiceToMessageType(OCQualityOfService qos)
2635 {
2636     switch (qos)
2637     {
2638         case OC_HIGH_QOS:
2639             return CA_MSG_CONFIRM;
2640         case OC_LOW_QOS:
2641         case OC_MEDIUM_QOS:
2642         case OC_NA_QOS:
2643         default:
2644             return CA_MSG_NONCONFIRM;
2645     }
2646 }
2647
2648 OCStackResult ParseRequestUri(const char *fullUri,
2649                               OCTransportAdapter adapter,
2650                               OCTransportFlags flags,
2651                               OCDevAddr **devAddr,
2652                               char **resourceUri,
2653                               char **resourceType)
2654 {
2655     VERIFY_NON_NULL(fullUri, FATAL, OC_STACK_INVALID_CALLBACK);
2656
2657     OCStackResult result = OC_STACK_OK;
2658     OCDevAddr *da = NULL;
2659     char *colon = NULL;
2660     char *end;
2661
2662     // provide defaults for all returned values
2663     if (devAddr)
2664     {
2665         *devAddr = NULL;
2666     }
2667     if (resourceUri)
2668     {
2669         *resourceUri = NULL;
2670     }
2671     if (resourceType)
2672     {
2673         *resourceType = NULL;
2674     }
2675
2676     // delimit url prefix, if any
2677     const char *start = fullUri;
2678     char *slash2 = strstr(start, "//");
2679     if (slash2)
2680     {
2681         start = slash2 + 2;
2682     }
2683     char *slash = strchr(start, '/');
2684     if (!slash)
2685     {
2686         return OC_STACK_INVALID_URI;
2687     }
2688
2689     // process url scheme
2690     size_t prefixLen = slash2 - fullUri;
2691     bool istcp = false;
2692     if (prefixLen)
2693     {
2694         if (((prefixLen == sizeof(COAP_TCP_SCHEME) - 1) && (!strncmp(fullUri, COAP_TCP_SCHEME, prefixLen)))
2695         || ((prefixLen == sizeof(COAPS_TCP_SCHEME) - 1) && (!strncmp(fullUri, COAPS_TCP_SCHEME, prefixLen))))
2696         {
2697             istcp = true;
2698         }
2699     }
2700
2701     // TODO: this logic should come in with unit tests exercising the various strings
2702     // processs url prefix, if any
2703     size_t urlLen = slash - start;
2704     // port
2705     uint16_t port = 0;
2706     size_t len = 0;
2707     if (urlLen && devAddr)
2708     {   // construct OCDevAddr
2709         if (start[0] == '[')
2710         {   // ipv6 address
2711             char *close = strchr(++start, ']');
2712             if (!close || close > slash)
2713             {
2714                 return OC_STACK_INVALID_URI;
2715             }
2716             end = close;
2717             if (close[1] == ':')
2718             {
2719                 colon = close + 1;
2720             }
2721
2722             if (istcp)
2723             {
2724                 adapter = (OCTransportAdapter)(adapter | OC_ADAPTER_TCP);
2725             }
2726             else
2727             {
2728                 adapter = (OCTransportAdapter)(adapter | OC_ADAPTER_IP);
2729             }
2730             flags = (OCTransportFlags)(flags | OC_IP_USE_V6);
2731         }
2732         else
2733         {
2734             char *dot = strchr(start, '.');
2735             if (dot && dot < slash)
2736             {   // ipv4 address
2737                 colon = strchr(start, ':');
2738                 end = (colon && colon < slash) ? colon : slash;
2739
2740                 if (istcp)
2741                 {
2742                     // coap over tcp
2743                     adapter = (OCTransportAdapter)(adapter | OC_ADAPTER_TCP);
2744                 }
2745                 else
2746                 {
2747                     adapter = (OCTransportAdapter)(adapter | OC_ADAPTER_IP);
2748                 }
2749                 flags = (OCTransportFlags)(flags | OC_IP_USE_V4);
2750             }
2751             else
2752             {   // MAC address
2753                 end = slash;
2754             }
2755         }
2756         len = end - start;
2757         if (len >= sizeof(da->addr))
2758         {
2759             return OC_STACK_INVALID_URI;
2760         }
2761         // collect port, if any
2762         if (colon && colon < slash)
2763         {
2764             for (colon++; colon < slash; colon++)
2765             {
2766                 char c = colon[0];
2767                 if (c < '0' || c > '9')
2768                 {
2769                     return OC_STACK_INVALID_URI;
2770                 }
2771                 port = 10 * port + c - '0';
2772             }
2773         }
2774
2775         len = end - start;
2776         if (len >= sizeof(da->addr))
2777         {
2778             return OC_STACK_INVALID_URI;
2779         }
2780
2781         da = (OCDevAddr *)OICCalloc(sizeof (OCDevAddr), 1);
2782         if (!da)
2783         {
2784             return OC_STACK_NO_MEMORY;
2785         }
2786
2787         // Decode address per RFC 6874.
2788         result = OCDecodeAddressForRFC6874(da->addr, sizeof(da->addr), start, end);
2789         if (result != OC_STACK_OK)
2790         {
2791              OICFree(*devAddr);
2792              return result;
2793         }
2794
2795         da->port = port;
2796         da->adapter = adapter;
2797         da->flags = flags;
2798         if (!strncmp(fullUri, "coaps", 5))
2799         {
2800             da->flags = (OCTransportFlags)(da->flags|CA_SECURE);
2801         }
2802         *devAddr = da;
2803     }
2804
2805     // process resource uri, if any
2806     if (slash)
2807     {   // request uri and query
2808         size_t ulen = strlen(slash); // resource uri length
2809         size_t tlen = 0;      // resource type length
2810         char *type = NULL;
2811
2812         static const char strPresence[] = "/oic/ad?rt=";
2813         static const size_t lenPresence = sizeof(strPresence) - 1;
2814         if (!strncmp(slash, strPresence, lenPresence))
2815         {
2816             type = slash + lenPresence;
2817             tlen = ulen - lenPresence;
2818         }
2819         // resource uri
2820         if (resourceUri)
2821         {
2822             *resourceUri = (char *)OICMalloc(ulen + 1);
2823             if (!*resourceUri)
2824             {
2825                 result = OC_STACK_NO_MEMORY;
2826                 goto error;
2827             }
2828             OICStrcpy(*resourceUri, (ulen + 1), slash);
2829         }
2830         // resource type
2831         if (type && resourceType)
2832         {
2833             *resourceType = (char *)OICMalloc(tlen + 1);
2834             if (!*resourceType)
2835             {
2836                 result = OC_STACK_NO_MEMORY;
2837                 goto error;
2838             }
2839
2840             OICStrcpy(*resourceType, (tlen+1), type);
2841         }
2842     }
2843
2844     return OC_STACK_OK;
2845
2846 error:
2847     // free all returned values
2848     if (devAddr)
2849     {
2850         OICFree(*devAddr);
2851     }
2852     if (resourceUri)
2853     {
2854         OICFree(*resourceUri);
2855     }
2856     if (resourceType)
2857     {
2858         OICFree(*resourceType);
2859     }
2860     return result;
2861 }
2862
2863 #ifdef WITH_PRESENCE
2864 static OCStackResult OCPreparePresence(CAEndpoint_t *endpoint,
2865                                        char **requestUri,
2866                                        bool isMulticast)
2867 {
2868     char uri[CA_MAX_URI_LENGTH];
2869
2870     FormCanonicalPresenceUri(endpoint, uri, isMulticast);
2871
2872     *requestUri = OICStrdup(uri);
2873     if (!*requestUri)
2874     {
2875         return OC_STACK_NO_MEMORY;
2876     }
2877
2878     return OC_STACK_OK;
2879 }
2880 #endif // WITH_PRESENCE
2881
2882 /**
2883  * Discover or Perform requests on a specified resource
2884  */
2885 OCStackResult OCDoResource(OCDoHandle *handle,
2886                             OCMethod method,
2887                             const char *requestUri,
2888                             const OCDevAddr *destination,
2889                             OCPayload* payload,
2890                             OCConnectivityType connectivityType,
2891                             OCQualityOfService qos,
2892                             OCCallbackData *cbData,
2893                             OCHeaderOption *options,
2894                             uint8_t numOptions)
2895 {
2896     OCStackResult ret = OCDoRequest(handle, method, requestUri,destination, payload,
2897                 connectivityType, qos, cbData, options, numOptions);
2898
2899     // This is the owner of the payload object, so we free it
2900     OCPayloadDestroy(payload);
2901     return ret;
2902 }
2903
2904 /**
2905  * Discover or Perform requests on a specified resource
2906  */
2907 OCStackResult OCDoRequest(OCDoHandle *handle,
2908                             OCMethod method,
2909                             const char *requestUri,
2910                             const OCDevAddr *destination,
2911                             OCPayload* payload,
2912                             OCConnectivityType connectivityType,
2913                             OCQualityOfService qos,
2914                             OCCallbackData *cbData,
2915                             OCHeaderOption *options,
2916                             uint8_t numOptions)
2917 {
2918     OIC_LOG(INFO, TAG, "Entering OCDoResource");
2919     OIC_TRACE_BEGIN(%s:OCDoRequest, TAG);
2920
2921     // Validate input parameters
2922     VERIFY_NON_NULL(cbData, FATAL, OC_STACK_INVALID_CALLBACK);
2923     VERIFY_NON_NULL(cbData->cb, FATAL, OC_STACK_INVALID_CALLBACK);
2924
2925     OCStackResult result = OC_STACK_ERROR;
2926     CAResult_t caResult;
2927     CAToken_t token = NULL;
2928     uint8_t tokenLength = CA_MAX_TOKEN_LEN;
2929     ClientCB *clientCB = NULL;
2930     OCDoHandle resHandle = NULL;
2931     CAEndpoint_t endpoint = {.adapter = CA_DEFAULT_ADAPTER};
2932     OCDevAddr tmpDevAddr = { OC_DEFAULT_ADAPTER };
2933     uint32_t ttl = 0;
2934     OCTransportAdapter adapter;
2935     OCTransportFlags flags;
2936     // the request contents are put here
2937     CARequestInfo_t requestInfo = {.method = CA_GET};
2938     // requestUri  will be parsed into the following three variables
2939     OCDevAddr *devAddr = NULL;
2940     char *resourceUri = NULL;
2941     char *resourceType = NULL;
2942
2943     /*
2944      * Support original behavior with address on resourceUri argument.
2945      */
2946     adapter = (OCTransportAdapter)(connectivityType >> CT_ADAPTER_SHIFT);
2947     flags = (OCTransportFlags)(connectivityType & CT_MASK_FLAGS);
2948
2949     if (requestUri)
2950     {
2951         result = ParseRequestUri(requestUri, adapter, flags, &devAddr, &resourceUri, &resourceType);
2952         if (result != OC_STACK_OK)
2953         {
2954             OIC_LOG_V(DEBUG, TAG, "Unable to parse uri: %s", requestUri);
2955             goto exit;
2956         }
2957     }
2958     else if (!checkProxyUri(options, numOptions))
2959     {
2960         OIC_LOG(ERROR, TAG, "Request doesn't contain RequestURI/Proxy URI");
2961         goto exit;
2962     }
2963
2964     switch (method)
2965     {
2966     case OC_REST_GET:
2967     case OC_REST_OBSERVE:
2968     case OC_REST_OBSERVE_ALL:
2969         requestInfo.method = CA_GET;
2970         break;
2971     case OC_REST_PUT:
2972         requestInfo.method = CA_PUT;
2973         break;
2974     case OC_REST_POST:
2975         requestInfo.method = CA_POST;
2976         break;
2977     case OC_REST_DELETE:
2978         requestInfo.method = CA_DELETE;
2979         break;
2980     case OC_REST_DISCOVER:
2981 #ifdef WITH_PRESENCE
2982     case OC_REST_PRESENCE:
2983 #endif
2984         if (destination || devAddr)
2985         {
2986             requestInfo.isMulticast = false;
2987         }
2988         else
2989         {
2990             tmpDevAddr.adapter = adapter;
2991             tmpDevAddr.flags = flags;
2992             destination = &tmpDevAddr;
2993             requestInfo.isMulticast = true;
2994             qos = OC_LOW_QOS;
2995         }
2996         // OC_REST_DISCOVER: CA_DISCOVER will become GET and isMulticast.
2997         // OC_REST_PRESENCE: Since "presence" is a stack layer only implementation.
2998         //                   replacing method type with GET.
2999         requestInfo.method = CA_GET;
3000         break;
3001     default:
3002         result = OC_STACK_INVALID_METHOD;
3003         goto exit;
3004     }
3005
3006     if (!devAddr && !destination)
3007     {
3008         OIC_LOG(DEBUG, TAG, "no devAddr and no destination");
3009         result = OC_STACK_INVALID_PARAM;
3010         goto exit;
3011     }
3012
3013     /* If not original behavior, use destination argument */
3014     if (destination && !devAddr)
3015     {
3016         devAddr = (OCDevAddr *)OICMalloc(sizeof (OCDevAddr));
3017         if (!devAddr)
3018         {
3019             result = OC_STACK_NO_MEMORY;
3020             goto exit;
3021         }
3022         OIC_LOG(DEBUG, TAG, "devAddr is set as destination");
3023         *devAddr = *destination;
3024     }
3025
3026     if (devAddr)
3027     {
3028         OIC_LOG_V(INFO_PRIVATE, TAG, "remoteId of devAddr : %s", devAddr->remoteId);
3029         if (!requestInfo.isMulticast)
3030         {
3031             OIC_LOG_V(DEBUG, TAG, "remoteAddr of devAddr : [%s]:[%d]",
3032                       devAddr->addr, devAddr->port);
3033         }
3034     }
3035
3036     resHandle = GenerateInvocationHandle();
3037     if (!resHandle)
3038     {
3039         result = OC_STACK_NO_MEMORY;
3040         goto exit;
3041     }
3042
3043     caResult = CAGenerateToken(&token, tokenLength);
3044     if (caResult != CA_STATUS_OK)
3045     {
3046         OIC_LOG(ERROR, TAG, "CAGenerateToken error");
3047         result= OC_STACK_ERROR;
3048         goto exit;
3049     }
3050
3051     // fill in request data
3052     requestInfo.info.type = qualityOfServiceToMessageType(qos);
3053     requestInfo.info.token = token;
3054     requestInfo.info.tokenLength = tokenLength;
3055
3056     if ((method == OC_REST_OBSERVE) || (method == OC_REST_OBSERVE_ALL))
3057     {
3058         result = CreateObserveHeaderOption (&(requestInfo.info.options),
3059                                     options, numOptions, OC_OBSERVE_REGISTER);
3060         if (result != OC_STACK_OK)
3061         {
3062             goto exit;
3063         }
3064         requestInfo.info.numOptions = numOptions + 1;
3065     }
3066     else
3067     {
3068         requestInfo.info.numOptions = numOptions;
3069         requestInfo.info.options =
3070             (CAHeaderOption_t*) OICCalloc(numOptions, sizeof(CAHeaderOption_t));
3071         memcpy(requestInfo.info.options, (CAHeaderOption_t*)options,
3072                numOptions * sizeof(CAHeaderOption_t));
3073     }
3074
3075     CopyDevAddrToEndpoint(devAddr, &endpoint);
3076
3077     if(payload)
3078     {
3079         if((result =
3080             OCConvertPayload(payload, &requestInfo.info.payload, &requestInfo.info.payloadSize))
3081                 != OC_STACK_OK)
3082         {
3083             OIC_LOG(ERROR, TAG, "Failed to create CBOR Payload");
3084             goto exit;
3085         }
3086         requestInfo.info.payloadFormat = CA_FORMAT_APPLICATION_CBOR;
3087     }
3088     else
3089     {
3090         requestInfo.info.payload = NULL;
3091         requestInfo.info.payloadSize = 0;
3092         requestInfo.info.payloadFormat = CA_FORMAT_UNDEFINED;
3093     }
3094
3095     // prepare for response
3096 #ifdef WITH_PRESENCE
3097     if (method == OC_REST_PRESENCE)
3098     {
3099         char *presenceUri = NULL;
3100         result = OCPreparePresence(&endpoint, &presenceUri,
3101                                    requestInfo.isMulticast);
3102         if (OC_STACK_OK != result)
3103         {
3104             goto exit;
3105         }
3106
3107         // Assign full presence uri as coap://ip:port/oic/ad to add to callback list.
3108         // Presence notification will form a canonical uri to
3109         // look for callbacks into the application.
3110         if (resourceUri)
3111         {
3112             OICFree(resourceUri);
3113         }
3114         resourceUri = presenceUri;
3115     }
3116 #endif
3117
3118     // update resourceUri onto requestInfo after check presence uri
3119     requestInfo.info.resourceUri = resourceUri;
3120
3121     ttl = GetTicks(MAX_CB_TIMEOUT_SECONDS * MILLISECONDS_PER_SECOND);
3122     result = AddClientCB(&clientCB, cbData, token, tokenLength, &resHandle,
3123                             method, devAddr, resourceUri, resourceType, ttl);
3124     if (OC_STACK_OK != result)
3125     {
3126         goto exit;
3127     }
3128
3129     devAddr = NULL;       // Client CB list entry now owns it
3130     resourceUri = NULL;   // Client CB list entry now owns it
3131     resourceType = NULL;  // Client CB list entry now owns it
3132
3133 #ifdef WITH_PRESENCE
3134     if (method == OC_REST_PRESENCE)
3135     {
3136         OIC_LOG(ERROR, TAG, "AddClientCB for presence done.");
3137
3138         if (handle)
3139         {
3140             *handle = resHandle;
3141         }
3142
3143         goto exit;
3144     }
3145 #endif
3146
3147     // send request
3148     result = OCSendRequest(&endpoint, &requestInfo);
3149     if (OC_STACK_OK != result)
3150     {
3151         goto exit;
3152     }
3153
3154     if (handle)
3155     {
3156         *handle = resHandle;
3157     }
3158
3159 exit:
3160     if (result != OC_STACK_OK)
3161     {
3162         OIC_LOG(ERROR, TAG, "OCDoResource error");
3163         FindAndDeleteClientCB(clientCB);
3164         CADestroyToken(token);
3165         if (handle)
3166         {
3167             *handle = NULL;
3168         }
3169         OICFree(resHandle);
3170     }
3171
3172     OICFree(requestInfo.info.payload);
3173     OICFree(devAddr);
3174     OICFree(resourceUri);
3175     OICFree(resourceType);
3176     OICFree(requestInfo.info.options);
3177     OIC_TRACE_END();
3178     return result;
3179 }
3180
3181 OCStackResult OCCancel(OCDoHandle handle, OCQualityOfService qos, OCHeaderOption * options,
3182         uint8_t numOptions)
3183 {
3184     /*
3185      * This ftn is implemented one of two ways in the case of observation:
3186      *
3187      * 1. qos == OC_NON_CONFIRMABLE. When observe is unobserved..
3188      *      Remove the callback associated on client side.
3189      *      When the next notification comes in from server,
3190      *      reply with RESET message to server.
3191      *      Keep in mind that the server will react to RESET only
3192      *      if the last notification was sent as CON
3193      *
3194      * 2. qos == OC_CONFIRMABLE. When OCCancel is called,
3195      *      and it is associated with an observe request
3196      *      (i.e. ClientCB->method == OC_REST_OBSERVE || OC_REST_OBSERVE_ALL),
3197      *      Send CON Observe request to server with
3198      *      observe flag = OC_RESOURCE_OBSERVE_DEREGISTER.
3199      *      Remove the callback associated on client side.
3200      */
3201     OCStackResult ret = OC_STACK_OK;
3202     CAEndpoint_t endpoint = {.adapter = CA_DEFAULT_ADAPTER};
3203     CARequestInfo_t requestInfo = {.method = CA_GET};
3204
3205     if(!handle)
3206     {
3207         return OC_STACK_INVALID_PARAM;
3208     }
3209
3210     ClientCB *clientCB = GetClientCB(NULL, 0, handle, NULL);
3211     if (!clientCB)
3212     {
3213         OIC_LOG(ERROR, TAG, "Callback not found. Called OCCancel on same resource twice?");
3214         return OC_STACK_ERROR;
3215     }
3216
3217     switch (clientCB->method)
3218     {
3219         case OC_REST_OBSERVE:
3220         case OC_REST_OBSERVE_ALL:
3221
3222             OIC_LOG_V(INFO, TAG, "Canceling observation for resource %s", clientCB->requestUri);
3223
3224             CopyDevAddrToEndpoint(clientCB->devAddr, &endpoint);
3225
3226             if ((endpoint.adapter & CA_ADAPTER_IP) && qos != OC_HIGH_QOS)
3227             {
3228                 FindAndDeleteClientCB(clientCB);
3229                 break;
3230             }
3231
3232             OIC_LOG(INFO, TAG, "Cancelling observation as CONFIRMABLE");
3233
3234             requestInfo.info.type = qualityOfServiceToMessageType(qos);
3235             requestInfo.info.token = clientCB->token;
3236             requestInfo.info.tokenLength = clientCB->tokenLength;
3237
3238             if (CreateObserveHeaderOption (&(requestInfo.info.options),
3239                     options, numOptions, OC_OBSERVE_DEREGISTER) != OC_STACK_OK)
3240             {
3241                 return OC_STACK_ERROR;
3242             }
3243             requestInfo.info.numOptions = numOptions + 1;
3244             requestInfo.info.resourceUri = OICStrdup (clientCB->requestUri);
3245
3246
3247             ret = OCSendRequest(&endpoint, &requestInfo);
3248
3249             if (requestInfo.info.options)
3250             {
3251                 OICFree (requestInfo.info.options);
3252             }
3253             if (requestInfo.info.resourceUri)
3254             {
3255                 OICFree (requestInfo.info.resourceUri);
3256             }
3257
3258             break;
3259
3260         case OC_REST_DISCOVER:
3261             OIC_LOG_V(INFO, TAG, "Cancelling discovery callback for resource %s",
3262                                            clientCB->requestUri);
3263             FindAndDeleteClientCB(clientCB);
3264             break;
3265
3266 #ifdef WITH_PRESENCE
3267         case OC_REST_PRESENCE:
3268             FindAndDeleteClientCB(clientCB);
3269             break;
3270 #endif
3271         case OC_REST_GET:
3272         case OC_REST_PUT:
3273         case OC_REST_POST:
3274         case OC_REST_DELETE:
3275             OIC_LOG_V(INFO, TAG, "Cancelling request callback for resource %s",
3276                                            clientCB->requestUri);
3277             FindAndDeleteClientCB(clientCB);
3278             break;
3279
3280         default:
3281             ret = OC_STACK_INVALID_METHOD;
3282             break;
3283     }
3284
3285     return ret;
3286 }
3287
3288 /**
3289  * @brief   Register Persistent storage callback.
3290  * @param   persistentStorageHandler [IN] Pointers to open, read, write, close & unlink handlers.
3291  * @return
3292  *     OC_STACK_OK    - No errors; Success
3293  *     OC_STACK_INVALID_PARAM - Invalid parameter
3294  */
3295 OCStackResult OCRegisterPersistentStorageHandler(OCPersistentStorage* persistentStorageHandler)
3296 {
3297     OIC_LOG(INFO, TAG, "RegisterPersistentStorageHandler !!");
3298     if(!persistentStorageHandler)
3299     {
3300         OIC_LOG(ERROR, TAG, "The persistent storage handler is invalid");
3301         return OC_STACK_INVALID_PARAM;
3302     }
3303     else
3304     {
3305         if( !persistentStorageHandler->open ||
3306                 !persistentStorageHandler->close ||
3307                 !persistentStorageHandler->read ||
3308                 !persistentStorageHandler->unlink ||
3309                 !persistentStorageHandler->write)
3310         {
3311             OIC_LOG(ERROR, TAG, "The persistent storage handler is invalid");
3312             return OC_STACK_INVALID_PARAM;
3313         }
3314     }
3315     return SRMRegisterPersistentStorageHandler(persistentStorageHandler);
3316 }
3317
3318 #ifdef WITH_PRESENCE
3319
3320 OCStackResult OCProcessPresence()
3321 {
3322     OCStackResult result = OC_STACK_OK;
3323
3324     // the following line floods the log with messages that are irrelevant
3325     // to most purposes.  Uncomment as needed.
3326     //OIC_LOG(INFO, TAG, "Entering RequestPresence");
3327     ClientCB* cbNode = NULL;
3328     OCClientResponse clientResponse;
3329     OCStackApplicationResult cbResult = OC_STACK_DELETE_TRANSACTION;
3330
3331     LL_FOREACH(cbList, cbNode)
3332     {
3333         if (OC_REST_PRESENCE != cbNode->method || !cbNode->presence)
3334         {
3335             continue;
3336         }
3337
3338         uint32_t now = GetTicks(0);
3339         OIC_LOG_V(DEBUG, TAG, "this TTL level %d",
3340                                                 cbNode->presence->TTLlevel);
3341         OIC_LOG_V(DEBUG, TAG, "current ticks %d", now);
3342
3343         if (cbNode->presence->TTLlevel > PresenceTimeOutSize)
3344         {
3345             goto exit;
3346         }
3347
3348         if (cbNode->presence->TTLlevel < PresenceTimeOutSize)
3349         {
3350             OIC_LOG_V(DEBUG, TAG, "timeout ticks %d",
3351                     cbNode->presence->timeOut[cbNode->presence->TTLlevel]);
3352         }
3353         if (cbNode->presence->TTLlevel >= PresenceTimeOutSize)
3354         {
3355             OIC_LOG(DEBUG, TAG, "No more timeout ticks");
3356
3357             clientResponse.sequenceNumber = 0;
3358             clientResponse.result = OC_STACK_PRESENCE_TIMEOUT;
3359             clientResponse.devAddr = *cbNode->devAddr;
3360             FixUpClientResponse(&clientResponse);
3361             clientResponse.payload = NULL;
3362
3363             // Increment the TTLLevel (going to a next state), so we don't keep
3364             // sending presence notification to client.
3365             cbNode->presence->TTLlevel++;
3366             OIC_LOG_V(DEBUG, TAG, "moving to TTL level %d",
3367                                         cbNode->presence->TTLlevel);
3368
3369             OIC_LOG(INFO, TAG, "Before calling into application address space for presence timeout");
3370             cbResult = cbNode->callBack(cbNode->context, cbNode->handle, &clientResponse);
3371             OIC_LOG(INFO, TAG, "After calling into application address space for presence timeout");
3372
3373             if (cbResult == OC_STACK_DELETE_TRANSACTION)
3374             {
3375                 FindAndDeleteClientCB(cbNode);
3376             }
3377         }
3378
3379         if (now < cbNode->presence->timeOut[cbNode->presence->TTLlevel])
3380         {
3381             continue;
3382         }
3383
3384         CAEndpoint_t endpoint = {.adapter = CA_DEFAULT_ADAPTER};
3385         CAInfo_t requestData = {.type = CA_MSG_CONFIRM};
3386         CARequestInfo_t requestInfo = {.method = CA_GET};
3387
3388         OIC_LOG(DEBUG, TAG, "time to test server presence");
3389
3390         CopyDevAddrToEndpoint(cbNode->devAddr, &endpoint);
3391
3392         requestData.type = CA_MSG_NONCONFIRM;
3393         requestData.token = cbNode->token;
3394         requestData.tokenLength = cbNode->tokenLength;
3395         requestData.resourceUri = OC_RSRVD_PRESENCE_URI;
3396         requestInfo.method = CA_GET;
3397         requestInfo.info = requestData;
3398
3399         result = OCSendRequest(&endpoint, &requestInfo);
3400         if (OC_STACK_OK != result)
3401         {
3402             goto exit;
3403         }
3404
3405         cbNode->presence->TTLlevel++;
3406         OIC_LOG_V(DEBUG, TAG, "moving to TTL level %d", cbNode->presence->TTLlevel);
3407     }
3408 exit:
3409     if (result != OC_STACK_OK)
3410     {
3411         OIC_LOG(ERROR, TAG, "OCProcessPresence error");
3412     }
3413
3414     return result;
3415 }
3416 #endif // WITH_PRESENCE
3417
3418 OCStackResult OCProcess()
3419 {
3420     if (stackState == OC_STACK_UNINITIALIZED)
3421     {
3422         OIC_LOG(ERROR, TAG, "OCProcess has failed. ocstack is not initialized");
3423         return OC_STACK_ERROR;
3424     }
3425 #ifdef WITH_PRESENCE
3426     OCProcessPresence();
3427 #endif
3428     CAHandleRequestResponse();
3429
3430 #ifdef ROUTING_GATEWAY
3431     RMProcess();
3432 #endif
3433
3434 #ifdef TCP_ADAPTER
3435     OCProcessKeepAlive();
3436 #endif
3437     return OC_STACK_OK;
3438 }
3439
3440 #ifdef WITH_PRESENCE
3441 OCStackResult OCStartPresence(const uint32_t ttl)
3442 {
3443     OIC_LOG(INFO, TAG, "Entering OCStartPresence");
3444     uint8_t tokenLength = CA_MAX_TOKEN_LEN;
3445     OCChangeResourceProperty(
3446             &(((OCResource *)presenceResource.handle)->resourceProperties),
3447             OC_ACTIVE, 1);
3448
3449     if (OC_MAX_PRESENCE_TTL_SECONDS < ttl)
3450     {
3451         presenceResource.presenceTTL = OC_MAX_PRESENCE_TTL_SECONDS;
3452         OIC_LOG(INFO, TAG, "Setting Presence TTL to max value");
3453     }
3454     else if (0 == ttl)
3455     {
3456         presenceResource.presenceTTL = OC_DEFAULT_PRESENCE_TTL_SECONDS;
3457         OIC_LOG(INFO, TAG, "Setting Presence TTL to default value");
3458     }
3459     else
3460     {
3461         presenceResource.presenceTTL = ttl;
3462     }
3463 #ifndef __TIZENRT__
3464     OIC_LOG_V(DEBUG, TAG, "Presence TTL is %" PRIu32 " seconds", presenceResource.presenceTTL);
3465 #endif
3466
3467     if (OC_PRESENCE_UNINITIALIZED == presenceState)
3468     {
3469         presenceState = OC_PRESENCE_INITIALIZED;
3470
3471         OCDevAddr devAddr = { OC_DEFAULT_ADAPTER };
3472
3473         CAToken_t caToken = NULL;
3474         CAResult_t caResult = CAGenerateToken(&caToken, tokenLength);
3475         if (caResult != CA_STATUS_OK)
3476         {
3477             OIC_LOG(ERROR, TAG, "CAGenerateToken error");
3478             CADestroyToken(caToken);
3479             return OC_STACK_ERROR;
3480         }
3481
3482         AddObserver(OC_RSRVD_PRESENCE_URI, NULL, 0, caToken, tokenLength,
3483                 (OCResource *)presenceResource.handle, OC_LOW_QOS, OC_FORMAT_UNDEFINED, &devAddr);
3484         CADestroyToken(caToken);
3485     }
3486
3487     // Each time OCStartPresence is called
3488     // a different random 32-bit integer number is used
3489     ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
3490
3491     return SendPresenceNotification(((OCResource *)presenceResource.handle)->rsrcType,
3492             OC_PRESENCE_TRIGGER_CREATE);
3493 }
3494
3495 OCStackResult OCStopPresence()
3496 {
3497     OIC_LOG(INFO, TAG, "Entering OCStopPresence");
3498     OCStackResult result = OC_STACK_ERROR;
3499
3500     if(presenceResource.handle)
3501     {
3502         ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
3503
3504     // make resource inactive
3505     result = OCChangeResourceProperty(
3506             &(((OCResource *) presenceResource.handle)->resourceProperties),
3507             OC_ACTIVE, 0);
3508     }
3509
3510     if(result != OC_STACK_OK)
3511     {
3512         OIC_LOG(ERROR, TAG,
3513                       "Changing the presence resource properties to ACTIVE not successful");
3514         return result;
3515     }
3516
3517     return SendStopNotification();
3518 }
3519 #endif
3520
3521 OCStackResult OCSetDefaultDeviceEntityHandler(OCDeviceEntityHandler entityHandler,
3522                                             void* callbackParameter)
3523 {
3524     defaultDeviceHandler = entityHandler;
3525     defaultDeviceHandlerCallbackParameter = callbackParameter;
3526
3527     return OC_STACK_OK;
3528 }
3529
3530 OCStackResult OCCreateResource(OCResourceHandle *handle,
3531         const char *resourceTypeName,
3532         const char *resourceInterfaceName,
3533         const char *uri, OCEntityHandler entityHandler,
3534         void* callbackParam,
3535         uint8_t resourceProperties)
3536 {
3537
3538     OCResource *pointer = NULL;
3539     OCStackResult result = OC_STACK_ERROR;
3540
3541     OIC_LOG(INFO, TAG, "Entering OCCreateResource");
3542
3543     if(myStackMode == OC_CLIENT)
3544     {
3545         return OC_STACK_INVALID_PARAM;
3546     }
3547     // Validate parameters
3548     if(!uri || uri[0]=='\0' || strlen(uri)>=MAX_URI_LENGTH )
3549     {
3550         OIC_LOG(ERROR, TAG, "URI is empty or too long");
3551         return OC_STACK_INVALID_URI;
3552     }
3553     // Is it presented during resource discovery?
3554     if (!handle || !resourceTypeName || resourceTypeName[0] == '\0' )
3555     {
3556         OIC_LOG(ERROR, TAG, "Input parameter is NULL");
3557         return OC_STACK_INVALID_PARAM;
3558     }
3559
3560     if (!resourceInterfaceName || strlen(resourceInterfaceName) == 0)
3561     {
3562         resourceInterfaceName = OC_RSRVD_INTERFACE_DEFAULT;
3563     }
3564
3565 #ifdef MQ_PUBLISHER
3566     resourceProperties = resourceProperties | OC_MQ_PUBLISHER;
3567 #endif
3568     // Make sure resourceProperties bitmask has allowed properties specified
3569     if (resourceProperties
3570             > (OC_ACTIVE | OC_DISCOVERABLE | OC_OBSERVABLE | OC_SLOW | OC_SECURE |
3571                OC_EXPLICIT_DISCOVERABLE
3572 #ifdef MQ_PUBLISHER
3573                | OC_MQ_PUBLISHER
3574 #endif
3575 #ifdef MQ_BROKER
3576                | OC_MQ_BROKER
3577 #endif
3578                ))
3579     {
3580         OIC_LOG(ERROR, TAG, "Invalid property");
3581         return OC_STACK_INVALID_PARAM;
3582     }
3583
3584     // If the headResource is NULL, then no resources have been created...
3585     pointer = headResource;
3586     if (pointer)
3587     {
3588         // At least one resources is in the resource list, so we need to search for
3589         // repeated URLs, which are not allowed.  If a repeat is found, exit with an error
3590         while (pointer)
3591         {
3592             if (strncmp(uri, pointer->uri, MAX_URI_LENGTH) == 0)
3593             {
3594                 OIC_LOG_V(ERROR, TAG, "Resource %s already exists", uri);
3595                 return OC_STACK_INVALID_PARAM;
3596             }
3597             pointer = pointer->next;
3598         }
3599     }
3600     // Create the pointer and insert it into the resource list
3601     pointer = (OCResource *) OICCalloc(1, sizeof(OCResource));
3602     if (!pointer)
3603     {
3604         result = OC_STACK_NO_MEMORY;
3605         goto exit;
3606     }
3607     pointer->sequenceNum = OC_OFFSET_SEQUENCE_NUMBER;
3608
3609     insertResource(pointer);
3610
3611     // Set the uri
3612     pointer->uri = OICStrdup(uri);
3613     if (!pointer->uri)
3614     {
3615         result = OC_STACK_NO_MEMORY;
3616         goto exit;
3617     }
3618
3619     // Set properties.  Set OC_ACTIVE
3620     pointer->resourceProperties = (OCResourceProperty) (resourceProperties
3621             | OC_ACTIVE);
3622
3623     // Add the resourcetype to the resource
3624     result = BindResourceTypeToResource(pointer, resourceTypeName);
3625     if (result != OC_STACK_OK)
3626     {
3627         OIC_LOG(ERROR, TAG, "Error adding resourcetype");
3628         goto exit;
3629     }
3630
3631     // Add the resourceinterface to the resource
3632     result = BindResourceInterfaceToResource(pointer, resourceInterfaceName);
3633     if (result != OC_STACK_OK)
3634     {
3635         OIC_LOG(ERROR, TAG, "Error adding resourceinterface");
3636         goto exit;
3637     }
3638
3639     // If an entity handler has been passed, attach it to the newly created
3640     // resource.  Otherwise, set the default entity handler.
3641     if (entityHandler)
3642     {
3643         pointer->entityHandler = entityHandler;
3644         pointer->entityHandlerCallbackParam = callbackParam;
3645     }
3646     else
3647     {
3648         pointer->entityHandler = defaultResourceEHandler;
3649         pointer->entityHandlerCallbackParam = NULL;
3650     }
3651
3652     // Initialize a pointer indicating child resources in case of collection
3653     pointer->rsrcChildResourcesHead = NULL;
3654
3655     *handle = pointer;
3656     result = OC_STACK_OK;
3657
3658 #ifdef WITH_PRESENCE
3659     if (presenceResource.handle)
3660     {
3661         ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
3662         SendPresenceNotification(pointer->rsrcType, OC_PRESENCE_TRIGGER_CREATE);
3663     }
3664 #endif
3665 exit:
3666     if (result != OC_STACK_OK)
3667     {
3668         // Deep delete of resource and other dynamic elements that it contains
3669         deleteResource(pointer);
3670     }
3671     return result;
3672 }
3673
3674 OCStackResult OCBindResource(
3675         OCResourceHandle collectionHandle, OCResourceHandle resourceHandle)
3676 {
3677     OCResource *resource = NULL;
3678     OCChildResource *tempChildResource = NULL;
3679     OCChildResource *newChildResource = NULL;
3680
3681     OIC_LOG(INFO, TAG, "Entering OCBindResource");
3682
3683     // Validate parameters
3684     VERIFY_NON_NULL(collectionHandle, ERROR, OC_STACK_ERROR);
3685     VERIFY_NON_NULL(resourceHandle, ERROR, OC_STACK_ERROR);
3686     // Container cannot contain itself
3687     if (collectionHandle == resourceHandle)
3688     {
3689         OIC_LOG(ERROR, TAG, "Added handle equals collection handle");
3690         return OC_STACK_INVALID_PARAM;
3691     }
3692
3693     // Use the handle to find the resource in the resource linked list
3694     resource = findResource((OCResource *) collectionHandle);
3695     if (!resource)
3696     {
3697         OIC_LOG(ERROR, TAG, "Collection handle not found");
3698         return OC_STACK_INVALID_PARAM;
3699     }
3700
3701     // Look for an open slot to add add the child resource.
3702     // If found, add it and return success
3703
3704     tempChildResource = resource->rsrcChildResourcesHead;
3705
3706     while(resource->rsrcChildResourcesHead && tempChildResource->next)
3707     {
3708         // TODO: what if one of child resource was deregistered without unbinding?
3709         tempChildResource = tempChildResource->next;
3710     }
3711
3712     // Do memory allocation for child resource
3713     newChildResource = (OCChildResource *) OICCalloc(1, sizeof(OCChildResource));
3714     if(!newChildResource)
3715     {
3716         OIC_LOG(ERROR, TAG, "Adding new child resource is failed due to memory allocation failure");
3717         return OC_STACK_ERROR;
3718     }
3719
3720     newChildResource->rsrcResource = (OCResource *) resourceHandle;
3721     newChildResource->next = NULL;
3722
3723     if(!resource->rsrcChildResourcesHead)
3724     {
3725         resource->rsrcChildResourcesHead = newChildResource;
3726     }
3727     else {
3728         tempChildResource->next = newChildResource;
3729     }
3730
3731     OIC_LOG(INFO, TAG, "resource bound");
3732
3733 #ifdef WITH_PRESENCE
3734     if (presenceResource.handle)
3735     {
3736         ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
3737         SendPresenceNotification(((OCResource *) resourceHandle)->rsrcType,
3738                 OC_PRESENCE_TRIGGER_CHANGE);
3739     }
3740 #endif
3741
3742     return OC_STACK_OK;
3743 }
3744
3745 OCStackResult OCUnBindResource(
3746         OCResourceHandle collectionHandle, OCResourceHandle resourceHandle)
3747 {
3748     OCResource *resource = NULL;
3749     OCChildResource *tempChildResource = NULL;
3750     OCChildResource *tempLastChildResource = NULL;
3751
3752     OIC_LOG(INFO, TAG, "Entering OCUnBindResource");
3753
3754     // Validate parameters
3755     VERIFY_NON_NULL(collectionHandle, ERROR, OC_STACK_ERROR);
3756     VERIFY_NON_NULL(resourceHandle, ERROR, OC_STACK_ERROR);
3757     // Container cannot contain itself
3758     if (collectionHandle == resourceHandle)
3759     {
3760         OIC_LOG(ERROR, TAG, "removing handle equals collection handle");
3761         return OC_STACK_INVALID_PARAM;
3762     }
3763
3764     // Use the handle to find the resource in the resource linked list
3765     resource = findResource((OCResource *) collectionHandle);
3766     if (!resource)
3767     {
3768         OIC_LOG(ERROR, TAG, "Collection handle not found");
3769         return OC_STACK_INVALID_PARAM;
3770     }
3771
3772     // Look for an open slot to add add the child resource.
3773     // If found, add it and return success
3774     if(!resource->rsrcChildResourcesHead)
3775     {
3776         OIC_LOG(INFO, TAG, "resource not found in collection");
3777
3778         // Unable to add resourceHandle, so return error
3779         return OC_STACK_ERROR;
3780
3781     }
3782
3783     tempChildResource = resource->rsrcChildResourcesHead;
3784
3785     while (tempChildResource)
3786     {
3787         if(tempChildResource->rsrcResource == resourceHandle)
3788         {
3789             // if resource going to be unbinded is the head one.
3790             if( tempChildResource == resource->rsrcChildResourcesHead )
3791             {
3792                 OCChildResource *temp = resource->rsrcChildResourcesHead->next;
3793                 OICFree(resource->rsrcChildResourcesHead);
3794                 resource->rsrcChildResourcesHead = temp;
3795                 temp = NULL;
3796             }
3797             else
3798             {
3799                 OCChildResource *temp = tempChildResource->next;
3800                 OICFree(tempChildResource);
3801                 if (tempLastChildResource)
3802                 {
3803                     tempLastChildResource->next = temp;
3804                     temp = NULL;
3805                 }
3806             }
3807
3808             OIC_LOG(INFO, TAG, "resource unbound");
3809
3810             // Send notification when resource is unbounded successfully.
3811 #ifdef WITH_PRESENCE
3812             if (presenceResource.handle)
3813             {
3814                 ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
3815                 SendPresenceNotification(((OCResource *) resourceHandle)->rsrcType,
3816                         OC_PRESENCE_TRIGGER_CHANGE);
3817             }
3818 #endif
3819             tempChildResource = NULL;
3820             tempLastChildResource = NULL;
3821
3822             return OC_STACK_OK;
3823
3824         }
3825
3826         tempLastChildResource = tempChildResource;
3827         tempChildResource = tempChildResource->next;
3828     }
3829
3830     OIC_LOG(INFO, TAG, "resource not found in collection");
3831
3832     tempChildResource = NULL;
3833     tempLastChildResource = NULL;
3834
3835     // Unable to add resourceHandle, so return error
3836     return OC_STACK_ERROR;
3837 }
3838
3839 static bool ValidateResourceTypeInterface(const char *resourceItemName)
3840 {
3841     if (!resourceItemName)
3842     {
3843         return false;
3844     }
3845     // Per RFC 6690 only registered values must follow the first rule below.
3846     // At this point in time the only values registered begin with "core", and
3847     // all other values are specified as opaque strings where multiple values
3848     // are separated by a space.
3849     if (strncmp(resourceItemName, CORESPEC, sizeof(CORESPEC) - 1) == 0)
3850     {
3851         for(size_t index = sizeof(CORESPEC) - 1;  resourceItemName[index]; ++index)
3852         {
3853             if (resourceItemName[index] != '.'
3854                 && resourceItemName[index] != '-'
3855                 && (resourceItemName[index] < 'a' || resourceItemName[index] > 'z')
3856                 && (resourceItemName[index] < '0' || resourceItemName[index] > '9'))
3857             {
3858                 return false;
3859             }
3860         }
3861     }
3862     else
3863     {
3864         for (size_t index = 0; resourceItemName[index]; ++index)
3865         {
3866             if (resourceItemName[index] == ' '
3867                 || resourceItemName[index] == '\t'
3868                 || resourceItemName[index] == '\r'
3869                 || resourceItemName[index] == '\n')
3870             {
3871                 return false;
3872             }
3873         }
3874     }
3875
3876     return true;
3877 }
3878
3879 OCStackResult BindResourceTypeToResource(OCResource* resource,
3880                                             const char *resourceTypeName)
3881 {
3882     OCResourceType *pointer = NULL;
3883     char *str = NULL;
3884     OCStackResult result = OC_STACK_ERROR;
3885
3886     VERIFY_NON_NULL(resourceTypeName, ERROR, OC_STACK_INVALID_PARAM);
3887
3888     if (!ValidateResourceTypeInterface(resourceTypeName))
3889     {
3890         OIC_LOG(ERROR, TAG, "resource type illegal (see RFC 6690)");
3891         return OC_STACK_INVALID_PARAM;
3892     }
3893
3894     pointer = (OCResourceType *) OICCalloc(1, sizeof(OCResourceType));
3895     if (!pointer)
3896     {
3897         result = OC_STACK_NO_MEMORY;
3898         goto exit;
3899     }
3900
3901     str = OICStrdup(resourceTypeName);
3902     if (!str)
3903     {
3904         result = OC_STACK_NO_MEMORY;
3905         goto exit;
3906     }
3907     pointer->resourcetypename = str;
3908     pointer->next = NULL;
3909
3910     insertResourceType(resource, pointer);
3911     result = OC_STACK_OK;
3912
3913 exit:
3914     if (result != OC_STACK_OK)
3915     {
3916         OICFree(pointer);
3917         OICFree(str);
3918     }
3919
3920     return result;
3921 }
3922
3923 OCStackResult BindResourceInterfaceToResource(OCResource* resource,
3924         const char *resourceInterfaceName)
3925 {
3926     OCResourceInterface *pointer = NULL;
3927     char *str = NULL;
3928     OCStackResult result = OC_STACK_ERROR;
3929
3930     VERIFY_NON_NULL(resourceInterfaceName, ERROR, OC_STACK_INVALID_PARAM);
3931
3932     if (!ValidateResourceTypeInterface(resourceInterfaceName))
3933     {
3934         OIC_LOG(ERROR, TAG, "resource /interface illegal (see RFC 6690)");
3935         return OC_STACK_INVALID_PARAM;
3936     }
3937
3938     OIC_LOG_V(INFO, TAG, "Binding %s interface to %s", resourceInterfaceName, resource->uri);
3939
3940     pointer = (OCResourceInterface *) OICCalloc(1, sizeof(OCResourceInterface));
3941     if (!pointer)
3942     {
3943         result = OC_STACK_NO_MEMORY;
3944         goto exit;
3945     }
3946
3947     str = OICStrdup(resourceInterfaceName);
3948     if (!str)
3949     {
3950         result = OC_STACK_NO_MEMORY;
3951         goto exit;
3952     }
3953     pointer->name = str;
3954
3955     // Bind the resourceinterface to the resource
3956     insertResourceInterface(resource, pointer);
3957
3958     result = OC_STACK_OK;
3959
3960     exit:
3961     if (result != OC_STACK_OK)
3962     {
3963         OICFree(pointer);
3964         OICFree(str);
3965     }
3966
3967     return result;
3968 }
3969
3970 OCStackResult OCBindResourceTypeToResource(OCResourceHandle handle,
3971         const char *resourceTypeName)
3972 {
3973
3974     OCStackResult result = OC_STACK_ERROR;
3975     OCResource *resource = NULL;
3976
3977     resource = findResource((OCResource *) handle);
3978     if (!resource)
3979     {
3980         OIC_LOG(ERROR, TAG, "Resource not found");
3981         return OC_STACK_ERROR;
3982     }
3983
3984     result = BindResourceTypeToResource(resource, resourceTypeName);
3985
3986 #ifdef WITH_PRESENCE
3987     if(presenceResource.handle)
3988     {
3989         ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
3990         SendPresenceNotification(resource->rsrcType, OC_PRESENCE_TRIGGER_CHANGE);
3991     }
3992 #endif
3993
3994     return result;
3995 }
3996
3997 OCStackResult OCBindResourceInterfaceToResource(OCResourceHandle handle,
3998         const char *resourceInterfaceName)
3999 {
4000
4001     OCStackResult result = OC_STACK_ERROR;
4002     OCResource *resource = NULL;
4003
4004     resource = findResource((OCResource *) handle);
4005     if (!resource)
4006     {
4007         OIC_LOG(ERROR, TAG, "Resource not found");
4008         return OC_STACK_ERROR;
4009     }
4010
4011     result = BindResourceInterfaceToResource(resource, resourceInterfaceName);
4012
4013 #ifdef WITH_PRESENCE
4014     if (presenceResource.handle)
4015     {
4016         ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
4017         SendPresenceNotification(resource->rsrcType, OC_PRESENCE_TRIGGER_CHANGE);
4018     }
4019 #endif
4020
4021     return result;
4022 }
4023
4024 OCStackResult OCGetNumberOfResources(uint8_t *numResources)
4025 {
4026     OCResource *pointer = headResource;
4027
4028     VERIFY_NON_NULL(numResources, ERROR, OC_STACK_INVALID_PARAM);
4029     *numResources = 0;
4030     while (pointer)
4031     {
4032         *numResources = *numResources + 1;
4033         pointer = pointer->next;
4034     }
4035     return OC_STACK_OK;
4036 }
4037
4038 OCResourceHandle OCGetResourceHandle(uint8_t index)
4039 {
4040     OCResource *pointer = headResource;
4041
4042     for( uint8_t i = 0; i < index && pointer; ++i)
4043     {
4044         pointer = pointer->next;
4045     }
4046     return (OCResourceHandle) pointer;
4047 }
4048
4049 OCStackResult OCDeleteResource(OCResourceHandle handle)
4050 {
4051     if (!handle)
4052     {
4053         OIC_LOG(ERROR, TAG, "Invalid handle for deletion");
4054         return OC_STACK_INVALID_PARAM;
4055     }
4056
4057     OCResource *resource = findResource((OCResource *) handle);
4058     if (resource == NULL)
4059     {
4060         OIC_LOG(ERROR, TAG, "Resource not found");
4061         return OC_STACK_NO_RESOURCE;
4062     }
4063
4064     if (deleteResource((OCResource *) handle) != OC_STACK_OK)
4065     {
4066         OIC_LOG(ERROR, TAG, "Error deleting resource");
4067         return OC_STACK_ERROR;
4068     }
4069
4070     return OC_STACK_OK;
4071 }
4072
4073 const char *OCGetResourceUri(OCResourceHandle handle)
4074 {
4075     OCResource *resource = NULL;
4076
4077     resource = findResource((OCResource *) handle);
4078     if (resource)
4079     {
4080         return resource->uri;
4081     }
4082     return (const char *) NULL;
4083 }
4084
4085 OCResourceProperty OCGetResourceProperties(OCResourceHandle handle)
4086 {
4087     OCResource *resource = NULL;
4088
4089     resource = findResource((OCResource *) handle);
4090     if (resource)
4091     {
4092         return resource->resourceProperties;
4093     }
4094     return (OCResourceProperty)-1;
4095 }
4096
4097 OCStackResult OCGetNumberOfResourceTypes(OCResourceHandle handle,
4098         uint8_t *numResourceTypes)
4099 {
4100     OCResource *resource = NULL;
4101     OCResourceType *pointer = NULL;
4102
4103     VERIFY_NON_NULL(numResourceTypes, ERROR, OC_STACK_INVALID_PARAM);
4104     VERIFY_NON_NULL(handle, ERROR, OC_STACK_INVALID_PARAM);
4105
4106     *numResourceTypes = 0;
4107
4108     resource = findResource((OCResource *) handle);
4109     if (resource)
4110     {
4111         pointer = resource->rsrcType;
4112         while (pointer)
4113         {
4114             *numResourceTypes = *numResourceTypes + 1;
4115             pointer = pointer->next;
4116         }
4117     }
4118     return OC_STACK_OK;
4119 }
4120
4121 const char *OCGetResourceTypeName(OCResourceHandle handle, uint8_t index)
4122 {
4123     OCResourceType *resourceType = NULL;
4124
4125     resourceType = findResourceTypeAtIndex(handle, index);
4126     if (resourceType)
4127     {
4128         return resourceType->resourcetypename;
4129     }
4130     return (const char *) NULL;
4131 }
4132
4133 OCStackResult OCGetNumberOfResourceInterfaces(OCResourceHandle handle,
4134         uint8_t *numResourceInterfaces)
4135 {
4136     OCResourceInterface *pointer = NULL;
4137     OCResource *resource = NULL;
4138
4139     VERIFY_NON_NULL(handle, ERROR, OC_STACK_INVALID_PARAM);
4140     VERIFY_NON_NULL(numResourceInterfaces, ERROR, OC_STACK_INVALID_PARAM);
4141
4142     *numResourceInterfaces = 0;
4143     resource = findResource((OCResource *) handle);
4144     if (resource)
4145     {
4146         pointer = resource->rsrcInterface;
4147         while (pointer)
4148         {
4149             *numResourceInterfaces = *numResourceInterfaces + 1;
4150             pointer = pointer->next;
4151         }
4152     }
4153     return OC_STACK_OK;
4154 }
4155
4156 const char *OCGetResourceInterfaceName(OCResourceHandle handle, uint8_t index)
4157 {
4158     OCResourceInterface *resourceInterface = NULL;
4159
4160     resourceInterface = findResourceInterfaceAtIndex(handle, index);
4161     if (resourceInterface)
4162     {
4163         return resourceInterface->name;
4164     }
4165     return (const char *) NULL;
4166 }
4167
4168 OCResourceHandle OCGetResourceHandleFromCollection(OCResourceHandle collectionHandle,
4169         uint8_t index)
4170 {
4171     OCResource *resource = NULL;
4172     OCChildResource *tempChildResource = NULL;
4173     uint8_t num = 0;
4174
4175     resource = findResource((OCResource *) collectionHandle);
4176     if (!resource)
4177     {
4178         return NULL;
4179     }
4180
4181     tempChildResource = resource->rsrcChildResourcesHead;
4182
4183     while(tempChildResource)
4184     {
4185         if( num == index )
4186         {
4187             return tempChildResource->rsrcResource;
4188         }
4189         num++;
4190         tempChildResource = tempChildResource->next;
4191     }
4192
4193     // In this case, the number of resource handles in the collection exceeds the index
4194     tempChildResource = NULL;
4195     return NULL;
4196 }
4197
4198 OCStackResult OCBindResourceHandler(OCResourceHandle handle,
4199         OCEntityHandler entityHandler,
4200         void* callbackParam)
4201 {
4202     OCResource *resource = NULL;
4203
4204     // Validate parameters
4205     VERIFY_NON_NULL(handle, ERROR, OC_STACK_INVALID_PARAM);
4206
4207     // Use the handle to find the resource in the resource linked list
4208     resource = findResource((OCResource *)handle);
4209     if (!resource)
4210     {
4211         OIC_LOG(ERROR, TAG, "Resource not found");
4212         return OC_STACK_ERROR;
4213     }
4214
4215     // Bind the handler
4216     resource->entityHandler = entityHandler;
4217     resource->entityHandlerCallbackParam = callbackParam;
4218
4219 #ifdef WITH_PRESENCE
4220     if (presenceResource.handle)
4221     {
4222         ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
4223         SendPresenceNotification(resource->rsrcType, OC_PRESENCE_TRIGGER_CHANGE);
4224     }
4225 #endif
4226
4227     return OC_STACK_OK;
4228 }
4229
4230 OCEntityHandler OCGetResourceHandler(OCResourceHandle handle)
4231 {
4232     OCResource *resource = NULL;
4233
4234     resource = findResource((OCResource *)handle);
4235     if (!resource)
4236     {
4237         OIC_LOG(ERROR, TAG, "Resource not found");
4238         return NULL;
4239     }
4240
4241     // Bind the handler
4242     return resource->entityHandler;
4243 }
4244
4245 void incrementSequenceNumber(OCResource * resPtr)
4246 {
4247     // Increment the sequence number
4248     resPtr->sequenceNum += 1;
4249     if (resPtr->sequenceNum == MAX_SEQUENCE_NUMBER)
4250     {
4251         resPtr->sequenceNum = OC_OFFSET_SEQUENCE_NUMBER+1;
4252     }
4253     return;
4254 }
4255
4256 #ifdef WITH_PRESENCE
4257 OCStackResult SendPresenceNotification(OCResourceType *resourceType,
4258         OCPresenceTrigger trigger)
4259 {
4260     OIC_LOG(INFO, TAG, "SendPresenceNotification");
4261     OCResource *resPtr = NULL;
4262     OCStackResult result = OC_STACK_ERROR;
4263     OCMethod method = OC_REST_PRESENCE;
4264     uint32_t maxAge = 0;
4265     resPtr = findResource((OCResource *) presenceResource.handle);
4266     if(NULL == resPtr)
4267     {
4268         return OC_STACK_NO_RESOURCE;
4269     }
4270
4271     if((((OCResource *) presenceResource.handle)->resourceProperties) & OC_ACTIVE)
4272     {
4273         maxAge = presenceResource.presenceTTL;
4274
4275         result = SendAllObserverNotification(method, resPtr, maxAge,
4276                 trigger, resourceType, OC_LOW_QOS);
4277     }
4278
4279     return result;
4280 }
4281
4282 OCStackResult SendStopNotification()
4283 {
4284     OIC_LOG(INFO, TAG, "SendStopNotification");
4285     OCResource *resPtr = NULL;
4286     OCStackResult result = OC_STACK_ERROR;
4287     OCMethod method = OC_REST_PRESENCE;
4288     resPtr = findResource((OCResource *) presenceResource.handle);
4289     if(NULL == resPtr)
4290     {
4291         return OC_STACK_NO_RESOURCE;
4292     }
4293
4294     // maxAge is 0. ResourceType is NULL.
4295     result = SendAllObserverNotification(method, resPtr, 0, OC_PRESENCE_TRIGGER_DELETE,
4296             NULL, OC_LOW_QOS);
4297
4298     return result;
4299 }
4300
4301 #endif // WITH_PRESENCE
4302 OCStackResult OCNotifyAllObservers(OCResourceHandle handle, OCQualityOfService qos)
4303 {
4304     OCResource *resPtr = NULL;
4305     OCStackResult result = OC_STACK_ERROR;
4306     OCMethod method = OC_REST_NOMETHOD;
4307     uint32_t maxAge = 0;
4308
4309     OIC_LOG(INFO, TAG, "Notifying all observers");
4310 #ifdef WITH_PRESENCE
4311     if(handle == presenceResource.handle)
4312     {
4313         return OC_STACK_OK;
4314     }
4315 #endif // WITH_PRESENCE
4316     VERIFY_NON_NULL(handle, ERROR, OC_STACK_ERROR);
4317
4318     // Verify that the resource exists
4319     resPtr = findResource ((OCResource *) handle);
4320     if (NULL == resPtr)
4321     {
4322         return OC_STACK_NO_RESOURCE;
4323     }
4324     else
4325     {
4326         //only increment in the case of regular observing (not presence)
4327         incrementSequenceNumber(resPtr);
4328         method = OC_REST_OBSERVE;
4329         maxAge = MAX_OBSERVE_AGE;
4330 #ifdef WITH_PRESENCE
4331         result = SendAllObserverNotification (method, resPtr, maxAge,
4332                 OC_PRESENCE_TRIGGER_DELETE, NULL, qos);
4333 #else
4334         result = SendAllObserverNotification (method, resPtr, maxAge, qos);
4335 #endif
4336         return result;
4337     }
4338 }
4339
4340 OCStackResult
4341 OCNotifyListOfObservers (OCResourceHandle handle,
4342                          OCObservationId  *obsIdList,
4343                          uint8_t          numberOfIds,
4344                          const OCRepPayload       *payload,
4345                          OCQualityOfService qos)
4346 {
4347     OIC_LOG(INFO, TAG, "Entering OCNotifyListOfObservers");
4348
4349     OCResource *resPtr = NULL;
4350     //TODO: we should allow the server to define this
4351     uint32_t maxAge = MAX_OBSERVE_AGE;
4352
4353     VERIFY_NON_NULL(handle, ERROR, OC_STACK_ERROR);
4354     VERIFY_NON_NULL(obsIdList, ERROR, OC_STACK_ERROR);
4355     VERIFY_NON_NULL(payload, ERROR, OC_STACK_ERROR);
4356
4357     resPtr = findResource ((OCResource *) handle);
4358     if (NULL == resPtr || myStackMode == OC_CLIENT)
4359     {
4360         return OC_STACK_NO_RESOURCE;
4361     }
4362     else
4363     {
4364         incrementSequenceNumber(resPtr);
4365     }
4366     return (SendListObserverNotification(resPtr, obsIdList, numberOfIds,
4367             payload, maxAge, qos));
4368 }
4369
4370 OCStackResult OCDoResponse(OCEntityHandlerResponse *ehResponse)
4371 {
4372     OIC_TRACE_BEGIN(%s:OCDoResponse, TAG);
4373     OCStackResult result = OC_STACK_ERROR;
4374     OCServerRequest *serverRequest = NULL;
4375
4376     OIC_LOG(INFO, TAG, "Entering OCDoResponse");
4377
4378     // Validate input parameters
4379     VERIFY_NON_NULL(ehResponse, ERROR, OC_STACK_INVALID_PARAM);
4380     VERIFY_NON_NULL(ehResponse->requestHandle, ERROR, OC_STACK_INVALID_PARAM);
4381
4382     // Normal response
4383     // Get pointer to request info
4384     serverRequest = GetServerRequestUsingHandle(ehResponse->requestHandle);
4385     if(serverRequest)
4386     {
4387         // response handler in ocserverrequest.c. Usually HandleSingleResponse.
4388         result = serverRequest->ehResponseHandler(ehResponse);
4389     }
4390
4391     OIC_TRACE_END();
4392     return result;
4393 }
4394
4395 //#ifdef DIRECT_PAIRING
4396 const OCDPDev_t* OCDiscoverDirectPairingDevices(unsigned short waittime)
4397 {
4398     OIC_LOG(INFO, TAG, "Start OCDiscoverDirectPairingDevices");
4399     if(OC_STACK_OK != DPDeviceDiscovery(waittime))
4400     {
4401         OIC_LOG(ERROR, TAG, "Fail to discover Direct-Pairing device");
4402         return NULL;
4403     }
4404
4405     return (const OCDPDev_t*)DPGetDiscoveredDevices();
4406 }
4407
4408 const OCDPDev_t* OCGetDirectPairedDevices()
4409 {
4410     return (const OCDPDev_t*)DPGetPairedDevices();
4411 }
4412
4413 OCStackResult OCDoDirectPairing(void *ctx, OCDPDev_t* peer, OCPrm_t pmSel, char *pinNumber,
4414                                                      OCDirectPairingCB resultCallback)
4415 {
4416     OIC_LOG(INFO, TAG, "Start OCDoDirectPairing");
4417     if(NULL ==  peer || NULL == pinNumber)
4418     {
4419         OIC_LOG(ERROR, TAG, "Invalid parameters");
4420         return OC_STACK_INVALID_PARAM;
4421     }
4422     if (NULL == resultCallback)
4423     {
4424         OIC_LOG(ERROR, TAG, "Invalid callback");
4425         return OC_STACK_INVALID_CALLBACK;
4426     }
4427
4428     return DPDirectPairing(ctx, (OCDirectPairingDev_t*)peer, (OicSecPrm_t)pmSel,
4429                                            pinNumber, (OCDirectPairingResultCB)resultCallback);
4430 }
4431 //#endif // DIRECT_PAIRING
4432
4433 //-----------------------------------------------------------------------------
4434 // Private internal function definitions
4435 //-----------------------------------------------------------------------------
4436 static OCDoHandle GenerateInvocationHandle()
4437 {
4438     OCDoHandle handle = NULL;
4439     // Generate token here, it will be deleted when the transaction is deleted
4440     handle = (OCDoHandle) OICMalloc(sizeof(uint8_t[CA_MAX_TOKEN_LEN]));
4441     if (handle)
4442     {
4443         OCFillRandomMem((uint8_t*)handle, sizeof(uint8_t[CA_MAX_TOKEN_LEN]));
4444     }
4445
4446     return handle;
4447 }
4448
4449 #ifdef WITH_PRESENCE
4450 OCStackResult OCChangeResourceProperty(OCResourceProperty * inputProperty,
4451         OCResourceProperty resourceProperties, uint8_t enable)
4452 {
4453     if (!inputProperty)
4454     {
4455         return OC_STACK_INVALID_PARAM;
4456     }
4457     if (resourceProperties
4458             > (OC_ACTIVE | OC_DISCOVERABLE | OC_OBSERVABLE | OC_SLOW))
4459     {
4460         OIC_LOG(ERROR, TAG, "Invalid property");
4461         return OC_STACK_INVALID_PARAM;
4462     }
4463     if(!enable)
4464     {
4465         *inputProperty = (OCResourceProperty) (*inputProperty & ~(resourceProperties));
4466     }
4467     else
4468     {
4469         *inputProperty = (OCResourceProperty) (*inputProperty | resourceProperties);
4470     }
4471     return OC_STACK_OK;
4472 }
4473 #endif
4474
4475 OCStackResult initResources()
4476 {
4477     OCStackResult result = OC_STACK_OK;
4478
4479     headResource = NULL;
4480     tailResource = NULL;
4481     // Init Virtual Resources
4482 #ifdef WITH_PRESENCE
4483     presenceResource.presenceTTL = OC_DEFAULT_PRESENCE_TTL_SECONDS;
4484
4485     result = OCCreateResource(&presenceResource.handle,
4486             OC_RSRVD_RESOURCE_TYPE_PRESENCE,
4487             "core.r",
4488             OC_RSRVD_PRESENCE_URI,
4489             NULL,
4490             NULL,
4491             OC_OBSERVABLE);
4492     //make resource inactive
4493     result = OCChangeResourceProperty(
4494             &(((OCResource *) presenceResource.handle)->resourceProperties),
4495             OC_ACTIVE, 0);
4496 #endif
4497 #ifndef WITH_ARDUINO
4498     if (result == OC_STACK_OK)
4499     {
4500         result = SRMInitSecureResources();
4501     }
4502 #endif
4503
4504     if(result == OC_STACK_OK)
4505     {
4506         CreateResetProfile();
4507         result = OCCreateResource(&deviceResource,
4508                                   OC_RSRVD_RESOURCE_TYPE_DEVICE,
4509                                   OC_RSRVD_INTERFACE_DEFAULT,
4510                                   OC_RSRVD_DEVICE_URI,
4511                                   NULL,
4512                                   NULL,
4513                                   OC_DISCOVERABLE);
4514         if(result == OC_STACK_OK)
4515         {
4516             result = BindResourceInterfaceToResource((OCResource *)deviceResource,
4517                                                      OC_RSRVD_INTERFACE_READ);
4518         }
4519     }
4520
4521     if(result == OC_STACK_OK)
4522     {
4523         result = OCCreateResource(&platformResource,
4524                                   OC_RSRVD_RESOURCE_TYPE_PLATFORM,
4525                                   OC_RSRVD_INTERFACE_DEFAULT,
4526                                   OC_RSRVD_PLATFORM_URI,
4527                                   NULL,
4528                                   NULL,
4529                                   OC_DISCOVERABLE);
4530         if(result == OC_STACK_OK)
4531         {
4532             result = BindResourceInterfaceToResource((OCResource *)platformResource,
4533                                                      OC_RSRVD_INTERFACE_READ);
4534         }
4535     }
4536
4537     return result;
4538 }
4539
4540 void insertResource(OCResource *resource)
4541 {
4542     if (!headResource)
4543     {
4544         headResource = resource;
4545         tailResource = resource;
4546     }
4547     else
4548     {
4549         tailResource->next = resource;
4550         tailResource = resource;
4551     }
4552     resource->next = NULL;
4553 }
4554
4555 OCResource *findResource(OCResource *resource)
4556 {
4557     OCResource *pointer = headResource;
4558
4559     while (pointer)
4560     {
4561         if (pointer == resource)
4562         {
4563             return resource;
4564         }
4565         pointer = pointer->next;
4566     }
4567     return NULL;
4568 }
4569
4570 void deleteAllResources()
4571 {
4572     OCResource *pointer = headResource;
4573     OCResource *temp = NULL;
4574
4575     while (pointer)
4576     {
4577         temp = pointer->next;
4578 #ifdef WITH_PRESENCE
4579         if (pointer != (OCResource *) presenceResource.handle)
4580         {
4581 #endif // WITH_PRESENCE
4582             deleteResource(pointer);
4583 #ifdef WITH_PRESENCE
4584         }
4585 #endif // WITH_PRESENCE
4586         pointer = temp;
4587     }
4588     memset(&platformResource, 0, sizeof(platformResource));
4589     memset(&deviceResource, 0, sizeof(deviceResource));
4590 #ifdef MQ_BROKER
4591     memset(&brokerResource, 0, sizeof(brokerResource));
4592 #endif
4593
4594     SRMDeInitSecureResources();
4595
4596 #ifdef WITH_PRESENCE
4597     // Ensure that the last resource to be deleted is the presence resource. This allows for all
4598     // presence notification attributed to their deletion to be processed.
4599     deleteResource((OCResource *) presenceResource.handle);
4600     memset(&presenceResource, 0, sizeof(presenceResource));
4601 #endif // WITH_PRESENCE
4602 }
4603
4604 OCStackResult deleteResource(OCResource *resource)
4605 {
4606     OCResource *prev = NULL;
4607     OCResource *temp = NULL;
4608     if(!resource)
4609     {
4610         OIC_LOG(DEBUG,TAG,"resource is NULL");
4611         return OC_STACK_INVALID_PARAM;
4612     }
4613
4614     OIC_LOG_V (INFO, TAG, "Deleting resource %s", resource->uri);
4615
4616     temp = headResource;
4617     while (temp)
4618     {
4619         if (temp == resource)
4620         {
4621             // Invalidate all Resource Properties.
4622             resource->resourceProperties = (OCResourceProperty) 0;
4623 #ifdef WITH_PRESENCE
4624             if(resource != (OCResource *) presenceResource.handle)
4625             {
4626 #endif // WITH_PRESENCE
4627                 OCNotifyAllObservers((OCResourceHandle)resource, OC_HIGH_QOS);
4628 #ifdef WITH_PRESENCE
4629             }
4630
4631             if(presenceResource.handle)
4632             {
4633                 ((OCResource *)presenceResource.handle)->sequenceNum = OCGetRandom();
4634                 SendPresenceNotification(resource->rsrcType, OC_PRESENCE_TRIGGER_DELETE);
4635             }
4636 #endif
4637             // Only resource in list.
4638             if (temp == headResource && temp == tailResource)
4639             {
4640                 headResource = NULL;
4641                 tailResource = NULL;
4642             }
4643             // Deleting head.
4644             else if (temp == headResource)
4645             {
4646                 headResource = temp->next;
4647             }
4648             // Deleting tail.
4649             else if (temp == tailResource && prev)
4650             {
4651                 tailResource = prev;
4652                 tailResource->next = NULL;
4653             }
4654             else if (prev)
4655             {
4656                 prev->next = temp->next;
4657             }
4658
4659             deleteResourceElements(temp);
4660             OICFree(temp);
4661             return OC_STACK_OK;
4662         }
4663         else
4664         {
4665             prev = temp;
4666             temp = temp->next;
4667         }
4668     }
4669
4670     return OC_STACK_ERROR;
4671 }
4672
4673 void deleteResourceElements(OCResource *resource)
4674 {
4675     if (!resource)
4676     {
4677         return;
4678     }
4679
4680     if (resource->uri)
4681     {
4682         OICFree(resource->uri);
4683         resource->uri = NULL;
4684     }
4685     if (resource->rsrcType)
4686     {
4687         deleteResourceType(resource->rsrcType);
4688         resource->rsrcType = NULL;
4689     }
4690     if (resource->rsrcInterface)
4691     {
4692         deleteResourceInterface(resource->rsrcInterface);
4693         resource->rsrcInterface = NULL;
4694     }
4695     if (resource->rsrcChildResourcesHead)
4696     {
4697         unbindChildResources(resource->rsrcChildResourcesHead);
4698         resource->rsrcChildResourcesHead = NULL;
4699     }
4700     if (resource->rsrcAttributes)
4701     {
4702         OCDeleteResourceAttributes(resource->rsrcAttributes);
4703         resource->rsrcAttributes = NULL;
4704     }
4705     resource = NULL;
4706 }
4707
4708 void deleteResourceType(OCResourceType *resourceType)
4709 {
4710     OCResourceType *next = NULL;
4711
4712     for (OCResourceType *pointer = resourceType; pointer; pointer = next)
4713     {
4714         next = pointer->next ? pointer->next : NULL;
4715         if (pointer->resourcetypename)
4716         {
4717             OICFree(pointer->resourcetypename);
4718             pointer->resourcetypename = NULL;
4719         }
4720         OICFree(pointer);
4721     }
4722 }
4723
4724 void deleteResourceInterface(OCResourceInterface *resourceInterface)
4725 {
4726     OCResourceInterface *next = NULL;
4727     for (OCResourceInterface *pointer = resourceInterface; pointer; pointer = next)
4728     {
4729         next = pointer->next ? pointer->next : NULL;
4730         if (pointer->name)
4731         {
4732             OICFree(pointer->name);
4733             pointer->name = NULL;
4734         }
4735         OICFree(pointer);
4736     }
4737 }
4738
4739 void unbindChildResources(OCChildResource *head)
4740 {
4741     OCChildResource *next = NULL;
4742     for (OCChildResource *current = head; current; current = next)
4743     {
4744         next = current->next;
4745         OICFree(current);
4746     }
4747 }
4748
4749 void OCDeleteResourceAttributes(OCAttribute *rsrcAttributes)
4750 {
4751     OCAttribute *next = NULL;
4752     for (OCAttribute *pointer = rsrcAttributes; pointer; pointer = next)
4753     {
4754         next = pointer->next ? pointer->next : NULL;
4755         if (pointer->attrName && 0 == strcmp(OC_RSRVD_DATA_MODEL_VERSION, pointer->attrName))
4756         {
4757             OCFreeOCStringLL((OCStringLL *)pointer->attrValue);
4758             pointer->attrValue = NULL;
4759         }
4760         else if (pointer->attrValue)
4761         {
4762             OICFree(pointer->attrValue);
4763             pointer->attrValue = NULL;
4764         }
4765         if (pointer->attrName)
4766         {
4767             OICFree(pointer->attrName);
4768             pointer->attrName = NULL;
4769         }
4770         OICFree(pointer);
4771     }
4772 }
4773
4774 void insertResourceType(OCResource *resource, OCResourceType *resourceType)
4775 {
4776     OCResourceType *pointer = NULL;
4777     OCResourceType *previous = NULL;
4778     if (!resource || !resourceType)
4779     {
4780         return;
4781     }
4782     // resource type list is empty.
4783     else if (!resource->rsrcType)
4784     {
4785         resource->rsrcType = resourceType;
4786     }
4787     else
4788     {
4789         pointer = resource->rsrcType;
4790
4791         while (pointer)
4792         {
4793             if (!strcmp(resourceType->resourcetypename, pointer->resourcetypename))
4794             {
4795                 OIC_LOG_V(INFO, TAG, "Type %s already exists", resourceType->resourcetypename);
4796                 OICFree(resourceType->resourcetypename);
4797                 OICFree(resourceType);
4798                 return;
4799             }
4800             previous = pointer;
4801             pointer = pointer->next;
4802         }
4803
4804         if (previous)
4805         {
4806             previous->next = resourceType;
4807         }
4808     }
4809     resourceType->next = NULL;
4810
4811     OIC_LOG_V(INFO, TAG, "Added type %s to %s", resourceType->resourcetypename, resource->uri);
4812 }
4813
4814 OCResourceType *findResourceTypeAtIndex(OCResourceHandle handle, uint8_t index)
4815 {
4816     OCResource *resource = NULL;
4817     OCResourceType *pointer = NULL;
4818
4819     // Find the specified resource
4820     resource = findResource((OCResource *) handle);
4821     if (!resource)
4822     {
4823         return NULL;
4824     }
4825
4826     // Make sure a resource has a resourcetype
4827     if (!resource->rsrcType)
4828     {
4829         return NULL;
4830     }
4831
4832     // Iterate through the list
4833     pointer = resource->rsrcType;
4834     for(uint8_t i = 0; i< index && pointer; ++i)
4835     {
4836         pointer = pointer->next;
4837     }
4838     return pointer;
4839 }
4840
4841 OCResourceType *findResourceType(OCResourceType * resourceTypeList, const char * resourceTypeName)
4842 {
4843     if(resourceTypeList && resourceTypeName)
4844     {
4845         OCResourceType * rtPointer = resourceTypeList;
4846         while(resourceTypeName && rtPointer)
4847         {
4848             OIC_LOG_V(DEBUG, TAG, "current resourceType : %s", rtPointer->resourcetypename);
4849             if(rtPointer->resourcetypename &&
4850                     strcmp(resourceTypeName, (const char *)
4851                     (rtPointer->resourcetypename)) == 0)
4852             {
4853                 break;
4854             }
4855             rtPointer = rtPointer->next;
4856         }
4857         return rtPointer;
4858     }
4859     return NULL;
4860 }
4861
4862 /*
4863  * Insert a new interface into interface linked list only if not already present.
4864  * If alredy present, 2nd arg is free'd.
4865  * Default interface will always be first if present.
4866  */
4867 void insertResourceInterface(OCResource *resource, OCResourceInterface *newInterface)
4868 {
4869     OCResourceInterface *pointer = NULL;
4870     OCResourceInterface *previous = NULL;
4871
4872     newInterface->next = NULL;
4873
4874     OCResourceInterface **firstInterface = &(resource->rsrcInterface);
4875
4876     if (!*firstInterface)
4877     {
4878         // If first interface is not oic.if.baseline, by default add it as first interface type.
4879         if (0 == strcmp(newInterface->name, OC_RSRVD_INTERFACE_DEFAULT))
4880         {
4881             *firstInterface = newInterface;
4882         }
4883         else
4884         {
4885             OCStackResult result = BindResourceInterfaceToResource(resource,
4886                                                                     OC_RSRVD_INTERFACE_DEFAULT);
4887             if (result != OC_STACK_OK)
4888             {
4889                 OICFree(newInterface->name);
4890                 OICFree(newInterface);
4891                 return;
4892             }
4893             if (*firstInterface)
4894             {
4895                 (*firstInterface)->next = newInterface;
4896             }
4897         }
4898     }
4899     // If once add oic.if.baseline, later too below code take care of freeing memory.
4900     else if (strcmp(newInterface->name, OC_RSRVD_INTERFACE_DEFAULT) == 0)
4901     {
4902         if (strcmp((*firstInterface)->name, OC_RSRVD_INTERFACE_DEFAULT) == 0)
4903         {
4904             OICFree(newInterface->name);
4905             OICFree(newInterface);
4906             return;
4907         }
4908         // This code will not hit anymore, keeping
4909         else
4910         {
4911             newInterface->next = *firstInterface;
4912             *firstInterface = newInterface;
4913         }
4914     }
4915     else
4916     {
4917         pointer = *firstInterface;
4918         while (pointer)
4919         {
4920             if (strcmp(newInterface->name, pointer->name) == 0)
4921             {
4922                 OICFree(newInterface->name);
4923                 OICFree(newInterface);
4924                 return;
4925             }
4926             previous = pointer;
4927             pointer = pointer->next;
4928         }
4929
4930         if (previous)
4931         {
4932             previous->next = newInterface;
4933         }
4934     }
4935 }
4936
4937 OCResourceInterface *findResourceInterfaceAtIndex(OCResourceHandle handle,
4938         uint8_t index)
4939 {
4940     OCResource *resource = NULL;
4941     OCResourceInterface *pointer = NULL;
4942
4943     // Find the specified resource
4944     resource = findResource((OCResource *) handle);
4945     if (!resource)
4946     {
4947         return NULL;
4948     }
4949
4950     // Make sure a resource has a resourceinterface
4951     if (!resource->rsrcInterface)
4952     {
4953         return NULL;
4954     }
4955
4956     // Iterate through the list
4957     pointer = resource->rsrcInterface;
4958
4959     for (uint8_t i = 0; i < index && pointer; ++i)
4960     {
4961         pointer = pointer->next;
4962     }
4963     return pointer;
4964 }
4965
4966 /*
4967  * This function splits the uri using the '?' delimiter.
4968  * "uriWithoutQuery" is the block of characters between the beginning
4969  * till the delimiter or '\0' which ever comes first.
4970  * "query" is whatever is to the right of the delimiter if present.
4971  * No delimiter sets the query to NULL.
4972  * If either are present, they will be malloc'ed into the params 2, 3.
4973  * The first param, *uri is left untouched.
4974
4975  * NOTE: This function does not account for whitespace at the end of the uri NOR
4976  *       malformed uri's with '??'. Whitespace at the end will be assumed to be
4977  *       part of the query.
4978  */
4979 OCStackResult getQueryFromUri(const char * uri, char** query, char ** uriWithoutQuery)
4980 {
4981     if(!uri)
4982     {
4983         return OC_STACK_INVALID_URI;
4984     }
4985     if(!query || !uriWithoutQuery)
4986     {
4987         return OC_STACK_INVALID_PARAM;
4988     }
4989
4990     *query           = NULL;
4991     *uriWithoutQuery = NULL;
4992
4993     size_t uriWithoutQueryLen = 0;
4994     size_t queryLen = 0;
4995     size_t uriLen = strlen(uri);
4996
4997     char *pointerToDelimiter = strstr(uri, "?");
4998
4999     uriWithoutQueryLen = pointerToDelimiter == NULL ? uriLen : (size_t)(pointerToDelimiter - uri);
5000     queryLen = pointerToDelimiter == NULL ? 0 : uriLen - uriWithoutQueryLen - 1;
5001
5002     if (uriWithoutQueryLen)
5003     {
5004         *uriWithoutQuery =  (char *) OICCalloc(uriWithoutQueryLen + 1, 1);
5005         if (!*uriWithoutQuery)
5006         {
5007             goto exit;
5008         }
5009         OICStrcpy(*uriWithoutQuery, uriWithoutQueryLen +1, uri);
5010     }
5011     if (queryLen)
5012     {
5013         *query = (char *) OICCalloc(queryLen + 1, 1);
5014         if (!*query)
5015         {
5016             OICFree(*uriWithoutQuery);
5017             *uriWithoutQuery = NULL;
5018             goto exit;
5019         }
5020         OICStrcpy(*query, queryLen + 1, pointerToDelimiter + 1);
5021     }
5022
5023     return OC_STACK_OK;
5024
5025     exit:
5026         return OC_STACK_NO_MEMORY;
5027 }
5028
5029 const char* OCGetServerInstanceIDString(void)
5030 {
5031     static char sidStr[UUID_STRING_SIZE];
5032     OicUuid_t sid;
5033     if (OC_STACK_OK != GetDoxmDeviceID(&sid))
5034     {
5035         OIC_LOG(FATAL, TAG, "GetDoxmDeviceID failed!");
5036         return NULL;
5037     }
5038
5039     if (OCConvertUuidToString(sid.id, sidStr) != RAND_UUID_OK)
5040     {
5041         OIC_LOG(FATAL, TAG, "Generate UUID String for Server Instance failed!");
5042         return NULL;
5043     }
5044
5045     return sidStr;
5046 }
5047
5048 CAResult_t OCSelectNetwork(OCTransportAdapter transportType)
5049 {
5050     OIC_LOG_V(DEBUG, TAG, "OCSelectNetwork [%d]", transportType);
5051     CAResult_t retResult = CA_STATUS_FAILED;
5052     CAResult_t caResult = CA_STATUS_OK;
5053
5054     CATransportAdapter_t connTypes[] = {
5055             CA_ADAPTER_IP,
5056             CA_ADAPTER_RFCOMM_BTEDR,
5057             CA_ADAPTER_GATT_BTLE,
5058             CA_ADAPTER_NFC
5059 #ifdef RA_ADAPTER
5060             ,CA_ADAPTER_REMOTE_ACCESS
5061 #endif
5062
5063 #ifdef TCP_ADAPTER
5064             ,CA_ADAPTER_TCP
5065 #endif
5066         };
5067     int numConnTypes = sizeof(connTypes)/sizeof(connTypes[0]);
5068
5069     for(int i = 0; i < numConnTypes; i++)
5070     {
5071         // If CA status is not initialized, CASelectNetwork() will not be called.
5072         if (caResult != CA_STATUS_NOT_INITIALIZED)
5073         {
5074             if ((connTypes[i] & transportType) || (OC_DEFAULT_ADAPTER == transportType))
5075             {
5076                 OIC_LOG_V(DEBUG, TAG, "call CASelectNetwork [%d]", connTypes[i]);
5077                 caResult = CASelectNetwork(connTypes[i]);
5078                 if (caResult == CA_STATUS_OK)
5079                 {
5080                     retResult = CA_STATUS_OK;
5081                 }
5082             }
5083             else
5084             {
5085                 OIC_LOG_V(DEBUG, TAG, "there is no transport type [%d]", connTypes[i]);
5086             }
5087         }
5088     }
5089
5090     if (retResult != CA_STATUS_OK)
5091     {
5092         return caResult; // Returns error of appropriate transport that failed fatally.
5093     }
5094
5095     return retResult;
5096 }
5097
5098 OCStackResult CAResultToOCResult(CAResult_t caResult)
5099 {
5100     switch (caResult)
5101     {
5102         case CA_STATUS_OK:
5103             return OC_STACK_OK;
5104         case CA_STATUS_INVALID_PARAM:
5105             return OC_STACK_INVALID_PARAM;
5106         case CA_ADAPTER_NOT_ENABLED:
5107             return OC_STACK_ADAPTER_NOT_ENABLED;
5108         case CA_SERVER_STARTED_ALREADY:
5109             return OC_STACK_OK;
5110         case CA_SERVER_NOT_STARTED:
5111             return OC_STACK_ERROR;
5112         case CA_DESTINATION_NOT_REACHABLE:
5113             return OC_STACK_COMM_ERROR;
5114         case CA_SOCKET_OPERATION_FAILED:
5115             return OC_STACK_COMM_ERROR;
5116         case CA_SEND_FAILED:
5117             return OC_STACK_COMM_ERROR;
5118         case CA_RECEIVE_FAILED:
5119             return OC_STACK_COMM_ERROR;
5120         case CA_MEMORY_ALLOC_FAILED:
5121             return OC_STACK_NO_MEMORY;
5122         case CA_REQUEST_TIMEOUT:
5123             return OC_STACK_TIMEOUT;
5124         case CA_DESTINATION_DISCONNECTED:
5125             return OC_STACK_COMM_ERROR;
5126         case CA_STATUS_FAILED:
5127             return OC_STACK_ERROR;
5128         case CA_NOT_SUPPORTED:
5129             return OC_STACK_NOTIMPL;
5130         default:
5131             return OC_STACK_ERROR;
5132     }
5133 }
5134
5135 bool OCResultToSuccess(OCStackResult ocResult)
5136 {
5137     switch (ocResult)
5138     {
5139         case OC_STACK_OK:
5140         case OC_STACK_RESOURCE_CREATED:
5141         case OC_STACK_RESOURCE_DELETED:
5142         case OC_STACK_CONTINUE:
5143         case OC_STACK_RESOURCE_CHANGED:
5144         case OC_STACK_SLOW_RESOURCE:
5145             return true;
5146         default:
5147             return false;
5148     }
5149 }
5150
5151 #ifdef WITH_CHPROXY
5152 OCStackResult OCSetProxyURI(const char *uri)
5153 {
5154     return CAResultToOCResult(CASetProxyUri(uri));
5155 }
5156 #endif
5157
5158 #if defined(RD_CLIENT) || defined(RD_SERVER)
5159 OCStackResult OCBindResourceInsToResource(OCResourceHandle handle, int64_t ins)
5160 {
5161     VERIFY_NON_NULL(handle, ERROR, OC_STACK_INVALID_PARAM);
5162
5163     OCResource *resource = NULL;
5164
5165     resource = findResource((OCResource *) handle);
5166     if (!resource)
5167     {
5168         OIC_LOG(ERROR, TAG, "Resource not found");
5169         return OC_STACK_ERROR;
5170     }
5171
5172     resource->ins = ins;
5173
5174     return OC_STACK_OK;
5175 }
5176
5177
5178 OCStackResult OCUpdateResourceInsWithResponse(const char *requestUri,
5179                                               const OCClientResponse *response)
5180 {
5181     // Validate input parameters
5182     VERIFY_NON_NULL(requestUri, ERROR, OC_STACK_INVALID_PARAM);
5183     VERIFY_NON_NULL(response, ERROR, OC_STACK_INVALID_PARAM);
5184
5185     char *targetUri = (char *) OICMalloc(strlen(requestUri) + 1);
5186     if (!targetUri)
5187     {
5188         return OC_STACK_NO_MEMORY;
5189     }
5190     strncpy(targetUri, requestUri, strlen(requestUri) + 1);
5191
5192     if (response->result == OC_STACK_RESOURCE_CHANGED) // publish message
5193     {
5194         OIC_LOG(DEBUG, TAG, "update the ins of published resource");
5195
5196         char rdPubUri[MAX_URI_LENGTH] = { 0 };
5197         snprintf(rdPubUri, MAX_URI_LENGTH, "%s?rt=%s", OC_RSRVD_RD_URI,
5198                  OC_RSRVD_RESOURCE_TYPE_RDPUBLISH);
5199
5200         if (strcmp(rdPubUri, targetUri) == 0)
5201         {
5202             // Update resource unique id in stack.
5203             if (response)
5204             {
5205                 if (response->payload)
5206                 {
5207                     OCRepPayload *rdPayload = (OCRepPayload *) response->payload;
5208                     OCRepPayload **links = NULL;
5209                     size_t dimensions[MAX_REP_ARRAY_DEPTH] = { 0 };
5210                     if (OCRepPayloadGetPropObjectArray(rdPayload, OC_RSRVD_LINKS,
5211                                                        &links, dimensions))
5212                     {
5213                         size_t i = 0;
5214                         for (; i < dimensions[0]; i++)
5215                         {
5216                             char *uri = NULL;
5217                             if (OCRepPayloadGetPropString(links[i], OC_RSRVD_HREF, &uri))
5218                             {
5219                                 OCResourceHandle handle = OCGetResourceHandleAtUri(uri);
5220                                 int64_t ins = 0;
5221                                 if (OCRepPayloadGetPropInt(links[i], OC_RSRVD_INS, &ins))
5222                                 {
5223                                     OCBindResourceInsToResource(handle, ins);
5224                                 }
5225
5226                                 OICFree(uri);
5227                                 uri = NULL;
5228                             }
5229                         }
5230
5231                         // Free links
5232                         size_t count = calcDimTotal(dimensions);
5233                         for (size_t k = 0; k < count; k++)
5234                         {
5235                             OCRepPayloadDestroy(links[k]);
5236                         }
5237                         OICFree(links);
5238                     }
5239                 }
5240             }
5241         }
5242     }
5243     else if (response->result == OC_STACK_RESOURCE_DELETED) // delete message
5244     {
5245         OIC_LOG(DEBUG, TAG, "update the ins of deleted resource with 0");
5246
5247         uint8_t numResources = 0;
5248         OCGetNumberOfResources(&numResources);
5249
5250         char *ins = strstr(targetUri, OC_RSRVD_INS);
5251         if (!ins)
5252         {
5253             for (uint8_t i = 0; i < numResources; i++)
5254             {
5255                 OCResourceHandle resHandle = OCGetResourceHandle(i);
5256                 if (resHandle)
5257                 {
5258                     OCBindResourceInsToResource(resHandle, 0);
5259                 }
5260             }
5261         }
5262         else
5263         {
5264             const char *token = "&";
5265             char *iterTokenPtr = NULL;
5266             char *start = strtok_r(targetUri, token, &iterTokenPtr);
5267
5268              while (start != NULL)
5269              {
5270                  char *query = start;
5271                  query = strstr(query, OC_RSRVD_INS);
5272                  if (query)
5273                  {
5274                      int64_t queryIns = atoi(query + 4);
5275                      for (uint8_t i = 0; i < numResources; i++)
5276                      {
5277                          OCResourceHandle resHandle = OCGetResourceHandle(i);
5278                          if (resHandle)
5279                          {
5280                              int64_t resIns = 0;
5281                              OCGetResourceIns(resHandle, &resIns);
5282                              if (queryIns && queryIns == resIns)
5283                              {
5284                                  OCBindResourceInsToResource(resHandle, 0);
5285                                  break;
5286                              }
5287                          }
5288                      }
5289                  }
5290                  start = strtok_r(NULL, token, &iterTokenPtr);
5291              }
5292         }
5293     }
5294
5295     OICFree(targetUri);
5296     return OC_STACK_OK;
5297 }
5298
5299 OCResourceHandle OCGetResourceHandleAtUri(const char *uri)
5300 {
5301     if (!uri)
5302     {
5303         OIC_LOG(ERROR, TAG, "Resource uri is NULL");
5304         return NULL;
5305     }
5306
5307     OCResource *pointer = headResource;
5308
5309     while (pointer)
5310     {
5311         if (strncmp(uri, pointer->uri, MAX_URI_LENGTH) == 0)
5312         {
5313             OIC_LOG_V(DEBUG, TAG, "Found Resource %s", uri);
5314             return pointer;
5315         }
5316         pointer = pointer->next;
5317     }
5318     return NULL;
5319 }
5320
5321 OCStackResult OCGetResourceIns(OCResourceHandle handle, int64_t *ins)
5322 {
5323     OCResource *resource = NULL;
5324
5325     VERIFY_NON_NULL(handle, ERROR, OC_STACK_INVALID_PARAM);
5326     VERIFY_NON_NULL(ins, ERROR, OC_STACK_INVALID_PARAM);
5327
5328     resource = findResource((OCResource *) handle);
5329     if (resource)
5330     {
5331         *ins = resource->ins;
5332         return OC_STACK_OK;
5333     }
5334     return OC_STACK_ERROR;
5335 }
5336 #endif
5337
5338 OCStackResult OCSetHeaderOption(OCHeaderOption* ocHdrOpt, size_t* numOptions, uint16_t optionID,
5339                                 const void* optionData, size_t optionDataLength)
5340 {
5341     if (!ocHdrOpt)
5342     {
5343         OIC_LOG (INFO, TAG, "Header options are NULL");
5344         return OC_STACK_INVALID_PARAM;
5345     }
5346
5347     if (!optionData)
5348     {
5349         OIC_LOG (INFO, TAG, "optionData are NULL");
5350         return OC_STACK_INVALID_PARAM;
5351     }
5352
5353     if (!numOptions)
5354     {
5355         OIC_LOG (INFO, TAG, "numOptions is NULL");
5356         return OC_STACK_INVALID_PARAM;
5357     }
5358
5359     if (*numOptions >= MAX_HEADER_OPTIONS)
5360     {
5361         OIC_LOG (INFO, TAG, "Exceeding MAX_HEADER_OPTIONS");
5362         return OC_STACK_NO_MEMORY;
5363     }
5364
5365     ocHdrOpt += *numOptions;
5366     ocHdrOpt->protocolID = OC_COAP_ID;
5367     ocHdrOpt->optionID = optionID;
5368     ocHdrOpt->optionLength =
5369             optionDataLength < MAX_HEADER_OPTION_DATA_LENGTH ?
5370                     optionDataLength : MAX_HEADER_OPTION_DATA_LENGTH;
5371     memcpy(ocHdrOpt->optionData, (const void*) optionData, ocHdrOpt->optionLength);
5372     *numOptions += 1;
5373
5374     return OC_STACK_OK;
5375 }
5376
5377 OCStackResult OCGetHeaderOption(OCHeaderOption* ocHdrOpt, size_t numOptions, uint16_t optionID,
5378                                 void* optionData, size_t optionDataLength, uint16_t* receivedDataLength)
5379 {
5380     if (!ocHdrOpt || !numOptions)
5381     {
5382         OIC_LOG (INFO, TAG, "No options present");
5383         return OC_STACK_OK;
5384     }
5385
5386     if (!optionData)
5387     {
5388         OIC_LOG (INFO, TAG, "optionData are NULL");
5389         return OC_STACK_INVALID_PARAM;
5390     }
5391
5392     if (!receivedDataLength)
5393     {
5394         OIC_LOG (INFO, TAG, "receivedDataLength is NULL");
5395         return OC_STACK_INVALID_PARAM;
5396     }
5397
5398     for (uint8_t i = 0; i < numOptions; i++)
5399     {
5400         if (ocHdrOpt[i].optionID == optionID)
5401         {
5402             if (optionDataLength >= ocHdrOpt->optionLength)
5403             {
5404                 memcpy(optionData, ocHdrOpt->optionData, ocHdrOpt->optionLength);
5405                 *receivedDataLength = ocHdrOpt->optionLength;
5406                 return OC_STACK_OK;
5407             }
5408             else
5409             {
5410                 OIC_LOG (ERROR, TAG, "optionDataLength is less than the length of received data");
5411                 return OC_STACK_ERROR;
5412             }
5413         }
5414     }
5415     return OC_STACK_OK;
5416 }
5417
5418 void OCDefaultAdapterStateChangedHandler(CATransportAdapter_t adapter, bool enabled)
5419 {
5420     OIC_LOG(DEBUG, TAG, "OCDefaultAdapterStateChangedHandler");
5421     if (g_adapterHandler)
5422     {
5423         g_adapterHandler(adapter, enabled);
5424     }
5425 }
5426
5427 void OCDefaultConnectionStateChangedHandler(const CAEndpoint_t *info, bool isConnected)
5428 {
5429     OIC_LOG(DEBUG, TAG, "OCDefaultConnectionStateChangedHandler");
5430     if (g_connectionHandler)
5431     {
5432        g_connectionHandler(info, isConnected);
5433     }
5434
5435     /*
5436      * If the client observes one or more resources over a reliable connection,
5437      * then the CoAP server (or intermediary in the role of the CoAP server)
5438      * MUST remove all entries associated with the client endpoint from the lists
5439      * of observers when the connection is either closed or times out.
5440      */
5441     if (!isConnected)
5442     {
5443         OCDevAddr devAddr = { OC_DEFAULT_ADAPTER };
5444         CopyEndpointToDevAddr(info, &devAddr);
5445
5446         // remove observer list with remote device address.
5447         DeleteObserverUsingDevAddr(&devAddr);
5448     }
5449 }
5450
5451 OCStackResult OCGetDeviceId(OCUUIdentity *deviceId)
5452 {
5453     OicUuid_t oicUuid;
5454     OCStackResult ret = OC_STACK_ERROR;
5455
5456     ret = GetDoxmDeviceID(&oicUuid);
5457     if (OC_STACK_OK == ret)
5458     {
5459         memcpy(deviceId, &oicUuid, UUID_IDENTITY_SIZE);
5460     }
5461     else
5462     {
5463         OIC_LOG(ERROR, TAG, "Device ID Get error");
5464     }
5465     return ret;
5466 }
5467
5468 OCStackResult OCSetDeviceId(const OCUUIdentity *deviceId)
5469 {
5470     OicUuid_t oicUuid;
5471     OCStackResult ret = OC_STACK_ERROR;
5472
5473     memcpy(&oicUuid, deviceId, UUID_LENGTH);
5474     for (int i = 0; i < UUID_LENGTH; i++)
5475     {
5476         OIC_LOG_V(INFO, TAG, "Set Device Id %x", oicUuid.id[i]);
5477     }
5478     ret = SetDoxmDeviceID(&oicUuid);
5479     return ret;
5480 }
5481
5482 OCStackResult OCGetDeviceOwnedState(bool *isOwned)
5483 {
5484     bool isDeviceOwned = true;
5485     OCStackResult ret = OC_STACK_ERROR;
5486
5487     ret = GetDoxmIsOwned(&isDeviceOwned);
5488     if (OC_STACK_OK == ret)
5489     {
5490         *isOwned = isDeviceOwned;
5491     }
5492     else
5493     {
5494         OIC_LOG(ERROR, TAG, "Device Owned State Get error");
5495     }
5496     return ret;
5497 }
5498
5499 void OCClearCallBackList()
5500 {
5501     DeleteClientCBList();
5502 }
5503
5504 void OCClearObserverlist()
5505 {
5506     DeleteObserverList();
5507 }
5508
5509 int OCEncrypt(const unsigned char *pt, size_t pt_len,
5510         unsigned char **ct, size_t *ct_len)
5511 {
5512 #ifndef __SECURE_PSI__
5513     OIC_LOG_V(DEBUG, TAG, "Not Supported : %s", __func__);
5514     return 0;
5515 #else
5516     OIC_LOG_V(DEBUG, TAG, "%s", __func__);
5517
5518     return psiEncrypt(pt, pt_len, ct, ct_len);
5519 #endif // __SECURE_PSI__
5520 }
5521
5522 int OCDecrypt(const unsigned char *ct, size_t ct_len,
5523         unsigned char **pt, size_t *pt_len)
5524 {
5525 #ifndef __SECURE_PSI__
5526     OIC_LOG_V(DEBUG, TAG, "Not Supported : %s", __func__);
5527     return 0;
5528 #else
5529     OIC_LOG_V(DEBUG, TAG, "%s", __func__);
5530
5531     return psiDecrypt(ct, ct_len, pt, pt_len);
5532 #endif // __SECURE_PSI__
5533 }
5534
5535 OCStackResult OCSetKey(const unsigned char* key)
5536 {
5537 #ifndef __SECURE_PSI__
5538     OIC_LOG_V(DEBUG, TAG, "Not Supported : %s", __func__);
5539     return OC_STACK_OK;
5540 #else
5541     OIC_LOG_V(DEBUG, TAG, "%s", __func__);
5542
5543     return psiSetKey(key);
5544 #endif // __SECURE_PSI__
5545 }
5546
5547 OCStackResult OCGetKey(unsigned char* key)
5548 {
5549 #ifndef __SECURE_PSI__
5550     OIC_LOG_V(DEBUG, TAG, "Not Supported : %s", __func__);
5551     return OC_STACK_OK;
5552 #else
5553     OIC_LOG_V(DEBUG, TAG, "%s", __func__);
5554
5555     return psiGetKey(key);
5556 #endif // __SECURE_PSI__
5557 }
5558
5559 OCStackResult OCSetSecurePSI(const unsigned char *key, const OCPersistentStorage *psPlain,
5560         const OCPersistentStorage *psEnc, const OCPersistentStorage *psRescue)
5561 {
5562 #ifndef __SECURE_PSI__
5563     OIC_LOG_V(DEBUG, TAG, "Not Supported : %s", __func__);
5564     return OC_STACK_OK;
5565 #else
5566     OIC_LOG_V(DEBUG, TAG, "%s", __func__);
5567
5568     return setSecurePSI(key, psPlain, psEnc, psRescue);
5569 #endif // __SECURE_PSI__
5570 }
5571
5572 #if defined(__WITH_DTLS__) || defined (__WITH_TLS__)
5573 static void OtmEventHandler(const char *addr, uint16_t port, const char *uuid, int event)
5574 {
5575     if (g_otmEventHandler.cb)
5576     {
5577         g_otmEventHandler.cb(g_otmEventHandler.ctx, addr, port, uuid, event);
5578     }
5579 }
5580
5581 /* TODO Work-around
5582  * It is already declared in srmutility.h.
5583  * We can't include the header file, because of "redefined VERIFY_NON_NULL"
5584  */
5585 typedef void (*OicSecOtmEventHandler_t)(const char* addr, uint16_t port,
5586         const char* uuid, int event);
5587 void SetOtmEventHandler(OicSecOtmEventHandler_t otmEventHandler);
5588 #endif
5589
5590 OCStackResult OCSetOtmEventHandler(void *ctx, OCOtmEventHandler cb)
5591 {
5592 #if defined(__WITH_DTLS__) || defined (__WITH_TLS__)
5593     OIC_LOG_V(DEBUG, TAG, "%s", __func__);
5594
5595     g_otmEventHandler.cb = cb;
5596     g_otmEventHandler.ctx = ctx;
5597
5598     if (g_otmEventHandler.cb)
5599     {
5600         OIC_LOG(DEBUG, TAG, "SET OCOtmEventHandler");
5601         SetOtmEventHandler(OtmEventHandler);
5602     }
5603     else
5604     {
5605         OIC_LOG(DEBUG, TAG, "UNSET OCOtmEventHandler");
5606         SetOtmEventHandler(NULL);
5607     }
5608 #else
5609     OIC_LOG_V(DEBUG, TAG, "Not Supported : %s", __func__);
5610     OC_UNUSED(ctx);
5611     OC_UNUSED(cb);
5612 #endif
5613     return OC_STACK_OK;
5614 }