Merge branch 'master' into windows-port
[platform/upstream/iotivity.git] / resource / csdk / stack / src / ocresource.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 // Defining _POSIX_C_SOURCE macro with 200112L (or greater) as value
22 // causes header files to expose definitions
23 // corresponding to the POSIX.1-2001 base
24 // specification (excluding the XSI extension).
25 // For POSIX.1-2001 base specification,
26 // Refer http://pubs.opengroup.org/onlinepubs/009695399/
27 #define _POSIX_C_SOURCE 200112L
28
29 #ifdef WITH_STRING_H
30 #include <string.h>
31 #endif
32 #ifdef WITH_STRINGS_H
33 #include <strings.h>
34 #endif
35
36 #include "ocresource.h"
37 #include "ocresourcehandler.h"
38 #include "ocobserve.h"
39 #include "occollection.h"
40 #include "oic_malloc.h"
41 #include "oic_string.h"
42 #include "logger.h"
43 #include "cJSON.h"
44 #include "ocpayload.h"
45 #include "secureresourcemanager.h"
46 #include "cacommon.h"
47 #include "cainterface.h"
48 #include "rdpayload.h"
49 #include "ocpayload.h"
50
51 #ifdef WITH_RD
52 #include "rd_server.h"
53 #endif
54
55 #ifdef ROUTING_GATEWAY
56 #include "routingmanager.h"
57 #endif
58
59 /// Module Name
60 #define TAG "OIC_RI_RESOURCE"
61
62 #define VERIFY_SUCCESS(op, successCode) { if (op != successCode) \
63             {OIC_LOG_V(FATAL, TAG, "%s failed!!", #op); goto exit;} }
64
65 #define VERIFY_NON_NULL(arg, logLevel, retVal) { if (!(arg)) { OIC_LOG((logLevel), \
66              TAG, #arg " is NULL"); return (retVal); } }
67
68 #include "platform_features.h"
69
70 extern OCResource *headResource;
71 static OCPlatformInfo savedPlatformInfo = {0};
72 static OCDeviceInfo savedDeviceInfo = {0};
73
74 /**
75  * Prepares a Payload for response.
76  */
77 static OCStackResult BuildVirtualResourceResponse(const OCResource *resourcePtr,
78                                                   OCDiscoveryPayload* payload,
79                                                   OCDevAddr *endpoint,
80                                                   bool rdResponse);
81
82 //-----------------------------------------------------------------------------
83 // Default resource entity handler function
84 //-----------------------------------------------------------------------------
85 OCEntityHandlerResult defaultResourceEHandler(OCEntityHandlerFlag flag,
86         OCEntityHandlerRequest * request, void* callbackParam)
87 {
88     //TODO ("Implement me!!!!");
89     // TODO:  remove silence unused param warnings
90     (void) flag;
91     (void) request;
92     (void) callbackParam;
93     return  OC_EH_OK; // Making sure that the Default EH and the Vendor EH have matching signatures
94 }
95
96 /* This method will retrieve the port at which the secure resource is hosted */
97 static OCStackResult GetSecurePortInfo(OCDevAddr *endpoint, uint16_t *port)
98 {
99     uint16_t p = 0;
100
101     if (endpoint->adapter == OC_ADAPTER_IP)
102     {
103         if (endpoint->flags & OC_IP_USE_V6)
104         {
105             p = caglobals.ip.u6s.port;
106         }
107         else if (endpoint->flags & OC_IP_USE_V4)
108         {
109             p = caglobals.ip.u4s.port;
110         }
111     }
112
113     *port = p;
114     return OC_STACK_OK;
115 }
116
117 #ifdef TCP_ADAPTER
118 /* This method will retrieve the tcp port */
119 static OCStackResult GetTCPPortInfo(OCDevAddr *endpoint, uint16_t *port)
120 {
121     uint16_t p = 0;
122
123     if (endpoint->adapter == OC_ADAPTER_IP)
124     {
125         if (endpoint->flags & OC_IP_USE_V4)
126         {
127             p = caglobals.tcp.ipv4.port;
128         }
129         else if (endpoint->flags & OC_IP_USE_V6)
130         {
131             p = caglobals.tcp.ipv6.port;
132         }
133     }
134
135     *port = p;
136     return OC_STACK_OK;
137 }
138 #endif
139
140 /*
141  * Function will extract 0, 1 or 2 filters from query.
142  * More than 2 filters or unsupported filters will result in error.
143  * If both filters are of the same supported type, the 2nd one will be picked.
144  * Resource and device filters in the SAME query are NOT validated
145  * and resources will likely not clear filters.
146  */
147 static OCStackResult ExtractFiltersFromQuery(char *query, char **filterOne, char **filterTwo)
148 {
149
150     char *key = NULL;
151     char *value = NULL;
152     char *restOfQuery = NULL;
153     int numKeyValuePairsParsed = 0;
154
155     *filterOne = NULL;
156     *filterTwo = NULL;
157
158     OIC_LOG_V(INFO, TAG, "Extracting params from %s", query);
159
160     char *keyValuePair = strtok_r (query, OC_QUERY_SEPARATOR, &restOfQuery);
161
162     while(keyValuePair)
163     {
164         if (numKeyValuePairsParsed >= 2)
165         {
166             OIC_LOG(ERROR, TAG, "More than 2 queries params in URI.");
167             return OC_STACK_INVALID_QUERY;
168         }
169
170         key = strtok_r(keyValuePair, OC_KEY_VALUE_DELIMITER, &value);
171
172         if (!key || !value)
173         {
174             return OC_STACK_INVALID_QUERY;
175         }
176         else if (strncasecmp(key, OC_RSRVD_INTERFACE, sizeof(OC_RSRVD_INTERFACE) - 1) == 0)
177         {
178             *filterOne = value;     // if
179         }
180         else if (strncasecmp(key, OC_RSRVD_RESOURCE_TYPE, sizeof(OC_RSRVD_INTERFACE) - 1) == 0)
181         {
182             *filterTwo = value;     // rt
183         }
184         else
185         {
186             OIC_LOG_V(ERROR, TAG, "Unsupported query key: %s", key);
187             return OC_STACK_INVALID_QUERY;
188         }
189         ++numKeyValuePairsParsed;
190
191         keyValuePair = strtok_r(NULL, OC_QUERY_SEPARATOR, &restOfQuery);
192     }
193
194     OIC_LOG_V(INFO, TAG, "Extracted params if: %s and rt: %s.", *filterOne, *filterTwo);
195     return OC_STACK_OK;
196 }
197
198 static OCVirtualResources GetTypeOfVirtualURI(const char *uriInRequest)
199 {
200     if (strcmp(uriInRequest, OC_RSRVD_WELL_KNOWN_URI) == 0)
201     {
202         return OC_WELL_KNOWN_URI;
203     }
204     else if (strcmp(uriInRequest, OC_RSRVD_DEVICE_URI) == 0)
205     {
206         return OC_DEVICE_URI;
207     }
208     else if (strcmp(uriInRequest, OC_RSRVD_PLATFORM_URI) == 0)
209     {
210         return OC_PLATFORM_URI;
211     }
212     else if (strcmp(uriInRequest, OC_RSRVD_RESOURCE_TYPES_URI) == 0)
213     {
214         return OC_RESOURCE_TYPES_URI;
215     }
216 #ifdef ROUTING_GATEWAY
217     else if (0 == strcmp(uriInRequest, OC_RSRVD_GATEWAY_URI))
218     {
219         return OC_GATEWAY_URI;
220     }
221 #endif
222 #ifdef WITH_PRESENCE
223     else if (strcmp(uriInRequest, OC_RSRVD_PRESENCE_URI) == 0)
224     {
225         return OC_PRESENCE;
226     }
227 #endif //WITH_PRESENCE
228     return OC_UNKNOWN_URI;
229 }
230
231 static OCStackResult getQueryParamsForFiltering (OCVirtualResources uri, char *query,
232                                             char **filterOne, char **filterTwo)
233 {
234     if(!filterOne || !filterTwo)
235     {
236         return OC_STACK_INVALID_PARAM;
237     }
238
239     *filterOne = NULL;
240     *filterTwo = NULL;
241
242     #ifdef WITH_PRESENCE
243     if (uri == OC_PRESENCE)
244     {
245         //Nothing needs to be done, except for pass a OC_PRESENCE query through as OC_STACK_OK.
246         OIC_LOG(INFO, TAG, "OC_PRESENCE Request for virtual resource.");
247         return OC_STACK_OK;
248     }
249     #endif
250
251     OCStackResult result = OC_STACK_OK;
252
253     if (query && *query)
254     {
255         result = ExtractFiltersFromQuery(query, filterOne, filterTwo);
256     }
257
258     return result;
259 }
260
261 OCStackResult BuildResponseRepresentation(const OCResource *resourcePtr,
262                     OCRepPayload** payload)
263 {
264     OCRepPayload *tempPayload = OCRepPayloadCreate();
265
266     if (!resourcePtr)
267     {
268         OCRepPayloadDestroy(tempPayload);
269         return OC_STACK_INVALID_PARAM;
270     }
271
272     if(!tempPayload)
273     {
274         return OC_STACK_NO_MEMORY;
275     }
276
277     OCRepPayloadSetUri(tempPayload, resourcePtr->uri);
278
279     OCResourceType *resType = resourcePtr->rsrcType;
280     while(resType)
281     {
282         OCRepPayloadAddResourceType(tempPayload, resType->resourcetypename);
283         resType = resType->next;
284     }
285
286     OCResourceInterface *resInterface = resourcePtr->rsrcInterface;
287     while(resInterface)
288     {
289         OCRepPayloadAddInterface(tempPayload, resInterface->name);
290         resInterface = resInterface->next;
291     }
292
293     OCAttribute *resAttrib = resourcePtr->rsrcAttributes;
294     while(resAttrib)
295     {
296         OCRepPayloadSetPropString(tempPayload, resAttrib->attrName,
297                                 resAttrib->attrValue);
298         resAttrib = resAttrib->next;
299     }
300
301     if(!*payload)
302     {
303         *payload = tempPayload;
304     }
305     else
306     {
307         OCRepPayloadAppend(*payload, tempPayload);
308     }
309
310     return OC_STACK_OK;
311 }
312
313 OCStackResult BuildVirtualResourceResponse(const OCResource *resourcePtr,
314                         OCDiscoveryPayload *payload, OCDevAddr *devAddr, bool rdResponse)
315 {
316     if (!resourcePtr || !payload)
317     {
318         return OC_STACK_INVALID_PARAM;
319     }
320     uint16_t securePort = 0;
321     if (resourcePtr->resourceProperties & OC_SECURE)
322     {
323        if (GetSecurePortInfo(devAddr, &securePort) != OC_STACK_OK)
324        {
325            securePort = 0;
326        }
327     }
328
329     if (rdResponse)
330     {
331         securePort = devAddr->port;
332     }
333
334     uint16_t tcpPort = 0;
335 #ifdef TCP_ADAPTER
336     if (GetTCPPortInfo(devAddr, &tcpPort) != OC_STACK_OK)
337     {
338         tcpPort = 0;
339     }
340     OCDiscoveryPayloadAddResource(payload, resourcePtr, securePort, tcpPort);
341 #else
342     OCDiscoveryPayloadAddResource(payload, resourcePtr, securePort);
343 #endif
344
345     return OC_STACK_OK;
346 }
347
348 uint8_t IsCollectionResource (OCResource *resource)
349 {
350     if(!resource)
351     {
352         return 0;
353     }
354
355     if(resource->rsrcChildResourcesHead != NULL)
356     {
357         return 1;
358     }
359
360     return 0;
361 }
362
363 OCResource *FindResourceByUri(const char* resourceUri)
364 {
365     if(!resourceUri)
366     {
367         return NULL;
368     }
369
370     OCResource * pointer = headResource;
371     while (pointer)
372     {
373         if (strcmp(resourceUri, pointer->uri) == 0)
374         {
375             return pointer;
376         }
377         pointer = pointer->next;
378     }
379     OIC_LOG_V(INFO, TAG, "Resource %s not found", resourceUri);
380     return NULL;
381 }
382
383
384 OCStackResult DetermineResourceHandling (const OCServerRequest *request,
385                                          ResourceHandling *handling,
386                                          OCResource **resource)
387 {
388     if(!request || !handling || !resource)
389     {
390         return OC_STACK_INVALID_PARAM;
391     }
392
393     OIC_LOG_V(INFO, TAG, "DetermineResourceHandling for %s", request->resourceUrl);
394
395     // Check if virtual resource
396     if (GetTypeOfVirtualURI(request->resourceUrl) != OC_UNKNOWN_URI)
397     {
398         OIC_LOG_V (INFO, TAG, "%s is virtual", request->resourceUrl);
399         *handling = OC_RESOURCE_VIRTUAL;
400         *resource = headResource;
401         return OC_STACK_OK;
402     }
403     if (strlen((const char*)(request->resourceUrl)) == 0)
404     {
405         // Resource URL not specified
406         *handling = OC_RESOURCE_NOT_SPECIFIED;
407         return OC_STACK_NO_RESOURCE;
408     }
409     else
410     {
411         OCResource *resourcePtr = FindResourceByUri((const char*)request->resourceUrl);
412         *resource = resourcePtr;
413         if (!resourcePtr)
414         {
415             if(defaultDeviceHandler)
416             {
417                 *handling = OC_RESOURCE_DEFAULT_DEVICE_ENTITYHANDLER;
418                 return OC_STACK_OK;
419             }
420
421             // Resource does not exist
422             // and default device handler does not exist
423             *handling = OC_RESOURCE_NOT_SPECIFIED;
424             return OC_STACK_NO_RESOURCE;
425         }
426
427         if (IsCollectionResource (resourcePtr))
428         {
429             // Collection resource
430             if (resourcePtr->entityHandler != defaultResourceEHandler)
431             {
432                 *handling = OC_RESOURCE_COLLECTION_WITH_ENTITYHANDLER;
433                 return OC_STACK_OK;
434             }
435             else
436             {
437                 *handling = OC_RESOURCE_COLLECTION_DEFAULT_ENTITYHANDLER;
438                 return OC_STACK_OK;
439             }
440         }
441         else
442         {
443             // Resource not a collection
444             if (resourcePtr->entityHandler != defaultResourceEHandler)
445             {
446                 *handling = OC_RESOURCE_NOT_COLLECTION_WITH_ENTITYHANDLER;
447                 return OC_STACK_OK;
448             }
449             else
450             {
451                 *handling = OC_RESOURCE_NOT_COLLECTION_DEFAULT_ENTITYHANDLER;
452                 return OC_STACK_OK;
453             }
454         }
455     }
456 }
457
458 OCStackResult EntityHandlerCodeToOCStackCode(OCEntityHandlerResult ehResult)
459 {
460     OCStackResult result;
461
462     switch (ehResult)
463     {
464         case OC_EH_OK:
465             result = OC_STACK_OK;
466             break;
467         case OC_EH_SLOW:
468             result = OC_STACK_SLOW_RESOURCE;
469             break;
470         case OC_EH_ERROR:
471             result = OC_STACK_ERROR;
472             break;
473         case OC_EH_FORBIDDEN:
474             result = OC_STACK_RESOURCE_ERROR;
475             break;
476         case OC_EH_RESOURCE_CREATED:
477             result = OC_STACK_RESOURCE_CREATED;
478             break;
479         case OC_EH_RESOURCE_DELETED:
480             result = OC_STACK_RESOURCE_DELETED;
481             break;
482         case OC_EH_RESOURCE_NOT_FOUND:
483             result = OC_STACK_NO_RESOURCE;
484             break;
485         default:
486             result = OC_STACK_ERROR;
487     }
488
489     return result;
490 }
491
492 static bool resourceMatchesRTFilter(OCResource *resource, char *resourceTypeFilter)
493 {
494     if (!resource)
495     {
496         return false;
497     }
498
499     // Null or empty is analogous to no filter.
500     if (resourceTypeFilter == NULL || *resourceTypeFilter == 0)
501     {
502         return true;
503     }
504
505     OCResourceType *resourceTypePtr = resource->rsrcType;
506
507     while (resourceTypePtr)
508     {
509         if (strcmp (resourceTypePtr->resourcetypename, resourceTypeFilter) == 0)
510         {
511             return true;
512         }
513         resourceTypePtr = resourceTypePtr->next;
514     }
515
516     OIC_LOG_V(INFO, TAG, "%s does not contain rt=%s.", resource->uri, resourceTypeFilter);
517     return false;
518 }
519
520 static bool resourceMatchesIFFilter(OCResource *resource, char *interfaceFilter)
521 {
522     if (!resource)
523     {
524         return false;
525     }
526
527     // Null or empty is analogous to no filter.
528     if (interfaceFilter == NULL || *interfaceFilter == 0)
529     {
530         return true;
531     }
532
533     OCResourceInterface *interfacePtr = resource->rsrcInterface;
534
535     while (interfacePtr)
536     {
537         if ((strcmp (interfacePtr->name, interfaceFilter) == 0) &&
538             (strcmp (OC_RSRVD_INTERFACE_LL, interfaceFilter) == 0 ||
539              strcmp (OC_RSRVD_INTERFACE_DEFAULT, interfaceFilter) == 0))
540         {
541             return true;
542         }
543         interfacePtr = interfacePtr->next;
544     }
545
546     OIC_LOG_V(INFO, TAG, "%s does not contain if=%s.", resource->uri, interfaceFilter);
547     return false;
548 }
549
550 /*
551  * If the filters are null, they will be assumed to NOT be present
552  * and the resource will not be matched against them.
553  * Function will return true if all non null AND non empty filters passed in find a match.
554  */
555 static bool includeThisResourceInResponse(OCResource *resource,
556                                           char *interfaceFilter,
557                                           char *resourceTypeFilter)
558 {
559     if (!resource)
560     {
561         OIC_LOG(ERROR, TAG, "Invalid resource");
562         return false;
563     }
564
565     if (resource->resourceProperties & OC_EXPLICIT_DISCOVERABLE)
566     {
567         /*
568          * At least one valid filter should be available to
569          * include the resource in discovery response
570          */
571         if (!(resourceTypeFilter && *resourceTypeFilter))
572         {
573             OIC_LOG_V(INFO, TAG, "%s no query string for EXPLICIT_DISCOVERABLE \
574                 resource", resource->uri);
575             return false;
576         }
577     }
578     else if ( !(resource->resourceProperties & OC_ACTIVE) ||
579          !(resource->resourceProperties & OC_DISCOVERABLE))
580     {
581         OIC_LOG_V(INFO, TAG, "%s not ACTIVE or DISCOVERABLE", resource->uri);
582         return false;
583     }
584
585     return resourceMatchesIFFilter(resource, interfaceFilter) &&
586            resourceMatchesRTFilter(resource, resourceTypeFilter);
587
588 }
589
590 OCStackResult SendNonPersistantDiscoveryResponse(OCServerRequest *request, OCResource *resource,
591                                 OCPayload *discoveryPayload, OCEntityHandlerResult ehResult)
592 {
593     OCEntityHandlerResponse response = {0};
594
595     response.ehResult = ehResult;
596     response.payload = discoveryPayload;
597     response.persistentBufferFlag = 0;
598     response.requestHandle = (OCRequestHandle) request;
599     response.resourceHandle = (OCResourceHandle) resource;
600
601     return OCDoResponse(&response);
602 }
603
604 #ifdef WITH_RD
605 static OCStackResult checkResourceExistsAtRD(const char *interfaceType, const char *resourceType,
606      OCResource **payload, OCDevAddr *devAddr)
607 {
608     OCResourceCollectionPayload *repPayload;
609     if (!payload)
610     {
611         return OC_STACK_ERROR;
612     }
613     if (OCRDCheckPublishedResource(interfaceType, resourceType, &repPayload, devAddr) == OC_STACK_OK)
614     {
615         if (!repPayload)
616         {
617             return OC_STACK_ERROR;
618         }
619         OCResource *ptr = ((OCResource *) OICCalloc(1, sizeof(OCResource)));
620         if (!ptr)
621         {
622            return OC_STACK_NO_MEMORY;
623         }
624
625         ptr->uri = OICStrdup(repPayload->setLinks->href);
626         if (!ptr->uri)
627         {
628            return OC_STACK_NO_MEMORY;
629         }
630         OCStringLL *rt = repPayload->setLinks->rt;
631         while (rt)
632         {
633             OCResourceType *temp = (OCResourceType *) OICCalloc(1, sizeof(OCResourceType));
634             if(!temp)
635             {
636                 OICFree(ptr->uri);
637                 return OC_STACK_NO_MEMORY;
638             }
639             temp->next = NULL;
640             temp->resourcetypename = OICStrdup(rt->value);
641             if (!ptr->rsrcType)
642             {
643                 ptr->rsrcType = temp;
644             }
645             else
646             {
647                 OCResourceType *type = ptr->rsrcType;
648                 while (type->next)
649                 {
650                     type = type->next;
651                 }
652                 type->next = temp;
653             }
654             rt = rt->next;
655         }
656
657         OCStringLL *itf = repPayload->setLinks->itf;
658         while (itf)
659         {
660             OCResourceInterface *temp = (OCResourceInterface *) OICCalloc(1, sizeof(OCResourceInterface));
661             if (!temp)
662             {
663                 OICFree(ptr->uri);
664
665                 return OC_STACK_NO_MEMORY;
666             }
667             temp->next = NULL;
668             temp->name = OICStrdup(itf->value);
669             if (!ptr->rsrcInterface)
670             {
671                 ptr->rsrcInterface = temp;
672             }
673             else
674             {
675                 OCResourceInterface *type = ptr->rsrcInterface;
676                 while (type->next)
677                 {
678                     type = type->next;
679                 }
680                 type->next = temp;
681             }
682             itf = itf->next;
683         }
684
685         ptr->resourceProperties = (OCResourceProperty) repPayload->tags->bitmap;
686
687         OCFreeCollectionResource(repPayload);
688         *payload = ptr;
689         return OC_STACK_OK;
690     }
691     else
692     {
693         OIC_LOG_V(ERROR, TAG, "The resource type or interface type doe not exist \
694                              on the resource directory");
695     }
696     return OC_STACK_ERROR;
697 }
698 #endif
699
700 static OCStackResult HandleVirtualResource (OCServerRequest *request, OCResource* resource)
701 {
702     if (!request || !resource)
703     {
704         return OC_STACK_INVALID_PARAM;
705     }
706
707     OCStackResult discoveryResult = OC_STACK_ERROR;
708
709     bool bMulticast    = false;     // Was the discovery request a multicast request?
710     OCPayload* payload = NULL;
711
712     OIC_LOG(INFO, TAG, "Entering HandleVirtualResource");
713
714     OCVirtualResources virtualUriInRequest = GetTypeOfVirtualURI (request->resourceUrl);
715
716     // Step 1: Generate the response to discovery request
717     if (virtualUriInRequest == OC_WELL_KNOWN_URI)
718     {
719         if (request->method == OC_REST_PUT || request->method == OC_REST_POST || request->method == OC_REST_DELETE)
720         {
721             OIC_LOG_V(ERROR, TAG, "Resource : %s not permitted for method: %d", request->resourceUrl, request->method);
722             return OC_STACK_UNAUTHORIZED_REQ;
723         }
724
725         char *interfaceQuery = NULL;
726         char *resourceTypeQuery = NULL;
727
728         discoveryResult = getQueryParamsForFiltering (virtualUriInRequest, request->query,
729                 &interfaceQuery, &resourceTypeQuery);
730         bool interfaceQueryAllocated = false;
731         if (!interfaceQuery && !resourceTypeQuery)
732         {
733             interfaceQueryAllocated = true;
734             interfaceQuery = OICStrdup(OC_RSRVD_INTERFACE_LL);
735         }
736
737         if (discoveryResult == OC_STACK_OK)
738         {
739             payload = (OCPayload *)OCDiscoveryPayloadCreate();
740
741             if (payload)
742             {
743                 OCDiscoveryPayload *discPayload = (OCDiscoveryPayload *)payload;
744                 discPayload->sid = (char *)OICCalloc(1, UUID_STRING_SIZE);
745                 VERIFY_NON_NULL(discPayload->sid, ERROR, OC_STACK_NO_MEMORY);
746
747                 const char* uid = OCGetServerInstanceIDString();
748                 if (uid)
749                 {
750                     memcpy(discPayload->sid, uid, UUID_STRING_SIZE);
751                 }
752
753                 if (!resourceTypeQuery && interfaceQuery && (0 == strcmp(interfaceQuery, OC_RSRVD_INTERFACE_LL)))
754                 {
755                     for (; resource && discoveryResult == OC_STACK_OK; resource = resource->next)
756                     {
757                         bool result = false;
758                         if (resource->resourceProperties & OC_EXPLICIT_DISCOVERABLE)
759                         {
760                             if (resourceTypeQuery && resourceMatchesRTFilter(resource, resourceTypeQuery))
761                             {
762                                 result = true;
763                             }
764                         }
765                         if (resource->resourceProperties & OC_DISCOVERABLE)
766                         {
767                             result = true;
768                         }
769
770                         if (result)
771                         {
772                             discoveryResult = BuildVirtualResourceResponse(resource,
773                             discPayload, &request->devAddr, false);
774                         }
775                     }
776                 }
777                 else
778                 {
779                     if ((interfaceQuery && (0 != strcmp(interfaceQuery, OC_RSRVD_INTERFACE_LL))) ||
780                         !interfaceQuery)
781                     {
782                         discPayload->uri = OICStrdup(OC_RSRVD_WELL_KNOWN_URI);
783                         VERIFY_NON_NULL(discPayload->uri, ERROR, OC_STACK_NO_MEMORY);
784                         if (savedDeviceInfo.deviceName)
785                         {
786                             discPayload->name = OICStrdup(savedDeviceInfo.deviceName);
787                             VERIFY_NON_NULL(discPayload->name, ERROR, OC_STACK_NO_MEMORY);
788                         }
789                         discPayload->type = OICStrdup(OC_RSRVD_RESOURCE_TYPE_RES);
790                         VERIFY_NON_NULL(discPayload->type, ERROR, OC_STACK_NO_MEMORY);
791                         OCResourcePayloadAddStringLL(&discPayload->iface, OC_RSRVD_INTERFACE_LL);
792                         OCResourcePayloadAddStringLL(&discPayload->iface, OC_RSRVD_INTERFACE_DEFAULT);
793                         VERIFY_NON_NULL(discPayload->iface, ERROR, OC_STACK_NO_MEMORY);
794                     }
795                     bool foundResourceAtRD = false;
796                     for (;resource && discoveryResult == OC_STACK_OK; resource = resource->next)
797                     {
798 #ifdef WITH_RD
799                         if (strcmp(resource->uri, OC_RSRVD_RD_URI) == 0)
800                         {
801                             OCResource *resource1 = NULL;
802                             OCDevAddr devAddr;
803                             discoveryResult = checkResourceExistsAtRD(interfaceQuery,
804                                 resourceTypeQuery, &resource1, &devAddr);
805                             if (discoveryResult != OC_STACK_OK)
806                             {
807                                  break;
808                             }
809                             discoveryResult = BuildVirtualResourceResponse(resource1,
810                                 discPayload, &devAddr, true);
811                             if (payload)
812                             {
813                                 discPayload->baseURI = OICStrdup(devAddr.addr);
814                             }
815                             OICFree(resource1->uri);
816                             for (OCResourceType *rsrcRt = resource1->rsrcType, *rsrcRtNext = NULL; rsrcRt; )
817                             {
818                                 rsrcRtNext = rsrcRt->next;
819                                 OICFree(rsrcRt->resourcetypename);
820                                 OICFree(rsrcRt);
821                                 rsrcRt = rsrcRtNext;
822                             }
823
824                             for (OCResourceInterface *rsrcPtr = resource1->rsrcInterface, *rsrcNext = NULL; rsrcPtr; )
825                             {
826                                 rsrcNext = rsrcPtr->next;
827                                 OICFree(rsrcPtr->name);
828                                 OICFree(rsrcPtr);
829                                 rsrcPtr = rsrcNext;
830                             }
831                             foundResourceAtRD = true;
832                         }
833 #endif
834                         if (!foundResourceAtRD && includeThisResourceInResponse(resource, interfaceQuery, resourceTypeQuery))
835                         {
836                             discoveryResult = BuildVirtualResourceResponse(resource,
837                                 discPayload, &request->devAddr, false);
838                         }
839                     }
840                     // Set discoveryResult appropriately if no 'valid' resources are available
841                     if (discPayload->resources == NULL && !foundResourceAtRD)
842                     {
843                         discoveryResult = OC_STACK_NO_RESOURCE;
844                     }
845                 }
846             }
847             else
848             {
849                 discoveryResult = OC_STACK_NO_MEMORY;
850             }
851         }
852         else
853         {
854             OIC_LOG_V(ERROR, TAG, "Error (%d) parsing query.", discoveryResult);
855         }
856         if (interfaceQueryAllocated)
857         {
858             OICFree(interfaceQuery);
859         }
860     }
861     else if (virtualUriInRequest == OC_DEVICE_URI)
862     {
863         if (request->method == OC_REST_PUT || request->method == OC_REST_POST || request->method == OC_REST_DELETE)
864         {
865             OIC_LOG_V(ERROR, TAG, "Resource : %s not permitted for method: %d", request->resourceUrl, request->method);
866             return OC_STACK_UNAUTHORIZED_REQ;
867         }
868
869         const char* deviceId = OCGetServerInstanceIDString();
870         if (!deviceId)
871         {
872             discoveryResult = OC_STACK_ERROR;
873         }
874         else
875         {
876             payload = (OCPayload*) OCDevicePayloadCreate(deviceId, savedDeviceInfo.deviceName,
877                 savedDeviceInfo.types, savedDeviceInfo.specVersion, savedDeviceInfo.dataModleVersion);
878             if (!payload)
879             {
880                 discoveryResult = OC_STACK_NO_MEMORY;
881             }
882             else
883             {
884                 discoveryResult = OC_STACK_OK;
885             }
886         }
887     }
888     else if (virtualUriInRequest == OC_PLATFORM_URI)
889     {
890         if (request->method == OC_REST_PUT || request->method == OC_REST_POST || request->method == OC_REST_DELETE)
891         {
892             OIC_LOG_V(ERROR, TAG, "Resource : %s not permitted for method: %d", request->resourceUrl, request->method);
893             return OC_STACK_UNAUTHORIZED_REQ;
894         }
895
896         payload = (OCPayload*)OCPlatformPayloadCreate(&savedPlatformInfo);
897         if (!payload)
898         {
899             discoveryResult = OC_STACK_NO_MEMORY;
900         }
901         else
902         {
903             discoveryResult = OC_STACK_OK;
904         }
905     }
906 #ifdef ROUTING_GATEWAY
907     else if (OC_GATEWAY_URI == virtualUriInRequest)
908     {
909         // Received request for a gateway
910         OIC_LOG(INFO, TAG, "Request is for Gateway Virtual Request");
911         discoveryResult = RMHandleGatewayRequest(request, resource);
912
913     }
914 #endif
915
916     /**
917      * Step 2: Send the discovery response
918      *
919      * Iotivity should respond to discovery requests in below manner:
920      * 1)If query filter matching fails and discovery request is multicast,
921      *   it should NOT send any response.
922      * 2)If query filter matching fails and discovery request is unicast,
923      *   it should send an error(RESOURCE_NOT_FOUND - 404) response.
924      * 3)If Server does not have any 'DISCOVERABLE' resources and discovery
925      *   request is multicast, it should NOT send any response.
926      * 4)If Server does not have any 'DISCOVERABLE' resources and discovery
927      *   request is unicast, it should send an error(RESOURCE_NOT_FOUND - 404) response.
928      */
929
930 #ifdef WITH_PRESENCE
931     if ((virtualUriInRequest == OC_PRESENCE) &&
932         (resource->resourceProperties & OC_ACTIVE))
933     {
934         // Presence uses observer notification api to respond via SendPresenceNotification.
935         SendPresenceNotification(resource->rsrcType, OC_PRESENCE_TRIGGER_CHANGE);
936     }
937     else
938     #endif
939 #ifdef ROUTING_GATEWAY
940     // Gateway uses the RMHandleGatewayRequest to respond to the request.
941     if (OC_GATEWAY_URI != virtualUriInRequest)
942 #endif
943     {
944         if(discoveryResult == OC_STACK_OK)
945         {
946             SendNonPersistantDiscoveryResponse(request, resource, payload, OC_EH_OK);
947         }
948         else if(bMulticast == false && (request->devAddr.adapter != OC_ADAPTER_RFCOMM_BTEDR) &&
949                (request->devAddr.adapter != OC_ADAPTER_GATT_BTLE))
950         {
951             OIC_LOG_V(ERROR, TAG, "Sending a (%d) error to (%d)  \
952                 discovery request", discoveryResult, virtualUriInRequest);
953             SendNonPersistantDiscoveryResponse(request, resource, NULL,
954                 (discoveryResult == OC_STACK_NO_RESOURCE) ? OC_EH_RESOURCE_NOT_FOUND : OC_EH_ERROR);
955         }
956         else
957         {
958             // Ignoring the discovery request as per RFC 7252, Section #8.2
959             OIC_LOG(INFO, TAG, "Silently ignoring the request since device does not have \
960                 any useful data to send");
961         }
962     }
963
964     OCPayloadDestroy(payload);
965
966     return OC_STACK_OK;
967 }
968
969 static OCStackResult
970 HandleDefaultDeviceEntityHandler (OCServerRequest *request)
971 {
972     if(!request)
973     {
974         return OC_STACK_INVALID_PARAM;
975     }
976
977     OCStackResult result = OC_STACK_OK;
978     OCEntityHandlerResult ehResult = OC_EH_ERROR;
979     OCEntityHandlerRequest ehRequest = {0};
980
981     OIC_LOG(INFO, TAG, "Entering HandleResourceWithDefaultDeviceEntityHandler");
982     result = FormOCEntityHandlerRequest(&ehRequest,
983                                         (OCRequestHandle) request,
984                                         request->method,
985                                         &request->devAddr,
986                                         (OCResourceHandle) NULL, request->query,
987                                         PAYLOAD_TYPE_REPRESENTATION,
988                                         request->payload,
989                                         request->payloadSize,
990                                         request->numRcvdVendorSpecificHeaderOptions,
991                                         request->rcvdVendorSpecificHeaderOptions,
992                                         (OCObserveAction)request->observationOption,
993                                         (OCObservationId)0);
994     VERIFY_SUCCESS(result, OC_STACK_OK);
995
996     // At this point we know for sure that defaultDeviceHandler exists
997     ehResult = defaultDeviceHandler(OC_REQUEST_FLAG, &ehRequest,
998                                   (char*) request->resourceUrl, defaultDeviceHandlerCallbackParameter);
999     if(ehResult == OC_EH_SLOW)
1000     {
1001         OIC_LOG(INFO, TAG, "This is a slow resource");
1002         request->slowFlag = 1;
1003     }
1004     else if(ehResult == OC_EH_ERROR)
1005     {
1006         FindAndDeleteServerRequest(request);
1007     }
1008     result = EntityHandlerCodeToOCStackCode(ehResult);
1009 exit:
1010     OCPayloadDestroy(ehRequest.payload);
1011     return result;
1012 }
1013
1014 static OCStackResult
1015 HandleResourceWithEntityHandler (OCServerRequest *request,
1016                                  OCResource *resource,
1017                                  uint8_t collectionResource)
1018 {
1019     if(!request || ! resource)
1020     {
1021         return OC_STACK_INVALID_PARAM;
1022     }
1023
1024     OCStackResult result = OC_STACK_ERROR;
1025     OCEntityHandlerResult ehResult = OC_EH_ERROR;
1026     OCEntityHandlerFlag ehFlag = OC_REQUEST_FLAG;
1027     ResourceObserver *resObs = NULL;
1028
1029     OCEntityHandlerRequest ehRequest = {0};
1030
1031     OIC_LOG(INFO, TAG, "Entering HandleResourceWithEntityHandler");
1032     OCPayloadType type = PAYLOAD_TYPE_REPRESENTATION;
1033     // check the security resource
1034     if (request && request->resourceUrl && SRMIsSecurityResourceURI(request->resourceUrl))
1035     {
1036         type = PAYLOAD_TYPE_SECURITY;
1037
1038     }
1039
1040     if (request && strcmp(request->resourceUrl, OC_RSRVD_RD_URI) == 0)
1041     {
1042         type = PAYLOAD_TYPE_RD;
1043     }
1044
1045     result = FormOCEntityHandlerRequest(&ehRequest,
1046                                         (OCRequestHandle)request,
1047                                         request->method,
1048                                         &request->devAddr,
1049                                         (OCResourceHandle)resource,
1050                                         request->query,
1051                                         type,
1052                                         request->payload,
1053                                         request->payloadSize,
1054                                         request->numRcvdVendorSpecificHeaderOptions,
1055                                         request->rcvdVendorSpecificHeaderOptions,
1056                                         (OCObserveAction)request->observationOption,
1057                                         0);
1058     VERIFY_SUCCESS(result, OC_STACK_OK);
1059
1060     if(ehRequest.obsInfo.action == OC_OBSERVE_NO_OPTION)
1061     {
1062         OIC_LOG(INFO, TAG, "No observation requested");
1063         ehFlag = OC_REQUEST_FLAG;
1064     }
1065     else if(ehRequest.obsInfo.action == OC_OBSERVE_REGISTER && !collectionResource)
1066     {
1067         OIC_LOG(INFO, TAG, "Observation registration requested");
1068
1069         ResourceObserver *obs = GetObserverUsingToken (request->requestToken,
1070                                     request->tokenLength);
1071
1072         if (obs)
1073         {
1074             OIC_LOG (INFO, TAG, "Observer with this token already present");
1075             OIC_LOG (INFO, TAG, "Possibly re-transmitted CON OBS request");
1076             OIC_LOG (INFO, TAG, "Not adding observer. Not responding to client");
1077             OIC_LOG (INFO, TAG, "The first request for this token is already ACKED.");
1078
1079             // server requests are usually free'd when the response is sent out
1080             // for the request in ocserverrequest.c : HandleSingleResponse()
1081             // Since we are making an early return and not responding, the server request
1082             // needs to be deleted.
1083             FindAndDeleteServerRequest (request);
1084             return OC_STACK_OK;
1085         }
1086
1087         result = GenerateObserverId(&ehRequest.obsInfo.obsId);
1088         VERIFY_SUCCESS(result, OC_STACK_OK);
1089
1090         result = AddObserver ((const char*)(request->resourceUrl),
1091                 (const char *)(request->query),
1092                 ehRequest.obsInfo.obsId, request->requestToken, request->tokenLength,
1093                 resource, request->qos, request->acceptFormat,
1094                 &request->devAddr);
1095
1096         if(result == OC_STACK_OK)
1097         {
1098             OIC_LOG(INFO, TAG, "Added observer successfully");
1099             request->observeResult = OC_STACK_OK;
1100             ehFlag = (OCEntityHandlerFlag)(OC_REQUEST_FLAG | OC_OBSERVE_FLAG);
1101         }
1102         else
1103         {
1104             // The error in observeResult for the request will be used when responding to this
1105             // request by omitting the observation option/sequence number.
1106             request->observeResult = OC_STACK_ERROR;
1107             OIC_LOG(ERROR, TAG, "Observer Addition failed");
1108             ehFlag = OC_REQUEST_FLAG;
1109             FindAndDeleteServerRequest(request);
1110             goto exit;
1111         }
1112
1113     }
1114     else if(ehRequest.obsInfo.action == OC_OBSERVE_DEREGISTER &&
1115             !collectionResource)
1116     {
1117         OIC_LOG(INFO, TAG, "Deregistering observation requested");
1118
1119         resObs = GetObserverUsingToken (request->requestToken, request->tokenLength);
1120
1121         if (NULL == resObs)
1122         {
1123             // Stack does not contain this observation request
1124             // Either token is incorrect or observation list is corrupted
1125             result = OC_STACK_ERROR;
1126             goto exit;
1127         }
1128         ehRequest.obsInfo.obsId = resObs->observeId;
1129         ehFlag = (OCEntityHandlerFlag)(ehFlag | OC_OBSERVE_FLAG);
1130
1131         result = DeleteObserverUsingToken (request->requestToken, request->tokenLength);
1132
1133         if(result == OC_STACK_OK)
1134         {
1135             OIC_LOG(INFO, TAG, "Removed observer successfully");
1136             request->observeResult = OC_STACK_OK;
1137         }
1138         else
1139         {
1140             request->observeResult = OC_STACK_ERROR;
1141             OIC_LOG(ERROR, TAG, "Observer Removal failed");
1142             FindAndDeleteServerRequest(request);
1143             goto exit;
1144         }
1145     }
1146     else
1147     {
1148         result = OC_STACK_ERROR;
1149         goto exit;
1150     }
1151
1152     ehResult = resource->entityHandler(ehFlag, &ehRequest, resource->entityHandlerCallbackParam);
1153     if(ehResult == OC_EH_SLOW)
1154     {
1155         OIC_LOG(INFO, TAG, "This is a slow resource");
1156         request->slowFlag = 1;
1157     }
1158     else if(ehResult == OC_EH_ERROR)
1159     {
1160         FindAndDeleteServerRequest(request);
1161     }
1162     result = EntityHandlerCodeToOCStackCode(ehResult);
1163 exit:
1164     OCPayloadDestroy(ehRequest.payload);
1165     return result;
1166 }
1167
1168 static OCStackResult
1169 HandleCollectionResourceDefaultEntityHandler (OCServerRequest *request,
1170                                               OCResource *resource)
1171 {
1172     if(!request || !resource)
1173     {
1174         return OC_STACK_INVALID_PARAM;
1175     }
1176
1177     OCStackResult result = OC_STACK_ERROR;
1178     OCEntityHandlerRequest ehRequest = {0};
1179
1180     result = FormOCEntityHandlerRequest(&ehRequest,
1181                                         (OCRequestHandle)request,
1182                                         request->method,
1183                                         &request->devAddr,
1184                                         (OCResourceHandle)resource,
1185                                         request->query,
1186                                         PAYLOAD_TYPE_REPRESENTATION,
1187                                         request->payload,
1188                                         request->payloadSize,
1189                                         request->numRcvdVendorSpecificHeaderOptions,
1190                                         request->rcvdVendorSpecificHeaderOptions,
1191                                         (OCObserveAction)request->observationOption,
1192                                         (OCObservationId)0);
1193     if(result == OC_STACK_OK)
1194     {
1195         result = DefaultCollectionEntityHandler (OC_REQUEST_FLAG, &ehRequest);
1196     }
1197
1198     OCPayloadDestroy(ehRequest.payload);
1199     return result;
1200 }
1201
1202 OCStackResult
1203 ProcessRequest(ResourceHandling resHandling, OCResource *resource, OCServerRequest *request)
1204 {
1205     OCStackResult ret = OC_STACK_OK;
1206
1207     switch (resHandling)
1208     {
1209         case OC_RESOURCE_VIRTUAL:
1210         {
1211             ret = HandleVirtualResource (request, resource);
1212             break;
1213         }
1214         case OC_RESOURCE_DEFAULT_DEVICE_ENTITYHANDLER:
1215         {
1216             ret = HandleDefaultDeviceEntityHandler(request);
1217             break;
1218         }
1219         case OC_RESOURCE_NOT_COLLECTION_DEFAULT_ENTITYHANDLER:
1220         {
1221             OIC_LOG(INFO, TAG, "OC_RESOURCE_NOT_COLLECTION_DEFAULT_ENTITYHANDLER");
1222             return OC_STACK_ERROR;
1223         }
1224         case OC_RESOURCE_NOT_COLLECTION_WITH_ENTITYHANDLER:
1225         {
1226             ret = HandleResourceWithEntityHandler (request, resource, 0);
1227             break;
1228         }
1229         case OC_RESOURCE_COLLECTION_WITH_ENTITYHANDLER:
1230         {
1231             ret = HandleResourceWithEntityHandler (request, resource, 1);
1232             break;
1233         }
1234         case OC_RESOURCE_COLLECTION_DEFAULT_ENTITYHANDLER:
1235         {
1236             ret = HandleCollectionResourceDefaultEntityHandler (request, resource);
1237             break;
1238         }
1239         case OC_RESOURCE_NOT_SPECIFIED:
1240         {
1241             ret = OC_STACK_NO_RESOURCE;
1242             break;
1243         }
1244         default:
1245         {
1246             OIC_LOG(INFO, TAG, "Invalid Resource Determination");
1247             return OC_STACK_ERROR;
1248         }
1249     }
1250     return ret;
1251 }
1252
1253 void DeletePlatformInfo()
1254 {
1255     OIC_LOG(INFO, TAG, "Deleting platform info.");
1256
1257     OICFree(savedPlatformInfo.platformID);
1258     savedPlatformInfo.platformID = NULL;
1259
1260     OICFree(savedPlatformInfo.manufacturerName);
1261     savedPlatformInfo.manufacturerName = NULL;
1262
1263     OICFree(savedPlatformInfo.manufacturerUrl);
1264     savedPlatformInfo.manufacturerUrl = NULL;
1265
1266     OICFree(savedPlatformInfo.modelNumber);
1267     savedPlatformInfo.modelNumber = NULL;
1268
1269     OICFree(savedPlatformInfo.dateOfManufacture);
1270     savedPlatformInfo.dateOfManufacture = NULL;
1271
1272     OICFree(savedPlatformInfo.platformVersion);
1273     savedPlatformInfo.platformVersion = NULL;
1274
1275     OICFree(savedPlatformInfo.operatingSystemVersion);
1276     savedPlatformInfo.operatingSystemVersion = NULL;
1277
1278     OICFree(savedPlatformInfo.hardwareVersion);
1279     savedPlatformInfo.hardwareVersion = NULL;
1280
1281     OICFree(savedPlatformInfo.firmwareVersion);
1282     savedPlatformInfo.firmwareVersion = NULL;
1283
1284     OICFree(savedPlatformInfo.supportUrl);
1285     savedPlatformInfo.supportUrl = NULL;
1286
1287     OICFree(savedPlatformInfo.systemTime);
1288     savedPlatformInfo.systemTime = NULL;
1289 }
1290
1291 static OCStackResult DeepCopyPlatFormInfo(OCPlatformInfo info)
1292 {
1293     savedPlatformInfo.platformID = OICStrdup(info.platformID);
1294     savedPlatformInfo.manufacturerName = OICStrdup(info.manufacturerName);
1295     savedPlatformInfo.manufacturerUrl = OICStrdup(info.manufacturerUrl);
1296     savedPlatformInfo.modelNumber = OICStrdup(info.modelNumber);
1297     savedPlatformInfo.dateOfManufacture = OICStrdup(info.dateOfManufacture);
1298     savedPlatformInfo.platformVersion = OICStrdup(info.platformVersion);
1299     savedPlatformInfo.operatingSystemVersion = OICStrdup(info.operatingSystemVersion);
1300     savedPlatformInfo.hardwareVersion = OICStrdup(info.hardwareVersion);
1301     savedPlatformInfo.firmwareVersion = OICStrdup(info.firmwareVersion);
1302     savedPlatformInfo.supportUrl = OICStrdup(info.supportUrl);
1303     savedPlatformInfo.systemTime = OICStrdup(info.systemTime);
1304
1305     if ((!savedPlatformInfo.platformID && info.platformID)||
1306         (!savedPlatformInfo.manufacturerName && info.manufacturerName)||
1307         (!savedPlatformInfo.manufacturerUrl && info.manufacturerUrl)||
1308         (!savedPlatformInfo.modelNumber && info.modelNumber)||
1309         (!savedPlatformInfo.dateOfManufacture && info.dateOfManufacture)||
1310         (!savedPlatformInfo.platformVersion && info.platformVersion)||
1311         (!savedPlatformInfo.operatingSystemVersion && info.operatingSystemVersion)||
1312         (!savedPlatformInfo.hardwareVersion && info.hardwareVersion)||
1313         (!savedPlatformInfo.firmwareVersion && info.firmwareVersion)||
1314         (!savedPlatformInfo.supportUrl && info.supportUrl)||
1315         (!savedPlatformInfo.systemTime && info.systemTime))
1316     {
1317         DeletePlatformInfo();
1318         return OC_STACK_INVALID_PARAM;
1319     }
1320
1321     return OC_STACK_OK;
1322
1323 }
1324
1325 OCStackResult SavePlatformInfo(OCPlatformInfo info)
1326 {
1327     DeletePlatformInfo();
1328
1329     OCStackResult res = DeepCopyPlatFormInfo(info);
1330
1331     if (res != OC_STACK_OK)
1332     {
1333         OIC_LOG_V(ERROR, TAG, "Failed to save platform info. errno(%d)", res);
1334     }
1335     else
1336     {
1337         OIC_LOG(INFO, TAG, "Platform info saved.");
1338     }
1339
1340     return res;
1341 }
1342
1343 void DeleteDeviceInfo()
1344 {
1345     OIC_LOG(INFO, TAG, "Deleting device info.");
1346
1347     OICFree(savedDeviceInfo.deviceName);
1348     OCFreeOCStringLL(savedDeviceInfo.types);
1349     OICFree(savedDeviceInfo.specVersion);
1350     OICFree(savedDeviceInfo.dataModleVersion);
1351     savedDeviceInfo.deviceName = NULL;
1352     savedDeviceInfo.specVersion = NULL;
1353     savedDeviceInfo.dataModleVersion = NULL;
1354 }
1355
1356 static OCStackResult DeepCopyDeviceInfo(OCDeviceInfo info)
1357 {
1358     savedDeviceInfo.deviceName = OICStrdup(info.deviceName);
1359
1360     if(!savedDeviceInfo.deviceName && info.deviceName)
1361     {
1362         DeleteDeviceInfo();
1363         return OC_STACK_NO_MEMORY;
1364     }
1365
1366     if (info.types)
1367     {
1368         savedDeviceInfo.types = CloneOCStringLL(info.types);
1369         if(!savedDeviceInfo.types && info.types)
1370         {
1371             DeleteDeviceInfo();
1372             return OC_STACK_NO_MEMORY;
1373         }
1374     }
1375
1376     if (info.specVersion)
1377     {
1378         savedDeviceInfo.specVersion = OICStrdup(info.specVersion);
1379         if(!savedDeviceInfo.specVersion && info.specVersion)
1380         {
1381             DeleteDeviceInfo();
1382             return OC_STACK_NO_MEMORY;
1383         }
1384     }
1385     else
1386     {
1387         savedDeviceInfo.specVersion = OICStrdup(OC_SPEC_VERSION);
1388         if(!savedDeviceInfo.specVersion && OC_SPEC_VERSION)
1389         {
1390             DeleteDeviceInfo();
1391             return OC_STACK_NO_MEMORY;
1392         }
1393     }
1394
1395     if (info.dataModleVersion)
1396     {
1397         savedDeviceInfo.dataModleVersion = OICStrdup(info.dataModleVersion);
1398         if(!savedDeviceInfo.dataModleVersion && info.dataModleVersion)
1399         {
1400             DeleteDeviceInfo();
1401             return OC_STACK_NO_MEMORY;
1402         }
1403     }
1404     else
1405     {
1406         savedDeviceInfo.dataModleVersion = OICStrdup(OC_DATA_MODEL_VERSION);
1407         if(!savedDeviceInfo.dataModleVersion && OC_DATA_MODEL_VERSION)
1408         {
1409             DeleteDeviceInfo();
1410             return OC_STACK_NO_MEMORY;
1411         }
1412     }
1413
1414     return OC_STACK_OK;
1415 }
1416
1417 OCStackResult SaveDeviceInfo(OCDeviceInfo info)
1418 {
1419     OCStackResult res = OC_STACK_OK;
1420
1421     DeleteDeviceInfo();
1422
1423     res = DeepCopyDeviceInfo(info);
1424
1425     VERIFY_SUCCESS(res, OC_STACK_OK);
1426
1427     if (OCGetServerInstanceIDString() == NULL)
1428     {
1429         OIC_LOG(INFO, TAG, "Device ID generation failed");
1430         res =  OC_STACK_ERROR;
1431         goto exit;
1432     }
1433
1434     OIC_LOG(INFO, TAG, "Device initialized successfully.");
1435     return OC_STACK_OK;
1436
1437 exit:
1438     DeleteDeviceInfo();
1439     return res;
1440 }