Imported Upstream version 1.1.1
[platform/upstream/iotivity.git] / resource / csdk / security / tool / json2cbor.c
1 //******************************************************************
2 //
3 // Copyright 2015 Samsung Electronics All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 #include <stdlib.h>
22 #include <string.h>
23 #include "utlist.h"
24 #include "cJSON.h"
25 #include "base64.h"
26 #include "cainterface.h"
27 #include "ocstack.h"
28 #include "oic_malloc.h"
29 #include "oic_string.h"
30 #include "ocpayload.h"
31 #include "ocpayloadcbor.h"
32 #include "payload_logging.h"
33 #include "secureresourcemanager.h"
34 #include "srmresourcestrings.h"
35 #include "srmutility.h"
36 #include "aclresource.h"
37 #include "pstatresource.h"
38 #include "doxmresource.h"
39 #include "amaclresource.h"
40 #include "credresource.h"
41 #include "svcresource.h"
42 #include "security_internals.h"
43
44 #define TAG  "JSON2CBOR"
45 #define MAX_RANGE   ((size_t)-1)
46 //SVR database buffer block size
47 static const size_t DB_FILE_SIZE_BLOCK = 1023;
48
49 static OicSecPstat_t* JSONToPstatBin(const char * jsonStr);
50 static OicSecDoxm_t* JSONToDoxmBin(const char * jsonStr);
51 static OicSecAcl_t *JSONToAclBin(const char * jsonStr);
52 static OicSecSvc_t* JSONToSvcBin(const char * jsonStr);
53 static OicSecAmacl_t* JSONToAmaclBin(const char * jsonStr);
54 static OicSecCred_t* JSONToCredBin(const char * jsonStr);
55
56 static size_t GetJSONFileSize(const char *jsonFileName)
57 {
58     size_t size = 0;
59     size_t bytesRead  = 0;
60     char buffer[DB_FILE_SIZE_BLOCK];
61     FILE* fp = fopen(jsonFileName, "r");
62     if (fp)
63     {
64         do
65         {
66             bytesRead = fread(buffer, 1, DB_FILE_SIZE_BLOCK, fp);
67             if (bytesRead >=(MAX_RANGE - size))
68             {
69                 fclose(fp);
70                 return 0;
71             }
72             size += bytesRead;
73         } while (bytesRead > 0);
74         fclose(fp);
75     }
76     return size;
77 }
78
79 static void ConvertJsonToCBOR(const char *jsonFileName, const char *cborFileName)
80 {
81     char *jsonStr = NULL;
82     FILE *fp = NULL;
83     FILE *fp1 = NULL;
84     uint8_t *aclCbor = NULL;
85     uint8_t *pstatCbor = NULL;
86     uint8_t *doxmCbor = NULL;
87     uint8_t *amaclCbor = NULL;
88     uint8_t *svcCbor = NULL;
89     uint8_t *credCbor = NULL;
90     cJSON *jsonRoot = NULL;
91     OCStackResult ret = OC_STACK_ERROR;
92     size_t size = GetJSONFileSize(jsonFileName);
93     if (0 == size)
94     {
95         OIC_LOG (ERROR, TAG, "Failed converting to JSON");
96         return;
97     }
98
99     jsonStr = (char *)OICMalloc(size + 1);
100     VERIFY_NON_NULL(TAG, jsonStr, FATAL);
101
102     fp = fopen(jsonFileName, "r");
103     if (fp)
104     {
105         size_t bytesRead = fread(jsonStr, 1, size, fp);
106         jsonStr[bytesRead] = '\0';
107
108         OIC_LOG_V(DEBUG, TAG, "Read %zu bytes", bytesRead);
109         fclose(fp);
110         fp = NULL;
111     }
112     else
113     {
114         OIC_LOG (ERROR, TAG, "Unable to open JSON file!!");
115         goto exit;
116     }
117
118     jsonRoot = cJSON_Parse(jsonStr);
119
120     cJSON *value = cJSON_GetObjectItem(jsonRoot, OIC_JSON_ACL_NAME);
121     //printf("ACL json : \n%s\n", cJSON_PrintUnformatted(value));
122     size_t aclCborSize = 0;
123     if (NULL != value)
124     {
125         OicSecAcl_t *acl = JSONToAclBin(jsonStr);
126         VERIFY_NON_NULL(TAG, acl, FATAL);
127         ret = AclToCBORPayload(acl, &aclCbor, &aclCborSize);
128         if(OC_STACK_OK != ret)
129         {
130             OIC_LOG (ERROR, TAG, "Failed converting Acl to Cbor Payload");
131             DeleteACLList(acl);
132             goto exit;
133         }
134         printf("ACL Cbor Size: %zd\n", aclCborSize);
135         DeleteACLList(acl);
136     }
137
138     value = cJSON_GetObjectItem(jsonRoot, OIC_JSON_PSTAT_NAME);
139     size_t pstatCborSize = 0;
140     if (NULL != value)
141     {
142         OicSecPstat_t *pstat = JSONToPstatBin(jsonStr);
143         VERIFY_NON_NULL(TAG, pstat, FATAL);
144         ret = PstatToCBORPayload(pstat, &pstatCbor, &pstatCborSize, false);
145         if(OC_STACK_OK != ret)
146         {
147             OIC_LOG (ERROR, TAG, "Failed converting Pstat to Cbor Payload");
148             DeletePstatBinData(pstat);
149             goto exit;
150         }
151         printf("PSTAT Cbor Size: %zd\n", pstatCborSize);
152         DeletePstatBinData(pstat);
153     }
154     value = cJSON_GetObjectItem(jsonRoot, OIC_JSON_DOXM_NAME);
155     size_t doxmCborSize = 0;
156     if (NULL != value)
157     {
158         OicSecDoxm_t *doxm = JSONToDoxmBin(jsonStr);
159         VERIFY_NON_NULL(TAG, doxm, FATAL);
160         ret = DoxmToCBORPayload(doxm, &doxmCbor, &doxmCborSize, false);
161         if(OC_STACK_OK != ret)
162         {
163             OIC_LOG (ERROR, TAG, "Failed converting Doxm to Cbor Payload");
164             DeleteDoxmBinData(doxm);
165             goto exit;
166         }
167         printf("DOXM Cbor Size: %zd\n", doxmCborSize);
168         DeleteDoxmBinData(doxm);
169     }
170     value = cJSON_GetObjectItem(jsonRoot, OIC_JSON_AMACL_NAME);
171     size_t amaclCborSize = 0;
172     if (NULL != value)
173     {
174         OicSecAmacl_t *amacl = JSONToAmaclBin(jsonStr);
175         VERIFY_NON_NULL(TAG, amacl, FATAL);
176         ret = AmaclToCBORPayload(amacl, &amaclCbor, &amaclCborSize);
177         if(OC_STACK_OK != ret)
178         {
179             OIC_LOG (ERROR, TAG, "Failed converting Amacl to Cbor Payload");
180             DeleteAmaclList(amacl);
181             goto exit;
182         }
183         printf("AMACL Cbor Size: %zd\n", amaclCborSize);
184         DeleteAmaclList(amacl);
185     }
186     value = cJSON_GetObjectItem(jsonRoot, OIC_JSON_SVC_NAME);
187     size_t svcCborSize = 0;
188     if (NULL != value)
189     {
190         OicSecSvc_t *svc = JSONToSvcBin(jsonStr);
191         VERIFY_NON_NULL(TAG, svc, FATAL);
192         ret = SVCToCBORPayload(svc, &svcCbor, &svcCborSize);
193         if(OC_STACK_OK != ret)
194         {
195             OIC_LOG (ERROR, TAG, "Failed converting Svc to Cbor Payload");
196             DeleteSVCList(svc);
197             goto exit;
198         }
199         printf("SVC Cbor Size: %zd\n", svcCborSize);
200         DeleteSVCList(svc);
201     }
202     value = cJSON_GetObjectItem(jsonRoot, OIC_JSON_CRED_NAME);
203     //printf("CRED json : \n%s\n", cJSON_PrintUnformatted(value));
204     size_t credCborSize = 0;
205     int secureFlag = 0;
206     if (NULL != value)
207     {
208         OicSecCred_t *cred = JSONToCredBin(jsonStr);
209         VERIFY_NON_NULL(TAG, cred, FATAL);
210         ret = CredToCBORPayload(cred, &credCbor, &credCborSize, secureFlag);
211         if(OC_STACK_OK != ret)
212         {
213             OIC_LOG (ERROR, TAG, "Failed converting Cred to Cbor Payload");
214             DeleteCredList(cred);
215             goto exit;
216         }
217         printf("CRED Cbor Size: %zd\n", credCborSize);
218         DeleteCredList(cred);
219     }
220
221     CborEncoder encoder;
222     size_t cborSize = aclCborSize + pstatCborSize + doxmCborSize + svcCborSize + credCborSize + amaclCborSize;
223
224     printf("Total Cbor Size : %zd\n", cborSize);
225     cborSize += 255; // buffer margin for adding map and byte string
226     uint8_t *outPayload = (uint8_t *)OICCalloc(1, cborSize);
227     VERIFY_NON_NULL(TAG, outPayload, ERROR);
228     cbor_encoder_init(&encoder, outPayload, cborSize, 0);
229     CborEncoder map;
230     CborError cborEncoderResult = cbor_encoder_create_map(&encoder, &map, CborIndefiniteLength);
231     VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Creating Main Map.");
232     if (aclCborSize > 0)
233     {
234         cborEncoderResult = cbor_encode_text_string(&map, OIC_JSON_ACL_NAME, strlen(OIC_JSON_ACL_NAME));
235         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding ACL Name.");
236         cborEncoderResult = cbor_encode_byte_string(&map, aclCbor, aclCborSize);
237         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding ACL Value.");
238     }
239
240     if (pstatCborSize > 0)
241     {
242         cborEncoderResult = cbor_encode_text_string(&map, OIC_JSON_PSTAT_NAME, strlen(OIC_JSON_PSTAT_NAME));
243         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding PSTAT Name.");
244         cborEncoderResult = cbor_encode_byte_string(&map, pstatCbor, pstatCborSize);
245         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding PSTAT Value.");
246     }
247     if (doxmCborSize > 0)
248     {
249         cborEncoderResult = cbor_encode_text_string(&map, OIC_JSON_DOXM_NAME, strlen(OIC_JSON_DOXM_NAME));
250         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding DOXM Name.");
251         cborEncoderResult = cbor_encode_byte_string(&map, doxmCbor, doxmCborSize);
252         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding DOXM Value.");
253     }
254     if (amaclCborSize > 0)
255     {
256         cborEncoderResult = cbor_encode_text_string(&map, OIC_JSON_AMACL_NAME, strlen(OIC_JSON_AMACL_NAME));
257         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding AMACL Name.");
258         cborEncoderResult = cbor_encode_byte_string(&map, amaclCbor, amaclCborSize);
259         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding AMACL Value.");
260     }
261     if (svcCborSize > 0)
262     {
263         cborEncoderResult = cbor_encode_text_string(&map, OIC_JSON_SVC_NAME, strlen(OIC_JSON_SVC_NAME));
264         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding SVC Name.");
265         cborEncoderResult = cbor_encode_byte_string(&map, svcCbor, svcCborSize);
266         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding SVC Value.");
267     }
268     if (credCborSize > 0)
269     {
270         cborEncoderResult = cbor_encode_text_string(&map, OIC_JSON_CRED_NAME, strlen(OIC_JSON_CRED_NAME));
271         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding CRED Name.");
272         cborEncoderResult = cbor_encode_byte_string(&map, credCbor, credCborSize);
273         VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Adding CRED Value.");
274     }
275
276     cborEncoderResult = cbor_encoder_close_container(&encoder, &map);
277     VERIFY_CBOR_SUCCESS(TAG, cborEncoderResult, "Failed Closing Container.");
278
279     size_t s = encoder.ptr - outPayload;
280     OIC_LOG_V(DEBUG, TAG, "Payload size %zu", s);
281
282     fp1 = fopen(cborFileName, "w");
283     if (fp1)
284     {
285         size_t bytesWritten = fwrite(outPayload, 1, s, fp1);
286         if (bytesWritten == s)
287         {
288             OIC_LOG_V(DEBUG, TAG, "Written %zu bytes", bytesWritten);
289         }
290         else
291         {
292             OIC_LOG_V(ERROR, TAG, "Failed writing %zu bytes", s);
293         }
294         fclose(fp1);
295         fp1 = NULL;
296     }
297 exit:
298
299     cJSON_Delete(jsonRoot);
300     OICFree(aclCbor);
301     OICFree(doxmCbor);
302     OICFree(pstatCbor);
303     OICFree(amaclCbor);
304     OICFree(svcCbor);
305     OICFree(credCbor);
306     OICFree(jsonStr);
307     return ;
308 }
309
310 OicSecAcl_t* JSONToAclBin(const char * jsonStr)
311 {
312     OCStackResult ret = OC_STACK_ERROR;
313     OicSecAcl_t * headAcl = (OicSecAcl_t*)OICCalloc(1, sizeof(OicSecAcl_t));
314     cJSON *jsonRoot = NULL;
315
316     VERIFY_NON_NULL(TAG, jsonStr, ERROR);
317
318     jsonRoot = cJSON_Parse(jsonStr);
319     VERIFY_NON_NULL(TAG, jsonRoot, ERROR);
320
321     cJSON *jsonAclMap = cJSON_GetObjectItem(jsonRoot, OIC_JSON_ACL_NAME);
322     VERIFY_NON_NULL(TAG, jsonAclMap, ERROR);
323
324     cJSON *jsonAclObj = NULL;
325
326     // aclist
327     jsonAclObj = cJSON_GetObjectItem(jsonAclMap, OIC_JSON_ACLIST_NAME);
328     VERIFY_NON_NULL(TAG, jsonAclObj, ERROR);
329
330     // aclist-aces
331     cJSON *jsonAclArray = NULL;
332     jsonAclArray = cJSON_GetObjectItem(jsonAclObj, OIC_JSON_ACES_NAME);
333     VERIFY_NON_NULL(TAG, jsonAclArray, ERROR);
334
335     if (cJSON_Array == jsonAclArray->type)
336     {
337
338         int numAcl = cJSON_GetArraySize(jsonAclArray);
339         int idx = 0;
340
341         VERIFY_SUCCESS(TAG, numAcl > 0, INFO);
342         do
343         {
344             cJSON *jsonAcl = cJSON_GetArrayItem(jsonAclArray, idx);
345             VERIFY_NON_NULL(TAG, jsonAcl, ERROR);
346
347             OicSecAce_t *ace = (OicSecAce_t*)OICCalloc(1, sizeof(OicSecAce_t));
348             VERIFY_NON_NULL(TAG, ace, ERROR);
349             LL_APPEND(headAcl->aces, ace);
350
351             size_t jsonObjLen = 0;
352             cJSON *jsonObj = NULL;
353             jsonObj = cJSON_GetObjectItem(jsonAcl, OIC_JSON_SUBJECTID_NAME);
354             VERIFY_NON_NULL(TAG, jsonObj, ERROR);
355             VERIFY_SUCCESS(TAG, cJSON_String == jsonObj->type, ERROR);
356             if(strcmp(jsonObj->valuestring, WILDCARD_RESOURCE_URI) == 0)
357             {
358                 ace->subjectuuid.id[0] = '*';
359             }
360             else
361             {
362                 ret = ConvertStrToUuid(jsonObj->valuestring, &ace->subjectuuid);
363                 VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
364             }
365             // Resources -- Mandatory
366             jsonObj = cJSON_GetObjectItem(jsonAcl, OIC_JSON_RESOURCES_NAME);
367             VERIFY_NON_NULL(TAG, jsonObj, ERROR);
368             VERIFY_SUCCESS(TAG, cJSON_Array == jsonObj->type, ERROR);
369
370             size_t resourcesLen = (size_t)cJSON_GetArraySize(jsonObj);
371             VERIFY_SUCCESS(TAG, resourcesLen > 0, ERROR);
372
373             for(size_t idxx = 0; idxx < resourcesLen; idxx++)
374             {
375                 OicSecRsrc_t* rsrc = (OicSecRsrc_t*)OICCalloc(1, sizeof(OicSecRsrc_t));
376                 VERIFY_NON_NULL(TAG, rsrc, ERROR);
377
378                 cJSON *jsonRsrc = cJSON_GetArrayItem(jsonObj, idxx);
379                 VERIFY_NON_NULL(TAG, jsonRsrc, ERROR);
380
381                 size_t jsonRsrcObjLen = 0;
382                 cJSON *jsonRsrcObj = cJSON_GetObjectItem(jsonRsrc, OIC_JSON_HREF_NAME);
383                 VERIFY_NON_NULL(TAG, jsonRsrcObj, ERROR);
384                 VERIFY_SUCCESS(TAG, cJSON_String == jsonRsrcObj->type, ERROR);
385
386                 jsonRsrcObjLen = strlen(jsonRsrcObj->valuestring) + 1;
387                 rsrc->href = (char*)OICMalloc(jsonRsrcObjLen);
388                 VERIFY_NON_NULL(TAG, (rsrc->href), ERROR);
389                 OICStrcpy(rsrc->href, jsonRsrcObjLen, jsonRsrcObj->valuestring);
390
391                 //rel
392                 jsonRsrcObj = cJSON_GetObjectItem(jsonRsrc, OIC_JSON_REL_NAME);
393                 if(jsonRsrcObj)
394                 {
395                     jsonRsrcObjLen = strlen(jsonRsrcObj->valuestring) + 1;
396                     rsrc->rel = (char*)OICMalloc(jsonRsrcObjLen);
397                     VERIFY_NON_NULL(TAG, (rsrc->rel), ERROR);
398                     OICStrcpy(rsrc->rel, jsonRsrcObjLen, jsonRsrcObj->valuestring);
399                 }
400
401                 //rt
402                 jsonRsrcObj = cJSON_GetObjectItem(jsonRsrc, OIC_JSON_RT_NAME);
403                 if(jsonRsrcObj && cJSON_Array == jsonRsrcObj->type)
404                 {
405                     rsrc->typeLen = (size_t)cJSON_GetArraySize(jsonRsrcObj);
406                     VERIFY_SUCCESS(TAG, (0 < rsrc->typeLen), ERROR);
407                     rsrc->types = (char**)OICCalloc(rsrc->typeLen, sizeof(char*));
408                     VERIFY_NON_NULL(TAG, (rsrc->types), ERROR);
409                     for(size_t i = 0; i < rsrc->typeLen; i++)
410                     {
411                         cJSON *jsonRsrcType = cJSON_GetArrayItem(jsonRsrcObj, i);
412                         rsrc->types[i] = OICStrdup(jsonRsrcType->valuestring);
413                         VERIFY_NON_NULL(TAG, (rsrc->types[i]), ERROR);
414                     }
415                 }
416
417                 //if
418                 jsonRsrcObj = cJSON_GetObjectItem(jsonRsrc, OIC_JSON_IF_NAME);
419                 if(jsonRsrcObj && cJSON_Array == jsonRsrcObj->type)
420                 {
421                     rsrc->interfaceLen = (size_t)cJSON_GetArraySize(jsonRsrcObj);
422                     VERIFY_SUCCESS(TAG, (0 < rsrc->interfaceLen), ERROR);
423                     rsrc->interfaces = (char**)OICCalloc(rsrc->interfaceLen, sizeof(char*));
424                     VERIFY_NON_NULL(TAG, (rsrc->interfaces), ERROR);
425                     for(size_t i = 0; i < rsrc->interfaceLen; i++)
426                     {
427                         cJSON *jsonInterface = cJSON_GetArrayItem(jsonRsrcObj, i);
428                         rsrc->interfaces[i] = OICStrdup(jsonInterface->valuestring);
429                         VERIFY_NON_NULL(TAG, (rsrc->interfaces[i]), ERROR);
430                     }
431                 }
432
433                 LL_APPEND(ace->resources, rsrc);
434             }
435
436             // Permissions -- Mandatory
437             jsonObj = cJSON_GetObjectItem(jsonAcl, OIC_JSON_PERMISSION_NAME);
438             VERIFY_NON_NULL(TAG, jsonObj, ERROR);
439             VERIFY_SUCCESS(TAG, cJSON_Number == jsonObj->type, ERROR);
440             ace->permission = jsonObj->valueint;
441
442             //Validity -- Not Mandatory
443             cJSON *jsonValidityObj = cJSON_GetObjectItem(jsonAcl, OIC_JSON_VALIDITY_NAME);
444             if(jsonValidityObj)
445             {
446                 VERIFY_SUCCESS(TAG, cJSON_Array == jsonValidityObj->type, ERROR);
447                 size_t validityLen = cJSON_GetArraySize(jsonValidityObj);
448                 VERIFY_SUCCESS(TAG, (0 < validityLen), ERROR);
449
450                 cJSON *jsonValidity = NULL;
451                 for(size_t i = 0; i < validityLen; i++)
452                 {
453                     jsonValidity = cJSON_GetArrayItem(jsonValidityObj, i);
454                     VERIFY_NON_NULL(TAG, jsonValidity, ERROR);
455                     VERIFY_SUCCESS(TAG, (jsonValidity->type == cJSON_Array), ERROR);
456
457                     OicSecValidity_t* validity = (OicSecValidity_t*)OICCalloc(1, sizeof(OicSecValidity_t));
458                     VERIFY_NON_NULL(TAG, validity, ERROR);
459                     LL_APPEND(ace->validities, validity);
460
461                     //Period
462                     cJSON* jsonPeriod = cJSON_GetArrayItem(jsonValidity, 0);
463                     if(jsonPeriod)
464                     {
465                         VERIFY_SUCCESS(TAG, (cJSON_String == jsonPeriod->type), ERROR);
466
467                         jsonObjLen = strlen(jsonPeriod->valuestring) + 1;
468                         validity->period = (char*)OICMalloc(jsonObjLen);
469                         VERIFY_NON_NULL(TAG, validity->period, ERROR);
470                         OICStrcpy(validity->period, jsonObjLen, jsonPeriod->valuestring);
471                     }
472
473                     //Recurrence
474                     cJSON* jsonRecurObj = cJSON_GetArrayItem(jsonValidity, 1);
475                     if(jsonRecurObj)
476                     {
477                         VERIFY_SUCCESS(TAG, (cJSON_Array == jsonRecurObj->type), ERROR);
478                         validity->recurrenceLen = cJSON_GetArraySize(jsonRecurObj);
479                         VERIFY_SUCCESS(TAG, (0 < validity->recurrenceLen), ERROR);
480
481                         validity->recurrences = (char**)OICCalloc(validity->recurrenceLen, sizeof(char*));
482                         VERIFY_NON_NULL(TAG, validity->recurrences, ERROR);
483
484                         cJSON *jsonRecur = NULL;
485                         for(size_t i = 0; i < validity->recurrenceLen; i++)
486                         {
487                             jsonRecur = cJSON_GetArrayItem(jsonRecurObj, i);
488                             VERIFY_NON_NULL(TAG, jsonRecur, ERROR);
489                             jsonObjLen = strlen(jsonRecur->valuestring) + 1;
490                             validity->recurrences[i] = (char*)OICMalloc(jsonObjLen);
491                             VERIFY_NON_NULL(TAG, validity->recurrences[i], ERROR);
492                             OICStrcpy(validity->recurrences[i], jsonObjLen, jsonRecur->valuestring);
493                         }
494                     }
495                 }
496             }
497         } while( ++idx < numAcl);
498     }
499
500
501     // rownerid
502     jsonAclObj = cJSON_GetObjectItem(jsonAclMap, OIC_JSON_ROWNERID_NAME);
503     VERIFY_NON_NULL(TAG, jsonAclObj, ERROR);
504     VERIFY_SUCCESS(TAG, cJSON_String == jsonAclObj->type, ERROR);
505     ret = ConvertStrToUuid(jsonAclObj->valuestring, &headAcl->rownerID);
506     VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
507
508     ret = OC_STACK_OK;
509
510 exit:
511     cJSON_Delete(jsonRoot);
512     if (OC_STACK_OK != ret)
513     {
514         DeleteACLList(headAcl);
515         headAcl = NULL;
516     }
517     return headAcl;
518 }
519
520 OicSecDoxm_t* JSONToDoxmBin(const char * jsonStr)
521 {
522     printf("IN JSONToDoxmBin\n");
523     if (NULL == jsonStr)
524     {
525         return NULL;
526     }
527
528     OCStackResult ret = OC_STACK_ERROR;
529     OicSecDoxm_t *doxm =  NULL;
530     cJSON *jsonDoxm = NULL;
531     cJSON *jsonObj = NULL;
532
533     size_t jsonObjLen = 0;
534
535     cJSON *jsonRoot = cJSON_Parse(jsonStr);
536     VERIFY_NON_NULL(TAG, jsonRoot, ERROR);
537
538     jsonDoxm = cJSON_GetObjectItem(jsonRoot, OIC_JSON_DOXM_NAME);
539     VERIFY_NON_NULL(TAG, jsonDoxm, ERROR);
540
541     doxm = (OicSecDoxm_t *)OICCalloc(1, sizeof(OicSecDoxm_t));
542     VERIFY_NON_NULL(TAG, doxm, ERROR);
543
544     //OxmType -- not Mandatory
545     jsonObj = cJSON_GetObjectItem(jsonDoxm, OIC_JSON_OXM_TYPE_NAME);
546     if ((jsonObj) && (cJSON_Array == jsonObj->type))
547     {
548         doxm->oxmTypeLen = (size_t)cJSON_GetArraySize(jsonObj);
549         VERIFY_SUCCESS(TAG, doxm->oxmTypeLen > 0, ERROR);
550
551         doxm->oxmType = (OicUrn_t *)OICCalloc(doxm->oxmTypeLen, sizeof(char *));
552         VERIFY_NON_NULL(TAG, (doxm->oxmType), ERROR);
553
554         for (size_t i  = 0; i < doxm->oxmTypeLen ; i++)
555         {
556             cJSON *jsonOxmTy = cJSON_GetArrayItem(jsonObj, i);
557             VERIFY_NON_NULL(TAG, jsonOxmTy, ERROR);
558
559             jsonObjLen = strlen(jsonOxmTy->valuestring) + 1;
560             doxm->oxmType[i] = (char*)OICMalloc(jsonObjLen);
561             VERIFY_NON_NULL(TAG, doxm->oxmType[i], ERROR);
562             strncpy((char *)doxm->oxmType[i], (char *)jsonOxmTy->valuestring, jsonObjLen);
563         }
564     }
565
566     //Oxm -- not Mandatory
567     jsonObj = cJSON_GetObjectItem(jsonDoxm, OIC_JSON_OXMS_NAME);
568     if (jsonObj && cJSON_Array == jsonObj->type)
569     {
570         doxm->oxmLen = (size_t)cJSON_GetArraySize(jsonObj);
571         VERIFY_SUCCESS(TAG, doxm->oxmLen > 0, ERROR);
572
573         doxm->oxm = (OicSecOxm_t*)OICCalloc(doxm->oxmLen, sizeof(OicSecOxm_t));
574         VERIFY_NON_NULL(TAG, doxm->oxm, ERROR);
575
576         for (size_t i  = 0; i < doxm->oxmLen ; i++)
577         {
578             cJSON *jsonOxm = cJSON_GetArrayItem(jsonObj, i);
579             VERIFY_NON_NULL(TAG, jsonOxm, ERROR);
580             doxm->oxm[i] = (OicSecOxm_t)jsonOxm->valueint;
581         }
582     }
583
584     //OxmSel -- Mandatory
585     jsonObj = cJSON_GetObjectItem(jsonDoxm, OIC_JSON_OXM_SEL_NAME);
586     if (jsonObj)
587     {
588         VERIFY_SUCCESS(TAG, cJSON_Number == jsonObj->type, ERROR);
589         doxm->oxmSel = (OicSecOxm_t)jsonObj->valueint;
590     }
591
592     //sct -- Mandatory
593     jsonObj = cJSON_GetObjectItem(jsonDoxm, OIC_JSON_SUPPORTED_CRED_TYPE_NAME);
594     if (jsonObj)
595     {
596         VERIFY_SUCCESS(TAG, cJSON_Number == jsonObj->type, ERROR);
597         doxm->sct = (OicSecCredType_t)jsonObj->valueint;
598     }
599
600     //Owned -- Mandatory
601     jsonObj = cJSON_GetObjectItem(jsonDoxm, OIC_JSON_OWNED_NAME);
602     if (jsonObj)
603     {
604         VERIFY_SUCCESS(TAG, (cJSON_True == jsonObj->type || cJSON_False == jsonObj->type), ERROR);
605         doxm->owned = jsonObj->valueint;
606     }
607
608     //DPC -- Mandatory
609     jsonObj = cJSON_GetObjectItem(jsonDoxm, OIC_JSON_DPC_NAME);
610     if (jsonObj)
611     {
612         VERIFY_SUCCESS(TAG, (cJSON_True == jsonObj->type || cJSON_False == jsonObj->type), ERROR);
613         doxm->dpc = jsonObj->valueint;
614     }
615
616     //DeviceId -- Mandatory
617     jsonObj = cJSON_GetObjectItem(jsonDoxm, OIC_JSON_DEVICE_ID_NAME);
618     if (jsonObj)
619     {
620         VERIFY_SUCCESS(TAG, cJSON_String == jsonObj->type, ERROR);
621         if (cJSON_String == jsonObj->type)
622         {
623             //Check for empty string, in case DeviceId field has not been set yet
624             if (jsonObj->valuestring[0])
625             {
626                 ret = ConvertStrToUuid(jsonObj->valuestring, &doxm->deviceID);
627                 VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
628             }
629         }
630     }
631
632     //rowner -- Mandatory
633     jsonObj = cJSON_GetObjectItem(jsonDoxm, OIC_JSON_ROWNERID_NAME);
634     if (true == doxm->owned)
635     {
636         VERIFY_NON_NULL(TAG, jsonObj, ERROR);
637     }
638     if (jsonObj)
639     {
640         ret = ConvertStrToUuid(jsonObj->valuestring, &doxm->rownerID);
641         VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
642     }
643
644     //Owner -- will be empty when device status is unowned.
645     jsonObj = cJSON_GetObjectItem(jsonDoxm, OIC_JSON_DEVOWNERID_NAME);
646     if (true == doxm->owned)
647     {
648         VERIFY_NON_NULL(TAG, jsonObj, ERROR);
649     }
650     if (jsonObj)
651     {
652         ret = ConvertStrToUuid(jsonObj->valuestring, &doxm->owner);
653                 VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
654     }
655
656     ret = OC_STACK_OK;
657
658 exit:
659     cJSON_Delete(jsonRoot);
660     if (OC_STACK_OK != ret)
661     {
662         DeleteDoxmBinData(doxm);
663         doxm = NULL;
664     }
665     printf("OUT JSONToDoxmBin\n");
666     return doxm;
667 }
668
669 OicSecPstat_t* JSONToPstatBin(const char * jsonStr)
670 {
671     printf("IN JSONToPstatBin\n");
672     if(NULL == jsonStr)
673     {
674         return NULL;
675     }
676
677     OCStackResult ret = OC_STACK_ERROR;
678     OicSecPstat_t *pstat = NULL;
679     cJSON *jsonPstat = NULL;
680     cJSON *jsonObj = NULL;
681
682     cJSON *jsonRoot = cJSON_Parse(jsonStr);
683     VERIFY_NON_NULL(TAG, jsonRoot, INFO);
684
685     jsonPstat = cJSON_GetObjectItem(jsonRoot, OIC_JSON_PSTAT_NAME);
686     VERIFY_NON_NULL(TAG, jsonPstat, INFO);
687
688     pstat = (OicSecPstat_t*)OICCalloc(1, sizeof(OicSecPstat_t));
689     VERIFY_NON_NULL(TAG, pstat, INFO);
690     jsonObj = cJSON_GetObjectItem(jsonPstat, OIC_JSON_ISOP_NAME);
691     VERIFY_NON_NULL(TAG, jsonObj, ERROR);
692     VERIFY_SUCCESS(TAG, (cJSON_True == jsonObj->type || cJSON_False == jsonObj->type) , ERROR);
693     pstat->isOp = jsonObj->valueint;
694
695     jsonObj = cJSON_GetObjectItem(jsonPstat, OIC_JSON_DEVICE_ID_NAME);
696     VERIFY_NON_NULL(TAG, jsonObj, ERROR);
697     VERIFY_SUCCESS(TAG, cJSON_String == jsonObj->type, ERROR);
698     ret = ConvertStrToUuid(jsonObj->valuestring, &pstat->deviceID);
699     VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
700
701     jsonObj = cJSON_GetObjectItem(jsonPstat, OIC_JSON_ROWNERID_NAME);
702     VERIFY_NON_NULL(TAG, jsonObj, ERROR);
703     VERIFY_SUCCESS(TAG, cJSON_String == jsonObj->type, ERROR);
704     ret = ConvertStrToUuid(jsonObj->valuestring, &pstat->rownerID);
705     VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
706
707     jsonObj = cJSON_GetObjectItem(jsonPstat, OIC_JSON_CM_NAME);
708     VERIFY_NON_NULL(TAG, jsonObj, ERROR);
709     VERIFY_SUCCESS(TAG, cJSON_Number == jsonObj->type, ERROR);
710     pstat->cm  = (OicSecDpm_t)jsonObj->valueint;
711
712     jsonObj = cJSON_GetObjectItem(jsonPstat, OIC_JSON_TM_NAME);
713     VERIFY_NON_NULL(TAG, jsonObj, ERROR);
714     VERIFY_SUCCESS(TAG, cJSON_Number == jsonObj->type, ERROR);
715     pstat->tm  = (OicSecDpm_t)jsonObj->valueint;
716
717     jsonObj = cJSON_GetObjectItem(jsonPstat, OIC_JSON_OM_NAME);
718     VERIFY_NON_NULL(TAG, jsonObj, ERROR);
719     VERIFY_SUCCESS(TAG, cJSON_Number == jsonObj->type, ERROR);
720     pstat->om  = (OicSecDpom_t)jsonObj->valueint;
721
722     jsonObj = cJSON_GetObjectItem(jsonPstat, OIC_JSON_SM_NAME);
723     VERIFY_NON_NULL(TAG, jsonObj, ERROR);
724     VERIFY_SUCCESS(TAG, cJSON_Number == jsonObj->type, ERROR);
725     pstat->smLen = 1;
726     pstat->sm = (OicSecDpom_t*)OICCalloc(pstat->smLen, sizeof(OicSecDpom_t));
727     pstat->sm[0] = (OicSecDpom_t)jsonObj->valueint;
728
729     ret = OC_STACK_OK;
730
731 exit:
732     cJSON_Delete(jsonRoot);
733     if (OC_STACK_OK != ret)
734     {
735         OIC_LOG(ERROR, TAG, "JSONToPstatBin failed");
736     }
737     printf("OUT JSONToPstatBin\n");
738     return pstat;
739 }
740
741 OicSecCred_t * JSONToCredBin(const char * jsonStr)
742 {
743     if (NULL == jsonStr)
744     {
745         OIC_LOG(ERROR, TAG,"JSONToCredBin jsonStr in NULL");
746         return NULL;
747     }
748
749     OicSecCred_t *headCred = (OicSecCred_t*)OICCalloc(1, sizeof(OicSecCred_t));
750     OCStackResult ret = OC_STACK_ERROR;
751     cJSON *jsonRoot = NULL;
752     VERIFY_NON_NULL(TAG, headCred, ERROR);
753
754     jsonRoot = cJSON_Parse(jsonStr);
755     VERIFY_NON_NULL(TAG, jsonRoot, ERROR);
756
757     cJSON *jsonCredMap = cJSON_GetObjectItem(jsonRoot, OIC_JSON_CRED_NAME);
758     VERIFY_NON_NULL(TAG, jsonCredMap, ERROR);
759
760     // creds
761     cJSON *jsonCredArray = NULL;
762     jsonCredArray = cJSON_GetObjectItem(jsonCredMap, OIC_JSON_CREDS_NAME);
763     VERIFY_NON_NULL(TAG, jsonCredArray, ERROR);
764
765     if (cJSON_Array == jsonCredArray->type)
766     {
767         int numCred = cJSON_GetArraySize(jsonCredArray);
768         VERIFY_SUCCESS(TAG, numCred > 0, ERROR);
769         int idx = 0;
770         do
771         {
772             cJSON *jsonCred = cJSON_GetArrayItem(jsonCredArray, idx);
773             VERIFY_NON_NULL(TAG, jsonCred, ERROR);
774
775             OicSecCred_t *cred = NULL;
776             if(idx == 0)
777             {
778                 cred = headCred;
779             }
780             else
781             {
782                 cred = (OicSecCred_t*)OICCalloc(1, sizeof(OicSecCred_t));
783                 OicSecCred_t *temp = headCred;
784                 while (temp->next)
785                 {
786                     temp = temp->next;
787                 }
788                 temp->next = cred;
789             }
790             VERIFY_NON_NULL(TAG, cred, ERROR);
791
792             size_t jsonObjLen = 0;
793             cJSON *jsonObj = NULL;
794
795             //CredId -- Mandatory
796             jsonObj = cJSON_GetObjectItem(jsonCred, OIC_JSON_CREDID_NAME);
797             if(jsonObj)
798             {
799                 VERIFY_SUCCESS(TAG, cJSON_Number == jsonObj->type, ERROR);
800                 cred->credId = jsonObj->valueint;
801             }
802
803             //subject -- Mandatory
804             jsonObj = cJSON_GetObjectItem(jsonCred, OIC_JSON_SUBJECTID_NAME);
805             VERIFY_NON_NULL(TAG, jsonObj, ERROR);
806             VERIFY_SUCCESS(TAG, cJSON_String == jsonObj->type, ERROR);
807             ret = ConvertStrToUuid(jsonObj->valuestring, &cred->subject);
808             VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
809
810             //CredType -- Mandatory
811             jsonObj = cJSON_GetObjectItem(jsonCred, OIC_JSON_CREDTYPE_NAME);
812             VERIFY_NON_NULL(TAG, jsonObj, ERROR);
813             VERIFY_SUCCESS(TAG, cJSON_Number == jsonObj->type, ERROR);
814             cred->credType = (OicSecCredType_t)jsonObj->valueint;
815             //PrivateData is mandatory for some of the credential types listed below.
816             jsonObj = cJSON_GetObjectItem(jsonCred, OIC_JSON_PRIVATEDATA_NAME);
817
818             if (NULL != jsonObj)
819             {
820                 cJSON *jsonPriv = cJSON_GetObjectItem(jsonObj, OIC_JSON_DATA_NAME);
821                 VERIFY_NON_NULL(TAG, jsonPriv, ERROR);
822                 jsonObjLen = strlen(jsonPriv->valuestring);
823                 cred->privateData.data = (uint8_t *)OICCalloc(1, jsonObjLen);
824                 VERIFY_NON_NULL(TAG, (cred->privateData.data), ERROR);
825                 memcpy(cred->privateData.data, jsonPriv->valuestring, jsonObjLen);
826                 cred->privateData.len = jsonObjLen;
827
828                 cJSON *jsonEncoding = cJSON_GetObjectItem(jsonObj, OIC_JSON_ENCODING_NAME);
829                 VERIFY_NON_NULL(TAG, jsonEncoding, ERROR);
830
831                 if(strcmp(OIC_SEC_ENCODING_RAW, jsonEncoding->valuestring) == 0)
832                 {
833                     cred->privateData.encoding = OIC_ENCODING_RAW;
834                 }
835                 else if(strcmp(OIC_SEC_ENCODING_BASE64, jsonEncoding->valuestring) == 0)
836                 {
837                     cred->privateData.encoding = OIC_ENCODING_BASE64;
838                 }
839                 else
840                 {
841                     printf("Unknow encoding type dectected!\n");
842                     printf("json2cbor will use \"oic.sec.encoding.raw\" as default encoding type.\n");
843                     cred->privateData.encoding = OIC_ENCODING_RAW;
844                 }
845             }
846 #ifdef __WITH_X509__
847             //PublicData is mandatory only for SIGNED_ASYMMETRIC_KEY credentials type.
848             jsonObj = cJSON_GetObjectItem(jsonCred, OIC_JSON_PUBLICDATA_NAME);
849
850             if (NULL != jsonObj)
851             {
852                 cJSON *jsonPub = cJSON_GetObjectItem(jsonObj, OIC_JSON_DATA_NAME);
853                 VERIFY_NON_NULL(TAG, jsonPub, ERROR);
854                 jsonObjLen = strlen(jsonPub->valuestring);
855                 cred->publicData.data = (uint8_t *)OICCalloc(1, jsonObjLen);
856                 VERIFY_NON_NULL(TAG, (cred->publicData.data), ERROR);
857                 memcpy(cred->publicData.data, jsonPub->valuestring, jsonObjLen);
858                 cred->publicData.len = jsonObjLen;
859             }
860 #endif //  __WITH_X509__
861             //Period -- Not Mandatory
862             jsonObj = cJSON_GetObjectItem(jsonCred, OIC_JSON_PERIOD_NAME);
863             if(jsonObj && cJSON_String == jsonObj->type)
864             {
865                 jsonObjLen = strlen(jsonObj->valuestring) + 1;
866                 cred->period = (char *)OICMalloc(jsonObjLen);
867                 VERIFY_NON_NULL(TAG, cred->period, ERROR);
868                 strncpy(cred->period, jsonObj->valuestring, jsonObjLen);
869             }
870             cred->next = NULL;
871         } while( ++idx < numCred);
872     }
873
874     // rownerid
875     cJSON *jsonCredObj = cJSON_GetObjectItem(jsonCredMap, OIC_JSON_ROWNERID_NAME);
876     VERIFY_NON_NULL(TAG, jsonCredObj, ERROR);
877     VERIFY_SUCCESS(TAG, cJSON_String == jsonCredObj->type, ERROR);
878     ret = ConvertStrToUuid(jsonCredObj->valuestring, &headCred->rownerID);
879     VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
880     ret = OC_STACK_OK;
881
882 exit:
883
884     if (OC_STACK_OK != ret)
885     {
886         DeleteCredList(headCred);
887         headCred = NULL;
888     }
889     return headCred;
890 }
891
892 static OicSecSvc_t* JSONToSvcBin(const char * jsonStr)
893 {
894     OCStackResult ret = OC_STACK_ERROR;
895     OicSecSvc_t * headSvc = NULL;
896     OicSecSvc_t * prevSvc = NULL;
897     cJSON *jsonRoot = NULL;
898     cJSON *jsonSvcArray = NULL;
899
900     VERIFY_NON_NULL(TAG, jsonStr, ERROR);
901
902     jsonRoot = cJSON_Parse(jsonStr);
903     VERIFY_NON_NULL(TAG, jsonRoot, ERROR);
904
905     jsonSvcArray = cJSON_GetObjectItem(jsonRoot, OIC_JSON_SVC_NAME);
906     VERIFY_NON_NULL(TAG, jsonSvcArray, INFO);
907
908     if (cJSON_Array == jsonSvcArray->type)
909     {
910         int numSvc = cJSON_GetArraySize(jsonSvcArray);
911         int idx = 0;
912
913         VERIFY_SUCCESS(TAG, numSvc > 0, INFO);
914         do
915         {
916             cJSON *jsonSvc = cJSON_GetArrayItem(jsonSvcArray, idx);
917             VERIFY_NON_NULL(TAG, jsonSvc, ERROR);
918
919             OicSecSvc_t *svc = (OicSecSvc_t*)OICCalloc(1, sizeof(OicSecSvc_t));
920             VERIFY_NON_NULL(TAG, svc, ERROR);
921
922             headSvc = (headSvc) ? headSvc : svc;
923             if (prevSvc)
924             {
925                 prevSvc->next = svc;
926             }
927
928             cJSON *jsonObj = NULL;
929             unsigned char base64Buff[sizeof(((OicUuid_t*)0)->id)] = {};
930             uint32_t outLen = 0;
931             B64Result b64Ret = B64_OK;
932
933             // Service Device Identity
934             jsonObj = cJSON_GetObjectItem(jsonSvc, OIC_JSON_SERVICE_DEVICE_ID);
935             VERIFY_NON_NULL(TAG, jsonObj, ERROR);
936             VERIFY_SUCCESS(TAG, cJSON_String == jsonObj->type, ERROR);
937             outLen = 0;
938             b64Ret = b64Decode(jsonObj->valuestring, strlen(jsonObj->valuestring), base64Buff,
939                        sizeof(base64Buff), &outLen);
940             VERIFY_SUCCESS(TAG, (b64Ret == B64_OK && outLen <= sizeof(svc->svcdid.id)), ERROR);
941             memcpy(svc->svcdid.id, base64Buff, outLen);
942
943             // Service Type
944             jsonObj = cJSON_GetObjectItem(jsonSvc, OIC_JSON_SERVICE_TYPE);
945             VERIFY_NON_NULL(TAG, jsonObj, ERROR);
946             VERIFY_SUCCESS(TAG, cJSON_Number == jsonObj->type, ERROR);
947             svc->svct = (OicSecSvcType_t)jsonObj->valueint;
948
949             // Resource Owners
950             jsonObj = cJSON_GetObjectItem(jsonSvc, OIC_JSON_OWNERS_NAME);
951             VERIFY_NON_NULL(TAG, jsonObj, ERROR);
952             VERIFY_SUCCESS(TAG, cJSON_Array == jsonObj->type, ERROR);
953
954             svc->ownersLen = (size_t)cJSON_GetArraySize(jsonObj);
955             VERIFY_SUCCESS(TAG, svc->ownersLen > 0, ERROR);
956             svc->owners = (OicUuid_t*)OICCalloc(svc->ownersLen, sizeof(OicUuid_t));
957             VERIFY_NON_NULL(TAG, (svc->owners), ERROR);
958
959             size_t idxx = 0;
960             do
961             {
962                 cJSON *jsonOwnr = cJSON_GetArrayItem(jsonObj, idxx);
963                 VERIFY_NON_NULL(TAG, jsonOwnr, ERROR);
964                 VERIFY_SUCCESS(TAG, cJSON_String == jsonOwnr->type, ERROR);
965                 outLen = 0;
966                 b64Ret = b64Decode(jsonOwnr->valuestring, strlen(jsonOwnr->valuestring), base64Buff,
967                            sizeof(base64Buff), &outLen);
968
969                 VERIFY_SUCCESS(TAG, (b64Ret == B64_OK && outLen <= sizeof(svc->owners[idxx].id)),
970                                    ERROR);
971                 memcpy(svc->owners[idxx].id, base64Buff, outLen);
972             } while ( ++idxx < svc->ownersLen);
973
974             prevSvc = svc;
975         } while( ++idx < numSvc);
976     }
977
978     ret = OC_STACK_OK;
979
980 exit:
981     cJSON_Delete(jsonRoot);
982     if (OC_STACK_OK != ret)
983     {
984         DeleteSVCList(headSvc);
985         headSvc = NULL;
986     }
987     return headSvc;
988 }
989
990 static OicSecAmacl_t* JSONToAmaclBin(const char * jsonStr)
991 {
992     OCStackResult ret = OC_STACK_ERROR;
993     OicSecAmacl_t * headAmacl = (OicSecAmacl_t*)OICCalloc(1, sizeof(OicSecAmacl_t));
994
995     cJSON *jsonRoot = NULL;
996     cJSON *jsonAmacl = NULL;
997
998     VERIFY_NON_NULL(TAG, jsonStr, ERROR);
999
1000     jsonRoot = cJSON_Parse(jsonStr);
1001     VERIFY_NON_NULL(TAG, jsonRoot, ERROR);
1002
1003     jsonAmacl = cJSON_GetObjectItem(jsonRoot, OIC_JSON_AMACL_NAME);
1004     VERIFY_NON_NULL(TAG, jsonAmacl, INFO);
1005
1006     cJSON *jsonObj = NULL;
1007
1008     // Resources -- Mandatory
1009     jsonObj = cJSON_GetObjectItem(jsonAmacl, OIC_JSON_RESOURCES_NAME);
1010     VERIFY_NON_NULL(TAG, jsonObj, ERROR);
1011
1012     // Rlist
1013     cJSON *jsonRlistArray = cJSON_GetObjectItem(jsonObj, OIC_JSON_RLIST_NAME);
1014     VERIFY_NON_NULL(TAG, jsonRlistArray, ERROR);
1015     VERIFY_SUCCESS(TAG, cJSON_Array == jsonRlistArray->type, ERROR);
1016
1017     headAmacl->resourcesLen = (size_t)cJSON_GetArraySize(jsonRlistArray);
1018     headAmacl->resources = (char**)OICCalloc(headAmacl->resourcesLen, sizeof(char*));
1019     size_t idxx = 0;
1020     do
1021     {
1022         cJSON *jsonRsrc = cJSON_GetArrayItem(jsonRlistArray, idxx);
1023         VERIFY_NON_NULL(TAG, jsonRsrc, ERROR);
1024
1025         cJSON *jsonRsrcObj = cJSON_GetObjectItem(jsonRsrc, OIC_JSON_HREF_NAME);
1026         VERIFY_NON_NULL(TAG, jsonRsrcObj, ERROR);
1027         VERIFY_SUCCESS(TAG, cJSON_String == jsonRsrcObj->type, ERROR);
1028
1029         size_t jsonRsrcObjLen = 0;
1030         jsonRsrcObjLen = strlen(jsonRsrcObj->valuestring) + 1;
1031         headAmacl->resources[idxx] = (char*)OICMalloc(jsonRsrcObjLen);
1032         VERIFY_NON_NULL(TAG, (headAmacl->resources[idxx]), ERROR);
1033         OICStrcpy(headAmacl->resources[idxx], jsonRsrcObjLen, jsonRsrcObj->valuestring);
1034
1035     } while ( ++idxx < headAmacl->resourcesLen);
1036
1037     // Ams -- Mandatory
1038     jsonObj = cJSON_GetObjectItem(jsonAmacl, OIC_JSON_AMS_NAME);
1039     VERIFY_NON_NULL(TAG, jsonObj, ERROR);
1040     VERIFY_SUCCESS(TAG, cJSON_Array == jsonObj->type, ERROR);
1041
1042     headAmacl->amssLen = (size_t)cJSON_GetArraySize(jsonObj);
1043     VERIFY_SUCCESS(TAG, headAmacl->amssLen > 0, ERROR);
1044     headAmacl->amss = (OicUuid_t*)OICCalloc(headAmacl->amssLen, sizeof(OicUuid_t));
1045     VERIFY_NON_NULL(TAG, headAmacl->amss, ERROR);
1046
1047     idxx = 0;
1048     do
1049     {
1050         cJSON *jsonAms = cJSON_GetArrayItem(jsonObj, idxx);
1051         VERIFY_NON_NULL(TAG, jsonAms, ERROR);
1052         VERIFY_SUCCESS(TAG, cJSON_String == jsonAms->type, ERROR);
1053
1054         memcpy(headAmacl->amss[idxx].id, (OicUuid_t *)jsonAms->valuestring, strlen(jsonAms->valuestring));
1055
1056     } while ( ++idxx < headAmacl->amssLen);
1057
1058
1059     // Rowner -- Mandatory
1060     jsonObj = cJSON_GetObjectItem(jsonAmacl, OIC_JSON_ROWNERID_NAME);
1061     VERIFY_NON_NULL(TAG, jsonObj, ERROR);
1062     VERIFY_SUCCESS(TAG, cJSON_String == jsonObj->type, ERROR);
1063
1064     ret = ConvertStrToUuid(jsonObj->valuestring, &headAmacl->rownerID);
1065     VERIFY_SUCCESS(TAG, OC_STACK_OK == ret, ERROR);
1066
1067     ret = OC_STACK_OK;
1068
1069 exit:
1070     cJSON_Delete(jsonRoot);
1071     if (OC_STACK_OK != ret)
1072     {
1073         DeleteAmaclList(headAmacl);
1074         headAmacl = NULL;
1075     }
1076     return headAmacl;
1077 }
1078
1079 int main(int argc, char* argv[])
1080 {
1081     if (argc == 3)
1082     {
1083         printf("JSON File Name: %s\n CBOR File Name: %s \n", argv[1], argv[2]);
1084         ConvertJsonToCBOR(argv[1], argv[2]);
1085     }
1086     else
1087     {
1088         printf("This program requires two inputs:\n");
1089         printf("1. First input is a json file tha will be converted to cbor. \n");
1090         printf("2. Second input is a resulting cbor file that will store converted cbor. \n");
1091         printf("\t json2cbor <json_file_name> <cbor_file_name>. \n");
1092     }
1093 }