CONPRO-1467: Improve Reset
[platform/upstream/iotivity.git] / resource / csdk / security / src / doxmresource.c
1 //******************************************************************
2 //
3 // Copyright 2015 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 #include "iotivity_config.h"
21 #include <stdlib.h>
22 #include <string.h>
23
24 #ifdef HAVE_STRINGS_H
25 #include <strings.h>
26 #endif
27
28 #include "ocstack.h"
29 #include "oic_malloc.h"
30 #include "payload_logging.h"
31 #include "utlist.h"
32 #include "ocrandom.h"
33 #include "ocpayload.h"
34 #include "ocpayloadcbor.h"
35 #include "cainterface.h"
36 #include "ocserverrequest.h"
37 #include "resourcemanager.h"
38 #include "doxmresource.h"
39 #include "pstatresource.h"
40 #include "aclresource.h"
41 #include "amaclresource.h"
42 #include "pconfresource.h"
43 #include "dpairingresource.h"
44 #include "psinterface.h"
45 #include "srmresourcestrings.h"
46 #include "securevirtualresourcetypes.h"
47 #include "credresource.h"
48 #include "srmutility.h"
49 #include "pinoxmcommon.h"
50 #include "oxmverifycommon.h"
51 #include "octhread.h"
52 #include "oic_time.h"
53 #include "oic_string.h"
54
55 #if defined(__WITH_DTLS__) || defined (__WITH_TLS__)
56 #include "pkix_interface.h"
57 #include "ca_adapter_net_ssl.h"
58 #endif
59
60 #define TAG  "OIC_SRM_DOXM"
61 #define CHAR_ZERO ('0')
62
63 /** Default cbor payload size. This value is increased in case of CborErrorOutOfMemory.
64  * The value of payload size is increased until reaching belox max cbor size. */
65 static const uint16_t CBOR_SIZE = 512;
66
67 /** Max cbor size payload. */
68 static const uint16_t CBOR_MAX_SIZE = 4400;
69
70 #if defined(__WITH_DTLS__) || defined (__WITH_TLS__)
71 /** MAX uuid seed size */
72 #define MAX_UUID_SEED_SIZE (64)
73 /** MIN uuid seed size */
74 #define MIN_UUID_SEED_SIZE (8)
75
76 /** Buffer to save the seed of device UUID */
77 static uint8_t gUuidSeed[MAX_UUID_SEED_SIZE];
78 static size_t gUuidSeedSize = 0;
79 #endif
80
81 #ifdef MULTIPLE_OWNER
82 #define MAX_SUBOWNER_SIZE (64)
83 #define MIN_SUBOWNER_SIZE (1)
84 #define DEFAULT_SUBOWNER_SIZE (32)
85
86 static size_t gMaxSubOwnerSize = DEFAULT_SUBOWNER_SIZE;
87 #endif
88
89 typedef enum ConfirmState{
90     CONFIRM_STATE_READY = 0,
91     CONFIRM_STATE_WAIT = 1,
92     CONFIRM_STATE_ACCEPTED = 2,
93     CONFIRM_STATE_DENIED = 3
94 }ConfirmState_t;
95
96 static OicSecDoxm_t        *gDoxm = NULL;
97 static oc_mutex            g_mutexDoxm = NULL;
98 static bool                g_isDoxmNull = false;
99 static OCResourceHandle    gDoxmHandle = NULL;
100 static oc_mutex            g_mutexWait;
101 static oc_thread           g_waitConfirmThreadId;
102 oc_cond                    g_condWait;
103 static InformOxmSelectedCallback_t g_InformOxmSelectedCallback = NULL;
104 static bool                g_isConfirmResult;
105
106 static OicSecOxm_t gOicSecDoxmJustWorks = OIC_JUST_WORKS;
107 static OicSecDoxm_t gDefaultDoxm =
108 {
109     NULL,                   /* OicUrn_t *oxmType */
110     0,                      /* size_t oxmTypeLen */
111     &gOicSecDoxmJustWorks,  /* uint16_t *oxm */
112     1,                      /* size_t oxmLen */
113     OIC_JUST_WORKS,         /* uint16_t oxmSel */
114     SYMMETRIC_PAIR_WISE_KEY,/* OicSecCredType_t sct */
115     false,                  /* bool owned */
116     {.id = {0}},            /* OicUuid_t deviceID */
117     false,                  /* bool dpc */
118     {.id = {0}},            /* OicUuid_t owner */
119 #ifdef MULTIPLE_OWNER
120     NULL,                   /* OicSecSubOwner_t sub-owner list */
121     NULL,                   /* OicSecMomType_t multiple owner mode */
122 #endif //MULTIPLE_OWNER
123     {.id = {0}},            /* OicUuid_t rownerID */
124 };
125
126 static uint16_t gConfirmMsgId = 0;
127 static ConfirmState_t gConfirmState = CONFIRM_STATE_READY;
128
129 static uint8_t gEmptyUuid[UUID_LENGTH] = {0};
130
131 /**
132  * This method is internal method.
133  * the param roParsed is optionally used to know whether cborPayload has
134  * at least read only property value or not.
135  */
136 static OCStackResult CBORPayloadToDoxmBin(const uint8_t *cborPayload, size_t size,
137                                 OicSecDoxm_t **doxm, bool *roParsed);
138
139 void DeleteDoxmBinData(OicSecDoxm_t* doxm)
140 {
141     if (doxm)
142     {
143         //Clean oxmType
144         for (size_t i = 0; i < doxm->oxmTypeLen; i++)
145         {
146             OICFree(doxm->oxmType[i]);
147         }
148         OICFree(doxm->oxmType);
149
150         //clean oxm
151         OICFree(doxm->oxm);
152
153 #ifdef MULTIPLE_OWNER
154         //clean mom
155         OICFree(doxm->mom);
156
157         //clean sub-owner list
158         if(NULL != doxm->subOwners)
159         {
160             OicSecSubOwner_t* subowner = NULL;
161             OicSecSubOwner_t* temp = NULL;
162             LL_FOREACH_SAFE(doxm->subOwners, subowner, temp)
163             {
164                 LL_DELETE(doxm->subOwners, subowner);
165                 OICFree(subowner);
166             }
167         }
168 #endif //MULTIPLE_OWNER
169
170         //Clean doxm itself
171         OICFree(doxm);
172     }
173
174     if(g_mutexDoxm)
175     {
176         oc_mutex_free(g_mutexDoxm);
177         g_mutexDoxm = NULL;
178     }
179 }
180
181 OCStackResult DoxmToCBORPayload(const OicSecDoxm_t *doxm, uint8_t **payload, size_t *size,
182                                 bool rwOnly)
183 {
184     if (NULL == doxm || NULL == payload || NULL != *payload || NULL == size)
185     {
186         return OC_STACK_INVALID_PARAM;
187     }
188     size_t cborLen = *size;
189     if (0 == cborLen)
190     {
191         cborLen = CBOR_SIZE;
192     }
193     *payload = NULL;
194     *size = 0;
195
196     OCStackResult ret = OC_STACK_ERROR;
197
198     CborEncoder encoder;
199     CborEncoder doxmMap;
200     char* strUuid = NULL;
201
202     int64_t cborEncoderResult = CborNoError;
203
204     uint8_t *outPayload = (uint8_t *)OICCalloc(1, cborLen);
205     VERIFY_NON_NULL(TAG, outPayload, ERROR);
206     cbor_encoder_init(&encoder, outPayload, cborLen, 0);
207
208     cborEncoderResult = cbor_encoder_create_map(&encoder, &doxmMap, CborIndefiniteLength);
209     VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding Doxm Map.");
210
211     //OxmType -- Not Mandatory
212     if (doxm->oxmTypeLen > 0)
213     {
214         CborEncoder oxmType;
215         cborEncoderResult = cbor_encode_text_string(&doxmMap, OIC_JSON_OXM_TYPE_NAME,
216             strlen(OIC_JSON_OXM_TYPE_NAME));
217         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding oxmType Tag.");
218         cborEncoderResult = cbor_encoder_create_array(&doxmMap, &oxmType, doxm->oxmTypeLen);
219         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding oxmType Array.");
220
221         for (size_t i = 0; i < doxm->oxmTypeLen; i++)
222         {
223             cborEncoderResult = cbor_encode_text_string(&oxmType, doxm->oxmType[i],
224                 strlen(doxm->oxmType[i]));
225             VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding oxmType Value.");
226         }
227         cborEncoderResult = cbor_encoder_close_container(&doxmMap, &oxmType);
228         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Closing oxmType.");
229     }
230
231     //Oxm -- Not Mandatory
232     if (doxm->oxmLen > 0 && false == rwOnly)
233     {
234         CborEncoder oxm;
235         cborEncoderResult = cbor_encode_text_string(&doxmMap, OIC_JSON_OXMS_NAME,
236             strlen(OIC_JSON_OXMS_NAME));
237         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding oxmName Tag.");
238         cborEncoderResult = cbor_encoder_create_array(&doxmMap, &oxm, doxm->oxmLen);
239         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding oxmName Array.");
240
241         for (size_t i = 0; i < doxm->oxmLen; i++)
242         {
243             cborEncoderResult = cbor_encode_int(&oxm, doxm->oxm[i]);
244             VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding oxmName Value");
245         }
246         cborEncoderResult = cbor_encoder_close_container(&doxmMap, &oxm);
247         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Closing oxmName.");
248     }
249
250     //OxmSel -- Mandatory
251     cborEncoderResult = cbor_encode_text_string(&doxmMap, OIC_JSON_OXM_SEL_NAME,
252         strlen(OIC_JSON_OXM_SEL_NAME));
253     VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding Sel Tag.");
254     cborEncoderResult = cbor_encode_int(&doxmMap, doxm->oxmSel);
255     VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding Sel Value.");
256
257     //sct -- Mandatory
258     if (false == rwOnly)
259     {
260         cborEncoderResult = cbor_encode_text_string(&doxmMap, OIC_JSON_SUPPORTED_CRED_TYPE_NAME,
261             strlen(OIC_JSON_SUPPORTED_CRED_TYPE_NAME));
262         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding Cred Type Tag");
263         cborEncoderResult = cbor_encode_int(&doxmMap, doxm->sct);
264         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding Cred Type Value.");
265     }
266
267     //Owned -- Mandatory
268     cborEncoderResult = cbor_encode_text_string(&doxmMap, OIC_JSON_OWNED_NAME,
269         strlen(OIC_JSON_OWNED_NAME));
270     VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding Owned Tag.");
271     cborEncoderResult = cbor_encode_boolean(&doxmMap, doxm->owned);
272     VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding Owned Value.");
273
274     if (false == rwOnly)
275     {
276         //DeviceId -- Mandatory
277         cborEncoderResult = cbor_encode_text_string(&doxmMap, OIC_JSON_DEVICE_ID_NAME,
278             strlen(OIC_JSON_DEVICE_ID_NAME));
279         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding Device Id Tag.");
280         ret = ConvertUuidToStr(&doxm->deviceID, &strUuid);
281         VERIFY_SUCCESS(TAG, OC_STACK_OK == ret , ERROR);
282         cborEncoderResult = cbor_encode_text_string(&doxmMap, strUuid, strlen(strUuid));
283         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding Device Id Value.");
284         OICFree(strUuid);
285         strUuid = NULL;
286     }
287
288 #ifdef MULTIPLE_OWNER
289     //Device SubOwnerID -- Not Mandatory
290     if(doxm->subOwners)
291     {
292         size_t subOwnerLen = 0;
293         OicSecSubOwner_t* subOwner = NULL;
294         LL_FOREACH(doxm->subOwners, subOwner)
295         {
296             subOwnerLen++;
297         }
298
299         CborEncoder subOwners;
300         cborEncoderResult = cbor_encode_text_string(&doxmMap, OIC_JSON_SUBOWNERID_NAME,
301             strlen(OIC_JSON_SUBOWNERID_NAME));
302         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding SubOwnerId Tag.");
303         cborEncoderResult = cbor_encoder_create_array(&doxmMap, &subOwners, subOwnerLen);
304         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding SubOwner Array.");
305
306         subOwner = NULL;
307         LL_FOREACH(doxm->subOwners, subOwner)
308         {
309             char* strUuid = NULL;
310             ret = ConvertUuidToStr(&subOwner->uuid, &strUuid);
311             VERIFY_SUCCESS(TAG, OC_STACK_OK == ret , ERROR);
312             cborEncoderResult = cbor_encode_text_string(&subOwners, strUuid, strlen(strUuid));
313             OICFree(strUuid);
314             VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding SubOwnerId Value");
315         }
316         cborEncoderResult = cbor_encoder_close_container(&doxmMap, &subOwners);
317         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Closing SubOwnerId.");
318     }
319
320     //Multiple Owner Mode -- Not Mandatory
321     if(doxm->mom)
322     {
323         cborEncoderResult = cbor_encode_text_string(&doxmMap, OIC_JSON_MOM_NAME,
324             strlen(OIC_JSON_MOM_NAME));
325         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding mom Tag");
326         cborEncoderResult = cbor_encode_int(&doxmMap, (int64_t)doxm->mom->mode);
327         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding mom Value.");
328     }
329 #endif //MULTIPLE_OWNER
330
331     //devownerid -- Mandatory
332     cborEncoderResult = cbor_encode_text_string(&doxmMap, OIC_JSON_DEVOWNERID_NAME,
333         strlen(OIC_JSON_DEVOWNERID_NAME));
334     VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding Owner Id Tag.");
335     ret = ConvertUuidToStr(&doxm->owner, &strUuid);
336     VERIFY_SUCCESS(TAG, OC_STACK_OK == ret , ERROR);
337     cborEncoderResult = cbor_encode_text_string(&doxmMap, strUuid, strlen(strUuid));
338     VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding Owner Id Value.");
339     OICFree(strUuid);
340     strUuid = NULL;
341
342     //ROwner -- Mandatory
343     cborEncoderResult = cbor_encode_text_string(&doxmMap, OIC_JSON_ROWNERID_NAME,
344         strlen(OIC_JSON_ROWNERID_NAME));
345     VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding ROwner Id Tag.");
346     ret = ConvertUuidToStr(&doxm->rownerID, &strUuid);
347     VERIFY_SUCCESS(TAG, OC_STACK_OK == ret , ERROR);
348     cborEncoderResult = cbor_encode_text_string(&doxmMap, strUuid, strlen(strUuid));
349     VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding ROwner Id Value.");
350     OICFree(strUuid);
351     strUuid = NULL;
352
353     //RT -- Mandatory
354     CborEncoder rtArray;
355     cborEncoderResult = cbor_encode_text_string(&doxmMap, OIC_JSON_RT_NAME,
356             strlen(OIC_JSON_RT_NAME));
357     VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Addding RT Name Tag.");
358     cborEncoderResult = cbor_encoder_create_array(&doxmMap, &rtArray, 1);
359     VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Addding RT Value.");
360     for (size_t i = 0; i < 1; i++)
361     {
362         cborEncoderResult = cbor_encode_text_string(&rtArray, OIC_RSRC_TYPE_SEC_DOXM,
363                 strlen(OIC_RSRC_TYPE_SEC_DOXM));
364         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding RT Value.");
365     }
366     cborEncoderResult = cbor_encoder_close_container(&doxmMap, &rtArray);
367     VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Closing RT.");
368
369     //IF-- Mandatory
370      CborEncoder ifArray;
371      cborEncoderResult = cbor_encode_text_string(&doxmMap, OIC_JSON_IF_NAME,
372              strlen(OIC_JSON_IF_NAME));
373      VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Addding IF Name Tag.");
374      cborEncoderResult = cbor_encoder_create_array(&doxmMap, &ifArray, 1);
375      VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Addding IF Value.");
376     for (size_t i = 0; i < 1; i++)
377     {
378         cborEncoderResult = cbor_encode_text_string(&ifArray, OC_RSRVD_INTERFACE_DEFAULT,
379                 strlen(OC_RSRVD_INTERFACE_DEFAULT));
380         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding IF Value.");
381     }
382     cborEncoderResult = cbor_encoder_close_container(&doxmMap, &ifArray);
383     VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Closing IF.");
384
385     cborEncoderResult = cbor_encoder_close_container(&encoder, &doxmMap);
386     VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Closing DoxmMap.");
387
388     if (CborNoError == cborEncoderResult)
389     {
390         *size = cbor_encoder_get_buffer_size(&encoder, outPayload);
391         *payload = outPayload;
392         ret = OC_STACK_OK;
393     }
394 exit:
395     if ((CborErrorOutOfMemory == cborEncoderResult) && (cborLen < CBOR_MAX_SIZE))
396     {
397         OIC_LOG(DEBUG, TAG, "Memory getting reallocated.");
398         // reallocate and try again!
399         OICFree(outPayload);
400         outPayload = NULL;
401         // Since the allocated initial memory failed, double the memory.
402         cborLen += cbor_encoder_get_buffer_size(&encoder, encoder.end);
403         OIC_LOG_V(DEBUG, TAG, "Doxm reallocation size : %zd.", cborLen);
404         cborEncoderResult = CborNoError;
405         ret = DoxmToCBORPayload(doxm, payload, &cborLen, rwOnly);
406         *size = cborLen;
407     }
408
409     if ((CborNoError != cborEncoderResult) || (OC_STACK_OK != ret))
410     {
411        OICFree(outPayload);
412        outPayload = NULL;
413        *payload = NULL;
414        *size = 0;
415        ret = OC_STACK_ERROR;
416     }
417
418     return ret;
419 }
420
421 OCStackResult CBORPayloadToDoxm(const uint8_t *cborPayload, size_t size,
422                                 OicSecDoxm_t **secDoxm)
423 {
424     return CBORPayloadToDoxmBin(cborPayload, size, secDoxm, NULL);
425 }
426
427 static OCStackResult CBORPayloadToDoxmBin(const uint8_t *cborPayload, size_t size,
428                                 OicSecDoxm_t **secDoxm, bool *roParsed)
429 {
430     if (NULL == cborPayload || NULL == secDoxm || NULL != *secDoxm || 0 == size)
431     {
432         return OC_STACK_INVALID_PARAM;
433     }
434
435     OCStackResult ret = OC_STACK_ERROR;
436     *secDoxm = NULL;
437
438     CborParser parser;
439     CborError cborFindResult = CborNoError;
440     char* strUuid = NULL;
441     size_t len = 0;
442     CborValue doxmCbor;
443
444     cbor_parser_init(cborPayload, size, 0, &parser, &doxmCbor);
445     CborValue doxmMap;
446     OicSecDoxm_t *doxm = (OicSecDoxm_t *)OICCalloc(1, sizeof(*doxm));
447     VERIFY_NON_NULL(TAG, doxm, ERROR);
448
449     cborFindResult = cbor_value_map_find_value(&doxmCbor, OIC_JSON_OXM_TYPE_NAME, &doxmMap);
450     //OxmType -- not Mandatory
451     if (CborNoError == cborFindResult && cbor_value_is_array(&doxmMap))
452     {
453         CborValue oxmType;
454
455         cborFindResult = cbor_value_get_array_length(&doxmMap, &doxm->oxmTypeLen);
456         VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Finding oxmTypeLen.");
457         VERIFY_SUCCESS(TAG, doxm->oxmTypeLen != 0, ERROR);
458
459         doxm->oxmType = (OicUrn_t *)OICCalloc(doxm->oxmTypeLen, sizeof(*doxm->oxmType));
460         VERIFY_NON_NULL(TAG, doxm->oxmType, ERROR);
461
462         cborFindResult = cbor_value_enter_container(&doxmMap, &oxmType);
463         VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Entering oxmType Array.")
464
465         int i = 0;
466         size_t len = 0;
467         while (cbor_value_is_valid(&oxmType) && cbor_value_is_text_string(&oxmType))
468         {
469             cborFindResult = cbor_value_dup_text_string(&oxmType, &doxm->oxmType[i++],
470                                                         &len, NULL);
471             VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Finding omxType text string.");
472             cborFindResult = cbor_value_advance(&oxmType);
473             VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Advancing oxmType.");
474         }
475     }
476
477     cborFindResult = cbor_value_map_find_value(&doxmCbor, OIC_JSON_OXMS_NAME, &doxmMap);
478     //Oxm -- not Mandatory
479     if (CborNoError == cborFindResult && cbor_value_is_array(&doxmMap))
480     {
481         CborValue oxm;
482         cborFindResult = cbor_value_get_array_length(&doxmMap, &doxm->oxmLen);
483         VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Finding oxmName array Length.");
484         VERIFY_SUCCESS(TAG, doxm->oxmLen != 0, ERROR);
485
486         doxm->oxm = (OicSecOxm_t *)OICCalloc(doxm->oxmLen, sizeof(*doxm->oxm));
487         VERIFY_NON_NULL(TAG, doxm->oxm, ERROR);
488
489         cborFindResult = cbor_value_enter_container(&doxmMap, &oxm);
490         VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Entering oxmName Array.")
491
492         int i = 0;
493         while (cbor_value_is_valid(&oxm) && cbor_value_is_integer(&oxm))
494         {
495             int tmp;
496
497             cborFindResult = cbor_value_get_int(&oxm, &tmp);
498             VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Finding oxmName Value")
499             doxm->oxm[i++] = (OicSecOxm_t)tmp;
500             cborFindResult = cbor_value_advance(&oxm);
501             VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Advancing oxmName.")
502         }
503
504         if (roParsed)
505         {
506             *roParsed = true;
507         }
508     }
509     else
510     {
511         VERIFY_NON_NULL(TAG, gDoxm, ERROR);
512         doxm->oxm = (OicSecOxm_t *) OICCalloc(gDoxm->oxmLen, sizeof(*doxm->oxm));
513         VERIFY_NON_NULL(TAG, doxm->oxm, ERROR);
514         doxm->oxmLen = gDoxm->oxmLen;
515         for (size_t i = 0; i < gDoxm->oxmLen; i++)
516         {
517             doxm->oxm[i] = gDoxm->oxm[i];
518         }
519     }
520
521     cborFindResult = cbor_value_map_find_value(&doxmCbor, OIC_JSON_OXM_SEL_NAME, &doxmMap);
522     if (CborNoError == cborFindResult && cbor_value_is_integer(&doxmMap))
523     {
524         int oxmSel;
525
526         cborFindResult = cbor_value_get_int(&doxmMap, &oxmSel);
527         VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Finding Sel Name Value.")
528         doxm->oxmSel = (OicSecOxm_t)oxmSel;
529     }
530     else // PUT/POST JSON may not have oxmsel so set it to the gDoxm->oxmSel
531     {
532         VERIFY_NON_NULL(TAG, gDoxm, ERROR);
533         doxm->oxmSel = gDoxm->oxmSel;
534     }
535
536     cborFindResult = cbor_value_map_find_value(&doxmCbor, OIC_JSON_SUPPORTED_CRED_TYPE_NAME, &doxmMap);
537     if (CborNoError == cborFindResult && cbor_value_is_integer(&doxmMap))
538     {
539         int sct;
540
541         cborFindResult = cbor_value_get_int(&doxmMap, &sct);
542         VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Finding Sct Name Value.")
543         doxm->sct = (OicSecCredType_t)sct;
544
545         if (roParsed)
546         {
547             *roParsed = true;
548         }
549     }
550     else // PUT/POST JSON may not have sct so set it to the gDoxm->sct
551     {
552         VERIFY_NON_NULL(TAG, gDoxm, ERROR);
553         doxm->sct = gDoxm->sct;
554     }
555
556     cborFindResult = cbor_value_map_find_value(&doxmCbor, OIC_JSON_OWNED_NAME, &doxmMap);
557     if (CborNoError == cborFindResult && cbor_value_is_boolean(&doxmMap))
558     {
559         cborFindResult = cbor_value_get_boolean(&doxmMap, &doxm->owned);
560         VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Finding Owned Value.")
561     }
562     else // PUT/POST JSON may not have owned so set it to the gDomx->owned
563     {
564         VERIFY_NON_NULL(TAG, gDoxm, ERROR);
565         doxm->owned = gDoxm->owned;
566     }
567
568     cborFindResult = cbor_value_map_find_value(&doxmCbor, OIC_JSON_DEVICE_ID_NAME, &doxmMap);
569     if (CborNoError == cborFindResult && cbor_value_is_text_string(&doxmMap))
570     {
571         cborFindResult = cbor_value_dup_text_string(&doxmMap, &strUuid , &len, NULL);
572         VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Finding Device Id Value.");
573         ret = ConvertStrToUuid(strUuid , &doxm->deviceID);
574         VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
575         OICFree(strUuid);
576         strUuid  = NULL;
577     }
578     else
579     {
580         VERIFY_NON_NULL(TAG, gDoxm, ERROR);
581         memcpy(doxm->deviceID.id, &gDoxm->deviceID.id, sizeof(doxm->deviceID.id));
582     }
583
584     cborFindResult = cbor_value_map_find_value(&doxmCbor, OIC_JSON_DEVOWNERID_NAME, &doxmMap);
585     if (CborNoError == cborFindResult && cbor_value_is_text_string(&doxmMap))
586     {
587         cborFindResult = cbor_value_dup_text_string(&doxmMap, &strUuid , &len, NULL);
588         VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Finding Owner Value.");
589         ret = ConvertStrToUuid(strUuid , &doxm->owner);
590         VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
591         OICFree(strUuid);
592         strUuid  = NULL;
593     }
594     else
595     {
596         VERIFY_NON_NULL(TAG, gDoxm, ERROR);
597         memcpy(doxm->owner.id, gDoxm->owner.id, sizeof(doxm->owner.id));
598     }
599
600 #ifdef MULTIPLE_OWNER
601     cborFindResult = cbor_value_map_find_value(&doxmCbor, OIC_JSON_MOM_NAME, &doxmMap);
602     if(CborNoError == cborFindResult && cbor_value_is_integer(&doxmMap))
603     {
604         int mode = 0;
605         cborFindResult = cbor_value_get_int(&doxmMap, &mode);
606         VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Finding mom Name Value.")
607         if(NULL == doxm->mom)
608         {
609             doxm->mom = (OicSecMom_t*)OICCalloc(1, sizeof(OicSecMom_t));
610             VERIFY_NON_NULL(TAG, doxm->mom, ERROR);
611         }
612         doxm->mom->mode = (OicSecMomType_t)mode;
613     }
614     else if(NULL != gDoxm && NULL != gDoxm->mom)
615     {
616         // PUT/POST JSON may not have 'mom' so set it to the gDomx->mom
617         if(NULL == doxm->mom)
618         {
619             doxm->mom = (OicSecMom_t*)OICCalloc(1, sizeof(OicSecMom_t));
620             VERIFY_NON_NULL(TAG, doxm->mom, ERROR);
621         }
622         doxm->mom->mode = gDoxm->mom->mode;
623     }
624
625     cborFindResult = cbor_value_map_find_value(&doxmCbor, OIC_JSON_SUBOWNERID_NAME, &doxmMap);
626     if(CborNoError == cborFindResult && cbor_value_is_array(&doxmMap))
627     {
628         size_t subOwnerLen = 0;
629         CborValue subOwnerCbor;
630         cborFindResult = cbor_value_get_array_length(&doxmMap, &subOwnerLen);
631         VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Finding SubOwner array Length.");
632         VERIFY_SUCCESS(TAG, 0 != subOwnerLen, ERROR);
633
634         cborFindResult = cbor_value_enter_container(&doxmMap, &subOwnerCbor);
635         VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Entering SubOwner Array.")
636
637         while (cbor_value_is_valid(&subOwnerCbor) && cbor_value_is_text_string(&subOwnerCbor))
638         {
639             OCStackResult convertRes = OC_STACK_ERROR;
640             OicSecSubOwner_t* subOwner = NULL;
641             char* strUuid = NULL;
642             size_t uuidLen = 0;
643
644             cborFindResult = cbor_value_dup_text_string(&subOwnerCbor, &strUuid, &uuidLen, NULL);
645             VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Finding SubOwnerId Value");
646
647             subOwner = (OicSecSubOwner_t*)OICCalloc(1, sizeof(OicSecSubOwner_t));
648             VERIFY_NON_NULL(TAG, subOwner, ERROR);
649
650             convertRes = ConvertStrToUuid(strUuid, &subOwner->uuid);
651             VERIFY_SUCCESS(TAG, OC_STACK_OK == convertRes, ERROR);
652             subOwner->status = MOT_STATUS_DONE;
653             LL_APPEND(doxm->subOwners, subOwner);
654
655             cborFindResult = cbor_value_advance(&subOwnerCbor);
656             VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Advancing SubOwnerId.")
657         }
658     }
659     else if(NULL != gDoxm && NULL != gDoxm->subOwners)
660     {
661         // PUT/POST JSON may not have 'subOwners' so set it to the gDomx->subOwners
662         OicSecSubOwner_t* subOwnerItor = NULL;
663         LL_FOREACH(gDoxm->subOwners, subOwnerItor)
664         {
665             OicSecSubOwner_t* subOwnerId = (OicSecSubOwner_t*)OICCalloc(1, sizeof(OicSecSubOwner_t));
666             VERIFY_NON_NULL(TAG, subOwnerId, ERROR);
667
668             memcpy(&subOwnerId->uuid, &subOwnerItor->uuid, sizeof(OicUuid_t));
669             subOwnerId->status = MOT_STATUS_DONE;
670
671             LL_APPEND(doxm->subOwners, subOwnerId);
672         }
673     }
674 #endif //MULTIPLE_OWNER
675
676     cborFindResult = cbor_value_map_find_value(&doxmCbor, OIC_JSON_ROWNERID_NAME, &doxmMap);
677     if (CborNoError == cborFindResult && cbor_value_is_text_string(&doxmMap))
678     {
679         cborFindResult = cbor_value_dup_text_string(&doxmMap, &strUuid , &len, NULL);
680         VERIFY_CBOR_SUCCESS(TAG, cborFindResult, "Failed Finding ROwner Value.");
681         ret = ConvertStrToUuid(strUuid , &doxm->rownerID);
682         VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
683         OICFree(strUuid);
684         strUuid  = NULL;
685     }
686     else
687     {
688         VERIFY_NON_NULL(TAG, gDoxm, ERROR);
689         memcpy(doxm->rownerID.id, gDoxm->rownerID.id, sizeof(doxm->rownerID.id));
690     }
691
692     *secDoxm = doxm;
693     ret = OC_STACK_OK;
694
695 exit:
696     if (CborNoError != cborFindResult)
697     {
698         OIC_LOG (ERROR, TAG, "CBORPayloadToDoxm failed!!!");
699         DeleteDoxmBinData(doxm);
700         doxm = NULL;
701         *secDoxm = NULL;
702         ret = OC_STACK_ERROR;
703     }
704     return ret;
705 }
706
707 /**
708  * @todo document this function including why code might need to call this.
709  * The current suspicion is that it's not being called as much as it should.
710  */
711 static bool UpdatePersistentStorage(OicSecDoxm_t * doxm)
712 {
713     bool bRet = false;
714
715     if (NULL != doxm)
716     {
717         // Convert Doxm data into CBOR for update to persistent storage
718         uint8_t *payload = NULL;
719         size_t size = 0;
720         OCStackResult res = DoxmToCBORPayload(doxm, &payload, &size, false);
721         if (payload && (OC_STACK_OK == res)
722             && (OC_STACK_OK == UpdateSecureResourceInPS(OIC_JSON_DOXM_NAME, payload, size)))
723         {
724                 bRet = true;
725         }
726         OICFree(payload);
727     }
728     else
729     {
730         if (OC_STACK_OK == UpdateSecureResourceInPS(OIC_JSON_DOXM_NAME, NULL, 0))
731         {
732                 bRet = true;
733         }
734     }
735
736     return bRet;
737 }
738
739 static bool ValidateQuery(const char * query)
740 {
741     // Send doxm resource data if the state of doxm resource
742     // matches with the query parameters.
743     // else send doxm resource data as NULL
744     // TODO Remove this check and rely on Policy Engine
745     // and Provisioning Mode to enforce provisioning-state
746     // access rules. Eventually, the PE and PM code will
747     // not send a request to the /doxm Entity Handler at all
748     // if it should not respond.
749     OIC_LOG (DEBUG, TAG, "In ValidateQuery");
750     if(NULL == gDoxm)
751     {
752         return false;
753     }
754
755     bool bOwnedQry = false;         // does querystring contains 'owned' query ?
756     bool bOwnedMatch = false;       // does 'owned' query value matches with doxm.owned status?
757     bool bDeviceIDQry = false;      // does querystring contains 'deviceid' query ?
758     bool bDeviceIDMatch = false;    // does 'deviceid' query matches with doxm.deviceid ?
759     bool bInterfaceQry = false;      // does querystring contains 'if' query ?
760     bool bInterfaceMatch = false;    // does 'if' query matches with oic.if.baseline ?
761 #ifdef MULTIPLE_OWNER
762     bool bMotMatch = false;       // does 'mom' query value is not '0' && does query value matches with doxm.owned status?
763 #endif //MULTIPLE_OWNER
764
765     OicParseQueryIter_t parseIter = {.attrPos = NULL};
766
767     ParseQueryIterInit((unsigned char*)query, &parseIter);
768
769     while (GetNextQuery(&parseIter))
770     {
771         if (strncasecmp((char *)parseIter.attrPos, OIC_JSON_OWNED_NAME, parseIter.attrLen) == 0)
772         {
773             bOwnedQry = true;
774             if ((strncasecmp((char *)parseIter.valPos, OIC_SEC_TRUE, parseIter.valLen) == 0) &&
775                     (gDoxm->owned))
776             {
777                 bOwnedMatch = true;
778             }
779             else if ((strncasecmp((char *)parseIter.valPos, OIC_SEC_FALSE, parseIter.valLen) == 0)
780                     && (!gDoxm->owned))
781             {
782                 bOwnedMatch = true;
783             }
784         }
785
786 #ifdef MULTIPLE_OWNER
787         if (strncasecmp((char *)parseIter.attrPos, OIC_JSON_MOM_NAME, strlen(OIC_JSON_MOM_NAME)) == 0)
788         {
789             OicSecMomType_t momMode = (OicSecMomType_t)(parseIter.valPos[0] - CHAR_ZERO);
790             if(NULL != gDoxm->mom && momMode != gDoxm->mom->mode)
791             {
792                 if(GetNextQuery(&parseIter))
793                 {
794                     if (strncasecmp((char *)parseIter.attrPos, OIC_JSON_OWNED_NAME, parseIter.attrLen) == 0)
795                     {
796                         if ((strncasecmp((char *)parseIter.valPos, OIC_SEC_TRUE, parseIter.valLen) == 0) &&
797                                 (gDoxm->owned))
798                         {
799                             bMotMatch = true;
800                         }
801                     }
802                 }
803             }
804             return bMotMatch;
805         }
806 #endif //MULTIPLE_OWNER
807
808         if (strncasecmp((char *)parseIter.attrPos, OIC_JSON_DEVICE_ID_NAME, parseIter.attrLen) == 0)
809         {
810             bDeviceIDQry = true;
811             OicUuid_t subject = {.id={0}};
812
813             memcpy(subject.id, parseIter.valPos, parseIter.valLen);
814             if (0 == memcmp(&gDoxm->deviceID.id, &subject.id, sizeof(gDoxm->deviceID.id)))
815             {
816                 bDeviceIDMatch = true;
817             }
818         }
819
820         if (strncasecmp((char *)parseIter.attrPos, OC_RSRVD_INTERFACE, parseIter.attrLen) == 0)
821         {
822             bInterfaceQry = true;
823             if ((strncasecmp((char *)parseIter.valPos, OC_RSRVD_INTERFACE_DEFAULT, parseIter.valLen) == 0))
824             {
825                 bInterfaceMatch = true;
826             }
827             return (bInterfaceQry ? bInterfaceMatch: true);
828         }
829     }
830
831     return ((bOwnedQry ? bOwnedMatch : true) &&
832             (bDeviceIDQry ? bDeviceIDMatch : true));
833 }
834
835 static OCEntityHandlerResult HandleDoxmGetRequest (const OCEntityHandlerRequest * ehRequest)
836 {
837     OCEntityHandlerResult ehRet = OC_EH_OK;
838
839     OIC_LOG(DEBUG, TAG, "Doxm EntityHandle processing GET request");
840
841     //Checking if Get request is a query.
842     if (ehRequest->query)
843     {
844         OIC_LOG_V(DEBUG,TAG,"query:%s",ehRequest->query);
845         OIC_LOG(DEBUG, TAG, "HandleDoxmGetRequest processing query");
846         if (!ValidateQuery(ehRequest->query))
847         {
848             ehRet = OC_EH_ERROR;
849         }
850     }
851
852     /*
853      * For GET or Valid Query request return doxm resource CBOR payload.
854      * For non-valid query return NULL json payload.
855      * A device will 'always' have a default Doxm, so DoxmToCBORPayload will
856      * return valid doxm resource json.
857      */
858     uint8_t *payload = NULL;
859     size_t size = 0;
860
861     if (ehRet == OC_EH_OK)
862     {
863         if (OC_STACK_OK != DoxmToCBORPayload(gDoxm, &payload, &size, false))
864         {
865             OIC_LOG(WARNING, TAG, "DoxmToCBORPayload failed in HandleDoxmGetRequest");
866         }
867     }
868
869     OIC_LOG(DEBUG, TAG, "Send payload for doxm GET request");
870     OIC_LOG_BUFFER(DEBUG, TAG, payload, size);
871
872     // Send response payload to request originator
873     ehRet = ((SendSRMResponse(ehRequest, ehRet, payload, size)) == OC_STACK_OK) ?
874                    OC_EH_OK : OC_EH_ERROR;
875
876     OICFree(payload);
877
878     return ehRet;
879 }
880
881 static void updateWriteableProperty(const OicSecDoxm_t* src, OicSecDoxm_t* dst)
882 {
883     if(src && dst)
884    {
885         // update oxmsel
886         dst->oxmSel = src->oxmSel;
887
888         //update owner
889         memcpy(&(dst->owner), &(src->owner), sizeof(OicUuid_t));
890
891         //update rowner
892         memcpy(&(dst->rownerID), &(src->rownerID), sizeof(OicUuid_t));
893
894         //update deviceuuid
895         memcpy(&(dst->deviceID), &(src->deviceID), sizeof(OicUuid_t));
896
897         //Update owned status
898         if(dst->owned != src->owned)
899         {
900             dst->owned = src->owned;
901         }
902
903 #ifdef MULTIPLE_OWNER
904         if(src->mom)
905         {
906             OIC_LOG(DEBUG, TAG, "dectected 'mom' property");
907             if(NULL == dst->mom)
908             {
909                 dst->mom = (OicSecMom_t*)OICCalloc(1, sizeof(OicSecMom_t));
910                 if(NULL != dst->mom)
911                 {
912                     dst->mom->mode = src->mom->mode;
913                 }
914             }
915         }
916 #endif //MULTIPLE_OWNER
917     }
918 }
919
920 #if defined(__WITH_DTLS__) || defined (__WITH_TLS__)
921 #ifdef MULTIPLE_OWNER
922 /**
923  * Internal function to get number of sub-owner
924  */
925 static size_t GetSubOwnerSize()
926 {
927     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
928
929     size_t numberOfSubOwner = 0;
930
931     if (gDoxm && gDoxm->subOwners)
932     {
933         OicSecSubOwner_t* subowner = NULL;
934         LL_FOREACH(gDoxm->subOwners, subowner)
935         {
936             numberOfSubOwner++;
937         }
938     }
939
940     OIC_LOG_V(DEBUG, TAG, "Numer of registered sub-owner=%zd", numberOfSubOwner);
941     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
942
943     return numberOfSubOwner;
944 }
945
946 /**
947  * Callback function to handle MOT DTLS handshake result.
948  * @param[out]   endpoint           remote device information.
949  * @param[out]   errorInfo        CA Error information.
950  */
951 void MultipleOwnerDTLSHandshakeCB(const CAEndpoint_t *endpoint,
952                                 const CAErrorInfo_t *errorInfo)
953 {
954     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
955     if (!endpoint || !errorInfo)
956     {
957         OIC_LOG(ERROR, TAG, "Invalid param");
958         return;
959     }
960
961     if (!gDoxm)
962     {
963         OIC_LOG_V(ERROR, TAG, "%s: gDoxm is NULL", __func__);
964         return;
965     }
966
967     if ((CA_STATUS_OK == errorInfo->result) && (true == gDoxm->owned)
968         && (OIC_PRECONFIG_PIN == gDoxm->oxmSel) && (NULL != gDoxm->mom)
969         && (OIC_MULTIPLE_OWNER_DISABLE != gDoxm->mom->mode) && (CA_ADAPTER_TCP != endpoint->adapter))
970     {
971         OIC_LOG_V(INFO, TAG, "DTLS session established for sub-owner authentication : (%s:%d)",
972                   endpoint->addr, endpoint->port);
973
974         const CASecureEndpoint_t* authenticatedSubOwnerInfo = CAGetSecureEndpointData(endpoint);
975         if (authenticatedSubOwnerInfo)
976         {
977             if (0 == memcmp(authenticatedSubOwnerInfo->identity.id, gDoxm->owner.id,
978                             authenticatedSubOwnerInfo->identity.id_length))
979             {
980                 OIC_LOG(WARNING, TAG, "Super owner tried MOT, this request will be ignored.");
981                 return;
982             }
983
984             OicSecSubOwner_t* subOwnerInst = NULL;
985             LL_FOREACH(gDoxm->subOwners, subOwnerInst)
986             {
987                 if(0 == memcmp(subOwnerInst->uuid.id,
988                                authenticatedSubOwnerInfo->identity.id,
989                                authenticatedSubOwnerInfo->identity.id_length))
990                 {
991                     break;
992                 }
993             }
994
995             if (NULL == subOwnerInst)
996             {
997                 subOwnerInst = (OicSecSubOwner_t*)OICCalloc(1, sizeof(OicSecSubOwner_t));
998                 if (subOwnerInst)
999                 {
1000                     char* strUuid = NULL;
1001                     if (OC_STACK_OK != ConvertUuidToStr(&subOwnerInst->uuid, &strUuid))
1002                     {
1003                         OIC_LOG(WARNING, TAG, "ConvertUuidToStr error");
1004                     }
1005                     OIC_LOG_V(DEBUG, TAG, "Adding New SubOwner(%s)", strUuid);
1006
1007                     if (gMaxSubOwnerSize > GetSubOwnerSize())
1008                     {
1009                         memcpy(subOwnerInst->uuid.id, authenticatedSubOwnerInfo->identity.id,
1010                                authenticatedSubOwnerInfo->identity.id_length);
1011                         LL_APPEND(gDoxm->subOwners, subOwnerInst);
1012                         if (!UpdatePersistentStorage(gDoxm))
1013                         {
1014                             OIC_LOG(ERROR, TAG, "Failed to register SubOwner UUID into Doxm");
1015                         }
1016                     }
1017                     else
1018                     {
1019                         OIC_LOG_V(ERROR, TAG, "Number of sub-owner exceeded : (MAX SIZE=%zd)", gMaxSubOwnerSize);
1020
1021                         //Close DTLS session
1022                         if (CA_STATUS_OK != CAcloseSslSession(endpoint))
1023                         {
1024                             OIC_LOG_V(ERROR, TAG, "CAcloseSslSession error for [%s:%d]", endpoint->addr, endpoint->port);
1025                         }
1026
1027                         //Remove credential
1028                         if (OC_STACK_RESOURCE_DELETED != RemoveCredential(&subOwnerInst->uuid))
1029                         {
1030                             OIC_LOG_V(ERROR, TAG, "RemoveCredential error for [%s]", strUuid);
1031                         }
1032
1033                         // TODO: How to send error to client side?
1034                     }
1035
1036                     OICFree(strUuid);
1037                 }
1038             }
1039         }
1040     }
1041
1042     if(CA_STATUS_OK != CAregisterPskCredentialsHandler(GetDtlsPskCredentials))
1043     {
1044         OIC_LOG(WARNING, TAG, "Failed to revert the DTLS credential handler");
1045     }
1046
1047     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
1048 }
1049 #endif //MULTIPLE_OWNER
1050 #endif // defined(__WITH_DTLS__) || defined (__WITH_TLS__)
1051
1052 /**
1053  * Function to validate oxmsel with oxms.
1054  *
1055  * @param[in] supportedMethods   Array of supported methods
1056  * @param[in] numberOfMethods   number of supported methods
1057  * @param[out]  selectedMethod         Selected methods
1058  * @return  TRUE on success
1059  */
1060 static bool ValidateOxmsel(const OicSecOxm_t *supportedMethods,
1061         size_t numberOfMethods, OicSecOxm_t *selectedMethod)
1062 {
1063     bool isValidOxmsel = false;
1064
1065     OIC_LOG(DEBUG, TAG, "IN ValidateOxmsel");
1066     if (numberOfMethods == 0 || !supportedMethods)
1067     {
1068         OIC_LOG(WARNING, TAG, "Could not find a supported OxM.");
1069         return isValidOxmsel;
1070     }
1071
1072     for (size_t i = 0; i < numberOfMethods; i++)
1073     {
1074             if (*selectedMethod  == supportedMethods[i])
1075             {
1076                 isValidOxmsel = true;
1077                 break;
1078             }
1079     }
1080     if (!isValidOxmsel)
1081     {
1082         OIC_LOG(ERROR, TAG, "Not allowed Oxmsel.");
1083         return isValidOxmsel;
1084     }
1085
1086     OIC_LOG(DEBUG, TAG, "OUT ValidateOxmsel");
1087
1088     return isValidOxmsel;
1089 }
1090
1091 void SetInformOxmSelCB(InformOxmSelectedCallback_t informOxmSelCB)
1092 {
1093     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
1094     g_InformOxmSelectedCallback = informOxmSelCB;
1095     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
1096 }
1097
1098 void UnsetInformOxmSelCB()
1099 {
1100     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
1101     g_InformOxmSelectedCallback = NULL;
1102     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
1103 }
1104
1105 #if defined(__WITH_DTLS__) || defined (__WITH_TLS__)
1106 static OCEntityHandlerResult HandleDoxmPostRequest(OCEntityHandlerRequest * ehRequest);
1107
1108 static void DestroyEntityHandlerRequest(OCEntityHandlerRequest * ehRequest)
1109 {
1110     if (ehRequest == NULL) {
1111         OIC_LOG(WARNING, TAG, "ehRequest is NULL");
1112         return;
1113     }
1114
1115     OICFree(ehRequest->query);
1116
1117     if (ehRequest->payload) {
1118         OICFree(((OCSecurityPayload *)ehRequest->payload)->securityData);
1119         OICFree(ehRequest->payload);
1120     }
1121
1122     OICFree(ehRequest);
1123 }
1124
1125 void * WaitConfirm(OCEntityHandlerRequest * ehRequest)
1126 {
1127     bool confirmResult = false, confirmState = false;
1128
1129     oc_mutex_lock(g_mutexWait);
1130     oc_cond_wait(g_condWait, g_mutexWait);
1131     oc_cond_free(g_condWait);
1132     g_condWait = NULL;
1133
1134     oc_mutex_unlock(g_mutexWait);
1135     oc_mutex_free(g_mutexWait);
1136     g_mutexWait = NULL;
1137
1138     g_isConfirmResult = true;
1139     GetAsyncVerifyUserResult(&confirmResult, &confirmState);
1140     if (confirmResult == true)
1141     {
1142         gConfirmState = CONFIRM_STATE_ACCEPTED;
1143         HandleDoxmPostRequest(ehRequest);
1144         g_isConfirmResult = false;
1145     }
1146     else
1147     {
1148         gConfirmState = CONFIRM_STATE_DENIED;
1149         HandleDoxmPostRequest(ehRequest);
1150         g_isConfirmResult = false;
1151     }
1152
1153     DestroyEntityHandlerRequest(ehRequest);
1154
1155     return NULL;
1156 }
1157
1158 static OCEntityHandlerRequest *CopyRequest(OCEntityHandlerRequest *entityHandlerRequest)
1159 {
1160     OIC_LOG(INFO, TAG, "Copying received request for slow response");
1161
1162     if (!entityHandlerRequest)
1163     {
1164         OIC_LOG_V(ERROR, TAG, "%s: entityHandlerRequest is NULL", __func__);
1165         return NULL;
1166     }
1167
1168     OCEntityHandlerRequest *copyOfRequest =
1169             (OCEntityHandlerRequest *)OICCalloc(1, sizeof(OCEntityHandlerRequest));
1170     if(!copyOfRequest)
1171     {
1172         OIC_LOG(ERROR, TAG, "Copy failed due to allocation failure");
1173         return NULL;
1174     }
1175
1176     memcpy(copyOfRequest, entityHandlerRequest, sizeof(OCEntityHandlerRequest));
1177
1178     if (entityHandlerRequest->query)
1179     {
1180         copyOfRequest->query = OICStrdup(entityHandlerRequest->query);
1181         if(!copyOfRequest->query)
1182         {
1183             OIC_LOG(ERROR, TAG, "Copy failed due to allocation failure");
1184             OICFree(copyOfRequest);
1185             return NULL;
1186         }
1187     }
1188
1189     if (entityHandlerRequest->payload)
1190     {
1191         copyOfRequest->payload =
1192                 (OCSecurityPayload *)OICCalloc(1, sizeof(OCSecurityPayload));
1193         if(!copyOfRequest->payload)
1194         {
1195             OIC_LOG(ERROR, TAG, "Copy failed due to allocation failure");
1196             OICFree(copyOfRequest->query);
1197             OICFree(copyOfRequest);
1198             return NULL;
1199         }
1200
1201         if (((OCSecurityPayload *)entityHandlerRequest->payload)->payloadSize)
1202         {
1203             ((OCSecurityPayload *)copyOfRequest->payload)->securityData =
1204                     (uint8_t *)OICCalloc(1, ((OCSecurityPayload *)entityHandlerRequest->payload)->payloadSize);
1205             if(!((OCSecurityPayload *)copyOfRequest->payload)->securityData)
1206             {
1207                 OIC_LOG(ERROR, TAG, "Copy failed due to allocation failure");
1208                 OICFree(copyOfRequest->payload);
1209                 OICFree(copyOfRequest->query);
1210                 OICFree(copyOfRequest);
1211                 return NULL;
1212             }
1213
1214             memcpy(((OCSecurityPayload *)copyOfRequest->payload)->securityData,
1215                   ((OCSecurityPayload *)entityHandlerRequest->payload)->securityData,
1216                   ((OCSecurityPayload *)entityHandlerRequest->payload)->payloadSize);
1217
1218             ((OCSecurityPayload *)(copyOfRequest->payload))->payloadSize =
1219                     ((OCSecurityPayload *)(entityHandlerRequest->payload))->payloadSize;
1220         }
1221
1222         copyOfRequest->payload->type = entityHandlerRequest->payload->type;
1223         copyOfRequest->messageID = entityHandlerRequest->messageID;
1224     }
1225
1226     // Ignore vendor specific header options for example
1227     copyOfRequest->numRcvdVendorSpecificHeaderOptions = 0;
1228     copyOfRequest->rcvdVendorSpecificHeaderOptions = NULL;
1229
1230     OIC_LOG(INFO, TAG, "Copied client request");
1231
1232     return copyOfRequest;
1233 }
1234 #endif // defined(__WITH_DTLS__) || defined (__WITH_TLS__)
1235
1236 static OCEntityHandlerResult HandleDoxmPostRequest(OCEntityHandlerRequest * ehRequest)
1237 {
1238     OIC_LOG (DEBUG, TAG, "Doxm EntityHandle  processing POST request");
1239     OCEntityHandlerResult ehRet = OC_EH_ERROR;
1240     OicUuid_t emptyOwner = {.id = {0} };
1241     static uint16_t previousMsgId = 0;
1242     bool isDuplicatedMsg = false;
1243
1244     /*
1245      * Convert CBOR Doxm data into binary. This will also validate
1246      * the Doxm data received.
1247      */
1248     OicSecDoxm_t *newDoxm = NULL;
1249
1250     if (ehRequest->payload)
1251     {
1252         uint8_t *payload = ((OCSecurityPayload *)ehRequest->payload)->securityData;
1253         size_t size = ((OCSecurityPayload *)ehRequest->payload)->payloadSize;
1254         bool roParsed = false;
1255         OCStackResult res = CBORPayloadToDoxmBin(payload, size, &newDoxm, &roParsed);
1256         if (newDoxm && OC_STACK_OK == res)
1257         {
1258             /*
1259              * message ID is supported for CoAP over UDP only according to RFC 7252
1260              * So we should check message ID to prevent duplicate request handling in case of OC_ADAPTER_IP.
1261              * In case of other transport adapter, duplicate message check is not required.
1262              */
1263             if (OC_ADAPTER_IP == ehRequest->devAddr.adapter &&
1264                  previousMsgId == ehRequest->messageID && g_isConfirmResult == false)
1265             {
1266                 isDuplicatedMsg = true;
1267             }
1268
1269             if (isDuplicatedMsg && ehRequest->messageID == gConfirmMsgId)
1270             {
1271                 if (CONFIRM_STATE_WAIT == gConfirmState)
1272                 {
1273                     OIC_LOG(DEBUG, TAG, "Confirm callback already invoked.");
1274                     OIC_LOG(DEBUG, TAG, "This request will be ignored.");
1275                     DeleteDoxmBinData(newDoxm);
1276                     return OC_EH_OK;
1277                 }
1278                 else
1279                 {
1280                     OIC_LOG_V(DEBUG, TAG, "Confirm request already done, Confirm Result = %s", (CONFIRM_STATE_ACCEPTED == gConfirmState ? "ACCEPTED" : "DENIED"));
1281                     ehRet = (CONFIRM_STATE_ACCEPTED == gConfirmState ? OC_EH_OK : OC_EH_NOT_ACCEPTABLE);
1282                     goto exit;
1283                 }
1284             }
1285
1286             // Check request on RO property
1287             if (true == roParsed)
1288             {
1289                 OIC_LOG(ERROR, TAG, "Not acceptable request because of read-only propertys");
1290                 ehRet = OC_EH_NOT_ACCEPTABLE;
1291                 goto exit;
1292             }
1293
1294             VERIFY_NON_NULL(TAG, gDoxm, ERROR);
1295
1296             // in owned state
1297             if (true == gDoxm->owned)
1298             {
1299                 if (false == ValidateOxmsel(gDoxm->oxm, gDoxm->oxmLen, &newDoxm->oxmSel))
1300                 {
1301                     OIC_LOG(ERROR, TAG, "Not acceptable request because oxmsel does not support on Server");
1302                     ehRet = OC_EH_NOT_ACCEPTABLE;
1303                     goto exit;
1304                 }
1305
1306                 if(0 != memcmp(&gDoxm->owner.id, &newDoxm->owner.id, sizeof(gDoxm->owner.id)))
1307                 {
1308                     OIC_LOG(ERROR, TAG, "Not acceptable request for owned property");
1309                     ehRet = OC_EH_NOT_ACCEPTABLE;
1310                 }
1311
1312                 //Update gDoxm based on newDoxm
1313                 updateWriteableProperty(newDoxm, gDoxm);
1314
1315 #if defined(__WITH_DTLS__) || defined (__WITH_TLS__)
1316 #ifdef MULTIPLE_OWNER
1317                 //handle mom
1318                 if(gDoxm->mom)
1319                 {
1320                     if(OIC_MULTIPLE_OWNER_DISABLE != gDoxm->mom->mode)
1321                     {
1322                         CAResult_t caRes = CA_STATUS_FAILED;
1323                         if(OIC_PRECONFIG_PIN == gDoxm->oxmSel || OIC_RANDOM_DEVICE_PIN == gDoxm->oxmSel)
1324                         {
1325                             caRes = CAEnableAnonECDHCipherSuite(false);
1326                             VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
1327                             OIC_LOG(INFO, TAG, "ECDH_ANON CipherSuite is DISABLED");
1328
1329                             caRes = CASelectCipherSuite((uint16_t)MBEDTLS_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256, ehRequest->devAddr.adapter);
1330                             VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
1331                             OIC_LOG(INFO, TAG, "ECDHE_PSK CipherSuite will be used for MOT");
1332
1333                             //Set the device id to derive temporal PSK
1334                             SetUuidForPinBasedOxm(&gDoxm->deviceID);
1335                         }
1336                         else
1337                         {
1338                             OIC_LOG(WARNING, TAG, "Unsupported OxM for Multiple Ownership Transfer.");
1339                         }
1340
1341                         CAregisterSslHandshakeCallback(MultipleOwnerDTLSHandshakeCB);
1342                     }
1343                     else
1344                     {
1345                         //if MOM is disabled, revert the DTLS handshake callback
1346                         if(CA_STATUS_OK != CAregisterSslHandshakeCallback(NULL))
1347                         {
1348                             OIC_LOG(WARNING, TAG, "Error while revert the DTLS Handshake Callback.");
1349                         }
1350                     }
1351                 }
1352
1353                 if(newDoxm->subOwners)
1354                 {
1355                     OicSecSubOwner_t* subowner = NULL;
1356                     OicSecSubOwner_t* temp = NULL;
1357
1358                     OIC_LOG(DEBUG, TAG, "dectected 'subowners' property");
1359
1360                     if(gDoxm->subOwners)
1361                     {
1362                         LL_FOREACH_SAFE(gDoxm->subOwners, subowner, temp)
1363                         {
1364                             LL_DELETE(gDoxm->subOwners, subowner);
1365                             OICFree(subowner);
1366                         }
1367                     }
1368
1369                     subowner = NULL;
1370                     temp = NULL;
1371                     LL_FOREACH_SAFE(newDoxm->subOwners, subowner, temp)
1372                     {
1373                         LL_DELETE(newDoxm->subOwners, subowner);
1374                         LL_APPEND(gDoxm->subOwners, subowner);
1375                     }
1376                 }
1377 #endif //MULTIPLE_OWNER
1378 #endif // defined(__WITH_DTLS__) || defined (__WITH_TLS__)
1379
1380                 //Update new state in persistent storage
1381                 if (UpdatePersistentStorage(gDoxm) == true)
1382                 {
1383                     ehRet = OC_EH_OK;
1384                 }
1385                 else
1386                 {
1387                     OIC_LOG(ERROR, TAG, "Failed to update DOXM in persistent storage");
1388                     ehRet = OC_EH_ERROR;
1389                 }
1390                 goto exit;
1391             }
1392
1393             // in unowned state
1394             if ((false == gDoxm->owned) && (false == newDoxm->owned))
1395             {
1396                 if (false == ValidateOxmsel(gDoxm->oxm, gDoxm->oxmLen, &newDoxm->oxmSel))
1397                 {
1398                     OIC_LOG(ERROR, TAG, "Not acceptable request because oxmsel does not support on Server");
1399                     ehRet = OC_EH_NOT_ACCEPTABLE;
1400                     goto exit;
1401                 }
1402                 if (g_InformOxmSelectedCallback)
1403                 {
1404                     g_InformOxmSelectedCallback(newDoxm->oxmSel);
1405                 }
1406
1407 #if defined (__WITH_TLS__) || defined(__WITH_DTLS__)
1408                 if (memcmp(&(newDoxm->owner), &emptyOwner, sizeof(OicUuid_t)) == 0)
1409                 {
1410                     InvokeOtmEventHandler(ehRequest->devAddr.addr, ehRequest->devAddr.port,
1411                                           NULL, OIC_OTM_STARTED);
1412                 }
1413                 else
1414                 {
1415                     OIC_LOG_V(INFO, TAG, "%s: request owner not empty",__func__);
1416                     char* strUuid = NULL;
1417                     if (OC_STACK_OK == ConvertUuidToStr(&newDoxm->owner, &strUuid))
1418                     {
1419                         OIC_LOG_V(INFO, TAG, "%s: request owner: %s",__func__, strUuid);
1420                         OICFree(strUuid);
1421                     }
1422                 }
1423 #endif
1424
1425                 if (OIC_JUST_WORKS == newDoxm->oxmSel || OIC_MV_JUST_WORKS == newDoxm->oxmSel)
1426                 {
1427                     /*
1428                      * If current state of the device is un-owned, enable
1429                      * anonymous ECDH cipher in tinyDTLS so that Provisioning
1430                      * tool can initiate JUST_WORKS ownership transfer process.
1431                      */
1432                     if (memcmp(&(newDoxm->owner), &emptyOwner, sizeof(OicUuid_t)) == 0)
1433                     {
1434                         gDoxm->oxmSel = newDoxm->oxmSel;
1435                         //Update new state in persistent storage
1436                         if ((UpdatePersistentStorage(gDoxm) == true))
1437                         {
1438                             ehRet = OC_EH_OK;
1439                         }
1440                         else
1441                         {
1442                             OIC_LOG(WARNING, TAG, "Failed to update DOXM in persistent storage");
1443                             ehRet = OC_EH_ERROR;
1444                             goto exit;
1445                         }
1446                         OIC_LOG (INFO, TAG, "Doxm EntityHandle  enabling AnonECDHCipherSuite");
1447 #if defined(__WITH_DTLS__) || defined(__WITH_TLS__)
1448                         ehRet = (CAEnableAnonECDHCipherSuite(true) == CA_STATUS_OK) ? OC_EH_OK : OC_EH_ERROR;
1449 #endif // __WITH_DTLS__ or __WITH_TLS__
1450                         goto exit;
1451                     }
1452                     else
1453                     {
1454 #if defined(__WITH_DTLS__) || defined(__WITH_TLS__)
1455                         //Save the owner's UUID to derive owner credential
1456                         memcpy(&(gDoxm->owner), &(newDoxm->owner), sizeof(OicUuid_t));
1457
1458                         // Update new state in persistent storage
1459                         if (true == UpdatePersistentStorage(gDoxm))
1460                         {
1461                             ehRet = OC_EH_OK;
1462                         }
1463                         else
1464                         {
1465                             OIC_LOG(ERROR, TAG, "Failed to update DOXM in persistent storage");
1466                             ehRet = OC_EH_ERROR;
1467                             goto exit;
1468                         }
1469
1470                         /*
1471                          * Disable anonymous ECDH cipher in tinyDTLS since device is now
1472                          * in owned state.
1473                          */
1474                         CAResult_t caRes = CA_STATUS_OK;
1475                         caRes = CAEnableAnonECDHCipherSuite(false);
1476                         VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
1477                         OIC_LOG(INFO, TAG, "ECDH_ANON CipherSuite is DISABLED");
1478
1479                         //In case of Mutual Verified Just-Works, verify mutualVerifNum
1480                         if (OIC_MV_JUST_WORKS == newDoxm->oxmSel && false == newDoxm->owned &&
1481                             false == isDuplicatedMsg)
1482                         {
1483                             uint8_t preMutualVerifNum[OWNER_PSK_LENGTH_128] = {0};
1484                             uint8_t mutualVerifNum[MUTUAL_VERIF_NUM_LEN] = {0};
1485                             OicUuid_t deviceID = {.id = {0}};
1486
1487                             //Generate mutualVerifNum
1488                             OCServerRequest * request = GetServerRequestUsingHandle(ehRequest->requestHandle);
1489
1490                             char label[LABEL_LEN] = {0};
1491                             snprintf(label, LABEL_LEN, "%s%s", MUTUAL_VERIF_NUM, OXM_MV_JUST_WORKS);
1492                             if (OC_STACK_OK != GetDoxmDeviceID(&deviceID))
1493                             {
1494                                 OIC_LOG(ERROR, TAG, "Error while retrieving Owner's device ID");
1495                                 ehRet = OC_EH_ERROR;
1496                                 goto exit;
1497
1498                             }
1499
1500                             CAResult_t pskRet = CAGenerateOwnerPSK((CAEndpoint_t *)&request->devAddr,
1501                                     (uint8_t *)label,
1502                                     strlen(label),
1503                                     gDoxm->owner.id, sizeof(gDoxm->owner.id),
1504                                     gDoxm->deviceID.id, sizeof(gDoxm->deviceID.id),
1505                                     preMutualVerifNum, OWNER_PSK_LENGTH_128);
1506                             if (CA_STATUS_OK != pskRet)
1507                             {
1508                                 OIC_LOG(WARNING, TAG, "Failed to remove the invaild owner credential");
1509                                 ehRet = OC_EH_ERROR;
1510                                 goto exit;
1511
1512                             }
1513
1514                             memcpy(mutualVerifNum, preMutualVerifNum + OWNER_PSK_LENGTH_128 - sizeof(mutualVerifNum),
1515                                     sizeof(mutualVerifNum));
1516
1517                             gConfirmMsgId = ehRequest->messageID;
1518                             gConfirmState = CONFIRM_STATE_WAIT;
1519                             //Wait for user confirmation
1520                             if (OC_STACK_OK != VerifyOwnershipTransfer(mutualVerifNum, DISPLAY_NUM | USER_CONFIRM))
1521                             {
1522                                 ehRet = OC_EH_NOT_ACCEPTABLE;
1523                                 gConfirmState = CONFIRM_STATE_DENIED;
1524                             }
1525                             else
1526                             {
1527                                 ehRet = OC_EH_OK;
1528                                 gConfirmState = CONFIRM_STATE_ACCEPTED;
1529                             }
1530                         }
1531
1532 #endif // __WITH_DTLS__ or __WITH_TLS__
1533                     }
1534                 }
1535                 else if (OIC_RANDOM_DEVICE_PIN == newDoxm->oxmSel)
1536                 {
1537                     /*
1538                      * If current state of the device is un-owned, enable
1539                      * anonymous ECDH cipher in tinyDTLS so that Provisioning
1540                      * tool can initiate JUST_WORKS ownership transfer process.
1541                      */
1542                     if(memcmp(&(newDoxm->owner), &emptyOwner, sizeof(OicUuid_t)) == 0)
1543                     {
1544                         gDoxm->oxmSel = newDoxm->oxmSel;
1545                         //Update new state in persistent storage
1546                         if ((UpdatePersistentStorage(gDoxm) == true))
1547                         {
1548                             ehRet = OC_EH_OK;
1549                         }
1550                         else
1551                         {
1552                             OIC_LOG(WARNING, TAG, "Failed to update DOXM in persistent storage");
1553                             ehRet = OC_EH_ERROR;
1554                         }
1555
1556 #if defined(__WITH_DTLS__) || defined(__WITH_TLS__)
1557                         CAResult_t caRes = CA_STATUS_OK;
1558
1559                         caRes = CAEnableAnonECDHCipherSuite(false);
1560                         VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
1561                         OIC_LOG(INFO, TAG, "ECDH_ANON CipherSuite is DISABLED");
1562
1563                         caRes = CASelectCipherSuite(MBEDTLS_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256,
1564                                                     ehRequest->devAddr.adapter);
1565                         VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
1566
1567                         if (!isDuplicatedMsg)
1568                         {
1569                             char ranPin[OXM_RANDOM_PIN_MAX_SIZE + 1] = {0};
1570                             if (OC_STACK_OK == GeneratePin(ranPin, sizeof(ranPin)))
1571                             {
1572                                 //Set the device id to derive temporal PSK
1573                                 SetUuidForPinBasedOxm(&gDoxm->deviceID);
1574
1575                                 /**
1576                                  * Since PSK will be used directly by DTLS layer while PIN based ownership transfer,
1577                                  * Credential should not be saved into SVR.
1578                                  * For this reason, use a temporary get_psk_info callback to random PIN OxM.
1579                                  */
1580                                 caRes = CAregisterPskCredentialsHandler(GetDtlsPskForRandomPinOxm);
1581                                 VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
1582                                 ehRet = OC_EH_OK;
1583                             }
1584                             else
1585                             {
1586                                 OIC_LOG(ERROR, TAG, "Failed to generate random PIN");
1587                                 ehRet = OC_EH_ERROR;
1588                             }
1589                         }
1590 #endif // __WITH_DTLS__ or __WITH_TLS__
1591                     }
1592 #if defined(__WITH_DTLS__) || defined(__WITH_TLS__)
1593                     else
1594                     {
1595                         //Save the owner's UUID to derive owner credential
1596                         memcpy(&(gDoxm->owner), &(newDoxm->owner), sizeof(OicUuid_t));
1597
1598                         // In case of random-pin based OTM, close the PIN display if callback is registered.
1599                         if (!isDuplicatedMsg)
1600                         {
1601                             ClosePinDisplay();
1602                         }
1603
1604                         //Update new state in persistent storage
1605                         if (UpdatePersistentStorage(gDoxm) == true)
1606                         {
1607                             ehRet = OC_EH_OK;
1608                         }
1609                         else
1610                         {
1611                             OIC_LOG(ERROR, TAG, "Failed to update DOXM in persistent storage");
1612                             ehRet = OC_EH_ERROR;
1613                         }
1614                     }
1615 #endif // __WITH_DTLS__ or __WITH_TLS__
1616                 }
1617 #if defined(__WITH_DTLS__) || defined (__WITH_TLS__)
1618                 else if (OIC_MANUFACTURER_CERTIFICATE ==  newDoxm->oxmSel || OIC_CON_MFG_CERT == newDoxm->oxmSel)
1619                 {
1620                     if (CONFIRM_STATE_ACCEPTED != gConfirmState && CONFIRM_STATE_DENIED != gConfirmState)
1621                     {
1622                         //Get user confirmation
1623                         if (false == newDoxm->owned &&
1624                             false == isDuplicatedMsg &&
1625                             memcmp(&(newDoxm->owner), &emptyOwner, sizeof(OicUuid_t)) != 0)
1626                         {
1627                             gConfirmMsgId = ehRequest->messageID;
1628                             gConfirmState = CONFIRM_STATE_WAIT;
1629
1630                             if (OC_STACK_OK != VerifyUserConfirm())
1631                             {
1632                                 if (OC_STACK_OK != VerifyOwnershipTransfer(NULL, USER_CONFIRM))
1633                                 {
1634                                     ehRet = OC_EH_NOT_ACCEPTABLE;
1635                                     gConfirmState = CONFIRM_STATE_DENIED;
1636                                     goto exit;
1637                                 }
1638                             }
1639                             else
1640                             {
1641                                 OCEntityHandlerRequest * ehRequestCopy = CopyRequest(ehRequest);
1642                                 VERIFY_NON_NULL(TAG, ehRequestCopy, ERROR);
1643
1644                                 g_condWait = oc_cond_new();
1645                                 g_mutexWait = oc_mutex_new();
1646                                 if (oc_thread_new (&g_waitConfirmThreadId, WaitConfirm, ehRequestCopy))
1647                                 {
1648                                     oc_thread_detach(g_waitConfirmThreadId);
1649                                 }
1650
1651                                 previousMsgId = ehRequest->messageID;
1652
1653                                 return OC_EH_SLOW;
1654                             }
1655                         }
1656                     }
1657                     else if (CONFIRM_STATE_DENIED == gConfirmState)
1658                     {
1659                         ehRet = OC_EH_NOT_ACCEPTABLE;
1660                         goto exit;
1661                     }
1662
1663                     //Save the owner's UUID to derive owner credential
1664                     memcpy(&(gDoxm->owner), &(newDoxm->owner), sizeof(OicUuid_t));
1665                     gDoxm->oxmSel = newDoxm->oxmSel;
1666                     //Update new state in persistent storage
1667                     if (UpdatePersistentStorage(gDoxm))
1668                     {
1669                         ehRet = OC_EH_OK;
1670                     }
1671                     else
1672                     {
1673                         OIC_LOG(WARNING, TAG, "Failed to update DOXM in persistent storage");
1674                         ehRet = OC_EH_ERROR;
1675                     }
1676                     CAResult_t caRes = CAEnableAnonECDHCipherSuite(false);
1677                     VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
1678                     OIC_LOG(INFO, TAG, "ECDH_ANON CipherSuite is DISABLED");
1679
1680                     //Unset pre-selected ciphersuite, if any
1681                     caRes = CASelectCipherSuite(0, ehRequest->devAddr.adapter);
1682                     VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
1683                     OIC_LOG(DEBUG, TAG, "No ciphersuite preferred");
1684
1685                     VERIFY_SUCCESS(TAG, CA_STATUS_OK == CAregisterPkixInfoHandler(GetManufacturerPkixInfo), ERROR);
1686                     VERIFY_SUCCESS(TAG, CA_STATUS_OK == CAregisterGetCredentialTypesHandler(InitManufacturerCipherSuiteList), ERROR);
1687                 }
1688 #endif // __WITH_DTLS__ or __WITH_TLS__
1689             }
1690
1691             /*
1692              * When current state of the device is un-owned and Provisioning
1693              * Tool is attempting to change the state to 'Owned' with a
1694              * qualified value for the field 'Owner'
1695              */
1696             if ((false == gDoxm->owned) && (true == newDoxm->owned) &&
1697                     (memcmp(&(gDoxm->owner), &(newDoxm->owner), sizeof(OicUuid_t)) == 0))
1698             {
1699                 //Change the SVR's resource owner as owner device.
1700                 OCStackResult ownerRes = SetAclRownerId(&gDoxm->owner);
1701                 if(OC_STACK_OK != ownerRes && OC_STACK_NO_RESOURCE != ownerRes)
1702                 {
1703                     ehRet = OC_EH_ERROR;
1704                     goto exit;
1705                 }
1706                 ownerRes = SetAmaclRownerId(&gDoxm->owner);
1707                 if(OC_STACK_OK != ownerRes && OC_STACK_NO_RESOURCE != ownerRes)
1708                 {
1709                     ehRet = OC_EH_ERROR;
1710                     goto exit;
1711                 }
1712                 ownerRes = SetCredRownerId(&gDoxm->owner);
1713                 if(OC_STACK_OK != ownerRes && OC_STACK_NO_RESOURCE != ownerRes)
1714                 {
1715                     ehRet = OC_EH_ERROR;
1716                     goto exit;
1717                 }
1718                 ownerRes = SetPstatRownerId(&gDoxm->owner);
1719                 if(OC_STACK_OK != ownerRes && OC_STACK_NO_RESOURCE != ownerRes)
1720                 {
1721                     ehRet = OC_EH_ERROR;
1722                     goto exit;
1723                 }
1724
1725                 gDoxm->owned = true;
1726                 memcpy(&gDoxm->rownerID, &gDoxm->owner, sizeof(OicUuid_t));
1727
1728                 // Update new state in persistent storage
1729                 if (UpdatePersistentStorage(gDoxm))
1730                 {
1731                     //Update default ACE of security resource to prevent anonymous user access.
1732                     if(OC_STACK_OK == UpdateDefaultSecProvACE())
1733                     {
1734                         ehRet = OC_EH_OK;
1735                     }
1736                     else
1737                     {
1738                         OIC_LOG(ERROR, TAG, "Failed to remove default ACL for security provisioning");
1739                         ehRet = OC_EH_ERROR;
1740                     }
1741                 }
1742                 else
1743                 {
1744                     OIC_LOG(ERROR, TAG, "Failed to update DOXM in persistent storage");
1745                     ehRet = OC_EH_ERROR;
1746                 }
1747 #if defined(__WITH_DTLS__) || defined (__WITH_TLS__)
1748                 if (OIC_MANUFACTURER_CERTIFICATE == gDoxm->oxmSel ||
1749                                             OIC_CON_MFG_CERT== gDoxm->oxmSel)
1750                 {
1751                     CAregisterPkixInfoHandler(GetPkixInfo);
1752                     CAregisterGetCredentialTypesHandler(InitCipherSuiteList);
1753                 }
1754
1755                 InvokeOtmEventHandler(ehRequest->devAddr.addr, ehRequest->devAddr.port,
1756                                       &gDoxm->owner, OIC_OTM_DONE);
1757 #endif // __WITH_DTLS__ or __WITH_TLS__
1758             }
1759         }
1760     }
1761
1762 exit:
1763     if(OC_EH_OK != ehRet)
1764     {
1765         /*
1766          * If some error is occured while ownership transfer,
1767          * ownership transfer related resource should be revert back to initial status.
1768         */
1769         if(gDoxm)
1770         {
1771             if(!gDoxm->owned)
1772             {
1773                 OIC_LOG(WARNING, TAG, "The operation failed during handle DOXM request");
1774
1775                 if (!isDuplicatedMsg)
1776                 {
1777 #if defined (__WITH_TLS__) || defined(__WITH_DTLS__)
1778                     InvokeOtmEventHandler(ehRequest->devAddr.addr, ehRequest->devAddr.port,
1779                                           NULL, OIC_OTM_ERROR);
1780 #endif
1781                     ResetSecureResourceInPS();
1782                     OIC_LOG(WARNING, TAG, "DOXM will be reverted.");
1783                 }
1784             }
1785         }
1786         else
1787         {
1788             OIC_LOG(ERROR, TAG, "Invalid DOXM resource.");
1789         }
1790     }
1791
1792     previousMsgId = ehRequest->messageID;
1793
1794 #if defined (__WITH_TLS__) || defined(__WITH_DTLS__)
1795     CAEndpoint_t peer = {0};
1796     OCDevAddr devAddr =  ehRequest->devAddr;
1797
1798     memcpy(&peer.addr, &devAddr.addr, sizeof(peer.addr));
1799     peer.port = devAddr.port;
1800     peer.adapter = (CATransportAdapter_t)devAddr.adapter;
1801
1802     if ((devAddr.flags & OC_FLAG_SECURE) && (false == CAIsExistSslPeer(&peer)))
1803     {
1804         OIC_LOG_V(WARNING, TAG, "Not Exist Peer");
1805         ehRet = OC_EH_OK;
1806     }
1807     else
1808     {
1809         //Send payload to request originator
1810         ehRet = ((SendSRMResponse(ehRequest, ehRet, NULL, 0)) == OC_STACK_OK) ?
1811             OC_EH_OK : OC_EH_ERROR;
1812     }
1813 #else
1814     //Send payload to request originator
1815     ehRet = ((SendSRMResponse(ehRequest, ehRet, NULL, 0)) == OC_STACK_OK) ?
1816         OC_EH_OK : OC_EH_ERROR;
1817 #endif
1818
1819     DeleteDoxmBinData(newDoxm);
1820
1821     return ehRet;
1822 }
1823
1824 #ifdef MULTIPLE_OWNER
1825 static OCEntityHandlerResult HandleDoxmDeleteRequest(const OCEntityHandlerRequest *ehRequest)
1826 {
1827     OIC_LOG(DEBUG, TAG, "Processing DoxmDeleteRequest");
1828
1829     OCEntityHandlerResult ehRet = OC_EH_BAD_REQ;
1830
1831     if (NULL == ehRequest->query)
1832     {
1833         return ehRet;
1834     }
1835
1836     OicParseQueryIter_t parseIter = { .attrPos=NULL };
1837     OicUuid_t subject = {.id={0}};
1838
1839     //Parsing REST query to get the subject
1840     ParseQueryIterInit((unsigned char *)ehRequest->query, &parseIter);
1841     while (GetNextQuery(&parseIter))
1842     {
1843         if (strncasecmp((char *)parseIter.attrPos, OIC_JSON_SUBOWNERID_NAME,
1844                 parseIter.attrLen) == 0)
1845         {
1846             if (0 == strncmp((const char*)parseIter.valPos, WILDCARD_RESOURCE_URI,
1847                              strlen(WILDCARD_RESOURCE_URI)))
1848             {
1849                 if(OC_STACK_RESOURCE_DELETED == RemoveSubOwner(&WILDCARD_SUBJECT_ID))
1850                 {
1851                     ehRet = OC_EH_RESOURCE_DELETED;
1852                 }
1853             }
1854             else
1855             {
1856                 OCStackResult ret = ConvertStrToUuid((const char*)parseIter.valPos, &subject);
1857                 VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
1858
1859                 if(OC_STACK_RESOURCE_DELETED == RemoveSubOwner(&subject))
1860                 {
1861                     ehRet = OC_EH_RESOURCE_DELETED;
1862                 }
1863             }
1864         }
1865     }
1866
1867     //Send response to request originator
1868     ehRet = ((SendSRMResponse(ehRequest, ehRet, NULL, 0)) == OC_STACK_OK) ?
1869                    OC_EH_OK : OC_EH_ERROR;
1870
1871     return ehRet;
1872 exit:
1873     return OC_EH_ERROR;
1874 }
1875 #endif //MULTIPLE_OWNER
1876
1877 OCEntityHandlerResult DoxmEntityHandler(OCEntityHandlerFlag flag,
1878                                         OCEntityHandlerRequest * ehRequest,
1879                                         void* callbackParam)
1880 {
1881     (void)callbackParam;
1882     OCEntityHandlerResult ehRet = OC_EH_ERROR;
1883
1884     if(NULL == ehRequest)
1885     {
1886         return ehRet;
1887     }
1888
1889     oc_mutex_lock(g_mutexDoxm);
1890
1891     if(g_isDoxmNull)
1892     {
1893         oc_mutex_unlock(g_mutexDoxm);
1894         return OC_EH_SERVICE_UNAVAILABLE;
1895     }
1896
1897     if (flag & OC_REQUEST_FLAG)
1898     {
1899         OIC_LOG(DEBUG, TAG, "Flag includes OC_REQUEST_FLAG");
1900
1901         switch (ehRequest->method)
1902         {
1903             case OC_REST_GET:
1904                 ehRet = HandleDoxmGetRequest(ehRequest);
1905                 break;
1906
1907             case OC_REST_POST:
1908                 ehRet = HandleDoxmPostRequest(ehRequest);
1909                 break;
1910
1911 #ifdef MULTIPLE_OWNER
1912             case OC_REST_DELETE:
1913                 ehRet = HandleDoxmDeleteRequest(ehRequest);
1914                 break;
1915 #endif //MULTIPLE_OWNER
1916
1917             default:
1918                 ehRet = ((SendSRMResponse(ehRequest, ehRet, NULL, 0)) == OC_STACK_OK) ?
1919                                OC_EH_OK : OC_EH_ERROR;
1920                 break;
1921         }
1922
1923         oc_mutex_unlock(g_mutexDoxm);
1924     }
1925
1926     return ehRet;
1927 }
1928
1929 OCStackResult CreateDoxmResource()
1930 {
1931     OCStackResult ret = OCCreateResource(&gDoxmHandle,
1932                                          OIC_RSRC_TYPE_SEC_DOXM,
1933                                          OC_RSRVD_INTERFACE_DEFAULT,
1934                                          OIC_RSRC_DOXM_URI,
1935                                          DoxmEntityHandler,
1936                                          NULL,
1937                                          OC_SECURE |
1938                                          OC_DISCOVERABLE);
1939
1940     if (OC_STACK_OK != ret)
1941     {
1942         OIC_LOG (FATAL, TAG, "Unable to instantiate Doxm resource");
1943         DeInitDoxmResource();
1944     }
1945     return ret;
1946 }
1947
1948 /**
1949  * Checks if DeviceID is generated during provisioning for the new device.
1950  * If DeviceID is NULL then generates the new DeviceID.
1951  * Once DeviceID is assigned to the device it does not change for the lifetime of the device.
1952  */
1953 static OCStackResult CheckDeviceID()
1954 {
1955     OIC_LOG_V(DEBUG, TAG, "IN: %s", __func__);
1956
1957     OCStackResult ret = OC_STACK_ERROR;
1958     bool validId = false;
1959
1960     if (!gDoxm)
1961     {
1962         OIC_LOG_V(ERROR, TAG, "%s: gDoxm is NULL", __func__);
1963         return OC_STACK_INVALID_PARAM;
1964     }
1965
1966     for (uint8_t i = 0; i < UUID_LENGTH; i++)
1967     {
1968         if (gDoxm->deviceID.id[i] != 0)
1969         {
1970             validId = true;
1971             break;
1972         }
1973     }
1974
1975     if (!validId)
1976     {
1977         char* strUuid = NULL;
1978 #if defined(__WITH_DTLS__) || defined (__WITH_TLS__)
1979         //If seed value is exist, generate UUID using seed with SHA256
1980         if (0 != gUuidSeedSize)
1981         {
1982             uint8_t hashVal[MBEDTLS_MD_MAX_SIZE] = {0};
1983             mbedtls_md_context_t sha_ctx;
1984             int mbedret = 1;
1985
1986             OIC_LOG(DEBUG, TAG, "UUID will be generated using seed w/ SHA256");
1987             OIC_LOG(DEBUG, TAG, "Seed value : ");
1988             OIC_LOG_BUFFER(DEBUG, TAG, gUuidSeed, gUuidSeedSize);
1989
1990             mbedtls_md_init( &sha_ctx );
1991             mbedret = mbedtls_md_setup( &sha_ctx, mbedtls_md_info_from_type( MBEDTLS_MD_SHA256 ), 1 );
1992             if (0 == mbedret)
1993             {
1994                 mbedtls_md_starts( &sha_ctx );
1995                 mbedtls_md_update( &sha_ctx, gUuidSeed, gUuidSeedSize);
1996                 mbedtls_md_finish(&sha_ctx, (unsigned char*)hashVal);
1997                 memcpy(gDoxm->deviceID.id, hashVal, sizeof(gDoxm->deviceID.id));
1998                 ret = OC_STACK_OK;
1999             }
2000             else
2001             {
2002                 OIC_LOG_V(ERROR, TAG,  "mbedtls_md_setup() returned -0x%04x\n", -mbedret);
2003                 ret = OC_STACK_ERROR;
2004             }
2005             mbedtls_md_free( &sha_ctx );
2006         }
2007         else
2008         {
2009             if (RAND_UUID_OK != OCGenerateUuid(gDoxm->deviceID.id))
2010             {
2011                 OIC_LOG(FATAL, TAG, "Generate UUID for Server Instance failed!");
2012                 return OC_STACK_ERROR;
2013             }
2014             ret = OC_STACK_OK;
2015         }
2016 #else
2017         if (RAND_UUID_OK != OCGenerateUuid(gDoxm->deviceID.id))
2018         {
2019             OIC_LOG(FATAL, TAG, "Generate UUID for Server Instance failed!");
2020             return ret;
2021         }
2022         ret = OC_STACK_OK;
2023 #endif
2024
2025         if (OC_STACK_OK == ConvertUuidToStr(&gDoxm->deviceID, &strUuid))
2026         {
2027             OIC_LOG_V(DEBUG, TAG, "Generated device UUID is [%s]", strUuid);
2028             OICFree(strUuid);
2029         }
2030         else
2031         {
2032             OIC_LOG(WARNING, TAG, "Failed to convert UUID to string");
2033         }
2034
2035
2036         if (!UpdatePersistentStorage(gDoxm))
2037         {
2038             //TODO: After registering PSI handler in all samples, do ret = OC_STACK_OK here.
2039             OIC_LOG(FATAL, TAG, "UpdatePersistentStorage failed!");
2040         }
2041     }
2042     else
2043     {
2044         ret = OC_STACK_OK;
2045     }
2046
2047     OIC_LOG_V(DEBUG, TAG, "OUT: %s", __func__);
2048
2049     return ret;
2050 }
2051
2052 /**
2053  * Get the default value.
2054  *
2055  * @return the default value of doxm, @ref OicSecDoxm_t.
2056  */
2057 static OicSecDoxm_t* GetDoxmDefault()
2058 {
2059     OIC_LOG(DEBUG, TAG, "GetDoxmToDefault");
2060     return &gDefaultDoxm;
2061 }
2062
2063 const OicSecDoxm_t* GetDoxmResourceData()
2064 {
2065     return gDoxm;
2066 }
2067
2068 #if defined(__WITH_DTLS__) && defined(MULTIPLE_OWNER)
2069 /**
2070  * Internal API to prepare MOT
2071  */
2072 static void PrepareMOT(const OicSecDoxm_t* doxm)
2073 {
2074     OIC_LOG(INFO, TAG, "IN PrepareMOT");
2075     VERIFY_NON_NULL(TAG, doxm, ERROR);
2076
2077     if(true == doxm->owned && NULL != doxm->mom && OIC_MULTIPLE_OWNER_DISABLE != doxm->mom->mode)
2078     {
2079         CAResult_t caRes = CA_STATUS_FAILED;
2080
2081         OIC_LOG(INFO, TAG, "Multiple Ownership Transfer Enabled!");
2082
2083         if(OIC_PRECONFIG_PIN == doxm->oxmSel)
2084         {
2085             caRes = CAEnableAnonECDHCipherSuite(false);
2086             VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
2087             OIC_LOG(INFO, TAG, "ECDH_ANON CipherSuite is DISABLED");
2088
2089             caRes = CASelectCipherSuite((uint16_t)MBEDTLS_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256, CA_ADAPTER_IP);
2090             VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
2091 #ifdef __WITH_TLS__
2092             caRes = CASelectCipherSuite((uint16_t)MBEDTLS_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256, CA_ADAPTER_TCP);
2093             VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
2094 #endif
2095             OIC_LOG(INFO, TAG, "ECDHE_PSK CipherSuite will be used for MOT");
2096
2097             //Set the device id to derive temporal PSK
2098             SetUuidForPinBasedOxm(&doxm->deviceID);
2099         }
2100         else
2101         {
2102             OIC_LOG(ERROR, TAG, "Unsupported OxM for Multiple Ownership Transfer.");
2103             return;
2104         }
2105
2106         CAregisterSslHandshakeCallback(MultipleOwnerDTLSHandshakeCB);
2107     }
2108
2109     OIC_LOG(INFO, TAG, "OUT PrepareMOT");
2110     return;
2111 exit:
2112     OIC_LOG(WARNING, TAG, "Error in PrepareMOT");
2113 }
2114 #endif //defined(__WITH_DTLS__) && defined(MULTIPLE_OWNER)
2115
2116 OCStackResult InitDoxmResource()
2117 {
2118     OCStackResult ret = OC_STACK_ERROR;
2119
2120     if (!g_mutexDoxm)
2121     {
2122         g_mutexDoxm = oc_mutex_new();
2123             if(!g_mutexDoxm)
2124             {
2125                 return OC_STACK_ERROR;
2126             }
2127     }
2128
2129     gConfirmState = CONFIRM_STATE_READY;
2130     gConfirmMsgId = 0;
2131
2132     //Read DOXM resource from PS
2133     uint8_t *data = NULL;
2134     size_t size = 0;
2135     ret = GetSecureVirtualDatabaseFromPS(OIC_JSON_DOXM_NAME, &data, &size);
2136     // If database read failed
2137     if (OC_STACK_OK != ret)
2138     {
2139        OIC_LOG (DEBUG, TAG, "ReadSVDataFromPS failed");
2140     }
2141     if (data)
2142     {
2143        // Read DOXM resource from PS
2144        ret = CBORPayloadToDoxm(data, size, &gDoxm);
2145     }
2146     /*
2147      * If SVR database in persistent storage got corrupted or
2148      * is not available for some reason, a default doxm is created
2149      * which allows user to initiate doxm provisioning again.
2150      */
2151      if ((OC_STACK_OK != ret) || !data || !gDoxm)
2152     {
2153         gDoxm = GetDoxmDefault();
2154     }
2155
2156      oc_mutex_lock(g_mutexDoxm);
2157      g_isDoxmNull = false;
2158      oc_mutex_unlock(g_mutexDoxm);
2159
2160     //In case of the server is shut down unintentionally, we should initialize the owner
2161     if(gDoxm && (false == gDoxm->owned))
2162     {
2163         OicUuid_t emptyUuid = {.id={0}};
2164         memcpy(&gDoxm->owner, &emptyUuid, sizeof(OicUuid_t));
2165 #if defined (__WITH_TLS__) || defined(__WITH_DTLS__)
2166         InvokeOtmEventHandler(NULL, 0, NULL, OIC_OTM_READY);
2167 #endif
2168     }
2169
2170     ret = CheckDeviceID();
2171     if (ret == OC_STACK_OK)
2172     {
2173         OIC_LOG_V(DEBUG, TAG, "Initial Doxm Owned = %d", gDoxm->owned);
2174         //Instantiate 'oic.sec.doxm'
2175         ret = CreateDoxmResource();
2176     }
2177     else
2178     {
2179         OIC_LOG (ERROR, TAG, "CheckDeviceID failed");
2180     }
2181     OICFree(data);
2182
2183 #if defined(__WITH_DTLS__) && defined(MULTIPLE_OWNER)
2184     //if MOT is enabled, MOT should be prepared.
2185     if(gDoxm && gDoxm->owned)
2186     {
2187         PrepareMOT(gDoxm);
2188     }
2189 #endif // defined(__WITH_DTLS__) && defined(MULTIPLE_OWNER)
2190
2191     return ret;
2192 }
2193
2194 OCStackResult DeInitDoxmResource()
2195 {
2196     oc_mutex_lock(g_mutexDoxm);
2197     OCStackResult ret = OCDeleteResource(gDoxmHandle);
2198     if (gDoxm  != &gDefaultDoxm)
2199     {
2200         DeleteDoxmBinData(gDoxm);
2201     }
2202     gDoxm = NULL;
2203     g_isDoxmNull = true;
2204
2205     if (OC_STACK_OK == ret)
2206     {
2207         oc_mutex_unlock(g_mutexDoxm);
2208         return OC_STACK_OK;
2209     }
2210     else
2211     {
2212         oc_mutex_unlock(g_mutexDoxm);
2213         return OC_STACK_ERROR;
2214     }
2215 }
2216
2217 OCStackResult GetDoxmDeviceID(OicUuid_t *deviceID)
2218 {
2219     if (deviceID && gDoxm)
2220     {
2221        *deviceID = gDoxm->deviceID;
2222         return OC_STACK_OK;
2223     }
2224     return OC_STACK_ERROR;
2225 }
2226
2227 OCStackResult GetDoxmIsOwned(bool *isOwned)
2228 {
2229     if (isOwned && gDoxm)
2230     {
2231        *isOwned = gDoxm->owned;
2232         return OC_STACK_OK;
2233     }
2234     return OC_STACK_ERROR;
2235 }
2236
2237 #if defined(__WITH_DTLS__) || defined (__WITH_TLS__)
2238 OCStackResult SetDoxmDeviceIDSeed(const uint8_t* seed, size_t seedSize)
2239 {
2240     OIC_LOG_V(INFO, TAG, "In %s", __func__);
2241
2242     if (NULL == seed)
2243     {
2244         return OC_STACK_INVALID_PARAM;
2245     }
2246     if (MAX_UUID_SEED_SIZE < seedSize)
2247     {
2248         OIC_LOG_V(ERROR, TAG, "Seed size is too long (MAX size is %d bytes)", MAX_UUID_SEED_SIZE);
2249         return OC_STACK_INVALID_PARAM;
2250     }
2251     if (MIN_UUID_SEED_SIZE > seedSize)
2252     {
2253         OIC_LOG_V(ERROR, TAG, "Seed size is too small (MIN size is %d bytes)", MIN_UUID_SEED_SIZE);
2254         return OC_STACK_INVALID_PARAM;
2255     }
2256
2257     memset(gUuidSeed, 0x00, sizeof(gUuidSeed));
2258     memcpy(gUuidSeed, seed, seedSize);
2259     gUuidSeedSize = seedSize;
2260
2261     OIC_LOG_V(INFO, TAG, "Out %s", __func__);
2262
2263     return OC_STACK_OK;
2264 }
2265
2266 #endif
2267
2268 OCStackResult SetDoxmDeviceID(const OicUuid_t *deviceID)
2269 {
2270     bool isOwnerUpdated = false;
2271     bool isRownerUpdated = false;
2272     if (NULL == deviceID)
2273     {
2274         return OC_STACK_INVALID_PARAM;
2275     }
2276     if (NULL == gDoxm)
2277     {
2278         OIC_LOG(ERROR, TAG, "Doxm resource is not initialized.");
2279         return OC_STACK_NO_RESOURCE;
2280     }
2281
2282 #ifdef __WITH_DTLS__
2283     //for normal device.
2284     if (true == gDoxm->owned
2285             && memcmp(gEmptyUuid, gDoxm->owner.id, sizeof(gDoxm->owner.id)) != 0
2286             && memcmp(gDoxm->deviceID.id, gDoxm->owner.id, sizeof(gDoxm->owner.id)) != 0)
2287     {
2288         OIC_LOG(ERROR, TAG, "This device owned by owner's device.");
2289         OIC_LOG(ERROR, TAG, "Device UUID cannot be changed to guarantee the reliability of the connection.");
2290         return OC_STACK_ERROR;
2291     }
2292 #endif //__WITH_DTLS
2293
2294     //Save the previous UUID
2295     OicUuid_t prevUuid;
2296     memcpy(prevUuid.id, gDoxm->deviceID.id, sizeof(prevUuid.id));
2297
2298     //Change the device UUID
2299     memcpy(gDoxm->deviceID.id, deviceID->id, sizeof(deviceID->id));
2300
2301     //Change the owner ID if necessary
2302     if (memcmp(gDoxm->owner.id, prevUuid.id, sizeof(prevUuid.id)) == 0)
2303     {
2304         memcpy(gDoxm->owner.id, deviceID->id, sizeof(deviceID->id));
2305         isOwnerUpdated = true;
2306     }
2307     //Change the resource owner ID if necessary
2308     if (memcmp(gDoxm->rownerID.id, prevUuid.id, sizeof(prevUuid.id)) == 0)
2309     {
2310         memcpy(gDoxm->rownerID.id, deviceID->id, sizeof(deviceID->id));
2311         isRownerUpdated = true;
2312     }
2313     // TODO: T.B.D Change resource owner for pstat, acl and cred
2314
2315     //Update PS
2316     if (!UpdatePersistentStorage(gDoxm))
2317     {
2318         //revert UUID in case of PSI error
2319         memcpy(gDoxm->deviceID.id, prevUuid.id, sizeof(prevUuid.id));
2320         if (isOwnerUpdated)
2321         {
2322             memcpy(gDoxm->owner.id, prevUuid.id, sizeof(prevUuid.id));
2323         }
2324         if (isRownerUpdated)
2325         {
2326             memcpy(gDoxm->rownerID.id, prevUuid.id, sizeof(prevUuid.id));
2327         }
2328         // TODO: T.B.D Revert resource owner for pstat, acl and cred
2329
2330         OIC_LOG(ERROR, TAG, "Failed to update persistent storage");
2331         return OC_STACK_ERROR;
2332     }
2333     return OC_STACK_OK;
2334 }
2335
2336 OCStackResult GetDoxmDevOwnerId(OicUuid_t *devownerid)
2337 {
2338     OCStackResult retVal = OC_STACK_ERROR;
2339     if (gDoxm)
2340     {
2341         OIC_LOG_V(DEBUG, TAG, "GetDoxmDevOwnerId(): gDoxm owned =  %d.", \
2342             gDoxm->owned);
2343         if (gDoxm->owned)
2344         {
2345             *devownerid = gDoxm->owner;
2346             retVal = OC_STACK_OK;
2347         }
2348     }
2349     return retVal;
2350 }
2351
2352 OCStackResult GetDoxmRownerId(OicUuid_t *rowneruuid)
2353 {
2354     OCStackResult retVal = OC_STACK_ERROR;
2355     if (gDoxm)
2356     {
2357         if( gDoxm->owned )
2358         {
2359             *rowneruuid = gDoxm->rownerID;
2360                     retVal = OC_STACK_OK;
2361         }
2362     }
2363     return retVal;
2364 }
2365
2366 #ifdef MULTIPLE_OWNER
2367 /**
2368  * Compare the UUID to SubOwner.
2369  *
2370  * @param[in] uuid device UUID
2371  *
2372  * @return true if context->subjectId exist subowner list, else false.
2373  */
2374 bool IsSubOwner(const OicUuid_t* uuid)
2375 {
2376     bool retVal = false;
2377
2378     if (NULL == uuid)
2379     {
2380         return retVal;
2381     }
2382
2383     if (gDoxm && gDoxm->subOwners)
2384     {
2385         if (memcmp(gDoxm->owner.id, uuid->id, sizeof(gDoxm->owner.id)) == 0)
2386         {
2387             return false;
2388         }
2389
2390         OicSecSubOwner_t* subOwner = NULL;
2391         LL_FOREACH(gDoxm->subOwners, subOwner)
2392         {
2393             if (memcmp(subOwner->uuid.id, uuid->id, sizeof(uuid->id)) == 0)
2394             {
2395                 return true;
2396             }
2397         }
2398     }
2399     return retVal;
2400 }
2401 #endif //MULTIPLE_OWNER
2402
2403 OCStackResult SetMOTStatus(bool enable)
2404 {
2405     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
2406 #ifdef MULTIPLE_OWNER
2407     OCStackResult ret = OC_STACK_NO_MEMORY;
2408     uint8_t *cborPayload = NULL;
2409     size_t size = 0;
2410     bool isDeallocateRequired = false;
2411
2412     VERIFY_NON_NULL(TAG, gDoxm, ERROR);
2413
2414     if (NULL == gDoxm->mom && !enable)
2415     {
2416         OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
2417         return OC_STACK_OK;
2418     }
2419
2420     if (NULL == gDoxm->mom)
2421     {
2422         gDoxm->mom = (OicSecMom_t*)OICCalloc(1, sizeof(OicSecMom_t));
2423         VERIFY_NON_NULL(TAG, gDoxm->mom, ERROR);
2424         isDeallocateRequired = true;
2425     }
2426
2427     gDoxm->mom->mode = (enable ? OIC_MULTIPLE_OWNER_ENABLE : OIC_MULTIPLE_OWNER_DISABLE);
2428     gDoxm->oxmSel = OIC_PRECONFIG_PIN;
2429
2430     ret = DoxmToCBORPayload(gDoxm, &cborPayload, &size, false);
2431     VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
2432
2433     ret = UpdateSecureResourceInPS(OIC_JSON_DOXM_NAME, cborPayload, size);
2434     VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
2435
2436     isDeallocateRequired = false;
2437
2438 exit:
2439     if (isDeallocateRequired)
2440     {
2441         OICFree(gDoxm->mom);
2442     }
2443     if (cborPayload)
2444     {
2445         OICFree(cborPayload);
2446     }
2447     OIC_LOG_V(DEBUG, TAG, "Out %s : %d", __func__, ret);
2448     return ret;
2449 #else
2450     OC_UNUSED(enable);
2451     OIC_LOG(DEBUG, TAG, "Multiple Owner is not enabled.");
2452     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
2453     return OC_STACK_ERROR;
2454 #endif //MULTIPLE_OWNER
2455 }
2456
2457 OCStackResult RemoveSubOwner(const OicUuid_t* subOwner)
2458 {
2459     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
2460 #ifdef MULTIPLE_OWNER
2461     OCStackResult ret = OC_STACK_ERROR;
2462     bool isDeleted = false;
2463
2464     if (NULL == subOwner)
2465     {
2466         OIC_LOG(ERROR, TAG, "Invalid sub owner UUID.");
2467         return OC_STACK_INVALID_PARAM;
2468     }
2469     if (NULL == gDoxm)
2470     {
2471         OIC_LOG(ERROR, TAG, "Doxm resource is NULL");
2472         return OC_STACK_NO_RESOURCE;
2473     }
2474     if ( NULL == gDoxm->subOwners)
2475     {
2476         OIC_LOG(WARNING, TAG, "Sub Owner list is empty.");
2477         return OC_STACK_ERROR;
2478     }
2479
2480     OicSecSubOwner_t* curSubOwner = NULL;
2481     OicSecSubOwner_t* tempSubOwner = NULL;
2482     LL_FOREACH_SAFE(gDoxm->subOwners, curSubOwner, tempSubOwner)
2483     {
2484         if (memcmp(curSubOwner->uuid.id, subOwner->id, sizeof(subOwner->id)) == 0 ||
2485             memcmp(WILDCARD_SUBJECT_ID.id, subOwner->id, sizeof(OicUuid_t)) == 0)
2486         {
2487             char* strUuid = NULL;
2488             ret = ConvertUuidToStr(&curSubOwner->uuid, &strUuid);
2489             if (OC_STACK_OK != ret)
2490             {
2491                 OIC_LOG_V(ERROR, TAG, "ConvertUuidToStr error : %d", ret);
2492                 break;
2493             }
2494
2495             OIC_LOG_V(INFO, TAG, "[%s] will be removed from sub owner list.", strUuid);
2496             LL_DELETE(gDoxm->subOwners, curSubOwner);
2497
2498             //Remove the cred for sub owner
2499             ret = RemoveCredential(&curSubOwner->uuid);
2500             if (OC_STACK_RESOURCE_DELETED != ret)
2501             {
2502                 OIC_LOG_V(WARNING, TAG, "RemoveCredential error for [%s] : %d", strUuid, ret);
2503                 break;
2504             }
2505
2506             // TODO: Remove the ACL for sub owner (Currently ACL is not required for sub-owner)
2507
2508             OICFree(strUuid);
2509
2510             isDeleted = true;
2511         }
2512     }
2513
2514     if (isDeleted)
2515     {
2516         //Update persistent storage
2517         if (UpdatePersistentStorage(gDoxm))
2518         {
2519             ret = OC_STACK_RESOURCE_DELETED;
2520         }
2521         else
2522         {
2523             OIC_LOG(ERROR, TAG, "UpdatePersistentStorage error");
2524             ret = OC_STACK_ERROR;
2525         }
2526     }
2527
2528     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
2529     return ret;
2530 #else
2531     OC_UNUSED(subOwner);
2532     OIC_LOG(DEBUG, TAG, "Multiple Owner is not enabled.");
2533     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
2534     return OC_STACK_ERROR;
2535 #endif //MULTIPLE_OWNER
2536
2537 }
2538
2539 OCStackResult SetNumberOfSubOwner(size_t numOfSubOwner)
2540 {
2541     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
2542 #ifdef MULTIPLE_OWNER
2543     if (MAX_SUBOWNER_SIZE < numOfSubOwner || MIN_SUBOWNER_SIZE > numOfSubOwner)
2544     {
2545         OIC_LOG_V(ERROR, TAG, "Invalid number of sub owner : %zd", numOfSubOwner);
2546         return OC_STACK_INVALID_PARAM;
2547     }
2548     gMaxSubOwnerSize = numOfSubOwner;
2549     OIC_LOG_V(DEBUG, TAG, "Number of SubOwner = %zd", gMaxSubOwnerSize);
2550     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
2551     return OC_STACK_OK;
2552 #else
2553     OC_UNUSED(numOfSubOwner);
2554     OIC_LOG(DEBUG, TAG, "Multiple Owner is not enabled.");
2555     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
2556     return OC_STACK_ERROR;
2557 #endif //MULTIPLE_OWNER
2558 }
2559
2560 /**
2561  * Function to restore doxm resurce to initial status.
2562  * This function will use in case of error while ownership transfer
2563  */
2564 void RestoreDoxmToInitState()
2565 {
2566
2567     gConfirmState = CONFIRM_STATE_READY;
2568     gConfirmMsgId = 0;
2569
2570     if(gDoxm)
2571     {
2572         OIC_LOG(INFO, TAG, "DOXM resource will revert back to initial status.");
2573
2574         OicUuid_t emptyUuid = {.id={0}};
2575         memcpy(&(gDoxm->owner), &emptyUuid, sizeof(OicUuid_t));
2576         gDoxm->owned = false;
2577         gDoxm->oxmSel = OIC_JUST_WORKS;
2578
2579         if(!UpdatePersistentStorage(gDoxm))
2580         {
2581             OIC_LOG(ERROR, TAG, "Failed to revert DOXM in persistent storage");
2582         }
2583     }
2584 }
2585
2586 OCStackResult SetDoxmSelfOwnership(const OicUuid_t* newROwner)
2587 {
2588     OCStackResult ret = OC_STACK_ERROR;
2589     uint8_t *cborPayload = NULL;
2590     size_t size = 0;
2591
2592     if(NULL == gDoxm)
2593     {
2594         ret = OC_STACK_NO_RESOURCE;
2595         return ret;
2596     }
2597
2598     if( newROwner && (false == gDoxm->owned) )
2599     {
2600         gDoxm->owned = true;
2601         memcpy(gDoxm->owner.id, newROwner->id, sizeof(newROwner->id));
2602         memcpy(gDoxm->rownerID.id, newROwner->id, sizeof(newROwner->id));
2603
2604         ret = DoxmToCBORPayload(gDoxm, &cborPayload, &size, false);
2605         VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
2606
2607         ret = UpdateSecureResourceInPS(OIC_JSON_DOXM_NAME, cborPayload, size);
2608         VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
2609
2610         OICFree(cborPayload);
2611     }
2612
2613     return ret;
2614
2615 exit:
2616     OICFree(cborPayload);
2617     return ret;
2618 }
2619