Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Cause:
GVfs doesn't check returned value when getting pool of GDU devices. This operation fails in some cases (e.g. during shutdown).
Consequence:
GDU Volume Monitor process is aborted if error occurs.
Fix:
GDU Volume Monitor now checks returned value.
Result:
GDU Volume Monitor doesn't abort.
Description of problem:
The gvfs-gdu-volume-monitor process was aborted during system shutdown.
The cause of abort is that it did not meet the g_assert() conditions.
(gdb) bt
#0 0x00000030f8432925 in raise (sig=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:64
#1 0x00000030f8434105 in abort () at abort.c:92
#2 0x00000030f9c661c4 in g_assertion_message (domain=<value optimized out>, file=<value optimized out>, line=<value optimized out>,
func=0x3102c2d690 "gdu_pool_get_presentables", message=0x9582c0 "assertion failed: (pool != NULL)") at gtestutils.c:1358
#3 0x00000030f9c66790 in g_assertion_message_expr (domain=0x3102c2a224 "libgdu", file=0x3102c2c545 "gdu-pool.c", line=2565,
func=0x3102c2d690 "gdu_pool_get_presentables", expr=<value optimized out>) at gtestutils.c:1369
(gdb) l
2560 **/
2561 GList *
2562 gdu_pool_get_presentables (GduPool *pool)
2563 {
2564 GList *ret;
2565 g_assert (pool != NULL);
Version-Release number of selected component (if applicable):
- kernel-2.6.32-431.el6.x86_64
- glibc-2.12-1.132.el6_5.2.x86_64
- glib2-2.26.1-7.el6_5.x86_64
- gvfs-1.4.3-16.el6_5.x86_64
How reproducible:
No reproducer.
Steps to Reproduce:
It occurred during the shutdown.
The other reproducer is not known.
Actual results:
The process was aborted with a coredump.
Expected results:
The process is completed correctly.
Additional info:
* I assume that desktop processes were not completed correctly.
-rw------- 1 root root 819200 2014-09-04 18:00:42.606894061 +0900 /core.17549
Sep 4 18:00:39 TESTHOST abrtd: Got signal 15, exiting
Sep 4 18:00:40 TESTHOST snmpd[2272]: Received TERM or STOP signal... shutt
ing down...
Sep 4 18:00:41 TESTHOST ntpd[40740]: ntpd exiting on signal 15
Sep 4 18:00:41 TESTHOST init: Disconnected from system bus
Sep 4 18:00:41 TESTHOST multipathd: mpath00d0: stop event checker thread (4
7049957472000)
Sep 4 18:00:41 TESTHOST gnome-keyring-daemon[3287]: GVFS-RemoteVolumeMonito
r: Owner :1.47 of volume monitor org.gtk.Private.GduVolumeMonitor disconnected f
rom the bus; removing drives/volumes/mounts
Sep 4 18:00:44 TESTHOST kernel: talpa-vfshook: Disabled
* I found the similar cases:
- Bug 609108
- Bug 683315
- Bug 713865
It also happens in different situations according the mentioned similar cases, not only during shutdown. The root cause are problems with dbus, unfortunately we haven't reliable reproducer. However we can handle those problems better to avoid crashes. There is upstream patch to do that:
https://bugzilla.gnome.org/show_bug.cgi?id=582579
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.
For information on the advisory, and where to find the updated
files, follow the link below.
If the solution does not work for you, open a new bug report.
https://rhn.redhat.com/errata/RHBA-2015-0237.html
Description of problem: The gvfs-gdu-volume-monitor process was aborted during system shutdown. The cause of abort is that it did not meet the g_assert() conditions. (gdb) bt #0 0x00000030f8432925 in raise (sig=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:64 #1 0x00000030f8434105 in abort () at abort.c:92 #2 0x00000030f9c661c4 in g_assertion_message (domain=<value optimized out>, file=<value optimized out>, line=<value optimized out>, func=0x3102c2d690 "gdu_pool_get_presentables", message=0x9582c0 "assertion failed: (pool != NULL)") at gtestutils.c:1358 #3 0x00000030f9c66790 in g_assertion_message_expr (domain=0x3102c2a224 "libgdu", file=0x3102c2c545 "gdu-pool.c", line=2565, func=0x3102c2d690 "gdu_pool_get_presentables", expr=<value optimized out>) at gtestutils.c:1369 (gdb) l 2560 **/ 2561 GList * 2562 gdu_pool_get_presentables (GduPool *pool) 2563 { 2564 GList *ret; 2565 g_assert (pool != NULL); Version-Release number of selected component (if applicable): - kernel-2.6.32-431.el6.x86_64 - glibc-2.12-1.132.el6_5.2.x86_64 - glib2-2.26.1-7.el6_5.x86_64 - gvfs-1.4.3-16.el6_5.x86_64 How reproducible: No reproducer. Steps to Reproduce: It occurred during the shutdown. The other reproducer is not known. Actual results: The process was aborted with a coredump. Expected results: The process is completed correctly. Additional info: * I assume that desktop processes were not completed correctly. -rw------- 1 root root 819200 2014-09-04 18:00:42.606894061 +0900 /core.17549 Sep 4 18:00:39 TESTHOST abrtd: Got signal 15, exiting Sep 4 18:00:40 TESTHOST snmpd[2272]: Received TERM or STOP signal... shutt ing down... Sep 4 18:00:41 TESTHOST ntpd[40740]: ntpd exiting on signal 15 Sep 4 18:00:41 TESTHOST init: Disconnected from system bus Sep 4 18:00:41 TESTHOST multipathd: mpath00d0: stop event checker thread (4 7049957472000) Sep 4 18:00:41 TESTHOST gnome-keyring-daemon[3287]: GVFS-RemoteVolumeMonito r: Owner :1.47 of volume monitor org.gtk.Private.GduVolumeMonitor disconnected f rom the bus; removing drives/volumes/mounts Sep 4 18:00:44 TESTHOST kernel: talpa-vfshook: Disabled * I found the similar cases: - Bug 609108 - Bug 683315 - Bug 713865