Check devID for owned device
[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         return NULL;
1146     }
1147     else
1148     {
1149         gConfirmState = CONFIRM_STATE_DENIED;
1150         HandleDoxmPostRequest(ehRequest);
1151         g_isConfirmResult = false;
1152         return NULL;
1153     }
1154
1155     DestroyEntityHandlerRequest(ehRequest);
1156
1157     return NULL;
1158 }
1159
1160 static OCEntityHandlerRequest *CopyRequest(OCEntityHandlerRequest *entityHandlerRequest)
1161 {
1162     OIC_LOG(INFO, TAG, "Copying received request for slow response");
1163
1164     if (!entityHandlerRequest)
1165     {
1166         OIC_LOG_V(ERROR, TAG, "%s: entityHandlerRequest is NULL", __func__);
1167         return NULL;
1168     }
1169
1170     OCEntityHandlerRequest *copyOfRequest =
1171             (OCEntityHandlerRequest *)OICCalloc(1, sizeof(OCEntityHandlerRequest));
1172     if(!copyOfRequest)
1173     {
1174         OIC_LOG(ERROR, TAG, "Copy failed due to allocation failure");
1175         return NULL;
1176     }
1177
1178     memcpy(copyOfRequest, entityHandlerRequest, sizeof(OCEntityHandlerRequest));
1179
1180     if (entityHandlerRequest->query)
1181     {
1182         copyOfRequest->query = OICStrdup(entityHandlerRequest->query);
1183         if(!copyOfRequest->query)
1184         {
1185             OIC_LOG(ERROR, TAG, "Copy failed due to allocation failure");
1186             OICFree(copyOfRequest);
1187             return NULL;
1188         }
1189     }
1190
1191     if (entityHandlerRequest->payload)
1192     {
1193         copyOfRequest->payload =
1194                 (OCSecurityPayload *)OICCalloc(1, sizeof(OCSecurityPayload));
1195         if(!copyOfRequest->payload)
1196         {
1197             OIC_LOG(ERROR, TAG, "Copy failed due to allocation failure");
1198             OICFree(copyOfRequest->query);
1199             OICFree(copyOfRequest);
1200             return NULL;
1201         }
1202
1203         if (((OCSecurityPayload *)entityHandlerRequest->payload)->payloadSize)
1204         {
1205             ((OCSecurityPayload *)copyOfRequest->payload)->securityData =
1206                     (uint8_t *)OICCalloc(1, ((OCSecurityPayload *)entityHandlerRequest->payload)->payloadSize);
1207             if(!((OCSecurityPayload *)copyOfRequest->payload)->securityData)
1208             {
1209                 OIC_LOG(ERROR, TAG, "Copy failed due to allocation failure");
1210                 OICFree(copyOfRequest->payload);
1211                 OICFree(copyOfRequest->query);
1212                 OICFree(copyOfRequest);
1213                 return NULL;
1214             }
1215
1216             memcpy(((OCSecurityPayload *)copyOfRequest->payload)->securityData,
1217                   ((OCSecurityPayload *)entityHandlerRequest->payload)->securityData,
1218                   ((OCSecurityPayload *)entityHandlerRequest->payload)->payloadSize);
1219
1220             ((OCSecurityPayload *)(copyOfRequest->payload))->payloadSize =
1221                     ((OCSecurityPayload *)(entityHandlerRequest->payload))->payloadSize;
1222         }
1223
1224         copyOfRequest->payload->type = entityHandlerRequest->payload->type;
1225         copyOfRequest->messageID = entityHandlerRequest->messageID;
1226     }
1227
1228     // Ignore vendor specific header options for example
1229     copyOfRequest->numRcvdVendorSpecificHeaderOptions = 0;
1230     copyOfRequest->rcvdVendorSpecificHeaderOptions = NULL;
1231
1232     if (copyOfRequest)
1233     {
1234         OIC_LOG(INFO, TAG, "Copied client request");
1235     }
1236     else
1237     {
1238         OIC_LOG(ERROR, TAG, "Error copying client request");
1239     }
1240     return copyOfRequest;
1241 }
1242 #endif // defined(__WITH_DTLS__) || defined (__WITH_TLS__)
1243
1244 static OCEntityHandlerResult HandleDoxmPostRequest(OCEntityHandlerRequest * ehRequest)
1245 {
1246     OIC_LOG (DEBUG, TAG, "Doxm EntityHandle  processing POST request");
1247     OCEntityHandlerResult ehRet = OC_EH_ERROR;
1248     OicUuid_t emptyOwner = {.id = {0} };
1249     static uint16_t previousMsgId = 0;
1250     bool isDuplicatedMsg = false;
1251
1252     /*
1253      * Convert CBOR Doxm data into binary. This will also validate
1254      * the Doxm data received.
1255      */
1256     OicSecDoxm_t *newDoxm = NULL;
1257
1258     if (ehRequest->payload)
1259     {
1260         uint8_t *payload = ((OCSecurityPayload *)ehRequest->payload)->securityData;
1261         size_t size = ((OCSecurityPayload *)ehRequest->payload)->payloadSize;
1262         bool roParsed = false;
1263         OCStackResult res = CBORPayloadToDoxmBin(payload, size, &newDoxm, &roParsed);
1264         if (newDoxm && OC_STACK_OK == res)
1265         {
1266             /*
1267              * message ID is supported for CoAP over UDP only according to RFC 7252
1268              * So we should check message ID to prevent duplicate request handling in case of OC_ADAPTER_IP.
1269              * In case of other transport adapter, duplicate message check is not required.
1270              */
1271             if (OC_ADAPTER_IP == ehRequest->devAddr.adapter &&
1272                  previousMsgId == ehRequest->messageID && g_isConfirmResult == false)
1273             {
1274                 isDuplicatedMsg = true;
1275             }
1276
1277             if (isDuplicatedMsg && ehRequest->messageID == gConfirmMsgId)
1278             {
1279                 if (CONFIRM_STATE_WAIT == gConfirmState)
1280                 {
1281                     OIC_LOG(DEBUG, TAG, "Confirm callback already invoked.");
1282                     OIC_LOG(DEBUG, TAG, "This request will be ignored.");
1283                     DeleteDoxmBinData(newDoxm);
1284                     return OC_EH_OK;
1285                 }
1286                 else
1287                 {
1288                     OIC_LOG_V(DEBUG, TAG, "Confirm request already done, Confirm Result = %s", (CONFIRM_STATE_ACCEPTED == gConfirmState ? "ACCEPTED" : "DENIED"));
1289                     ehRet = (CONFIRM_STATE_ACCEPTED == gConfirmState ? OC_EH_OK : OC_EH_NOT_ACCEPTABLE);
1290                     goto exit;
1291                 }
1292             }
1293
1294             // Check request on RO property
1295             if (true == roParsed)
1296             {
1297                 OIC_LOG(ERROR, TAG, "Not acceptable request because of read-only propertys");
1298                 ehRet = OC_EH_NOT_ACCEPTABLE;
1299                 goto exit;
1300             }
1301
1302             VERIFY_NON_NULL(TAG, gDoxm, ERROR);
1303
1304             // in owned state
1305             if (true == gDoxm->owned)
1306             {
1307                 if (false == ValidateOxmsel(gDoxm->oxm, gDoxm->oxmLen, &newDoxm->oxmSel))
1308                 {
1309                     OIC_LOG(ERROR, TAG, "Not acceptable request because oxmsel does not support on Server");
1310                     ehRet = OC_EH_NOT_ACCEPTABLE;
1311                     goto exit;
1312                 }
1313
1314                 if(0 != memcmp(&gDoxm->owner.id, &newDoxm->owner.id, sizeof(gDoxm->owner.id)))
1315                 {
1316                     OIC_LOG(ERROR, TAG, "Not acceptable request for owned property");
1317                     ehRet = OC_EH_NOT_ACCEPTABLE;
1318                 }
1319
1320                 //Update gDoxm based on newDoxm
1321                 updateWriteableProperty(newDoxm, gDoxm);
1322
1323 #if defined(__WITH_DTLS__) || defined (__WITH_TLS__)
1324 #ifdef MULTIPLE_OWNER
1325                 //handle mom
1326                 if(gDoxm->mom)
1327                 {
1328                     if(OIC_MULTIPLE_OWNER_DISABLE != gDoxm->mom->mode)
1329                     {
1330                         CAResult_t caRes = CA_STATUS_FAILED;
1331                         if(OIC_PRECONFIG_PIN == gDoxm->oxmSel || OIC_RANDOM_DEVICE_PIN == gDoxm->oxmSel)
1332                         {
1333                             caRes = CAEnableAnonECDHCipherSuite(false);
1334                             VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
1335                             OIC_LOG(INFO, TAG, "ECDH_ANON CipherSuite is DISABLED");
1336
1337                             caRes = CASelectCipherSuite((uint16_t)MBEDTLS_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256, ehRequest->devAddr.adapter);
1338                             VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
1339                             OIC_LOG(INFO, TAG, "ECDHE_PSK CipherSuite will be used for MOT");
1340
1341                             //Set the device id to derive temporal PSK
1342                             SetUuidForPinBasedOxm(&gDoxm->deviceID);
1343                         }
1344                         else
1345                         {
1346                             OIC_LOG(WARNING, TAG, "Unsupported OxM for Multiple Ownership Transfer.");
1347                         }
1348
1349                         CAregisterSslHandshakeCallback(MultipleOwnerDTLSHandshakeCB);
1350                     }
1351                     else
1352                     {
1353                         //if MOM is disabled, revert the DTLS handshake callback
1354                         if(CA_STATUS_OK != CAregisterSslHandshakeCallback(NULL))
1355                         {
1356                             OIC_LOG(WARNING, TAG, "Error while revert the DTLS Handshake Callback.");
1357                         }
1358                     }
1359                 }
1360
1361                 if(newDoxm->subOwners)
1362                 {
1363                     OicSecSubOwner_t* subowner = NULL;
1364                     OicSecSubOwner_t* temp = NULL;
1365
1366                     OIC_LOG(DEBUG, TAG, "dectected 'subowners' property");
1367
1368                     if(gDoxm->subOwners)
1369                     {
1370                         LL_FOREACH_SAFE(gDoxm->subOwners, subowner, temp)
1371                         {
1372                             LL_DELETE(gDoxm->subOwners, subowner);
1373                             OICFree(subowner);
1374                         }
1375                     }
1376
1377                     subowner = NULL;
1378                     temp = NULL;
1379                     LL_FOREACH_SAFE(newDoxm->subOwners, subowner, temp)
1380                     {
1381                         LL_DELETE(newDoxm->subOwners, subowner);
1382                         LL_APPEND(gDoxm->subOwners, subowner);
1383                     }
1384                 }
1385 #endif //MULTIPLE_OWNER
1386 #endif // defined(__WITH_DTLS__) || defined (__WITH_TLS__)
1387
1388                 //Update new state in persistent storage
1389                 if (UpdatePersistentStorage(gDoxm) == true)
1390                 {
1391                     ehRet = OC_EH_OK;
1392                 }
1393                 else
1394                 {
1395                     OIC_LOG(ERROR, TAG, "Failed to update DOXM in persistent storage");
1396                     ehRet = OC_EH_ERROR;
1397                 }
1398                 goto exit;
1399             }
1400
1401             // in unowned state
1402             if ((false == gDoxm->owned) && (false == newDoxm->owned))
1403             {
1404                 if (false == ValidateOxmsel(gDoxm->oxm, gDoxm->oxmLen, &newDoxm->oxmSel))
1405                 {
1406                     OIC_LOG(ERROR, TAG, "Not acceptable request because oxmsel does not support on Server");
1407                     ehRet = OC_EH_NOT_ACCEPTABLE;
1408                     goto exit;
1409                 }
1410                 if (g_InformOxmSelectedCallback)
1411                 {
1412                     g_InformOxmSelectedCallback(newDoxm->oxmSel);
1413                 }
1414
1415 #if defined (__WITH_TLS__) || defined(__WITH_DTLS__)
1416                 if (memcmp(&(newDoxm->owner), &emptyOwner, sizeof(OicUuid_t)) == 0)
1417                 {
1418                     InvokeOtmEventHandler(ehRequest->devAddr.addr, ehRequest->devAddr.port,
1419                                           NULL, OIC_OTM_STARTED);
1420                 }
1421                 else
1422                 {
1423                     OIC_LOG_V(INFO, TAG, "%s: request owner not empty",__func__);
1424                     char* strUuid = NULL;
1425                     if (OC_STACK_OK == ConvertUuidToStr(&newDoxm->owner, &strUuid))
1426                     {
1427                         OIC_LOG_V(INFO, TAG, "%s: request owner: %s",__func__, strUuid);
1428                         OICFree(strUuid);
1429                     }
1430                 }
1431 #endif
1432
1433                 if (OIC_JUST_WORKS == newDoxm->oxmSel || OIC_MV_JUST_WORKS == newDoxm->oxmSel)
1434                 {
1435                     /*
1436                      * If current state of the device is un-owned, enable
1437                      * anonymous ECDH cipher in tinyDTLS so that Provisioning
1438                      * tool can initiate JUST_WORKS ownership transfer process.
1439                      */
1440                     if (memcmp(&(newDoxm->owner), &emptyOwner, sizeof(OicUuid_t)) == 0)
1441                     {
1442                         gDoxm->oxmSel = newDoxm->oxmSel;
1443                         //Update new state in persistent storage
1444                         if ((UpdatePersistentStorage(gDoxm) == true))
1445                         {
1446                             ehRet = OC_EH_OK;
1447                         }
1448                         else
1449                         {
1450                             OIC_LOG(WARNING, TAG, "Failed to update DOXM in persistent storage");
1451                             ehRet = OC_EH_ERROR;
1452                             goto exit;
1453                         }
1454                         OIC_LOG (INFO, TAG, "Doxm EntityHandle  enabling AnonECDHCipherSuite");
1455 #if defined(__WITH_DTLS__) || defined(__WITH_TLS__)
1456                         ehRet = (CAEnableAnonECDHCipherSuite(true) == CA_STATUS_OK) ? OC_EH_OK : OC_EH_ERROR;
1457 #endif // __WITH_DTLS__ or __WITH_TLS__
1458                         goto exit;
1459                     }
1460                     else
1461                     {
1462 #if defined(__WITH_DTLS__) || defined(__WITH_TLS__)
1463                         //Save the owner's UUID to derive owner credential
1464                         memcpy(&(gDoxm->owner), &(newDoxm->owner), sizeof(OicUuid_t));
1465
1466                         // Update new state in persistent storage
1467                         if (true == UpdatePersistentStorage(gDoxm))
1468                         {
1469                             ehRet = OC_EH_OK;
1470                         }
1471                         else
1472                         {
1473                             OIC_LOG(ERROR, TAG, "Failed to update DOXM in persistent storage");
1474                             ehRet = OC_EH_ERROR;
1475                             goto exit;
1476                         }
1477
1478                         /*
1479                          * Disable anonymous ECDH cipher in tinyDTLS since device is now
1480                          * in owned state.
1481                          */
1482                         CAResult_t caRes = CA_STATUS_OK;
1483                         caRes = CAEnableAnonECDHCipherSuite(false);
1484                         VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
1485                         OIC_LOG(INFO, TAG, "ECDH_ANON CipherSuite is DISABLED");
1486
1487                         //In case of Mutual Verified Just-Works, verify mutualVerifNum
1488                         if (OIC_MV_JUST_WORKS == newDoxm->oxmSel && false == newDoxm->owned &&
1489                             false == isDuplicatedMsg)
1490                         {
1491                             uint8_t preMutualVerifNum[OWNER_PSK_LENGTH_128] = {0};
1492                             uint8_t mutualVerifNum[MUTUAL_VERIF_NUM_LEN] = {0};
1493                             OicUuid_t deviceID = {.id = {0}};
1494
1495                             //Generate mutualVerifNum
1496                             OCServerRequest * request = GetServerRequestUsingHandle(ehRequest->requestHandle);
1497
1498                             char label[LABEL_LEN] = {0};
1499                             snprintf(label, LABEL_LEN, "%s%s", MUTUAL_VERIF_NUM, OXM_MV_JUST_WORKS);
1500                             if (OC_STACK_OK != GetDoxmDeviceID(&deviceID))
1501                             {
1502                                 OIC_LOG(ERROR, TAG, "Error while retrieving Owner's device ID");
1503                                 ehRet = OC_EH_ERROR;
1504                                 goto exit;
1505
1506                             }
1507
1508                             CAResult_t pskRet = CAGenerateOwnerPSK((CAEndpoint_t *)&request->devAddr,
1509                                     (uint8_t *)label,
1510                                     strlen(label),
1511                                     gDoxm->owner.id, sizeof(gDoxm->owner.id),
1512                                     gDoxm->deviceID.id, sizeof(gDoxm->deviceID.id),
1513                                     preMutualVerifNum, OWNER_PSK_LENGTH_128);
1514                             if (CA_STATUS_OK != pskRet)
1515                             {
1516                                 OIC_LOG(WARNING, TAG, "Failed to remove the invaild owner credential");
1517                                 ehRet = OC_EH_ERROR;
1518                                 goto exit;
1519
1520                             }
1521
1522                             memcpy(mutualVerifNum, preMutualVerifNum + OWNER_PSK_LENGTH_128 - sizeof(mutualVerifNum),
1523                                     sizeof(mutualVerifNum));
1524
1525                             gConfirmMsgId = ehRequest->messageID;
1526                             gConfirmState = CONFIRM_STATE_WAIT;
1527                             //Wait for user confirmation
1528                             if (OC_STACK_OK != VerifyOwnershipTransfer(mutualVerifNum, DISPLAY_NUM | USER_CONFIRM))
1529                             {
1530                                 ehRet = OC_EH_NOT_ACCEPTABLE;
1531                                 gConfirmState = CONFIRM_STATE_DENIED;
1532                             }
1533                             else
1534                             {
1535                                 ehRet = OC_EH_OK;
1536                                 gConfirmState = CONFIRM_STATE_ACCEPTED;
1537                             }
1538                         }
1539
1540 #endif // __WITH_DTLS__ or __WITH_TLS__
1541                     }
1542                 }
1543                 else if (OIC_RANDOM_DEVICE_PIN == newDoxm->oxmSel)
1544                 {
1545                     /*
1546                      * If current state of the device is un-owned, enable
1547                      * anonymous ECDH cipher in tinyDTLS so that Provisioning
1548                      * tool can initiate JUST_WORKS ownership transfer process.
1549                      */
1550                     if(memcmp(&(newDoxm->owner), &emptyOwner, sizeof(OicUuid_t)) == 0)
1551                     {
1552                         gDoxm->oxmSel = newDoxm->oxmSel;
1553                         //Update new state in persistent storage
1554                         if ((UpdatePersistentStorage(gDoxm) == true))
1555                         {
1556                             ehRet = OC_EH_OK;
1557                         }
1558                         else
1559                         {
1560                             OIC_LOG(WARNING, TAG, "Failed to update DOXM in persistent storage");
1561                             ehRet = OC_EH_ERROR;
1562                         }
1563
1564 #if defined(__WITH_DTLS__) || defined(__WITH_TLS__)
1565                         CAResult_t caRes = CA_STATUS_OK;
1566
1567                         caRes = CAEnableAnonECDHCipherSuite(false);
1568                         VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
1569                         OIC_LOG(INFO, TAG, "ECDH_ANON CipherSuite is DISABLED");
1570
1571                         caRes = CASelectCipherSuite(MBEDTLS_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256,
1572                                                     ehRequest->devAddr.adapter);
1573                         VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
1574
1575                         if (!isDuplicatedMsg)
1576                         {
1577                             char ranPin[OXM_RANDOM_PIN_MAX_SIZE + 1] = {0};
1578                             if (OC_STACK_OK == GeneratePin(ranPin, sizeof(ranPin)))
1579                             {
1580                                 //Set the device id to derive temporal PSK
1581                                 SetUuidForPinBasedOxm(&gDoxm->deviceID);
1582
1583                                 /**
1584                                  * Since PSK will be used directly by DTLS layer while PIN based ownership transfer,
1585                                  * Credential should not be saved into SVR.
1586                                  * For this reason, use a temporary get_psk_info callback to random PIN OxM.
1587                                  */
1588                                 caRes = CAregisterPskCredentialsHandler(GetDtlsPskForRandomPinOxm);
1589                                 VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
1590                                 ehRet = OC_EH_OK;
1591                             }
1592                             else
1593                             {
1594                                 OIC_LOG(ERROR, TAG, "Failed to generate random PIN");
1595                                 ehRet = OC_EH_ERROR;
1596                             }
1597                         }
1598 #endif // __WITH_DTLS__ or __WITH_TLS__
1599                     }
1600 #if defined(__WITH_DTLS__) || defined(__WITH_TLS__)
1601                     else
1602                     {
1603                         //Save the owner's UUID to derive owner credential
1604                         memcpy(&(gDoxm->owner), &(newDoxm->owner), sizeof(OicUuid_t));
1605
1606                         // In case of random-pin based OTM, close the PIN display if callback is registered.
1607                         if (!isDuplicatedMsg)
1608                         {
1609                             ClosePinDisplay();
1610                         }
1611
1612                         //Update new state in persistent storage
1613                         if (UpdatePersistentStorage(gDoxm) == true)
1614                         {
1615                             ehRet = OC_EH_OK;
1616                         }
1617                         else
1618                         {
1619                             OIC_LOG(ERROR, TAG, "Failed to update DOXM in persistent storage");
1620                             ehRet = OC_EH_ERROR;
1621                         }
1622                     }
1623 #endif // __WITH_DTLS__ or __WITH_TLS__
1624                 }
1625 #if defined(__WITH_DTLS__) || defined (__WITH_TLS__)
1626                 else if (OIC_MANUFACTURER_CERTIFICATE ==  newDoxm->oxmSel || OIC_CON_MFG_CERT == newDoxm->oxmSel)
1627                 {
1628                     if (CONFIRM_STATE_ACCEPTED != gConfirmState && CONFIRM_STATE_DENIED != gConfirmState)
1629                     {
1630                         //Get user confirmation
1631                         if (false == newDoxm->owned &&
1632                             false == isDuplicatedMsg &&
1633                             memcmp(&(newDoxm->owner), &emptyOwner, sizeof(OicUuid_t)) != 0)
1634                         {
1635                             gConfirmMsgId = ehRequest->messageID;
1636                             gConfirmState = CONFIRM_STATE_WAIT;
1637
1638                             if (OC_STACK_OK != VerifyUserConfirm())
1639                             {
1640                                 if (OC_STACK_OK != VerifyOwnershipTransfer(NULL, USER_CONFIRM))
1641                                 {
1642                                     ehRet = OC_EH_NOT_ACCEPTABLE;
1643                                     gConfirmState = CONFIRM_STATE_DENIED;
1644                                     goto exit;
1645                                 }
1646                             }
1647                             else
1648                             {
1649                                 OCEntityHandlerRequest * ehRequestCopy = CopyRequest(ehRequest);
1650                                 VERIFY_NON_NULL(TAG, ehRequestCopy, ERROR);
1651
1652                                 g_condWait = oc_cond_new();
1653                                 g_mutexWait = oc_mutex_new();
1654                                 if (oc_thread_new (&g_waitConfirmThreadId, WaitConfirm, ehRequestCopy))
1655                                 {
1656                                     oc_thread_detach(g_waitConfirmThreadId);
1657                                 }
1658
1659                                 previousMsgId = ehRequest->messageID;
1660
1661                                 return OC_EH_SLOW;
1662                             }
1663                         }
1664                     }
1665                     else if (CONFIRM_STATE_DENIED == gConfirmState)
1666                     {
1667                         ehRet = OC_EH_NOT_ACCEPTABLE;
1668                         goto exit;
1669                     }
1670
1671                     //Save the owner's UUID to derive owner credential
1672                     memcpy(&(gDoxm->owner), &(newDoxm->owner), sizeof(OicUuid_t));
1673                     gDoxm->oxmSel = newDoxm->oxmSel;
1674                     //Update new state in persistent storage
1675                     if (UpdatePersistentStorage(gDoxm))
1676                     {
1677                         ehRet = OC_EH_OK;
1678                     }
1679                     else
1680                     {
1681                         OIC_LOG(WARNING, TAG, "Failed to update DOXM in persistent storage");
1682                         ehRet = OC_EH_ERROR;
1683                     }
1684                     CAResult_t caRes = CAEnableAnonECDHCipherSuite(false);
1685                     VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
1686                     OIC_LOG(INFO, TAG, "ECDH_ANON CipherSuite is DISABLED");
1687
1688                     //Unset pre-selected ciphersuite, if any
1689                     caRes = CASelectCipherSuite(0, ehRequest->devAddr.adapter);
1690                     VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
1691                     OIC_LOG(DEBUG, TAG, "No ciphersuite preferred");
1692
1693                     VERIFY_SUCCESS(TAG, CA_STATUS_OK == CAregisterPkixInfoHandler(GetManufacturerPkixInfo), ERROR);
1694                     VERIFY_SUCCESS(TAG, CA_STATUS_OK == CAregisterGetCredentialTypesHandler(InitManufacturerCipherSuiteList), ERROR);
1695                 }
1696 #endif // __WITH_DTLS__ or __WITH_TLS__
1697             }
1698
1699             /*
1700              * When current state of the device is un-owned and Provisioning
1701              * Tool is attempting to change the state to 'Owned' with a
1702              * qualified value for the field 'Owner'
1703              */
1704             if ((false == gDoxm->owned) && (true == newDoxm->owned) &&
1705                     (memcmp(&(gDoxm->owner), &(newDoxm->owner), sizeof(OicUuid_t)) == 0))
1706             {
1707                 //Change the SVR's resource owner as owner device.
1708                 OCStackResult ownerRes = SetAclRownerId(&gDoxm->owner);
1709                 if(OC_STACK_OK != ownerRes && OC_STACK_NO_RESOURCE != ownerRes)
1710                 {
1711                     ehRet = OC_EH_ERROR;
1712                     goto exit;
1713                 }
1714                 ownerRes = SetAmaclRownerId(&gDoxm->owner);
1715                 if(OC_STACK_OK != ownerRes && OC_STACK_NO_RESOURCE != ownerRes)
1716                 {
1717                     ehRet = OC_EH_ERROR;
1718                     goto exit;
1719                 }
1720                 ownerRes = SetCredRownerId(&gDoxm->owner);
1721                 if(OC_STACK_OK != ownerRes && OC_STACK_NO_RESOURCE != ownerRes)
1722                 {
1723                     ehRet = OC_EH_ERROR;
1724                     goto exit;
1725                 }
1726                 ownerRes = SetPstatRownerId(&gDoxm->owner);
1727                 if(OC_STACK_OK != ownerRes && OC_STACK_NO_RESOURCE != ownerRes)
1728                 {
1729                     ehRet = OC_EH_ERROR;
1730                     goto exit;
1731                 }
1732
1733                 gDoxm->owned = true;
1734                 memcpy(&gDoxm->rownerID, &gDoxm->owner, sizeof(OicUuid_t));
1735
1736                 // Update new state in persistent storage
1737                 if (UpdatePersistentStorage(gDoxm))
1738                 {
1739                     //Update default ACE of security resource to prevent anonymous user access.
1740                     if(OC_STACK_OK == UpdateDefaultSecProvACE())
1741                     {
1742                         ehRet = OC_EH_OK;
1743                     }
1744                     else
1745                     {
1746                         OIC_LOG(ERROR, TAG, "Failed to remove default ACL for security provisioning");
1747                         ehRet = OC_EH_ERROR;
1748                     }
1749                 }
1750                 else
1751                 {
1752                     OIC_LOG(ERROR, TAG, "Failed to update DOXM in persistent storage");
1753                     ehRet = OC_EH_ERROR;
1754                 }
1755 #if defined(__WITH_DTLS__) || defined (__WITH_TLS__)
1756                 if (OIC_MANUFACTURER_CERTIFICATE == gDoxm->oxmSel ||
1757                                             OIC_CON_MFG_CERT== gDoxm->oxmSel)
1758                 {
1759                     CAregisterPkixInfoHandler(GetPkixInfo);
1760                     CAregisterGetCredentialTypesHandler(InitCipherSuiteList);
1761                 }
1762
1763                 InvokeOtmEventHandler(ehRequest->devAddr.addr, ehRequest->devAddr.port,
1764                                       &gDoxm->owner, OIC_OTM_DONE);
1765 #endif // __WITH_DTLS__ or __WITH_TLS__
1766             }
1767         }
1768     }
1769
1770 exit:
1771     if(OC_EH_OK != ehRet)
1772     {
1773         /*
1774          * If some error is occured while ownership transfer,
1775          * ownership transfer related resource should be revert back to initial status.
1776         */
1777         if(gDoxm)
1778         {
1779             if(!gDoxm->owned)
1780             {
1781                 OIC_LOG(WARNING, TAG, "The operation failed during handle DOXM request");
1782
1783                 if (!isDuplicatedMsg)
1784                 {
1785 #if defined (__WITH_TLS__) || defined(__WITH_DTLS__)
1786                     InvokeOtmEventHandler(ehRequest->devAddr.addr, ehRequest->devAddr.port,
1787                                           NULL, OIC_OTM_ERROR);
1788 #endif
1789                     RestoreDoxmToInitState();
1790                     RestorePstatToInitState();
1791                     OIC_LOG(WARNING, TAG, "DOXM will be reverted.");
1792                 }
1793             }
1794         }
1795         else
1796         {
1797             OIC_LOG(ERROR, TAG, "Invalid DOXM resource.");
1798         }
1799     }
1800
1801     previousMsgId = ehRequest->messageID;
1802
1803 #if defined (__WITH_TLS__) || defined(__WITH_DTLS__)
1804     CAEndpoint_t peer = {0};
1805     OCDevAddr devAddr =  ehRequest->devAddr;
1806
1807     memcpy(&peer.addr, &devAddr.addr, sizeof(peer.addr));
1808     peer.port = devAddr.port;
1809     peer.adapter = (CATransportAdapter_t)devAddr.adapter;
1810
1811     if ((devAddr.flags & OC_FLAG_SECURE) && (false == CAIsExistSslPeer(&peer)))
1812     {
1813         OIC_LOG_V(WARNING, TAG, "Not Exist Peer");
1814         ehRet = OC_EH_OK;
1815     }
1816     else
1817     {
1818         //Send payload to request originator
1819         ehRet = ((SendSRMResponse(ehRequest, ehRet, NULL, 0)) == OC_STACK_OK) ?
1820             OC_EH_OK : OC_EH_ERROR;
1821     }
1822 #else
1823     //Send payload to request originator
1824     ehRet = ((SendSRMResponse(ehRequest, ehRet, NULL, 0)) == OC_STACK_OK) ?
1825         OC_EH_OK : OC_EH_ERROR;
1826 #endif
1827
1828     DeleteDoxmBinData(newDoxm);
1829
1830     return ehRet;
1831 }
1832
1833 #ifdef MULTIPLE_OWNER
1834 static OCEntityHandlerResult HandleDoxmDeleteRequest(const OCEntityHandlerRequest *ehRequest)
1835 {
1836     OIC_LOG(DEBUG, TAG, "Processing DoxmDeleteRequest");
1837
1838     OCEntityHandlerResult ehRet = OC_EH_BAD_REQ;
1839
1840     if (NULL == ehRequest->query)
1841     {
1842         return ehRet;
1843     }
1844
1845     OicParseQueryIter_t parseIter = { .attrPos=NULL };
1846     OicUuid_t subject = {.id={0}};
1847
1848     //Parsing REST query to get the subject
1849     ParseQueryIterInit((unsigned char *)ehRequest->query, &parseIter);
1850     while (GetNextQuery(&parseIter))
1851     {
1852         if (strncasecmp((char *)parseIter.attrPos, OIC_JSON_SUBOWNERID_NAME,
1853                 parseIter.attrLen) == 0)
1854         {
1855             if (0 == strncmp((const char*)parseIter.valPos, WILDCARD_RESOURCE_URI,
1856                              strlen(WILDCARD_RESOURCE_URI)))
1857             {
1858                 if(OC_STACK_RESOURCE_DELETED == RemoveSubOwner(&WILDCARD_SUBJECT_ID))
1859                 {
1860                     ehRet = OC_EH_RESOURCE_DELETED;
1861                 }
1862             }
1863             else
1864             {
1865                 OCStackResult ret = ConvertStrToUuid((const char*)parseIter.valPos, &subject);
1866                 VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
1867
1868                 if(OC_STACK_RESOURCE_DELETED == RemoveSubOwner(&subject))
1869                 {
1870                     ehRet = OC_EH_RESOURCE_DELETED;
1871                 }
1872             }
1873         }
1874     }
1875
1876     //Send response to request originator
1877     ehRet = ((SendSRMResponse(ehRequest, ehRet, NULL, 0)) == OC_STACK_OK) ?
1878                    OC_EH_OK : OC_EH_ERROR;
1879
1880     return ehRet;
1881 exit:
1882     return OC_EH_ERROR;
1883 }
1884 #endif //MULTIPLE_OWNER
1885
1886 OCEntityHandlerResult DoxmEntityHandler(OCEntityHandlerFlag flag,
1887                                         OCEntityHandlerRequest * ehRequest,
1888                                         void* callbackParam)
1889 {
1890     (void)callbackParam;
1891     OCEntityHandlerResult ehRet = OC_EH_ERROR;
1892
1893     if(NULL == ehRequest)
1894     {
1895         return ehRet;
1896     }
1897
1898     oc_mutex_lock(g_mutexDoxm);
1899
1900     if(g_isDoxmNull)
1901     {
1902         oc_mutex_unlock(g_mutexDoxm);
1903         return OC_EH_SERVICE_UNAVAILABLE;
1904     }
1905
1906     if (flag & OC_REQUEST_FLAG)
1907     {
1908         OIC_LOG(DEBUG, TAG, "Flag includes OC_REQUEST_FLAG");
1909
1910         switch (ehRequest->method)
1911         {
1912             case OC_REST_GET:
1913                 ehRet = HandleDoxmGetRequest(ehRequest);
1914                 break;
1915
1916             case OC_REST_POST:
1917                 ehRet = HandleDoxmPostRequest(ehRequest);
1918                 break;
1919
1920 #ifdef MULTIPLE_OWNER
1921             case OC_REST_DELETE:
1922                 ehRet = HandleDoxmDeleteRequest(ehRequest);
1923                 break;
1924 #endif //MULTIPLE_OWNER
1925
1926             default:
1927                 ehRet = ((SendSRMResponse(ehRequest, ehRet, NULL, 0)) == OC_STACK_OK) ?
1928                                OC_EH_OK : OC_EH_ERROR;
1929                 break;
1930         }
1931
1932         oc_mutex_unlock(g_mutexDoxm);
1933     }
1934
1935     return ehRet;
1936 }
1937
1938 OCStackResult CreateDoxmResource()
1939 {
1940     OCStackResult ret = OCCreateResource(&gDoxmHandle,
1941                                          OIC_RSRC_TYPE_SEC_DOXM,
1942                                          OC_RSRVD_INTERFACE_DEFAULT,
1943                                          OIC_RSRC_DOXM_URI,
1944                                          DoxmEntityHandler,
1945                                          NULL,
1946                                          OC_SECURE |
1947                                          OC_DISCOVERABLE);
1948
1949     if (OC_STACK_OK != ret)
1950     {
1951         OIC_LOG (FATAL, TAG, "Unable to instantiate Doxm resource");
1952         DeInitDoxmResource();
1953     }
1954     return ret;
1955 }
1956
1957 /**
1958  * Checks if DeviceID is generated during provisioning for the new device.
1959  * If DeviceID is NULL then generates the new DeviceID.
1960  * Once DeviceID is assigned to the device it does not change for the lifetime of the device.
1961  */
1962 static OCStackResult CheckDeviceID()
1963 {
1964     OIC_LOG_V(DEBUG, TAG, "IN: %s", __func__);
1965
1966     OCStackResult ret = OC_STACK_ERROR;
1967     bool validId = false;
1968
1969     if (!gDoxm)
1970     {
1971         OIC_LOG_V(ERROR, TAG, "%s: gDoxm is NULL", __func__);
1972         return OC_STACK_INVALID_PARAM;
1973     }
1974
1975     for (uint8_t i = 0; i < UUID_LENGTH; i++)
1976     {
1977         if (gDoxm->deviceID.id[i] != 0)
1978         {
1979             validId = true;
1980             break;
1981         }
1982     }
1983
1984     if (!validId)
1985     {
1986         char* strUuid = NULL;
1987 #if defined(__WITH_DTLS__) || defined (__WITH_TLS__)
1988         //If seed value is exist, generate UUID using seed with SHA256
1989         if (0 != gUuidSeedSize)
1990         {
1991             uint8_t hashVal[MBEDTLS_MD_MAX_SIZE] = {0};
1992             mbedtls_md_context_t sha_ctx;
1993             int mbedret = 1;
1994
1995             OIC_LOG(DEBUG, TAG, "UUID will be generated using seed w/ SHA256");
1996             OIC_LOG(DEBUG, TAG, "Seed value : ");
1997             OIC_LOG_BUFFER(DEBUG, TAG, gUuidSeed, gUuidSeedSize);
1998
1999             mbedtls_md_init( &sha_ctx );
2000             mbedret = mbedtls_md_setup( &sha_ctx, mbedtls_md_info_from_type( MBEDTLS_MD_SHA256 ), 1 );
2001             if (0 == mbedret)
2002             {
2003                 mbedtls_md_starts( &sha_ctx );
2004                 mbedtls_md_update( &sha_ctx, gUuidSeed, gUuidSeedSize);
2005                 mbedtls_md_finish(&sha_ctx, (unsigned char*)hashVal);
2006                 memcpy(gDoxm->deviceID.id, hashVal, sizeof(gDoxm->deviceID.id));
2007                 ret = OC_STACK_OK;
2008             }
2009             else
2010             {
2011                 OIC_LOG_V(ERROR, TAG,  "mbedtls_md_setup() returned -0x%04x\n", -mbedret);
2012                 ret = OC_STACK_ERROR;
2013             }
2014             mbedtls_md_free( &sha_ctx );
2015         }
2016         else
2017         {
2018             if (RAND_UUID_OK != OCGenerateUuid(gDoxm->deviceID.id))
2019             {
2020                 OIC_LOG(FATAL, TAG, "Generate UUID for Server Instance failed!");
2021                 return OC_STACK_ERROR;
2022             }
2023             ret = OC_STACK_OK;
2024         }
2025 #else
2026         if (RAND_UUID_OK != OCGenerateUuid(gDoxm->deviceID.id))
2027         {
2028             OIC_LOG(FATAL, TAG, "Generate UUID for Server Instance failed!");
2029             return ret;
2030         }
2031         ret = OC_STACK_OK;
2032 #endif
2033
2034         if (OC_STACK_OK == ConvertUuidToStr(&gDoxm->deviceID, &strUuid))
2035         {
2036             OIC_LOG_V(DEBUG, TAG, "Generated device UUID is [%s]", strUuid);
2037             OICFree(strUuid);
2038         }
2039         else
2040         {
2041             OIC_LOG(WARNING, TAG, "Failed to convert UUID to string");
2042         }
2043
2044
2045         if (!UpdatePersistentStorage(gDoxm))
2046         {
2047             //TODO: After registering PSI handler in all samples, do ret = OC_STACK_OK here.
2048             OIC_LOG(FATAL, TAG, "UpdatePersistentStorage failed!");
2049         }
2050     }
2051     else
2052     {
2053         ret = OC_STACK_OK;
2054     }
2055
2056     OIC_LOG_V(DEBUG, TAG, "OUT: %s", __func__);
2057
2058     return ret;
2059 }
2060
2061 /**
2062  * Get the default value.
2063  *
2064  * @return the default value of doxm, @ref OicSecDoxm_t.
2065  */
2066 static OicSecDoxm_t* GetDoxmDefault()
2067 {
2068     OIC_LOG(DEBUG, TAG, "GetDoxmToDefault");
2069     return &gDefaultDoxm;
2070 }
2071
2072 const OicSecDoxm_t* GetDoxmResourceData()
2073 {
2074     return gDoxm;
2075 }
2076
2077 #if defined(__WITH_DTLS__) && defined(MULTIPLE_OWNER)
2078 /**
2079  * Internal API to prepare MOT
2080  */
2081 static void PrepareMOT(const OicSecDoxm_t* doxm)
2082 {
2083     OIC_LOG(INFO, TAG, "IN PrepareMOT");
2084     VERIFY_NON_NULL(TAG, doxm, ERROR);
2085
2086     if(true == doxm->owned && NULL != doxm->mom && OIC_MULTIPLE_OWNER_DISABLE != doxm->mom->mode)
2087     {
2088         CAResult_t caRes = CA_STATUS_FAILED;
2089
2090         OIC_LOG(INFO, TAG, "Multiple Ownership Transfer Enabled!");
2091
2092         if(OIC_PRECONFIG_PIN == doxm->oxmSel)
2093         {
2094             caRes = CAEnableAnonECDHCipherSuite(false);
2095             VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
2096             OIC_LOG(INFO, TAG, "ECDH_ANON CipherSuite is DISABLED");
2097
2098             caRes = CASelectCipherSuite((uint16_t)MBEDTLS_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256, CA_ADAPTER_IP);
2099             VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
2100 #ifdef __WITH_TLS__
2101             caRes = CASelectCipherSuite((uint16_t)MBEDTLS_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256, CA_ADAPTER_TCP);
2102             VERIFY_SUCCESS(TAG, caRes == CA_STATUS_OK, ERROR);
2103 #endif
2104             OIC_LOG(INFO, TAG, "ECDHE_PSK CipherSuite will be used for MOT");
2105
2106             //Set the device id to derive temporal PSK
2107             SetUuidForPinBasedOxm(&doxm->deviceID);
2108         }
2109         else
2110         {
2111             OIC_LOG(ERROR, TAG, "Unsupported OxM for Multiple Ownership Transfer.");
2112             return;
2113         }
2114
2115         CAregisterSslHandshakeCallback(MultipleOwnerDTLSHandshakeCB);
2116     }
2117
2118     OIC_LOG(INFO, TAG, "OUT PrepareMOT");
2119     return;
2120 exit:
2121     OIC_LOG(WARNING, TAG, "Error in PrepareMOT");
2122 }
2123 #endif //defined(__WITH_DTLS__) && defined(MULTIPLE_OWNER)
2124
2125 OCStackResult InitDoxmResource()
2126 {
2127     OCStackResult ret = OC_STACK_ERROR;
2128
2129     if (!g_mutexDoxm)
2130     {
2131         g_mutexDoxm = oc_mutex_new();
2132             if(!g_mutexDoxm)
2133             {
2134                 return OC_STACK_ERROR;
2135             }
2136     }
2137
2138     gConfirmState = CONFIRM_STATE_READY;
2139     gConfirmMsgId = 0;
2140
2141     //Read DOXM resource from PS
2142     uint8_t *data = NULL;
2143     size_t size = 0;
2144     ret = GetSecureVirtualDatabaseFromPS(OIC_JSON_DOXM_NAME, &data, &size);
2145     // If database read failed
2146     if (OC_STACK_OK != ret)
2147     {
2148        OIC_LOG (DEBUG, TAG, "ReadSVDataFromPS failed");
2149     }
2150     if (data)
2151     {
2152        // Read DOXM resource from PS
2153        ret = CBORPayloadToDoxm(data, size, &gDoxm);
2154     }
2155     /*
2156      * If SVR database in persistent storage got corrupted or
2157      * is not available for some reason, a default doxm is created
2158      * which allows user to initiate doxm provisioning again.
2159      */
2160      if ((OC_STACK_OK != ret) || !data || !gDoxm)
2161     {
2162         gDoxm = GetDoxmDefault();
2163     }
2164
2165      oc_mutex_lock(g_mutexDoxm);
2166      g_isDoxmNull = false;
2167      oc_mutex_unlock(g_mutexDoxm);
2168
2169     //In case of the server is shut down unintentionally, we should initialize the owner
2170     if(gDoxm && (false == gDoxm->owned))
2171     {
2172         OicUuid_t emptyUuid = {.id={0}};
2173         memcpy(&gDoxm->owner, &emptyUuid, sizeof(OicUuid_t));
2174 #if defined (__WITH_TLS__) || defined(__WITH_DTLS__)
2175         InvokeOtmEventHandler(NULL, 0, NULL, OIC_OTM_READY);
2176 #endif
2177     }
2178
2179     ret = CheckDeviceID();
2180     if (ret == OC_STACK_OK)
2181     {
2182         OIC_LOG_V(DEBUG, TAG, "Initial Doxm Owned = %d", gDoxm->owned);
2183         //Instantiate 'oic.sec.doxm'
2184         ret = CreateDoxmResource();
2185     }
2186     else
2187     {
2188         OIC_LOG (ERROR, TAG, "CheckDeviceID failed");
2189     }
2190     OICFree(data);
2191
2192 #if defined(__WITH_DTLS__) && defined(MULTIPLE_OWNER)
2193     //if MOT is enabled, MOT should be prepared.
2194     if(gDoxm && gDoxm->owned)
2195     {
2196         PrepareMOT(gDoxm);
2197     }
2198 #endif // defined(__WITH_DTLS__) && defined(MULTIPLE_OWNER)
2199
2200     return ret;
2201 }
2202
2203 OCStackResult DeInitDoxmResource()
2204 {
2205     oc_mutex_lock(g_mutexDoxm);
2206     OCStackResult ret = OCDeleteResource(gDoxmHandle);
2207     if (gDoxm  != &gDefaultDoxm)
2208     {
2209         DeleteDoxmBinData(gDoxm);
2210     }
2211     gDoxm = NULL;
2212     g_isDoxmNull = true;
2213
2214     if (OC_STACK_OK == ret)
2215     {
2216         oc_mutex_unlock(g_mutexDoxm);
2217         return OC_STACK_OK;
2218     }
2219     else
2220     {
2221         oc_mutex_unlock(g_mutexDoxm);
2222         return OC_STACK_ERROR;
2223     }
2224 }
2225
2226 OCStackResult GetDoxmDeviceID(OicUuid_t *deviceID)
2227 {
2228     if (deviceID && gDoxm)
2229     {
2230        *deviceID = gDoxm->deviceID;
2231         return OC_STACK_OK;
2232     }
2233     return OC_STACK_ERROR;
2234 }
2235
2236 OCStackResult GetDoxmIsOwned(bool *isOwned)
2237 {
2238     if (isOwned && gDoxm)
2239     {
2240        *isOwned = gDoxm->owned;
2241         return OC_STACK_OK;
2242     }
2243     return OC_STACK_ERROR;
2244 }
2245
2246 #if defined(__WITH_DTLS__) || defined (__WITH_TLS__)
2247 OCStackResult SetDoxmDeviceIDSeed(const uint8_t* seed, size_t seedSize)
2248 {
2249     OIC_LOG_V(INFO, TAG, "In %s", __func__);
2250
2251     if (NULL == seed)
2252     {
2253         return OC_STACK_INVALID_PARAM;
2254     }
2255     if (MAX_UUID_SEED_SIZE < seedSize)
2256     {
2257         OIC_LOG_V(ERROR, TAG, "Seed size is too long (MAX size is %d bytes)", MAX_UUID_SEED_SIZE);
2258         return OC_STACK_INVALID_PARAM;
2259     }
2260     if (MIN_UUID_SEED_SIZE > seedSize)
2261     {
2262         OIC_LOG_V(ERROR, TAG, "Seed size is too small (MIN size is %d bytes)", MIN_UUID_SEED_SIZE);
2263         return OC_STACK_INVALID_PARAM;
2264     }
2265
2266     memset(gUuidSeed, 0x00, sizeof(gUuidSeed));
2267     memcpy(gUuidSeed, seed, seedSize);
2268     gUuidSeedSize = seedSize;
2269
2270     OIC_LOG_V(INFO, TAG, "Out %s", __func__);
2271
2272     return OC_STACK_OK;
2273 }
2274
2275 #endif
2276
2277 OCStackResult SetDoxmDeviceID(const OicUuid_t *deviceID)
2278 {
2279     bool isOwnerUpdated = false;
2280     bool isRownerUpdated = false;
2281     if (NULL == deviceID)
2282     {
2283         return OC_STACK_INVALID_PARAM;
2284     }
2285     if (NULL == gDoxm)
2286     {
2287         OIC_LOG(ERROR, TAG, "Doxm resource is not initialized.");
2288         return OC_STACK_NO_RESOURCE;
2289     }
2290
2291 #ifdef __WITH_DTLS__
2292     //for normal device.
2293     if (true == gDoxm->owned
2294             && memcmp(gEmptyUuid, gDoxm->owner.id, sizeof(gDoxm->owner.id)) != 0
2295             && memcmp(gDoxm->deviceID.id, gDoxm->owner.id, sizeof(gDoxm->owner.id)) != 0)
2296     {
2297         OIC_LOG(ERROR, TAG, "This device owned by owner's device.");
2298         OIC_LOG(ERROR, TAG, "Device UUID cannot be changed to guarantee the reliability of the connection.");
2299         return OC_STACK_ERROR;
2300     }
2301 #endif //__WITH_DTLS
2302
2303     //Save the previous UUID
2304     OicUuid_t prevUuid;
2305     memcpy(prevUuid.id, gDoxm->deviceID.id, sizeof(prevUuid.id));
2306
2307     //Change the device UUID
2308     memcpy(gDoxm->deviceID.id, deviceID->id, sizeof(deviceID->id));
2309
2310     //Change the owner ID if necessary
2311     if (memcmp(gDoxm->owner.id, prevUuid.id, sizeof(prevUuid.id)) == 0)
2312     {
2313         memcpy(gDoxm->owner.id, deviceID->id, sizeof(deviceID->id));
2314         isOwnerUpdated = true;
2315     }
2316     //Change the resource owner ID if necessary
2317     if (memcmp(gDoxm->rownerID.id, prevUuid.id, sizeof(prevUuid.id)) == 0)
2318     {
2319         memcpy(gDoxm->rownerID.id, deviceID->id, sizeof(deviceID->id));
2320         isRownerUpdated = true;
2321     }
2322     // TODO: T.B.D Change resource owner for pstat, acl and cred
2323
2324     //Update PS
2325     if (!UpdatePersistentStorage(gDoxm))
2326     {
2327         //revert UUID in case of PSI error
2328         memcpy(gDoxm->deviceID.id, prevUuid.id, sizeof(prevUuid.id));
2329         if (isOwnerUpdated)
2330         {
2331             memcpy(gDoxm->owner.id, prevUuid.id, sizeof(prevUuid.id));
2332         }
2333         if (isRownerUpdated)
2334         {
2335             memcpy(gDoxm->rownerID.id, prevUuid.id, sizeof(prevUuid.id));
2336         }
2337         // TODO: T.B.D Revert resource owner for pstat, acl and cred
2338
2339         OIC_LOG(ERROR, TAG, "Failed to update persistent storage");
2340         return OC_STACK_ERROR;
2341     }
2342     return OC_STACK_OK;
2343 }
2344
2345 OCStackResult GetDoxmDevOwnerId(OicUuid_t *devownerid)
2346 {
2347     OCStackResult retVal = OC_STACK_ERROR;
2348     if (gDoxm)
2349     {
2350         OIC_LOG_V(DEBUG, TAG, "GetDoxmDevOwnerId(): gDoxm owned =  %d.", \
2351             gDoxm->owned);
2352         if (gDoxm->owned)
2353         {
2354             *devownerid = gDoxm->owner;
2355             retVal = OC_STACK_OK;
2356         }
2357     }
2358     return retVal;
2359 }
2360
2361 OCStackResult GetDoxmRownerId(OicUuid_t *rowneruuid)
2362 {
2363     OCStackResult retVal = OC_STACK_ERROR;
2364     if (gDoxm)
2365     {
2366         if( gDoxm->owned )
2367         {
2368             *rowneruuid = gDoxm->rownerID;
2369                     retVal = OC_STACK_OK;
2370         }
2371     }
2372     return retVal;
2373 }
2374
2375 #ifdef MULTIPLE_OWNER
2376 /**
2377  * Compare the UUID to SubOwner.
2378  *
2379  * @param[in] uuid device UUID
2380  *
2381  * @return true if context->subjectId exist subowner list, else false.
2382  */
2383 bool IsSubOwner(const OicUuid_t* uuid)
2384 {
2385     bool retVal = false;
2386
2387     if (NULL == uuid)
2388     {
2389         return retVal;
2390     }
2391
2392     if (gDoxm && gDoxm->subOwners)
2393     {
2394         if (memcmp(gDoxm->owner.id, uuid->id, sizeof(gDoxm->owner.id)) == 0)
2395         {
2396             return false;
2397         }
2398
2399         OicSecSubOwner_t* subOwner = NULL;
2400         LL_FOREACH(gDoxm->subOwners, subOwner)
2401         {
2402             if (memcmp(subOwner->uuid.id, uuid->id, sizeof(uuid->id)) == 0)
2403             {
2404                 return true;
2405             }
2406         }
2407     }
2408     return retVal;
2409 }
2410 #endif //MULTIPLE_OWNER
2411
2412 OCStackResult SetMOTStatus(bool enable)
2413 {
2414     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
2415 #ifdef MULTIPLE_OWNER
2416     OCStackResult ret = OC_STACK_NO_MEMORY;
2417     uint8_t *cborPayload = NULL;
2418     size_t size = 0;
2419     bool isDeallocateRequired = false;
2420
2421     VERIFY_NON_NULL(TAG, gDoxm, ERROR);
2422
2423     if (NULL == gDoxm->mom && !enable)
2424     {
2425         OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
2426         return OC_STACK_OK;
2427     }
2428
2429     if (NULL == gDoxm->mom)
2430     {
2431         gDoxm->mom = (OicSecMom_t*)OICCalloc(1, sizeof(OicSecMom_t));
2432         VERIFY_NON_NULL(TAG, gDoxm->mom, ERROR);
2433         isDeallocateRequired = true;
2434     }
2435
2436     gDoxm->mom->mode = (enable ? OIC_MULTIPLE_OWNER_ENABLE : OIC_MULTIPLE_OWNER_DISABLE);
2437     gDoxm->oxmSel = OIC_PRECONFIG_PIN;
2438
2439     ret = DoxmToCBORPayload(gDoxm, &cborPayload, &size, false);
2440     VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
2441
2442     ret = UpdateSecureResourceInPS(OIC_JSON_DOXM_NAME, cborPayload, size);
2443     VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
2444
2445     isDeallocateRequired = false;
2446
2447 exit:
2448     if (isDeallocateRequired)
2449     {
2450         OICFree(gDoxm->mom);
2451     }
2452     if (cborPayload)
2453     {
2454         OICFree(cborPayload);
2455     }
2456     OIC_LOG_V(DEBUG, TAG, "Out %s : %d", __func__, ret);
2457     return ret;
2458 #else
2459     OC_UNUSED(enable);
2460     OIC_LOG(DEBUG, TAG, "Multiple Owner is not enabled.");
2461     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
2462     return OC_STACK_ERROR;
2463 #endif //MULTIPLE_OWNER
2464 }
2465
2466 OCStackResult RemoveSubOwner(const OicUuid_t* subOwner)
2467 {
2468     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
2469 #ifdef MULTIPLE_OWNER
2470     OCStackResult ret = OC_STACK_ERROR;
2471     bool isDeleted = false;
2472
2473     if (NULL == subOwner)
2474     {
2475         OIC_LOG(ERROR, TAG, "Invalid sub owner UUID.");
2476         return OC_STACK_INVALID_PARAM;
2477     }
2478     if (NULL == gDoxm)
2479     {
2480         OIC_LOG(ERROR, TAG, "Doxm resource is NULL");
2481         return OC_STACK_NO_RESOURCE;
2482     }
2483     if ( NULL == gDoxm->subOwners)
2484     {
2485         OIC_LOG(WARNING, TAG, "Sub Owner list is empty.");
2486         return OC_STACK_ERROR;
2487     }
2488
2489     OicSecSubOwner_t* curSubOwner = NULL;
2490     OicSecSubOwner_t* tempSubOwner = NULL;
2491     LL_FOREACH_SAFE(gDoxm->subOwners, curSubOwner, tempSubOwner)
2492     {
2493         if (memcmp(curSubOwner->uuid.id, subOwner->id, sizeof(subOwner->id)) == 0 ||
2494             memcmp(WILDCARD_SUBJECT_ID.id, subOwner->id, sizeof(OicUuid_t)) == 0)
2495         {
2496             char* strUuid = NULL;
2497             ret = ConvertUuidToStr(&curSubOwner->uuid, &strUuid);
2498             if (OC_STACK_OK != ret)
2499             {
2500                 OIC_LOG_V(ERROR, TAG, "ConvertUuidToStr error : %d", ret);
2501                 break;
2502             }
2503
2504             OIC_LOG_V(INFO, TAG, "[%s] will be removed from sub owner list.", strUuid);
2505             LL_DELETE(gDoxm->subOwners, curSubOwner);
2506
2507             //Remove the cred for sub owner
2508             ret = RemoveCredential(&curSubOwner->uuid);
2509             if (OC_STACK_RESOURCE_DELETED != ret)
2510             {
2511                 OIC_LOG_V(WARNING, TAG, "RemoveCredential error for [%s] : %d", strUuid, ret);
2512                 break;
2513             }
2514
2515             // TODO: Remove the ACL for sub owner (Currently ACL is not required for sub-owner)
2516
2517             OICFree(strUuid);
2518
2519             isDeleted = true;
2520         }
2521     }
2522
2523     if (isDeleted)
2524     {
2525         //Update persistent storage
2526         if (UpdatePersistentStorage(gDoxm))
2527         {
2528             ret = OC_STACK_RESOURCE_DELETED;
2529         }
2530         else
2531         {
2532             OIC_LOG(ERROR, TAG, "UpdatePersistentStorage error");
2533             ret = OC_STACK_ERROR;
2534         }
2535     }
2536
2537     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
2538     return ret;
2539 #else
2540     OC_UNUSED(subOwner);
2541     OIC_LOG(DEBUG, TAG, "Multiple Owner is not enabled.");
2542     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
2543     return OC_STACK_ERROR;
2544 #endif //MULTIPLE_OWNER
2545
2546 }
2547
2548 OCStackResult SetNumberOfSubOwner(size_t numOfSubOwner)
2549 {
2550     OIC_LOG_V(DEBUG, TAG, "In %s", __func__);
2551 #ifdef MULTIPLE_OWNER
2552     if (MAX_SUBOWNER_SIZE < numOfSubOwner || MIN_SUBOWNER_SIZE > numOfSubOwner)
2553     {
2554         OIC_LOG_V(ERROR, TAG, "Invalid number of sub owner : %zd", numOfSubOwner);
2555         return OC_STACK_INVALID_PARAM;
2556     }
2557     gMaxSubOwnerSize = numOfSubOwner;
2558     OIC_LOG_V(DEBUG, TAG, "Number of SubOwner = %zd", gMaxSubOwnerSize);
2559     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
2560     return OC_STACK_OK;
2561 #else
2562     OC_UNUSED(numOfSubOwner);
2563     OIC_LOG(DEBUG, TAG, "Multiple Owner is not enabled.");
2564     OIC_LOG_V(DEBUG, TAG, "Out %s", __func__);
2565     return OC_STACK_ERROR;
2566 #endif //MULTIPLE_OWNER
2567 }
2568
2569 /**
2570  * Function to restore doxm resurce to initial status.
2571  * This function will use in case of error while ownership transfer
2572  */
2573 void RestoreDoxmToInitState()
2574 {
2575
2576     gConfirmState = CONFIRM_STATE_READY;
2577     gConfirmMsgId = 0;
2578
2579     if(gDoxm)
2580     {
2581         OIC_LOG(INFO, TAG, "DOXM resource will revert back to initial status.");
2582
2583         OicUuid_t emptyUuid = {.id={0}};
2584         memcpy(&(gDoxm->owner), &emptyUuid, sizeof(OicUuid_t));
2585         gDoxm->owned = false;
2586         gDoxm->oxmSel = OIC_JUST_WORKS;
2587
2588         if(!UpdatePersistentStorage(gDoxm))
2589         {
2590             OIC_LOG(ERROR, TAG, "Failed to revert DOXM in persistent storage");
2591         }
2592     }
2593 }
2594
2595 OCStackResult SetDoxmSelfOwnership(const OicUuid_t* newROwner)
2596 {
2597     OCStackResult ret = OC_STACK_ERROR;
2598     uint8_t *cborPayload = NULL;
2599     size_t size = 0;
2600
2601     if(NULL == gDoxm)
2602     {
2603         ret = OC_STACK_NO_RESOURCE;
2604         return ret;
2605     }
2606
2607     if( newROwner && (false == gDoxm->owned) )
2608     {
2609         gDoxm->owned = true;
2610         memcpy(gDoxm->owner.id, newROwner->id, sizeof(newROwner->id));
2611         memcpy(gDoxm->rownerID.id, newROwner->id, sizeof(newROwner->id));
2612
2613         ret = DoxmToCBORPayload(gDoxm, &cborPayload, &size, false);
2614         VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
2615
2616         ret = UpdateSecureResourceInPS(OIC_JSON_DOXM_NAME, cborPayload, size);
2617         VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
2618
2619         OICFree(cborPayload);
2620     }
2621
2622     return ret;
2623
2624 exit:
2625     OICFree(cborPayload);
2626     return ret;
2627 }
2628