Imported Upstream version 1.1.1
[platform/upstream/iotivity.git] / resource / csdk / security / src / dpairingresource.c
1 /* *****************************************************************
2  *
3  * Copyright 2016 Samsung Electronics 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 <stdlib.h>
22 #include <string.h>
23 #include "ocstack.h"
24 #include "logger.h"
25 #include "oic_malloc.h"
26 #include "oic_string.h"
27 #include "cJSON.h"
28 #include "base64.h"
29 #include "resourcemanager.h"
30 #include "dpairingresource.h"
31 #include "psinterface.h"
32 #include "utlist.h"
33 #include "srmresourcestrings.h"
34 #include "cainterface.h"
35 #include "doxmresource.h"
36 #include "pconfresource.h"
37 #include "credresource.h"
38 #include "aclresource.h"
39 #include "srmutility.h"
40 #include "ocserverrequest.h"
41 #include "ocpayloadcbor.h"
42 #include "ocpayload.h"
43 #include "payload_logging.h"
44 #include <stdlib.h>
45 #ifdef WITH_ARDUINO
46 #include <string.h>
47 #else
48 #include <strings.h>
49 #endif
50
51 #ifdef __WITH_DTLS__
52 #include "global.h"
53 #endif
54
55 #define TAG  "SRM-DPAIRING"
56
57 /** Default cbor payload size. This value is increased in case of CborErrorOutOfMemory.
58  * The value of payload size is increased until reaching belox max cbor size. */
59 static const uint16_t CBOR_SIZE = 1024;
60
61 /** Max cbor size payload. */
62 static const uint16_t CBOR_MAX_SIZE = 4400;
63
64 /** DOXM Map size - Number of mandatory items. */
65 static const uint8_t DPAIR_MAP_SIZE = 3;
66
67 static OicSecDpairing_t     *gDpair = NULL;
68 static OCResourceHandle   gDpairHandle = NULL;
69 static OicSecDpairing_t      gDefaultDpair =
70 {
71     PRM_NOT_ALLOWED,       /* OicSecPrm_t spm */
72     {.id = {0}},                   /* OicUuid_t pdeviceID */
73     {.id = {0}},                   /* OicUuid_t rowner */
74 };
75
76 void DeleteDpairingBinData(OicSecDpairing_t* dpair)
77 {
78     if (dpair)
79     {
80         //Clean dpairing itself
81         OICFree(dpair);
82     }
83 }
84
85 /**
86  * Get the default value.
87  * @retval  the gDefaultDpair pointer;
88  */
89 static OicSecDpairing_t* GetDpairingDefault()
90 {
91     OIC_LOG (DEBUG, TAG, "GetDpairingDefault");
92
93     return &gDefaultDpair;
94 }
95
96 /**
97  * This method is used by SRM to retrieve Dpairing resource data..
98  */
99 void SetDpairingResourceOwner(OicUuid_t *rowner)
100 {
101     OIC_LOG (DEBUG, TAG, "SetDpairingResourceOwner");
102     if (gDpair)
103     {
104         memcpy(&gDpair->rownerID, rowner, sizeof(OicUuid_t));
105     }
106 }
107
108 #ifdef __WITH_DTLS__
109 /**
110  * Function to save PairingPSK.
111  *
112  * @param[in] endpoint   current endpoint.
113  * @param[in] peerDevID   peer device indentitiy.
114  * @param[in] isPairingServer   indicate if it generates PairingPSK for server or client.
115  *
116  * @return  OC_STACK_OK on success
117  */
118 OCStackResult SavePairingPSK(OCDevAddr *endpoint,
119             OicUuid_t *peerDevID, OicUuid_t *owner, bool isPairingServer)
120 {
121     OIC_LOG(DEBUG, TAG, "IN SavePairingPSK");
122
123     if(NULL == endpoint || NULL == peerDevID || NULL == owner)
124     {
125         OIC_LOG_V(ERROR, TAG, "Invalid Input parameters in [%s]\n", __FUNCTION__);
126         return OC_STACK_INVALID_PARAM;
127     }
128
129     OCStackResult res = OC_STACK_ERROR;
130
131     OicUuid_t ptDeviceID = {.id={0}};
132     if (OC_STACK_OK != GetDoxmDeviceID(&ptDeviceID))
133     {
134         OIC_LOG(ERROR, TAG, "Error while retrieving provisioning tool's device ID");
135         return res;
136     }
137
138     uint8_t pairingPSK[OWNER_PSK_LENGTH_128] = {0};
139     OicSecKey_t pairingKey = {pairingPSK, OWNER_PSK_LENGTH_128, OIC_ENCODING_RAW};
140
141     //Generating PairingPSK using OwnerPSK scheme
142     CAResult_t pskRet = CAGenerateOwnerPSK((const CAEndpoint_t *)endpoint,
143             (uint8_t *)OIC_RSRC_TYPE_SEC_DPAIRING,
144             strlen(OIC_RSRC_TYPE_SEC_DPAIRING),
145             (isPairingServer ? ptDeviceID.id : peerDevID->id), sizeof(OicUuid_t), // server
146             (isPairingServer ? peerDevID->id : ptDeviceID.id), sizeof(OicUuid_t), // client
147             pairingPSK, OWNER_PSK_LENGTH_128);
148
149     if (CA_STATUS_OK == pskRet)
150     {
151         OIC_LOG(INFO, TAG, "pairingPSK dump:\n");
152         OIC_LOG_BUFFER(INFO, TAG, pairingPSK, OWNER_PSK_LENGTH_128);
153         //Generating new credential for direct-pairing client
154
155         OicSecCred_t *cred = GenerateCredential(peerDevID,
156                 SYMMETRIC_PAIR_WISE_KEY, NULL,
157                 &pairingKey, owner);
158         VERIFY_NON_NULL(TAG, cred, ERROR);
159
160         res = AddCredential(cred);
161         if(res != OC_STACK_OK)
162         {
163             DeleteCredList(cred);
164             return res;
165         }
166     }
167     else
168     {
169         OIC_LOG(ERROR, TAG, "CAGenerateOwnerPSK failed");
170     }
171
172     OIC_LOG(DEBUG, TAG, "OUT SavePairingPSK");
173 exit:
174     return res;
175 }
176 #endif // __WITH_DTLS__
177
178 OCStackResult DpairingToCBORPayload(const OicSecDpairing_t *dpair, uint8_t **payload, size_t *size)
179 {
180     if (NULL == dpair || NULL == payload || NULL != *payload || NULL == size)
181     {
182         return OC_STACK_INVALID_PARAM;
183     }
184
185     size_t cborLen = *size;
186     if (0 == cborLen)
187     {
188         cborLen = CBOR_SIZE;
189     }
190
191     *payload = NULL;
192     *size = 0;
193
194     OCStackResult ret = OC_STACK_ERROR;
195
196     CborEncoder encoder;
197     CborEncoder dpairMap;
198
199     int64_t cborEncoderResult = CborNoError;
200     uint8_t mapSize = DPAIR_MAP_SIZE;
201
202     uint8_t *outPayload = (uint8_t *)OICCalloc(1, cborLen);
203     VERIFY_NON_NULL(TAG, outPayload, ERROR);
204     cbor_encoder_init(&encoder, outPayload, cborLen, 0);
205
206     cborEncoderResult = cbor_encoder_create_map(&encoder, &dpairMap, mapSize);
207     VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Creating DPAIRING Map");
208
209     //spm -- Mandatory
210     cborEncoderResult = cbor_encode_text_string(&dpairMap, OIC_JSON_SPM_NAME,
211         strlen(OIC_JSON_SPM_NAME));
212     VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding SPM name tag");
213     cborEncoderResult = cbor_encode_int(&dpairMap, dpair->spm);
214     VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding SPM value");
215
216     //PDEVICEID -- Mandatory
217     cborEncoderResult = cbor_encode_text_string(&dpairMap, OIC_JSON_PDEVICE_ID_NAME,
218         strlen(OIC_JSON_PDEVICE_ID_NAME));
219     VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding PDeviceID tag");
220     {
221         char *deviceId = NULL;
222         ret = ConvertUuidToStr(&dpair->pdeviceID, &deviceId);
223         VERIFY_SUCCESS(TAG, ret == OC_STACK_OK, ERROR);
224         cborEncoderResult = cbor_encode_text_string(&dpairMap, deviceId, strlen(deviceId));
225         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed to encode PDeviceID value");
226         OICFree(deviceId);
227     }
228
229     //ROWNER -- Mandatory
230     {
231         char *rowner = NULL;
232         cborEncoderResult = cbor_encode_text_string(&dpairMap, OIC_JSON_ROWNERID_NAME,
233             strlen(OIC_JSON_ROWNERID_NAME));
234         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding ROWNER tag");
235         ret = ConvertUuidToStr(&dpair->rownerID, &rowner);
236         VERIFY_SUCCESS(TAG, ret == OC_STACK_OK, ERROR);
237         cborEncoderResult = cbor_encode_text_string(&dpairMap, rowner, strlen(rowner));
238         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding Rowner ID value");
239         OICFree(rowner);
240     }
241
242     cborEncoderResult = cbor_encoder_close_container(&encoder, &dpairMap);
243     VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed to close dpairMap");
244
245      if (CborNoError == cborEncoderResult)
246     {
247         *size = encoder.ptr - outPayload;
248         *payload = outPayload;
249         ret = OC_STACK_OK;
250     }
251
252 exit:
253     if ((CborErrorOutOfMemory == cborEncoderResult) && (cborLen < CBOR_MAX_SIZE))
254     {
255        // reallocate and try again!
256        OICFree(outPayload);
257        // Since the allocated initial memory failed, double the memory.
258        cborLen += encoder.ptr - encoder.end;
259        cborEncoderResult = CborNoError;
260        ret = DpairingToCBORPayload(dpair, payload, &cborLen);
261        *size = cborLen;
262     }
263
264     if ((CborNoError != cborEncoderResult) || (OC_STACK_OK != ret))
265     {
266        OICFree(outPayload);
267        outPayload = NULL;
268        *payload = NULL;
269        *size = 0;
270        ret = OC_STACK_ERROR;
271     }
272
273     return ret;
274 }
275
276 OCStackResult CBORPayloadToDpair(const uint8_t *cborPayload, size_t size,
277                                 OicSecDpairing_t **secDpair)
278 {
279     if (NULL == cborPayload || NULL == secDpair || NULL != *secDpair || 0 == size)
280     {
281         return OC_STACK_INVALID_PARAM;
282     }
283
284     OCStackResult ret = OC_STACK_ERROR;
285     *secDpair = NULL;
286
287     CborValue dpairCbor = { .parser = NULL };
288     CborParser parser = { .end = NULL };
289     CborError cborFindResult = CborNoError;
290
291     cbor_parser_init(cborPayload, size, 0, &parser, &dpairCbor);
292     CborValue dpairMap = { .parser = NULL };
293     OicSecDpairing_t *dpair = NULL;
294     cborFindResult = cbor_value_enter_container(&dpairCbor, &dpairMap);
295     VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Entering DPairing Map");
296
297     dpair = (OicSecDpairing_t *)OICCalloc(1, sizeof(*dpair));
298     VERIFY_NON_NULL(TAG, dpair, ERROR);
299
300     while (cbor_value_is_valid(&dpairMap) && cbor_value_is_text_string(&dpairMap))
301     {
302         char *name = NULL;
303         size_t len = 0;
304         CborType type = CborInvalidType;
305         cborFindResult = cbor_value_dup_text_string(&dpairMap, &name, &len, NULL);
306         VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Finding tag name");
307         cborFindResult = cbor_value_advance(&dpairMap);
308         VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Advancing a value in DPair map");
309
310         type = cbor_value_get_type(&dpairMap);
311         if (0 == strcmp(OIC_JSON_SPM_NAME, name) && cbor_value_is_integer(&dpairMap))
312         {
313             cborFindResult = cbor_value_get_int(&dpairMap, (int *) &dpair->spm);
314             VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Finding SPM Value");
315         }
316
317         if (0 == strcmp(OIC_JSON_PDEVICE_ID_NAME, name))
318         {
319             char *id = NULL;
320             cborFindResult = cbor_value_dup_text_string(&dpairMap, &id, &len, NULL);
321             VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Finding PDeviceID value");
322             ret = ConvertStrToUuid(id, &dpair->pdeviceID);
323             VERIFY_SUCCESS(TAG, ret == OC_STACK_OK, ERROR);
324             OICFree(id);
325         }
326
327         if (0 == strcmp(OIC_JSON_ROWNERID_NAME, name))
328         {
329             char *id = NULL;
330             cborFindResult = cbor_value_dup_text_string(&dpairMap, &id, &len, NULL);
331             VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Finding RownerID value");
332             ret = ConvertStrToUuid(id, &dpair->rownerID);
333             VERIFY_SUCCESS(TAG, ret == OC_STACK_OK, ERROR);
334             OICFree(id);
335         }
336
337         if (CborMapType != type && cbor_value_is_valid(&dpairMap))
338         {
339             cborFindResult = cbor_value_advance(&dpairMap);
340             VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Advancing the Dpair Map");
341         }
342         OICFree(name);
343     }
344
345     *secDpair = dpair;
346     ret = OC_STACK_OK;
347
348 exit:
349     if (CborNoError != cborFindResult)
350     {
351         OIC_LOG (ERROR, TAG, "CBORPayloadToDoxm failed");
352         DeleteDpairingBinData(dpair);
353         dpair = NULL;
354         *secDpair = NULL;
355         ret = OC_STACK_ERROR;
356     }
357     return ret;
358 }
359 /**
360  * Function to handle the handshake result in Direct-Pairing.
361  * This function will be invoked after DTLS handshake
362  * @param   endPoint  [IN] The remote endpoint.
363  * @param   errorInfo [IN] Error information from the endpoint.
364  * @return  NONE
365  */
366 void DPairingDTLSHandshakeCB(const CAEndpoint_t *endpoint, const CAErrorInfo_t *info)
367 {
368     OIC_LOG_V(INFO, TAG, "IN DPairingDTLSHandshakeCB");
369
370     if(gDpair && endpoint && info)
371     {
372         OIC_LOG_V(INFO, TAG, "Received status from remote device(%s:%d) : %d",
373                  endpoint->addr, endpoint->port, info->result);
374
375         if(CA_STATUS_OK == info->result)
376         {
377             OIC_LOG(INFO, TAG, "DPairingDTLSHandshakeCB - Connection success.");
378         }
379         else if(CA_DTLS_AUTHENTICATION_FAILURE == info->result)
380         {
381             OIC_LOG(INFO, TAG, "DPairingDTLSHandshakeCB - Authentication failed");
382
383         }
384
385 #ifdef __WITH_DTLS__
386         CARegisterDTLSHandshakeCallback(NULL);
387 #endif // __WITH_DTLS__
388
389         // delete temporary key
390         RemoveCredential(&gDpair->pdeviceID);
391     }
392
393     OIC_LOG_V(INFO, TAG, "OUT DPairingDTLSHandshakeCB");
394 }
395
396 static OCEntityHandlerResult HandleDpairingPostRequest (const OCEntityHandlerRequest * ehRequest)
397 {
398     OIC_LOG (DEBUG, TAG, "Dpairing EntityHandle  processing POST request");
399     OCEntityHandlerResult ehRet = OC_EH_ERROR;
400     OicSecDpairing_t* newDpair = NULL;
401     OCStackResult res = OC_STACK_OK;
402
403     const OicSecPconf_t *pconf = GetPconfResourceData();
404     if (true == pconf->edp)
405     {
406         uint8_t *payload = ((OCSecurityPayload*)ehRequest->payload)->securityData;
407         size_t size = ((OCSecurityPayload*)ehRequest->payload)->payloadSize;
408         if (payload)
409         {
410             res = CBORPayloadToDpair(payload, size, &newDpair);
411         }
412     }
413     else
414     {
415         OIC_LOG (DEBUG, TAG, "EDP == false : Direct-Pairing Disabled");
416         ehRet = OC_EH_ERROR;
417     }
418
419     if (OC_STACK_OK == res && newDpair && false == IsPairedDevice(&newDpair->pdeviceID))
420     {
421         // Check if valid Post request
422         bool prmMached = false;
423         for (size_t i=0; i<pconf->prmLen; i++)
424         {
425             if (newDpair->spm == pconf->prm[i])
426             {
427                 prmMached = true;
428                 break;
429             }
430         }
431         OIC_LOG_V(DEBUG, TAG, "Parsed spm is %s", prmMached ? "valid" :
432                 "invalid, send error response");
433
434         // Update local Dpairing with new Dpairing & prepare dtls session
435         if (prmMached && '\0' != (char)newDpair->pdeviceID.id[0])
436         {
437             if(!gDpair)
438             {
439                 gDpair = GetDpairingDefault();
440             }
441             gDpair->spm = newDpair->spm;
442             memcpy(&gDpair->pdeviceID, &newDpair->pdeviceID, sizeof(OicUuid_t));
443             memcpy(&gDpair->rownerID, &pconf->rownerID, sizeof(OicUuid_t));
444
445 #ifdef __WITH_DTLS__
446             // Add temporary psk
447             OCStackResult res;
448             OicUuid_t subjectId = {.id={0}};
449             res = AddTmpPskWithPIN(&gDpair->pdeviceID,
450                            SYMMETRIC_PAIR_WISE_KEY,
451                            (char*)pconf->pin.val, DP_PIN_LENGTH,
452                            &gDpair->rownerID, &subjectId);
453             if(res != OC_STACK_OK ||
454                     memcmp(&gDpair->pdeviceID, &subjectId, sizeof(OicUuid_t)))
455             {
456                 OIC_LOG_V(ERROR, TAG, "Failed to save the temporal PSK : %d", res);
457                 goto exit;
458             }
459
460             // Prepare to establish a secure channel with Pin-based PSK cipher suite
461             if (CA_STATUS_OK != CAEnableAnonECDHCipherSuite(false) ||
462                 CA_STATUS_OK != CASelectCipherSuite(TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA_256))
463             {
464                 OIC_LOG_V(ERROR, TAG, "Failed to select TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA_256");
465                 goto exit;
466             }
467
468             if(CA_STATUS_OK != CARegisterDTLSHandshakeCallback(DPairingDTLSHandshakeCB))
469             {
470                 OIC_LOG(WARNING, TAG, "DirectPairingHandler : Failed to register"
471                         " DTLS handshake callback.");
472                 goto exit;
473             }
474 #endif // __WITH_DTLS__
475
476             // should be lock /oic/sec/dpairing resource if Direct-Pairing starts normally ?
477             OIC_LOG (DEBUG, TAG, "/oic/sec/dpairing resource created");
478
479             ehRet = OC_EH_CHANGED;
480         }
481         else
482         {
483             OIC_LOG(ERROR, TAG, "Error in request check");
484         }
485     }
486
487
488 #ifdef __WITH_DTLS__
489 exit:
490 #endif // __WITH_DTLS__
491
492     // Send payload to request originator
493     if(OC_STACK_OK != SendSRMResponse(ehRequest, ehRet, NULL, 0))
494     {
495         ehRet = OC_EH_ERROR;
496         OIC_LOG (ERROR, TAG, "SendSRMResponse failed in HandleDpairingPostRequest");
497     }
498
499     if (OC_EH_ERROR == ehRet && gDpair)
500     {
501         RemoveCredential(&gDpair->pdeviceID);
502         gDpair = NULL;
503     }
504
505     DeleteDpairingBinData(newDpair);
506     OIC_LOG_V (DEBUG, TAG, "%s RetVal %d", __func__ , ehRet);
507     return ehRet;
508 }
509
510 static OCEntityHandlerResult HandleDpairingPutRequest (const OCEntityHandlerRequest * ehRequest)
511 {
512     OIC_LOG (DEBUG, TAG, "Dpairing EntityHandle  processing PUT request (Comfirmation)");
513
514     OCEntityHandlerResult ehRet = OC_EH_ERROR;
515     OicSecDpairing_t* newDpair = NULL;
516     OCStackResult res = OC_STACK_OK;
517
518     const OicSecPconf_t *pconf = GetPconfResourceData();
519     if (true == pconf->edp)
520     {
521         uint8_t *payload = ((OCSecurityPayload*)ehRequest->payload)->securityData;
522         size_t size = ((OCSecurityPayload*)ehRequest->payload)->payloadSize;
523         if (payload)
524         {
525             res = CBORPayloadToDpair(payload, size, &newDpair);
526         }
527
528     }
529     else
530     {
531         OIC_LOG (DEBUG, TAG, "EDP == false : Direct-Pairing Disabled");
532         ehRet = OC_EH_ERROR;
533     }
534
535
536     if ((OC_STACK_OK == res) && gDpair && newDpair)
537     {
538         OIC_LOG(DEBUG, TAG, "Received direct-pairing finalization request");
539
540         // Check if valid Put request
541         VERIFY_SUCCESS(TAG, PRM_NOT_ALLOWED == newDpair->spm, ERROR);
542
543         const OicSecPconf_t *pconf = GetPconfResourceData();
544         VERIFY_NON_NULL(TAG, pconf, ERROR);
545
546 #ifdef __WITH_DTLS__
547         OCServerRequest * request = (OCServerRequest *)ehRequest->requestHandle;
548         VERIFY_SUCCESS(TAG, (request->devAddr.flags | OC_FLAG_SECURE), ERROR);
549
550         //Generate new credential
551         OIC_LOG_V(INFO, TAG, "SavePairingPSK for %s(%d)", request->devAddr.addr,
552                 request->devAddr.port);
553         OCStackResult res = SavePairingPSK(&request->devAddr, &newDpair->pdeviceID,
554                 (OicUuid_t *)&pconf->rownerID, true);
555         VERIFY_SUCCESS(TAG, OC_STACK_OK == res, ERROR);
556 #endif //__WITH_DTLS__
557
558         //Generate new acl
559         OicSecPdAcl_t *pdAcl;
560         LL_FOREACH(pconf->pdacls, pdAcl)
561         {
562             OicSecAcl_t* acl = (OicSecAcl_t*)OICCalloc(1, sizeof(OicSecAcl_t));
563             VERIFY_NON_NULL(TAG, acl, ERROR);
564
565             OicSecAce_t* ace = (OicSecAce_t*)OICCalloc(1, sizeof(OicSecAce_t));
566             VERIFY_NON_NULL(TAG, ace, ERROR);
567
568             LL_APPEND(acl->aces, ace);
569
570             memcpy(&ace->subjectuuid, &gDpair->pdeviceID, sizeof(OicUuid_t));
571
572             for(size_t i = 0; i < pdAcl->resourcesLen; i++)
573             {
574                 OicSecRsrc_t* rsrc = (OicSecRsrc_t*)OICCalloc(1, sizeof(OicSecRsrc_t));
575                 VERIFY_NON_NULL(TAG, rsrc, ERROR);
576                 LL_APPEND(ace->resources, rsrc);
577
578                 //href
579                 rsrc->href = OICStrdup(pdAcl->resources[i]);
580
581                 // TODO: Append 'if' and 'rt' as workaround
582                 // if
583                 rsrc->interfaceLen = 1;
584                 rsrc->interfaces = (char**)OICCalloc(rsrc->interfaceLen, sizeof(char));
585                 VERIFY_NON_NULL(TAG, (rsrc->interfaces), ERROR);
586                 rsrc->interfaces[0] = OICStrdup(OC_RSRVD_INTERFACE_DEFAULT);
587                 VERIFY_NON_NULL(TAG, (rsrc->interfaces[0]), ERROR);
588
589                 //rt
590                 rsrc->typeLen = 1;
591                 rsrc->types = (char**)OICCalloc(rsrc->typeLen, sizeof(char));
592                 VERIFY_NON_NULL(TAG, (rsrc->types), ERROR);
593                 rsrc->types[0] = OICStrdup("oic.core");
594                 VERIFY_NON_NULL(TAG, (rsrc->types[0]), ERROR);
595             }
596
597             ace->permission = pdAcl->permission;
598
599             //Copy the validity
600             if(pdAcl->periods || pdAcl->recurrences)
601             {
602                 OicSecValidity_t* validity = (OicSecValidity_t*)OICCalloc(1, sizeof(OicSecValidity_t));
603                 VERIFY_NON_NULL(TAG, validity, ERROR);
604
605                 if(pdAcl->periods && pdAcl->periods[0])
606                 {
607                     size_t periodLen = strlen(pdAcl->periods[0]) + 1;
608                     validity->period = (char*)OICMalloc(periodLen * sizeof(char));
609                     VERIFY_NON_NULL(TAG, (validity->period), ERROR);
610                     OICStrcpy(validity->period, periodLen, pdAcl->periods[0]);
611                 }
612
613                 if(pdAcl->recurrences && 0 < pdAcl->prdRecrLen)
614                 {
615                     validity->recurrenceLen = pdAcl->prdRecrLen;
616                     validity->recurrences = (char**)OICMalloc(sizeof(char*) * pdAcl->prdRecrLen);
617                     VERIFY_NON_NULL(TAG, (validity->recurrences), ERROR);
618
619                     for(size_t i = 0; i < pdAcl->prdRecrLen; i++)
620                     {
621                         size_t recurrenceLen = strlen(pdAcl->recurrences[i]) + 1;
622                         validity->recurrences[i] = (char*)OICMalloc(recurrenceLen  * sizeof(char));
623                         VERIFY_NON_NULL(TAG, (validity->recurrences[i]), ERROR);
624
625                         OICStrcpy(validity->recurrences[i], recurrenceLen, pdAcl->recurrences[i]);
626                     }
627                 }
628
629                 LL_APPEND(ace->validities, validity);
630             }
631
632             size_t size = 0;
633             uint8_t *payload = NULL;
634             if (OC_STACK_OK == AclToCBORPayload(acl, &payload, &size))
635             {
636                 InstallNewACL(payload, size);
637                 OICFree(payload);
638             }
639             DeleteACLList(acl);
640         }
641
642         //update pconf device list
643         AddPairedDevice(&newDpair->pdeviceID);
644
645         //Initialize dpairing resource
646         gDpair = NULL;
647
648         OIC_LOG (DEBUG, TAG, "/oic/sec/dpairing resource updated,"
649                 "direct-pairing finalization success");
650         ehRet = OC_EH_OK;
651     }
652
653 exit:
654
655     //Send payload to request originator
656     if(OC_STACK_OK != SendSRMResponse(ehRequest, ehRet, NULL, 0))
657     {
658         ehRet = OC_EH_ERROR;
659         OIC_LOG (ERROR, TAG, "SendSRMResponse failed in HandleDpairingPutRequest");
660     }
661
662     DeleteDpairingBinData(newDpair);
663     OIC_LOG_V (DEBUG, TAG, "%s RetVal %d", __func__ , ehRet);
664     return ehRet;
665 }
666 /*
667  * This internal method is the entity handler for Dpairing resources and
668  * will handle REST request (GET/POST) for them.
669  */
670 OCEntityHandlerResult DpairingEntityHandler (OCEntityHandlerFlag flag,
671                                         OCEntityHandlerRequest * ehRequest,
672                                         void* callbackParameter)
673 {
674     OIC_LOG(DEBUG, TAG, "Received request DpairingEntityHandler");
675     (void)callbackParameter;
676     OCEntityHandlerResult ehRet = OC_EH_ERROR;
677
678     if (!ehRequest)
679     {
680         return ehRet;
681     }
682
683     if (flag & OC_REQUEST_FLAG)
684     {
685         OIC_LOG (DEBUG, TAG, "Flag includes OC_REQUEST_FLAG");
686         switch (ehRequest->method)
687         {
688             case OC_REST_GET:
689                 break;
690
691             case OC_REST_POST:
692                 ehRet = HandleDpairingPostRequest(ehRequest);
693                 break;
694
695             case OC_REST_PUT:
696                 ehRet = HandleDpairingPutRequest(ehRequest);
697                 break;
698
699             case OC_REST_DELETE:
700                 break;
701
702             default:
703                 ehRet = OC_EH_ERROR;
704                 SendSRMResponse(ehRequest, ehRet, NULL, 0);
705         }
706     }
707
708     return ehRet;
709 }
710
711 /*
712  * This internal method is used to create '/oic/sec/dpairing' resource.
713  */
714 OCStackResult CreateDpairingResource()
715 {
716     OCStackResult ret;
717
718     ret = OCCreateResource(&gDpairHandle,
719                            OIC_RSRC_TYPE_SEC_DPAIRING,
720                            OC_RSRVD_INTERFACE_DEFAULT,
721                            OIC_RSRC_DPAIRING_URI,
722                            DpairingEntityHandler,
723                            NULL,
724                            OC_SECURE | OC_EXPLICIT_DISCOVERABLE);
725
726     if (OC_STACK_OK != ret)
727     {
728         OIC_LOG (ERROR, TAG, "Unable to instantiate Dpairing resource");
729         DeInitDpairingResource();
730     }
731     return ret;
732 }
733
734 /**
735  * Initialize Dpairing resource by loading data from persistent storage.
736  *
737  * @retval  OC_STACK_OK for Success, otherwise some error value
738  */
739 OCStackResult InitDpairingResource()
740 {
741     OCStackResult ret = OC_STACK_ERROR;
742
743     // Instantiate 'oic.sec.dpairing'
744     ret = CreateDpairingResource();
745     if (OC_STACK_OK != ret)
746     {
747         DeInitDpairingResource();
748     }
749     return ret;
750 }
751
752 /**
753  * Perform cleanup for Dpairing resources.
754  *
755  * @return
756  * OC_STACK_OK    - no error
757  * OC_STACK_ERROR - stack process error
758  *
759  */
760 OCStackResult DeInitDpairingResource()
761 {
762     OCStackResult ret = OCDeleteResource(gDpairHandle);
763     gDpair = NULL;
764
765     if(OC_STACK_OK == ret)
766     {
767         return OC_STACK_OK;
768     }
769     else
770     {
771         return OC_STACK_ERROR;
772     }
773 }
774
775 OCStackResult SetDpairingRownerId(const OicUuid_t* newROwner)
776 {
777     OCStackResult ret = OC_STACK_ERROR;
778     uint8_t *cborPayload = NULL;
779     size_t size = 0;
780     OicUuid_t prevId = {.id={0}};
781
782     if(NULL == newROwner)
783     {
784         ret = OC_STACK_INVALID_PARAM;
785     }
786     if(NULL == gDpair)
787     {
788         ret = OC_STACK_NO_RESOURCE;
789     }
790
791     if(newROwner && gDpair)
792     {
793         memcpy(prevId.id, gDpair->rownerID.id, sizeof(prevId.id));
794         memcpy(gDpair->rownerID.id, newROwner->id, sizeof(newROwner->id));
795
796         ret = DpairingToCBORPayload(gDpair, &cborPayload, &size);
797         VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
798
799         ret = UpdateSecureResourceInPS(OIC_JSON_DPAIRING_NAME, cborPayload, size);
800         VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
801
802         OICFree(cborPayload);
803     }
804
805     return ret;
806
807 exit:
808     OICFree(cborPayload);
809     memcpy(gDpair->rownerID.id, prevId.id, sizeof(prevId.id));
810     return ret;
811 }
812
813 OCStackResult GetDpairingRownerId(OicUuid_t *rowneruuid)
814 {
815     OCStackResult retVal = OC_STACK_ERROR;
816     if (gDpair)
817     {
818         *rowneruuid = gDpair->rownerID;
819         retVal = OC_STACK_OK;
820     }
821     return retVal;
822 }