1 | /** @file
|
---|
2 | This file provides a definition of the EFI IPv4 Configuration
|
---|
3 | Protocol.
|
---|
4 |
|
---|
5 | Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
|
---|
6 | This program and the accompanying materials are licensed and made available under
|
---|
7 | the terms and conditions of the BSD License that accompanies this distribution.
|
---|
8 | The full text of the license may be found at
|
---|
9 | http://opensource.org/licenses/bsd-license.php.
|
---|
10 |
|
---|
11 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
12 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
13 |
|
---|
14 | @par Revision Reference:
|
---|
15 | This Protocol is introduced in UEFI Specification 2.0.
|
---|
16 |
|
---|
17 | **/
|
---|
18 | #ifndef __EFI_IP4CONFIG_PROTOCOL_H__
|
---|
19 | #define __EFI_IP4CONFIG_PROTOCOL_H__
|
---|
20 |
|
---|
21 | #include <Protocol/Ip4.h>
|
---|
22 |
|
---|
23 | #define EFI_IP4_CONFIG_PROTOCOL_GUID \
|
---|
24 | { \
|
---|
25 | 0x3b95aa31, 0x3793, 0x434b, {0x86, 0x67, 0xc8, 0x07, 0x08, 0x92, 0xe0, 0x5e } \
|
---|
26 | }
|
---|
27 |
|
---|
28 | typedef struct _EFI_IP4_CONFIG_PROTOCOL EFI_IP4_CONFIG_PROTOCOL;
|
---|
29 |
|
---|
30 | #define IP4_CONFIG_VARIABLE_ATTRIBUTES \
|
---|
31 | (EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_BOOTSERVICE_ACCESS)
|
---|
32 |
|
---|
33 | ///
|
---|
34 | /// EFI_IP4_IPCONFIG_DATA contains the minimum IPv4 configuration data
|
---|
35 | /// that is needed to start basic network communication. The StationAddress
|
---|
36 | /// and SubnetMask must be a valid unicast IP address and subnet mask.
|
---|
37 | /// If RouteTableSize is not zero, then RouteTable contains a properly
|
---|
38 | /// formatted routing table for the StationAddress/SubnetMask, with the
|
---|
39 | /// last entry in the table being the default route.
|
---|
40 | ///
|
---|
41 | typedef struct {
|
---|
42 | ///
|
---|
43 | /// Default station IP address, stored in network byte order.
|
---|
44 | ///
|
---|
45 | EFI_IPv4_ADDRESS StationAddress;
|
---|
46 | ///
|
---|
47 | /// Default subnet mask, stored in network byte order.
|
---|
48 | ///
|
---|
49 | EFI_IPv4_ADDRESS SubnetMask;
|
---|
50 | ///
|
---|
51 | /// Number of entries in the following RouteTable. May be zero.
|
---|
52 | ///
|
---|
53 | UINT32 RouteTableSize;
|
---|
54 | ///
|
---|
55 | /// Default routing table data (stored in network byte order).
|
---|
56 | /// Ignored if RouteTableSize is zero.
|
---|
57 | ///
|
---|
58 | EFI_IP4_ROUTE_TABLE *RouteTable;
|
---|
59 | } EFI_IP4_IPCONFIG_DATA;
|
---|
60 |
|
---|
61 |
|
---|
62 | /**
|
---|
63 | Starts running the configuration policy for the EFI IPv4 Protocol driver.
|
---|
64 |
|
---|
65 | The Start() function is called to determine and to begin the platform
|
---|
66 | configuration policy by the EFI IPv4 Protocol driver. This determination may
|
---|
67 | be as simple as returning EFI_UNSUPPORTED if there is no EFI IPv4 Protocol
|
---|
68 | driver configuration policy. It may be as involved as loading some defaults
|
---|
69 | from nonvolatile storage, downloading dynamic data from a DHCP server, and
|
---|
70 | checking permissions with a site policy server.
|
---|
71 | Starting the configuration policy is just the beginning. It may finish almost
|
---|
72 | instantly or it may take several minutes before it fails to retrieve configuration
|
---|
73 | information from one or more servers. Once the policy is started, drivers
|
---|
74 | should use the DoneEvent parameter to determine when the configuration policy
|
---|
75 | has completed. EFI_IP4_CONFIG_PROTOCOL.GetData() must then be called to
|
---|
76 | determine if the configuration succeeded or failed.
|
---|
77 | Until the configuration completes successfully, EFI IPv4 Protocol driver instances
|
---|
78 | that are attempting to use default configurations must return EFI_NO_MAPPING.
|
---|
79 | Once the configuration is complete, the EFI IPv4 Configuration Protocol driver
|
---|
80 | signals DoneEvent. The configuration may need to be updated in the future.
|
---|
81 | Note that in this case the EFI IPv4 Configuration Protocol driver must signal
|
---|
82 | ReconfigEvent, and all EFI IPv4 Protocol driver instances that are using default
|
---|
83 | configurations must return EFI_NO_MAPPING until the configuration policy has
|
---|
84 | been rerun.
|
---|
85 |
|
---|
86 | @param This The pointer to the EFI_IP4_CONFIG_PROTOCOL instance.
|
---|
87 | @param DoneEvent Event that will be signaled when the EFI IPv4
|
---|
88 | Protocol driver configuration policy completes
|
---|
89 | execution. This event must be of type EVT_NOTIFY_SIGNAL.
|
---|
90 | @param ReconfigEvent Event that will be signaled when the EFI IPv4
|
---|
91 | Protocol driver configuration needs to be updated.
|
---|
92 | This event must be of type EVT_NOTIFY_SIGNAL.
|
---|
93 |
|
---|
94 | @retval EFI_SUCCESS The configuration policy for the EFI IPv4 Protocol
|
---|
95 | driver is now running.
|
---|
96 | @retval EFI_INVALID_PARAMETER One or more of the following parameters is NULL:
|
---|
97 | This
|
---|
98 | DoneEvent
|
---|
99 | ReconfigEvent
|
---|
100 | @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.
|
---|
101 | @retval EFI_ALREADY_STARTED The configuration policy for the EFI IPv4 Protocol
|
---|
102 | driver was already started.
|
---|
103 | @retval EFI_DEVICE_ERROR An unexpected system error or network error occurred.
|
---|
104 | @retval EFI_UNSUPPORTED This interface does not support the EFI IPv4 Protocol
|
---|
105 | driver configuration.
|
---|
106 |
|
---|
107 | **/
|
---|
108 | typedef
|
---|
109 | EFI_STATUS
|
---|
110 | (EFIAPI *EFI_IP4_CONFIG_START)(
|
---|
111 | IN EFI_IP4_CONFIG_PROTOCOL *This,
|
---|
112 | IN EFI_EVENT DoneEvent,
|
---|
113 | IN EFI_EVENT ReconfigEvent
|
---|
114 | );
|
---|
115 |
|
---|
116 | /**
|
---|
117 | Stops running the configuration policy for the EFI IPv4 Protocol driver.
|
---|
118 |
|
---|
119 | The Stop() function stops the configuration policy for the EFI IPv4 Protocol driver.
|
---|
120 | All configuration data will be lost after calling Stop().
|
---|
121 |
|
---|
122 | @param This The pointer to the EFI_IP4_CONFIG_PROTOCOL instance.
|
---|
123 |
|
---|
124 | @retval EFI_SUCCESS The configuration policy for the EFI IPv4 Protocol
|
---|
125 | driver has been stopped.
|
---|
126 | @retval EFI_INVALID_PARAMETER This is NULL.
|
---|
127 | @retval EFI_NOT_STARTED The configuration policy for the EFI IPv4 Protocol
|
---|
128 | driver was not started.
|
---|
129 |
|
---|
130 | **/
|
---|
131 | typedef
|
---|
132 | EFI_STATUS
|
---|
133 | (EFIAPI *EFI_IP4_CONFIG_STOP)(
|
---|
134 | IN EFI_IP4_CONFIG_PROTOCOL *This
|
---|
135 | );
|
---|
136 |
|
---|
137 | /**
|
---|
138 | Returns the default configuration data (if any) for the EFI IPv4 Protocol driver.
|
---|
139 |
|
---|
140 | The GetData() function returns the current configuration data for the EFI IPv4
|
---|
141 | Protocol driver after the configuration policy has completed.
|
---|
142 |
|
---|
143 | @param This The pointer to the EFI_IP4_CONFIG_PROTOCOL instance.
|
---|
144 | @param IpConfigDataSize On input, the size of the IpConfigData buffer.
|
---|
145 | On output, the count of bytes that were written
|
---|
146 | into the IpConfigData buffer.
|
---|
147 | @param IpConfigData The pointer to the EFI IPv4 Configuration Protocol
|
---|
148 | driver configuration data structure.
|
---|
149 | Type EFI_IP4_IPCONFIG_DATA is defined in
|
---|
150 | "Related Definitions" below.
|
---|
151 |
|
---|
152 | @retval EFI_SUCCESS The EFI IPv4 Protocol driver configuration has been returned.
|
---|
153 | @retval EFI_INVALID_PARAMETER This is NULL.
|
---|
154 | @retval EFI_NOT_STARTED The configuration policy for the EFI IPv4 Protocol
|
---|
155 | driver is not running.
|
---|
156 | @retval EFI_NOT_READY EFI IPv4 Protocol driver configuration is still running.
|
---|
157 | @retval EFI_ABORTED EFI IPv4 Protocol driver configuration could not complete.
|
---|
158 | @retval EFI_BUFFER_TOO_SMALL *IpConfigDataSize is smaller than the configuration
|
---|
159 | data buffer or IpConfigData is NULL.
|
---|
160 |
|
---|
161 | **/
|
---|
162 | typedef
|
---|
163 | EFI_STATUS
|
---|
164 | (EFIAPI *EFI_IP4_CONFIG_GET_DATA)(
|
---|
165 | IN EFI_IP4_CONFIG_PROTOCOL *This,
|
---|
166 | IN OUT UINTN *IpConfigDataSize,
|
---|
167 | OUT EFI_IP4_IPCONFIG_DATA *IpConfigData OPTIONAL
|
---|
168 | );
|
---|
169 |
|
---|
170 | ///
|
---|
171 | /// The EFI_IP4_CONFIG_PROTOCOL driver performs platform-dependent and policy-dependent
|
---|
172 | /// configurations for the EFI IPv4 Protocol driver.
|
---|
173 | ///
|
---|
174 | struct _EFI_IP4_CONFIG_PROTOCOL {
|
---|
175 | EFI_IP4_CONFIG_START Start;
|
---|
176 | EFI_IP4_CONFIG_STOP Stop;
|
---|
177 | EFI_IP4_CONFIG_GET_DATA GetData;
|
---|
178 | };
|
---|
179 |
|
---|
180 | extern EFI_GUID gEfiIp4ConfigProtocolGuid;
|
---|
181 |
|
---|
182 | #endif
|
---|