Fixing Iotivity crash in catcpserver 57/221557/3
authorsamanway <samanway@linux-samanway.sa.corp.samsungelectronics.net>
Thu, 19 Dec 2019 12:44:45 +0000 (18:14 +0530)
committerPyun DoHyun <dh79.pyun@samsung.com>
Sun, 12 Jan 2020 23:06:16 +0000 (23:06 +0000)
- Memory was being freed in function CADisconnectTCPSession without checking NULL condition
- This caused crash in IoTivity, fix is patched
- Also, a potential dangling pointer issue fized in uqeue.c

https://github.sec.samsung.net/RS7-IOTIVITY/IoTivity/commit/ced81117e624a1f416df3f5ff226427b2d070515
(cherry-picked from ced81117e624a1f416df3f5ff226427b2d070515)

Change-Id: Ic6ede9df63aa8e5590c253f9430eeba401231347
Signed-off-by: samanway-dey <samanway.dey@samsung.com>
Signed-off-by: Sudipto <sudipto.bal@samsung.com>
resource/csdk/connectivity/common/src/uqueue.c
resource/csdk/connectivity/src/tcp_adapter/catcpserver.c

index 3124234..17d8298 100644 (file)
@@ -101,7 +101,8 @@ CAResult_t u_queue_add_element(u_queue_t *queue, u_queue_message_t *message)
 
             /* error in queue, free the allocated memory*/
             OICFree(element);
-            return CA_STATUS_FAILED;
+            element = NULL;
+           return CA_STATUS_FAILED;
         }
 
         queue->element = element;
index 2eb798c..3bfd807 100755 (executable)
@@ -1539,13 +1539,15 @@ CASocketFd_t CAConnectTCPSession(const CAEndpoint_t *endpoint)
 
 CAResult_t CADisconnectTCPSession(size_t index)
 {
+    oc_mutex_lock(g_mutexObjectList);
     CATCPSessionInfo_t *removedData = u_arraylist_remove(caglobals.tcp.svrlist, index);
     if (!removedData)
     {
         OIC_LOG(DEBUG, TAG, "there is no data to be removed");
+        oc_mutex_unlock(g_mutexObjectList);
         return CA_STATUS_OK;
     }
-
+    oc_mutex_unlock(g_mutexObjectList);
     // close the socket and remove session info in list.
     if (removedData->fd >= 0)
     {
@@ -1561,15 +1563,23 @@ CAResult_t CADisconnectTCPSession(size_t index)
             g_connectionCallback(&(removedData->sep.endpoint), false, removedData->isClient);
         }
     }
-    OICFree(removedData->data);
-    removedData->data = NULL;
-
-    OICFree(removedData->tlsdata);
-    removedData->tlsdata = NULL;
+    if (removedData->data)
+    {
+        OICFree(removedData->data);
+        removedData->data = NULL;
+    }
 
-    OICFree(removedData);
-    removedData = NULL;
+    if (removedData->tlsdata)
+    {
+        OICFree(removedData->tlsdata);
+        removedData->tlsdata = NULL;
+    }
 
+    if (removedData)
+    {
+        OICFree(removedData);
+        removedData = NULL;
+    }
     OIC_LOG(DEBUG, TAG, "data is removed from session list");
 
 #ifndef DISABLE_TCP_SERVER