VS2013/15 aggregate changes of Intel and Microsoft
[platform/upstream/iotivity.git] / resource / csdk / security / src / srmutility.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 #define _POSIX_C_SOURCE 200112L
21 #include <string.h>
22
23 #include "srmutility.h"
24 #include "srmresourcestrings.h"
25 #include "logger.h"
26 #include "oic_malloc.h"
27 #include "base64.h"
28
29 #define TAG  "SRM-UTILITY"
30
31 void ParseQueryIterInit(const unsigned char * query, OicParseQueryIter_t * parseIter)
32 {
33     OIC_LOG(INFO, TAG, "Initializing coap iterator");
34     if ((NULL == query) || (NULL == parseIter))
35     {
36         return;
37     }
38
39     parseIter->attrPos = NULL;
40     parseIter->attrLen = 0;
41     parseIter->valPos = NULL;
42     parseIter->valLen = 0;
43     coap_parse_iterator_init((unsigned char *)query, strlen((char *)query),
44                              (unsigned char *)OIC_SEC_REST_QUERY_SEPARATOR,
45                              (unsigned char *) "", 0, &parseIter->pi);
46 }
47
48 OicParseQueryIter_t * GetNextQuery(OicParseQueryIter_t * parseIter)
49 {
50     OIC_LOG(INFO, TAG, "Getting Next Query");
51     if (NULL == parseIter)
52     {
53         return NULL;
54     }
55
56     unsigned char * qrySeg = NULL;
57     char * delimPos;
58
59     // Get the next query. Querys are separated by OIC_SEC_REST_QUERY_SEPARATOR.
60     qrySeg = coap_parse_next(&parseIter->pi);
61
62     if (qrySeg)
63     {
64         delimPos = strchr((char *)qrySeg, OIC_SEC_REST_QUERY_DELIMETER);
65         if (delimPos)
66         {
67             parseIter->attrPos = parseIter->pi.pos;
68             parseIter->attrLen = (unsigned char *)delimPos - parseIter->pi.pos;
69             parseIter->valPos  = (unsigned char *)delimPos + 1;
70             parseIter->valLen  = &qrySeg[parseIter->pi.segment_length] - parseIter->valPos;
71             return parseIter;
72         }
73     }
74     return NULL;
75 }
76
77 // TODO This functionality is replicated in all SVR's and therefore we need
78 // to encapsulate it in a common method. However, this may not be the right
79 // file for this method.
80 OCStackResult AddUuidArray(const cJSON* jsonRoot, const char* arrayItem,
81                            size_t *numUuids, OicUuid_t** uuids)
82 {
83     size_t idxx = 0;
84     cJSON* jsonObj = cJSON_GetObjectItem((cJSON *)jsonRoot, arrayItem);
85     VERIFY_NON_NULL(TAG, jsonObj, ERROR);
86     VERIFY_SUCCESS(TAG, cJSON_Array == jsonObj->type, ERROR);
87
88     *numUuids = (size_t)cJSON_GetArraySize(jsonObj);
89     VERIFY_SUCCESS(TAG, *numUuids > 0, ERROR);
90     *uuids = (OicUuid_t*)OICCalloc(*numUuids, sizeof(OicUuid_t));
91     VERIFY_NON_NULL(TAG, *uuids, ERROR);
92
93     do
94     {
95         unsigned char base64Buff[sizeof(((OicUuid_t*)0)->id)] = {0};
96         uint32_t outLen = 0;
97         B64Result b64Ret = B64_OK;
98
99         cJSON *jsonOwnr = cJSON_GetArrayItem(jsonObj, idxx);
100         VERIFY_NON_NULL(TAG, jsonOwnr, ERROR);
101         VERIFY_SUCCESS(TAG, cJSON_String == jsonOwnr->type, ERROR);
102
103         outLen = 0;
104         b64Ret = b64Decode(jsonOwnr->valuestring, strlen(jsonOwnr->valuestring), base64Buff,
105                sizeof(base64Buff), &outLen);
106
107         VERIFY_SUCCESS(TAG, (b64Ret == B64_OK && outLen <= sizeof((*uuids)[idxx].id)),
108                ERROR);
109         memcpy((*uuids)[idxx].id, base64Buff, outLen);
110     } while ( ++idxx < *numUuids);
111
112     return OC_STACK_OK;
113
114 exit:
115     return OC_STACK_ERROR;
116
117 }
118
119 /**
120  * Function to getting string of ownership transfer method
121  *
122  * @prarm oxmType ownership transfer method
123  *
124  * @return string value of ownership transfer method
125  */
126 const char* GetOxmString(OicSecOxm_t oxmType)
127 {
128     switch(oxmType)
129     {
130         case OIC_JUST_WORKS:
131             return OXM_JUST_WORKS;
132         case OIC_RANDOM_DEVICE_PIN:
133             return OXM_RANDOM_DEVICE_PIN;
134         case OIC_MANUFACTURER_CERTIFICATE:
135             return OXM_MANUFACTURER_CERTIFICATE;
136         default:
137             return NULL;
138     }
139 }
140
141 OCStackResult ConvertUuidToStr(const OicUuid_t* uuid, char** strUuid)
142 {
143     if(NULL == uuid || NULL == strUuid || NULL != *strUuid)
144     {
145         OIC_LOG(ERROR, TAG, "ConvertUuidToStr : Invalid param");
146         return OC_STACK_INVALID_PARAM;
147     }
148
149     size_t uuidIdx = 0;
150     size_t urnIdx = 0;
151     const size_t urnBufSize = (UUID_LENGTH * 2) + 4 + 1;
152     char* convertedUrn = (char*)OICCalloc(urnBufSize, sizeof(char));
153     VERIFY_NON_NULL(TAG, convertedUrn, ERROR);
154
155     for(uuidIdx=0, urnIdx=0;  uuidIdx < UUID_LENGTH && urnIdx < urnBufSize; uuidIdx++, urnIdx+=2)
156     {
157         // canonical format for UUID has '8-4-4-4-12'
158         if(uuidIdx==4 || uuidIdx==6 || uuidIdx==8 || uuidIdx==10)
159         {
160             snprintf(convertedUrn + urnIdx, 2, "%c", '-');
161             urnIdx++;
162         }
163         snprintf(convertedUrn + urnIdx, 3, "%02x", (uint8_t)(uuid->id[uuidIdx]));
164     }
165     convertedUrn[urnBufSize - 1] = '\0';
166
167     *strUuid = convertedUrn;
168     return OC_STACK_OK;
169
170 exit:
171     return OC_STACK_NO_MEMORY;
172 }
173
174 OCStackResult ConvertStrToUuid(const char* strUuid, OicUuid_t* uuid)
175 {
176     if(NULL == strUuid || NULL == uuid)
177     {
178         OIC_LOG(ERROR, TAG, "ConvertStrToUuid : Invalid param");
179         return OC_STACK_INVALID_PARAM;
180     }
181
182     size_t urnIdx = 0;
183     size_t uuidIdx = 0;
184     size_t strUuidLen = 0;
185     char convertedUuid[UUID_LENGTH * 2] = {0};
186
187     strUuidLen = strlen(strUuid);
188     if(0 == strUuidLen)
189     {
190         OIC_LOG(INFO, TAG, "The empty string detected, The UUID will be converted to "\
191                            "\"00000000-0000-0000-0000-000000000000\"");
192     }
193     else if(UUID_LENGTH * 2 + 4 == strUuidLen)
194     {
195         for(uuidIdx=0, urnIdx=0; uuidIdx < UUID_LENGTH ; uuidIdx++, urnIdx+=2)
196         {
197             if(*(strUuid + urnIdx) == '-')
198             {
199                 urnIdx++;
200             }
201             sscanf(strUuid + urnIdx, "%2hhx", &convertedUuid[uuidIdx]);
202         }
203     }
204     else
205     {
206         OIC_LOG(ERROR, TAG, "Invalid string uuid format, Please set the uuid as correct format");
207         OIC_LOG(ERROR, TAG, "e.g) \"72616E64-5069-6E44-6576-557569643030\" (4-2-2-2-6)");
208         OIC_LOG(ERROR, TAG, "e.g) \"\"");
209
210         return OC_STACK_INVALID_PARAM;
211     }
212
213     memcpy(uuid->id, convertedUuid, UUID_LENGTH);
214
215     return OC_STACK_OK;
216 }