mesh: Fix valgrind memory leak warnings 29/234229/1
authorBrian Gix <brian.gix@intel.com>
Sat, 16 May 2020 01:22:03 +0000 (18:22 -0700)
committerAbhay Agarwal <ay.agarwal@samsung.com>
Fri, 22 May 2020 04:23:44 +0000 (09:53 +0530)
These warnings are caused by not completely freeing memory allocations
at shutdown, and are not serious, but they make valgrind output cleaner.

Change-Id: Ib08bb727fee9ea6dccd5e484bcd5d2f969b80a19
Signed-off-by: Abhay Agarwal <ay.agarwal@samsung.com>
mesh/agent.c
mesh/mesh.c
mesh/net-keys.c
mesh/net-keys.h
mesh/net.c
mesh/net.h

index bb52f41..a06cc2b 100644 (file)
@@ -245,6 +245,7 @@ void mesh_agent_cleanup(void)
                return;
 
        l_queue_destroy(agents, agent_free);
+       agents = NULL;
 
 }
 
index 6cacaca..133a0c9 100644 (file)
@@ -26,6 +26,7 @@
 #include "mesh/mesh-io.h"
 #include "mesh/node.h"
 #include "mesh/net.h"
+#include "mesh/net-keys.h"
 #include "mesh/provision.h"
 #include "mesh/model.h"
 #include "mesh/dbus.h"
@@ -339,8 +340,11 @@ void mesh_cleanup(void)
        }
 
        l_queue_destroy(pending_queue, pending_request_exit);
+       mesh_agent_cleanup();
        node_cleanup_all();
        mesh_model_cleanup();
+       mesh_net_cleanup();
+       net_key_cleanup();
 
        l_dbus_object_remove_interface(dbus_get_bus(), BLUEZ_MESH_PATH,
                                                        MESH_NETWORK_INTERFACE);
index f7eb2ca..7dfabf9 100644 (file)
@@ -523,3 +523,9 @@ void net_key_beacon_disable(uint32_t id)
        l_timeout_remove(key->snb.timeout);
        key->snb.timeout = NULL;
 }
+
+void net_key_cleanup(void)
+{
+       l_queue_destroy(keys, l_free);
+       keys = NULL;
+}
index 9385e2c..4f480fc 100644 (file)
@@ -21,6 +21,7 @@
 #define KEY_REFRESH            0x01
 #define IV_INDEX_UPDATE                0x02
 
+void net_key_cleanup(void);
 bool net_key_confirm(uint32_t id, const uint8_t master[16]);
 bool net_key_retrieve(uint32_t id, uint8_t *master);
 uint32_t net_key_add(const uint8_t master[16]);
index bd36e2d..dcba34f 100644 (file)
@@ -679,8 +679,10 @@ struct mesh_net *mesh_net_new(struct mesh_node *node)
        return net;
 }
 
-void mesh_net_free(struct mesh_net *net)
+void mesh_net_free(void *user_data)
 {
+       struct mesh_net *net = user_data;
+
        if (!net)
                return;
 
@@ -699,6 +701,14 @@ void mesh_net_free(struct mesh_net *net)
        l_free(net);
 }
 
+void mesh_net_cleanup(void)
+{
+       l_queue_destroy(fast_cache, l_free);
+       fast_cache = NULL;
+       l_queue_destroy(nets, mesh_net_free);
+       nets = NULL;
+}
+
 bool mesh_net_set_seq_num(struct mesh_net *net, uint32_t seq)
 {
        if (!net)
index bfc8064..8646d5a 100644 (file)
@@ -265,7 +265,8 @@ typedef void (*mesh_net_status_func_t)(uint16_t remote, uint8_t status,
                                        void *user_data);
 
 struct mesh_net *mesh_net_new(struct mesh_node *node);
-void mesh_net_free(struct mesh_net *net);
+void mesh_net_free(void *net);
+void mesh_net_cleanup(void);
 void mesh_net_flush_msg_queues(struct mesh_net *net);
 void mesh_net_set_iv_index(struct mesh_net *net, uint32_t index, bool update);
 bool mesh_net_iv_index_update(struct mesh_net *net);