You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
119 lines
3.3 KiB
119 lines
3.3 KiB
From 7e8cc8388ac31c5c2b1a423c6b2da0491b19f6f9 Mon Sep 17 00:00:00 2001
|
|
From: Pavel Zhukov <pzhukov@redhat.com>
|
|
Date: Thu, 21 Feb 2019 10:22:41 +0100
|
|
Subject: [PATCH 04/26] Support unicast BOOTP for IBM pSeries systems (and
|
|
maybe others)
|
|
Cc: pzhukov@redhat.com
|
|
|
|
---
|
|
server/bootp.c | 12 +++++++++++-
|
|
server/dhcp.c | 33 ++++++++++++++++++++++++++-------
|
|
2 files changed, 37 insertions(+), 8 deletions(-)
|
|
|
|
diff --git a/server/bootp.c b/server/bootp.c
|
|
index 26a7607..2212f31 100644
|
|
--- a/server/bootp.c
|
|
+++ b/server/bootp.c
|
|
@@ -52,6 +52,7 @@ void bootp (packet)
|
|
char msgbuf [1024];
|
|
int ignorep;
|
|
int peer_has_leases = 0;
|
|
+ int norelay = 0;
|
|
|
|
if (packet -> raw -> op != BOOTREQUEST)
|
|
return;
|
|
@@ -67,7 +68,7 @@ void bootp (packet)
|
|
? inet_ntoa (packet -> raw -> giaddr)
|
|
: packet -> interface -> name);
|
|
|
|
- if (!locate_network (packet)) {
|
|
+ if ((norelay = locate_network (packet)) == 0) {
|
|
log_info ("%s: network unknown", msgbuf);
|
|
return;
|
|
}
|
|
@@ -428,6 +429,15 @@ void bootp (packet)
|
|
|
|
goto out;
|
|
}
|
|
+ } else if (norelay == 2) {
|
|
+ to.sin_addr = raw.ciaddr;
|
|
+ to.sin_port = remote_port;
|
|
+ if (fallback_interface) {
|
|
+ result = send_packet (fallback_interface, NULL, &raw,
|
|
+ outgoing.packet_length, from,
|
|
+ &to, &hto);
|
|
+ goto out;
|
|
+ }
|
|
|
|
/* If it comes from a client that already knows its address
|
|
and is not requesting a broadcast response, and we can
|
|
diff --git a/server/dhcp.c b/server/dhcp.c
|
|
index 6f3a91f..20f2a62 100644
|
|
--- a/server/dhcp.c
|
|
+++ b/server/dhcp.c
|
|
@@ -5224,6 +5224,7 @@ int locate_network (packet)
|
|
struct data_string data;
|
|
struct subnet *subnet = (struct subnet *)0;
|
|
struct option_cache *oc;
|
|
+ int norelay = 0;
|
|
|
|
#if defined(DHCPv6) && defined(DHCP4o6)
|
|
if (dhcpv4_over_dhcpv6 && (packet->dhcp4o6_response != NULL)) {
|
|
@@ -5245,12 +5246,24 @@ int locate_network (packet)
|
|
from the interface, if there is one. If not, fail. */
|
|
if (!oc && !packet -> raw -> giaddr.s_addr) {
|
|
if (packet -> interface -> shared_network) {
|
|
- shared_network_reference
|
|
- (&packet -> shared_network,
|
|
- packet -> interface -> shared_network, MDL);
|
|
- return 1;
|
|
+ struct in_addr any_addr;
|
|
+ any_addr.s_addr = INADDR_ANY;
|
|
+
|
|
+ if (!packet -> packet_type && memcmp(&packet -> raw -> ciaddr, &any_addr, 4)) {
|
|
+ struct iaddr cip;
|
|
+ memcpy(cip.iabuf, &packet -> raw -> ciaddr, 4);
|
|
+ cip.len = 4;
|
|
+ if (!find_grouped_subnet(&subnet, packet->interface->shared_network, cip, MDL))
|
|
+ norelay = 2;
|
|
+ }
|
|
+
|
|
+ if (!norelay) {
|
|
+ shared_network_reference(&packet -> shared_network, packet -> interface -> shared_network, MDL);
|
|
+ return 1;
|
|
+ }
|
|
+ } else {
|
|
+ return 0;
|
|
}
|
|
- return 0;
|
|
}
|
|
|
|
/* If there's an option indicating link connection, and it's valid,
|
|
@@ -5277,7 +5290,10 @@ int locate_network (packet)
|
|
data_string_forget (&data, MDL);
|
|
} else {
|
|
ia.len = 4;
|
|
- memcpy (ia.iabuf, &packet -> raw -> giaddr, 4);
|
|
+ if (norelay)
|
|
+ memcpy (ia.iabuf, &packet->raw->ciaddr, 4);
|
|
+ else
|
|
+ memcpy (ia.iabuf, &packet->raw->giaddr, 4);
|
|
}
|
|
|
|
/* If we know the subnet on which the IP address lives, use it. */
|
|
@@ -5285,7 +5301,10 @@ int locate_network (packet)
|
|
shared_network_reference (&packet -> shared_network,
|
|
subnet -> shared_network, MDL);
|
|
subnet_dereference (&subnet, MDL);
|
|
- return 1;
|
|
+ if (norelay)
|
|
+ return norelay;
|
|
+ else
|
|
+ return 1;
|
|
}
|
|
|
|
/* Otherwise, fail. */
|
|
--
|
|
2.14.5
|
|
|