View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0004459 | Kali Linux | General Bug | public | 2018-01-08 19:59 | 2018-01-23 10:14 |
Reporter | pkreuzt | Assigned To | |||
Priority | normal | Severity | major | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 2017.3 | ||||
Fixed in Version | 2018.1 | ||||
Summary | 0004459: nm-applet segfaults when conneting to a VPN provider | ||||
Description | Once the VPN is selected, it asks for root password (I'm using a non-root account for normal operation) and then crashes. The VPN connection is not completed. When launching nm-applet from console to see errors it only says "segfault". | ||||
Steps To Reproduce |
| ||||
Attached Files | |||||
I'm also experiencing similar issue, but my VPN connection succeeds. nm-applet just disappears from process list and from status bar. Here's my backtrace: Error in `nm-applet': free(): invalid pointer: 0x000055c697082e80======= Backtrace: ========= |
|
related to https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=885525 (with a patch) |
|
This is an upstream bug, patch attached a52ccb2fe170558fc0aab4dd1d15ba8808b10951.patch (2,628 bytes)
From a52ccb2fe170558fc0aab4dd1d15ba8808b10951 Mon Sep 17 00:00:00 2001 From: "Jan Alexander Steffens (heftig)" <[email protected]> Date: Thu, 21 Dec 2017 20:36:48 +0100 Subject: shared/compat: fix memory handling of nm_setting_vpn_get_*_keys() The previous fix was bad because the keys do not come from NMSettingVpn's hash table but are copies that are freed by nm_setting_vpn_foreach_* before it returns. [[email protected]: import shared code from NetworkManager, merging three patches together.] Fixes: e93ca7fc129ec0f29f5313a3aa12839914df8fa2 Fixes: 0c90e08f77b71d2bda699cf032fceec0122bbf82 https://mail.gnome.org/archives/networkmanager-list/2017-December/msg00069.html https://mail.gnome.org/archives/networkmanager-list/2017-December/msg00070.html --- shared/nm-utils/nm-compat.c | 29 ++++++++++++++++++++++------- 1 file changed, 22 insertions(+), 7 deletions(-) diff --git a/shared/nm-utils/nm-compat.c b/shared/nm-utils/nm-compat.c index 47035e6..90328c0 100644 --- a/shared/nm-utils/nm-compat.c +++ b/shared/nm-utils/nm-compat.c @@ -30,7 +30,7 @@ _get_keys_cb (const char *key, const char *val, gpointer user_data) { GPtrArray *a = user_data; - g_ptr_array_add (a, (gpointer) key); + g_ptr_array_add (a, g_strdup (key)); } static const char ** @@ -40,22 +40,37 @@ _get_keys (NMSettingVpn *setting, { guint len; const char **keys = NULL; - gs_unref_ptrarray GPtrArray *a = NULL; + GPtrArray *a; nm_assert (NM_IS_SETTING_VPN (setting)); - a = g_ptr_array_new (); + if (is_secrets) + len = nm_setting_vpn_get_num_secrets (setting); + else + len = nm_setting_vpn_get_num_data_items (setting); + + a = g_ptr_array_sized_new (len + 1); + if (is_secrets) nm_setting_vpn_foreach_secret (setting, _get_keys_cb, a); else nm_setting_vpn_foreach_data_item (setting, _get_keys_cb, a); - len = a->len; - if (a->len) { + len = a->len; + if (len) { g_ptr_array_sort (a, nm_strcmp_p); g_ptr_array_add (a, NULL); - keys = (const char **) g_ptr_array_free (g_steal_pointer (&a), FALSE); - } + keys = g_memdup (a->pdata, a->len * sizeof (gpointer)); + + /* we need to cache the keys *somewhere*. */ + g_object_set_qdata_full (G_OBJECT (setting), + is_secrets + ? NM_CACHED_QUARK ("libnm._nm_setting_vpn_get_secret_keys") + : NM_CACHED_QUARK ("libnm._nm_setting_vpn_get_data_keys"), + g_ptr_array_free (a, FALSE), + (GDestroyNotify) g_strfreev); + } else + g_ptr_array_free (a, TRUE); NM_SET_OUT (out_length, len); return keys; -- cgit v0.12 |
|
it's fixed in version 1.8.10-2 now in kali-rolling. |
|
Date Modified | Username | Field | Change |
---|---|---|---|
2018-01-08 19:59 | pkreuzt | New Issue | |
2018-01-15 10:53 | thegru | Note Added: 0007811 | |
2018-01-15 13:53 | sbrun | Status | new => confirmed |
2018-01-15 13:53 | sbrun | Note Added: 0007818 | |
2018-01-23 10:00 | roadkill | File Added: a52ccb2fe170558fc0aab4dd1d15ba8808b10951.patch | |
2018-01-23 10:00 | roadkill | Note Added: 0007852 | |
2018-01-23 10:14 | sbrun | Status | confirmed => resolved |
2018-01-23 10:14 | sbrun | Resolution | open => fixed |
2018-01-23 10:14 | sbrun | Fixed in Version | => 2018.1 |
2018-01-23 10:14 | sbrun | Note Added: 0007853 |