replace : iotivity -> iotivity-sec
[platform/upstream/iotivity.git] / resource / csdk / connectivity / common / src / caremotehandler.c
1 /******************************************************************
2  *
3  * Copyright 2014 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 <string.h>
22
23 #include "oic_malloc.h"
24 #include "oic_string.h"
25 #include "caremotehandler.h"
26 #include "logger.h"
27
28 #define TAG "CA"
29
30 CAEndpoint_t *CACloneEndpoint(const CAEndpoint_t *rep)
31 {
32     if (NULL == rep)
33     {
34         OIC_LOG(ERROR, TAG, "parameter is null");
35         return NULL;
36     }
37
38     // allocate the remote end point structure.
39     CAEndpoint_t *clone = (CAEndpoint_t *)OICMalloc(sizeof (CAEndpoint_t));
40     if (NULL == clone)
41     {
42         OIC_LOG(ERROR, TAG, "CACloneRemoteEndpoint Out of memory");
43         return NULL;
44     }
45     *clone = *rep;
46
47     return clone;
48 }
49
50 CARequestInfo_t *CACloneRequestInfo(const CARequestInfo_t *rep)
51 {
52     if (NULL == rep)
53     {
54         OIC_LOG(ERROR, TAG, "parameter is null");
55         return NULL;
56     }
57
58     // check the method type of request info.
59     // Keep this check in sync with CAMethod_t
60     switch (rep->method)
61     {
62         case CA_GET:
63         case CA_POST:
64         case CA_PUT:
65         case CA_DELETE:
66             break;
67         default:
68             OIC_LOG_V(ERROR, TAG, "Method %u is invalid", rep->method);
69             return NULL;
70     }
71
72     // allocate the request info structure.
73     CARequestInfo_t *clone = (CARequestInfo_t *) OICMalloc(sizeof(CARequestInfo_t));
74     if (!clone)
75     {
76         OIC_LOG(ERROR, TAG, "CACloneRequestInfo Out of memory");
77         return NULL;
78     }
79
80     CAResult_t result = CACloneInfo(&rep->info, &clone->info);
81     if(CA_STATUS_OK != result)
82     {
83         OIC_LOG(ERROR, TAG, "CACloneRequestInfo error in CACloneInfo");
84         CADestroyRequestInfoInternal(clone);
85         return NULL;
86     }
87
88     clone->method = rep->method;
89     clone->isMulticast = rep->isMulticast;
90
91     return clone;
92 }
93
94 CAResponseInfo_t *CACloneResponseInfo(const CAResponseInfo_t *rep)
95 {
96     if (NULL == rep)
97     {
98         OIC_LOG(ERROR, TAG, "Response pointer is NULL");
99         return NULL;
100     }
101
102     // check the result value of response info.
103     // Keep this check in sync with CAResponseResult_t
104     switch (rep->result)
105     {
106         case CA_EMPTY:
107         case CA_CREATED:
108         case CA_DELETED:
109         case CA_VALID:
110         case CA_CONTENT:
111         case CA_CHANGED:
112         case CA_CONTINUE:
113         case CA_BAD_REQ:
114         case CA_UNAUTHORIZED_REQ:
115         case CA_BAD_OPT:
116         case CA_FORBIDDEN_REQ:
117         case CA_NOT_FOUND:
118         case CA_METHOD_NOT_ALLOWED:
119         case CA_NOT_ACCEPTABLE:
120         case CA_REQUEST_ENTITY_INCOMPLETE:
121         case CA_REQUEST_ENTITY_TOO_LARGE:
122         case CA_INTERNAL_SERVER_ERROR:
123         case CA_NOT_IMPLEMENTED:
124         case CA_BAD_GATEWAY:
125         case CA_SERVICE_UNAVAILABLE:
126         case CA_RETRANSMIT_TIMEOUT:
127         case CA_PROXY_NOT_SUPPORTED:
128             break;
129         default:
130             OIC_LOG_V(ERROR, TAG, "Response code  %u is invalid", rep->result);
131             return NULL;
132     }
133
134     // allocate the response info structure.
135     CAResponseInfo_t *clone = (CAResponseInfo_t *) OICCalloc(1, sizeof(CAResponseInfo_t));
136     if (NULL == clone)
137     {
138         OIC_LOG(ERROR, TAG, "CACloneResponseInfo Out of memory");
139         return NULL;
140     }
141
142     CAResult_t result = CACloneInfo(&rep->info, &clone->info);
143     if(CA_STATUS_OK != result)
144     {
145         OIC_LOG(ERROR, TAG, "CACloneResponseInfo error in CACloneInfo");
146         CADestroyResponseInfoInternal(clone);
147         return NULL;
148     }
149
150     clone->isMulticast = rep->isMulticast;
151     clone->result = rep->result;
152     return clone;
153 }
154
155 CAEndpoint_t *CACreateEndpointObject(CATransportFlags_t flags,
156                                      CATransportAdapter_t adapter,
157                                      const char *address,
158                                      uint16_t port)
159 {
160     CAEndpoint_t *info = (CAEndpoint_t *)OICCalloc(1, sizeof(CAEndpoint_t));
161     if (NULL == info)
162     {
163         OIC_LOG(ERROR, TAG, "Memory allocation failed !");
164         return NULL;
165     }
166
167     if (address)
168     {
169         OICStrcpy(info->addr, sizeof(info->addr), address);
170         info->addr[MAX_ADDR_STR_SIZE_CA - 1] = '\0';
171     }
172     info->flags = flags;
173     info->adapter = adapter;
174     info->port = port;
175
176     return info;
177 }
178
179 void CAFreeEndpoint(CAEndpoint_t *rep)
180 {
181     OICFree(rep);
182 }
183
184 static void CADestroyInfoInternal(CAInfo_t *info)
185 {
186     // free token field
187     OICFree(info->token);
188     info->token = NULL;
189     info->tokenLength = 0;
190
191     // free options field
192     OICFree(info->options);
193     info->options = NULL;
194     info->numOptions = 0;
195
196     // free payload field
197     OICFree((char *) info->payload);
198     info->payload = NULL;
199     info->payloadSize = 0;
200
201     // free uri
202     OICFree(info->resourceUri);
203     info->resourceUri = NULL;
204 }
205
206 void CADestroyRequestInfoInternal(CARequestInfo_t *rep)
207 {
208     if (NULL == rep)
209     {
210         OIC_LOG(ERROR, TAG, "parameter is null");
211         return;
212     }
213
214     CADestroyInfoInternal(&rep->info);
215     OICFree(rep);
216 }
217
218 void CADestroyResponseInfoInternal(CAResponseInfo_t *rep)
219 {
220     if (NULL == rep)
221     {
222         OIC_LOG(ERROR, TAG, "parameter is null");
223         return;
224     }
225
226     CADestroyInfoInternal(&rep->info);
227     OICFree(rep);
228 }
229
230 void CADestroyErrorInfoInternal(CAErrorInfo_t *errorInfo)
231 {
232     if (NULL == errorInfo)
233     {
234         OIC_LOG(ERROR, TAG, "parameter is null");
235         return;
236     }
237
238     CADestroyInfoInternal(&errorInfo->info);
239     OICFree(errorInfo);
240 }
241
242 CAResult_t CACloneInfo(const CAInfo_t *info, CAInfo_t *clone)
243 {
244     if (!info || !clone)
245     {
246         OIC_LOG(ERROR, TAG, "input parameter invalid");
247         return CA_STATUS_INVALID_PARAM;
248     }
249
250     memset(clone, 0 , sizeof(CAInfo_t));
251
252     //Do not free clone. we cannot declare it const, as the content is modified
253     if ((info->token) && (0 < info->tokenLength))
254     {
255         // allocate token field
256         uint8_t len = info->tokenLength;
257
258         char *temp = (char *) OICMalloc(len * sizeof(char));
259         if (!temp)
260         {
261             OIC_LOG(ERROR, TAG, "CACloneInfo Out of memory");
262             goto exit;
263         }
264
265         memcpy(temp, info->token, len);
266         // save the token
267         clone->token = temp;
268         clone->tokenLength = len;
269     }
270
271     if (info->options && (0 < info->numOptions))
272     {
273         // save the options
274         clone->options =
275             (CAHeaderOption_t *) OICMalloc(sizeof(CAHeaderOption_t) * info->numOptions);
276
277         if (!clone->options)
278         {
279             OIC_LOG(ERROR, TAG, "CACloneInfo Out of memory");
280             goto exit;
281         }
282         memcpy(clone->options, info->options, sizeof(CAHeaderOption_t) * info->numOptions);
283         clone->numOptions = info->numOptions;
284     }
285
286     memcpy(&(clone->identity), &(info->identity), sizeof(info->identity));
287
288     if ((info->payload) && (0 < info->payloadSize))
289     {
290         // allocate payload field
291         uint8_t *temp = OICMalloc(info->payloadSize);
292         if (!temp)
293         {
294             OIC_LOG(ERROR, TAG, "CACloneInfo Out of memory");
295             goto exit;
296         }
297         memcpy(temp, info->payload, info->payloadSize);
298
299         // save the payload
300         clone->payload = temp;
301         clone->payloadSize = info->payloadSize;
302     }
303     clone->payloadFormat = info->payloadFormat;
304     clone->acceptFormat = info->acceptFormat;
305
306     if (info->resourceUri)
307     {
308         // allocate payload field
309         char *temp = OICStrdup(info->resourceUri);
310         if (!temp)
311         {
312             OIC_LOG(ERROR, TAG, "CACloneInfo Out of memory");
313             goto exit;
314         }
315
316         // save the resourceUri
317         clone->resourceUri = temp;
318     }
319
320 #ifdef ROUTING_GATEWAY
321     clone->skipRetransmission = info->skipRetransmission;
322 #endif
323
324     clone->messageId = info->messageId;
325     clone->type = info->type;
326
327     return CA_STATUS_OK;
328
329 exit:
330     CADestroyInfoInternal(clone);
331     return CA_MEMORY_ALLOC_FAILED;
332 }