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.

Bug 1331395

Summary: [abrt] [faf] NetworkManager: unknown function(): /usr/sbin/NetworkManager killed by 11
Product: Red Hat Enterprise Linux 7 Reporter: Vladimir Benes <vbenes>
Component: NetworkManagerAssignee: Lubomir Rintel <lrintel>
Status: CLOSED ERRATA QA Contact: Desktop QE <desktop-qa-list>
Severity: medium Docs Contact:
Priority: medium    
Version: 7.3CC: aloughla, atragler, bgalvani, lrintel, mkyral, rkhan, thaller, tpelka
Target Milestone: rc   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
URL: http://faf.lab.eng.brq.redhat.com/faf/reports/bthash/b2d302feb13eb7fd27ffebb0313c2b0f3b304f53/
Whiteboard:
Fixed In Version: NetworkManager-1.4.0-0.1.git20160606.b769b4df.el7 Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2016-11-03 19:09:19 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Attachments:
Description Flags
more info attached not sure why it's not attached in faf report
none
Patch 1/2
none
Patch 2/2
none
Patch 1/2
none
Patch 2/2 none

Description Vladimir Benes 2016-04-28 12:52:37 UTC
This bug has been created based on an anonymous crash report requested by the package maintainer.

Report URL: http://faf.lab.eng.brq.redhat.com/faf/reports/bthash/b2d302feb13eb7fd27ffebb0313c2b0f3b304f53/

reproducer: 
call('yum -y install usb_modeswitch ModemManager', shell=True)
call('systemctl restart ModemManager.service', shell=True)
call('for i in $(ls /sys/bus/usb/devices/usb*/authorized); do echo 0 > $i; done', shell=True)
call('for i in $(ls /sys/bus/usb/devices/usb*/authorized); do echo 1 > $i; done', shell=True)
sleep(15)
^^ this is very important changing to 20 and everything behave OK.

then test adds new novice mode connection for gsm device
    * Open wizard for adding new connection
    * Expect "Connection type"
    * Submit "gsm" in editor
    * Expect "Interface name"
    * Enter in editor (this means no device specified)
    * Expect "APN"
    * Submit "internet" in editor
    * Expect "Do you want to provide them\? \(yes\/no\) \[yes\]"
    * Submit "no" in editor
    * Expect "Do you want to add IP addresses\? \(yes\/no\) \[yes\]"
    * Submit "no" in editor
## crash is here when NM autoconnects created connection 
    * Bring "up" connection "gsm"
    Then "gsm" is visible with command "nmcli con show -a" in "10" seconds
     And Ping "redhat.com"

[root@wlan-intel-6200 NetworkManager]# rpm -qa NetworkManager*
NetworkManager-adsl-1.2.0-1.el7.x86_64
NetworkManager-libnm-1.2.0-1.el7.x86_64
NetworkManager-wwan-1.2.0-1.el7.x86_64
NetworkManager-bluetooth-1.2.0-1.el7.x86_64
NetworkManager-wifi-1.2.0-1.el7.x86_64
NetworkManager-tui-1.2.0-1.el7.x86_64
NetworkManager-config-server-1.2.0-1.el7.x86_64
NetworkManager-debuginfo-1.2.0-1.el7.x86_64
NetworkManager-1.2.0-1.el7.x86_64
NetworkManager-team-1.2.0-1.el7.x86_64
NetworkManager-glib-1.2.0-1.el7.x86_64
NetworkManager-libreswan-1.0.6-3.el7.x86_64

Comment 1 Vladimir Benes 2016-04-28 12:53:06 UTC
Created attachment 1151852 [details]
more info attached not sure why it's not attached in faf report

Comment 2 Martin Kyral 2016-04-28 15:29:47 UTC
(In reply to Vladimir Benes from comment #1)
> Created attachment 1151852 [details]
> more info attached not sure why it's not attached in faf report

FAF was misconfigured so it did not accept adding URLs to the report. This was fixed and deferred attachments were added to the reports so they're complete now.

Comment 3 Lubomir Rintel 2016-05-04 19:16:16 UTC
Created attachment 1153995 [details]
Patch 1/2

Comment 4 Lubomir Rintel 2016-05-05 08:02:46 UTC
Created attachment 1154121 [details]
Patch 2/2

Comment 5 Thomas Haller 2016-05-06 14:32:34 UTC
(In reply to Lubomir Rintel from comment #3)
> Created attachment 1153995 [details]
> Patch 1/2

I think the finish functions should always be called.

like:

if (!mm_sim_send_pin_finish (sim, result, &error)) {
    if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) {
        return;
    g_return_if_fail (self->priv->ctx && self->priv->ctx->step == 
                      CONNECT_STEP_UNLOCK);
    /* process failure... */
    return;
}
g_return_if_fail (self->priv->ctx && self->priv->ctx->step == 
                  CONNECT_STEP_UNLOCK);
/* process success... */

Comment 6 Thomas Haller 2016-05-06 14:35:33 UTC
(In reply to Lubomir Rintel from comment #4)
> Created attachment 1154121 [details]
> Patch 2/2

typo: "suririse"


otherwise, lgtm.


(I would use NM_IN_SET(new_state, NM_DEVICE_STATE_FAILED, NM_DEVICE_STATE_DISCONNECTED), but as you prefer).

Comment 7 Lubomir Rintel 2016-05-10 14:04:12 UTC
Created attachment 1155766 [details]
Patch 1/2

Comment 8 Lubomir Rintel 2016-05-10 14:04:52 UTC
Created attachment 1155767 [details]
Patch 2/2

Comment 9 Beniamino Galvani 2016-05-10 14:43:19 UTC
Patches look good.

Comment 13 errata-xmlrpc 2016-11-03 19:09:19 UTC
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/RHSA-2016-2581.html