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 1542366 - [NMCI][abrt] [faf] NetworkManager: raise(): /usr/sbin/NetworkManager killed by 6
Summary: [NMCI][abrt] [faf] NetworkManager: raise(): /usr/sbin/NetworkManager killed by 6
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 7
Classification: Red Hat
Component: NetworkManager
Version: 7.5
Hardware: Unspecified
OS: Unspecified
medium
medium
Target Milestone: rc
: ---
Assignee: Beniamino Galvani
QA Contact: Desktop QE
URL: http://faf.lab.eng.brq.redhat.com/faf...
Whiteboard:
: 1567842 (view as bug list)
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2018-02-06 08:11 UTC by Vladimir Benes
Modified: 2019-08-06 13:16 UTC (History)
7 users (show)

Fixed In Version: NetworkManager-1.16.2-0.1.20190328git8ec0954570.el7
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed: 2019-08-06 13:16:20 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Product Errata RHBA-2019:2302 0 None None None 2019-08-06 13:16:36 UTC

Description Vladimir Benes 2018-02-06 08:11:42 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/f7313d168af869b8a30e52942b94550b9182964a/

Comment 2 Beniamino Galvani 2018-02-06 14:37:18 UTC
(note to self)

The problem is that platform_link_cb() sometimes receives the link
add/remove event out of order, i.e.:

 ip l add dummy0 type dummy
 ip l del dummy0
 ip l add dummy0 type dummy

 > link added  : 1
 > link added  : 2
 > link removed: 1

Therefore, we update the ifindex of the existing device instead of
creating a new one; and since the DNS manager tracks configurations by
ifindex, we fail to remove the old configuration, leaving a stale
entry in the DNS manager.

I think there's a bug in the platform code, investigating...

This is reproducible by running the repro_1512316.sh script from CI
tests and then adding a new connection with a DNS server set.

Comment 3 Beniamino Galvani 2018-08-03 15:29:42 UTC
Pushed branch bg/rh1542366 for review.

Comment 4 Thomas Haller 2018-08-06 07:27:34 UTC
(In reply to Beniamino Galvani from comment #3)
> Pushed branch bg/rh1542366 for review.

platform: fix typo
        ^^ "platform/trivial:"


> manager: don't update ifindex of existing devices

+              if (nm_device_get_ifindex (candidate) <= 0)
                    nm_device_update_from_platform_link (candidate, plink);

why does that happen? That seems wrong in the first place.

the only valid way to associate an NMDevice with a platform link, is via the ifindex. Meaning: a NMDevice refers to a particular platform link iff the ifindex matches. Why would we have realized devices that have no ifindex (aside purely virtual interfaces, like NMDeviceOvsBridge).

Why does

     if (nm_manager_get_device_by_ifindex (self, ifindex))
          return;

above not already hit?

I question in general, how unrealized devices are oddly tied to an ifname. that is, we create unrealized devices per ifname, and later, when realizing them, we match the NMDevice with the platform link based on the ifname. I find that in many ways wrong. It is wrong, because ifname can be changed.

Comment 5 Beniamino Galvani 2018-08-21 07:49:41 UTC
(In reply to Thomas Haller from comment #4)
> (In reply to Beniamino Galvani from comment #3)
> > Pushed branch bg/rh1542366 for review.
>
> platform: fix typo
>         ^^ "platform/trivial:"
>
>
> > manager: don't update ifindex of existing devices
>
> +              if (nm_device_get_ifindex (candidate) <= 0)
>                     nm_device_update_from_platform_link (candidate, plink);
>
> why does that happen? That seems wrong in the first place.
>
> the only valid way to associate an NMDevice with a platform link, is via the
> ifindex. Meaning: a NMDevice refers to a particular platform link iff the
> ifindex matches. Why would we have realized devices that have no ifindex
> (aside purely virtual interfaces, like NMDeviceOvsBridge).

When we reach that code:

1) plink->ifindex is not associated to any device, because this didn't hit:

        if (nm_manager_get_device_by_ifindex (self, ifindex))
		return;

2) and the link name matches the device name.

Previously, we only did:

      if (nm_device_is_real (candidate)) {
            /* Ignore the link added event since there's already a realized
             * device with the link's name.
             */
            nm_device_update_from_platform_link (candidate, plink);
            return;

and we updated the ifindex of the interface. This was added by commit

https://cgit.freedesktop.org/NetworkManager/NetworkManager/commit/?id=d7f7725ae8c965756902bd492bf2cf0834319548

and is needed because ovs devices are realized without an initial
ifindex (also ppp devices do the same). I think this is correct in
principle, but it doesn't check whether the device's ifindex is
already != 0.

This happens for example when we have an eth0 device with ifindex 1,
and then a new link named eth0 with ifindex 2 appears. This might look
impossible, but it actually happens when we have to rebuild the
platform cache after a -ENOBUFS error.

> Why does
>
>      if (nm_manager_get_device_by_ifindex (self, ifindex))
>           return;
>
> above not already hit?

See above, the new link has a different ifindex.

> I question in general, how unrealized devices are oddly tied to an ifname.
> that is, we create unrealized devices per ifname, and later, when realizing
> them, we match the NMDevice with the platform link based on the ifname. I
> find that in many ways wrong. It is wrong, because ifname can be changed.

Yes, this should be improved.

Comment 6 Thomas Haller 2018-09-05 13:35:58 UTC
branch LGTM

Comment 10 Vladimir Benes 2019-04-05 08:25:57 UTC
last occurrence was  2019-02-16

Comment 11 Beniamino Galvani 2019-06-20 08:56:06 UTC
*** Bug 1567842 has been marked as a duplicate of this bug. ***

Comment 13 errata-xmlrpc 2019-08-06 13:16:20 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://access.redhat.com/errata/RHBA-2019:2302


Note You need to log in before you can comment on or make changes to this bug.