984f77
From 033998c21f01e7b7d91e4aa51a358f8016f3740a Mon Sep 17 00:00:00 2001
984f77
From: Viktor Mihajlovski <mihajlov@linux.ibm.com>
984f77
Date: Tue, 27 Apr 2021 15:25:16 +0200
984f77
Subject: [PATCH] udev: allow onboard index up to 65535
984f77
984f77
The maximum allowed value of the sysfs device index entry was limited to
984f77
16383 (2^14-1) to avoid the generation of unreasonable onboard interface
984f77
names.
984f77
For s390 the index can assume a value of up to 65535 (2^16-1) which is
984f77
now allowed depending on the new naming flag NAMING_16BIT_INDEX.
984f77
Larger index values are considered unreasonable and remain to be
984f77
ignored.
984f77
984f77
Related: #1939914
984f77
984f77
(cherry picked from commit 5a7eb46c0206411d380543021291b4bca0b6f59f)
984f77
---
984f77
 man/systemd.net-naming-scheme.xml |  7 ++++++-
984f77
 src/udev/udev-builtin-net_id.c    | 22 +++++++++++++++-------
984f77
 2 files changed, 21 insertions(+), 8 deletions(-)
984f77
984f77
diff --git a/man/systemd.net-naming-scheme.xml b/man/systemd.net-naming-scheme.xml
984f77
index e42c93eaad..a567483995 100644
984f77
--- a/man/systemd.net-naming-scheme.xml
984f77
+++ b/man/systemd.net-naming-scheme.xml
984f77
@@ -320,7 +320,12 @@
984f77
           of the <filename>function_id</filename> device attribute. This attribute is now used to build the
984f77
           <varname>ID_NET_NAME_SLOT</varname>. Before that, all slot names were parsed as decimal
984f77
           numbers, which could either result in an incorrect value of the <varname>ID_NET_NAME_SLOT</varname>
984f77
-          property or none at all.</para></listitem>
984f77
+          property or none at all.</para>
984f77
+
984f77
+          <para>Some firmware and hypervisor implementations report unreasonable high numbers for the onboard
984f77
+          index. To prevent the generation of bogus onbard interface names, index numbers greater than 16381
984f77
+          (2^14-1) were ignored. For s390 PCI devices index values up to 65535 (2^16-1) are valid. To account
984f77
+          for that, the limit is increased to now 65535.</para></listitem>
984f77
         </varlistentry>
984f77
 
984f77
         <para>Note that <constant>latest</constant> may be used to denote the latest scheme known to this
984f77
diff --git a/src/udev/udev-builtin-net_id.c b/src/udev/udev-builtin-net_id.c
984f77
index ba7638fcb8..df84acf27c 100644
984f77
--- a/src/udev/udev-builtin-net_id.c
984f77
+++ b/src/udev/udev-builtin-net_id.c
984f77
@@ -104,7 +104,8 @@
984f77
 #include "udev.h"
984f77
 #include "udev-util.h"
984f77
 
984f77
-#define ONBOARD_INDEX_MAX (16*1024-1)
984f77
+#define ONBOARD_14BIT_INDEX_MAX ((1U << 14) - 1)
984f77
+#define ONBOARD_16BIT_INDEX_MAX ((1U << 16) - 1)
984f77
 
984f77
 /* So here's the deal: net_id is supposed to be an excercise in providing stable names for network devices. However, we
984f77
  * also want to keep updating the naming scheme used in future versions of net_id. These two goals of course are
984f77
@@ -127,6 +128,7 @@ typedef enum NamingSchemeFlags {
984f77
         NAMING_NPAR_ARI        = 1 << 1, /* Use NPAR "ARI", see 6bc04997b6eab35d1cb9fa73889892702c27be09 */
984f77
         NAMING_BRIDGE_NO_SLOT  = 1 << 9, /* Don't use PCI hotplug slot information if the corresponding device is a PCI bridge */
984f77
         NAMING_SLOT_FUNCTION_ID = 1 << 10, /* Use function_id if present to identify PCI hotplug slots */
984f77
+        NAMING_16BIT_INDEX      = 1 << 11, /* Allow full 16-bit for the onboard index */
984f77
 
984f77
         /* And now the masks that combine the features above */
984f77
         NAMING_V238 = 0,
984f77
@@ -138,7 +140,7 @@ typedef enum NamingSchemeFlags {
984f77
         NAMING_RHEL_8_4 = NAMING_V239|NAMING_BRIDGE_NO_SLOT,
984f77
         NAMING_RHEL_8_5 = NAMING_RHEL_8_4,
984f77
         NAMING_RHEL_8_6 = NAMING_RHEL_8_4,
984f77
-        NAMING_RHEL_8_7 = NAMING_RHEL_8_4|NAMING_SLOT_FUNCTION_ID,
984f77
+        NAMING_RHEL_8_7 = NAMING_RHEL_8_4|NAMING_SLOT_FUNCTION_ID|NAMING_16BIT_INDEX,
984f77
 
984f77
         _NAMING_SCHEME_FLAGS_INVALID = -1,
984f77
 } NamingSchemeFlags;
984f77
@@ -326,6 +328,16 @@ out_unref:
984f77
         return r;
984f77
 }
984f77
 
984f77
+static bool is_valid_onboard_index(unsigned long idx) {
984f77
+        /* Some BIOSes report rubbish indexes that are excessively high (2^24-1 is an index VMware likes to
984f77
+         * report for example). Let's define a cut-off where we don't consider the index reliable anymore. We
984f77
+         * pick some arbitrary cut-off, which is somewhere beyond the realistic number of physical network
984f77
+         * interface a system might have. Ideally the kernel would already filter this crap for us, but it
984f77
+         * doesn't currently. The initial cut-off value (2^14-1) was too conservative for s390 PCI which
984f77
+         * allows for index values up 2^16-1 which is now enabled with the NAMING_16BIT_INDEX naming flag. */
984f77
+        return idx <= (naming_scheme_has(NAMING_16BIT_INDEX) ? ONBOARD_16BIT_INDEX_MAX : ONBOARD_14BIT_INDEX_MAX);
984f77
+}
984f77
+
984f77
 /* retrieve on-board index number and label from firmware */
984f77
 static int dev_pci_onboard(struct udev_device *dev, struct netnames *names) {
984f77
         unsigned dev_port = 0;
984f77
@@ -346,11 +358,7 @@ static int dev_pci_onboard(struct udev_device *dev, struct netnames *names) {
984f77
         if (idx <= 0)
984f77
                 return -EINVAL;
984f77
 
984f77
-        /* Some BIOSes report rubbish indexes that are excessively high (2^24-1 is an index VMware likes to report for
984f77
-         * example). Let's define a cut-off where we don't consider the index reliable anymore. We pick some arbitrary
984f77
-         * cut-off, which is somewhere beyond the realistic number of physical network interface a system might
984f77
-         * have. Ideally the kernel would already filter his crap for us, but it doesn't currently. */
984f77
-        if (idx > ONBOARD_INDEX_MAX)
984f77
+        if (!is_valid_onboard_index(idx))
984f77
                 return -ENOENT;
984f77
 
984f77
         /* kernel provided port index for multiple ports on a single PCI function */