2018-05-07 21:02:21 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-05-06 19:01:01 +00:00
|
|
|
/*
|
2019-09-01 13:24:47 +00:00
|
|
|
* Simple network protocol
|
|
|
|
* PXE base code protocol
|
2016-05-06 19:01:01 +00:00
|
|
|
*
|
2019-09-01 13:24:47 +00:00
|
|
|
* Copyright (c) 2016 Alexander Graf
|
|
|
|
*
|
|
|
|
* The simple network protocol has the following statuses and services
|
|
|
|
* to move between them:
|
|
|
|
*
|
|
|
|
* Start(): EfiSimpleNetworkStopped -> EfiSimpleNetworkStarted
|
|
|
|
* Initialize(): EfiSimpleNetworkStarted -> EfiSimpleNetworkInitialized
|
|
|
|
* Shutdown(): EfiSimpleNetworkInitialized -> EfiSimpleNetworkStarted
|
|
|
|
* Stop(): EfiSimpleNetworkStarted -> EfiSimpleNetworkStopped
|
|
|
|
* Reset(): EfiSimpleNetworkInitialized -> EfiSimpleNetworkInitialized
|
2016-05-06 19:01:01 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <efi_loader.h>
|
|
|
|
#include <malloc.h>
|
2020-05-10 17:39:56 +00:00
|
|
|
#include <net.h>
|
2016-05-06 19:01:01 +00:00
|
|
|
|
2019-04-20 05:39:11 +00:00
|
|
|
static const efi_guid_t efi_net_guid = EFI_SIMPLE_NETWORK_PROTOCOL_GUID;
|
2019-08-06 06:13:33 +00:00
|
|
|
static const efi_guid_t efi_pxe_base_code_protocol_guid =
|
|
|
|
EFI_PXE_BASE_CODE_PROTOCOL_GUID;
|
2016-05-06 19:01:01 +00:00
|
|
|
static struct efi_pxe_packet *dhcp_ack;
|
|
|
|
static void *new_tx_packet;
|
2018-11-30 23:16:32 +00:00
|
|
|
static void *transmit_buffer;
|
2020-10-07 09:04:33 +00:00
|
|
|
static uchar **receive_buffer;
|
|
|
|
static size_t *receive_lengths;
|
|
|
|
static int rx_packet_idx;
|
|
|
|
static int rx_packet_num;
|
2018-11-30 23:16:32 +00:00
|
|
|
|
2017-10-05 14:36:00 +00:00
|
|
|
/*
|
|
|
|
* The notification function of this event is called in every timer cycle
|
|
|
|
* to check if a new network packet has been received.
|
|
|
|
*/
|
|
|
|
static struct efi_event *network_timer_event;
|
2017-10-05 14:36:01 +00:00
|
|
|
/*
|
|
|
|
* This event is signaled when a packet has been received.
|
|
|
|
*/
|
|
|
|
static struct efi_event *wait_for_packet;
|
2016-05-06 19:01:01 +00:00
|
|
|
|
2018-09-26 03:27:56 +00:00
|
|
|
/**
|
|
|
|
* struct efi_net_obj - EFI object representing a network interface
|
|
|
|
*
|
|
|
|
* @header: EFI object header
|
|
|
|
* @net: simple network protocol interface
|
|
|
|
* @net_mode: status of the network interface
|
|
|
|
* @pxe: PXE base code protocol interface
|
|
|
|
* @pxe_mode: status of the PXE base code protocol
|
|
|
|
*/
|
2016-05-06 19:01:01 +00:00
|
|
|
struct efi_net_obj {
|
2018-09-26 03:27:56 +00:00
|
|
|
struct efi_object header;
|
2016-05-06 19:01:01 +00:00
|
|
|
struct efi_simple_network net;
|
|
|
|
struct efi_simple_network_mode net_mode;
|
2019-08-06 06:13:33 +00:00
|
|
|
struct efi_pxe_base_code_protocol pxe;
|
2016-05-06 19:01:01 +00:00
|
|
|
struct efi_pxe_mode pxe_mode;
|
|
|
|
};
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/*
|
|
|
|
* efi_net_start() - start the network interface
|
|
|
|
*
|
|
|
|
* This function implements the Start service of the
|
|
|
|
* EFI_SIMPLE_NETWORK_PROTOCOL. See the Unified Extensible Firmware Interface
|
|
|
|
* (UEFI) specification for details.
|
|
|
|
*
|
|
|
|
* @this: pointer to the protocol instance
|
|
|
|
* Return: status code
|
|
|
|
*/
|
2016-05-06 19:01:01 +00:00
|
|
|
static efi_status_t EFIAPI efi_net_start(struct efi_simple_network *this)
|
|
|
|
{
|
2018-11-30 23:16:33 +00:00
|
|
|
efi_status_t ret = EFI_SUCCESS;
|
|
|
|
|
2016-05-06 19:01:01 +00:00
|
|
|
EFI_ENTRY("%p", this);
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/* Check parameters */
|
|
|
|
if (!this) {
|
|
|
|
ret = EFI_INVALID_PARAMETER;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2019-08-31 07:56:30 +00:00
|
|
|
if (this->mode->state != EFI_NETWORK_STOPPED) {
|
2018-11-30 23:16:33 +00:00
|
|
|
ret = EFI_ALREADY_STARTED;
|
2019-08-31 07:56:30 +00:00
|
|
|
} else {
|
|
|
|
this->int_status = 0;
|
|
|
|
wait_for_packet->is_signaled = false;
|
2018-11-30 23:16:33 +00:00
|
|
|
this->mode->state = EFI_NETWORK_STARTED;
|
2019-08-31 07:56:30 +00:00
|
|
|
}
|
2018-11-30 23:16:33 +00:00
|
|
|
out:
|
|
|
|
return EFI_EXIT(ret);
|
2016-05-06 19:01:01 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/*
|
|
|
|
* efi_net_stop() - stop the network interface
|
|
|
|
*
|
|
|
|
* This function implements the Stop service of the
|
|
|
|
* EFI_SIMPLE_NETWORK_PROTOCOL. See the Unified Extensible Firmware Interface
|
|
|
|
* (UEFI) specification for details.
|
|
|
|
*
|
|
|
|
* @this: pointer to the protocol instance
|
|
|
|
* Return: status code
|
|
|
|
*/
|
2016-05-06 19:01:01 +00:00
|
|
|
static efi_status_t EFIAPI efi_net_stop(struct efi_simple_network *this)
|
|
|
|
{
|
2018-11-30 23:16:33 +00:00
|
|
|
efi_status_t ret = EFI_SUCCESS;
|
|
|
|
|
2016-05-06 19:01:01 +00:00
|
|
|
EFI_ENTRY("%p", this);
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/* Check parameters */
|
|
|
|
if (!this) {
|
|
|
|
ret = EFI_INVALID_PARAMETER;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2019-09-01 13:24:47 +00:00
|
|
|
if (this->mode->state == EFI_NETWORK_STOPPED) {
|
2018-11-30 23:16:33 +00:00
|
|
|
ret = EFI_NOT_STARTED;
|
2019-09-01 13:24:47 +00:00
|
|
|
} else {
|
|
|
|
/* Disable hardware and put it into the reset state */
|
|
|
|
eth_halt();
|
2020-10-07 09:04:33 +00:00
|
|
|
/* Clear cache of packets */
|
|
|
|
rx_packet_num = 0;
|
2018-11-30 23:16:33 +00:00
|
|
|
this->mode->state = EFI_NETWORK_STOPPED;
|
2019-09-01 13:24:47 +00:00
|
|
|
}
|
2018-11-30 23:16:33 +00:00
|
|
|
out:
|
|
|
|
return EFI_EXIT(ret);
|
2016-05-06 19:01:01 +00:00
|
|
|
}
|
|
|
|
|
2018-04-03 20:06:52 +00:00
|
|
|
/*
|
2018-11-30 23:16:33 +00:00
|
|
|
* efi_net_initialize() - initialize the network interface
|
2018-04-03 20:06:52 +00:00
|
|
|
*
|
|
|
|
* This function implements the Initialize service of the
|
|
|
|
* EFI_SIMPLE_NETWORK_PROTOCOL. See the Unified Extensible Firmware Interface
|
|
|
|
* (UEFI) specification for details.
|
|
|
|
*
|
|
|
|
* @this: pointer to the protocol instance
|
|
|
|
* @extra_rx: extra receive buffer to be allocated
|
|
|
|
* @extra_tx: extra transmit buffer to be allocated
|
2018-11-30 23:16:33 +00:00
|
|
|
* Return: status code
|
2018-04-03 20:06:52 +00:00
|
|
|
*/
|
2016-05-06 19:01:01 +00:00
|
|
|
static efi_status_t EFIAPI efi_net_initialize(struct efi_simple_network *this,
|
|
|
|
ulong extra_rx, ulong extra_tx)
|
|
|
|
{
|
2018-04-03 20:06:52 +00:00
|
|
|
int ret;
|
|
|
|
efi_status_t r = EFI_SUCCESS;
|
2016-05-06 19:01:01 +00:00
|
|
|
|
2018-04-03 20:06:52 +00:00
|
|
|
EFI_ENTRY("%p, %lx, %lx", this, extra_rx, extra_tx);
|
2016-05-06 19:01:01 +00:00
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/* Check parameters */
|
2018-04-03 20:06:52 +00:00
|
|
|
if (!this) {
|
|
|
|
r = EFI_INVALID_PARAMETER;
|
2018-11-30 23:16:33 +00:00
|
|
|
goto out;
|
2018-04-03 20:06:52 +00:00
|
|
|
}
|
|
|
|
|
2019-09-01 13:24:47 +00:00
|
|
|
switch (this->mode->state) {
|
|
|
|
case EFI_NETWORK_INITIALIZED:
|
|
|
|
case EFI_NETWORK_STARTED:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
r = EFI_NOT_STARTED;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2018-04-03 20:06:52 +00:00
|
|
|
/* Setup packet buffers */
|
|
|
|
net_init();
|
|
|
|
/* Disable hardware and put it into the reset state */
|
|
|
|
eth_halt();
|
2020-10-07 09:04:33 +00:00
|
|
|
/* Clear cache of packets */
|
|
|
|
rx_packet_num = 0;
|
2018-04-03 20:06:52 +00:00
|
|
|
/* Set current device according to environment variables */
|
|
|
|
eth_set_current();
|
|
|
|
/* Get hardware ready for send and receive operations */
|
|
|
|
ret = eth_init();
|
|
|
|
if (ret < 0) {
|
|
|
|
eth_halt();
|
2018-11-30 23:16:33 +00:00
|
|
|
this->mode->state = EFI_NETWORK_STOPPED;
|
2018-04-03 20:06:52 +00:00
|
|
|
r = EFI_DEVICE_ERROR;
|
2018-11-30 23:16:33 +00:00
|
|
|
goto out;
|
|
|
|
} else {
|
2019-08-31 07:56:30 +00:00
|
|
|
this->int_status = 0;
|
|
|
|
wait_for_packet->is_signaled = false;
|
2018-11-30 23:16:33 +00:00
|
|
|
this->mode->state = EFI_NETWORK_INITIALIZED;
|
2018-04-03 20:06:52 +00:00
|
|
|
}
|
2018-11-30 23:16:33 +00:00
|
|
|
out:
|
2018-04-03 20:06:52 +00:00
|
|
|
return EFI_EXIT(r);
|
2016-05-06 19:01:01 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/*
|
|
|
|
* efi_net_reset() - reinitialize the network interface
|
|
|
|
*
|
|
|
|
* This function implements the Reset service of the
|
|
|
|
* EFI_SIMPLE_NETWORK_PROTOCOL. See the Unified Extensible Firmware Interface
|
|
|
|
* (UEFI) specification for details.
|
|
|
|
*
|
|
|
|
* @this: pointer to the protocol instance
|
|
|
|
* @extended_verification: execute exhaustive verification
|
|
|
|
* Return: status code
|
|
|
|
*/
|
2016-05-06 19:01:01 +00:00
|
|
|
static efi_status_t EFIAPI efi_net_reset(struct efi_simple_network *this,
|
|
|
|
int extended_verification)
|
|
|
|
{
|
2019-09-01 13:24:47 +00:00
|
|
|
efi_status_t ret;
|
|
|
|
|
2016-05-06 19:01:01 +00:00
|
|
|
EFI_ENTRY("%p, %x", this, extended_verification);
|
|
|
|
|
2019-09-01 13:24:47 +00:00
|
|
|
/* Check parameters */
|
|
|
|
if (!this) {
|
|
|
|
ret = EFI_INVALID_PARAMETER;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (this->mode->state) {
|
|
|
|
case EFI_NETWORK_INITIALIZED:
|
|
|
|
break;
|
|
|
|
case EFI_NETWORK_STOPPED:
|
|
|
|
ret = EFI_NOT_STARTED;
|
|
|
|
goto out;
|
|
|
|
default:
|
|
|
|
ret = EFI_DEVICE_ERROR;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
this->mode->state = EFI_NETWORK_STARTED;
|
|
|
|
ret = EFI_CALL(efi_net_initialize(this, 0, 0));
|
|
|
|
out:
|
|
|
|
return EFI_EXIT(ret);
|
2016-05-06 19:01:01 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/*
|
|
|
|
* efi_net_shutdown() - shut down the network interface
|
|
|
|
*
|
|
|
|
* This function implements the Shutdown service of the
|
|
|
|
* EFI_SIMPLE_NETWORK_PROTOCOL. See the Unified Extensible Firmware Interface
|
|
|
|
* (UEFI) specification for details.
|
|
|
|
*
|
|
|
|
* @this: pointer to the protocol instance
|
|
|
|
* Return: status code
|
|
|
|
*/
|
2016-05-06 19:01:01 +00:00
|
|
|
static efi_status_t EFIAPI efi_net_shutdown(struct efi_simple_network *this)
|
|
|
|
{
|
2018-11-30 23:16:33 +00:00
|
|
|
efi_status_t ret = EFI_SUCCESS;
|
|
|
|
|
2016-05-06 19:01:01 +00:00
|
|
|
EFI_ENTRY("%p", this);
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/* Check parameters */
|
|
|
|
if (!this) {
|
|
|
|
ret = EFI_INVALID_PARAMETER;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2019-09-01 13:24:47 +00:00
|
|
|
switch (this->mode->state) {
|
|
|
|
case EFI_NETWORK_INITIALIZED:
|
|
|
|
break;
|
|
|
|
case EFI_NETWORK_STOPPED:
|
|
|
|
ret = EFI_NOT_STARTED;
|
|
|
|
goto out;
|
|
|
|
default:
|
|
|
|
ret = EFI_DEVICE_ERROR;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
eth_halt();
|
2019-08-31 07:56:30 +00:00
|
|
|
this->int_status = 0;
|
|
|
|
wait_for_packet->is_signaled = false;
|
2019-09-01 13:24:47 +00:00
|
|
|
this->mode->state = EFI_NETWORK_STARTED;
|
2018-11-30 23:16:33 +00:00
|
|
|
|
|
|
|
out:
|
|
|
|
return EFI_EXIT(ret);
|
2016-05-06 19:01:01 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/*
|
|
|
|
* efi_net_receive_filters() - mange multicast receive filters
|
|
|
|
*
|
|
|
|
* This function implements the ReceiveFilters service of the
|
|
|
|
* EFI_SIMPLE_NETWORK_PROTOCOL. See the Unified Extensible Firmware Interface
|
|
|
|
* (UEFI) specification for details.
|
|
|
|
*
|
|
|
|
* @this: pointer to the protocol instance
|
|
|
|
* @enable: bit mask of receive filters to enable
|
|
|
|
* @disable: bit mask of receive filters to disable
|
|
|
|
* @reset_mcast_filter: true resets contents of the filters
|
|
|
|
* @mcast_filter_count: number of hardware MAC addresses in the new filters list
|
|
|
|
* @mcast_filter: list of new filters
|
|
|
|
* Return: status code
|
|
|
|
*/
|
|
|
|
static efi_status_t EFIAPI efi_net_receive_filters
|
|
|
|
(struct efi_simple_network *this, u32 enable, u32 disable,
|
|
|
|
int reset_mcast_filter, ulong mcast_filter_count,
|
|
|
|
struct efi_mac_address *mcast_filter)
|
2016-05-06 19:01:01 +00:00
|
|
|
{
|
|
|
|
EFI_ENTRY("%p, %x, %x, %x, %lx, %p", this, enable, disable,
|
|
|
|
reset_mcast_filter, mcast_filter_count, mcast_filter);
|
|
|
|
|
2017-10-05 14:35:59 +00:00
|
|
|
return EFI_EXIT(EFI_UNSUPPORTED);
|
2016-05-06 19:01:01 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/*
|
|
|
|
* efi_net_station_address() - set the hardware MAC address
|
|
|
|
*
|
|
|
|
* This function implements the StationAddress service of the
|
|
|
|
* EFI_SIMPLE_NETWORK_PROTOCOL. See the Unified Extensible Firmware Interface
|
|
|
|
* (UEFI) specification for details.
|
|
|
|
*
|
|
|
|
* @this: pointer to the protocol instance
|
|
|
|
* @reset: if true reset the address to default
|
|
|
|
* @new_mac: new MAC address
|
|
|
|
* Return: status code
|
|
|
|
*/
|
|
|
|
static efi_status_t EFIAPI efi_net_station_address
|
|
|
|
(struct efi_simple_network *this, int reset,
|
|
|
|
struct efi_mac_address *new_mac)
|
2016-05-06 19:01:01 +00:00
|
|
|
{
|
|
|
|
EFI_ENTRY("%p, %x, %p", this, reset, new_mac);
|
|
|
|
|
2017-10-05 14:35:59 +00:00
|
|
|
return EFI_EXIT(EFI_UNSUPPORTED);
|
2016-05-06 19:01:01 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/*
|
|
|
|
* efi_net_statistics() - reset or collect statistics of the network interface
|
|
|
|
*
|
|
|
|
* This function implements the Statistics service of the
|
|
|
|
* EFI_SIMPLE_NETWORK_PROTOCOL. See the Unified Extensible Firmware Interface
|
|
|
|
* (UEFI) specification for details.
|
|
|
|
*
|
|
|
|
* @this: pointer to the protocol instance
|
|
|
|
* @reset: if true, the statistics are reset
|
|
|
|
* @stat_size: size of the statistics table
|
|
|
|
* @stat_table: table to receive the statistics
|
|
|
|
* Return: status code
|
|
|
|
*/
|
2016-05-06 19:01:01 +00:00
|
|
|
static efi_status_t EFIAPI efi_net_statistics(struct efi_simple_network *this,
|
|
|
|
int reset, ulong *stat_size,
|
|
|
|
void *stat_table)
|
|
|
|
{
|
|
|
|
EFI_ENTRY("%p, %x, %p, %p", this, reset, stat_size, stat_table);
|
|
|
|
|
2017-10-05 14:35:59 +00:00
|
|
|
return EFI_EXIT(EFI_UNSUPPORTED);
|
2016-05-06 19:01:01 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/*
|
|
|
|
* efi_net_mcastiptomac() - translate multicast IP address to MAC address
|
|
|
|
*
|
2019-09-01 15:17:53 +00:00
|
|
|
* This function implements the MCastIPtoMAC service of the
|
2018-11-30 23:16:33 +00:00
|
|
|
* EFI_SIMPLE_NETWORK_PROTOCOL. See the Unified Extensible Firmware Interface
|
|
|
|
* (UEFI) specification for details.
|
|
|
|
*
|
|
|
|
* @this: pointer to the protocol instance
|
|
|
|
* @ipv6: true if the IP address is an IPv6 address
|
|
|
|
* @ip: IP address
|
|
|
|
* @mac: MAC address
|
|
|
|
* Return: status code
|
|
|
|
*/
|
2016-05-06 19:01:01 +00:00
|
|
|
static efi_status_t EFIAPI efi_net_mcastiptomac(struct efi_simple_network *this,
|
|
|
|
int ipv6,
|
|
|
|
struct efi_ip_address *ip,
|
|
|
|
struct efi_mac_address *mac)
|
|
|
|
{
|
2019-09-01 15:17:53 +00:00
|
|
|
efi_status_t ret = EFI_SUCCESS;
|
|
|
|
|
2016-05-06 19:01:01 +00:00
|
|
|
EFI_ENTRY("%p, %x, %p, %p", this, ipv6, ip, mac);
|
|
|
|
|
2019-09-01 15:17:53 +00:00
|
|
|
if (!this || !ip || !mac) {
|
|
|
|
ret = EFI_INVALID_PARAMETER;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ipv6) {
|
|
|
|
ret = EFI_UNSUPPORTED;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Multi-cast addresses are in the range 224.0.0.0 - 239.255.255.255 */
|
|
|
|
if ((ip->ip_addr[0] & 0xf0) != 0xe0) {
|
|
|
|
ret = EFI_INVALID_PARAMETER;
|
|
|
|
goto out;
|
|
|
|
};
|
|
|
|
|
|
|
|
switch (this->mode->state) {
|
|
|
|
case EFI_NETWORK_INITIALIZED:
|
|
|
|
case EFI_NETWORK_STARTED:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = EFI_NOT_STARTED;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(mac, 0, sizeof(struct efi_mac_address));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copy lower 23 bits of IPv4 multi-cast address
|
|
|
|
* RFC 1112, RFC 7042 2.1.1.
|
|
|
|
*/
|
|
|
|
mac->mac_addr[0] = 0x01;
|
|
|
|
mac->mac_addr[1] = 0x00;
|
|
|
|
mac->mac_addr[2] = 0x5E;
|
|
|
|
mac->mac_addr[3] = ip->ip_addr[1] & 0x7F;
|
|
|
|
mac->mac_addr[4] = ip->ip_addr[2];
|
|
|
|
mac->mac_addr[5] = ip->ip_addr[3];
|
|
|
|
out:
|
|
|
|
return EFI_EXIT(ret);
|
2016-05-06 19:01:01 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/**
|
|
|
|
* efi_net_nvdata() - read or write NVRAM
|
|
|
|
*
|
|
|
|
* This function implements the GetStatus service of the Simple Network
|
|
|
|
* Protocol. See the UEFI spec for details.
|
|
|
|
*
|
|
|
|
* @this: the instance of the Simple Network Protocol
|
2019-09-05 18:37:13 +00:00
|
|
|
* @read_write: true for read, false for write
|
2018-11-30 23:16:33 +00:00
|
|
|
* @offset: offset in NVRAM
|
|
|
|
* @buffer_size: size of buffer
|
|
|
|
* @buffer: buffer
|
|
|
|
* Return: status code
|
|
|
|
*/
|
2016-05-06 19:01:01 +00:00
|
|
|
static efi_status_t EFIAPI efi_net_nvdata(struct efi_simple_network *this,
|
|
|
|
int read_write, ulong offset,
|
|
|
|
ulong buffer_size, char *buffer)
|
|
|
|
{
|
|
|
|
EFI_ENTRY("%p, %x, %lx, %lx, %p", this, read_write, offset, buffer_size,
|
|
|
|
buffer);
|
|
|
|
|
2017-10-05 14:35:59 +00:00
|
|
|
return EFI_EXIT(EFI_UNSUPPORTED);
|
2016-05-06 19:01:01 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/**
|
|
|
|
* efi_net_get_status() - get interrupt status
|
|
|
|
*
|
|
|
|
* This function implements the GetStatus service of the Simple Network
|
|
|
|
* Protocol. See the UEFI spec for details.
|
|
|
|
*
|
|
|
|
* @this: the instance of the Simple Network Protocol
|
|
|
|
* @int_status: interface status
|
|
|
|
* @txbuf: transmission buffer
|
|
|
|
*/
|
2016-05-06 19:01:01 +00:00
|
|
|
static efi_status_t EFIAPI efi_net_get_status(struct efi_simple_network *this,
|
|
|
|
u32 *int_status, void **txbuf)
|
|
|
|
{
|
2018-11-30 23:16:33 +00:00
|
|
|
efi_status_t ret = EFI_SUCCESS;
|
|
|
|
|
2016-05-06 19:01:01 +00:00
|
|
|
EFI_ENTRY("%p, %p, %p", this, int_status, txbuf);
|
|
|
|
|
2017-10-05 14:36:02 +00:00
|
|
|
efi_timer_check();
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/* Check parameters */
|
|
|
|
if (!this) {
|
|
|
|
ret = EFI_INVALID_PARAMETER;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (this->mode->state) {
|
|
|
|
case EFI_NETWORK_STOPPED:
|
|
|
|
ret = EFI_NOT_STARTED;
|
|
|
|
goto out;
|
|
|
|
case EFI_NETWORK_STARTED:
|
|
|
|
ret = EFI_DEVICE_ERROR;
|
|
|
|
goto out;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-10-05 14:36:02 +00:00
|
|
|
if (int_status) {
|
2019-08-31 07:56:30 +00:00
|
|
|
*int_status = this->int_status;
|
|
|
|
this->int_status = 0;
|
2017-10-05 14:36:02 +00:00
|
|
|
}
|
2016-05-06 19:01:01 +00:00
|
|
|
if (txbuf)
|
|
|
|
*txbuf = new_tx_packet;
|
|
|
|
|
|
|
|
new_tx_packet = NULL;
|
2018-11-30 23:16:33 +00:00
|
|
|
out:
|
|
|
|
return EFI_EXIT(ret);
|
2016-05-06 19:01:01 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/**
|
|
|
|
* efi_net_transmit() - transmit a packet
|
|
|
|
*
|
|
|
|
* This function implements the Transmit service of the Simple Network Protocol.
|
|
|
|
* See the UEFI spec for details.
|
|
|
|
*
|
|
|
|
* @this: the instance of the Simple Network Protocol
|
|
|
|
* @header_size: size of the media header
|
|
|
|
* @buffer_size: size of the buffer to receive the packet
|
|
|
|
* @buffer: buffer to receive the packet
|
|
|
|
* @src_addr: source hardware MAC address
|
|
|
|
* @dest_addr: destination hardware MAC address
|
|
|
|
* @protocol: type of header to build
|
|
|
|
* Return: status code
|
|
|
|
*/
|
|
|
|
static efi_status_t EFIAPI efi_net_transmit
|
|
|
|
(struct efi_simple_network *this, size_t header_size,
|
|
|
|
size_t buffer_size, void *buffer,
|
|
|
|
struct efi_mac_address *src_addr,
|
|
|
|
struct efi_mac_address *dest_addr, u16 *protocol)
|
2016-05-06 19:01:01 +00:00
|
|
|
{
|
2018-11-30 23:16:33 +00:00
|
|
|
efi_status_t ret = EFI_SUCCESS;
|
|
|
|
|
2017-10-05 14:36:03 +00:00
|
|
|
EFI_ENTRY("%p, %lu, %lu, %p, %p, %p, %p", this,
|
|
|
|
(unsigned long)header_size, (unsigned long)buffer_size,
|
|
|
|
buffer, src_addr, dest_addr, protocol);
|
2016-05-06 19:01:01 +00:00
|
|
|
|
2017-10-05 14:36:00 +00:00
|
|
|
efi_timer_check();
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/* Check parameters */
|
2019-05-15 21:27:43 +00:00
|
|
|
if (!this || !buffer) {
|
2018-11-30 23:16:33 +00:00
|
|
|
ret = EFI_INVALID_PARAMETER;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We do not support jumbo packets */
|
|
|
|
if (buffer_size > PKTSIZE_ALIGN) {
|
|
|
|
ret = EFI_INVALID_PARAMETER;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2019-08-31 08:55:29 +00:00
|
|
|
/* At least the IP header has to fit into the buffer */
|
|
|
|
if (buffer_size < this->mode->media_header_size) {
|
|
|
|
ret = EFI_BUFFER_TOO_SMALL;
|
2018-11-30 23:16:33 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2019-08-31 08:55:29 +00:00
|
|
|
/*
|
|
|
|
* TODO:
|
|
|
|
* Support VLANs. Use net_set_ether() for copying the header. Use a
|
|
|
|
* U_BOOT_ENV_CALLBACK to update the media header size.
|
|
|
|
*/
|
|
|
|
if (header_size) {
|
|
|
|
struct ethernet_hdr *header = buffer;
|
|
|
|
|
|
|
|
if (!dest_addr || !protocol ||
|
|
|
|
header_size != this->mode->media_header_size) {
|
|
|
|
ret = EFI_INVALID_PARAMETER;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (!src_addr)
|
|
|
|
src_addr = &this->mode->current_address;
|
|
|
|
|
|
|
|
memcpy(header->et_dest, dest_addr, ARP_HLEN);
|
|
|
|
memcpy(header->et_src, src_addr, ARP_HLEN);
|
|
|
|
header->et_protlen = htons(*protocol);
|
|
|
|
}
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
switch (this->mode->state) {
|
|
|
|
case EFI_NETWORK_STOPPED:
|
|
|
|
ret = EFI_NOT_STARTED;
|
|
|
|
goto out;
|
|
|
|
case EFI_NETWORK_STARTED:
|
|
|
|
ret = EFI_DEVICE_ERROR;
|
|
|
|
goto out;
|
|
|
|
default:
|
|
|
|
break;
|
2016-05-06 19:01:01 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/* Ethernet packets always fit, just bounce */
|
2018-11-30 23:16:32 +00:00
|
|
|
memcpy(transmit_buffer, buffer, buffer_size);
|
|
|
|
net_send_packet(transmit_buffer, buffer_size);
|
2016-09-06 12:26:27 +00:00
|
|
|
|
2016-05-06 19:01:01 +00:00
|
|
|
new_tx_packet = buffer;
|
2019-08-31 07:56:30 +00:00
|
|
|
this->int_status |= EFI_SIMPLE_NETWORK_TRANSMIT_INTERRUPT;
|
2018-11-30 23:16:33 +00:00
|
|
|
out:
|
|
|
|
return EFI_EXIT(ret);
|
2016-05-06 19:01:01 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/**
|
|
|
|
* efi_net_receive() - receive a packet from a network interface
|
2017-10-05 14:36:03 +00:00
|
|
|
*
|
|
|
|
* This function implements the Receive service of the Simple Network Protocol.
|
|
|
|
* See the UEFI spec for details.
|
|
|
|
*
|
2018-11-30 23:16:33 +00:00
|
|
|
* @this: the instance of the Simple Network Protocol
|
|
|
|
* @header_size: size of the media header
|
|
|
|
* @buffer_size: size of the buffer to receive the packet
|
|
|
|
* @buffer: buffer to receive the packet
|
|
|
|
* @src_addr: source MAC address
|
|
|
|
* @dest_addr: destination MAC address
|
|
|
|
* @protocol: protocol
|
|
|
|
* Return: status code
|
2017-10-05 14:36:03 +00:00
|
|
|
*/
|
2018-11-30 23:16:33 +00:00
|
|
|
static efi_status_t EFIAPI efi_net_receive
|
|
|
|
(struct efi_simple_network *this, size_t *header_size,
|
|
|
|
size_t *buffer_size, void *buffer,
|
|
|
|
struct efi_mac_address *src_addr,
|
|
|
|
struct efi_mac_address *dest_addr, u16 *protocol)
|
2016-05-06 19:01:01 +00:00
|
|
|
{
|
2018-11-30 23:16:33 +00:00
|
|
|
efi_status_t ret = EFI_SUCCESS;
|
2017-10-05 14:36:04 +00:00
|
|
|
struct ethernet_hdr *eth_hdr;
|
|
|
|
size_t hdr_size = sizeof(struct ethernet_hdr);
|
|
|
|
u16 protlen;
|
|
|
|
|
2016-05-06 19:01:01 +00:00
|
|
|
EFI_ENTRY("%p, %p, %p, %p, %p, %p, %p", this, header_size,
|
|
|
|
buffer_size, buffer, src_addr, dest_addr, protocol);
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/* Execute events */
|
2017-10-05 14:36:00 +00:00
|
|
|
efi_timer_check();
|
2016-05-06 19:01:01 +00:00
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/* Check parameters */
|
2019-05-15 21:27:43 +00:00
|
|
|
if (!this || !buffer || !buffer_size) {
|
2018-11-30 23:16:33 +00:00
|
|
|
ret = EFI_INVALID_PARAMETER;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (this->mode->state) {
|
|
|
|
case EFI_NETWORK_STOPPED:
|
|
|
|
ret = EFI_NOT_STARTED;
|
|
|
|
goto out;
|
|
|
|
case EFI_NETWORK_STARTED:
|
|
|
|
ret = EFI_DEVICE_ERROR;
|
|
|
|
goto out;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-10-07 09:04:33 +00:00
|
|
|
if (!rx_packet_num) {
|
2018-11-30 23:16:33 +00:00
|
|
|
ret = EFI_NOT_READY;
|
|
|
|
goto out;
|
|
|
|
}
|
2017-10-05 14:36:04 +00:00
|
|
|
/* Fill export parameters */
|
2020-10-07 09:04:33 +00:00
|
|
|
eth_hdr = (struct ethernet_hdr *)receive_buffer[rx_packet_idx];
|
2017-10-05 14:36:04 +00:00
|
|
|
protlen = ntohs(eth_hdr->et_protlen);
|
|
|
|
if (protlen == 0x8100) {
|
|
|
|
hdr_size += 4;
|
2020-10-07 09:04:33 +00:00
|
|
|
protlen = ntohs(*(u16 *)&receive_buffer[rx_packet_idx][hdr_size - 2]);
|
2017-10-05 14:36:04 +00:00
|
|
|
}
|
|
|
|
if (header_size)
|
|
|
|
*header_size = hdr_size;
|
|
|
|
if (dest_addr)
|
|
|
|
memcpy(dest_addr, eth_hdr->et_dest, ARP_HLEN);
|
|
|
|
if (src_addr)
|
|
|
|
memcpy(src_addr, eth_hdr->et_src, ARP_HLEN);
|
|
|
|
if (protocol)
|
|
|
|
*protocol = protlen;
|
2020-10-07 09:04:33 +00:00
|
|
|
if (*buffer_size < receive_lengths[rx_packet_idx]) {
|
2018-10-18 19:51:38 +00:00
|
|
|
/* Packet doesn't fit, try again with bigger buffer */
|
2020-10-07 09:04:33 +00:00
|
|
|
*buffer_size = receive_lengths[rx_packet_idx];
|
2018-11-30 23:16:33 +00:00
|
|
|
ret = EFI_BUFFER_TOO_SMALL;
|
|
|
|
goto out;
|
2016-05-06 19:01:01 +00:00
|
|
|
}
|
2017-10-05 14:36:04 +00:00
|
|
|
/* Copy packet */
|
2020-10-07 09:04:33 +00:00
|
|
|
memcpy(buffer, receive_buffer[rx_packet_idx],
|
|
|
|
receive_lengths[rx_packet_idx]);
|
|
|
|
*buffer_size = receive_lengths[rx_packet_idx];
|
|
|
|
rx_packet_idx = (rx_packet_idx + 1) % ETH_PACKETS_BATCH_RECV;
|
|
|
|
rx_packet_num--;
|
|
|
|
if (rx_packet_num)
|
|
|
|
wait_for_packet->is_signaled = true;
|
|
|
|
else
|
|
|
|
this->int_status &= ~EFI_SIMPLE_NETWORK_RECEIVE_INTERRUPT;
|
2018-11-30 23:16:33 +00:00
|
|
|
out:
|
|
|
|
return EFI_EXIT(ret);
|
2016-05-06 19:01:01 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/**
|
|
|
|
* efi_net_set_dhcp_ack() - take note of a selected DHCP IP address
|
|
|
|
*
|
|
|
|
* This function is called by dhcp_handler().
|
2019-09-05 18:37:13 +00:00
|
|
|
*
|
|
|
|
* @pkt: packet received by dhcp_handler()
|
|
|
|
* @len: length of the packet received
|
2018-11-30 23:16:33 +00:00
|
|
|
*/
|
2016-05-06 19:01:01 +00:00
|
|
|
void efi_net_set_dhcp_ack(void *pkt, int len)
|
|
|
|
{
|
|
|
|
int maxsize = sizeof(*dhcp_ack);
|
|
|
|
|
|
|
|
if (!dhcp_ack)
|
|
|
|
dhcp_ack = malloc(maxsize);
|
|
|
|
|
|
|
|
memcpy(dhcp_ack, pkt, min(len, maxsize));
|
|
|
|
}
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/**
|
|
|
|
* efi_net_push() - callback for received network packet
|
|
|
|
*
|
|
|
|
* This function is called when a network packet is received by eth_rx().
|
|
|
|
*
|
|
|
|
* @pkt: network packet
|
|
|
|
* @len: length
|
|
|
|
*/
|
|
|
|
static void efi_net_push(void *pkt, int len)
|
|
|
|
{
|
2020-10-07 09:04:33 +00:00
|
|
|
int rx_packet_next;
|
|
|
|
|
|
|
|
/* Check that we at least received an Ethernet header */
|
|
|
|
if (len < sizeof(struct ethernet_hdr))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Check that the buffer won't overflow */
|
|
|
|
if (len > PKTSIZE_ALIGN)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Can't store more than pre-alloced buffer */
|
|
|
|
if (rx_packet_num >= ETH_PACKETS_BATCH_RECV)
|
|
|
|
return;
|
|
|
|
|
|
|
|
rx_packet_next = (rx_packet_idx + rx_packet_num) %
|
|
|
|
ETH_PACKETS_BATCH_RECV;
|
|
|
|
memcpy(receive_buffer[rx_packet_next], pkt, len);
|
|
|
|
receive_lengths[rx_packet_next] = len;
|
|
|
|
|
|
|
|
rx_packet_num++;
|
2018-11-30 23:16:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* efi_network_timer_notify() - check if a new network packet has been received
|
2017-10-05 14:36:00 +00:00
|
|
|
*
|
|
|
|
* This notification function is called in every timer cycle.
|
|
|
|
*
|
2019-09-05 18:37:13 +00:00
|
|
|
* @event: the event for which this notification function is registered
|
|
|
|
* @context: event context - not used in this function
|
2017-10-05 14:36:00 +00:00
|
|
|
*/
|
|
|
|
static void EFIAPI efi_network_timer_notify(struct efi_event *event,
|
|
|
|
void *context)
|
|
|
|
{
|
2018-11-30 23:16:33 +00:00
|
|
|
struct efi_simple_network *this = (struct efi_simple_network *)context;
|
|
|
|
|
2017-10-05 14:36:00 +00:00
|
|
|
EFI_ENTRY("%p, %p", event, context);
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/*
|
|
|
|
* Some network drivers do not support calling eth_rx() before
|
|
|
|
* initialization.
|
|
|
|
*/
|
|
|
|
if (!this || this->mode->state != EFI_NETWORK_INITIALIZED)
|
|
|
|
goto out;
|
|
|
|
|
2020-10-07 09:04:33 +00:00
|
|
|
if (!rx_packet_num) {
|
2017-10-05 14:36:00 +00:00
|
|
|
push_packet = efi_net_push;
|
|
|
|
eth_rx();
|
|
|
|
push_packet = NULL;
|
2020-10-07 09:04:33 +00:00
|
|
|
if (rx_packet_num) {
|
|
|
|
this->int_status |=
|
|
|
|
EFI_SIMPLE_NETWORK_RECEIVE_INTERRUPT;
|
|
|
|
wait_for_packet->is_signaled = true;
|
2019-08-31 07:56:30 +00:00
|
|
|
}
|
2017-10-05 14:36:00 +00:00
|
|
|
}
|
2018-11-30 23:16:33 +00:00
|
|
|
out:
|
2017-10-05 14:36:00 +00:00
|
|
|
EFI_EXIT(EFI_SUCCESS);
|
|
|
|
}
|
|
|
|
|
2019-08-06 06:13:33 +00:00
|
|
|
static efi_status_t EFIAPI efi_pxe_base_code_start(
|
|
|
|
struct efi_pxe_base_code_protocol *this,
|
|
|
|
u8 use_ipv6)
|
|
|
|
{
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static efi_status_t EFIAPI efi_pxe_base_code_stop(
|
|
|
|
struct efi_pxe_base_code_protocol *this)
|
|
|
|
{
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static efi_status_t EFIAPI efi_pxe_base_code_dhcp(
|
|
|
|
struct efi_pxe_base_code_protocol *this,
|
|
|
|
u8 sort_offers)
|
|
|
|
{
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static efi_status_t EFIAPI efi_pxe_base_code_discover(
|
|
|
|
struct efi_pxe_base_code_protocol *this,
|
|
|
|
u16 type, u16 *layer, u8 bis,
|
|
|
|
struct efi_pxe_base_code_discover_info *info)
|
|
|
|
{
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static efi_status_t EFIAPI efi_pxe_base_code_mtftp(
|
|
|
|
struct efi_pxe_base_code_protocol *this,
|
|
|
|
u32 operation, void *buffer_ptr,
|
|
|
|
u8 overwrite, efi_uintn_t *buffer_size,
|
|
|
|
struct efi_ip_address server_ip, char *filename,
|
|
|
|
struct efi_pxe_base_code_mtftp_info *info,
|
|
|
|
u8 dont_use_buffer)
|
|
|
|
{
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static efi_status_t EFIAPI efi_pxe_base_code_udp_write(
|
|
|
|
struct efi_pxe_base_code_protocol *this,
|
|
|
|
u16 op_flags, struct efi_ip_address *dest_ip,
|
|
|
|
u16 *dest_port,
|
|
|
|
struct efi_ip_address *gateway_ip,
|
|
|
|
struct efi_ip_address *src_ip, u16 *src_port,
|
|
|
|
efi_uintn_t *header_size, void *header_ptr,
|
|
|
|
efi_uintn_t *buffer_size, void *buffer_ptr)
|
|
|
|
{
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static efi_status_t EFIAPI efi_pxe_base_code_udp_read(
|
|
|
|
struct efi_pxe_base_code_protocol *this,
|
|
|
|
u16 op_flags, struct efi_ip_address *dest_ip,
|
|
|
|
u16 *dest_port, struct efi_ip_address *src_ip,
|
|
|
|
u16 *src_port, efi_uintn_t *header_size,
|
|
|
|
void *header_ptr, efi_uintn_t *buffer_size,
|
|
|
|
void *buffer_ptr)
|
|
|
|
{
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static efi_status_t EFIAPI efi_pxe_base_code_set_ip_filter(
|
|
|
|
struct efi_pxe_base_code_protocol *this,
|
|
|
|
struct efi_pxe_base_code_filter *new_filter)
|
|
|
|
{
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static efi_status_t EFIAPI efi_pxe_base_code_arp(
|
|
|
|
struct efi_pxe_base_code_protocol *this,
|
|
|
|
struct efi_ip_address *ip_addr,
|
|
|
|
struct efi_mac_address *mac_addr)
|
|
|
|
{
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static efi_status_t EFIAPI efi_pxe_base_code_set_parameters(
|
|
|
|
struct efi_pxe_base_code_protocol *this,
|
|
|
|
u8 *new_auto_arp, u8 *new_send_guid,
|
|
|
|
u8 *new_ttl, u8 *new_tos,
|
|
|
|
u8 *new_make_callback)
|
|
|
|
{
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static efi_status_t EFIAPI efi_pxe_base_code_set_station_ip(
|
|
|
|
struct efi_pxe_base_code_protocol *this,
|
|
|
|
struct efi_ip_address *new_station_ip,
|
|
|
|
struct efi_ip_address *new_subnet_mask)
|
|
|
|
{
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static efi_status_t EFIAPI efi_pxe_base_code_set_packets(
|
|
|
|
struct efi_pxe_base_code_protocol *this,
|
|
|
|
u8 *new_dhcp_discover_valid,
|
|
|
|
u8 *new_dhcp_ack_received,
|
|
|
|
u8 *new_proxy_offer_received,
|
|
|
|
u8 *new_pxe_discover_valid,
|
|
|
|
u8 *new_pxe_reply_received,
|
|
|
|
u8 *new_pxe_bis_reply_received,
|
|
|
|
EFI_PXE_BASE_CODE_PACKET *new_dchp_discover,
|
|
|
|
EFI_PXE_BASE_CODE_PACKET *new_dhcp_acc,
|
|
|
|
EFI_PXE_BASE_CODE_PACKET *new_proxy_offer,
|
|
|
|
EFI_PXE_BASE_CODE_PACKET *new_pxe_discover,
|
|
|
|
EFI_PXE_BASE_CODE_PACKET *new_pxe_reply,
|
|
|
|
EFI_PXE_BASE_CODE_PACKET *new_pxe_bis_reply)
|
|
|
|
{
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
2018-11-30 23:16:33 +00:00
|
|
|
/**
|
|
|
|
* efi_net_register() - register the simple network protocol
|
|
|
|
*
|
|
|
|
* This gets called from do_bootefi_exec().
|
|
|
|
*/
|
2018-03-03 14:28:56 +00:00
|
|
|
efi_status_t efi_net_register(void)
|
2016-05-06 19:01:01 +00:00
|
|
|
{
|
2018-11-30 23:16:33 +00:00
|
|
|
struct efi_net_obj *netobj = NULL;
|
2017-10-05 14:36:00 +00:00
|
|
|
efi_status_t r;
|
2020-10-07 09:04:33 +00:00
|
|
|
int i;
|
2016-05-06 19:01:01 +00:00
|
|
|
|
|
|
|
if (!eth_get_dev()) {
|
2018-10-18 19:51:38 +00:00
|
|
|
/* No network device active, don't expose any */
|
2018-03-03 14:28:56 +00:00
|
|
|
return EFI_SUCCESS;
|
2016-05-06 19:01:01 +00:00
|
|
|
}
|
|
|
|
|
2018-10-18 19:51:38 +00:00
|
|
|
/* We only expose the "active" network device, so one is enough */
|
2016-05-06 19:01:01 +00:00
|
|
|
netobj = calloc(1, sizeof(*netobj));
|
2018-11-30 23:16:32 +00:00
|
|
|
if (!netobj)
|
|
|
|
goto out_of_resources;
|
|
|
|
|
|
|
|
/* Allocate an aligned transmit buffer */
|
|
|
|
transmit_buffer = calloc(1, PKTSIZE_ALIGN + PKTALIGN);
|
|
|
|
if (!transmit_buffer)
|
|
|
|
goto out_of_resources;
|
|
|
|
transmit_buffer = (void *)ALIGN((uintptr_t)transmit_buffer, PKTALIGN);
|
2017-11-26 13:05:13 +00:00
|
|
|
|
2020-10-07 09:04:33 +00:00
|
|
|
/* Allocate a number of receive buffers */
|
|
|
|
receive_buffer = calloc(ETH_PACKETS_BATCH_RECV,
|
|
|
|
sizeof(*receive_buffer));
|
|
|
|
if (!receive_buffer)
|
|
|
|
goto out_of_resources;
|
|
|
|
for (i = 0; i < ETH_PACKETS_BATCH_RECV; i++) {
|
|
|
|
receive_buffer[i] = malloc(PKTSIZE_ALIGN);
|
|
|
|
if (!receive_buffer[i])
|
|
|
|
goto out_of_resources;
|
|
|
|
}
|
|
|
|
receive_lengths = calloc(ETH_PACKETS_BATCH_RECV,
|
|
|
|
sizeof(*receive_lengths));
|
|
|
|
if (!receive_lengths)
|
|
|
|
goto out_of_resources;
|
|
|
|
|
2017-11-26 13:05:13 +00:00
|
|
|
/* Hook net up to the device list */
|
2018-09-26 03:27:56 +00:00
|
|
|
efi_add_handle(&netobj->header);
|
2016-05-06 19:01:01 +00:00
|
|
|
|
|
|
|
/* Fill in object data */
|
2018-09-26 03:27:56 +00:00
|
|
|
r = efi_add_protocol(&netobj->header, &efi_net_guid,
|
2017-11-26 13:05:13 +00:00
|
|
|
&netobj->net);
|
|
|
|
if (r != EFI_SUCCESS)
|
2018-03-03 14:28:56 +00:00
|
|
|
goto failure_to_add_protocol;
|
2018-09-26 03:27:56 +00:00
|
|
|
r = efi_add_protocol(&netobj->header, &efi_guid_device_path,
|
2017-11-26 13:05:13 +00:00
|
|
|
efi_dp_from_eth());
|
|
|
|
if (r != EFI_SUCCESS)
|
2018-03-03 14:28:56 +00:00
|
|
|
goto failure_to_add_protocol;
|
2019-08-06 06:13:33 +00:00
|
|
|
r = efi_add_protocol(&netobj->header, &efi_pxe_base_code_protocol_guid,
|
2017-11-26 13:05:13 +00:00
|
|
|
&netobj->pxe);
|
|
|
|
if (r != EFI_SUCCESS)
|
2018-03-03 14:28:56 +00:00
|
|
|
goto failure_to_add_protocol;
|
2017-10-05 14:35:57 +00:00
|
|
|
netobj->net.revision = EFI_SIMPLE_NETWORK_PROTOCOL_REVISION;
|
2016-05-06 19:01:01 +00:00
|
|
|
netobj->net.start = efi_net_start;
|
|
|
|
netobj->net.stop = efi_net_stop;
|
|
|
|
netobj->net.initialize = efi_net_initialize;
|
|
|
|
netobj->net.reset = efi_net_reset;
|
|
|
|
netobj->net.shutdown = efi_net_shutdown;
|
|
|
|
netobj->net.receive_filters = efi_net_receive_filters;
|
|
|
|
netobj->net.station_address = efi_net_station_address;
|
|
|
|
netobj->net.statistics = efi_net_statistics;
|
|
|
|
netobj->net.mcastiptomac = efi_net_mcastiptomac;
|
|
|
|
netobj->net.nvdata = efi_net_nvdata;
|
|
|
|
netobj->net.get_status = efi_net_get_status;
|
|
|
|
netobj->net.transmit = efi_net_transmit;
|
|
|
|
netobj->net.receive = efi_net_receive;
|
|
|
|
netobj->net.mode = &netobj->net_mode;
|
2019-09-01 13:24:47 +00:00
|
|
|
netobj->net_mode.state = EFI_NETWORK_STOPPED;
|
2016-05-06 19:01:01 +00:00
|
|
|
memcpy(netobj->net_mode.current_address.mac_addr, eth_get_ethaddr(), 6);
|
2017-10-05 14:35:58 +00:00
|
|
|
netobj->net_mode.hwaddr_size = ARP_HLEN;
|
2019-08-31 08:55:29 +00:00
|
|
|
netobj->net_mode.media_header_size = ETHER_HDR_SIZE;
|
2016-05-06 19:01:01 +00:00
|
|
|
netobj->net_mode.max_packet_size = PKTSIZE;
|
2018-06-21 23:21:01 +00:00
|
|
|
netobj->net_mode.if_type = ARP_ETHER;
|
2016-05-06 19:01:01 +00:00
|
|
|
|
2019-08-06 06:13:33 +00:00
|
|
|
netobj->pxe.revision = EFI_PXE_BASE_CODE_PROTOCOL_REVISION;
|
|
|
|
netobj->pxe.start = efi_pxe_base_code_start;
|
|
|
|
netobj->pxe.stop = efi_pxe_base_code_stop;
|
|
|
|
netobj->pxe.dhcp = efi_pxe_base_code_dhcp;
|
|
|
|
netobj->pxe.discover = efi_pxe_base_code_discover;
|
|
|
|
netobj->pxe.mtftp = efi_pxe_base_code_mtftp;
|
|
|
|
netobj->pxe.udp_write = efi_pxe_base_code_udp_write;
|
|
|
|
netobj->pxe.udp_read = efi_pxe_base_code_udp_read;
|
|
|
|
netobj->pxe.set_ip_filter = efi_pxe_base_code_set_ip_filter;
|
|
|
|
netobj->pxe.arp = efi_pxe_base_code_arp;
|
|
|
|
netobj->pxe.set_parameters = efi_pxe_base_code_set_parameters;
|
|
|
|
netobj->pxe.set_station_ip = efi_pxe_base_code_set_station_ip;
|
|
|
|
netobj->pxe.set_packets = efi_pxe_base_code_set_packets;
|
2016-05-06 19:01:01 +00:00
|
|
|
netobj->pxe.mode = &netobj->pxe_mode;
|
|
|
|
if (dhcp_ack)
|
|
|
|
netobj->pxe_mode.dhcp_ack = *dhcp_ack;
|
|
|
|
|
2017-10-05 14:36:01 +00:00
|
|
|
/*
|
|
|
|
* Create WaitForPacket event.
|
|
|
|
*/
|
|
|
|
r = efi_create_event(EVT_NOTIFY_WAIT, TPL_CALLBACK,
|
2018-02-18 14:17:52 +00:00
|
|
|
efi_network_timer_notify, NULL, NULL,
|
2017-10-05 14:36:01 +00:00
|
|
|
&wait_for_packet);
|
|
|
|
if (r != EFI_SUCCESS) {
|
|
|
|
printf("ERROR: Failed to register network event\n");
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
netobj->net.wait_for_packet = wait_for_packet;
|
2017-10-05 14:36:00 +00:00
|
|
|
/*
|
|
|
|
* Create a timer event.
|
|
|
|
*
|
|
|
|
* The notification function is used to check if a new network packet
|
|
|
|
* has been received.
|
2018-03-24 17:40:22 +00:00
|
|
|
*
|
|
|
|
* iPXE is running at TPL_CALLBACK most of the time. Use a higher TPL.
|
2017-10-05 14:36:00 +00:00
|
|
|
*/
|
2018-03-24 17:40:22 +00:00
|
|
|
r = efi_create_event(EVT_TIMER | EVT_NOTIFY_SIGNAL, TPL_NOTIFY,
|
2018-11-30 23:16:33 +00:00
|
|
|
efi_network_timer_notify, &netobj->net, NULL,
|
2017-10-05 14:36:00 +00:00
|
|
|
&network_timer_event);
|
|
|
|
if (r != EFI_SUCCESS) {
|
|
|
|
printf("ERROR: Failed to register network event\n");
|
|
|
|
return r;
|
|
|
|
}
|
2018-10-18 19:51:38 +00:00
|
|
|
/* Network is time critical, create event in every timer cycle */
|
2017-10-05 14:36:00 +00:00
|
|
|
r = efi_set_timer(network_timer_event, EFI_TIMER_PERIODIC, 0);
|
|
|
|
if (r != EFI_SUCCESS) {
|
|
|
|
printf("ERROR: Failed to set network timer\n");
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2018-03-03 14:28:56 +00:00
|
|
|
return EFI_SUCCESS;
|
|
|
|
failure_to_add_protocol:
|
|
|
|
printf("ERROR: Failure to add protocol\n");
|
|
|
|
return r;
|
2018-11-30 23:16:32 +00:00
|
|
|
out_of_resources:
|
|
|
|
free(netobj);
|
2020-10-07 09:04:33 +00:00
|
|
|
free(transmit_buffer);
|
|
|
|
if (receive_buffer)
|
|
|
|
for (i = 0; i < ETH_PACKETS_BATCH_RECV; i++)
|
|
|
|
free(receive_buffer[i]);
|
|
|
|
free(receive_buffer);
|
|
|
|
free(receive_lengths);
|
2018-11-30 23:16:32 +00:00
|
|
|
printf("ERROR: Out of memory\n");
|
|
|
|
return EFI_OUT_OF_RESOURCES;
|
2016-05-06 19:01:01 +00:00
|
|
|
}
|