1 // SPDX-License-Identifier: GPL-2.0+
3 * EFI application network access support
5 * Copyright (c) 2016 Alexander Graf
9 #include <efi_loader.h>
14 static const efi_guid_t efi_net_guid = EFI_SIMPLE_NETWORK_GUID;
15 static const efi_guid_t efi_pxe_guid = EFI_PXE_GUID;
16 static struct efi_pxe_packet *dhcp_ack;
17 static bool new_rx_packet;
18 static void *new_tx_packet;
20 * The notification function of this event is called in every timer cycle
21 * to check if a new network packet has been received.
23 static struct efi_event *network_timer_event;
25 * This event is signaled when a packet has been received.
27 static struct efi_event *wait_for_packet;
30 /* Generic EFI object parent class data */
31 struct efi_object parent;
32 /* EFI Interface callback struct for network */
33 struct efi_simple_network net;
34 struct efi_simple_network_mode net_mode;
35 /* PXE struct to transmit dhcp data */
37 struct efi_pxe_mode pxe_mode;
40 static efi_status_t EFIAPI efi_net_start(struct efi_simple_network *this)
42 EFI_ENTRY("%p", this);
44 return EFI_EXIT(EFI_SUCCESS);
47 static efi_status_t EFIAPI efi_net_stop(struct efi_simple_network *this)
49 EFI_ENTRY("%p", this);
51 return EFI_EXIT(EFI_SUCCESS);
55 * Initialize network adapter and allocate transmit and receive buffers.
57 * This function implements the Initialize service of the
58 * EFI_SIMPLE_NETWORK_PROTOCOL. See the Unified Extensible Firmware Interface
59 * (UEFI) specification for details.
61 * @this: pointer to the protocol instance
62 * @extra_rx: extra receive buffer to be allocated
63 * @extra_tx: extra transmit buffer to be allocated
64 * @return: status code
66 static efi_status_t EFIAPI efi_net_initialize(struct efi_simple_network *this,
67 ulong extra_rx, ulong extra_tx)
70 efi_status_t r = EFI_SUCCESS;
72 EFI_ENTRY("%p, %lx, %lx", this, extra_rx, extra_tx);
75 r = EFI_INVALID_PARAMETER;
79 /* Setup packet buffers */
81 /* Disable hardware and put it into the reset state */
83 /* Set current device according to environment variables */
85 /* Get hardware ready for send and receive operations */
96 static efi_status_t EFIAPI efi_net_reset(struct efi_simple_network *this,
97 int extended_verification)
99 EFI_ENTRY("%p, %x", this, extended_verification);
101 return EFI_EXIT(EFI_SUCCESS);
104 static efi_status_t EFIAPI efi_net_shutdown(struct efi_simple_network *this)
106 EFI_ENTRY("%p", this);
108 return EFI_EXIT(EFI_SUCCESS);
111 static efi_status_t EFIAPI efi_net_receive_filters(
112 struct efi_simple_network *this, u32 enable, u32 disable,
113 int reset_mcast_filter, ulong mcast_filter_count,
114 struct efi_mac_address *mcast_filter)
116 EFI_ENTRY("%p, %x, %x, %x, %lx, %p", this, enable, disable,
117 reset_mcast_filter, mcast_filter_count, mcast_filter);
119 return EFI_EXIT(EFI_UNSUPPORTED);
122 static efi_status_t EFIAPI efi_net_station_address(
123 struct efi_simple_network *this, int reset,
124 struct efi_mac_address *new_mac)
126 EFI_ENTRY("%p, %x, %p", this, reset, new_mac);
128 return EFI_EXIT(EFI_UNSUPPORTED);
131 static efi_status_t EFIAPI efi_net_statistics(struct efi_simple_network *this,
132 int reset, ulong *stat_size,
135 EFI_ENTRY("%p, %x, %p, %p", this, reset, stat_size, stat_table);
137 return EFI_EXIT(EFI_UNSUPPORTED);
140 static efi_status_t EFIAPI efi_net_mcastiptomac(struct efi_simple_network *this,
142 struct efi_ip_address *ip,
143 struct efi_mac_address *mac)
145 EFI_ENTRY("%p, %x, %p, %p", this, ipv6, ip, mac);
147 return EFI_EXIT(EFI_INVALID_PARAMETER);
150 static efi_status_t EFIAPI efi_net_nvdata(struct efi_simple_network *this,
151 int read_write, ulong offset,
152 ulong buffer_size, char *buffer)
154 EFI_ENTRY("%p, %x, %lx, %lx, %p", this, read_write, offset, buffer_size,
157 return EFI_EXIT(EFI_UNSUPPORTED);
160 static efi_status_t EFIAPI efi_net_get_status(struct efi_simple_network *this,
161 u32 *int_status, void **txbuf)
163 EFI_ENTRY("%p, %p, %p", this, int_status, txbuf);
168 /* We send packets synchronously, so nothing is outstanding */
169 *int_status = EFI_SIMPLE_NETWORK_TRANSMIT_INTERRUPT;
171 *int_status |= EFI_SIMPLE_NETWORK_RECEIVE_INTERRUPT;
174 *txbuf = new_tx_packet;
176 new_tx_packet = NULL;
178 return EFI_EXIT(EFI_SUCCESS);
181 static efi_status_t EFIAPI efi_net_transmit(struct efi_simple_network *this,
182 size_t header_size, size_t buffer_size, void *buffer,
183 struct efi_mac_address *src_addr,
184 struct efi_mac_address *dest_addr, u16 *protocol)
186 EFI_ENTRY("%p, %lu, %lu, %p, %p, %p, %p", this,
187 (unsigned long)header_size, (unsigned long)buffer_size,
188 buffer, src_addr, dest_addr, protocol);
193 /* We would need to create the header if header_size != 0 */
194 return EFI_EXIT(EFI_INVALID_PARAMETER);
197 #ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER
198 /* Ethernet packets always fit, just bounce */
199 memcpy(efi_bounce_buffer, buffer, buffer_size);
200 net_send_packet(efi_bounce_buffer, buffer_size);
202 net_send_packet(buffer, buffer_size);
205 new_tx_packet = buffer;
207 return EFI_EXIT(EFI_SUCCESS);
210 static void efi_net_push(void *pkt, int len)
212 new_rx_packet = true;
213 wait_for_packet->is_signaled = true;
217 * Receive a packet from a network interface.
219 * This function implements the Receive service of the Simple Network Protocol.
220 * See the UEFI spec for details.
222 * @this the instance of the Simple Network Protocol
223 * @header_size size of the media header
224 * @buffer_size size of the buffer to receive the packet
225 * @buffer buffer to receive the packet
226 * @src_addr source MAC address
227 * @dest_addr destination MAC address
229 * @return status code
231 static efi_status_t EFIAPI efi_net_receive(struct efi_simple_network *this,
232 size_t *header_size, size_t *buffer_size, void *buffer,
233 struct efi_mac_address *src_addr,
234 struct efi_mac_address *dest_addr, u16 *protocol)
236 struct ethernet_hdr *eth_hdr;
237 size_t hdr_size = sizeof(struct ethernet_hdr);
240 EFI_ENTRY("%p, %p, %p, %p, %p, %p, %p", this, header_size,
241 buffer_size, buffer, src_addr, dest_addr, protocol);
246 return EFI_EXIT(EFI_NOT_READY);
247 /* Check that we at least received an Ethernet header */
248 if (net_rx_packet_len < sizeof(struct ethernet_hdr)) {
249 new_rx_packet = false;
250 return EFI_EXIT(EFI_NOT_READY);
252 /* Fill export parameters */
253 eth_hdr = (struct ethernet_hdr *)net_rx_packet;
254 protlen = ntohs(eth_hdr->et_protlen);
255 if (protlen == 0x8100) {
257 protlen = ntohs(*(u16 *)&net_rx_packet[hdr_size - 2]);
260 *header_size = hdr_size;
262 memcpy(dest_addr, eth_hdr->et_dest, ARP_HLEN);
264 memcpy(src_addr, eth_hdr->et_src, ARP_HLEN);
267 if (*buffer_size < net_rx_packet_len) {
268 /* Packet doesn't fit, try again with bigger buf */
269 *buffer_size = net_rx_packet_len;
270 return EFI_EXIT(EFI_BUFFER_TOO_SMALL);
273 memcpy(buffer, net_rx_packet, net_rx_packet_len);
274 *buffer_size = net_rx_packet_len;
275 new_rx_packet = false;
277 return EFI_EXIT(EFI_SUCCESS);
280 void efi_net_set_dhcp_ack(void *pkt, int len)
282 int maxsize = sizeof(*dhcp_ack);
285 dhcp_ack = malloc(maxsize);
287 memcpy(dhcp_ack, pkt, min(len, maxsize));
291 * Check if a new network packet has been received.
293 * This notification function is called in every timer cycle.
295 * @event the event for which this notification function is registered
296 * @context event context - not used in this function
298 static void EFIAPI efi_network_timer_notify(struct efi_event *event,
301 EFI_ENTRY("%p, %p", event, context);
303 if (!new_rx_packet) {
304 push_packet = efi_net_push;
308 EFI_EXIT(EFI_SUCCESS);
311 /* This gets called from do_bootefi_exec(). */
312 efi_status_t efi_net_register(void)
314 struct efi_net_obj *netobj;
317 if (!eth_get_dev()) {
318 /* No eth device active, don't expose any */
322 /* We only expose the "active" eth device, so one is enough */
323 netobj = calloc(1, sizeof(*netobj));
325 printf("ERROR: Out of memory\n");
326 return EFI_OUT_OF_RESOURCES;
329 /* Hook net up to the device list */
330 efi_add_handle(&netobj->parent);
332 /* Fill in object data */
333 r = efi_add_protocol(netobj->parent.handle, &efi_net_guid,
335 if (r != EFI_SUCCESS)
336 goto failure_to_add_protocol;
337 r = efi_add_protocol(netobj->parent.handle, &efi_guid_device_path,
339 if (r != EFI_SUCCESS)
340 goto failure_to_add_protocol;
341 r = efi_add_protocol(netobj->parent.handle, &efi_pxe_guid,
343 if (r != EFI_SUCCESS)
344 goto failure_to_add_protocol;
345 netobj->net.revision = EFI_SIMPLE_NETWORK_PROTOCOL_REVISION;
346 netobj->net.start = efi_net_start;
347 netobj->net.stop = efi_net_stop;
348 netobj->net.initialize = efi_net_initialize;
349 netobj->net.reset = efi_net_reset;
350 netobj->net.shutdown = efi_net_shutdown;
351 netobj->net.receive_filters = efi_net_receive_filters;
352 netobj->net.station_address = efi_net_station_address;
353 netobj->net.statistics = efi_net_statistics;
354 netobj->net.mcastiptomac = efi_net_mcastiptomac;
355 netobj->net.nvdata = efi_net_nvdata;
356 netobj->net.get_status = efi_net_get_status;
357 netobj->net.transmit = efi_net_transmit;
358 netobj->net.receive = efi_net_receive;
359 netobj->net.mode = &netobj->net_mode;
360 netobj->net_mode.state = EFI_NETWORK_STARTED;
361 memcpy(netobj->net_mode.current_address.mac_addr, eth_get_ethaddr(), 6);
362 netobj->net_mode.hwaddr_size = ARP_HLEN;
363 netobj->net_mode.max_packet_size = PKTSIZE;
364 netobj->net_mode.if_type = ARP_ETHER;
366 netobj->pxe.mode = &netobj->pxe_mode;
368 netobj->pxe_mode.dhcp_ack = *dhcp_ack;
371 * Create WaitForPacket event.
373 r = efi_create_event(EVT_NOTIFY_WAIT, TPL_CALLBACK,
374 efi_network_timer_notify, NULL, NULL,
376 if (r != EFI_SUCCESS) {
377 printf("ERROR: Failed to register network event\n");
380 netobj->net.wait_for_packet = wait_for_packet;
382 * Create a timer event.
384 * The notification function is used to check if a new network packet
387 * iPXE is running at TPL_CALLBACK most of the time. Use a higher TPL.
389 r = efi_create_event(EVT_TIMER | EVT_NOTIFY_SIGNAL, TPL_NOTIFY,
390 efi_network_timer_notify, NULL, NULL,
391 &network_timer_event);
392 if (r != EFI_SUCCESS) {
393 printf("ERROR: Failed to register network event\n");
396 /* Network is time critical, create event in every timer cyle */
397 r = efi_set_timer(network_timer_event, EFI_TIMER_PERIODIC, 0);
398 if (r != EFI_SUCCESS) {
399 printf("ERROR: Failed to set network timer\n");
404 failure_to_add_protocol:
405 printf("ERROR: Failure to add protocol\n");