iPXE
Udp4.h
Go to the documentation of this file.
1 /** @file
2  UDP4 Service Binding Protocol as defined in UEFI specification.
3 
4  The EFI UDPv4 Protocol provides simple packet-oriented services
5  to transmit and receive UDP packets.
6 
7 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
8 SPDX-License-Identifier: BSD-2-Clause-Patent
9 
10  @par Revision Reference:
11  This Protocol is introduced in UEFI Specification 2.0.
12 
13 **/
14 
15 #ifndef __EFI_UDP4_PROTOCOL_H__
16 #define __EFI_UDP4_PROTOCOL_H__
17 
18 FILE_LICENCE ( BSD2_PATENT );
19 FILE_SECBOOT ( PERMITTED );
20 
21 #include <ipxe/efi/Protocol/Ip4.h>
22 //
23 // GUID definitions
24 //
25 #define EFI_UDP4_SERVICE_BINDING_PROTOCOL_GUID \
26  { \
27  0x83f01464, 0x99bd, 0x45e5, {0xb3, 0x83, 0xaf, 0x63, 0x05, 0xd8, 0xe9, 0xe6 } \
28  }
29 
30 #define EFI_UDP4_PROTOCOL_GUID \
31  { \
32  0x3ad9df29, 0x4501, 0x478d, {0xb1, 0xf8, 0x7f, 0x7f, 0xe7, 0x0e, 0x50, 0xf3 } \
33  }
34 
36 
37 ///
38 /// EFI_UDP4_SERVICE_POINT is deprecated in the UEFI 2.4B and should not be used any more.
39 /// The definition in here is only present to provide backwards compatability.
40 ///
41 typedef struct {
48 
49 ///
50 /// EFI_UDP4_VARIABLE_DATA is deprecated in the UEFI 2.4B and should not be used any more.
51 /// The definition in here is only present to provide backwards compatability.
52 ///
53 typedef struct {
58 
59 typedef struct {
63 
64 typedef struct {
70 typedef struct {
71  //
72  // Receiving Filters
73  //
78  //
79  // I/O parameters
80  //
86  //
87  // Access Point
88  //
96 
97 typedef struct {
102  EFI_UDP4_FRAGMENT_DATA FragmentTable[1];
104 
105 typedef struct {
111  EFI_UDP4_FRAGMENT_DATA FragmentTable[1];
113 
114 typedef struct {
117  union {
120  } Packet;
122 
123 /**
124  Reads the current operational settings.
125 
126  The GetModeData() function copies the current operational settings of this EFI
127  UDPv4 Protocol instance into user-supplied buffers. This function is used
128  optionally to retrieve the operational mode data of underlying networks or
129  drivers.
130 
131  @param This The pointer to the EFI_UDP4_PROTOCOL instance.
132  @param Udp4ConfigData The pointer to the buffer to receive the current configuration data.
133  @param Ip4ModeData The pointer to the EFI IPv4 Protocol mode data structure.
134  @param MnpConfigData The pointer to the managed network configuration data structure.
135  @param SnpModeData The pointer to the simple network mode data structure.
136 
137  @retval EFI_SUCCESS The mode data was read.
138  @retval EFI_NOT_STARTED When Udp4ConfigData is queried, no configuration data is
139  available because this instance has not been started.
140  @retval EFI_INVALID_PARAMETER This is NULL.
141 
142 **/
143 typedef
146  IN EFI_UDP4_PROTOCOL *This,
147  OUT EFI_UDP4_CONFIG_DATA *Udp4ConfigData OPTIONAL,
148  OUT EFI_IP4_MODE_DATA *Ip4ModeData OPTIONAL,
151  );
152 
153 /**
154  Initializes, changes, or resets the operational parameters for this instance of the EFI UDPv4
155  Protocol.
156 
157  The Configure() function is used to do the following:
158  * Initialize and start this instance of the EFI UDPv4 Protocol.
159  * Change the filtering rules and operational parameters.
160  * Reset this instance of the EFI UDPv4 Protocol.
161  Until these parameters are initialized, no network traffic can be sent or
162  received by this instance. This instance can be also reset by calling Configure()
163  with UdpConfigData set to NULL. Once reset, the receiving queue and transmitting
164  queue are flushed and no traffic is allowed through this instance.
165  With different parameters in UdpConfigData, Configure() can be used to bind
166  this instance to specified port.
167 
168  @param This The pointer to the EFI_UDP4_PROTOCOL instance.
169  @param Udp4ConfigData The pointer to the buffer to receive the current configuration data.
170 
171  @retval EFI_SUCCESS The configuration settings were set, changed, or reset successfully.
172  @retval EFI_NO_MAPPING When using a default address, configuration (DHCP, BOOTP,
173  RARP, etc.) is not finished yet.
174  @retval EFI_INVALID_PARAMETER This is NULL.
175  @retval EFI_INVALID_PARAMETER UdpConfigData.StationAddress is not a valid unicast IPv4 address.
176  @retval EFI_INVALID_PARAMETER UdpConfigData.SubnetMask is not a valid IPv4 address mask. The subnet
177  mask must be contiguous.
178  @retval EFI_INVALID_PARAMETER UdpConfigData.RemoteAddress is not a valid unicast IPv4 address if it
179  is not zero.
180  @retval EFI_ALREADY_STARTED The EFI UDPv4 Protocol instance is already started/configured
181  and must be stopped/reset before it can be reconfigured.
182  @retval EFI_ACCESS_DENIED UdpConfigData. AllowDuplicatePort is FALSE
183  and UdpConfigData.StationPort is already used by
184  other instance.
185  @retval EFI_OUT_OF_RESOURCES The EFI UDPv4 Protocol driver cannot allocate memory for this
186  EFI UDPv4 Protocol instance.
187  @retval EFI_DEVICE_ERROR An unexpected network or system error occurred and this instance
188  was not opened.
189 
190 **/
191 typedef
194  IN EFI_UDP4_PROTOCOL *This,
195  IN EFI_UDP4_CONFIG_DATA *UdpConfigData OPTIONAL
196  );
197 
198 /**
199  Joins and leaves multicast groups.
200 
201  The Groups() function is used to enable and disable the multicast group
202  filtering. If the JoinFlag is FALSE and the MulticastAddress is NULL, then all
203  currently joined groups are left.
204 
205  @param This The pointer to the EFI_UDP4_PROTOCOL instance.
206  @param JoinFlag Set to TRUE to join a multicast group. Set to FALSE to leave one
207  or all multicast groups.
208  @param MulticastAddress The pointer to multicast group address to join or leave.
209 
210  @retval EFI_SUCCESS The operation completed successfully.
211  @retval EFI_NOT_STARTED The EFI UDPv4 Protocol instance has not been started.
212  @retval EFI_NO_MAPPING When using a default address, configuration (DHCP, BOOTP,
213  RARP, etc.) is not finished yet.
214  @retval EFI_OUT_OF_RESOURCES Could not allocate resources to join the group.
215  @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:
216  - This is NULL.
217  - JoinFlag is TRUE and MulticastAddress is NULL.
218  - JoinFlag is TRUE and *MulticastAddress is not
219  a valid multicast address.
220  @retval EFI_ALREADY_STARTED The group address is already in the group table (when
221  JoinFlag is TRUE).
222  @retval EFI_NOT_FOUND The group address is not in the group table (when JoinFlag is
223  FALSE).
224  @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
225 
226 **/
227 typedef
230  IN EFI_UDP4_PROTOCOL *This,
231  IN BOOLEAN JoinFlag,
232  IN EFI_IPv4_ADDRESS *MulticastAddress OPTIONAL
233  );
234 
235 /**
236  Adds and deletes routing table entries.
237 
238  The Routes() function adds a route to or deletes a route from the routing table.
239  Routes are determined by comparing the SubnetAddress with the destination IP
240  address and arithmetically AND-ing it with the SubnetMask. The gateway address
241  must be on the same subnet as the configured station address.
242  The default route is added with SubnetAddress and SubnetMask both set to 0.0.0.0.
243  The default route matches all destination IP addresses that do not match any
244  other routes.
245  A zero GatewayAddress is a nonroute. Packets are sent to the destination IP
246  address if it can be found in the Address Resolution Protocol (ARP) cache or
247  on the local subnet. One automatic nonroute entry will be inserted into the
248  routing table for outgoing packets that are addressed to a local subnet
249  (gateway address of 0.0.0.0).
250  Each instance of the EFI UDPv4 Protocol has its own independent routing table.
251  Instances of the EFI UDPv4 Protocol that use the default IP address will also
252  have copies of the routing table provided by the EFI_IP4_CONFIG_PROTOCOL. These
253  copies will be updated automatically whenever the IP driver reconfigures its
254  instances; as a result, the previous modification to these copies will be lost.
255 
256  @param This The pointer to the EFI_UDP4_PROTOCOL instance.
257  @param DeleteRoute Set to TRUE to delete this route from the routing table.
258  Set to FALSE to add this route to the routing table.
259  @param SubnetAddress The destination network address that needs to be routed.
260  @param SubnetMask The subnet mask of SubnetAddress.
261  @param GatewayAddress The gateway IP address for this route.
262 
263  @retval EFI_SUCCESS The operation completed successfully.
264  @retval EFI_NOT_STARTED The EFI UDPv4 Protocol instance has not been started.
265  @retval EFI_NO_MAPPING When using a default address, configuration (DHCP, BOOTP,
266  - RARP, etc.) is not finished yet.
267  @retval EFI_INVALID_PARAMETER One or more parameters are invalid.
268  @retval EFI_OUT_OF_RESOURCES Could not add the entry to the routing table.
269  @retval EFI_NOT_FOUND This route is not in the routing table.
270  @retval EFI_ACCESS_DENIED The route is already defined in the routing table.
271 
272 **/
273 typedef
276  IN EFI_UDP4_PROTOCOL *This,
277  IN BOOLEAN DeleteRoute,
278  IN EFI_IPv4_ADDRESS *SubnetAddress,
279  IN EFI_IPv4_ADDRESS *SubnetMask,
280  IN EFI_IPv4_ADDRESS *GatewayAddress
281  );
282 
283 /**
284  Polls for incoming data packets and processes outgoing data packets.
285 
286  The Poll() function can be used by network drivers and applications to increase
287  the rate that data packets are moved between the communications device and the
288  transmit and receive queues.
289  In some systems, the periodic timer event in the managed network driver may not
290  poll the underlying communications device fast enough to transmit and/or receive
291  all data packets without missing incoming packets or dropping outgoing packets.
292  Drivers and applications that are experiencing packet loss should try calling
293  the Poll() function more often.
294 
295  @param This The pointer to the EFI_UDP4_PROTOCOL instance.
296 
297  @retval EFI_SUCCESS Incoming or outgoing data was processed.
298  @retval EFI_INVALID_PARAMETER This is NULL.
299  @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
300  @retval EFI_TIMEOUT Data was dropped out of the transmit and/or receive queue.
301 
302 **/
303 typedef
306  IN EFI_UDP4_PROTOCOL *This
307  );
308 
309 /**
310  Places an asynchronous receive request into the receiving queue.
311 
312  The Receive() function places a completion token into the receive packet queue.
313  This function is always asynchronous.
314  The caller must fill in the Token.Event field in the completion token, and this
315  field cannot be NULL. When the receive operation completes, the EFI UDPv4 Protocol
316  driver updates the Token.Status and Token.Packet.RxData fields and the Token.Event
317  is signaled. Providing a proper notification function and context for the event
318  will enable the user to receive the notification and receiving status. That
319  notification function is guaranteed to not be re-entered.
320 
321  @param This The pointer to the EFI_UDP4_PROTOCOL instance.
322  @param Token The pointer to a token that is associated with the receive data
323  descriptor.
324 
325  @retval EFI_SUCCESS The receive completion token was cached.
326  @retval EFI_NOT_STARTED This EFI UDPv4 Protocol instance has not been started.
327  @retval EFI_NO_MAPPING When using a default address, configuration (DHCP, BOOTP, RARP, etc.)
328  is not finished yet.
329  @retval EFI_INVALID_PARAMETER This is NULL.
330  @retval EFI_INVALID_PARAMETER Token is NULL.
331  @retval EFI_INVALID_PARAMETER Token.Event is NULL.
332  @retval EFI_OUT_OF_RESOURCES The receive completion token could not be queued due to a lack of system
333  resources (usually memory).
334  @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
335  @retval EFI_ACCESS_DENIED A receive completion token with the same Token.Event was already in
336  the receive queue.
337  @retval EFI_NOT_READY The receive request could not be queued because the receive queue is full.
338 
339 **/
340 typedef
343  IN EFI_UDP4_PROTOCOL *This,
345  );
346 
347 /**
348  Queues outgoing data packets into the transmit queue.
349 
350  The Transmit() function places a sending request to this instance of the EFI
351  UDPv4 Protocol, alongside the transmit data that was filled by the user. Whenever
352  the packet in the token is sent out or some errors occur, the Token.Event will
353  be signaled and Token.Status is updated. Providing a proper notification function
354  and context for the event will enable the user to receive the notification and
355  transmitting status.
356 
357  @param This The pointer to the EFI_UDP4_PROTOCOL instance.
358  @param Token The pointer to the completion token that will be placed into the
359  transmit queue.
360 
361  @retval EFI_SUCCESS The data has been queued for transmission.
362  @retval EFI_NOT_STARTED This EFI UDPv4 Protocol instance has not been started.
363  @retval EFI_NO_MAPPING When using a default address, configuration (DHCP, BOOTP,
364  RARP, etc.) is not finished yet.
365  @retval EFI_INVALID_PARAMETER One or more parameters are invalid.
366  @retval EFI_ACCESS_DENIED The transmit completion token with the same
367  Token.Event was already in the transmit queue.
368  @retval EFI_NOT_READY The completion token could not be queued because the
369  transmit queue is full.
370  @retval EFI_OUT_OF_RESOURCES Could not queue the transmit data.
371  @retval EFI_NOT_FOUND There is no route to the destination network or address.
372  @retval EFI_BAD_BUFFER_SIZE The data length is greater than the maximum UDP packet
373  size. Or the length of the IP header + UDP header + data
374  length is greater than MTU if DoNotFragment is TRUE.
375 
376 **/
377 typedef
380  IN EFI_UDP4_PROTOCOL *This,
382  );
383 
384 /**
385  Aborts an asynchronous transmit or receive request.
386 
387  The Cancel() function is used to abort a pending transmit or receive request.
388  If the token is in the transmit or receive request queues, after calling this
389  function, Token.Status will be set to EFI_ABORTED and then Token.Event will be
390  signaled. If the token is not in one of the queues, which usually means that
391  the asynchronous operation has completed, this function will not signal the
392  token and EFI_NOT_FOUND is returned.
393 
394  @param This The pointer to the EFI_UDP4_PROTOCOL instance.
395  @param Token The pointer to a token that has been issued by
396  EFI_UDP4_PROTOCOL.Transmit() or
397  EFI_UDP4_PROTOCOL.Receive().If NULL, all pending
398  tokens are aborted.
399 
400  @retval EFI_SUCCESS The asynchronous I/O request was aborted and Token.Event
401  was signaled. When Token is NULL, all pending requests are
402  aborted and their events are signaled.
403  @retval EFI_INVALID_PARAMETER This is NULL.
404  @retval EFI_NOT_STARTED This instance has not been started.
405  @retval EFI_NO_MAPPING When using the default address, configuration (DHCP, BOOTP,
406  RARP, etc.) is not finished yet.
407  @retval EFI_NOT_FOUND When Token is not NULL, the asynchronous I/O request was
408  not found in the transmit or receive queue. It has either completed
409  or was not issued by Transmit() and Receive().
410 
411 **/
412 typedef
415  IN EFI_UDP4_PROTOCOL *This,
417  );
418 
419 ///
420 /// The EFI_UDP4_PROTOCOL defines an EFI UDPv4 Protocol session that can be used
421 /// by any network drivers, applications, or daemons to transmit or receive UDP packets.
422 /// This protocol instance can either be bound to a specified port as a service or
423 /// connected to some remote peer as an active client. Each instance has its own settings,
424 /// such as the routing table and group table, which are independent from each other.
425 ///
435 };
436 
439 
440 #endif
UINT16 RemotePort
Definition: Udp4.h:46
#define OPTIONAL
Passing the datum to the function is optional, and a NULL is passed if the value is not supplied.
Definition: Base.h:293
FILE_LICENCE(BSD2_PATENT)
BOOLEAN DoNotFragment
Definition: Udp4.h:83
EFI_UDP4_TRANSMIT Transmit
Definition: Udp4.h:431
UINT32 FragmentCount
Definition: Udp4.h:101
EFI_UDP4_VARIABLE_DATA is deprecated in the UEFI 2.4B and should not be used any more.
Definition: Udp4.h:53
EFI_EVENT RecycleSignal
Definition: Udp4.h:107
BOOLEAN AcceptAnyPort
Definition: Udp4.h:76
128 bit buffer containing a unique identifier value.
Definition: Base.h:216
Definition: efi.h:63
VOID * FragmentBuffer
Definition: Udp4.h:61
unsigned char BOOLEAN
EFI_GUID gEfiUdp4ServiceBindingProtocolGuid
UINT16 SourcePort
Definition: Udp4.h:66
EFI_STATUS(EFIAPI * EFI_UDP4_GROUPS)(IN EFI_UDP4_PROTOCOL *This, IN BOOLEAN JoinFlag, IN EFI_IPv4_ADDRESS *MulticastAddress OPTIONAL)
Joins and leaves multicast groups.
Definition: Udp4.h:229
BOOLEAN AllowDuplicatePort
Definition: Udp4.h:77
EFI_UDP4_POLL Poll
Definition: Udp4.h:434
unsigned int UINT32
Definition: ProcessorBind.h:99
EFI_UDP4_RECEIVE Receive
Definition: Udp4.h:432
FILE_SECBOOT(PERMITTED)
EFI_UDP4_SESSION_DATA * UdpSessionData
Definition: Udp4.h:98
UINT32 FragmentLength
Definition: Udp4.h:60
unsigned char UINT8
EFI_UDP4_ROUTES Routes
Definition: Udp4.h:430
EFI_STATUS(EFIAPI * EFI_UDP4_CONFIGURE)(IN EFI_UDP4_PROTOCOL *This, IN EFI_UDP4_CONFIG_DATA *UdpConfigData OPTIONAL)
Initializes, changes, or resets the operational parameters for this instance of the EFI UDPv4 Protoco...
Definition: Udp4.h:193
EFI_IPv4_ADDRESS DestinationAddress
Definition: Udp4.h:67
UINT32 ReceiveTimeout
Definition: Udp4.h:84
EFI_STATUS(EFIAPI * EFI_UDP4_GET_MODE_DATA)(IN EFI_UDP4_PROTOCOL *This, OUT EFI_UDP4_CONFIG_DATA *Udp4ConfigData OPTIONAL, OUT EFI_IP4_MODE_DATA *Ip4ModeData OPTIONAL, OUT EFI_MANAGED_NETWORK_CONFIG_DATA *MnpConfigData OPTIONAL, OUT EFI_SIMPLE_NETWORK_MODE *SnpModeData OPTIONAL)
Reads the current operational settings.
Definition: Udp4.h:145
EFI_IPv4_ADDRESS * GatewayAddress
Definition: Udp4.h:99
UINT32 FragmentCount
Definition: Udp4.h:110
UINT16 LocalPort
Definition: Udp4.h:44
EFI_STATUS(EFIAPI * EFI_UDP4_TRANSMIT)(IN EFI_UDP4_PROTOCOL *This, IN EFI_UDP4_COMPLETION_TOKEN *Token)
Queues outgoing data packets into the transmit queue.
Definition: Udp4.h:379
#define OUT
Definition: mlx_utils.h:29
EFI_UDP4_SESSION_DATA UdpSession
Definition: Udp4.h:108
This file defines the EFI IPv4 (Internet Protocol version 4) Protocol interface.
EFI_UDP4_SERVICE_POINT is deprecated in the UEFI 2.4B and should not be used any more.
Definition: Udp4.h:41
4-byte buffer.
Definition: Base.h:226
UINT16 StationPort
Definition: Udp4.h:92
EFI_UDP4_CONFIGURE Configure
Definition: Udp4.h:428
EFI_STATUS(EFIAPI * EFI_UDP4_CANCEL)(IN EFI_UDP4_PROTOCOL *This, IN EFI_UDP4_COMPLETION_TOKEN *Token OPTIONAL)
Aborts an asynchronous transmit or receive request.
Definition: Udp4.h:414
EFI_STATUS Status
Definition: Udp4.h:116
unsigned short UINT16
EFI_GUID gEfiUdp4ProtocolGuid
EFI_UDP4_TRANSMIT_DATA * TxData
Definition: Udp4.h:119
#define EFIAPI
EFI_UDP4_RECEIVE_DATA * RxData
Definition: Udp4.h:118
BOOLEAN AcceptBroadcast
Definition: Udp4.h:74
UINT32 DataLength
Definition: Udp4.h:109
EFI_UDP4_CANCEL Cancel
Definition: Udp4.h:433
EFI_IPv4_ADDRESS SourceAddress
Definition: Udp4.h:65
EFI_HANDLE DriverHandle
Definition: Udp4.h:54
UINT8 TimeToLive
Definition: Udp4.h:82
UINT16 RemotePort
Definition: Udp4.h:94
#define VOID
Undeclared type.
Definition: Base.h:272
EFI_IPv4_ADDRESS LocalAddress
Definition: Udp4.h:43
UINT32 ServiceCount
Definition: Udp4.h:55
EFI Time Abstraction: Year: 1900 - 9999 Month: 1 - 12 Day: 1 - 31 Hour: 0 - 23 Minute: 0 - 59 Second:...
Definition: UefiBaseType.h:71
#define IN
Definition: mlx_utils.h:28
EFI_STATUS(EFIAPI * EFI_UDP4_RECEIVE)(IN EFI_UDP4_PROTOCOL *This, IN EFI_UDP4_COMPLETION_TOKEN *Token)
Places an asynchronous receive request into the receiving queue.
Definition: Udp4.h:342
EFI_UDP4_GROUPS Groups
Definition: Udp4.h:429
EFI_IPv4_ADDRESS StationAddress
Definition: Udp4.h:90
EFI_STATUS(EFIAPI * EFI_UDP4_ROUTES)(IN EFI_UDP4_PROTOCOL *This, IN BOOLEAN DeleteRoute, IN EFI_IPv4_ADDRESS *SubnetAddress, IN EFI_IPv4_ADDRESS *SubnetMask, IN EFI_IPv4_ADDRESS *GatewayAddress)
Adds and deletes routing table entries.
Definition: Udp4.h:275
EFI_IPv4_ADDRESS RemoteAddress
Definition: Udp4.h:93
RETURN_STATUS EFI_STATUS
Function return status for EFI API.
Definition: UefiBaseType.h:32
The EFI_UDP4_PROTOCOL defines an EFI UDPv4 Protocol session that can be used by any network drivers,...
Definition: Udp4.h:426
BOOLEAN AcceptPromiscuous
Definition: Udp4.h:75
EFI_UDP4_GET_MODE_DATA GetModeData
Definition: Udp4.h:427
BOOLEAN UseDefaultAddress
Definition: Udp4.h:89
EFI_IPv4_ADDRESS SubnetMask
Definition: Udp4.h:91
EFI_IPv4_ADDRESS RemoteAddress
Definition: Udp4.h:45
EFI_TIME TimeStamp
Definition: Udp4.h:106
EFI_STATUS(EFIAPI * EFI_UDP4_POLL)(IN EFI_UDP4_PROTOCOL *This)
Polls for incoming data packets and processes outgoing data packets.
Definition: Udp4.h:305
EFI_HANDLE InstanceHandle
Definition: Udp4.h:42
UINT8 TypeOfService
Definition: Udp4.h:81
UINT32 TransmitTimeout
Definition: Udp4.h:85
UINT16 DestinationPort
Definition: Udp4.h:68
Definition: efi.h:62