grub2/SOURCES/0163-Revert-trim-arp-packet...

28 lines
1.0 KiB
Diff

From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Peter Jones <pjones@redhat.com>
Date: Thu, 18 May 2017 14:25:45 -0400
Subject: [PATCH] Revert "trim arp packets with abnormal size"
This reverts commit d11b2eb425d2125f67dd8d8e9b11d9be7d6f3f11.
---
grub-core/net/arp.c | 6 ------
1 file changed, 6 deletions(-)
diff --git a/grub-core/net/arp.c b/grub-core/net/arp.c
index d1c69ed2b..54306e3b1 100644
--- a/grub-core/net/arp.c
+++ b/grub-core/net/arp.c
@@ -150,12 +150,6 @@ grub_net_arp_receive (struct grub_net_buff *nb, struct grub_net_card *card,
if (grub_net_addr_cmp (&inf->address, &target_addr) == 0
&& arp_packet->op == grub_cpu_to_be16_compile_time (ARP_REQUEST))
{
- if ((nb->tail - nb->data) > 50)
- {
- grub_dprintf ("net", "arp packet with abnormal size (%ld bytes).\n",
- nb->tail - nb->data);
- nb->tail = nb->data + 50;
- }
grub_net_link_level_address_t target;
struct grub_net_buff nb_reply;
struct arppkt *arp_reply;