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