Imported Upstream version 1.2.0
[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_NOT_ACCEPTABLE:
119         case CA_REQUEST_ENTITY_INCOMPLETE:
120         case CA_REQUEST_ENTITY_TOO_LARGE:
121         case CA_INTERNAL_SERVER_ERROR:
122         case CA_RETRANSMIT_TIMEOUT:
123             break;
124         default:
125             OIC_LOG_V(ERROR, TAG, "Response code  %u is invalid", rep->result);
126             return NULL;
127     }
128
129     // allocate the response info structure.
130     CAResponseInfo_t *clone = (CAResponseInfo_t *) OICCalloc(1, sizeof(CAResponseInfo_t));
131     if (NULL == clone)
132     {
133         OIC_LOG(ERROR, TAG, "CACloneResponseInfo Out of memory");
134         return NULL;
135     }
136
137     CAResult_t result = CACloneInfo(&rep->info, &clone->info);
138     if(CA_STATUS_OK != result)
139     {
140         OIC_LOG(ERROR, TAG, "CACloneResponseInfo error in CACloneInfo");
141         CADestroyResponseInfoInternal(clone);
142         return NULL;
143     }
144
145     clone->isMulticast = rep->isMulticast;
146     clone->result = rep->result;
147     return clone;
148 }
149
150 CAEndpoint_t *CACreateEndpointObject(CATransportFlags_t flags,
151                                      CATransportAdapter_t adapter,
152                                      const char *address,
153                                      uint16_t port)
154 {
155     CAEndpoint_t *info = (CAEndpoint_t *)OICCalloc(1, sizeof(CAEndpoint_t));
156     if (NULL == info)
157     {
158         OIC_LOG(ERROR, TAG, "Memory allocation failed !");
159         return NULL;
160     }
161
162     if (address)
163     {
164         OICStrcpy(info->addr, sizeof(info->addr), address);
165         info->addr[MAX_ADDR_STR_SIZE_CA - 1] = '\0';
166     }
167     info->flags = flags;
168     info->adapter = adapter;
169     info->port = port;
170
171     return info;
172 }
173
174 void CAFreeEndpoint(CAEndpoint_t *rep)
175 {
176     OICFree(rep);
177 }
178
179 static void CADestroyInfoInternal(CAInfo_t *info)
180 {
181     // free token field
182     OICFree(info->token);
183     info->token = NULL;
184     info->tokenLength = 0;
185
186     // free options field
187     OICFree(info->options);
188     info->options = NULL;
189     info->numOptions = 0;
190
191     // free payload field
192     OICFree((char *) info->payload);
193     info->payload = NULL;
194     info->payloadSize = 0;
195
196     // free uri
197     OICFree(info->resourceUri);
198     info->resourceUri = NULL;
199 }
200
201 void CADestroyRequestInfoInternal(CARequestInfo_t *rep)
202 {
203     if (NULL == rep)
204     {
205         OIC_LOG(ERROR, TAG, "parameter is null");
206         return;
207     }
208
209     CADestroyInfoInternal(&rep->info);
210     OICFree(rep);
211 }
212
213 void CADestroyResponseInfoInternal(CAResponseInfo_t *rep)
214 {
215     if (NULL == rep)
216     {
217         OIC_LOG(ERROR, TAG, "parameter is null");
218         return;
219     }
220
221     CADestroyInfoInternal(&rep->info);
222     OICFree(rep);
223 }
224
225 void CADestroyErrorInfoInternal(CAErrorInfo_t *errorInfo)
226 {
227     if (NULL == errorInfo)
228     {
229         OIC_LOG(ERROR, TAG, "parameter is null");
230         return;
231     }
232
233     CADestroyInfoInternal(&errorInfo->info);
234     OICFree(errorInfo);
235 }
236
237 CAResult_t CACloneInfo(const CAInfo_t *info, CAInfo_t *clone)
238 {
239     if (!info || !clone)
240     {
241         OIC_LOG(ERROR, TAG, "input parameter invalid");
242         return CA_STATUS_INVALID_PARAM;
243     }
244
245     memset(clone, 0 , sizeof(CAInfo_t));
246
247     //Do not free clone. we cannot declare it const, as the content is modified
248     if ((info->token) && (0 < info->tokenLength))
249     {
250         // allocate token field
251         uint8_t len = info->tokenLength;
252
253         char *temp = (char *) OICMalloc(len * sizeof(char));
254         if (!temp)
255         {
256             OIC_LOG(ERROR, TAG, "CACloneInfo Out of memory");
257             goto exit;
258         }
259
260         memcpy(temp, info->token, len);
261         // save the token
262         clone->token = temp;
263         clone->tokenLength = len;
264     }
265
266     if (info->options && (0 < info->numOptions))
267     {
268         // save the options
269         clone->options =
270             (CAHeaderOption_t *) OICMalloc(sizeof(CAHeaderOption_t) * info->numOptions);
271
272         if (!clone->options)
273         {
274             OIC_LOG(ERROR, TAG, "CACloneInfo Out of memory");
275             goto exit;
276         }
277         memcpy(clone->options, info->options, sizeof(CAHeaderOption_t) * info->numOptions);
278         clone->numOptions = info->numOptions;
279     }
280
281     memcpy(&(clone->identity), &(info->identity), sizeof(info->identity));
282
283     if ((info->payload) && (0 < info->payloadSize))
284     {
285         // allocate payload field
286         uint8_t *temp = OICMalloc(info->payloadSize);
287         if (!temp)
288         {
289             OIC_LOG(ERROR, TAG, "CACloneInfo Out of memory");
290             goto exit;
291         }
292         memcpy(temp, info->payload, info->payloadSize);
293
294         // save the payload
295         clone->payload = temp;
296         clone->payloadSize = info->payloadSize;
297     }
298     clone->payloadFormat = info->payloadFormat;
299     clone->acceptFormat = info->acceptFormat;
300
301     if (info->resourceUri)
302     {
303         // allocate payload field
304         char *temp = OICStrdup(info->resourceUri);
305         if (!temp)
306         {
307             OIC_LOG(ERROR, TAG, "CACloneInfo Out of memory");
308             goto exit;
309         }
310
311         // save the resourceUri
312         clone->resourceUri = temp;
313     }
314
315 #ifdef ROUTING_GATEWAY
316     clone->skipRetransmission = info->skipRetransmission;
317 #endif
318
319     clone->messageId = info->messageId;
320     clone->type = info->type;
321
322     return CA_STATUS_OK;
323
324 exit:
325     CADestroyInfoInternal(clone);
326     return CA_MEMORY_ALLOC_FAILED;
327 }