Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2021-06-15 01:34:04 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2021-06-15 01:34:04 +0300
commit40a327aeae87ab53f42a5669e8c16c4615fb09c7 (patch)
treeec117927bb14f8c5ad73246556efbfce00147163 /networking/udhcp/dhcpc.c
parent52c4b7ac3bbc216cc5fd40cf150517f36e7bb87a (diff)
udhcpc: send client-id option in DHCPDECLINE
function old new delta add_serverid_and_clientid_options - 46 +46 send_decline 88 83 -5 perform_release 200 159 -41 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 0/2 up/down: 46/-46) Total: 0 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/dhcpc.c')
-rw-r--r--networking/udhcp/dhcpc.c37
1 files changed, 22 insertions, 15 deletions
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c
index 4e3d8ca5e..b80ea2f40 100644
--- a/networking/udhcp/dhcpc.c
+++ b/networking/udhcp/dhcpc.c
@@ -663,6 +663,24 @@ static void add_client_options(struct dhcp_packet *packet)
// ...add (DHCP_VENDOR, "udhcp "BB_VER) opt...
}
+static void add_serverid_and_clientid_options(struct dhcp_packet *packet, uint32_t server)
+{
+ struct option_set *ci;
+
+ udhcp_add_simple_option(packet, DHCP_SERVER_ID, server);
+
+ /* RFC 2131 section 2:
+ * If the client uses a 'client identifier' in one message,
+ * it MUST use that same identifier in all subsequent messages.
+ * section 3.1.6:
+ * If the client used a 'client identifier' when it obtained the lease,
+ * it MUST use the same 'client identifier' in the DHCPRELEASE message.
+ */
+ ci = udhcp_find_option(client_data.options, DHCP_CLIENT_ID);
+ if (ci)
+ udhcp_add_binary_option(packet, ci->data);
+}
+
/* RFC 2131
* 4.4.4 Use of broadcast and unicast
*
@@ -759,7 +777,7 @@ static NOINLINE int send_select(uint32_t xid, uint32_t server, uint32_t requeste
udhcp_add_simple_option(&packet, DHCP_SERVER_ID, server);
/* Add options: maxsize,
- * "param req" option according to -O, and options specified with -x
+ * "param req" option according to -O, options specified with -x
*/
add_client_options(&packet);
@@ -803,7 +821,7 @@ static NOINLINE int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr)
packet.ciaddr = ciaddr;
/* Add options: maxsize,
- * "param req" option according to -O, and options specified with -x
+ * "param req" option according to -O, options specified with -x
*/
add_client_options(&packet);
@@ -841,9 +859,7 @@ static NOINLINE int send_decline(/*uint32_t xid,*/ uint32_t server, uint32_t req
/* DHCPDECLINE uses "requested ip", not ciaddr, to store offered IP */
udhcp_add_simple_option(&packet, DHCP_REQUESTED_IP, requested);
- udhcp_add_simple_option(&packet, DHCP_SERVER_ID, server);
-
-//TODO: add client-id opt?
+ add_serverid_and_clientid_options(&packet, server);
bb_simple_info_msg("broadcasting decline");
return raw_bcast_from_client_data_ifindex(&packet, INADDR_ANY);
@@ -856,7 +872,6 @@ ALWAYS_INLINE /* one caller, help compiler to use this fact */
int send_release(uint32_t server, uint32_t ciaddr)
{
struct dhcp_packet packet;
- struct option_set *ci;
/* Fill in: op, htype, hlen, cookie, chaddr, random xid fields,
* message type option:
@@ -866,15 +881,7 @@ int send_release(uint32_t server, uint32_t ciaddr)
/* DHCPRELEASE uses ciaddr, not "requested ip", to store IP being released */
packet.ciaddr = ciaddr;
- udhcp_add_simple_option(&packet, DHCP_SERVER_ID, server);
-
- /* RFC 2131 section 3.1.6:
- * If the client used a 'client identifier' when it obtained the lease,
- * it MUST use the same 'client identifier' in the DHCPRELEASE message.
- */
- ci = udhcp_find_option(client_data.options, DHCP_CLIENT_ID);
- if (ci)
- udhcp_add_binary_option(&packet, ci->data);
+ add_serverid_and_clientid_options(&packet, server);
bb_info_msg("sending %s", "release");
/* Note: normally we unicast here since "server" is not zero.