1 /******************************************************************
3 * Copyright 2014 Samsung Electronics All Rights Reserved.
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 ******************************************************************/
23 #include "oic_malloc.h"
24 #include "oic_string.h"
25 #include "caremotehandler.h"
30 CAEndpoint_t *CACloneEndpoint(const CAEndpoint_t *rep)
34 OIC_LOG(ERROR, TAG, "parameter is null");
38 // allocate the remote end point structure.
39 CAEndpoint_t *clone = (CAEndpoint_t *)OICMalloc(sizeof (CAEndpoint_t));
42 OIC_LOG(ERROR, TAG, "CACloneRemoteEndpoint Out of memory");
50 CARequestInfo_t *CACloneRequestInfo(const CARequestInfo_t *rep)
54 OIC_LOG(ERROR, TAG, "parameter is null");
58 // allocate the request info structure.
59 CARequestInfo_t *clone = (CARequestInfo_t *) OICMalloc(sizeof(CARequestInfo_t));
62 OIC_LOG(ERROR, TAG, "CACloneRequestInfo Out of memory");
66 CAResult_t result = CACloneInfo(&rep->info, &clone->info);
67 if(CA_STATUS_OK != result)
69 OIC_LOG(ERROR, TAG, "CACloneRequestInfo error in CACloneInfo");
70 CADestroyRequestInfoInternal(clone);
74 clone->method = rep->method;
75 clone->isMulticast = rep->isMulticast;
80 CAResponseInfo_t *CACloneResponseInfo(const CAResponseInfo_t *rep)
84 OIC_LOG(ERROR, TAG, "Response pointer is NULL");
88 // check the result value of response info.
89 // Keep this check in sync with CAResponseResult_t
101 case CA_UNAUTHORIZED_REQ:
103 case CA_FORBIDDEN_REQ:
105 case CA_REQUEST_ENTITY_INCOMPLETE:
106 case CA_REQUEST_ENTITY_TOO_LARGE:
107 case CA_INTERNAL_SERVER_ERROR:
108 case CA_RETRANSMIT_TIMEOUT:
112 OIC_LOG_V(ERROR, TAG, "Response code %u is invalid", rep->result);
116 // allocate the response info structure.
117 CAResponseInfo_t *clone = (CAResponseInfo_t *) OICCalloc(1, sizeof(CAResponseInfo_t));
120 OIC_LOG(ERROR, TAG, "CACloneResponseInfo Out of memory");
124 CAResult_t result = CACloneInfo(&rep->info, &clone->info);
125 if(CA_STATUS_OK != result)
127 OIC_LOG(ERROR, TAG, "CACloneResponseInfo error in CACloneInfo");
128 CADestroyResponseInfoInternal(clone);
132 clone->result = rep->result;
136 CAEndpoint_t *CACreateEndpointObject(CATransportFlags_t flags,
137 CATransportAdapter_t adapter,
141 CAEndpoint_t *info = (CAEndpoint_t *)OICCalloc(1, sizeof(CAEndpoint_t));
144 OIC_LOG(ERROR, TAG, "Memory allocation failed !");
150 OICStrcpy(info->addr, sizeof(info->addr), address);
151 info->addr[MAX_ADDR_STR_SIZE_CA - 1] = '\0';
154 info->adapter = adapter;
160 void CAFreeEndpoint(CAEndpoint_t *rep)
165 static void CADestroyInfoInternal(CAInfo_t *info)
168 OICFree(info->token);
170 info->tokenLength = 0;
172 // free options field
173 OICFree(info->options);
174 info->options = NULL;
175 info->numOptions = 0;
177 // free payload field
178 OICFree((char *) info->payload);
179 info->payload = NULL;
180 info->payloadSize = 0;
183 OICFree(info->resourceUri);
184 info->resourceUri = NULL;
187 void CADestroyRequestInfoInternal(CARequestInfo_t *rep)
191 OIC_LOG(ERROR, TAG, "parameter is null");
195 CADestroyInfoInternal(&rep->info);
199 void CADestroyResponseInfoInternal(CAResponseInfo_t *rep)
203 OIC_LOG(ERROR, TAG, "parameter is null");
207 CADestroyInfoInternal(&rep->info);
211 void CADestroyErrorInfoInternal(CAErrorInfo_t *errorInfo)
213 if (NULL == errorInfo)
215 OIC_LOG(ERROR, TAG, "parameter is null");
219 CADestroyInfoInternal(&errorInfo->info);
223 CAResult_t CACloneInfo(const CAInfo_t *info, CAInfo_t *clone)
227 OIC_LOG(ERROR, TAG, "input parameter invalid");
228 return CA_STATUS_INVALID_PARAM;
231 memset(clone, 0 , sizeof(CAInfo_t));
233 //Do not free clone. we cannot declare it const, as the content is modified
234 if ((info->token) && (0 < info->tokenLength))
238 // allocate token field
239 uint8_t len = info->tokenLength;
241 temp = (char *) OICMalloc(len * sizeof(char));
244 OIC_LOG(ERROR, TAG, "CACloneInfo Out of memory");
245 return CA_MEMORY_ALLOC_FAILED;
248 memcpy(temp, info->token, len);
251 clone->tokenLength = len;
254 if (info->options && (0 < info->numOptions))
258 (CAHeaderOption_t *) OICMalloc(sizeof(CAHeaderOption_t) * info->numOptions);
262 OIC_LOG(ERROR, TAG, "CACloneInfo Out of memory");
263 CADestroyInfoInternal(clone);
264 return CA_MEMORY_ALLOC_FAILED;
266 memcpy(clone->options, info->options, sizeof(CAHeaderOption_t) * info->numOptions);
267 clone->numOptions = info->numOptions;
270 if ((info->payload) && (0 < info->payloadSize))
272 // allocate payload field
273 uint8_t *temp = OICMalloc(info->payloadSize);
276 OIC_LOG(ERROR, TAG, "CACloneInfo Out of memory");
277 CADestroyInfoInternal(clone);
278 return CA_MEMORY_ALLOC_FAILED;
280 memcpy(temp, info->payload, info->payloadSize);
283 clone->payload = temp;
284 clone->payloadSize = info->payloadSize;
287 if (info->resourceUri)
289 // allocate payload field
290 char *temp = OICStrdup(info->resourceUri);
293 OIC_LOG(ERROR, TAG, "CACloneInfo Out of memory");
294 CADestroyInfoInternal(clone);
295 return CA_MEMORY_ALLOC_FAILED;
298 // save the resourceUri
299 clone->resourceUri = temp;
302 clone->messageId = info->messageId;
303 clone->type = info->type;