|
|
17f14c |
From 0789fc7f227b557d9633402bf9971ff7a6360447 Mon Sep 17 00:00:00 2001
|
|
|
17f14c |
From: Tomas Bzatek <tbzatek@redhat.com>
|
|
|
17f14c |
Date: Wed, 24 Apr 2019 16:03:31 +0200
|
|
|
17f14c |
Subject: [PATCH 01/17] lvm: Fix some obvious memory leaks
|
|
|
17f14c |
|
|
|
17f14c |
---
|
|
|
17f14c |
src/plugins/lvm.c | 7 +++++++
|
|
|
17f14c |
1 file changed, 7 insertions(+)
|
|
|
17f14c |
|
|
|
17f14c |
diff --git a/src/plugins/lvm.c b/src/plugins/lvm.c
|
|
|
17f14c |
index 87ff5a4..a23f8fd 100644
|
|
|
17f14c |
--- a/src/plugins/lvm.c
|
|
|
17f14c |
+++ b/src/plugins/lvm.c
|
|
|
17f14c |
@@ -371,6 +371,7 @@ static GHashTable* parse_lvm_vars (const gchar *str, guint *num_items) {
|
|
|
17f14c |
if (g_strv_length (key_val) == 2) {
|
|
|
17f14c |
/* we only want to process valid lines (with the '=' character) */
|
|
|
17f14c |
g_hash_table_insert (table, key_val[0], key_val[1]);
|
|
|
17f14c |
+ g_free (key_val);
|
|
|
17f14c |
(*num_items)++;
|
|
|
17f14c |
} else
|
|
|
17f14c |
/* invalid line, just free key_val */
|
|
|
17f14c |
@@ -972,6 +973,7 @@ BDLVMPVdata* bd_lvm_pvinfo (const gchar *device, GError **error) {
|
|
|
17f14c |
if (table)
|
|
|
17f14c |
g_hash_table_destroy (table);
|
|
|
17f14c |
}
|
|
|
17f14c |
+ g_strfreev (lines);
|
|
|
17f14c |
|
|
|
17f14c |
/* getting here means no usable info was found */
|
|
|
17f14c |
g_set_error (error, BD_LVM_ERROR, BD_LVM_ERROR_PARSE,
|
|
|
17f14c |
@@ -1039,6 +1041,7 @@ BDLVMPVdata** bd_lvm_pvs (GError **error) {
|
|
|
17f14c |
if (pvs->len == 0) {
|
|
|
17f14c |
g_set_error (error, BD_LVM_ERROR, BD_LVM_ERROR_PARSE,
|
|
|
17f14c |
"Failed to parse information about PVs");
|
|
|
17f14c |
+ g_ptr_array_free (pvs, TRUE);
|
|
|
17f14c |
return NULL;
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
@@ -1247,6 +1250,7 @@ BDLVMVGdata* bd_lvm_vginfo (const gchar *vg_name, GError **error) {
|
|
|
17f14c |
if (table)
|
|
|
17f14c |
g_hash_table_destroy (table);
|
|
|
17f14c |
}
|
|
|
17f14c |
+ g_strfreev (lines);
|
|
|
17f14c |
|
|
|
17f14c |
/* getting here means no usable info was found */
|
|
|
17f14c |
g_set_error (error, BD_LVM_ERROR, BD_LVM_ERROR_PARSE,
|
|
|
17f14c |
@@ -1312,6 +1316,7 @@ BDLVMVGdata** bd_lvm_vgs (GError **error) {
|
|
|
17f14c |
if (vgs->len == 0) {
|
|
|
17f14c |
g_set_error (error, BD_LVM_ERROR, BD_LVM_ERROR_PARSE,
|
|
|
17f14c |
"Failed to parse information about VGs");
|
|
|
17f14c |
+ g_ptr_array_free (vgs, TRUE);
|
|
|
17f14c |
return NULL;
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
@@ -1641,6 +1646,7 @@ BDLVMLVdata* bd_lvm_lvinfo (const gchar *vg_name, const gchar *lv_name, GError *
|
|
|
17f14c |
if (table)
|
|
|
17f14c |
g_hash_table_destroy (table);
|
|
|
17f14c |
}
|
|
|
17f14c |
+ g_strfreev (lines);
|
|
|
17f14c |
|
|
|
17f14c |
/* getting here means no usable info was found */
|
|
|
17f14c |
g_set_error (error, BD_LVM_ERROR, BD_LVM_ERROR_PARSE,
|
|
|
17f14c |
@@ -1713,6 +1719,7 @@ BDLVMLVdata** bd_lvm_lvs (const gchar *vg_name, GError **error) {
|
|
|
17f14c |
if (lvs->len == 0) {
|
|
|
17f14c |
g_set_error (error, BD_LVM_ERROR, BD_LVM_ERROR_PARSE,
|
|
|
17f14c |
"Failed to parse information about LVs");
|
|
|
17f14c |
+ g_ptr_array_free (lvs, FALSE);
|
|
|
17f14c |
return NULL;
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
--
|
|
|
17f14c |
2.21.0
|
|
|
17f14c |
|
|
|
17f14c |
|
|
|
17f14c |
From 552173cfcb77d9ed3476b55e0170627998081912 Mon Sep 17 00:00:00 2001
|
|
|
17f14c |
From: Tomas Bzatek <tbzatek@redhat.com>
|
|
|
17f14c |
Date: Wed, 24 Apr 2019 16:27:07 +0200
|
|
|
17f14c |
Subject: [PATCH 02/17] lvm: Use g_ptr_array_free() for creating lists
|
|
|
17f14c |
|
|
|
17f14c |
No need to allocate separate array and copy elements one by one, use
|
|
|
17f14c |
g_ptr_array_free() instead and only add the trailing NULL element as
|
|
|
17f14c |
a regular item.
|
|
|
17f14c |
|
|
|
17f14c |
This fixes leaks of the array shell.
|
|
|
17f14c |
---
|
|
|
17f14c |
src/plugins/lvm.c | 88 ++++++++++++++++++++---------------------------
|
|
|
17f14c |
1 file changed, 37 insertions(+), 51 deletions(-)
|
|
|
17f14c |
|
|
|
17f14c |
diff --git a/src/plugins/lvm.c b/src/plugins/lvm.c
|
|
|
17f14c |
index a23f8fd..c2f2bf8 100644
|
|
|
17f14c |
--- a/src/plugins/lvm.c
|
|
|
17f14c |
+++ b/src/plugins/lvm.c
|
|
|
17f14c |
@@ -1001,24 +1001,25 @@ BDLVMPVdata** bd_lvm_pvs (GError **error) {
|
|
|
17f14c |
gchar **lines = NULL;
|
|
|
17f14c |
gchar **lines_p = NULL;
|
|
|
17f14c |
guint num_items;
|
|
|
17f14c |
- GPtrArray *pvs = g_ptr_array_new ();
|
|
|
17f14c |
+ GPtrArray *pvs;
|
|
|
17f14c |
BDLVMPVdata *pvdata = NULL;
|
|
|
17f14c |
- BDLVMPVdata **ret = NULL;
|
|
|
17f14c |
- guint64 i = 0;
|
|
|
17f14c |
|
|
|
17f14c |
- success = call_lvm_and_capture_output (args, NULL, &output, error);
|
|
|
17f14c |
+ pvs = g_ptr_array_new ();
|
|
|
17f14c |
|
|
|
17f14c |
+ success = call_lvm_and_capture_output (args, NULL, &output, error);
|
|
|
17f14c |
if (!success) {
|
|
|
17f14c |
if (g_error_matches (*error, BD_UTILS_EXEC_ERROR, BD_UTILS_EXEC_ERROR_NOOUT)) {
|
|
|
17f14c |
/* no output => no VGs, not an error */
|
|
|
17f14c |
g_clear_error (error);
|
|
|
17f14c |
- ret = g_new0 (BDLVMPVdata*, 1);
|
|
|
17f14c |
- ret[0] = NULL;
|
|
|
17f14c |
- return ret;
|
|
|
17f14c |
+ /* return an empty list */
|
|
|
17f14c |
+ g_ptr_array_add (pvs, NULL);
|
|
|
17f14c |
+ return (BDLVMPVdata **) g_ptr_array_free (pvs, FALSE);
|
|
|
17f14c |
}
|
|
|
17f14c |
- else
|
|
|
17f14c |
+ else {
|
|
|
17f14c |
/* the error is already populated from the call */
|
|
|
17f14c |
+ g_ptr_array_free (pvs, TRUE);
|
|
|
17f14c |
return NULL;
|
|
|
17f14c |
+ }
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
lines = g_strsplit (output, "\n", 0);
|
|
|
17f14c |
@@ -1045,15 +1046,9 @@ BDLVMPVdata** bd_lvm_pvs (GError **error) {
|
|
|
17f14c |
return NULL;
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
- /* now create the return value -- NULL-terminated array of BDLVMPVdata */
|
|
|
17f14c |
- ret = g_new0 (BDLVMPVdata*, pvs->len + 1);
|
|
|
17f14c |
- for (i=0; i < pvs->len; i++)
|
|
|
17f14c |
- ret[i] = (BDLVMPVdata*) g_ptr_array_index (pvs, i);
|
|
|
17f14c |
- ret[i] = NULL;
|
|
|
17f14c |
-
|
|
|
17f14c |
- g_ptr_array_free (pvs, FALSE);
|
|
|
17f14c |
-
|
|
|
17f14c |
- return ret;
|
|
|
17f14c |
+ /* returning NULL-terminated array of BDLVMPVdata */
|
|
|
17f14c |
+ g_ptr_array_add (pvs, NULL);
|
|
|
17f14c |
+ return (BDLVMPVdata **) g_ptr_array_free (pvs, FALSE);
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
/**
|
|
|
17f14c |
@@ -1277,23 +1272,25 @@ BDLVMVGdata** bd_lvm_vgs (GError **error) {
|
|
|
17f14c |
gchar **lines = NULL;
|
|
|
17f14c |
gchar **lines_p = NULL;
|
|
|
17f14c |
guint num_items;
|
|
|
17f14c |
- GPtrArray *vgs = g_ptr_array_new ();
|
|
|
17f14c |
+ GPtrArray *vgs;
|
|
|
17f14c |
BDLVMVGdata *vgdata = NULL;
|
|
|
17f14c |
- BDLVMVGdata **ret = NULL;
|
|
|
17f14c |
- guint64 i = 0;
|
|
|
17f14c |
+
|
|
|
17f14c |
+ vgs = g_ptr_array_new ();
|
|
|
17f14c |
|
|
|
17f14c |
success = call_lvm_and_capture_output (args, NULL, &output, error);
|
|
|
17f14c |
if (!success) {
|
|
|
17f14c |
if (g_error_matches (*error, BD_UTILS_EXEC_ERROR, BD_UTILS_EXEC_ERROR_NOOUT)) {
|
|
|
17f14c |
/* no output => no VGs, not an error */
|
|
|
17f14c |
g_clear_error (error);
|
|
|
17f14c |
- ret = g_new0 (BDLVMVGdata*, 1);
|
|
|
17f14c |
- ret[0] = NULL;
|
|
|
17f14c |
- return ret;
|
|
|
17f14c |
+ /* return an empty list */
|
|
|
17f14c |
+ g_ptr_array_add (vgs, NULL);
|
|
|
17f14c |
+ return (BDLVMVGdata **) g_ptr_array_free (vgs, FALSE);
|
|
|
17f14c |
}
|
|
|
17f14c |
- else
|
|
|
17f14c |
+ else {
|
|
|
17f14c |
/* the error is already populated from the call */
|
|
|
17f14c |
+ g_ptr_array_free (vgs, TRUE);
|
|
|
17f14c |
return NULL;
|
|
|
17f14c |
+ }
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
lines = g_strsplit (output, "\n", 0);
|
|
|
17f14c |
@@ -1320,15 +1317,9 @@ BDLVMVGdata** bd_lvm_vgs (GError **error) {
|
|
|
17f14c |
return NULL;
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
- /* now create the return value -- NULL-terminated array of BDLVMVGdata */
|
|
|
17f14c |
- ret = g_new0 (BDLVMVGdata*, vgs->len + 1);
|
|
|
17f14c |
- for (i=0; i < vgs->len; i++)
|
|
|
17f14c |
- ret[i] = (BDLVMVGdata*) g_ptr_array_index (vgs, i);
|
|
|
17f14c |
- ret[i] = NULL;
|
|
|
17f14c |
-
|
|
|
17f14c |
- g_ptr_array_free (vgs, FALSE);
|
|
|
17f14c |
-
|
|
|
17f14c |
- return ret;
|
|
|
17f14c |
+ /* returning NULL-terminated array of BDLVMVGdata */
|
|
|
17f14c |
+ g_ptr_array_add (vgs, NULL);
|
|
|
17f14c |
+ return (BDLVMVGdata **) g_ptr_array_free (vgs, FALSE);
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
/**
|
|
|
17f14c |
@@ -1676,27 +1667,28 @@ BDLVMLVdata** bd_lvm_lvs (const gchar *vg_name, GError **error) {
|
|
|
17f14c |
gchar **lines = NULL;
|
|
|
17f14c |
gchar **lines_p = NULL;
|
|
|
17f14c |
guint num_items;
|
|
|
17f14c |
- GPtrArray *lvs = g_ptr_array_new ();
|
|
|
17f14c |
+ GPtrArray *lvs;
|
|
|
17f14c |
BDLVMLVdata *lvdata = NULL;
|
|
|
17f14c |
- BDLVMLVdata **ret = NULL;
|
|
|
17f14c |
- guint64 i = 0;
|
|
|
17f14c |
+
|
|
|
17f14c |
+ lvs = g_ptr_array_new ();
|
|
|
17f14c |
|
|
|
17f14c |
if (vg_name)
|
|
|
17f14c |
args[9] = vg_name;
|
|
|
17f14c |
|
|
|
17f14c |
success = call_lvm_and_capture_output (args, NULL, &output, error);
|
|
|
17f14c |
-
|
|
|
17f14c |
if (!success) {
|
|
|
17f14c |
if (g_error_matches (*error, BD_UTILS_EXEC_ERROR, BD_UTILS_EXEC_ERROR_NOOUT)) {
|
|
|
17f14c |
/* no output => no LVs, not an error */
|
|
|
17f14c |
g_clear_error (error);
|
|
|
17f14c |
- ret = g_new0 (BDLVMLVdata*, 1);
|
|
|
17f14c |
- ret[0] = NULL;
|
|
|
17f14c |
- return ret;
|
|
|
17f14c |
+ /* return an empty list */
|
|
|
17f14c |
+ g_ptr_array_add (lvs, NULL);
|
|
|
17f14c |
+ return (BDLVMLVdata **) g_ptr_array_free (lvs, FALSE);
|
|
|
17f14c |
}
|
|
|
17f14c |
- else
|
|
|
17f14c |
+ else {
|
|
|
17f14c |
/* the error is already populated from the call */
|
|
|
17f14c |
+ g_ptr_array_free (lvs, TRUE);
|
|
|
17f14c |
return NULL;
|
|
|
17f14c |
+ }
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
lines = g_strsplit (output, "\n", 0);
|
|
|
17f14c |
@@ -1719,19 +1711,13 @@ BDLVMLVdata** bd_lvm_lvs (const gchar *vg_name, GError **error) {
|
|
|
17f14c |
if (lvs->len == 0) {
|
|
|
17f14c |
g_set_error (error, BD_LVM_ERROR, BD_LVM_ERROR_PARSE,
|
|
|
17f14c |
"Failed to parse information about LVs");
|
|
|
17f14c |
- g_ptr_array_free (lvs, FALSE);
|
|
|
17f14c |
+ g_ptr_array_free (lvs, TRUE);
|
|
|
17f14c |
return NULL;
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
- /* now create the return value -- NULL-terminated array of BDLVMLVdata */
|
|
|
17f14c |
- ret = g_new0 (BDLVMLVdata*, lvs->len + 1);
|
|
|
17f14c |
- for (i=0; i < lvs->len; i++)
|
|
|
17f14c |
- ret[i] = (BDLVMLVdata*) g_ptr_array_index (lvs, i);
|
|
|
17f14c |
- ret[i] = NULL;
|
|
|
17f14c |
-
|
|
|
17f14c |
- g_ptr_array_free (lvs, FALSE);
|
|
|
17f14c |
-
|
|
|
17f14c |
- return ret;
|
|
|
17f14c |
+ /* returning NULL-terminated array of BDLVMLVdata */
|
|
|
17f14c |
+ g_ptr_array_add (lvs, NULL);
|
|
|
17f14c |
+ return (BDLVMLVdata **) g_ptr_array_free (lvs, FALSE);
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
/**
|
|
|
17f14c |
--
|
|
|
17f14c |
2.21.0
|
|
|
17f14c |
|
|
|
17f14c |
|
|
|
17f14c |
From fa48a6e64181e7becadbad8202be6de1829b4b9b Mon Sep 17 00:00:00 2001
|
|
|
17f14c |
From: Tomas Bzatek <tbzatek@redhat.com>
|
|
|
17f14c |
Date: Wed, 24 Apr 2019 16:31:52 +0200
|
|
|
17f14c |
Subject: [PATCH 03/17] lvm: Fix leaking BDLVMPVdata.vg_uuid
|
|
|
17f14c |
|
|
|
17f14c |
---
|
|
|
17f14c |
src/lib/plugin_apis/lvm.api | 2 ++
|
|
|
17f14c |
src/plugins/lvm.c | 2 ++
|
|
|
17f14c |
2 files changed, 4 insertions(+)
|
|
|
17f14c |
|
|
|
17f14c |
diff --git a/src/lib/plugin_apis/lvm.api b/src/lib/plugin_apis/lvm.api
|
|
|
17f14c |
index ce47c51..bffe2ce 100644
|
|
|
17f14c |
--- a/src/lib/plugin_apis/lvm.api
|
|
|
17f14c |
+++ b/src/lib/plugin_apis/lvm.api
|
|
|
17f14c |
@@ -114,6 +114,7 @@ BDLVMPVdata* bd_lvm_pvdata_copy (BDLVMPVdata *data) {
|
|
|
17f14c |
new_data->pv_size = data->pv_size;
|
|
|
17f14c |
new_data->pe_start = data->pe_start;
|
|
|
17f14c |
new_data->vg_name = g_strdup (data->vg_name);
|
|
|
17f14c |
+ new_data->vg_uuid = g_strdup (data->vg_uuid);
|
|
|
17f14c |
new_data->vg_size = data->vg_size;
|
|
|
17f14c |
new_data->vg_free = data->vg_free;
|
|
|
17f14c |
new_data->vg_extent_size = data->vg_extent_size;
|
|
|
17f14c |
@@ -136,6 +137,7 @@ void bd_lvm_pvdata_free (BDLVMPVdata *data) {
|
|
|
17f14c |
g_free (data->pv_name);
|
|
|
17f14c |
g_free (data->pv_uuid);
|
|
|
17f14c |
g_free (data->vg_name);
|
|
|
17f14c |
+ g_free (data->vg_uuid);
|
|
|
17f14c |
g_free (data);
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
diff --git a/src/plugins/lvm.c b/src/plugins/lvm.c
|
|
|
17f14c |
index c2f2bf8..a6d738d 100644
|
|
|
17f14c |
--- a/src/plugins/lvm.c
|
|
|
17f14c |
+++ b/src/plugins/lvm.c
|
|
|
17f14c |
@@ -63,6 +63,7 @@ BDLVMPVdata* bd_lvm_pvdata_copy (BDLVMPVdata *data) {
|
|
|
17f14c |
new_data->pv_size = data->pv_size;
|
|
|
17f14c |
new_data->pe_start = data->pe_start;
|
|
|
17f14c |
new_data->vg_name = g_strdup (data->vg_name);
|
|
|
17f14c |
+ new_data->vg_uuid = g_strdup (data->vg_uuid);
|
|
|
17f14c |
new_data->vg_size = data->vg_size;
|
|
|
17f14c |
new_data->vg_free = data->vg_free;
|
|
|
17f14c |
new_data->vg_extent_size = data->vg_extent_size;
|
|
|
17f14c |
@@ -80,6 +81,7 @@ void bd_lvm_pvdata_free (BDLVMPVdata *data) {
|
|
|
17f14c |
g_free (data->pv_name);
|
|
|
17f14c |
g_free (data->pv_uuid);
|
|
|
17f14c |
g_free (data->vg_name);
|
|
|
17f14c |
+ g_free (data->vg_uuid);
|
|
|
17f14c |
g_free (data);
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
--
|
|
|
17f14c |
2.21.0
|
|
|
17f14c |
|
|
|
17f14c |
|
|
|
17f14c |
From 1b44335a35d8d886f3a251f1c51d1f1039651d4e Mon Sep 17 00:00:00 2001
|
|
|
17f14c |
From: Tomas Bzatek <tbzatek@redhat.com>
|
|
|
17f14c |
Date: Wed, 24 Apr 2019 18:36:21 +0200
|
|
|
17f14c |
Subject: [PATCH 04/17] exec: Fix some memory leaks
|
|
|
17f14c |
|
|
|
17f14c |
---
|
|
|
17f14c |
src/utils/exec.c | 10 ++++++++--
|
|
|
17f14c |
1 file changed, 8 insertions(+), 2 deletions(-)
|
|
|
17f14c |
|
|
|
17f14c |
diff --git a/src/utils/exec.c b/src/utils/exec.c
|
|
|
17f14c |
index 28635a1..b1ca436 100644
|
|
|
17f14c |
--- a/src/utils/exec.c
|
|
|
17f14c |
+++ b/src/utils/exec.c
|
|
|
17f14c |
@@ -228,8 +228,12 @@ gboolean bd_utils_exec_and_report_status_error (const gchar **argv, const BDExtr
|
|
|
17f14c |
log_out (task_id, stdout_data, stderr_data);
|
|
|
17f14c |
log_done (task_id, *status);
|
|
|
17f14c |
|
|
|
17f14c |
+ g_free (args);
|
|
|
17f14c |
+
|
|
|
17f14c |
if (!success) {
|
|
|
17f14c |
/* error is already populated from the call */
|
|
|
17f14c |
+ g_free (stdout_data);
|
|
|
17f14c |
+ g_free (stderr_data);
|
|
|
17f14c |
return FALSE;
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
@@ -247,7 +251,6 @@ gboolean bd_utils_exec_and_report_status_error (const gchar **argv, const BDExtr
|
|
|
17f14c |
return FALSE;
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
- g_free (args);
|
|
|
17f14c |
g_free (stdout_data);
|
|
|
17f14c |
g_free (stderr_data);
|
|
|
17f14c |
return TRUE;
|
|
|
17f14c |
@@ -398,14 +401,17 @@ gboolean bd_utils_exec_and_report_progress (const gchar **argv, const BDExtraArg
|
|
|
17f14c |
G_SPAWN_DEFAULT|G_SPAWN_SEARCH_PATH|G_SPAWN_DO_NOT_REAP_CHILD,
|
|
|
17f14c |
NULL, NULL, &pid, NULL, &out_fd, &err_fd, error);
|
|
|
17f14c |
|
|
|
17f14c |
- if (!ret)
|
|
|
17f14c |
+ if (!ret) {
|
|
|
17f14c |
/* error is already populated */
|
|
|
17f14c |
+ g_free (args);
|
|
|
17f14c |
return FALSE;
|
|
|
17f14c |
+ }
|
|
|
17f14c |
|
|
|
17f14c |
args_str = g_strjoinv (" ", args ? (gchar **) args : (gchar **) argv);
|
|
|
17f14c |
msg = g_strdup_printf ("Started '%s'", args_str);
|
|
|
17f14c |
progress_id = bd_utils_report_started (msg);
|
|
|
17f14c |
g_free (args_str);
|
|
|
17f14c |
+ g_free (args);
|
|
|
17f14c |
g_free (msg);
|
|
|
17f14c |
|
|
|
17f14c |
out_pipe = g_io_channel_unix_new (out_fd);
|
|
|
17f14c |
--
|
|
|
17f14c |
2.21.0
|
|
|
17f14c |
|
|
|
17f14c |
|
|
|
17f14c |
From e943381bf7c1aeb27f6e308f95e3f64436f25247 Mon Sep 17 00:00:00 2001
|
|
|
17f14c |
From: Tomas Bzatek <tbzatek@redhat.com>
|
|
|
17f14c |
Date: Thu, 9 May 2019 15:39:24 +0200
|
|
|
17f14c |
Subject: [PATCH 05/17] mdraid: Fix g_strsplit() leaks
|
|
|
17f14c |
|
|
|
17f14c |
---
|
|
|
17f14c |
src/plugins/mdraid.c | 5 +++++
|
|
|
17f14c |
1 file changed, 5 insertions(+)
|
|
|
17f14c |
|
|
|
17f14c |
diff --git a/src/plugins/mdraid.c b/src/plugins/mdraid.c
|
|
|
17f14c |
index 6465dfe..178379e 100644
|
|
|
17f14c |
--- a/src/plugins/mdraid.c
|
|
|
17f14c |
+++ b/src/plugins/mdraid.c
|
|
|
17f14c |
@@ -255,10 +255,15 @@ static GHashTable* parse_mdadm_vars (const gchar *str, const gchar *item_sep, co
|
|
|
17f14c |
/* mdadm --examine output for a set being migrated */
|
|
|
17f14c |
vals = g_strsplit (key_val[1], "<--", 2);
|
|
|
17f14c |
g_hash_table_insert (table, g_strstrip (key_val[0]), g_strstrip (vals[0]));
|
|
|
17f14c |
+ g_free (key_val[1]);
|
|
|
17f14c |
g_free (vals[1]);
|
|
|
17f14c |
+ g_free (vals);
|
|
|
17f14c |
} else {
|
|
|
17f14c |
g_hash_table_insert (table, g_strstrip (key_val[0]), g_strstrip (key_val[1]));
|
|
|
17f14c |
}
|
|
|
17f14c |
+ g_free (key_val);
|
|
|
17f14c |
+ } else {
|
|
|
17f14c |
+ g_strfreev (key_val);
|
|
|
17f14c |
}
|
|
|
17f14c |
(*num_items)++;
|
|
|
17f14c |
} else
|
|
|
17f14c |
--
|
|
|
17f14c |
2.21.0
|
|
|
17f14c |
|
|
|
17f14c |
|
|
|
17f14c |
From 21fba5737901b6fa82b3c04bb9058ac650b8e54d Mon Sep 17 00:00:00 2001
|
|
|
17f14c |
From: Tomas Bzatek <tbzatek@redhat.com>
|
|
|
17f14c |
Date: Thu, 9 May 2019 15:39:39 +0200
|
|
|
17f14c |
Subject: [PATCH 06/17] s390: Fix g_strsplit() leaks
|
|
|
17f14c |
|
|
|
17f14c |
---
|
|
|
17f14c |
src/plugins/s390.c | 8 ++------
|
|
|
17f14c |
1 file changed, 2 insertions(+), 6 deletions(-)
|
|
|
17f14c |
|
|
|
17f14c |
diff --git a/src/plugins/s390.c b/src/plugins/s390.c
|
|
|
17f14c |
index dcb5bc9..ac12b04 100644
|
|
|
17f14c |
--- a/src/plugins/s390.c
|
|
|
17f14c |
+++ b/src/plugins/s390.c
|
|
|
17f14c |
@@ -775,8 +775,6 @@ gboolean bd_s390_zfcp_scsi_offline(const gchar *devno, const gchar *wwpn, const
|
|
|
17f14c |
gchar *hba_path = NULL;
|
|
|
17f14c |
gchar *wwpn_path = NULL;
|
|
|
17f14c |
gchar *lun_path = NULL;
|
|
|
17f14c |
- gchar *host = NULL;
|
|
|
17f14c |
- gchar *fcplun = NULL;
|
|
|
17f14c |
gchar *scsidev = NULL;
|
|
|
17f14c |
gchar *fcpsysfs = NULL;
|
|
|
17f14c |
gchar *scsidel = NULL;
|
|
|
17f14c |
@@ -804,13 +802,11 @@ gboolean bd_s390_zfcp_scsi_offline(const gchar *devno, const gchar *wwpn, const
|
|
|
17f14c |
/* tokenize line and assign certain values we'll need later */
|
|
|
17f14c |
tokens = g_strsplit (line, delim, 8);
|
|
|
17f14c |
|
|
|
17f14c |
- host = tokens[1];
|
|
|
17f14c |
- fcplun = tokens[7];
|
|
|
17f14c |
-
|
|
|
17f14c |
- scsidev = g_strdup_printf ("%s:%s:%s:%s", host + 4, channel, devid, fcplun);
|
|
|
17f14c |
+ scsidev = g_strdup_printf ("%s:%s:%s:%s", tokens[1] /* host */ + 4, channel, devid, tokens[7] /* fcplun */);
|
|
|
17f14c |
scsidev = g_strchomp (scsidev);
|
|
|
17f14c |
fcpsysfs = g_strdup_printf ("%s/%s", scsidevsysfs, scsidev);
|
|
|
17f14c |
fcpsysfs = g_strchomp (fcpsysfs);
|
|
|
17f14c |
+ g_strfreev (tokens);
|
|
|
17f14c |
|
|
|
17f14c |
/* get HBA path value (same as device number) */
|
|
|
17f14c |
hba_path = g_strdup_printf ("%s/hba_id", fcpsysfs);
|
|
|
17f14c |
--
|
|
|
17f14c |
2.21.0
|
|
|
17f14c |
|
|
|
17f14c |
|
|
|
17f14c |
From 9e751457a983a4ba07fcd285b15af29aad051b25 Mon Sep 17 00:00:00 2001
|
|
|
17f14c |
From: Tomas Bzatek <tbzatek@redhat.com>
|
|
|
17f14c |
Date: Thu, 9 May 2019 16:10:11 +0200
|
|
|
17f14c |
Subject: [PATCH 07/17] ext: Fix g_strsplit() leaks
|
|
|
17f14c |
|
|
|
17f14c |
---
|
|
|
17f14c |
src/plugins/fs/ext.c | 1 +
|
|
|
17f14c |
1 file changed, 1 insertion(+)
|
|
|
17f14c |
|
|
|
17f14c |
diff --git a/src/plugins/fs/ext.c b/src/plugins/fs/ext.c
|
|
|
17f14c |
index 03ac1c5..98f2861 100644
|
|
|
17f14c |
--- a/src/plugins/fs/ext.c
|
|
|
17f14c |
+++ b/src/plugins/fs/ext.c
|
|
|
17f14c |
@@ -534,6 +534,7 @@ static GHashTable* parse_output_vars (const gchar *str, const gchar *item_sep, c
|
|
|
17f14c |
if (g_strv_length (key_val) == 2) {
|
|
|
17f14c |
/* we only want to process valid lines (with the separator) */
|
|
|
17f14c |
g_hash_table_insert (table, g_strstrip (key_val[0]), g_strstrip (key_val[1]));
|
|
|
17f14c |
+ g_free (key_val);
|
|
|
17f14c |
(*num_items)++;
|
|
|
17f14c |
} else
|
|
|
17f14c |
/* invalid line, just free key_val */
|
|
|
17f14c |
--
|
|
|
17f14c |
2.21.0
|
|
|
17f14c |
|
|
|
17f14c |
|
|
|
17f14c |
From bb774818d210f7159ed0b7db11c1a8490ac7ee0f Mon Sep 17 00:00:00 2001
|
|
|
17f14c |
From: Tomas Bzatek <tbzatek@redhat.com>
|
|
|
17f14c |
Date: Thu, 9 May 2019 16:15:36 +0200
|
|
|
17f14c |
Subject: [PATCH 08/17] ext: Fix g_match_info_fetch() leaks
|
|
|
17f14c |
|
|
|
17f14c |
---
|
|
|
17f14c |
src/plugins/fs/ext.c | 16 +++++++++++++---
|
|
|
17f14c |
1 file changed, 13 insertions(+), 3 deletions(-)
|
|
|
17f14c |
|
|
|
17f14c |
diff --git a/src/plugins/fs/ext.c b/src/plugins/fs/ext.c
|
|
|
17f14c |
index 98f2861..91b0ff5 100644
|
|
|
17f14c |
--- a/src/plugins/fs/ext.c
|
|
|
17f14c |
+++ b/src/plugins/fs/ext.c
|
|
|
17f14c |
@@ -96,13 +96,23 @@ static gint8 filter_line_fsck (const gchar * line, guint8 total_stages, GError *
|
|
|
17f14c |
guint8 stage;
|
|
|
17f14c |
gint64 val_cur;
|
|
|
17f14c |
gint64 val_total;
|
|
|
17f14c |
+ gchar *s;
|
|
|
17f14c |
|
|
|
17f14c |
/* The output_regex ensures we have a number in these matches, so we can skip
|
|
|
17f14c |
* tests for conversion errors.
|
|
|
17f14c |
*/
|
|
|
17f14c |
- stage = (guint8) g_ascii_strtoull (g_match_info_fetch (match_info, 1), (char **)NULL, 10);
|
|
|
17f14c |
- val_cur = g_ascii_strtoll (g_match_info_fetch (match_info, 2), (char **)NULL, 10);
|
|
|
17f14c |
- val_total = g_ascii_strtoll (g_match_info_fetch (match_info, 3), (char **)NULL, 10);
|
|
|
17f14c |
+ s = g_match_info_fetch (match_info, 1);
|
|
|
17f14c |
+ stage = (guint8) g_ascii_strtoull (s, (char **)NULL, 10);
|
|
|
17f14c |
+ g_free (s);
|
|
|
17f14c |
+
|
|
|
17f14c |
+ s = g_match_info_fetch (match_info, 2);
|
|
|
17f14c |
+ val_cur = g_ascii_strtoll (s, (char **)NULL, 10);
|
|
|
17f14c |
+ g_free (s);
|
|
|
17f14c |
+
|
|
|
17f14c |
+ s = g_match_info_fetch (match_info, 3);
|
|
|
17f14c |
+ val_total = g_ascii_strtoll (s, (char **)NULL, 10);
|
|
|
17f14c |
+ g_free (s);
|
|
|
17f14c |
+
|
|
|
17f14c |
perc = compute_percents (stage, total_stages, val_cur, val_total);
|
|
|
17f14c |
} else {
|
|
|
17f14c |
g_match_info_free (match_info);
|
|
|
17f14c |
--
|
|
|
17f14c |
2.21.0
|
|
|
17f14c |
|
|
|
17f14c |
|
|
|
17f14c |
From 70779be74507b5e8a3d4d6c5a226906186844f0b Mon Sep 17 00:00:00 2001
|
|
|
17f14c |
From: Tomas Bzatek <tbzatek@redhat.com>
|
|
|
17f14c |
Date: Thu, 9 May 2019 16:16:06 +0200
|
|
|
17f14c |
Subject: [PATCH 09/17] kbd: Fix g_match_info_fetch() leaks
|
|
|
17f14c |
|
|
|
17f14c |
---
|
|
|
17f14c |
src/plugins/kbd.c | 6 +++++-
|
|
|
17f14c |
1 file changed, 5 insertions(+), 1 deletion(-)
|
|
|
17f14c |
|
|
|
17f14c |
diff --git a/src/plugins/kbd.c b/src/plugins/kbd.c
|
|
|
17f14c |
index 33208c7..a2908ec 100644
|
|
|
17f14c |
--- a/src/plugins/kbd.c
|
|
|
17f14c |
+++ b/src/plugins/kbd.c
|
|
|
17f14c |
@@ -782,7 +782,11 @@ gboolean bd_kbd_bcache_create (const gchar *backing_device, const gchar *cache_d
|
|
|
17f14c |
for (i=0; lines[i] && n < 2; i++) {
|
|
|
17f14c |
success = g_regex_match (regex, lines[i], 0, &match_info);
|
|
|
17f14c |
if (success) {
|
|
|
17f14c |
- strncpy (device_uuid[n], g_match_info_fetch (match_info, 1), 63);
|
|
|
17f14c |
+ gchar *s;
|
|
|
17f14c |
+
|
|
|
17f14c |
+ s = g_match_info_fetch (match_info, 1);
|
|
|
17f14c |
+ strncpy (device_uuid[n], s, 63);
|
|
|
17f14c |
+ g_free (s);
|
|
|
17f14c |
device_uuid[n][63] = '\0';
|
|
|
17f14c |
n++;
|
|
|
17f14c |
g_match_info_free (match_info);
|
|
|
17f14c |
--
|
|
|
17f14c |
2.21.0
|
|
|
17f14c |
|
|
|
17f14c |
|
|
|
17f14c |
From 9c364521d3a7b0b8c04061003f16d73eee8778c8 Mon Sep 17 00:00:00 2001
|
|
|
17f14c |
From: Tomas Bzatek <tbzatek@redhat.com>
|
|
|
17f14c |
Date: Thu, 9 May 2019 17:16:37 +0200
|
|
|
17f14c |
Subject: [PATCH 10/17] part: Fix leaking objects
|
|
|
17f14c |
|
|
|
17f14c |
---
|
|
|
17f14c |
src/plugins/part.c | 2 ++
|
|
|
17f14c |
1 file changed, 2 insertions(+)
|
|
|
17f14c |
|
|
|
17f14c |
diff --git a/src/plugins/part.c b/src/plugins/part.c
|
|
|
17f14c |
index 31c6591..cf62366 100644
|
|
|
17f14c |
--- a/src/plugins/part.c
|
|
|
17f14c |
+++ b/src/plugins/part.c
|
|
|
17f14c |
@@ -913,6 +913,8 @@ static gboolean resize_part (PedPartition *part, PedDevice *dev, PedDisk *disk,
|
|
|
17f14c |
return FALSE;
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
+ ped_geometry_destroy (geom);
|
|
|
17f14c |
+ ped_constraint_destroy (constr);
|
|
|
17f14c |
finish_alignment_constraint (disk, orig_flag_state);
|
|
|
17f14c |
return TRUE;
|
|
|
17f14c |
}
|
|
|
17f14c |
--
|
|
|
17f14c |
2.21.0
|
|
|
17f14c |
|
|
|
17f14c |
|
|
|
17f14c |
From 2d24ea310fe65b020d7ef3450057bde1383910aa Mon Sep 17 00:00:00 2001
|
|
|
17f14c |
From: Tomas Bzatek <tbzatek@redhat.com>
|
|
|
17f14c |
Date: Thu, 9 May 2019 17:17:01 +0200
|
|
|
17f14c |
Subject: [PATCH 11/17] ext: Fix leaking string
|
|
|
17f14c |
|
|
|
17f14c |
---
|
|
|
17f14c |
src/plugins/fs/ext.c | 4 +++-
|
|
|
17f14c |
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
17f14c |
|
|
|
17f14c |
diff --git a/src/plugins/fs/ext.c b/src/plugins/fs/ext.c
|
|
|
17f14c |
index 91b0ff5..fbec90a 100644
|
|
|
17f14c |
--- a/src/plugins/fs/ext.c
|
|
|
17f14c |
+++ b/src/plugins/fs/ext.c
|
|
|
17f14c |
@@ -560,8 +560,10 @@ static BDFSExtInfo* get_ext_info_from_table (GHashTable *table, gboolean free_ta
|
|
|
17f14c |
gchar *value = NULL;
|
|
|
17f14c |
|
|
|
17f14c |
ret->label = g_strdup ((gchar*) g_hash_table_lookup (table, "Filesystem volume name"));
|
|
|
17f14c |
- if ((!ret->label) || (g_strcmp0 (ret->label, "<none>") == 0))
|
|
|
17f14c |
+ if (!ret->label || g_strcmp0 (ret->label, "<none>") == 0) {
|
|
|
17f14c |
+ g_free (ret->label);
|
|
|
17f14c |
ret->label = g_strdup ("");
|
|
|
17f14c |
+ }
|
|
|
17f14c |
ret->uuid = g_strdup ((gchar*) g_hash_table_lookup (table, "Filesystem UUID"));
|
|
|
17f14c |
ret->state = g_strdup ((gchar*) g_hash_table_lookup (table, "Filesystem state"));
|
|
|
17f14c |
|
|
|
17f14c |
--
|
|
|
17f14c |
2.21.0
|
|
|
17f14c |
|
|
|
17f14c |
|
|
|
17f14c |
From 957b4b84eeaacab612ea5e267dc37b194f9d65f3 Mon Sep 17 00:00:00 2001
|
|
|
17f14c |
From: Tomas Bzatek <tbzatek@redhat.com>
|
|
|
17f14c |
Date: Thu, 9 May 2019 18:23:46 +0200
|
|
|
17f14c |
Subject: [PATCH 12/17] part: Fix leaking string in args
|
|
|
17f14c |
|
|
|
17f14c |
---
|
|
|
17f14c |
src/plugins/part.c | 5 ++---
|
|
|
17f14c |
1 file changed, 2 insertions(+), 3 deletions(-)
|
|
|
17f14c |
|
|
|
17f14c |
diff --git a/src/plugins/part.c b/src/plugins/part.c
|
|
|
17f14c |
index cf62366..8b2285f 100644
|
|
|
17f14c |
--- a/src/plugins/part.c
|
|
|
17f14c |
+++ b/src/plugins/part.c
|
|
|
17f14c |
@@ -373,10 +373,9 @@ static gchar* get_part_type_guid_and_gpt_flags (const gchar *device, int part_nu
|
|
|
17f14c |
|
|
|
17f14c |
args[1] = g_strdup_printf ("-i%d", part_num);
|
|
|
17f14c |
success = bd_utils_exec_and_capture_output (args, NULL, &output, error);
|
|
|
17f14c |
- if (!success) {
|
|
|
17f14c |
- g_free ((gchar *) args[1]);
|
|
|
17f14c |
+ g_free ((gchar *) args[1]);
|
|
|
17f14c |
+ if (!success)
|
|
|
17f14c |
return FALSE;
|
|
|
17f14c |
- }
|
|
|
17f14c |
|
|
|
17f14c |
lines = g_strsplit (output, "\n", 0);
|
|
|
17f14c |
g_free (output);
|
|
|
17f14c |
--
|
|
|
17f14c |
2.21.0
|
|
|
17f14c |
|
|
|
17f14c |
|
|
|
17f14c |
From 6613cc6b28766607801f95b54bcbc872de02412b Mon Sep 17 00:00:00 2001
|
|
|
17f14c |
From: Tomas Bzatek <tbzatek@redhat.com>
|
|
|
17f14c |
Date: Thu, 16 May 2019 12:46:56 +0200
|
|
|
17f14c |
Subject: [PATCH 13/17] mdraid: Fix leaking error
|
|
|
17f14c |
|
|
|
17f14c |
---
|
|
|
17f14c |
src/plugins/mdraid.c | 5 ++---
|
|
|
17f14c |
1 file changed, 2 insertions(+), 3 deletions(-)
|
|
|
17f14c |
|
|
|
17f14c |
diff --git a/src/plugins/mdraid.c b/src/plugins/mdraid.c
|
|
|
17f14c |
index 178379e..8f5b2ca 100644
|
|
|
17f14c |
--- a/src/plugins/mdraid.c
|
|
|
17f14c |
+++ b/src/plugins/mdraid.c
|
|
|
17f14c |
@@ -178,7 +178,7 @@ gboolean bd_md_check_deps (void) {
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
if (!ret)
|
|
|
17f14c |
- g_warning("Cannot load the MDRAID plugin");
|
|
|
17f14c |
+ g_warning ("Cannot load the MDRAID plugin");
|
|
|
17f14c |
|
|
|
17f14c |
return ret;
|
|
|
17f14c |
}
|
|
|
17f14c |
@@ -357,8 +357,7 @@ static BDMDExamineData* get_examine_data_from_table (GHashTable *table, gboolean
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
if (bs_error) {
|
|
|
17f14c |
- g_set_error (error, BD_MD_ERROR, BD_MD_ERROR_PARSE,
|
|
|
17f14c |
- "Failed to parse chunk size from mdexamine data: %s", bs_error->msg);
|
|
|
17f14c |
+ g_warning ("get_examine_data_from_table(): Failed to parse chunk size from mdexamine data: %s", bs_error->msg);
|
|
|
17f14c |
bs_clear_error (&bs_error);
|
|
|
17f14c |
}
|
|
|
17f14c |
} else
|
|
|
17f14c |
--
|
|
|
17f14c |
2.21.0
|
|
|
17f14c |
|
|
|
17f14c |
|
|
|
17f14c |
From 9ad488f460f65abded312be4b5cf1f00f9fc8aa5 Mon Sep 17 00:00:00 2001
|
|
|
17f14c |
From: Tomas Bzatek <tbzatek@redhat.com>
|
|
|
17f14c |
Date: Thu, 16 May 2019 12:54:09 +0200
|
|
|
17f14c |
Subject: [PATCH 14/17] mdraid: Mark 'error' arg in
|
|
|
17f14c |
get_examine_data_from_table() as unused
|
|
|
17f14c |
|
|
|
17f14c |
---
|
|
|
17f14c |
src/plugins/mdraid.c | 2 +-
|
|
|
17f14c |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
17f14c |
|
|
|
17f14c |
diff --git a/src/plugins/mdraid.c b/src/plugins/mdraid.c
|
|
|
17f14c |
index 8f5b2ca..a333e6f 100644
|
|
|
17f14c |
--- a/src/plugins/mdraid.c
|
|
|
17f14c |
+++ b/src/plugins/mdraid.c
|
|
|
17f14c |
@@ -275,7 +275,7 @@ static GHashTable* parse_mdadm_vars (const gchar *str, const gchar *item_sep, co
|
|
|
17f14c |
return table;
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
-static BDMDExamineData* get_examine_data_from_table (GHashTable *table, gboolean free_table, GError **error) {
|
|
|
17f14c |
+static BDMDExamineData* get_examine_data_from_table (GHashTable *table, gboolean free_table, G_GNUC_UNUSED GError **error) {
|
|
|
17f14c |
BDMDExamineData *data = g_new0 (BDMDExamineData, 1);
|
|
|
17f14c |
gchar *value = NULL;
|
|
|
17f14c |
gchar *first_space = NULL;
|
|
|
17f14c |
--
|
|
|
17f14c |
2.21.0
|
|
|
17f14c |
|
|
|
17f14c |
|
|
|
17f14c |
From eaa07958b928141783202967cbae0e86fdee488d Mon Sep 17 00:00:00 2001
|
|
|
17f14c |
From: Tomas Bzatek <tbzatek@redhat.com>
|
|
|
17f14c |
Date: Thu, 16 May 2019 12:55:50 +0200
|
|
|
17f14c |
Subject: [PATCH 15/17] mdraid: Fix leaking BDMDExamineData.metadata
|
|
|
17f14c |
|
|
|
17f14c |
---
|
|
|
17f14c |
src/plugins/mdraid.c | 1 +
|
|
|
17f14c |
1 file changed, 1 insertion(+)
|
|
|
17f14c |
|
|
|
17f14c |
diff --git a/src/plugins/mdraid.c b/src/plugins/mdraid.c
|
|
|
17f14c |
index a333e6f..74af744 100644
|
|
|
17f14c |
--- a/src/plugins/mdraid.c
|
|
|
17f14c |
+++ b/src/plugins/mdraid.c
|
|
|
17f14c |
@@ -1049,6 +1049,7 @@ BDMDExamineData* bd_md_examine (const gchar *device, GError **error) {
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
/* try to get metadata version from the output (may be missing) */
|
|
|
17f14c |
+ g_free (ret->metadata);
|
|
|
17f14c |
value = (gchar*) g_hash_table_lookup (table, "metadata");
|
|
|
17f14c |
if (value)
|
|
|
17f14c |
ret->metadata = g_strdup (value);
|
|
|
17f14c |
--
|
|
|
17f14c |
2.21.0
|
|
|
17f14c |
|
|
|
17f14c |
|
|
|
17f14c |
From 6b384841027c22f3fac28dd295e8a6124d4d7498 Mon Sep 17 00:00:00 2001
|
|
|
17f14c |
From: Tomas Bzatek <tbzatek@redhat.com>
|
|
|
17f14c |
Date: Thu, 16 May 2019 17:40:51 +0200
|
|
|
17f14c |
Subject: [PATCH 16/17] btrfs: Fix number of memory leaks
|
|
|
17f14c |
|
|
|
17f14c |
---
|
|
|
17f14c |
src/plugins/btrfs.c | 40 ++++++++++++++++++++++------------------
|
|
|
17f14c |
1 file changed, 22 insertions(+), 18 deletions(-)
|
|
|
17f14c |
|
|
|
17f14c |
diff --git a/src/plugins/btrfs.c b/src/plugins/btrfs.c
|
|
|
17f14c |
index c76ea3f..8a2c81a 100644
|
|
|
17f14c |
--- a/src/plugins/btrfs.c
|
|
|
17f14c |
+++ b/src/plugins/btrfs.c
|
|
|
17f14c |
@@ -619,9 +619,7 @@ BDBtrfsDeviceInfo** bd_btrfs_list_devices (const gchar *device, GError **error)
|
|
|
17f14c |
"path[ \\t]+(?P<path>\\S+)\n";
|
|
|
17f14c |
GRegex *regex = NULL;
|
|
|
17f14c |
GMatchInfo *match_info = NULL;
|
|
|
17f14c |
- guint8 i = 0;
|
|
|
17f14c |
- GPtrArray *dev_infos = g_ptr_array_new ();
|
|
|
17f14c |
- BDBtrfsDeviceInfo** ret = NULL;
|
|
|
17f14c |
+ GPtrArray *dev_infos;
|
|
|
17f14c |
|
|
|
17f14c |
if (!check_deps (&avail_deps, DEPS_BTRFS_MASK, deps, DEPS_LAST, &deps_check_lock, error) ||
|
|
|
17f14c |
!check_module_deps (&avail_module_deps, MODULE_DEPS_BTRFS_MASK, module_deps, MODULE_DEPS_LAST, &deps_check_lock, error))
|
|
|
17f14c |
@@ -635,13 +633,16 @@ BDBtrfsDeviceInfo** bd_btrfs_list_devices (const gchar *device, GError **error)
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
success = bd_utils_exec_and_capture_output (argv, NULL, &output, error);
|
|
|
17f14c |
- if (!success)
|
|
|
17f14c |
+ if (!success) {
|
|
|
17f14c |
+ g_regex_unref (regex);
|
|
|
17f14c |
/* error is already populated from the previous call */
|
|
|
17f14c |
return NULL;
|
|
|
17f14c |
+ }
|
|
|
17f14c |
|
|
|
17f14c |
lines = g_strsplit (output, "\n", 0);
|
|
|
17f14c |
g_free (output);
|
|
|
17f14c |
|
|
|
17f14c |
+ dev_infos = g_ptr_array_new ();
|
|
|
17f14c |
for (line_p = lines; *line_p; line_p++) {
|
|
|
17f14c |
success = g_regex_match (regex, *line_p, 0, &match_info);
|
|
|
17f14c |
if (!success) {
|
|
|
17f14c |
@@ -654,21 +655,16 @@ BDBtrfsDeviceInfo** bd_btrfs_list_devices (const gchar *device, GError **error)
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
g_strfreev (lines);
|
|
|
17f14c |
+ g_regex_unref (regex);
|
|
|
17f14c |
|
|
|
17f14c |
if (dev_infos->len == 0) {
|
|
|
17f14c |
g_set_error (error, BD_BTRFS_ERROR, BD_BTRFS_ERROR_PARSE, "Failed to parse information about devices");
|
|
|
17f14c |
+ g_ptr_array_free (dev_infos, TRUE);
|
|
|
17f14c |
return NULL;
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
- /* now create the return value -- NULL-terminated array of BDBtrfsDeviceInfo */
|
|
|
17f14c |
- ret = g_new0 (BDBtrfsDeviceInfo*, dev_infos->len + 1);
|
|
|
17f14c |
- for (i=0; i < dev_infos->len; i++)
|
|
|
17f14c |
- ret[i] = (BDBtrfsDeviceInfo*) g_ptr_array_index (dev_infos, i);
|
|
|
17f14c |
- ret[i] = NULL;
|
|
|
17f14c |
-
|
|
|
17f14c |
- g_ptr_array_free (dev_infos, FALSE);
|
|
|
17f14c |
-
|
|
|
17f14c |
- return ret;
|
|
|
17f14c |
+ g_ptr_array_add (dev_infos, NULL);
|
|
|
17f14c |
+ return (BDBtrfsDeviceInfo **) g_ptr_array_free (dev_infos, FALSE);
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
/**
|
|
|
17f14c |
@@ -700,7 +696,7 @@ BDBtrfsSubvolumeInfo** bd_btrfs_list_subvolumes (const gchar *mountpoint, gboole
|
|
|
17f14c |
guint64 i = 0;
|
|
|
17f14c |
guint64 y = 0;
|
|
|
17f14c |
guint64 next_sorted_idx = 0;
|
|
|
17f14c |
- GPtrArray *subvol_infos = g_ptr_array_new ();
|
|
|
17f14c |
+ GPtrArray *subvol_infos;
|
|
|
17f14c |
BDBtrfsSubvolumeInfo* item = NULL;
|
|
|
17f14c |
BDBtrfsSubvolumeInfo* swap_item = NULL;
|
|
|
17f14c |
BDBtrfsSubvolumeInfo** ret = NULL;
|
|
|
17f14c |
@@ -724,11 +720,11 @@ BDBtrfsSubvolumeInfo** bd_btrfs_list_subvolumes (const gchar *mountpoint, gboole
|
|
|
17f14c |
|
|
|
17f14c |
success = bd_utils_exec_and_capture_output (argv, NULL, &output, error);
|
|
|
17f14c |
if (!success) {
|
|
|
17f14c |
+ g_regex_unref (regex);
|
|
|
17f14c |
if (g_error_matches (*error, BD_UTILS_EXEC_ERROR, BD_UTILS_EXEC_ERROR_NOOUT)) {
|
|
|
17f14c |
/* no output -> no subvolumes */
|
|
|
17f14c |
- ret = g_new0 (BDBtrfsSubvolumeInfo*, 1);
|
|
|
17f14c |
g_clear_error (error);
|
|
|
17f14c |
- return ret;
|
|
|
17f14c |
+ return g_new0 (BDBtrfsSubvolumeInfo*, 1);
|
|
|
17f14c |
} else {
|
|
|
17f14c |
/* error is already populated from the call above or simply no output*/
|
|
|
17f14c |
return NULL;
|
|
|
17f14c |
@@ -738,6 +734,7 @@ BDBtrfsSubvolumeInfo** bd_btrfs_list_subvolumes (const gchar *mountpoint, gboole
|
|
|
17f14c |
lines = g_strsplit (output, "\n", 0);
|
|
|
17f14c |
g_free (output);
|
|
|
17f14c |
|
|
|
17f14c |
+ subvol_infos = g_ptr_array_new ();
|
|
|
17f14c |
for (line_p = lines; *line_p; line_p++) {
|
|
|
17f14c |
success = g_regex_match (regex, *line_p, 0, &match_info);
|
|
|
17f14c |
if (!success) {
|
|
|
17f14c |
@@ -750,9 +747,11 @@ BDBtrfsSubvolumeInfo** bd_btrfs_list_subvolumes (const gchar *mountpoint, gboole
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
g_strfreev (lines);
|
|
|
17f14c |
+ g_regex_unref (regex);
|
|
|
17f14c |
|
|
|
17f14c |
if (subvol_infos->len == 0) {
|
|
|
17f14c |
g_set_error (error, BD_BTRFS_ERROR, BD_BTRFS_ERROR_PARSE, "Failed to parse information about subvolumes");
|
|
|
17f14c |
+ g_ptr_array_free (subvol_infos, TRUE);
|
|
|
17f14c |
return NULL;
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
@@ -828,21 +827,26 @@ BDBtrfsFilesystemInfo* bd_btrfs_filesystem_info (const gchar *device, GError **e
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
success = bd_utils_exec_and_capture_output (argv, NULL, &output, error);
|
|
|
17f14c |
- if (!success)
|
|
|
17f14c |
+ if (!success) {
|
|
|
17f14c |
/* error is already populated from the call above or just empty
|
|
|
17f14c |
output */
|
|
|
17f14c |
+ g_regex_unref (regex);
|
|
|
17f14c |
return NULL;
|
|
|
17f14c |
+ }
|
|
|
17f14c |
|
|
|
17f14c |
success = g_regex_match (regex, output, 0, &match_info);
|
|
|
17f14c |
if (!success) {
|
|
|
17f14c |
g_regex_unref (regex);
|
|
|
17f14c |
g_match_info_free (match_info);
|
|
|
17f14c |
+ g_free (output);
|
|
|
17f14c |
return NULL;
|
|
|
17f14c |
}
|
|
|
17f14c |
|
|
|
17f14c |
- g_regex_unref (regex);
|
|
|
17f14c |
ret = get_filesystem_info_from_match (match_info);
|
|
|
17f14c |
g_match_info_free (match_info);
|
|
|
17f14c |
+ g_regex_unref (regex);
|
|
|
17f14c |
+
|
|
|
17f14c |
+ g_free (output);
|
|
|
17f14c |
|
|
|
17f14c |
return ret;
|
|
|
17f14c |
}
|
|
|
17f14c |
--
|
|
|
17f14c |
2.21.0
|
|
|
17f14c |
|
|
|
17f14c |
|
|
|
17f14c |
From 6f0ec1d90584c59da9bb5f22f692b7d5ebfb2708 Mon Sep 17 00:00:00 2001
|
|
|
17f14c |
From: Tomas Bzatek <tbzatek@redhat.com>
|
|
|
17f14c |
Date: Fri, 17 May 2019 16:09:50 +0200
|
|
|
17f14c |
Subject: [PATCH 17/17] module: Fix libkmod related leak
|
|
|
17f14c |
|
|
|
17f14c |
---
|
|
|
17f14c |
src/utils/module.c | 7 ++++---
|
|
|
17f14c |
1 file changed, 4 insertions(+), 3 deletions(-)
|
|
|
17f14c |
|
|
|
17f14c |
diff --git a/src/utils/module.c b/src/utils/module.c
|
|
|
17f14c |
index 0709633..cdad960 100644
|
|
|
17f14c |
--- a/src/utils/module.c
|
|
|
17f14c |
+++ b/src/utils/module.c
|
|
|
17f14c |
@@ -60,7 +60,7 @@ gboolean bd_utils_have_kernel_module (const gchar *module_name, GError **error)
|
|
|
17f14c |
return FALSE;
|
|
|
17f14c |
}
|
|
|
17f14c |
/* prevent libkmod from spamming our STDERR */
|
|
|
17f14c |
- kmod_set_log_priority(ctx, LOG_CRIT);
|
|
|
17f14c |
+ kmod_set_log_priority (ctx, LOG_CRIT);
|
|
|
17f14c |
|
|
|
17f14c |
ret = kmod_module_new_from_name (ctx, module_name, &mod);
|
|
|
17f14c |
if (ret < 0) {
|
|
|
17f14c |
@@ -106,7 +106,7 @@ gboolean bd_utils_load_kernel_module (const gchar *module_name, const gchar *opt
|
|
|
17f14c |
return FALSE;
|
|
|
17f14c |
}
|
|
|
17f14c |
/* prevent libkmod from spamming our STDERR */
|
|
|
17f14c |
- kmod_set_log_priority(ctx, LOG_CRIT);
|
|
|
17f14c |
+ kmod_set_log_priority (ctx, LOG_CRIT);
|
|
|
17f14c |
|
|
|
17f14c |
ret = kmod_module_new_from_name (ctx, module_name, &mod);
|
|
|
17f14c |
if (ret < 0) {
|
|
|
17f14c |
@@ -169,7 +169,7 @@ gboolean bd_utils_unload_kernel_module (const gchar *module_name, GError **error
|
|
|
17f14c |
return FALSE;
|
|
|
17f14c |
}
|
|
|
17f14c |
/* prevent libkmod from spamming our STDERR */
|
|
|
17f14c |
- kmod_set_log_priority(ctx, LOG_CRIT);
|
|
|
17f14c |
+ kmod_set_log_priority (ctx, LOG_CRIT);
|
|
|
17f14c |
|
|
|
17f14c |
ret = kmod_module_new_from_loaded (ctx, &list);
|
|
|
17f14c |
if (ret < 0) {
|
|
|
17f14c |
@@ -187,6 +187,7 @@ gboolean bd_utils_unload_kernel_module (const gchar *module_name, GError **error
|
|
|
17f14c |
else
|
|
|
17f14c |
kmod_module_unref (mod);
|
|
|
17f14c |
}
|
|
|
17f14c |
+ kmod_module_unref_list (list);
|
|
|
17f14c |
|
|
|
17f14c |
if (!found) {
|
|
|
17f14c |
g_set_error (error, BD_UTILS_MODULE_ERROR, BD_UTILS_MODULE_ERROR_NOEXIST,
|
|
|
17f14c |
--
|
|
|
17f14c |
2.21.0
|
|
|
17f14c |
|