blob: 4e8b2d597dfd6040dc79f0a69a6d3df6e43bcf72 [file] [log] [blame]
Tom Rinif739fcd2018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Graf0efe1bc2016-05-06 21:01:01 +02002/*
3 * EFI application network access support
4 *
5 * Copyright (c) 2016 Alexander Graf
Alexander Graf0efe1bc2016-05-06 21:01:01 +02006 */
7
8#include <common.h>
9#include <efi_loader.h>
Alexander Graf0efe1bc2016-05-06 21:01:01 +020010#include <malloc.h>
11
Alexander Graf0efe1bc2016-05-06 21:01:01 +020012static const efi_guid_t efi_net_guid = EFI_SIMPLE_NETWORK_GUID;
13static const efi_guid_t efi_pxe_guid = EFI_PXE_GUID;
14static struct efi_pxe_packet *dhcp_ack;
15static bool new_rx_packet;
16static void *new_tx_packet;
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +020017/*
18 * The notification function of this event is called in every timer cycle
19 * to check if a new network packet has been received.
20 */
21static struct efi_event *network_timer_event;
Heinrich Schuchardte5c21602017-10-05 16:36:01 +020022/*
23 * This event is signaled when a packet has been received.
24 */
25static struct efi_event *wait_for_packet;
Alexander Graf0efe1bc2016-05-06 21:01:01 +020026
27struct efi_net_obj {
28 /* Generic EFI object parent class data */
29 struct efi_object parent;
30 /* EFI Interface callback struct for network */
31 struct efi_simple_network net;
32 struct efi_simple_network_mode net_mode;
Alexander Graf0efe1bc2016-05-06 21:01:01 +020033 /* PXE struct to transmit dhcp data */
34 struct efi_pxe pxe;
35 struct efi_pxe_mode pxe_mode;
36};
37
38static efi_status_t EFIAPI efi_net_start(struct efi_simple_network *this)
39{
40 EFI_ENTRY("%p", this);
41
42 return EFI_EXIT(EFI_SUCCESS);
43}
44
45static efi_status_t EFIAPI efi_net_stop(struct efi_simple_network *this)
46{
47 EFI_ENTRY("%p", this);
48
49 return EFI_EXIT(EFI_SUCCESS);
50}
51
Heinrich Schuchardt0c5d2a32018-04-03 22:06:52 +020052/*
53 * Initialize network adapter and allocate transmit and receive buffers.
54 *
55 * This function implements the Initialize service of the
56 * EFI_SIMPLE_NETWORK_PROTOCOL. See the Unified Extensible Firmware Interface
57 * (UEFI) specification for details.
58 *
59 * @this: pointer to the protocol instance
60 * @extra_rx: extra receive buffer to be allocated
61 * @extra_tx: extra transmit buffer to be allocated
62 * @return: status code
63 */
Alexander Graf0efe1bc2016-05-06 21:01:01 +020064static efi_status_t EFIAPI efi_net_initialize(struct efi_simple_network *this,
65 ulong extra_rx, ulong extra_tx)
66{
Heinrich Schuchardt0c5d2a32018-04-03 22:06:52 +020067 int ret;
68 efi_status_t r = EFI_SUCCESS;
69
Alexander Graf0efe1bc2016-05-06 21:01:01 +020070 EFI_ENTRY("%p, %lx, %lx", this, extra_rx, extra_tx);
71
Heinrich Schuchardt0c5d2a32018-04-03 22:06:52 +020072 if (!this) {
73 r = EFI_INVALID_PARAMETER;
74 goto error;
75 }
Alexander Graf0efe1bc2016-05-06 21:01:01 +020076
Heinrich Schuchardt0c5d2a32018-04-03 22:06:52 +020077 /* Setup packet buffers */
78 net_init();
79 /* Disable hardware and put it into the reset state */
80 eth_halt();
81 /* Set current device according to environment variables */
82 eth_set_current();
83 /* Get hardware ready for send and receive operations */
84 ret = eth_init();
85 if (ret < 0) {
86 eth_halt();
87 r = EFI_DEVICE_ERROR;
88 }
89
90error:
91 return EFI_EXIT(r);
Alexander Graf0efe1bc2016-05-06 21:01:01 +020092}
93
94static efi_status_t EFIAPI efi_net_reset(struct efi_simple_network *this,
95 int extended_verification)
96{
97 EFI_ENTRY("%p, %x", this, extended_verification);
98
99 return EFI_EXIT(EFI_SUCCESS);
100}
101
102static efi_status_t EFIAPI efi_net_shutdown(struct efi_simple_network *this)
103{
104 EFI_ENTRY("%p", this);
105
106 return EFI_EXIT(EFI_SUCCESS);
107}
108
109static efi_status_t EFIAPI efi_net_receive_filters(
110 struct efi_simple_network *this, u32 enable, u32 disable,
111 int reset_mcast_filter, ulong mcast_filter_count,
112 struct efi_mac_address *mcast_filter)
113{
114 EFI_ENTRY("%p, %x, %x, %x, %lx, %p", this, enable, disable,
115 reset_mcast_filter, mcast_filter_count, mcast_filter);
116
Heinrich Schuchardt61da6782017-10-05 16:35:59 +0200117 return EFI_EXIT(EFI_UNSUPPORTED);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200118}
119
120static efi_status_t EFIAPI efi_net_station_address(
121 struct efi_simple_network *this, int reset,
122 struct efi_mac_address *new_mac)
123{
124 EFI_ENTRY("%p, %x, %p", this, reset, new_mac);
125
Heinrich Schuchardt61da6782017-10-05 16:35:59 +0200126 return EFI_EXIT(EFI_UNSUPPORTED);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200127}
128
129static efi_status_t EFIAPI efi_net_statistics(struct efi_simple_network *this,
130 int reset, ulong *stat_size,
131 void *stat_table)
132{
133 EFI_ENTRY("%p, %x, %p, %p", this, reset, stat_size, stat_table);
134
Heinrich Schuchardt61da6782017-10-05 16:35:59 +0200135 return EFI_EXIT(EFI_UNSUPPORTED);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200136}
137
138static efi_status_t EFIAPI efi_net_mcastiptomac(struct efi_simple_network *this,
139 int ipv6,
140 struct efi_ip_address *ip,
141 struct efi_mac_address *mac)
142{
143 EFI_ENTRY("%p, %x, %p, %p", this, ipv6, ip, mac);
144
145 return EFI_EXIT(EFI_INVALID_PARAMETER);
146}
147
148static efi_status_t EFIAPI efi_net_nvdata(struct efi_simple_network *this,
149 int read_write, ulong offset,
150 ulong buffer_size, char *buffer)
151{
152 EFI_ENTRY("%p, %x, %lx, %lx, %p", this, read_write, offset, buffer_size,
153 buffer);
154
Heinrich Schuchardt61da6782017-10-05 16:35:59 +0200155 return EFI_EXIT(EFI_UNSUPPORTED);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200156}
157
158static efi_status_t EFIAPI efi_net_get_status(struct efi_simple_network *this,
159 u32 *int_status, void **txbuf)
160{
161 EFI_ENTRY("%p, %p, %p", this, int_status, txbuf);
162
Heinrich Schuchardt891b3d92017-10-05 16:36:02 +0200163 efi_timer_check();
164
165 if (int_status) {
166 /* We send packets synchronously, so nothing is outstanding */
167 *int_status = EFI_SIMPLE_NETWORK_TRANSMIT_INTERRUPT;
168 if (new_rx_packet)
169 *int_status |= EFI_SIMPLE_NETWORK_RECEIVE_INTERRUPT;
170 }
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200171 if (txbuf)
172 *txbuf = new_tx_packet;
173
174 new_tx_packet = NULL;
175
176 return EFI_EXIT(EFI_SUCCESS);
177}
178
179static efi_status_t EFIAPI efi_net_transmit(struct efi_simple_network *this,
Heinrich Schuchardt8db174d2017-10-05 16:36:03 +0200180 size_t header_size, size_t buffer_size, void *buffer,
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200181 struct efi_mac_address *src_addr,
182 struct efi_mac_address *dest_addr, u16 *protocol)
183{
Heinrich Schuchardt8db174d2017-10-05 16:36:03 +0200184 EFI_ENTRY("%p, %lu, %lu, %p, %p, %p, %p", this,
185 (unsigned long)header_size, (unsigned long)buffer_size,
186 buffer, src_addr, dest_addr, protocol);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200187
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200188 efi_timer_check();
189
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200190 if (header_size) {
191 /* We would need to create the header if header_size != 0 */
192 return EFI_EXIT(EFI_INVALID_PARAMETER);
193 }
194
Alexander Graf712cd292016-09-06 14:26:27 +0200195#ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER
196 /* Ethernet packets always fit, just bounce */
197 memcpy(efi_bounce_buffer, buffer, buffer_size);
198 net_send_packet(efi_bounce_buffer, buffer_size);
199#else
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200200 net_send_packet(buffer, buffer_size);
Alexander Graf712cd292016-09-06 14:26:27 +0200201#endif
202
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200203 new_tx_packet = buffer;
204
205 return EFI_EXIT(EFI_SUCCESS);
206}
207
208static void efi_net_push(void *pkt, int len)
209{
210 new_rx_packet = true;
Heinrich Schuchardte5c21602017-10-05 16:36:01 +0200211 wait_for_packet->is_signaled = true;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200212}
213
Heinrich Schuchardt8db174d2017-10-05 16:36:03 +0200214/*
215 * Receive a packet from a network interface.
216 *
217 * This function implements the Receive service of the Simple Network Protocol.
218 * See the UEFI spec for details.
219 *
220 * @this the instance of the Simple Network Protocol
221 * @header_size size of the media header
222 * @buffer_size size of the buffer to receive the packet
223 * @buffer buffer to receive the packet
224 * @src_addr source MAC address
225 * @dest_addr destination MAC address
226 * @protocol protocol
227 * @return status code
228 */
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200229static efi_status_t EFIAPI efi_net_receive(struct efi_simple_network *this,
Heinrich Schuchardt8db174d2017-10-05 16:36:03 +0200230 size_t *header_size, size_t *buffer_size, void *buffer,
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200231 struct efi_mac_address *src_addr,
232 struct efi_mac_address *dest_addr, u16 *protocol)
233{
Heinrich Schuchardt336d9df2017-10-05 16:36:04 +0200234 struct ethernet_hdr *eth_hdr;
235 size_t hdr_size = sizeof(struct ethernet_hdr);
236 u16 protlen;
237
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200238 EFI_ENTRY("%p, %p, %p, %p, %p, %p, %p", this, header_size,
239 buffer_size, buffer, src_addr, dest_addr, protocol);
240
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200241 efi_timer_check();
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200242
243 if (!new_rx_packet)
244 return EFI_EXIT(EFI_NOT_READY);
Heinrich Schuchardt336d9df2017-10-05 16:36:04 +0200245 /* Check that we at least received an Ethernet header */
246 if (net_rx_packet_len < sizeof(struct ethernet_hdr)) {
247 new_rx_packet = false;
248 return EFI_EXIT(EFI_NOT_READY);
249 }
250 /* Fill export parameters */
251 eth_hdr = (struct ethernet_hdr *)net_rx_packet;
252 protlen = ntohs(eth_hdr->et_protlen);
253 if (protlen == 0x8100) {
254 hdr_size += 4;
255 protlen = ntohs(*(u16 *)&net_rx_packet[hdr_size - 2]);
256 }
257 if (header_size)
258 *header_size = hdr_size;
259 if (dest_addr)
260 memcpy(dest_addr, eth_hdr->et_dest, ARP_HLEN);
261 if (src_addr)
262 memcpy(src_addr, eth_hdr->et_src, ARP_HLEN);
263 if (protocol)
264 *protocol = protlen;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200265 if (*buffer_size < net_rx_packet_len) {
266 /* Packet doesn't fit, try again with bigger buf */
267 *buffer_size = net_rx_packet_len;
268 return EFI_EXIT(EFI_BUFFER_TOO_SMALL);
269 }
Heinrich Schuchardt336d9df2017-10-05 16:36:04 +0200270 /* Copy packet */
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200271 memcpy(buffer, net_rx_packet, net_rx_packet_len);
272 *buffer_size = net_rx_packet_len;
273 new_rx_packet = false;
274
275 return EFI_EXIT(EFI_SUCCESS);
276}
277
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200278void efi_net_set_dhcp_ack(void *pkt, int len)
279{
280 int maxsize = sizeof(*dhcp_ack);
281
282 if (!dhcp_ack)
283 dhcp_ack = malloc(maxsize);
284
285 memcpy(dhcp_ack, pkt, min(len, maxsize));
286}
287
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200288/*
289 * Check if a new network packet has been received.
290 *
291 * This notification function is called in every timer cycle.
292 *
293 * @event the event for which this notification function is registered
294 * @context event context - not used in this function
295 */
296static void EFIAPI efi_network_timer_notify(struct efi_event *event,
297 void *context)
298{
299 EFI_ENTRY("%p, %p", event, context);
300
301 if (!new_rx_packet) {
302 push_packet = efi_net_push;
303 eth_rx();
304 push_packet = NULL;
305 }
306 EFI_EXIT(EFI_SUCCESS);
307}
308
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200309/* This gets called from do_bootefi_exec(). */
Heinrich Schuchardt075d4252018-03-03 15:28:56 +0100310efi_status_t efi_net_register(void)
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200311{
312 struct efi_net_obj *netobj;
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200313 efi_status_t r;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200314
315 if (!eth_get_dev()) {
316 /* No eth device active, don't expose any */
Heinrich Schuchardt075d4252018-03-03 15:28:56 +0100317 return EFI_SUCCESS;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200318 }
319
320 /* We only expose the "active" eth device, so one is enough */
321 netobj = calloc(1, sizeof(*netobj));
Heinrich Schuchardt075d4252018-03-03 15:28:56 +0100322 if (!netobj) {
323 printf("ERROR: Out of memory\n");
324 return EFI_OUT_OF_RESOURCES;
325 }
Heinrich Schuchardt84d14562017-11-26 14:05:13 +0100326
327 /* Hook net up to the device list */
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100328 efi_add_handle(&netobj->parent);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200329
330 /* Fill in object data */
Heinrich Schuchardt84d14562017-11-26 14:05:13 +0100331 r = efi_add_protocol(netobj->parent.handle, &efi_net_guid,
332 &netobj->net);
333 if (r != EFI_SUCCESS)
Heinrich Schuchardt075d4252018-03-03 15:28:56 +0100334 goto failure_to_add_protocol;
Heinrich Schuchardt84d14562017-11-26 14:05:13 +0100335 r = efi_add_protocol(netobj->parent.handle, &efi_guid_device_path,
336 efi_dp_from_eth());
337 if (r != EFI_SUCCESS)
Heinrich Schuchardt075d4252018-03-03 15:28:56 +0100338 goto failure_to_add_protocol;
Heinrich Schuchardt84d14562017-11-26 14:05:13 +0100339 r = efi_add_protocol(netobj->parent.handle, &efi_pxe_guid,
340 &netobj->pxe);
341 if (r != EFI_SUCCESS)
Heinrich Schuchardt075d4252018-03-03 15:28:56 +0100342 goto failure_to_add_protocol;
Heinrich Schuchardtbdecf972017-10-05 16:35:57 +0200343 netobj->net.revision = EFI_SIMPLE_NETWORK_PROTOCOL_REVISION;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200344 netobj->net.start = efi_net_start;
345 netobj->net.stop = efi_net_stop;
346 netobj->net.initialize = efi_net_initialize;
347 netobj->net.reset = efi_net_reset;
348 netobj->net.shutdown = efi_net_shutdown;
349 netobj->net.receive_filters = efi_net_receive_filters;
350 netobj->net.station_address = efi_net_station_address;
351 netobj->net.statistics = efi_net_statistics;
352 netobj->net.mcastiptomac = efi_net_mcastiptomac;
353 netobj->net.nvdata = efi_net_nvdata;
354 netobj->net.get_status = efi_net_get_status;
355 netobj->net.transmit = efi_net_transmit;
356 netobj->net.receive = efi_net_receive;
357 netobj->net.mode = &netobj->net_mode;
358 netobj->net_mode.state = EFI_NETWORK_STARTED;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200359 memcpy(netobj->net_mode.current_address.mac_addr, eth_get_ethaddr(), 6);
Heinrich Schuchardt5d4a5ea2017-10-05 16:35:58 +0200360 netobj->net_mode.hwaddr_size = ARP_HLEN;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200361 netobj->net_mode.max_packet_size = PKTSIZE;
Andrew Thomasf25ddca2018-06-21 16:21:01 -0700362 netobj->net_mode.if_type = ARP_ETHER;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200363
364 netobj->pxe.mode = &netobj->pxe_mode;
365 if (dhcp_ack)
366 netobj->pxe_mode.dhcp_ack = *dhcp_ack;
367
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200368 /*
Heinrich Schuchardte5c21602017-10-05 16:36:01 +0200369 * Create WaitForPacket event.
370 */
371 r = efi_create_event(EVT_NOTIFY_WAIT, TPL_CALLBACK,
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100372 efi_network_timer_notify, NULL, NULL,
Heinrich Schuchardte5c21602017-10-05 16:36:01 +0200373 &wait_for_packet);
374 if (r != EFI_SUCCESS) {
375 printf("ERROR: Failed to register network event\n");
376 return r;
377 }
378 netobj->net.wait_for_packet = wait_for_packet;
379 /*
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200380 * Create a timer event.
381 *
382 * The notification function is used to check if a new network packet
383 * has been received.
Heinrich Schuchardtee3db4f2018-03-24 18:40:22 +0100384 *
385 * iPXE is running at TPL_CALLBACK most of the time. Use a higher TPL.
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200386 */
Heinrich Schuchardtee3db4f2018-03-24 18:40:22 +0100387 r = efi_create_event(EVT_TIMER | EVT_NOTIFY_SIGNAL, TPL_NOTIFY,
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100388 efi_network_timer_notify, NULL, NULL,
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200389 &network_timer_event);
390 if (r != EFI_SUCCESS) {
391 printf("ERROR: Failed to register network event\n");
392 return r;
393 }
394 /* Network is time critical, create event in every timer cyle */
395 r = efi_set_timer(network_timer_event, EFI_TIMER_PERIODIC, 0);
396 if (r != EFI_SUCCESS) {
397 printf("ERROR: Failed to set network timer\n");
398 return r;
399 }
400
Heinrich Schuchardt075d4252018-03-03 15:28:56 +0100401 return EFI_SUCCESS;
402failure_to_add_protocol:
403 printf("ERROR: Failure to add protocol\n");
404 return r;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200405}