mirror of
https://github.com/sheumann/hush.git
synced 2024-12-22 14:30:31 +00:00
udhcpd: note missing sanity checks on INFORM message handling
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
290346948d
commit
f8fcc184b6
@ -247,11 +247,23 @@ static void send_inform(struct dhcp_packet *oldpacket)
|
|||||||
{
|
{
|
||||||
struct dhcp_packet packet;
|
struct dhcp_packet packet;
|
||||||
|
|
||||||
/* "The server responds to a DHCPINFORM message by sending a DHCPACK
|
/* "If a client has obtained a network address through some other means
|
||||||
|
* (e.g., manual configuration), it may use a DHCPINFORM request message
|
||||||
|
* to obtain other local configuration parameters. Servers receiving a
|
||||||
|
* DHCPINFORM message construct a DHCPACK message with any local
|
||||||
|
* configuration parameters appropriate for the client without:
|
||||||
|
* allocating a new address, checking for an existing binding, filling
|
||||||
|
* in 'yiaddr' or including lease time parameters. The servers SHOULD
|
||||||
|
* unicast the DHCPACK reply to the address given in the 'ciaddr' field
|
||||||
|
* of the DHCPINFORM message.
|
||||||
|
* ...
|
||||||
|
* The server responds to a DHCPINFORM message by sending a DHCPACK
|
||||||
* message directly to the address given in the 'ciaddr' field
|
* message directly to the address given in the 'ciaddr' field
|
||||||
* of the DHCPINFORM message. The server MUST NOT send a lease
|
* of the DHCPINFORM message. The server MUST NOT send a lease
|
||||||
* expiration time to the client and SHOULD NOT fill in 'yiaddr'."
|
* expiration time to the client and SHOULD NOT fill in 'yiaddr'."
|
||||||
*/
|
*/
|
||||||
|
//TODO: do a few sanity checks: is ciaddr set?
|
||||||
|
//Better yet: is ciaddr == IP source addr?
|
||||||
init_packet(&packet, oldpacket, DHCPACK);
|
init_packet(&packet, oldpacket, DHCPACK);
|
||||||
add_server_options(&packet);
|
add_server_options(&packet);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user