mirror of
https://github.com/ipxe/ipxe
synced 2025-12-29 11:03:15 +03:00
[xfer] Make consistent assumptions that xfer metadata can never be NULL
The documentation in xfer.h and xfer.c does not say that the metadata parameter is optional in calls such as xfer_deliver_iob_meta() and the deliver_iob() method. However, some code in net/ is prepared to accept a NULL pointer, and xfer_deliver_as_iob() passes a NULL pointer directly to the deliver_iob() method. Fix this mess of conflicting assumptions by making everything assume that the metadata parameter is mandatory, and fixing xfer_deliver_as_iob() to pass in a dummy metadata structure (as is already done in xfer_deliver_iob()).
This commit is contained in:
@@ -1052,12 +1052,6 @@ static int dhcp_deliver_iob ( struct xfer_interface *xfer,
|
||||
int rc = 0;
|
||||
|
||||
/* Sanity checks */
|
||||
if ( ! meta ) {
|
||||
DBGC ( dhcp, "DHCP %p received packet without metadata\n",
|
||||
dhcp );
|
||||
rc = -EINVAL;
|
||||
goto err_no_meta;
|
||||
}
|
||||
if ( ! meta->src ) {
|
||||
DBGC ( dhcp, "DHCP %p received packet without source port\n",
|
||||
dhcp );
|
||||
@@ -1106,7 +1100,6 @@ static int dhcp_deliver_iob ( struct xfer_interface *xfer,
|
||||
dhcppkt_put ( dhcppkt );
|
||||
err_alloc_dhcppkt:
|
||||
err_no_src:
|
||||
err_no_meta:
|
||||
free_iob ( iobuf );
|
||||
return rc;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user