svace fixes
[platform/upstream/iotivity.git] / resource / csdk / security / provisioning / src / multipleownershiptransfermanager.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 #ifdef HAVE_TIME_H
22 #include <time.h>
23 #endif
24 #ifdef HAVE_UNISTD_H
25 #include <unistd.h>
26 #endif
27 #ifdef HAVE_SYS_TIME_H
28 #include <sys/time.h>
29 #endif
30 #include <stdbool.h>
31 #include <string.h>
32
33 #include "utlist.h"
34 #include "logger.h"
35 #include "oic_malloc.h"
36 #include "oic_string.h"
37 #include "cacommon.h"
38 #include "cainterface.h"
39 #include "base64.h"
40 #if defined (__TIZENRT__)
41 #include <apps/netutils/cJSON.h>
42 #else
43 #include "cJSON.h"
44 #endif
45
46 #include "srmresourcestrings.h"
47 #include "doxmresource.h"
48 #include "pstatresource.h"
49 #include "credresource.h"
50 #include "aclresource.h"
51 #include "ownershiptransfermanager.h"
52 #include "securevirtualresourcetypes.h"
53 #include "oxmjustworks.h"
54 #include "pmtypes.h"
55 #include "pmutility.h"
56 #include "srmutility.h"
57 #include "provisioningdatabasemanager.h"
58 #include "oxmrandompin.h"
59 #include "ocpayload.h"
60 #include "payload_logging.h"
61 #include "oxmjustworks.h"
62 #include "oxmpreconfpin.h"
63 #include "oxmrandompin.h"
64 #include "otmcontextlist.h"
65
66 #define TAG "OIC_MULTIPLE_OTM"
67
68 /**********************************************************************
69  * API for Super Owner
70  **********************************************************************/
71
72 /**
73  * Callback handler of security resource's POST request.
74  *
75  * @param[in] ctx             ctx value passed to callback from calling function.
76  * @param[in] UNUSED          handle to an invocation
77  * @param[in] clientResponse  Response from queries to remote servers.
78  * @return  OC_STACK_DELETE_TRANSACTION to delete the transaction
79  *          and  OC_STACK_KEEP_TRANSACTION to keep it.
80  */
81 static OCStackApplicationResult MOTUpdateSecurityResourceCB(void *ctx, OCDoHandle UNUSED,
82                                                 OCClientResponse *clientResponse)
83 {
84     OIC_LOG_V(INFO, TAG, "In %s", __func__);
85     (void)UNUSED;
86     OTMContext_t *motCtx = (OTMContext_t*)ctx;
87     VERIFY_NON_NULL(TAG, motCtx, ERROR);
88     VERIFY_NON_NULL(TAG, motCtx->ctxResultCallback, ERROR);
89     VERIFY_NON_NULL(TAG, motCtx->ctxResultArray, ERROR);
90
91     if(clientResponse)
92     {
93         memcpy(motCtx->ctxResultArray[0].deviceId.id,
94                motCtx->selectedDeviceInfo->doxm->deviceID.id,
95                sizeof(OicUuid_t));
96         motCtx->ctxResultArray[0].res = clientResponse->result;
97
98         if(OC_STACK_RESOURCE_CHANGED == clientResponse->result)
99         {
100             motCtx->ctxHasError = false;
101         }
102         else
103         {
104             motCtx->ctxHasError = true;
105         }
106     }
107     else
108     {
109         OIC_LOG_V(ERROR, TAG, "SRPGetACLResourceCB received Null clientResponse");
110         motCtx->ctxResultArray[0].res = OC_STACK_ERROR;
111         motCtx->ctxHasError = true;
112     }
113
114     motCtx->ctxResultCallback(motCtx->userCtx, motCtx->ctxResultArraySize,
115                               motCtx->ctxResultArray, motCtx->ctxHasError);
116
117 exit:
118     if(motCtx)
119     {
120         OICFree(motCtx->ctxResultArray);
121         OICFree(motCtx);
122     }
123     OIC_LOG_V(INFO, TAG, "Out %s", __func__);
124     return OC_STACK_DELETE_TRANSACTION;
125 }
126
127 /**
128  * Callback handler of security resource's DELETE request.
129  *
130  * @param[in] ctx             ctx value passed to callback from calling function.
131  * @param[in] UNUSED          handle to an invocation
132  * @param[in] clientResponse  Response from queries to remote servers.
133  * @return  OC_STACK_DELETE_TRANSACTION to delete the transaction
134  *          and  OC_STACK_KEEP_TRANSACTION to keep it.
135  */
136 static OCStackApplicationResult MOTDeleteSecurityResourceCB(void *ctx, OCDoHandle UNUSED,
137                                                 OCClientResponse *clientResponse)
138 {
139     OIC_LOG_V(INFO, TAG, "In %s", __func__);
140     (void)UNUSED;
141     OTMContext_t *motCtx = (OTMContext_t*)ctx;
142     VERIFY_NON_NULL(TAG, motCtx, ERROR);
143     VERIFY_NON_NULL(TAG, motCtx->ctxResultCallback, ERROR);
144     VERIFY_NON_NULL(TAG, motCtx->ctxResultArray, ERROR);
145
146     if(clientResponse)
147     {
148         memcpy(motCtx->ctxResultArray[0].deviceId.id,
149                motCtx->selectedDeviceInfo->doxm->deviceID.id,
150                sizeof(OicUuid_t));
151         motCtx->ctxResultArray[0].res = clientResponse->result;
152
153         if(OC_STACK_RESOURCE_DELETED == clientResponse->result)
154         {
155             motCtx->ctxHasError = false;
156         }
157         else
158         {
159             motCtx->ctxHasError = true;
160         }
161     }
162     else
163     {
164         OIC_LOG_V(ERROR, TAG, "SRPGetACLResourceCB received Null clientResponse");
165         motCtx->ctxResultArray[0].res = OC_STACK_ERROR;
166         motCtx->ctxHasError = true;
167     }
168
169     motCtx->ctxResultCallback(motCtx->userCtx, motCtx->ctxResultArraySize,
170                               motCtx->ctxResultArray, motCtx->ctxHasError);
171
172 exit:
173     if(motCtx)
174     {
175         OICFree(motCtx->ctxResultArray);
176         OICFree(motCtx);
177     }
178     OIC_LOG_V(INFO, TAG, "Out %s", __func__);
179
180     return OC_STACK_DELETE_TRANSACTION;
181
182 }
183
184 /**
185  * Internal API to send POST doxm request
186  */
187 static OCStackResult MOTSendPostDoxm(void *ctx,
188                                      const OCProvisionDev_t *targetDeviceInfo,
189                                      OCProvisionResultCB resultCallback,
190                                      const OicSecDoxm_t* doxm)
191 {
192     OCStackResult postMomRes = OC_STACK_ERROR;
193     OCSecurityPayload* secPayload = NULL;
194     OTMContext_t *motCtx = NULL;
195     bool freeFlag = true;
196
197     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
198
199     //Generate the security payload using updated doxm
200     secPayload = (OCSecurityPayload*)OICCalloc(1, sizeof(OCSecurityPayload));
201     VERIFY_NON_NULL(TAG, secPayload, ERROR);
202     secPayload->base.type = PAYLOAD_TYPE_SECURITY;
203
204     postMomRes = DoxmToCBORPayload(doxm, &secPayload->securityData, &secPayload->payloadSize, true);
205     VERIFY_SUCCESS(TAG, (OC_STACK_OK == postMomRes), ERROR);
206
207     OIC_LOG(DEBUG, TAG, "Created doxm payload to update doxm:");
208     OIC_LOG_BUFFER(DEBUG, TAG, secPayload->securityData, secPayload->payloadSize);
209
210     char query[MAX_URI_LENGTH + MAX_QUERY_LENGTH] = {0};
211     bool queryGenRes = PMGenerateQuery(true,
212                                        targetDeviceInfo->endpoint.addr,
213                                        targetDeviceInfo->securePort,
214                                        targetDeviceInfo->connType,
215                                        query, sizeof(query), OIC_RSRC_DOXM_URI);
216     VERIFY_SUCCESS(TAG, (true == queryGenRes), ERROR);
217     OIC_LOG_V(DEBUG, TAG, "Query=%s", query);
218
219     //Create the MOT Context to handle the response message
220     motCtx = (OTMContext_t*)OICCalloc(1, sizeof(OTMContext_t));
221     VERIFY_NON_NULL(TAG, motCtx, ERROR);
222     motCtx->selectedDeviceInfo = targetDeviceInfo;
223     motCtx->ctxResultCallback = resultCallback;
224     motCtx->ctxResultArraySize = 1;
225     motCtx->ctxHasError = false;
226     motCtx->userCtx = ctx;
227     motCtx->ctxResultArray= (OCProvisionResult_t*)OICCalloc(1, sizeof(OCProvisionResult_t));
228     VERIFY_NON_NULL(TAG, motCtx->ctxResultArray, ERROR);
229
230     //Send POST request
231     OCCallbackData cbData =  {.context=NULL, .cb=NULL, .cd=NULL};
232     cbData.cb = &MOTUpdateSecurityResourceCB;
233     cbData.context = (void *)motCtx;
234     OIC_LOG(DEBUG, TAG, "Sending POST 'doxm' request to resource server");
235     postMomRes = OCDoResource(NULL, OC_REST_POST, query,
236                               &targetDeviceInfo->endpoint, (OCPayload*)secPayload,
237                               targetDeviceInfo->connType, OC_HIGH_QOS, &cbData, NULL, 0);
238     VERIFY_SUCCESS(TAG, (OC_STACK_OK == postMomRes), ERROR);
239
240     freeFlag = false;
241
242 exit:
243     //If POST request successfully sent, motCtx will be cleaned from response handler.
244     if(freeFlag && motCtx)
245     {
246         OICFree(motCtx->ctxResultArray);
247         OICFree(motCtx);
248     }
249     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
250     return postMomRes;
251 }
252
253 /**
254  * API to update 'doxm.mom' to resource server.
255  *
256  * @param[in] targetDeviceInfo Selected target device.
257  * @param[in] momType Mode of multiple ownership transfer (ref. oic.sec.mom)
258  * @param[in] resultCallback callback provided by API user, callback will be called when
259  *            POST 'mom' request recieves a response from resource server.
260  * @return OC_STACK_OK in case of success and other value otherwise.
261  */
262 OCStackResult MOTChangeMode(void *ctx, const OCProvisionDev_t *targetDeviceInfo,
263                             const OicSecMomType_t momType, OCProvisionResultCB resultCallback)
264 {
265     OCStackResult postMomRes = OC_STACK_INVALID_PARAM;
266     OicSecDoxm_t* doxm = NULL;
267     uint8_t* doxmPayload = NULL;
268     size_t doxmPayloadLen = 0;
269
270     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
271
272     VERIFY_SUCCESS(TAG, (OIC_NUMBER_OF_MOM_TYPE > momType), ERROR);
273     VERIFY_NON_NULL(TAG, targetDeviceInfo, ERROR);
274     postMomRes = OC_STACK_INVALID_CALLBACK;
275     VERIFY_NON_NULL(TAG, resultCallback, ERROR);
276
277     //Dulpicate doxm resource to update the 'mom' property
278     postMomRes = DoxmToCBORPayload(targetDeviceInfo->doxm, &doxmPayload, &doxmPayloadLen, false);
279     VERIFY_SUCCESS(TAG, (OC_STACK_OK == postMomRes), ERROR);
280
281     postMomRes = CBORPayloadToDoxm(doxmPayload, doxmPayloadLen, &doxm);
282     VERIFY_SUCCESS(TAG, (OC_STACK_OK == postMomRes), ERROR);
283     VERIFY_NON_NULL(TAG, doxm, ERROR);
284
285     if(NULL == doxm->mom)
286     {
287         postMomRes = OC_STACK_NO_MEMORY;
288         doxm->mom = (OicSecMom_t*)OICCalloc(1, sizeof(OicSecMom_t));
289         VERIFY_NON_NULL(TAG, (doxm->mom), ERROR);
290     }
291     doxm->mom->mode = momType;
292
293     //Send POST reuqest for update doxm
294     postMomRes = MOTSendPostDoxm(ctx, targetDeviceInfo, resultCallback, doxm);
295     VERIFY_SUCCESS(TAG, (OC_STACK_OK == postMomRes), ERROR);
296
297 exit:
298     OICFree(doxmPayload);
299     DeleteDoxmBinData(doxm);
300     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
301     return postMomRes;
302 }
303
304 /**
305  * API to add 'doxm.oxms' to resource server.
306  *
307  * @param[in] targetDeviceInfo Selected target device.
308  * @param[in] newOxm  OxMs to be added (ref. oic.sec.oxm)
309  * @param[in] resultCallback callback provided by API user, callback will be called when
310  *            POST 'oxms' request recieves a response from resource server.
311  * @return OC_STACK_OK in case of success and other value otherwise.
312  */
313 OCStackResult MOTAddMOTMethod(void *ctx, OCProvisionDev_t *targetDeviceInfo,
314                                  const OicSecOxm_t newOxm, OCProvisionResultCB resultCallback)
315 {
316     OCStackResult postOxmRes = OC_STACK_INVALID_PARAM;
317     OicSecOxm_t* newOxms = NULL;
318     uint8_t* doxmPayload = NULL;
319     size_t doxmPayloadLen = 0;
320
321     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
322
323     VERIFY_SUCCESS(TAG, (OIC_OXM_COUNT > newOxm || OIC_PRECONFIG_PIN == newOxm), ERROR);
324     VERIFY_NON_NULL(TAG, targetDeviceInfo, ERROR);
325     postOxmRes = OC_STACK_INVALID_CALLBACK;
326     VERIFY_NON_NULL(TAG, resultCallback, ERROR);
327     postOxmRes = OC_STACK_NO_MEMORY;
328
329     for(size_t i = 0; i < targetDeviceInfo->doxm->oxmLen; i++)
330     {
331         if(targetDeviceInfo->doxm->oxm[i] == newOxm)
332         {
333             OIC_LOG_V(INFO, TAG, "[%d] OxM already supported", (int)newOxm);
334             OCProvisionResult_t* resArr = (OCProvisionResult_t*)OICCalloc(1, sizeof(OCProvisionResult_t));
335             VERIFY_NON_NULL(TAG, resArr, ERROR);
336             resArr->res = OC_STACK_OK;
337             memcpy(resArr->deviceId.id, targetDeviceInfo->doxm->deviceID.id, sizeof(resArr->deviceId.id));
338             resultCallback(ctx, 1, resArr, false);
339             return OC_STACK_OK;
340         }
341     }
342
343     newOxms = (OicSecOxm_t*)OICMalloc(sizeof(OicSecOxm_t) * (targetDeviceInfo->doxm->oxmLen + 1));
344     VERIFY_NON_NULL(TAG, newOxms , ERROR);
345
346     for(size_t i = 0; i < targetDeviceInfo->doxm->oxmLen; i++)
347     {
348         newOxms[i] = targetDeviceInfo->doxm->oxm[i];
349     }
350     newOxms[targetDeviceInfo->doxm->oxmLen] = newOxm;
351     targetDeviceInfo->doxm->oxmLen++;
352     OICFree(targetDeviceInfo->doxm->oxm);
353     targetDeviceInfo->doxm->oxm = newOxms;
354
355     //Send POST reuqest for update doxm
356     postOxmRes = MOTSendPostDoxm(ctx, targetDeviceInfo, resultCallback, targetDeviceInfo->doxm);
357     VERIFY_SUCCESS(TAG, (OC_STACK_OK == postOxmRes), ERROR);
358
359 exit:
360     OICFree(doxmPayload);
361     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
362     return postOxmRes;
363 }
364
365 /**
366  * API to update 'doxm.oxmsel' to resource server.
367  *
368  * @param[in] targetDeviceInfo Selected target device.
369   * @param[in] oxmSelValue Method of multiple ownership transfer (ref. oic.sec.oxm)
370  * @param[in] resultCallback callback provided by API user, callback will be called when
371  *            POST 'oxmsel' request recieves a response from resource server.
372  * @return OC_STACK_OK in case of success and other value otherwise.
373  */
374 OCStackResult MOTSelectMOTMethod(void *ctx, const OCProvisionDev_t *targetDeviceInfo,
375                                  const OicSecOxm_t oxmSelValue, OCProvisionResultCB resultCallback)
376 {
377     OCStackResult postMomRes = OC_STACK_INVALID_CALLBACK;
378     OicSecDoxm_t* doxm = NULL;
379     uint8_t* doxmPayload = NULL;
380     size_t doxmPayloadLen = 0;
381
382     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
383
384     VERIFY_NON_NULL(TAG, resultCallback, ERROR);
385     postMomRes = OC_STACK_INVALID_PARAM;
386     VERIFY_NON_NULL(TAG, targetDeviceInfo, ERROR);
387
388     bool isValidOxmsel = false;
389     for(size_t i = 0; i < targetDeviceInfo->doxm->oxmLen; i++)
390     {
391         if(targetDeviceInfo->doxm->oxm[i] == oxmSelValue)
392         {
393             isValidOxmsel = true;
394             break;
395         }
396     }
397     VERIFY_SUCCESS(TAG, isValidOxmsel, ERROR);
398
399     //Dulpicate doxm resource to update the 'oxmsel' property
400     postMomRes = DoxmToCBORPayload(targetDeviceInfo->doxm, &doxmPayload, &doxmPayloadLen, false);
401     VERIFY_SUCCESS(TAG, (OC_STACK_OK == postMomRes), ERROR);
402
403     postMomRes = CBORPayloadToDoxm(doxmPayload, doxmPayloadLen, &doxm);
404     VERIFY_SUCCESS(TAG, (OC_STACK_OK == postMomRes), ERROR);
405     VERIFY_NON_NULL(TAG, doxm, ERROR);
406
407     doxm->oxmSel = oxmSelValue;
408
409     //Send POST reuqest for update doxm
410     postMomRes = MOTSendPostDoxm(ctx, targetDeviceInfo, resultCallback, doxm);
411     VERIFY_SUCCESS(TAG, (OC_STACK_OK == postMomRes), ERROR);
412
413 exit:
414     OICFree(doxmPayload);
415     DeleteDoxmBinData(doxm);
416     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
417     return postMomRes;
418 }
419
420 /**
421  * API to provision preconfigured PIN to resource server.
422  *
423  * @param[in] targetDeviceInfo Selected target device.
424  * @param[in] preconfPIN Preconfig PIN which is used while multiple owner authentication
425  * @param[in] preconfPINLen Byte length of preconfig PIN
426  * @param[in] resultCallback callback provided by API user, callback will be called when
427  *            POST credential request recieves a response from resource server.
428  * @return OC_STACK_OK in case of success and other value otherwise.
429  */
430 OCStackResult MOTProvisionPreconfigPIN(void *ctx, const OCProvisionDev_t *targetDeviceInfo,
431                                  const char* preconfPIN, size_t preconfPINLen, OCProvisionResultCB resultCallback)
432 {
433     OCStackResult postCredRes = OC_STACK_INVALID_CALLBACK;
434     bool freeFlag = true;
435     OCSecurityPayload* secPayload = NULL;
436     OTMContext_t *motCtx = NULL;
437     OicSecCred_t* pinCred = NULL;
438
439     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
440
441     VERIFY_NON_NULL(TAG, resultCallback, ERROR);
442     postCredRes = OC_STACK_INVALID_PARAM;
443     VERIFY_NON_NULL(TAG, targetDeviceInfo, ERROR);
444     VERIFY_NON_NULL(TAG, preconfPIN, ERROR);
445     VERIFY_SUCCESS(TAG, (0 != preconfPINLen), ERROR);
446     VERIFY_SUCCESS(TAG, (0 != preconfPINLen && OXM_PRECONFIG_PIN_MAX_SIZE >= preconfPINLen), ERROR);
447
448     postCredRes = OC_STACK_NO_MEMORY;
449     //Generate PIN based credential
450     pinCred = (OicSecCred_t*)OICCalloc(1, sizeof(OicSecCred_t));
451     VERIFY_NON_NULL(TAG, pinCred, ERROR);
452
453     pinCred->privateData.data = (uint8_t*)OICMalloc(preconfPINLen + 1);
454     VERIFY_NON_NULL(TAG, pinCred->privateData.data, ERROR);
455
456     memcpy(pinCred->privateData.data, preconfPIN, preconfPINLen);
457     pinCred->privateData.data[preconfPINLen] = '\0';
458     pinCred->privateData.len = preconfPINLen;
459     pinCred->privateData.encoding = OIC_ENCODING_RAW;
460     pinCred->credType = PIN_PASSWORD;
461     OICStrcpy(pinCred->subject.id, sizeof(pinCred->subject.id), WILDCARD_SUBJECT_ID.id);
462
463     //Generate the security payload using updated doxm
464     secPayload = (OCSecurityPayload*)OICCalloc(1, sizeof(OCSecurityPayload));
465     VERIFY_NON_NULL(TAG, secPayload, ERROR);
466     secPayload->base.type = PAYLOAD_TYPE_SECURITY;
467
468     postCredRes = CredToCBORPayload(pinCred, &secPayload->securityData, &secPayload->payloadSize, false);
469     VERIFY_SUCCESS(TAG, (OC_STACK_OK == postCredRes), ERROR);
470
471     OIC_LOG(DEBUG, TAG, "Created Credential payload to register PIN credential:");
472     OIC_LOG_BUFFER(DEBUG, TAG, secPayload->securityData, secPayload->payloadSize);
473
474     char query[MAX_URI_LENGTH + MAX_QUERY_LENGTH] = {0};
475     bool queryGenRes = PMGenerateQuery(true,
476                                        targetDeviceInfo->endpoint.addr,
477                                        targetDeviceInfo->securePort,
478                                        targetDeviceInfo->connType,
479                                        query, sizeof(query), OIC_RSRC_CRED_URI);
480     VERIFY_SUCCESS(TAG, (true == queryGenRes), ERROR);
481     OIC_LOG_V(DEBUG, TAG, "Query=%s", query);
482
483     //Create the MOT Context to handle the response message
484     motCtx = (OTMContext_t*)OICCalloc(1, sizeof(OTMContext_t));
485     VERIFY_NON_NULL(TAG, motCtx, ERROR);
486     motCtx->selectedDeviceInfo= targetDeviceInfo;
487     motCtx->ctxResultCallback = resultCallback;
488     motCtx->ctxResultArraySize =1;
489     motCtx->ctxHasError = false;
490     motCtx->userCtx = ctx;
491     motCtx->ctxResultArray = (OCProvisionResult_t*)OICCalloc(1, sizeof(OCProvisionResult_t));
492     VERIFY_NON_NULL(TAG, motCtx->ctxResultArray, ERROR);
493
494     //Send POST request
495     OCCallbackData cbData =  {.context=NULL, .cb=NULL, .cd=NULL};
496     cbData.cb = &MOTUpdateSecurityResourceCB;
497     cbData.context = (void *)motCtx;
498     OIC_LOG(DEBUG, TAG, "Sending POST Preconfiged PIN credenatial request to resource server");
499     postCredRes = OCDoResource(NULL, OC_REST_POST, query,
500                               &targetDeviceInfo->endpoint, (OCPayload*)secPayload,
501                               targetDeviceInfo->connType, OC_HIGH_QOS, &cbData, NULL, 0);
502     VERIFY_SUCCESS(TAG, (OC_STACK_OK == postCredRes), ERROR);
503
504     freeFlag = false;
505
506     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
507
508     return postCredRes;
509
510 exit:
511     //If POST request successfully sent, motCtx will be cleaned from response handler.
512     if(freeFlag && motCtx)
513     {
514         OICFree(motCtx->ctxResultArray);
515         OICFree(motCtx);
516     }
517     if(pinCred)
518     {
519         OICFree(pinCred->privateData.data);
520         OICFree(pinCred);
521     }
522     OIC_LOG_V(DEBUG, TAG, "Out %s : %d", __func__, postCredRes);
523     return postCredRes;
524 }
525
526
527 /**********************************************************************
528  * API for Sub Owner
529  **********************************************************************/
530
531 static OCStackResult StartMultipleOwnershipTransfer(OTMContext_t* motCtx,
532                                                     OCProvisionDev_t* selectedDevice);
533
534 static OTMContext_t* g_MotCtx = NULL;
535
536 static bool IsComplete(OTMContext_t* otmCtx)
537 {
538     for(size_t i = 0; i < otmCtx->ctxResultArraySize; i++)
539     {
540         if(OC_STACK_CONTINUE == otmCtx->ctxResultArray[i].res)
541         {
542             return false;
543         }
544     }
545
546     return true;
547 }
548
549 /**
550  * Function to save the result of multiple ownership transfer.
551  *
552  * @param[in,out] motCtx   Context instance of multiple ownership transfer.
553  * @param[in] res   result of multiple ownership transfer.
554  */
555 static void SetMOTResult(OTMContext_t* motCtx, const OCStackResult res)
556 {
557     OIC_LOG_V(DEBUG, TAG, "IN %s : %d ", __func__, res);
558     VERIFY_NON_NULL(TAG, motCtx, ERROR);
559
560     if(motCtx->selectedDeviceInfo)
561     {
562         //Revert psk_info callback in case of random PIN OxM
563         if(OIC_RANDOM_DEVICE_PIN == motCtx->selectedDeviceInfo->doxm->oxmSel ||
564            OIC_PRECONFIG_PIN == motCtx->selectedDeviceInfo->doxm->oxmSel)
565         {
566             if(CA_STATUS_OK != CAregisterPskCredentialsHandler(GetDtlsPskCredentials))
567             {
568                 OIC_LOG(WARNING, TAG, "Failed to revert the DTLS credential handler.");
569             }
570             OicUuid_t emptyUuid = { .id={0}};
571             SetUuidForPinBasedOxm(&emptyUuid);
572         }
573
574         OCStackResult pdmRetVal = PDMSetDeviceState(&motCtx->selectedDeviceInfo->doxm->deviceID,
575                                                     PDM_DEVICE_ACTIVE);
576         if (OC_STACK_OK != pdmRetVal)
577         {
578             OIC_LOG_V(ERROR, TAG, "Failed to add device information into PDM_DB : %d", res);
579         }
580
581         for(size_t i = 0; i < motCtx->ctxResultArraySize; i++)
582         {
583             if(memcmp(motCtx->selectedDeviceInfo->doxm->deviceID.id,
584                       motCtx->ctxResultArray[i].deviceId.id, UUID_LENGTH) == 0)
585             {
586                 motCtx->ctxResultArray[i].res = res;
587                 if(OC_STACK_OK != res)
588                 {
589                     motCtx->ctxHasError = true;
590                 }
591             }
592         }
593
594         //Remove the current OTM Context from OTM queue
595         RemoveOTMContext(motCtx->selectedDeviceInfo->endpoint.addr,
596                          motCtx->selectedDeviceInfo->securePort);
597
598         //If there is a request being performed, cancel it to prevent retransmission.
599         if(motCtx->ocDoHandle)
600         {
601             if (OC_STACK_OK !=  OCCancel(motCtx->ocDoHandle, OC_HIGH_QOS, NULL, 0))
602             {
603                 OIC_LOG(ERROR, TAG, "Failed to remove registered callback");
604             }
605             motCtx->ocDoHandle = NULL;
606         }
607
608         //If all request is completed, invoke the user callback.
609         if(IsComplete(motCtx))
610         {
611             motCtx->ctxResultCallback(motCtx->userCtx, motCtx->ctxResultArraySize,
612                                        motCtx->ctxResultArray, motCtx->ctxHasError);
613
614             OICFree(motCtx->ctxResultArray);
615             OICFree(motCtx);
616             motCtx = NULL;
617         }
618         else
619         {
620             if(OC_STACK_OK != StartMultipleOwnershipTransfer(motCtx,
621                                                      motCtx->selectedDeviceInfo->next))
622             {
623                 OIC_LOG(ERROR, TAG, "Failed to StartMultipleOwnershipTransfer");
624             }
625         }
626     }
627
628 exit:
629     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
630 }
631
632 /**
633  * API to add preconfigured PIN to local SVR DB.
634  *
635  * @param[in] targetDeviceInfo Selected target device.
636  * @param[in] preconfPIN Preconfig PIN which is used while multiple owner authentication
637  * @param[in] preconfPINLen Byte length of preconfig PIN
638  * @param[in] resultCallback callback provided by API user, callback will be called when
639  *            POST credential request recieves a response from resource server.
640  * @return OC_STACK_OK in case of success and other value otherwise.
641  */
642 OCStackResult MOTAddPreconfigPIN(const OCProvisionDev_t *targetDeviceInfo,
643                                  const char* preconfPIN, size_t preconfPINLen)
644 {
645     OCStackResult addCredRes = OC_STACK_INVALID_PARAM;
646     OicSecCred_t* pinCred = NULL;
647     bool freeFlag = true;
648
649     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
650
651     VERIFY_NON_NULL(TAG, targetDeviceInfo, ERROR);
652     VERIFY_NON_NULL(TAG, preconfPIN, ERROR);
653     VERIFY_SUCCESS(TAG, (0 != preconfPINLen), ERROR);
654     VERIFY_SUCCESS(TAG, (0 != preconfPINLen && OXM_PRECONFIG_PIN_MAX_SIZE >= preconfPINLen), ERROR);
655
656     OicSecCred_t* prevCred = GetCredResourceData(&targetDeviceInfo->doxm->deviceID);
657     if(NULL != prevCred)
658     {
659         OIC_LOG(INFO, TAG, "PIN/PW Credential already exist!");
660         return OC_STACK_OK;
661     }
662
663     addCredRes = OC_STACK_NO_MEMORY;
664     //Generate PIN based credential
665     pinCred = (OicSecCred_t*)OICCalloc(1, sizeof(OicSecCred_t));
666     VERIFY_NON_NULL(TAG, pinCred, ERROR);
667
668     pinCred->privateData.data = (uint8_t*)OICMalloc(preconfPINLen + 1);
669     VERIFY_NON_NULL(TAG, pinCred->privateData.data, ERROR);
670
671     memcpy(pinCred->privateData.data, preconfPIN, preconfPINLen);
672     pinCred->privateData.data[preconfPINLen] = '\0';
673     pinCred->privateData.len = preconfPINLen;
674     pinCred->privateData.encoding = OIC_ENCODING_RAW;
675     pinCred->credType = PIN_PASSWORD;
676     memcpy(pinCred->subject.id, targetDeviceInfo->doxm->deviceID.id, sizeof(pinCred->subject.id));
677
678     addCredRes = AddCredential(pinCred);
679     VERIFY_SUCCESS(TAG, (OC_STACK_OK == addCredRes), ERROR);
680
681     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
682
683     return addCredRes;
684
685 exit:
686     if(pinCred)
687     {
688         OICFree(pinCred->privateData.data);
689         OICFree(pinCred);
690     }
691     OIC_LOG_V(DEBUG, TAG, "In %s : %d", __func__, addCredRes);
692     return addCredRes;
693 }
694
695 /**
696  * Function to save the SubOwner PSK.
697  *
698  * @param[in] selectedDeviceInfo   selected device information to performing provisioning.
699  * @return  OC_STACK_OK on success
700  */
701 static OCStackResult SaveSubOwnerPSK(OCProvisionDev_t *selectedDeviceInfo)
702 {
703     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
704
705     OCStackResult res = OC_STACK_ERROR;
706
707     CAEndpoint_t endpoint;
708     memset(&endpoint, 0x00, sizeof(CAEndpoint_t));
709     OICStrcpy(endpoint.addr, MAX_ADDR_STR_SIZE_CA, selectedDeviceInfo->endpoint.addr);
710     endpoint.addr[MAX_ADDR_STR_SIZE_CA - 1] = '\0';
711     endpoint.port = selectedDeviceInfo->securePort;
712     endpoint.adapter = selectedDeviceInfo->endpoint.adapter;
713
714     OicUuid_t ownerDeviceID = {.id={0}};
715     if (OC_STACK_OK != GetDoxmDeviceID(&ownerDeviceID))
716     {
717         OIC_LOG(ERROR, TAG, "Error while retrieving SubOwner's device ID");
718         return res;
719     }
720
721     uint8_t ownerPSK[OWNER_PSK_LENGTH_128] = {0};
722     OicSecKey_t ownerKey = {ownerPSK, OWNER_PSK_LENGTH_128};
723
724     //Generating SubOwnerPSK
725     CAResult_t pskRet = CAGenerateOwnerPSK(&endpoint,
726             (uint8_t *)GetOxmString(selectedDeviceInfo->doxm->oxmSel),
727             strlen(GetOxmString(selectedDeviceInfo->doxm->oxmSel)),
728             ownerDeviceID.id, sizeof(ownerDeviceID.id),
729             selectedDeviceInfo->doxm->deviceID.id, sizeof(selectedDeviceInfo->doxm->deviceID.id),
730             ownerPSK, OWNER_PSK_LENGTH_128);
731
732     if (CA_STATUS_OK == pskRet)
733     {
734         OIC_LOG(DEBUG, TAG, "SubOwner PSK dump:");
735         OIC_LOG_BUFFER(DEBUG, TAG, ownerPSK, OWNER_PSK_LENGTH_128);
736         //Generating new credential for provisioning tool
737         OicSecCred_t *cred = GenerateCredential(&selectedDeviceInfo->doxm->deviceID,
738                                       SYMMETRIC_PAIR_WISE_KEY, NULL,
739                                       &ownerKey, &ownerDeviceID, &ownerDeviceID);
740         VERIFY_NON_NULL(TAG, cred, ERROR);
741
742         uint32_t outSize = 0;
743         size_t b64BufSize = B64ENCODE_OUT_SAFESIZE((OWNER_PSK_LENGTH_128 + 1));
744         char* b64Buf = (uint8_t *)OICCalloc(1, b64BufSize);
745         VERIFY_NON_NULL(TAG, b64Buf, ERROR);
746         b64Encode(cred->privateData.data, cred->privateData.len, b64Buf, b64BufSize, &outSize);
747
748         OICFree( cred->privateData.data );
749         cred->privateData.data = (uint8_t *)OICCalloc(1, outSize + 1);
750         if (NULL == cred->privateData.data)
751         {
752             OICFree(b64Buf);
753             return res;
754         }
755
756         strncpy(cred->privateData.data, b64Buf, outSize);
757         cred->privateData.data[outSize] = '\0';
758         cred->privateData.encoding = OIC_ENCODING_BASE64;
759         cred->privateData.len = outSize;
760         OICFree(b64Buf);
761
762         //Add SubOwnerPSK
763         res = AddCredential(cred);
764         if(res != OC_STACK_OK)
765         {
766             DeleteCredList(cred);
767             return res;
768         }
769     }
770     else
771     {
772         OIC_LOG(ERROR, TAG, "CAGenerateOwnerPSK failed");
773     }
774
775     OIC_LOG_V(DEBUG, TAG, "Out %s : %d", __func__, res);
776 exit:
777     return res;
778 }
779
780
781 /**
782  * Response handler for update subowner crendetial request.
783  *
784  * @param[in] ctx             ctx value passed to callback from calling function.
785  * @param[in] UNUSED          handle to an invocation
786  * @param[in] clientResponse  Response from queries to remote servers.
787  * @return  OC_STACK_DELETE_TRANSACTION to delete the transaction
788  *          and  OC_STACK_KEEP_TRANSACTION to keep it.
789  */
790 static OCStackApplicationResult SubOwnerCredentialHandler(void *ctx, OCDoHandle UNUSED,
791                                 OCClientResponse *clientResponse)
792 {
793     VERIFY_NON_NULL(TAG, clientResponse, WARNING);
794     VERIFY_NON_NULL(TAG, ctx, WARNING);
795
796     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
797
798     (void)UNUSED;
799     OTMContext_t* motCtx = (OTMContext_t*)ctx;
800
801     if(OC_STACK_RESOURCE_CHANGED == clientResponse->result)
802     {
803         if(motCtx && motCtx->selectedDeviceInfo)
804         {
805             //Delete previous credential such as preconfigured-pin
806             RemoveCredential(&(motCtx->selectedDeviceInfo->doxm->deviceID));
807             OCStackResult res = SaveSubOwnerPSK(motCtx->selectedDeviceInfo);
808             if(OC_STACK_OK == res)
809             {
810                 //Close the temporal secure session to verify the owner credential
811                 CAEndpoint_t* endpoint = (CAEndpoint_t *)&motCtx->selectedDeviceInfo->endpoint;
812                 endpoint->port = motCtx->selectedDeviceInfo->securePort;
813                 CAResult_t caResult = CAcloseSslSession(endpoint);
814                 if(CA_STATUS_OK != caResult)
815                 {
816                     OIC_LOG(ERROR, TAG, "Failed to close DTLS session");
817                     SetMOTResult(motCtx, OC_STACK_ERROR);
818                     return OC_STACK_DELETE_TRANSACTION;
819                 }
820
821                 // TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA_256 = 0xC037, /**< see RFC 5489 */
822                 caResult = CASelectCipherSuite(0xC037, endpoint->adapter);
823                 if(CA_STATUS_OK != caResult)
824                 {
825                     OIC_LOG(ERROR, TAG, "Failed to select TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA_256");
826                     SetMOTResult(motCtx, OC_STACK_ERROR);
827                     return OC_STACK_DELETE_TRANSACTION;
828                 }
829
830                 SetMOTResult(motCtx, OC_STACK_OK);
831             }
832             else
833             {
834                 OIC_LOG(ERROR, TAG, "Failed to save the SubOwner PSK.");
835                 SetMOTResult(motCtx, res);
836                 return OC_STACK_DELETE_TRANSACTION;
837             }
838         }
839     }
840     else
841     {
842         OIC_LOG_V(ERROR, TAG, "SubOwnerCredentialHandler : Unexpected result %d",
843                   clientResponse->result);
844         SetMOTResult(motCtx, clientResponse->result);
845     }
846
847     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
848
849 exit:
850     return  OC_STACK_DELETE_TRANSACTION;
851 }
852
853
854 static OCStackResult PostSubOwnerCredential(OTMContext_t* motCtx)
855 {
856     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
857
858     if(!motCtx || !motCtx->selectedDeviceInfo)
859     {
860         OIC_LOG(ERROR, TAG, "Invalid parameters");
861         return OC_STACK_INVALID_PARAM;
862     }
863
864     OCProvisionDev_t* deviceInfo = motCtx->selectedDeviceInfo;
865     char query[MAX_URI_LENGTH + MAX_QUERY_LENGTH] = {0};
866
867     if(!PMGenerateQuery(true,
868                         deviceInfo->endpoint.addr, deviceInfo->securePort,
869                         deviceInfo->connType,
870                         query, sizeof(query), OIC_RSRC_CRED_URI))
871     {
872         OIC_LOG(ERROR, TAG, "PostSubOwnerCredential : Failed to generate query");
873         return OC_STACK_ERROR;
874     }
875     OIC_LOG_V(DEBUG, TAG, "Query=%s", query);
876     OCSecurityPayload* secPayload = (OCSecurityPayload*)OICCalloc(1, sizeof(OCSecurityPayload));
877     if(!secPayload)
878     {
879         OIC_LOG(ERROR, TAG, "Failed to memory allocation");
880         return OC_STACK_NO_MEMORY;
881     }
882
883     //Generate sub-owner credential for new device
884     secPayload->base.type = PAYLOAD_TYPE_SECURITY;
885
886     /**
887      * Because of the deadlock issue, we can not get a server's session information at this time.
888      * So use the dumpy owner credential instance to send POST credential request.
889      */
890     OicUuid_t ownerId = {.id={0}};
891     if(OC_STACK_OK == GetDoxmDeviceID(&ownerId))
892     {
893         OicSecCred_t newCredential;
894         memset(&newCredential, 0x0, sizeof(OicSecCred_t));
895         newCredential.next = NULL;
896         newCredential.credType = SYMMETRIC_PAIR_WISE_KEY;
897
898         //Set subject ID as SubOwner's ID
899         memcpy(&(newCredential.subject), &ownerId, sizeof(OicUuid_t));
900
901         //Set eowner ID as SubOwner's ID
902         if(NULL == newCredential.eownerID)
903         {
904             newCredential.eownerID = OICCalloc(1, sizeof(OicUuid_t));
905             if(NULL == newCredential.eownerID)
906             {
907                 OICFree(secPayload);
908                 return OC_STACK_NO_MEMORY;
909             }
910         }
911         memcpy(newCredential.eownerID->id, ownerId.id, sizeof(ownerId.id));
912
913         //Fill private data as empty string
914         newCredential.privateData.data = "";
915         newCredential.privateData.len = 0;
916         newCredential.privateData.encoding = OIC_ENCODING_BASE64;
917
918 #if defined(__WITH_DTLS__) || defined(__WITH_TLS__)
919         newCredential.publicData.data = NULL;
920         newCredential.publicData.len = 0;
921         newCredential.publicData.encoding = OIC_ENCODING_RAW;
922 #endif
923         //Send owner credential to new device : POST /oic/sec/cred [ owner credential ]
924         if (OC_STACK_OK != CredToCBORPayload(&newCredential, &secPayload->securityData,
925                                         &secPayload->payloadSize, 0))
926         {
927             OICFree(secPayload);
928             OIC_LOG(ERROR, TAG, "Error while converting bin to cbor.");
929             return OC_STACK_ERROR;
930         }
931         OIC_LOG(DEBUG, TAG, "Cred Payload:");
932         OIC_LOG_BUFFER(DEBUG, TAG, secPayload->securityData, secPayload->payloadSize);
933         OICFree(newCredential.eownerID);
934
935         OCCallbackData cbData;
936         cbData.cb = &SubOwnerCredentialHandler;
937         cbData.context = (void *)motCtx;
938         cbData.cd = NULL;
939         OCStackResult res = OCDoResource(NULL, OC_REST_POST, query,
940                                          &deviceInfo->endpoint, (OCPayload*)secPayload,
941                                          deviceInfo->connType, OC_HIGH_QOS, &cbData, NULL, 0);
942         if (res != OC_STACK_OK)
943         {
944             OIC_LOG(ERROR, TAG, "OCStack resource error");
945         }
946     }
947     else
948     {
949         OIC_LOG(ERROR, TAG, "Failed to read DOXM device ID.");
950         return OC_STACK_NO_RESOURCE;
951     }
952
953     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
954
955     return OC_STACK_OK;
956 }
957
958
959 /**
960  * Function to handle the handshake result in MOT.
961  * This function will be invoked after DTLS handshake
962  * @param   endPoint  [IN] The remote endpoint.
963  * @param   errorInfo [IN] Error information from the endpoint.
964  * @return  NONE
965  */
966 static void MOTDtlsHandshakeCB(const CAEndpoint_t *endpoint, const CAErrorInfo_t *info)
967 {
968     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
969
970     if(NULL != endpoint && NULL != info)
971     {
972         OIC_LOG_V(INFO, TAG, "Received status from remote device(%s:%d) : %d",
973                  endpoint->addr, endpoint->port, info->result);
974
975         OTMContext_t* motCtx = GetOTMContext(endpoint->addr, endpoint->port);
976         if(motCtx)
977         {
978             OicSecDoxm_t* newDevDoxm = motCtx->selectedDeviceInfo->doxm;
979
980             if(NULL != newDevDoxm)
981             {
982                 OicUuid_t emptyUuid = {.id={0}};
983
984                 //Make sure the address matches.
985                 if(strncmp(motCtx->selectedDeviceInfo->endpoint.addr,
986                    endpoint->addr,
987                    sizeof(endpoint->addr)) == 0 &&
988                    motCtx->selectedDeviceInfo->securePort == endpoint->port)
989                 {
990                     OCStackResult res = OC_STACK_ERROR;
991
992                     //If temporal secure sesstion established successfully
993                     if(CA_STATUS_OK == info->result)
994                     {
995                         //POST sub owner credential to new device.
996                         res = PostSubOwnerCredential(motCtx);
997                         if(OC_STACK_OK != res)
998                         {
999                             OIC_LOG(ERROR, TAG,
1000                                     "Failed to send POST request for SubOwner Credential");
1001                             SetMOTResult(motCtx, res);
1002                         }
1003                     }
1004                     //In case of authentication failure
1005                     else if(CA_DTLS_AUTHENTICATION_FAILURE == info->result)
1006                     {
1007                         //in case of error from wrong PIN, re-start the ownership transfer
1008                         if(OIC_RANDOM_DEVICE_PIN == newDevDoxm->oxmSel)
1009                         {
1010                             OIC_LOG(ERROR, TAG, "The PIN number may incorrect.");
1011
1012                             motCtx->attemptCnt++;
1013
1014                             if(WRONG_PIN_MAX_ATTEMP > motCtx->attemptCnt)
1015                             {
1016                                 res = StartMultipleOwnershipTransfer(motCtx, motCtx->selectedDeviceInfo);
1017                                 if(OC_STACK_OK != res)
1018                                 {
1019                                     SetMOTResult(motCtx, res);
1020                                     OIC_LOG(ERROR, TAG, "Failed to Re-StartOwnershipTransfer");
1021                                 }
1022                             }
1023                             else
1024                             {
1025                                 OIC_LOG(ERROR, TAG, "User has exceeded the number of authentication attempts.");
1026                                 SetMOTResult(motCtx, OC_STACK_AUTHENTICATION_FAILURE);
1027                             }
1028                         }
1029                         else
1030                         {
1031                             OIC_LOG(ERROR, TAG, "Failed to establish DTLS session.");
1032                             SetMOTResult(motCtx, OC_STACK_AUTHENTICATION_FAILURE);
1033                         }
1034                     }
1035                 }
1036             }
1037         }
1038         else
1039         {
1040             OIC_LOG_V(ERROR, TAG, "Can not find the [%s:%d]'s OTMContext for MOT", endpoint->addr, endpoint->port);
1041         }
1042     }
1043
1044     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
1045 }
1046
1047 static OCStackResult StartMultipleOwnershipTransfer(OTMContext_t* motCtx,
1048                                                     OCProvisionDev_t* selectedDevice)
1049 {
1050     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
1051     OCStackResult res = OC_STACK_INVALID_PARAM;
1052     OicUuid_t myUuid = {.id={0}};
1053
1054     VERIFY_NON_NULL(TAG, motCtx, ERROR);
1055     VERIFY_NON_NULL(TAG, selectedDevice, ERROR);
1056     VERIFY_NON_NULL(TAG, selectedDevice->doxm, ERROR);
1057     motCtx->selectedDeviceInfo = selectedDevice;
1058
1059     res = GetDoxmDeviceID(&myUuid);
1060     if(OC_STACK_OK != res)
1061     {
1062         OIC_LOG(ERROR, TAG, "Failed to GetDoxmDeviceID");
1063         SetMOTResult(motCtx, res);
1064         return res;
1065     }
1066     if(memcmp(selectedDevice->doxm->owner.id, myUuid.id, sizeof(myUuid.id)) == 0)
1067     {
1068         res = OC_STACK_INVALID_DEVICE_INFO;
1069         OIC_LOG(ERROR, TAG, "Owner cannot be registered as sub-owner.");
1070         SetMOTResult(motCtx, res);
1071         return res;
1072     }
1073     if (NULL == selectedDevice->doxm->mom ||
1074         (selectedDevice->doxm->mom &&
1075          OIC_MULTIPLE_OWNER_DISABLE == selectedDevice->doxm->mom->mode))
1076     {
1077         res = OC_STACK_NOT_ACCEPTABLE;
1078         OIC_LOG(ERROR, TAG, "Selected device's MOT is disabled.");
1079         SetMOTResult(motCtx, res);
1080         return res;
1081     }
1082
1083     //Checking duplication of Device ID.
1084     char* strUuid = NULL;
1085     PdmDeviceState_t deviceState = PDM_DEVICE_UNKNOWN;
1086     res = PDMGetDeviceState(&selectedDevice->doxm->deviceID, &deviceState);
1087     VERIFY_SUCCESS(TAG, OC_STACK_OK == res, ERROR);
1088
1089     res = ConvertUuidToStr(&selectedDevice->doxm->deviceID, &strUuid);
1090     if(OC_STACK_OK != res)
1091     {
1092         OIC_LOG(ERROR, TAG, "Failed to convert UUID to str");
1093         OICFree(strUuid);
1094         SetMOTResult(motCtx, res);
1095         return res;
1096     }
1097
1098     if(PDM_DEVICE_STALE == deviceState)
1099     {
1100         OIC_LOG_V(WARNING, TAG, "Detected duplicated UUID in stale status, "
1101                            "[%s] will be removed from PDM", strUuid);
1102
1103         res = PDMDeleteDevice(&selectedDevice->doxm->deviceID);
1104         if(OC_STACK_OK != res)
1105         {
1106             OIC_LOG(ERROR, TAG, "Internal error in PDMDeleteDevice");
1107             OICFree(strUuid);
1108             SetMOTResult(motCtx, res);
1109             return res;
1110         }
1111     }
1112     else if(PDM_DEVICE_INIT == deviceState)
1113     {
1114         OIC_LOG_V(ERROR, TAG, "[%s]'s multiple owner transfer process is already started.", strUuid);
1115         OICFree(strUuid);
1116         SetMOTResult(motCtx, OC_STACK_DUPLICATE_REQUEST);
1117         return OC_STACK_OK;
1118     }
1119
1120     res = PDMAddDevice(&selectedDevice->doxm->deviceID);
1121     if (OC_STACK_OK != res)
1122     {
1123         OIC_LOG_V(INFO, TAG, "Error in PDMAddDevice for [%s]", strUuid);
1124         OICFree(strUuid);
1125         SetMOTResult(motCtx, res);
1126         return res;
1127     }
1128     OICFree(strUuid);
1129
1130     //Register DTLS event handler to catch the dtls event while handshake
1131     if(CA_STATUS_OK != CAregisterSslHandshakeCallback(MOTDtlsHandshakeCB))
1132     {
1133         OIC_LOG(WARNING, TAG, "StartOwnershipTransfer : Failed to register DTLS handshake callback.");
1134     }
1135
1136     OicSecOxm_t oxmSel = selectedDevice->doxm->oxmSel;
1137     OIC_LOG_V(DEBUG, TAG, "Multiple Ownership Transfer method = %d", (int)oxmSel);
1138
1139     if(OIC_PRECONFIG_PIN != oxmSel && OIC_RANDOM_DEVICE_PIN != oxmSel)
1140     {
1141         OIC_LOG(ERROR, TAG, "Unsupported OxM");
1142         return OC_STACK_ERROR;
1143     }
1144
1145     res = OTMSetOTCallback(selectedDevice->doxm->oxmSel, &motCtx->otmCallback);
1146     if(OC_STACK_OK != res)
1147     {
1148         OIC_LOG_V(ERROR, TAG, "Error in OTMSetOTCallback : %d", res);
1149         return res;
1150     }
1151     //Only two functions required for MOT
1152     VERIFY_NON_NULL(TAG, motCtx->otmCallback.loadSecretCB, ERROR);
1153     VERIFY_NON_NULL(TAG, motCtx->otmCallback.createSecureSessionCB, ERROR);
1154
1155     if(OIC_RANDOM_DEVICE_PIN == oxmSel)
1156     {
1157         if(CA_STATUS_OK != CAregisterPskCredentialsHandler(GetDtlsPskForRandomPinOxm))
1158         {
1159             OIC_LOG(ERROR, TAG, "Failed to register DTLS credential handler for Random PIN OxM.");
1160         }
1161     }
1162
1163     //Save the current context instance to use on the dtls handshake callback
1164     res = AddOTMContext(motCtx, selectedDevice->endpoint.addr, selectedDevice->securePort);
1165     VERIFY_SUCCESS(TAG, OC_STACK_OK == res, ERROR);
1166
1167     res = motCtx->otmCallback.loadSecretCB(motCtx);
1168     VERIFY_SUCCESS(TAG, OC_STACK_OK == res, ERROR);
1169
1170     res = motCtx->otmCallback.createSecureSessionCB(motCtx);
1171     VERIFY_SUCCESS(TAG, OC_STACK_OK == res, ERROR);
1172
1173     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
1174
1175 exit:
1176     return res;
1177 }
1178
1179 OCStackResult MOTDoOwnershipTransfer(void* ctx,
1180                                      OCProvisionDev_t *selectedDevicelist,
1181                                      OCProvisionResultCB resultCallback)
1182 {
1183     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
1184     OCStackResult res = OC_STACK_INVALID_PARAM;
1185     OTMContext_t* motCtx = NULL;
1186     OCProvisionDev_t* pCurDev = NULL;
1187
1188     VERIFY_NON_NULL(TAG, selectedDevicelist, ERROR);
1189     VERIFY_NON_NULL(TAG, resultCallback, ERROR);
1190
1191     res = OC_STACK_NO_MEMORY;
1192     motCtx = (OTMContext_t*)OICCalloc(1,sizeof(OTMContext_t));
1193     VERIFY_NON_NULL(TAG, motCtx, ERROR);
1194
1195     motCtx->ctxResultCallback = resultCallback;
1196     motCtx->ctxHasError = false;
1197     motCtx->userCtx = ctx;
1198     motCtx->ctxResultArraySize = 0;
1199     LL_FOREACH(selectedDevicelist, pCurDev)
1200     {
1201         motCtx->ctxResultArraySize++;
1202     }
1203
1204     motCtx->ctxResultArray =
1205         (OCProvisionResult_t*)OICCalloc(motCtx->ctxResultArraySize, sizeof(OCProvisionResult_t));
1206     VERIFY_NON_NULL(TAG, motCtx->ctxResultArray, ERROR);
1207
1208     //Fill the device UUID for result array.
1209     size_t devIdx = 0;
1210     pCurDev = NULL;
1211     LL_FOREACH(selectedDevicelist, pCurDev)
1212     {
1213         memcpy(motCtx->ctxResultArray[devIdx].deviceId.id,
1214                pCurDev->doxm->deviceID.id,
1215                UUID_LENGTH);
1216         motCtx->ctxResultArray[devIdx].res = OC_STACK_CONTINUE;
1217         devIdx++;
1218     }
1219
1220     motCtx->selectedDeviceInfo = selectedDevicelist;
1221     res = StartMultipleOwnershipTransfer(motCtx, selectedDevicelist);
1222
1223     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
1224
1225     return res;
1226 exit:
1227     if(OC_STACK_OK != res)
1228     {
1229         if(motCtx)
1230         {
1231             OICFree(motCtx->ctxResultArray);
1232             OICFree(motCtx);
1233         }
1234     }
1235     OIC_LOG_V(DEBUG, TAG, "Out %s : %d", __func__, res);
1236
1237     return res;
1238 }
1239
1240 OCStackResult MOTRemoveSubOwner(void* ctx,
1241                                 const OCProvisionDev_t *targetDeviceInfo,
1242                                 const OicUuid_t* subOwner,
1243                                 OCProvisionResultCB resultCallback)
1244 {
1245     OCStackResult deleteSubOwnerRes = OC_STACK_INVALID_CALLBACK;
1246     OTMContext_t *motCtx = NULL;
1247     char* strUuid = NULL;
1248
1249     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
1250
1251     VERIFY_NON_NULL(TAG, resultCallback, ERROR);
1252     deleteSubOwnerRes = OC_STACK_INVALID_PARAM;
1253     VERIFY_NON_NULL(TAG, targetDeviceInfo, ERROR);
1254     VERIFY_NON_NULL(TAG, subOwner, ERROR);
1255
1256     deleteSubOwnerRes = OC_STACK_NO_MEMORY;
1257     //Generate the qurey to delete sub-owner
1258     if (memcmp(subOwner->id, WILDCARD_SUBJECT_ID.id, sizeof(WILDCARD_SUBJECT_ID.id)) == 0)
1259     {
1260         strUuid = OICStrdup(WILDCARD_RESOURCE_URI);
1261         VERIFY_NON_NULL(TAG, strUuid, ERROR);
1262     }
1263     else
1264     {
1265         VERIFY_SUCCESS(TAG, (OC_STACK_OK == ConvertUuidToStr(subOwner, &strUuid)), ERROR);
1266     }
1267     char url[MAX_URI_LENGTH + MAX_QUERY_LENGTH] = {0};
1268     snprintf(url, sizeof(url), "%s?%s=%s", OIC_RSRC_DOXM_URI, OIC_JSON_SUBOWNERID_NAME, strUuid);
1269
1270     char query[MAX_URI_LENGTH + MAX_QUERY_LENGTH] = {0};
1271     bool queryGenRes = PMGenerateQuery(true,
1272                                        targetDeviceInfo->endpoint.addr,
1273                                        targetDeviceInfo->securePort,
1274                                        targetDeviceInfo->connType,
1275                                        query, sizeof(query), url);
1276     VERIFY_SUCCESS(TAG, (true == queryGenRes), ERROR);
1277
1278     OIC_LOG_V(DEBUG, TAG, "Query=%s", query);
1279
1280     //Create the MOT Context to handle the response message
1281     motCtx = (OTMContext_t*)OICCalloc(1, sizeof(OTMContext_t));
1282     VERIFY_NON_NULL(TAG, motCtx, ERROR);
1283     motCtx->selectedDeviceInfo= targetDeviceInfo;
1284     motCtx->ctxResultCallback = resultCallback;
1285     motCtx->ctxResultArraySize =1;
1286     motCtx->ctxHasError = false;
1287     motCtx->userCtx = ctx;
1288     motCtx->ctxResultArray = (OCProvisionResult_t*)OICCalloc(1, sizeof(OCProvisionResult_t));
1289     VERIFY_NON_NULL(TAG, motCtx->ctxResultArray, ERROR);
1290
1291     //Send POST request
1292     OCCallbackData cbData =  {.context=NULL, .cb=NULL, .cd=NULL};
1293     cbData.cb = &MOTDeleteSecurityResourceCB;
1294     cbData.context = (void *)motCtx;
1295     OIC_LOG(DEBUG, TAG, "Sending DELETE sub-owner request to resource server");
1296     deleteSubOwnerRes = OCDoResource(NULL, OC_REST_DELETE, query,
1297                                      &targetDeviceInfo->endpoint, NULL,
1298                                      targetDeviceInfo->connType, OC_HIGH_QOS, &cbData, NULL, 0);
1299     VERIFY_SUCCESS(TAG, (OC_STACK_OK == deleteSubOwnerRes), ERROR);
1300
1301     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
1302
1303     OICFree(strUuid);
1304
1305     return deleteSubOwnerRes;
1306
1307 exit:
1308     //If DELETE request successfully sent, motCtx will be cleaned from response handler.
1309     OICFree(strUuid);
1310     if (motCtx)
1311     {
1312         OICFree(motCtx->ctxResultArray);
1313         OICFree(motCtx);
1314     }
1315     OIC_LOG_V(DEBUG, TAG, "Out %s : %d", __func__, deleteSubOwnerRes);
1316     return deleteSubOwnerRes;
1317 }
1318