Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 07dbb1c8 authored by Alexandra Winter's avatar Alexandra Winter Committed by Greg Kroah-Hartman
Browse files

s390/qeth: Fix potential loss of L3-IP@ in case of network issues



[ Upstream commit 2fe8a236436fe40d8d26a1af8d150fc80f04ee1a ]

Symptom:
In case of a bad cable connection (e.g. dirty optics) a fast sequence of
network DOWN-UP-DOWN-UP could happen. UP triggers recovery of the qeth
interface. In case of a second DOWN while recovery is still ongoing, it
can happen that the IP@ of a Layer3 qeth interface is lost and will not
be recovered by the second UP.

Problem:
When registration of IP addresses with Layer 3 qeth devices fails, (e.g.
because of bad address format) the respective IP address is deleted from
its hash-table in the driver. If registration fails because of a ENETDOWN
condition, the address should stay in the hashtable, so a subsequent
recovery can restore it.

3caa4af8 ("qeth: keep ip-address after LAN_OFFLINE failure")
fixes this for registration failures during normal operation, but not
during recovery.

Solution:
Keep L3-IP address in case of ENETDOWN in qeth_l3_recover_ip(). For
consistency with qeth_l3_add_ip() we also keep it in case of EADDRINUSE,
i.e. for some reason the card already/still has this address registered.

Fixes: 4a71df50 ("qeth: new qeth device driver")
Cc: stable@vger.kernel.org
Signed-off-by: default avatarAlexandra Winter <wintera@linux.ibm.com>
Link: https://lore.kernel.org/r/20240206085849.2902775-1-wintera@linux.ibm.com


Signed-off-by: default avatarPaolo Abeni <pabeni@redhat.com>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 2b5128c7
Loading
Loading
Loading
Loading
+6 −3
Original line number Original line Diff line number Diff line
@@ -285,10 +285,11 @@ static void qeth_l3_clear_ip_htable(struct qeth_card *card, int recover)
		if (!recover) {
		if (!recover) {
			hash_del(&addr->hnode);
			hash_del(&addr->hnode);
			kfree(addr);
			kfree(addr);
			continue;
		} else {
		}
			/* prepare for recovery */
			addr->disp_flag = QETH_DISP_ADDR_ADD;
			addr->disp_flag = QETH_DISP_ADDR_ADD;
		}
		}
	}


	spin_unlock_bh(&card->ip_lock);
	spin_unlock_bh(&card->ip_lock);


@@ -325,11 +326,13 @@ static void qeth_l3_recover_ip(struct qeth_card *card)
			} else
			} else
				rc = qeth_l3_register_addr_entry(card, addr);
				rc = qeth_l3_register_addr_entry(card, addr);


			if (!rc) {
			if (!rc || rc == -EADDRINUSE || rc == -ENETDOWN) {
				/* keep it in the records */
				addr->disp_flag = QETH_DISP_ADDR_DO_NOTHING;
				addr->disp_flag = QETH_DISP_ADDR_DO_NOTHING;
				if (addr->ref_counter < 1)
				if (addr->ref_counter < 1)
					qeth_l3_delete_ip(card, addr);
					qeth_l3_delete_ip(card, addr);
			} else {
			} else {
				/* bad address */
				hash_del(&addr->hnode);
				hash_del(&addr->hnode);
				kfree(addr);
				kfree(addr);
			}
			}