Imported Upstream version 1.0.0
[platform/upstream/iotivity.git] / resource / csdk / stack / src / ocobserve.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 #include <string.h>
22 #include "ocstack.h"
23 #include "ocstackconfig.h"
24 #include "ocstackinternal.h"
25 #include "ocobserve.h"
26 #include "ocresourcehandler.h"
27 #include "ocrandom.h"
28 #include "oic_malloc.h"
29 #include "oic_string.h"
30 #include "ocpayload.h"
31 #include "ocserverrequest.h"
32 #include "logger.h"
33
34 #include "utlist.h"
35 #include "pdu.h"
36
37
38 // Module Name
39 #define MOD_NAME "ocobserve"
40
41 #define TAG  "OCStackObserve"
42
43 #define VERIFY_NON_NULL(arg) { if (!arg) {OC_LOG(FATAL, TAG, #arg " is NULL"); goto exit;} }
44
45 static struct ResourceObserver * serverObsList = NULL;
46 /**
47  * Determine observe QOS based on the QOS of the request.
48  * The qos passed as a parameter overrides what the client requested.
49  * If we want the client preference taking high priority make:
50  *     qos = resourceObserver->qos;
51  *
52  * @param method RESTful method.
53  * @param resourceObserver Observer.
54  * @param appQoS Quality of service.
55  * @return The quality of service of the observer.
56  */
57 static OCQualityOfService DetermineObserverQoS(OCMethod method,
58         ResourceObserver * resourceObserver, OCQualityOfService appQoS)
59 {
60     if(!resourceObserver)
61     {
62         OC_LOG(ERROR, TAG, "DetermineObserverQoS called with invalid resourceObserver");
63         return OC_NA_QOS;
64     }
65
66     OCQualityOfService decidedQoS = appQoS;
67     if(appQoS == OC_NA_QOS)
68     {
69         decidedQoS = resourceObserver->qos;
70     }
71
72     if(appQoS != OC_HIGH_QOS)
73     {
74         OC_LOG_V(INFO, TAG, "Current NON count for this observer is %d",
75                 resourceObserver->lowQosCount);
76 #ifdef WITH_PRESENCE
77         if((resourceObserver->forceHighQos \
78                 || resourceObserver->lowQosCount >= MAX_OBSERVER_NON_COUNT) \
79                 && method != OC_REST_PRESENCE)
80 #else
81         if(resourceObserver->forceHighQos \
82                 || resourceObserver->lowQosCount >= MAX_OBSERVER_NON_COUNT)
83 #endif
84         {
85             resourceObserver->lowQosCount = 0;
86             // at some point we have to to send CON to check on the
87             // availability of observer
88             OC_LOG(INFO, TAG, "This time we are sending the  notification as High qos");
89             decidedQoS = OC_HIGH_QOS;
90         }
91         else
92         {
93             (resourceObserver->lowQosCount)++;
94         }
95     }
96     return decidedQoS;
97 }
98
99 #ifdef WITH_PRESENCE
100 OCStackResult SendAllObserverNotification (OCMethod method, OCResource *resPtr, uint32_t maxAge,
101         OCPresenceTrigger trigger, OCResourceType *resourceType, OCQualityOfService qos)
102 #else
103 OCStackResult SendAllObserverNotification (OCMethod method, OCResource *resPtr, uint32_t maxAge,
104         OCQualityOfService qos)
105 #endif
106 {
107     OC_LOG(INFO, TAG, "Entering SendObserverNotification");
108     if(!resPtr)
109     {
110         return OC_STACK_INVALID_PARAM;
111     }
112
113     OCStackResult result = OC_STACK_ERROR;
114     ResourceObserver * resourceObserver = serverObsList;
115     uint8_t numObs = 0;
116     OCServerRequest * request = NULL;
117     OCEntityHandlerRequest ehRequest = {0};
118     OCEntityHandlerResult ehResult = OC_EH_ERROR;
119     bool observeErrorFlag = false;
120
121     // Find clients that are observing this resource
122     while (resourceObserver)
123     {
124         if (resourceObserver->resource == resPtr)
125         {
126             numObs++;
127 #ifdef WITH_PRESENCE
128             if(method != OC_REST_PRESENCE)
129             {
130 #endif
131                 qos = DetermineObserverQoS(method, resourceObserver, qos);
132
133                 result = AddServerRequest(&request, 0, 0, 1, OC_REST_GET,
134                         0, resPtr->sequenceNum, qos, resourceObserver->query,
135                         NULL, NULL,
136                         resourceObserver->token, resourceObserver->tokenLength,
137                         resourceObserver->resUri, 0, resourceObserver->acceptFormat,
138                         &resourceObserver->devAddr);
139
140                 if(request)
141                 {
142                     request->observeResult = OC_STACK_OK;
143                     if(result == OC_STACK_OK)
144                     {
145                         result = FormOCEntityHandlerRequest(
146                                     &ehRequest,
147                                     (OCRequestHandle) request,
148                                     request->method,
149                                     &request->devAddr,
150                                     (OCResourceHandle) resPtr,
151                                     request->query,
152                                     PAYLOAD_TYPE_REPRESENTATION,
153                                     request->payload,
154                                     request->payloadSize,
155                                     request->numRcvdVendorSpecificHeaderOptions,
156                                     request->rcvdVendorSpecificHeaderOptions,
157                                     OC_OBSERVE_NO_OPTION,
158                                     0);
159                         if(result == OC_STACK_OK)
160                         {
161                             ehResult = resPtr->entityHandler(OC_REQUEST_FLAG, &ehRequest,
162                                                 resPtr->entityHandlerCallbackParam);
163                             if(ehResult == OC_EH_ERROR)
164                             {
165                                 FindAndDeleteServerRequest(request);
166                             }
167                         }
168                         OCPayloadDestroy(ehRequest.payload);
169                     }
170                 }
171 #ifdef WITH_PRESENCE
172             }
173             else
174             {
175                 OCEntityHandlerResponse ehResponse = {0};
176
177                 //This is effectively the implementation for the presence entity handler.
178                 OC_LOG(DEBUG, TAG, "This notification is for Presence");
179                 result = AddServerRequest(&request, 0, 0, 1, OC_REST_GET,
180                         0, resPtr->sequenceNum, qos, resourceObserver->query,
181                         NULL, NULL,
182                         resourceObserver->token, resourceObserver->tokenLength,
183                         resourceObserver->resUri, 0, resourceObserver->acceptFormat,
184                         &resourceObserver->devAddr);
185
186                 if(result == OC_STACK_OK)
187                 {
188                     OCPresencePayload* presenceResBuf = OCPresencePayloadCreate(
189                             resPtr->sequenceNum, maxAge, trigger,
190                             resourceType ? resourceType->resourcetypename : NULL);
191
192                     if(!presenceResBuf)
193                     {
194                         return OC_STACK_NO_MEMORY;
195                     }
196
197                     if(result == OC_STACK_OK)
198                     {
199                         ehResponse.ehResult = OC_EH_OK;
200                         ehResponse.payload = (OCPayload*)presenceResBuf;
201                         ehResponse.persistentBufferFlag = 0;
202                         ehResponse.requestHandle = (OCRequestHandle) request;
203                         ehResponse.resourceHandle = (OCResourceHandle) resPtr;
204                         OICStrcpy(ehResponse.resourceUri, sizeof(ehResponse.resourceUri),
205                                 resourceObserver->resUri);
206                         result = OCDoResponse(&ehResponse);
207                     }
208
209                     OCPresencePayloadDestroy(presenceResBuf);
210                 }
211             }
212 #endif
213
214             // Since we are in a loop, set an error flag to indicate at least one error occurred.
215             if (result != OC_STACK_OK)
216             {
217                 observeErrorFlag = true;
218             }
219         }
220         resourceObserver = resourceObserver->next;
221     }
222
223     if (numObs == 0)
224     {
225         OC_LOG(INFO, TAG, "Resource has no observers");
226         result = OC_STACK_NO_OBSERVERS;
227     }
228     else if (observeErrorFlag)
229     {
230         OC_LOG(ERROR, TAG, "Observer notification error");
231         result = OC_STACK_ERROR;
232     }
233     return result;
234 }
235
236 OCStackResult SendListObserverNotification (OCResource * resource,
237         OCObservationId  *obsIdList, uint8_t numberOfIds,
238         const OCRepPayload *payload,
239         uint32_t maxAge,
240         OCQualityOfService qos)
241 {
242     (void)maxAge;
243     if(!resource || !obsIdList || !payload)
244     {
245         return OC_STACK_INVALID_PARAM;
246     }
247
248     uint8_t numIds = numberOfIds;
249     ResourceObserver *observer = NULL;
250     uint8_t numSentNotification = 0;
251     OCServerRequest * request = NULL;
252     OCStackResult result = OC_STACK_ERROR;
253     bool observeErrorFlag = false;
254
255     OC_LOG(INFO, TAG, "Entering SendListObserverNotification");
256     while(numIds)
257     {
258         observer = GetObserverUsingId (*obsIdList);
259         if(observer)
260         {
261             // Found observer - verify if it matches the resource handle
262             if (observer->resource == resource)
263             {
264                 qos = DetermineObserverQoS(OC_REST_GET, observer, qos);
265
266
267                 result = AddServerRequest(&request, 0, 0, 1, OC_REST_GET,
268                         0, resource->sequenceNum, qos, observer->query,
269                         NULL, NULL, observer->token, observer->tokenLength,
270                         observer->resUri, 0, observer->acceptFormat,
271                         &observer->devAddr);
272
273                 if(request)
274                 {
275                     request->observeResult = OC_STACK_OK;
276                     if(result == OC_STACK_OK)
277                     {
278                         OCEntityHandlerResponse ehResponse = {0};
279                         ehResponse.ehResult = OC_EH_OK;
280                         ehResponse.payload = (OCPayload*)OCRepPayloadCreate();
281                         if(!ehResponse.payload)
282                         {
283                             FindAndDeleteServerRequest(request);
284                             continue;
285                         }
286                         memcpy(ehResponse.payload, payload, sizeof(*payload));
287                         ehResponse.persistentBufferFlag = 0;
288                         ehResponse.requestHandle = (OCRequestHandle) request;
289                         ehResponse.resourceHandle = (OCResourceHandle) resource;
290                         result = OCDoResponse(&ehResponse);
291                         if(result == OC_STACK_OK)
292                         {
293                             OC_LOG_V(INFO, TAG, "Observer id %d notified.", *obsIdList);
294
295                             // Increment only if OCDoResponse is successful
296                             numSentNotification++;
297
298                             OICFree(ehResponse.payload);
299                             FindAndDeleteServerRequest(request);
300                         }
301                         else
302                         {
303                             OC_LOG_V(INFO, TAG, "Error notifying observer id %d.", *obsIdList);
304                         }
305                     }
306                     else
307                     {
308                         FindAndDeleteServerRequest(request);
309                     }
310                 }
311                 // Since we are in a loop, set an error flag to indicate
312                 // at least one error occurred.
313                 if (result != OC_STACK_OK)
314                 {
315                     observeErrorFlag = true;
316                 }
317             }
318         }
319         obsIdList++;
320         numIds--;
321     }
322
323     if(numSentNotification == numberOfIds && !observeErrorFlag)
324     {
325         return OC_STACK_OK;
326     }
327     else if(numSentNotification == 0)
328     {
329         return OC_STACK_NO_OBSERVERS;
330     }
331     else
332     {
333         OC_LOG(ERROR, TAG, "Observer notification error");
334         return OC_STACK_ERROR;
335     }
336 }
337
338 OCStackResult GenerateObserverId (OCObservationId *observationId)
339 {
340     ResourceObserver *resObs = NULL;
341
342     OC_LOG(INFO, TAG, "Entering GenerateObserverId");
343     VERIFY_NON_NULL (observationId);
344
345     do
346     {
347         *observationId = OCGetRandomByte();
348         // Check if observation Id already exists
349         resObs = GetObserverUsingId (*observationId);
350     } while (NULL != resObs);
351
352     OC_LOG_V(INFO, TAG, "GeneratedObservation ID is %u", *observationId);
353
354     return OC_STACK_OK;
355 exit:
356     return OC_STACK_ERROR;
357 }
358
359 OCStackResult AddObserver (const char         *resUri,
360                            const char         *query,
361                            OCObservationId    obsId,
362                            CAToken_t          token,
363                            uint8_t            tokenLength,
364                            OCResource         *resHandle,
365                            OCQualityOfService qos,
366                            OCPayloadFormat    acceptFormat,
367                            const OCDevAddr    *devAddr)
368 {
369     // Check if resource exists and is observable.
370     if (!resHandle)
371     {
372         return OC_STACK_INVALID_PARAM;
373     }
374     if (!(resHandle->resourceProperties & OC_OBSERVABLE))
375     {
376         return OC_STACK_RESOURCE_ERROR;
377     }
378     ResourceObserver *obsNode = NULL;
379
380     if(!resUri || !token || !*token)
381     {
382         return OC_STACK_INVALID_PARAM;
383     }
384
385     obsNode = (ResourceObserver *) OICCalloc(1, sizeof(ResourceObserver));
386     if (obsNode)
387     {
388         obsNode->observeId = obsId;
389
390         obsNode->resUri = OICStrdup(resUri);
391         VERIFY_NON_NULL (obsNode->resUri);
392
393         obsNode->qos = qos;
394         obsNode->acceptFormat = acceptFormat;
395         if(query)
396         {
397             obsNode->query = OICStrdup(query);
398             VERIFY_NON_NULL (obsNode->query);
399         }
400         // If tokenLength is zero, the return value depends on the
401         // particular library implementation (it may or may not be a null pointer).
402         if(tokenLength)
403         {
404             obsNode->token = (CAToken_t)OICMalloc(tokenLength);
405             VERIFY_NON_NULL (obsNode->token);
406             memcpy(obsNode->token, token, tokenLength);
407         }
408         obsNode->tokenLength = tokenLength;
409
410         obsNode->devAddr = *devAddr;
411         obsNode->resource = resHandle;
412
413         LL_APPEND (serverObsList, obsNode);
414
415         return OC_STACK_OK;
416     }
417
418 exit:
419     if (obsNode)
420     {
421         OICFree(obsNode->resUri);
422         OICFree(obsNode->query);
423         OICFree(obsNode);
424     }
425     return OC_STACK_NO_MEMORY;
426 }
427
428 ResourceObserver* GetObserverUsingId (const OCObservationId observeId)
429 {
430     ResourceObserver *out = NULL;
431
432     if (observeId)
433     {
434         LL_FOREACH (serverObsList, out)
435         {
436             if (out->observeId == observeId)
437             {
438                 return out;
439             }
440         }
441     }
442     OC_LOG(INFO, TAG, "Observer node not found!!");
443     return NULL;
444 }
445
446 ResourceObserver* GetObserverUsingToken (const CAToken_t token, uint8_t tokenLength)
447 {
448     ResourceObserver *out = NULL;
449
450     if(token && *token)
451     {
452         OC_LOG(INFO, TAG, "Looking for token");
453         OC_LOG_BUFFER(INFO, TAG, (const uint8_t *)token, tokenLength);
454         OC_LOG(INFO, TAG, "\tFound token:");
455
456         LL_FOREACH (serverObsList, out)
457         {
458             OC_LOG_BUFFER(INFO, TAG, (const uint8_t *)out->token, tokenLength);
459             if((memcmp(out->token, token, tokenLength) == 0))
460             {
461                 return out;
462             }
463         }
464     }
465     else
466     {
467         OC_LOG(ERROR, TAG, "Passed in NULL token");
468     }
469
470     OC_LOG(INFO, TAG, "Observer node not found!!");
471     return NULL;
472 }
473
474 OCStackResult DeleteObserverUsingToken (CAToken_t token, uint8_t tokenLength)
475 {
476     if(!token || !*token)
477     {
478         return OC_STACK_INVALID_PARAM;
479     }
480
481     ResourceObserver *obsNode = NULL;
482
483     obsNode = GetObserverUsingToken (token, tokenLength);
484     if (obsNode)
485     {
486         OC_LOG_V(INFO, TAG, "deleting observer id  %u with token", obsNode->observeId);
487         OC_LOG_BUFFER(INFO, TAG, (const uint8_t *)obsNode->token, tokenLength);
488         LL_DELETE (serverObsList, obsNode);
489         OICFree(obsNode->resUri);
490         OICFree(obsNode->query);
491         OICFree(obsNode->token);
492         OICFree(obsNode);
493     }
494     // it is ok if we did not find the observer...
495     return OC_STACK_OK;
496 }
497
498 void DeleteObserverList()
499 {
500     ResourceObserver *out = NULL;
501     ResourceObserver *tmp = NULL;
502     LL_FOREACH_SAFE (serverObsList, out, tmp)
503     {
504         if(out)
505         {
506             DeleteObserverUsingToken ((out->token), out->tokenLength);
507         }
508     }
509     serverObsList = NULL;
510 }
511
512 /*
513  * CA layer expects observe registration/de-reg/notiifcations to be passed as a header
514  * option, which breaks the protocol abstraction requirement between RI & CA, and
515  * has to be fixed in the future. The function below adds the header option for observe.
516  * It should be noted that the observe header option is assumed to be the first option
517  * in the list of user defined header options and hence it is inserted at the front
518  * of the header options list and number of options adjusted accordingly.
519  */
520 OCStackResult
521 CreateObserveHeaderOption (CAHeaderOption_t **caHdrOpt,
522                            OCHeaderOption *ocHdrOpt,
523                            uint8_t numOptions,
524                            uint8_t observeFlag)
525 {
526     if(!caHdrOpt)
527     {
528         return OC_STACK_INVALID_PARAM;
529     }
530
531     if (numOptions > 0 && !ocHdrOpt)
532     {
533         OC_LOG (INFO, TAG, "options are NULL though number is non zero");
534         return OC_STACK_INVALID_PARAM;
535     }
536
537     CAHeaderOption_t *tmpHdrOpt = NULL;
538
539     tmpHdrOpt = (CAHeaderOption_t *) OICCalloc ((numOptions+1), sizeof(CAHeaderOption_t));
540     if (NULL == tmpHdrOpt)
541     {
542         return OC_STACK_NO_MEMORY;
543     }
544     tmpHdrOpt[0].protocolID = CA_COAP_ID;
545     tmpHdrOpt[0].optionID = COAP_OPTION_OBSERVE;
546     tmpHdrOpt[0].optionLength = sizeof(uint8_t);
547     tmpHdrOpt[0].optionData[0] = observeFlag;
548     for (uint8_t i = 0; i < numOptions; i++)
549     {
550         memcpy (&(tmpHdrOpt[i+1]), &(ocHdrOpt[i]), sizeof(CAHeaderOption_t));
551     }
552
553     *caHdrOpt = tmpHdrOpt;
554     return OC_STACK_OK;
555 }
556
557 /*
558  * CA layer passes observe information to the RI layer as a header option, which
559  * breaks the protocol abstraction requirement between RI & CA, and has to be fixed
560  * in the future. The function below removes the observe header option and processes it.
561  * It should be noted that the observe header option is always assumed to be the first
562  * option in the list of user defined header options and hence it is deleted from the
563  * front of the header options list and the number of options is adjusted accordingly.
564  */
565 OCStackResult
566 GetObserveHeaderOption (uint32_t * observationOption,
567                         CAHeaderOption_t *options,
568                         uint8_t * numOptions)
569 {
570     if(!observationOption)
571     {
572         return OC_STACK_INVALID_PARAM;
573     }
574
575     if(!options || !numOptions)
576     {
577         OC_LOG (INFO, TAG, "No options present");
578         return OC_STACK_OK;
579     }
580
581     for(uint8_t i = 0; i < *numOptions; i++)
582     {
583         if(options[i].protocolID == CA_COAP_ID &&
584                 options[i].optionID == COAP_OPTION_OBSERVE)
585         {
586             *observationOption = options[i].optionData[0];
587             for(uint8_t c = i; c < *numOptions-1; c++)
588             {
589                 options[i] = options[i+1];
590             }
591             (*numOptions)--;
592             return OC_STACK_OK;
593         }
594     }
595     return OC_STACK_OK;
596 }
597