blob: 82d2595847a8cf0f86f18f6ef8f196d01c33a7d6 [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/*
Heinrich Schuchardt72a8f162019-09-01 15:24:47 +02003 * Simple network protocol
4 * PXE base code protocol
Alexander Graf0efe1bc2016-05-06 21:01:01 +02005 *
Heinrich Schuchardt72a8f162019-09-01 15:24:47 +02006 * Copyright (c) 2016 Alexander Graf
7 *
8 * The simple network protocol has the following statuses and services
9 * to move between them:
10 *
11 * Start(): EfiSimpleNetworkStopped -> EfiSimpleNetworkStarted
12 * Initialize(): EfiSimpleNetworkStarted -> EfiSimpleNetworkInitialized
13 * Shutdown(): EfiSimpleNetworkInitialized -> EfiSimpleNetworkStarted
14 * Stop(): EfiSimpleNetworkStarted -> EfiSimpleNetworkStopped
15 * Reset(): EfiSimpleNetworkInitialized -> EfiSimpleNetworkInitialized
Alexander Graf0efe1bc2016-05-06 21:01:01 +020016 */
17
18#include <common.h>
19#include <efi_loader.h>
Alexander Graf0efe1bc2016-05-06 21:01:01 +020020#include <malloc.h>
21
Heinrich Schuchardtdec88e42019-04-20 07:39:11 +020022static const efi_guid_t efi_net_guid = EFI_SIMPLE_NETWORK_PROTOCOL_GUID;
Heinrich Schuchardta6d37092019-08-06 08:13:33 +020023static const efi_guid_t efi_pxe_base_code_protocol_guid =
24 EFI_PXE_BASE_CODE_PROTOCOL_GUID;
Alexander Graf0efe1bc2016-05-06 21:01:01 +020025static struct efi_pxe_packet *dhcp_ack;
26static bool new_rx_packet;
27static void *new_tx_packet;
Heinrich Schuchardt622fe622018-12-01 00:16:32 +010028static void *transmit_buffer;
29
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +020030/*
31 * The notification function of this event is called in every timer cycle
32 * to check if a new network packet has been received.
33 */
34static struct efi_event *network_timer_event;
Heinrich Schuchardte5c21602017-10-05 16:36:01 +020035/*
36 * This event is signaled when a packet has been received.
37 */
38static struct efi_event *wait_for_packet;
Alexander Graf0efe1bc2016-05-06 21:01:01 +020039
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +020040/**
41 * struct efi_net_obj - EFI object representing a network interface
42 *
43 * @header: EFI object header
44 * @net: simple network protocol interface
45 * @net_mode: status of the network interface
46 * @pxe: PXE base code protocol interface
47 * @pxe_mode: status of the PXE base code protocol
48 */
Alexander Graf0efe1bc2016-05-06 21:01:01 +020049struct efi_net_obj {
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +020050 struct efi_object header;
Alexander Graf0efe1bc2016-05-06 21:01:01 +020051 struct efi_simple_network net;
52 struct efi_simple_network_mode net_mode;
Heinrich Schuchardta6d37092019-08-06 08:13:33 +020053 struct efi_pxe_base_code_protocol pxe;
Alexander Graf0efe1bc2016-05-06 21:01:01 +020054 struct efi_pxe_mode pxe_mode;
55};
56
Heinrich Schuchardt41b05872018-12-01 00:16:33 +010057/*
58 * efi_net_start() - start the network interface
59 *
60 * This function implements the Start service of the
61 * EFI_SIMPLE_NETWORK_PROTOCOL. See the Unified Extensible Firmware Interface
62 * (UEFI) specification for details.
63 *
64 * @this: pointer to the protocol instance
65 * Return: status code
66 */
Alexander Graf0efe1bc2016-05-06 21:01:01 +020067static efi_status_t EFIAPI efi_net_start(struct efi_simple_network *this)
68{
Heinrich Schuchardt41b05872018-12-01 00:16:33 +010069 efi_status_t ret = EFI_SUCCESS;
70
Alexander Graf0efe1bc2016-05-06 21:01:01 +020071 EFI_ENTRY("%p", this);
72
Heinrich Schuchardt41b05872018-12-01 00:16:33 +010073 /* Check parameters */
74 if (!this) {
75 ret = EFI_INVALID_PARAMETER;
76 goto out;
77 }
Alexander Graf0efe1bc2016-05-06 21:01:01 +020078
Heinrich Schuchardt7f6d8742019-08-31 09:56:30 +020079 if (this->mode->state != EFI_NETWORK_STOPPED) {
Heinrich Schuchardt41b05872018-12-01 00:16:33 +010080 ret = EFI_ALREADY_STARTED;
Heinrich Schuchardt7f6d8742019-08-31 09:56:30 +020081 } else {
82 this->int_status = 0;
83 wait_for_packet->is_signaled = false;
Heinrich Schuchardt41b05872018-12-01 00:16:33 +010084 this->mode->state = EFI_NETWORK_STARTED;
Heinrich Schuchardt7f6d8742019-08-31 09:56:30 +020085 }
Heinrich Schuchardt41b05872018-12-01 00:16:33 +010086out:
87 return EFI_EXIT(ret);
Alexander Graf0efe1bc2016-05-06 21:01:01 +020088}
89
Heinrich Schuchardt0c5d2a32018-04-03 22:06:52 +020090/*
Heinrich Schuchardt41b05872018-12-01 00:16:33 +010091 * efi_net_stop() - stop the network interface
92 *
93 * This function implements the Stop service of the
94 * EFI_SIMPLE_NETWORK_PROTOCOL. See the Unified Extensible Firmware Interface
95 * (UEFI) specification for details.
96 *
97 * @this: pointer to the protocol instance
98 * Return: status code
99 */
100static efi_status_t EFIAPI efi_net_stop(struct efi_simple_network *this)
101{
102 efi_status_t ret = EFI_SUCCESS;
103
104 EFI_ENTRY("%p", this);
105
106 /* Check parameters */
107 if (!this) {
108 ret = EFI_INVALID_PARAMETER;
109 goto out;
110 }
111
Heinrich Schuchardt72a8f162019-09-01 15:24:47 +0200112 if (this->mode->state == EFI_NETWORK_STOPPED) {
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100113 ret = EFI_NOT_STARTED;
Heinrich Schuchardt72a8f162019-09-01 15:24:47 +0200114 } else {
115 /* Disable hardware and put it into the reset state */
116 eth_halt();
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100117 this->mode->state = EFI_NETWORK_STOPPED;
Heinrich Schuchardt72a8f162019-09-01 15:24:47 +0200118 }
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100119out:
120 return EFI_EXIT(ret);
121}
122
123/*
124 * efi_net_initialize() - initialize the network interface
Heinrich Schuchardt0c5d2a32018-04-03 22:06:52 +0200125 *
126 * This function implements the Initialize service of the
127 * EFI_SIMPLE_NETWORK_PROTOCOL. See the Unified Extensible Firmware Interface
128 * (UEFI) specification for details.
129 *
130 * @this: pointer to the protocol instance
131 * @extra_rx: extra receive buffer to be allocated
132 * @extra_tx: extra transmit buffer to be allocated
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100133 * Return: status code
Heinrich Schuchardt0c5d2a32018-04-03 22:06:52 +0200134 */
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200135static efi_status_t EFIAPI efi_net_initialize(struct efi_simple_network *this,
136 ulong extra_rx, ulong extra_tx)
137{
Heinrich Schuchardt0c5d2a32018-04-03 22:06:52 +0200138 int ret;
139 efi_status_t r = EFI_SUCCESS;
140
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200141 EFI_ENTRY("%p, %lx, %lx", this, extra_rx, extra_tx);
142
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100143 /* Check parameters */
Heinrich Schuchardt0c5d2a32018-04-03 22:06:52 +0200144 if (!this) {
145 r = EFI_INVALID_PARAMETER;
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100146 goto out;
Heinrich Schuchardt0c5d2a32018-04-03 22:06:52 +0200147 }
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200148
Heinrich Schuchardt72a8f162019-09-01 15:24:47 +0200149 switch (this->mode->state) {
150 case EFI_NETWORK_INITIALIZED:
151 case EFI_NETWORK_STARTED:
152 break;
153 default:
154 r = EFI_NOT_STARTED;
155 goto out;
156 }
157
Heinrich Schuchardt0c5d2a32018-04-03 22:06:52 +0200158 /* Setup packet buffers */
159 net_init();
160 /* Disable hardware and put it into the reset state */
161 eth_halt();
162 /* Set current device according to environment variables */
163 eth_set_current();
164 /* Get hardware ready for send and receive operations */
165 ret = eth_init();
166 if (ret < 0) {
167 eth_halt();
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100168 this->mode->state = EFI_NETWORK_STOPPED;
Heinrich Schuchardt0c5d2a32018-04-03 22:06:52 +0200169 r = EFI_DEVICE_ERROR;
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100170 goto out;
171 } else {
Heinrich Schuchardt7f6d8742019-08-31 09:56:30 +0200172 this->int_status = 0;
173 wait_for_packet->is_signaled = false;
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100174 this->mode->state = EFI_NETWORK_INITIALIZED;
Heinrich Schuchardt0c5d2a32018-04-03 22:06:52 +0200175 }
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100176out:
Heinrich Schuchardt0c5d2a32018-04-03 22:06:52 +0200177 return EFI_EXIT(r);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200178}
179
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100180/*
181 * efi_net_reset() - reinitialize the network interface
182 *
183 * This function implements the Reset service of the
184 * EFI_SIMPLE_NETWORK_PROTOCOL. See the Unified Extensible Firmware Interface
185 * (UEFI) specification for details.
186 *
187 * @this: pointer to the protocol instance
188 * @extended_verification: execute exhaustive verification
189 * Return: status code
190 */
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200191static efi_status_t EFIAPI efi_net_reset(struct efi_simple_network *this,
192 int extended_verification)
193{
Heinrich Schuchardt72a8f162019-09-01 15:24:47 +0200194 efi_status_t ret;
195
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200196 EFI_ENTRY("%p, %x", this, extended_verification);
197
Heinrich Schuchardt72a8f162019-09-01 15:24:47 +0200198 /* Check parameters */
199 if (!this) {
200 ret = EFI_INVALID_PARAMETER;
201 goto out;
202 }
203
204 switch (this->mode->state) {
205 case EFI_NETWORK_INITIALIZED:
206 break;
207 case EFI_NETWORK_STOPPED:
208 ret = EFI_NOT_STARTED;
209 goto out;
210 default:
211 ret = EFI_DEVICE_ERROR;
212 goto out;
213 }
214
215 this->mode->state = EFI_NETWORK_STARTED;
216 ret = EFI_CALL(efi_net_initialize(this, 0, 0));
217out:
218 return EFI_EXIT(ret);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200219}
220
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100221/*
222 * efi_net_shutdown() - shut down the network interface
223 *
224 * This function implements the Shutdown service of the
225 * EFI_SIMPLE_NETWORK_PROTOCOL. See the Unified Extensible Firmware Interface
226 * (UEFI) specification for details.
227 *
228 * @this: pointer to the protocol instance
229 * Return: status code
230 */
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200231static efi_status_t EFIAPI efi_net_shutdown(struct efi_simple_network *this)
232{
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100233 efi_status_t ret = EFI_SUCCESS;
234
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200235 EFI_ENTRY("%p", this);
236
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100237 /* Check parameters */
238 if (!this) {
239 ret = EFI_INVALID_PARAMETER;
240 goto out;
241 }
242
Heinrich Schuchardt72a8f162019-09-01 15:24:47 +0200243 switch (this->mode->state) {
244 case EFI_NETWORK_INITIALIZED:
245 break;
246 case EFI_NETWORK_STOPPED:
247 ret = EFI_NOT_STARTED;
248 goto out;
249 default:
250 ret = EFI_DEVICE_ERROR;
251 goto out;
252 }
253
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100254 eth_halt();
Heinrich Schuchardt7f6d8742019-08-31 09:56:30 +0200255 this->int_status = 0;
256 wait_for_packet->is_signaled = false;
Heinrich Schuchardt72a8f162019-09-01 15:24:47 +0200257 this->mode->state = EFI_NETWORK_STARTED;
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100258
259out:
260 return EFI_EXIT(ret);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200261}
262
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100263/*
264 * efi_net_receive_filters() - mange multicast receive filters
265 *
266 * This function implements the ReceiveFilters service of the
267 * EFI_SIMPLE_NETWORK_PROTOCOL. See the Unified Extensible Firmware Interface
268 * (UEFI) specification for details.
269 *
270 * @this: pointer to the protocol instance
271 * @enable: bit mask of receive filters to enable
272 * @disable: bit mask of receive filters to disable
273 * @reset_mcast_filter: true resets contents of the filters
274 * @mcast_filter_count: number of hardware MAC addresses in the new filters list
275 * @mcast_filter: list of new filters
276 * Return: status code
277 */
278static efi_status_t EFIAPI efi_net_receive_filters
279 (struct efi_simple_network *this, u32 enable, u32 disable,
280 int reset_mcast_filter, ulong mcast_filter_count,
281 struct efi_mac_address *mcast_filter)
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200282{
283 EFI_ENTRY("%p, %x, %x, %x, %lx, %p", this, enable, disable,
284 reset_mcast_filter, mcast_filter_count, mcast_filter);
285
Heinrich Schuchardt61da6782017-10-05 16:35:59 +0200286 return EFI_EXIT(EFI_UNSUPPORTED);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200287}
288
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100289/*
290 * efi_net_station_address() - set the hardware MAC address
291 *
292 * This function implements the StationAddress service of the
293 * EFI_SIMPLE_NETWORK_PROTOCOL. See the Unified Extensible Firmware Interface
294 * (UEFI) specification for details.
295 *
296 * @this: pointer to the protocol instance
297 * @reset: if true reset the address to default
298 * @new_mac: new MAC address
299 * Return: status code
300 */
301static efi_status_t EFIAPI efi_net_station_address
302 (struct efi_simple_network *this, int reset,
303 struct efi_mac_address *new_mac)
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200304{
305 EFI_ENTRY("%p, %x, %p", this, reset, new_mac);
306
Heinrich Schuchardt61da6782017-10-05 16:35:59 +0200307 return EFI_EXIT(EFI_UNSUPPORTED);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200308}
309
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100310/*
311 * efi_net_statistics() - reset or collect statistics of the network interface
312 *
313 * This function implements the Statistics service of the
314 * EFI_SIMPLE_NETWORK_PROTOCOL. See the Unified Extensible Firmware Interface
315 * (UEFI) specification for details.
316 *
317 * @this: pointer to the protocol instance
318 * @reset: if true, the statistics are reset
319 * @stat_size: size of the statistics table
320 * @stat_table: table to receive the statistics
321 * Return: status code
322 */
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200323static efi_status_t EFIAPI efi_net_statistics(struct efi_simple_network *this,
324 int reset, ulong *stat_size,
325 void *stat_table)
326{
327 EFI_ENTRY("%p, %x, %p, %p", this, reset, stat_size, stat_table);
328
Heinrich Schuchardt61da6782017-10-05 16:35:59 +0200329 return EFI_EXIT(EFI_UNSUPPORTED);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200330}
331
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100332/*
333 * efi_net_mcastiptomac() - translate multicast IP address to MAC address
334 *
Heinrich Schuchardt5b4746f2019-09-01 17:17:53 +0200335 * This function implements the MCastIPtoMAC service of the
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100336 * EFI_SIMPLE_NETWORK_PROTOCOL. See the Unified Extensible Firmware Interface
337 * (UEFI) specification for details.
338 *
339 * @this: pointer to the protocol instance
340 * @ipv6: true if the IP address is an IPv6 address
341 * @ip: IP address
342 * @mac: MAC address
343 * Return: status code
344 */
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200345static efi_status_t EFIAPI efi_net_mcastiptomac(struct efi_simple_network *this,
346 int ipv6,
347 struct efi_ip_address *ip,
348 struct efi_mac_address *mac)
349{
Heinrich Schuchardt5b4746f2019-09-01 17:17:53 +0200350 efi_status_t ret = EFI_SUCCESS;
351
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200352 EFI_ENTRY("%p, %x, %p, %p", this, ipv6, ip, mac);
353
Heinrich Schuchardt5b4746f2019-09-01 17:17:53 +0200354 if (!this || !ip || !mac) {
355 ret = EFI_INVALID_PARAMETER;
356 goto out;
357 }
358
359 if (ipv6) {
360 ret = EFI_UNSUPPORTED;
361 goto out;
362 }
363
364 /* Multi-cast addresses are in the range 224.0.0.0 - 239.255.255.255 */
365 if ((ip->ip_addr[0] & 0xf0) != 0xe0) {
366 ret = EFI_INVALID_PARAMETER;
367 goto out;
368 };
369
370 switch (this->mode->state) {
371 case EFI_NETWORK_INITIALIZED:
372 case EFI_NETWORK_STARTED:
373 break;
374 default:
375 ret = EFI_NOT_STARTED;
376 goto out;
377 }
378
379 memset(mac, 0, sizeof(struct efi_mac_address));
380
381 /*
382 * Copy lower 23 bits of IPv4 multi-cast address
383 * RFC 1112, RFC 7042 2.1.1.
384 */
385 mac->mac_addr[0] = 0x01;
386 mac->mac_addr[1] = 0x00;
387 mac->mac_addr[2] = 0x5E;
388 mac->mac_addr[3] = ip->ip_addr[1] & 0x7F;
389 mac->mac_addr[4] = ip->ip_addr[2];
390 mac->mac_addr[5] = ip->ip_addr[3];
391out:
392 return EFI_EXIT(ret);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200393}
394
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100395/**
396 * efi_net_nvdata() - read or write NVRAM
397 *
398 * This function implements the GetStatus service of the Simple Network
399 * Protocol. See the UEFI spec for details.
400 *
401 * @this: the instance of the Simple Network Protocol
Heinrich Schuchardtfe1a81c2019-09-05 20:37:13 +0200402 * @read_write: true for read, false for write
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100403 * @offset: offset in NVRAM
404 * @buffer_size: size of buffer
405 * @buffer: buffer
406 * Return: status code
407 */
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200408static efi_status_t EFIAPI efi_net_nvdata(struct efi_simple_network *this,
409 int read_write, ulong offset,
410 ulong buffer_size, char *buffer)
411{
412 EFI_ENTRY("%p, %x, %lx, %lx, %p", this, read_write, offset, buffer_size,
413 buffer);
414
Heinrich Schuchardt61da6782017-10-05 16:35:59 +0200415 return EFI_EXIT(EFI_UNSUPPORTED);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200416}
417
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100418/**
419 * efi_net_get_status() - get interrupt status
420 *
421 * This function implements the GetStatus service of the Simple Network
422 * Protocol. See the UEFI spec for details.
423 *
424 * @this: the instance of the Simple Network Protocol
425 * @int_status: interface status
426 * @txbuf: transmission buffer
427 */
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200428static efi_status_t EFIAPI efi_net_get_status(struct efi_simple_network *this,
429 u32 *int_status, void **txbuf)
430{
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100431 efi_status_t ret = EFI_SUCCESS;
432
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200433 EFI_ENTRY("%p, %p, %p", this, int_status, txbuf);
434
Heinrich Schuchardt891b3d92017-10-05 16:36:02 +0200435 efi_timer_check();
436
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100437 /* Check parameters */
438 if (!this) {
439 ret = EFI_INVALID_PARAMETER;
440 goto out;
441 }
442
443 switch (this->mode->state) {
444 case EFI_NETWORK_STOPPED:
445 ret = EFI_NOT_STARTED;
446 goto out;
447 case EFI_NETWORK_STARTED:
448 ret = EFI_DEVICE_ERROR;
449 goto out;
450 default:
451 break;
452 }
453
Heinrich Schuchardt891b3d92017-10-05 16:36:02 +0200454 if (int_status) {
Heinrich Schuchardt7f6d8742019-08-31 09:56:30 +0200455 *int_status = this->int_status;
456 this->int_status = 0;
Heinrich Schuchardt891b3d92017-10-05 16:36:02 +0200457 }
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200458 if (txbuf)
459 *txbuf = new_tx_packet;
460
461 new_tx_packet = NULL;
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100462out:
463 return EFI_EXIT(ret);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200464}
465
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100466/**
467 * efi_net_transmit() - transmit a packet
468 *
469 * This function implements the Transmit service of the Simple Network Protocol.
470 * See the UEFI spec for details.
471 *
472 * @this: the instance of the Simple Network Protocol
473 * @header_size: size of the media header
474 * @buffer_size: size of the buffer to receive the packet
475 * @buffer: buffer to receive the packet
476 * @src_addr: source hardware MAC address
477 * @dest_addr: destination hardware MAC address
478 * @protocol: type of header to build
479 * Return: status code
480 */
481static efi_status_t EFIAPI efi_net_transmit
482 (struct efi_simple_network *this, size_t header_size,
483 size_t buffer_size, void *buffer,
484 struct efi_mac_address *src_addr,
485 struct efi_mac_address *dest_addr, u16 *protocol)
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200486{
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100487 efi_status_t ret = EFI_SUCCESS;
488
Heinrich Schuchardt8db174d2017-10-05 16:36:03 +0200489 EFI_ENTRY("%p, %lu, %lu, %p, %p, %p, %p", this,
490 (unsigned long)header_size, (unsigned long)buffer_size,
491 buffer, src_addr, dest_addr, protocol);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200492
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200493 efi_timer_check();
494
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100495 /* Check parameters */
Heinrich Schuchardtce54fdc2019-05-15 23:27:43 +0200496 if (!this || !buffer) {
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100497 ret = EFI_INVALID_PARAMETER;
498 goto out;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200499 }
500
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100501 /* We do not support jumbo packets */
502 if (buffer_size > PKTSIZE_ALIGN) {
503 ret = EFI_INVALID_PARAMETER;
504 goto out;
505 }
506
Heinrich Schuchardt5947b492019-08-31 10:55:29 +0200507 /* At least the IP header has to fit into the buffer */
508 if (buffer_size < this->mode->media_header_size) {
509 ret = EFI_BUFFER_TOO_SMALL;
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100510 goto out;
511 }
512
Heinrich Schuchardt5947b492019-08-31 10:55:29 +0200513 /*
514 * TODO:
515 * Support VLANs. Use net_set_ether() for copying the header. Use a
516 * U_BOOT_ENV_CALLBACK to update the media header size.
517 */
518 if (header_size) {
519 struct ethernet_hdr *header = buffer;
520
521 if (!dest_addr || !protocol ||
522 header_size != this->mode->media_header_size) {
523 ret = EFI_INVALID_PARAMETER;
524 goto out;
525 }
526 if (!src_addr)
527 src_addr = &this->mode->current_address;
528
529 memcpy(header->et_dest, dest_addr, ARP_HLEN);
530 memcpy(header->et_src, src_addr, ARP_HLEN);
531 header->et_protlen = htons(*protocol);
532 }
533
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100534 switch (this->mode->state) {
535 case EFI_NETWORK_STOPPED:
536 ret = EFI_NOT_STARTED;
537 goto out;
538 case EFI_NETWORK_STARTED:
539 ret = EFI_DEVICE_ERROR;
540 goto out;
541 default:
542 break;
543 }
544
545 /* Ethernet packets always fit, just bounce */
Heinrich Schuchardt622fe622018-12-01 00:16:32 +0100546 memcpy(transmit_buffer, buffer, buffer_size);
547 net_send_packet(transmit_buffer, buffer_size);
Alexander Graf712cd292016-09-06 14:26:27 +0200548
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200549 new_tx_packet = buffer;
Heinrich Schuchardt7f6d8742019-08-31 09:56:30 +0200550 this->int_status |= EFI_SIMPLE_NETWORK_TRANSMIT_INTERRUPT;
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100551out:
552 return EFI_EXIT(ret);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200553}
554
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100555/**
556 * efi_net_receive() - receive a packet from a network interface
Heinrich Schuchardt8db174d2017-10-05 16:36:03 +0200557 *
558 * This function implements the Receive service of the Simple Network Protocol.
559 * See the UEFI spec for details.
560 *
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100561 * @this: the instance of the Simple Network Protocol
562 * @header_size: size of the media header
563 * @buffer_size: size of the buffer to receive the packet
564 * @buffer: buffer to receive the packet
565 * @src_addr: source MAC address
566 * @dest_addr: destination MAC address
567 * @protocol: protocol
568 * Return: status code
Heinrich Schuchardt8db174d2017-10-05 16:36:03 +0200569 */
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100570static efi_status_t EFIAPI efi_net_receive
571 (struct efi_simple_network *this, size_t *header_size,
572 size_t *buffer_size, void *buffer,
573 struct efi_mac_address *src_addr,
574 struct efi_mac_address *dest_addr, u16 *protocol)
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200575{
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100576 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardt336d9df2017-10-05 16:36:04 +0200577 struct ethernet_hdr *eth_hdr;
578 size_t hdr_size = sizeof(struct ethernet_hdr);
579 u16 protlen;
580
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200581 EFI_ENTRY("%p, %p, %p, %p, %p, %p, %p", this, header_size,
582 buffer_size, buffer, src_addr, dest_addr, protocol);
583
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100584 /* Execute events */
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200585 efi_timer_check();
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200586
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100587 /* Check parameters */
Heinrich Schuchardtce54fdc2019-05-15 23:27:43 +0200588 if (!this || !buffer || !buffer_size) {
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100589 ret = EFI_INVALID_PARAMETER;
590 goto out;
591 }
592
593 switch (this->mode->state) {
594 case EFI_NETWORK_STOPPED:
595 ret = EFI_NOT_STARTED;
596 goto out;
597 case EFI_NETWORK_STARTED:
598 ret = EFI_DEVICE_ERROR;
599 goto out;
600 default:
601 break;
602 }
603
604 if (!new_rx_packet) {
605 ret = EFI_NOT_READY;
606 goto out;
607 }
Heinrich Schuchardt336d9df2017-10-05 16:36:04 +0200608 /* Fill export parameters */
609 eth_hdr = (struct ethernet_hdr *)net_rx_packet;
610 protlen = ntohs(eth_hdr->et_protlen);
611 if (protlen == 0x8100) {
612 hdr_size += 4;
613 protlen = ntohs(*(u16 *)&net_rx_packet[hdr_size - 2]);
614 }
615 if (header_size)
616 *header_size = hdr_size;
617 if (dest_addr)
618 memcpy(dest_addr, eth_hdr->et_dest, ARP_HLEN);
619 if (src_addr)
620 memcpy(src_addr, eth_hdr->et_src, ARP_HLEN);
621 if (protocol)
622 *protocol = protlen;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200623 if (*buffer_size < net_rx_packet_len) {
Heinrich Schuchardte1fec152018-10-18 21:51:38 +0200624 /* Packet doesn't fit, try again with bigger buffer */
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200625 *buffer_size = net_rx_packet_len;
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100626 ret = EFI_BUFFER_TOO_SMALL;
627 goto out;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200628 }
Heinrich Schuchardt336d9df2017-10-05 16:36:04 +0200629 /* Copy packet */
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200630 memcpy(buffer, net_rx_packet, net_rx_packet_len);
631 *buffer_size = net_rx_packet_len;
Heinrich Schuchardt7f6d8742019-08-31 09:56:30 +0200632 new_rx_packet = 0;
633 this->int_status &= ~EFI_SIMPLE_NETWORK_RECEIVE_INTERRUPT;
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100634out:
635 return EFI_EXIT(ret);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200636}
637
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100638/**
639 * efi_net_set_dhcp_ack() - take note of a selected DHCP IP address
640 *
641 * This function is called by dhcp_handler().
Heinrich Schuchardtfe1a81c2019-09-05 20:37:13 +0200642 *
643 * @pkt: packet received by dhcp_handler()
644 * @len: length of the packet received
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100645 */
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200646void efi_net_set_dhcp_ack(void *pkt, int len)
647{
648 int maxsize = sizeof(*dhcp_ack);
649
650 if (!dhcp_ack)
651 dhcp_ack = malloc(maxsize);
652
653 memcpy(dhcp_ack, pkt, min(len, maxsize));
654}
655
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100656/**
657 * efi_net_push() - callback for received network packet
658 *
659 * This function is called when a network packet is received by eth_rx().
660 *
661 * @pkt: network packet
662 * @len: length
663 */
664static void efi_net_push(void *pkt, int len)
665{
666 new_rx_packet = true;
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100667}
668
669/**
670 * efi_network_timer_notify() - check if a new network packet has been received
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200671 *
672 * This notification function is called in every timer cycle.
673 *
Heinrich Schuchardtfe1a81c2019-09-05 20:37:13 +0200674 * @event: the event for which this notification function is registered
675 * @context: event context - not used in this function
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200676 */
677static void EFIAPI efi_network_timer_notify(struct efi_event *event,
678 void *context)
679{
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100680 struct efi_simple_network *this = (struct efi_simple_network *)context;
681
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200682 EFI_ENTRY("%p, %p", event, context);
683
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100684 /*
685 * Some network drivers do not support calling eth_rx() before
686 * initialization.
687 */
688 if (!this || this->mode->state != EFI_NETWORK_INITIALIZED)
689 goto out;
690
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200691 if (!new_rx_packet) {
692 push_packet = efi_net_push;
693 eth_rx();
694 push_packet = NULL;
Heinrich Schuchardt7f6d8742019-08-31 09:56:30 +0200695 if (new_rx_packet) {
696 /* Check that we at least received an Ethernet header */
697 if (net_rx_packet_len >=
698 sizeof(struct ethernet_hdr)) {
699 this->int_status |=
700 EFI_SIMPLE_NETWORK_RECEIVE_INTERRUPT;
701 wait_for_packet->is_signaled = true;
702 } else {
703 new_rx_packet = 0;
704 }
705 }
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200706 }
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100707out:
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200708 EFI_EXIT(EFI_SUCCESS);
709}
710
Heinrich Schuchardta6d37092019-08-06 08:13:33 +0200711static efi_status_t EFIAPI efi_pxe_base_code_start(
712 struct efi_pxe_base_code_protocol *this,
713 u8 use_ipv6)
714{
715 return EFI_UNSUPPORTED;
716}
717
718static efi_status_t EFIAPI efi_pxe_base_code_stop(
719 struct efi_pxe_base_code_protocol *this)
720{
721 return EFI_UNSUPPORTED;
722}
723
724static efi_status_t EFIAPI efi_pxe_base_code_dhcp(
725 struct efi_pxe_base_code_protocol *this,
726 u8 sort_offers)
727{
728 return EFI_UNSUPPORTED;
729}
730
731static efi_status_t EFIAPI efi_pxe_base_code_discover(
732 struct efi_pxe_base_code_protocol *this,
733 u16 type, u16 *layer, u8 bis,
734 struct efi_pxe_base_code_discover_info *info)
735{
736 return EFI_UNSUPPORTED;
737}
738
739static efi_status_t EFIAPI efi_pxe_base_code_mtftp(
740 struct efi_pxe_base_code_protocol *this,
741 u32 operation, void *buffer_ptr,
742 u8 overwrite, efi_uintn_t *buffer_size,
743 struct efi_ip_address server_ip, char *filename,
744 struct efi_pxe_base_code_mtftp_info *info,
745 u8 dont_use_buffer)
746{
747 return EFI_UNSUPPORTED;
748}
749
750static efi_status_t EFIAPI efi_pxe_base_code_udp_write(
751 struct efi_pxe_base_code_protocol *this,
752 u16 op_flags, struct efi_ip_address *dest_ip,
753 u16 *dest_port,
754 struct efi_ip_address *gateway_ip,
755 struct efi_ip_address *src_ip, u16 *src_port,
756 efi_uintn_t *header_size, void *header_ptr,
757 efi_uintn_t *buffer_size, void *buffer_ptr)
758{
759 return EFI_UNSUPPORTED;
760}
761
762static efi_status_t EFIAPI efi_pxe_base_code_udp_read(
763 struct efi_pxe_base_code_protocol *this,
764 u16 op_flags, struct efi_ip_address *dest_ip,
765 u16 *dest_port, struct efi_ip_address *src_ip,
766 u16 *src_port, efi_uintn_t *header_size,
767 void *header_ptr, efi_uintn_t *buffer_size,
768 void *buffer_ptr)
769{
770 return EFI_UNSUPPORTED;
771}
772
773static efi_status_t EFIAPI efi_pxe_base_code_set_ip_filter(
774 struct efi_pxe_base_code_protocol *this,
775 struct efi_pxe_base_code_filter *new_filter)
776{
777 return EFI_UNSUPPORTED;
778}
779
780static efi_status_t EFIAPI efi_pxe_base_code_arp(
781 struct efi_pxe_base_code_protocol *this,
782 struct efi_ip_address *ip_addr,
783 struct efi_mac_address *mac_addr)
784{
785 return EFI_UNSUPPORTED;
786}
787
788static efi_status_t EFIAPI efi_pxe_base_code_set_parameters(
789 struct efi_pxe_base_code_protocol *this,
790 u8 *new_auto_arp, u8 *new_send_guid,
791 u8 *new_ttl, u8 *new_tos,
792 u8 *new_make_callback)
793{
794 return EFI_UNSUPPORTED;
795}
796
797static efi_status_t EFIAPI efi_pxe_base_code_set_station_ip(
798 struct efi_pxe_base_code_protocol *this,
799 struct efi_ip_address *new_station_ip,
800 struct efi_ip_address *new_subnet_mask)
801{
802 return EFI_UNSUPPORTED;
803}
804
805static efi_status_t EFIAPI efi_pxe_base_code_set_packets(
806 struct efi_pxe_base_code_protocol *this,
807 u8 *new_dhcp_discover_valid,
808 u8 *new_dhcp_ack_received,
809 u8 *new_proxy_offer_received,
810 u8 *new_pxe_discover_valid,
811 u8 *new_pxe_reply_received,
812 u8 *new_pxe_bis_reply_received,
813 EFI_PXE_BASE_CODE_PACKET *new_dchp_discover,
814 EFI_PXE_BASE_CODE_PACKET *new_dhcp_acc,
815 EFI_PXE_BASE_CODE_PACKET *new_proxy_offer,
816 EFI_PXE_BASE_CODE_PACKET *new_pxe_discover,
817 EFI_PXE_BASE_CODE_PACKET *new_pxe_reply,
818 EFI_PXE_BASE_CODE_PACKET *new_pxe_bis_reply)
819{
820 return EFI_UNSUPPORTED;
821}
822
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100823/**
824 * efi_net_register() - register the simple network protocol
825 *
826 * This gets called from do_bootefi_exec().
827 */
Heinrich Schuchardt075d4252018-03-03 15:28:56 +0100828efi_status_t efi_net_register(void)
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200829{
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100830 struct efi_net_obj *netobj = NULL;
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200831 efi_status_t r;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200832
833 if (!eth_get_dev()) {
Heinrich Schuchardte1fec152018-10-18 21:51:38 +0200834 /* No network device active, don't expose any */
Heinrich Schuchardt075d4252018-03-03 15:28:56 +0100835 return EFI_SUCCESS;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200836 }
837
Heinrich Schuchardte1fec152018-10-18 21:51:38 +0200838 /* We only expose the "active" network device, so one is enough */
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200839 netobj = calloc(1, sizeof(*netobj));
Heinrich Schuchardt622fe622018-12-01 00:16:32 +0100840 if (!netobj)
841 goto out_of_resources;
842
843 /* Allocate an aligned transmit buffer */
844 transmit_buffer = calloc(1, PKTSIZE_ALIGN + PKTALIGN);
845 if (!transmit_buffer)
846 goto out_of_resources;
847 transmit_buffer = (void *)ALIGN((uintptr_t)transmit_buffer, PKTALIGN);
Heinrich Schuchardt84d14562017-11-26 14:05:13 +0100848
849 /* Hook net up to the device list */
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +0200850 efi_add_handle(&netobj->header);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200851
852 /* Fill in object data */
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +0200853 r = efi_add_protocol(&netobj->header, &efi_net_guid,
Heinrich Schuchardt84d14562017-11-26 14:05:13 +0100854 &netobj->net);
855 if (r != EFI_SUCCESS)
Heinrich Schuchardt075d4252018-03-03 15:28:56 +0100856 goto failure_to_add_protocol;
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +0200857 r = efi_add_protocol(&netobj->header, &efi_guid_device_path,
Heinrich Schuchardt84d14562017-11-26 14:05:13 +0100858 efi_dp_from_eth());
859 if (r != EFI_SUCCESS)
Heinrich Schuchardt075d4252018-03-03 15:28:56 +0100860 goto failure_to_add_protocol;
Heinrich Schuchardta6d37092019-08-06 08:13:33 +0200861 r = efi_add_protocol(&netobj->header, &efi_pxe_base_code_protocol_guid,
Heinrich Schuchardt84d14562017-11-26 14:05:13 +0100862 &netobj->pxe);
863 if (r != EFI_SUCCESS)
Heinrich Schuchardt075d4252018-03-03 15:28:56 +0100864 goto failure_to_add_protocol;
Heinrich Schuchardtbdecf972017-10-05 16:35:57 +0200865 netobj->net.revision = EFI_SIMPLE_NETWORK_PROTOCOL_REVISION;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200866 netobj->net.start = efi_net_start;
867 netobj->net.stop = efi_net_stop;
868 netobj->net.initialize = efi_net_initialize;
869 netobj->net.reset = efi_net_reset;
870 netobj->net.shutdown = efi_net_shutdown;
871 netobj->net.receive_filters = efi_net_receive_filters;
872 netobj->net.station_address = efi_net_station_address;
873 netobj->net.statistics = efi_net_statistics;
874 netobj->net.mcastiptomac = efi_net_mcastiptomac;
875 netobj->net.nvdata = efi_net_nvdata;
876 netobj->net.get_status = efi_net_get_status;
877 netobj->net.transmit = efi_net_transmit;
878 netobj->net.receive = efi_net_receive;
879 netobj->net.mode = &netobj->net_mode;
Heinrich Schuchardt72a8f162019-09-01 15:24:47 +0200880 netobj->net_mode.state = EFI_NETWORK_STOPPED;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200881 memcpy(netobj->net_mode.current_address.mac_addr, eth_get_ethaddr(), 6);
Heinrich Schuchardt5d4a5ea2017-10-05 16:35:58 +0200882 netobj->net_mode.hwaddr_size = ARP_HLEN;
Heinrich Schuchardt5947b492019-08-31 10:55:29 +0200883 netobj->net_mode.media_header_size = ETHER_HDR_SIZE;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200884 netobj->net_mode.max_packet_size = PKTSIZE;
Andrew Thomasf25ddca2018-06-21 16:21:01 -0700885 netobj->net_mode.if_type = ARP_ETHER;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200886
Heinrich Schuchardta6d37092019-08-06 08:13:33 +0200887 netobj->pxe.revision = EFI_PXE_BASE_CODE_PROTOCOL_REVISION;
888 netobj->pxe.start = efi_pxe_base_code_start;
889 netobj->pxe.stop = efi_pxe_base_code_stop;
890 netobj->pxe.dhcp = efi_pxe_base_code_dhcp;
891 netobj->pxe.discover = efi_pxe_base_code_discover;
892 netobj->pxe.mtftp = efi_pxe_base_code_mtftp;
893 netobj->pxe.udp_write = efi_pxe_base_code_udp_write;
894 netobj->pxe.udp_read = efi_pxe_base_code_udp_read;
895 netobj->pxe.set_ip_filter = efi_pxe_base_code_set_ip_filter;
896 netobj->pxe.arp = efi_pxe_base_code_arp;
897 netobj->pxe.set_parameters = efi_pxe_base_code_set_parameters;
898 netobj->pxe.set_station_ip = efi_pxe_base_code_set_station_ip;
899 netobj->pxe.set_packets = efi_pxe_base_code_set_packets;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200900 netobj->pxe.mode = &netobj->pxe_mode;
901 if (dhcp_ack)
902 netobj->pxe_mode.dhcp_ack = *dhcp_ack;
903
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200904 /*
Heinrich Schuchardte5c21602017-10-05 16:36:01 +0200905 * Create WaitForPacket event.
906 */
907 r = efi_create_event(EVT_NOTIFY_WAIT, TPL_CALLBACK,
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100908 efi_network_timer_notify, NULL, NULL,
Heinrich Schuchardte5c21602017-10-05 16:36:01 +0200909 &wait_for_packet);
910 if (r != EFI_SUCCESS) {
911 printf("ERROR: Failed to register network event\n");
912 return r;
913 }
914 netobj->net.wait_for_packet = wait_for_packet;
915 /*
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200916 * Create a timer event.
917 *
918 * The notification function is used to check if a new network packet
919 * has been received.
Heinrich Schuchardtee3db4f2018-03-24 18:40:22 +0100920 *
921 * iPXE is running at TPL_CALLBACK most of the time. Use a higher TPL.
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200922 */
Heinrich Schuchardtee3db4f2018-03-24 18:40:22 +0100923 r = efi_create_event(EVT_TIMER | EVT_NOTIFY_SIGNAL, TPL_NOTIFY,
Heinrich Schuchardt41b05872018-12-01 00:16:33 +0100924 efi_network_timer_notify, &netobj->net, NULL,
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200925 &network_timer_event);
926 if (r != EFI_SUCCESS) {
927 printf("ERROR: Failed to register network event\n");
928 return r;
929 }
Heinrich Schuchardte1fec152018-10-18 21:51:38 +0200930 /* Network is time critical, create event in every timer cycle */
Heinrich Schuchardta0549ef2017-10-05 16:36:00 +0200931 r = efi_set_timer(network_timer_event, EFI_TIMER_PERIODIC, 0);
932 if (r != EFI_SUCCESS) {
933 printf("ERROR: Failed to set network timer\n");
934 return r;
935 }
936
Heinrich Schuchardt075d4252018-03-03 15:28:56 +0100937 return EFI_SUCCESS;
938failure_to_add_protocol:
939 printf("ERROR: Failure to add protocol\n");
940 return r;
Heinrich Schuchardt622fe622018-12-01 00:16:32 +0100941out_of_resources:
942 free(netobj);
943 /* free(transmit_buffer) not needed yet */
944 printf("ERROR: Out of memory\n");
945 return EFI_OUT_OF_RESOURCES;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200946}