]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/Eap.h
Update function description per UEFI2.3d. The main changes include:
[mirror_edk2.git] / MdePkg / Include / Protocol / Eap.h
CommitLineData
badd7e61 1/** @file\r
2 EFI EAP(Extended Authenticaton Protocol) Protocol Definition\r
3 The EFI EAP Protocol is used to abstract the ability to configure and extend the\r
4 EAP framework. \r
5 The definitions in this file are defined in UEFI Specification 2.3, which have\r
6 not been verified by one implementation yet.\r
7\r
9095e76b 8 Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.<BR>\r
9df063a0 9 This program and the accompanying materials\r
badd7e61 10 are licensed and made available under the terms and conditions of the BSD License\r
11 which accompanies this distribution. The full text of the license may be found at\r
12 http://opensource.org/licenses/bsd-license.php\r
13\r
14 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
15 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
16\r
5899caf0 17 @par Revision Reference: \r
18 This Protocol is introduced in UEFI Specification 2.2\r
19\r
badd7e61 20**/\r
21\r
22#ifndef __EFI_EAP_PROTOCOL_H__\r
23#define __EFI_EAP_PROTOCOL_H__\r
24\r
25\r
26#define EFI_EAP_PROTOCOL_GUID \\r
27 { \\r
28 0x5d9f96db, 0xe731, 0x4caa, {0xa0, 0xd, 0x72, 0xe1, 0x87, 0xcd, 0x77, 0x62 } \\r
29 }\r
30\r
31typedef struct _EFI_EAP_PROTOCOL EFI_EAP_PROTOCOL;\r
32\r
33///\r
34/// Type for the identification number assigned to the Port by the \r
35/// System in which the Port resides.\r
36///\r
37typedef VOID * EFI_PORT_HANDLE;\r
38\r
39///\r
40/// EAP Authentication Method Type (RFC 2284 Section 3)\r
41///@{\r
42#define EFI_EAP_TYPE_MD5 0x4 ///< REQUIRED\r
43#define EFI_EAP_TYPE_OTP 0x5 ///< OPTIONAL\r
44#define EFI_EAP_TYPE_TOKEN_CARD 0x6 ///< OPTIONAL\r
45///@}\r
46\r
47\r
48/**\r
49 One user provided EAP authentication method.\r
50\r
51 Build EAP response packet in response to the EAP request packet specified by\r
52 (RequestBuffer, RequestSize).\r
53\r
54 @param[in] PortNumber Specified the Port where the EAP request packet comes.\r
55 @param[in] RequestBuffer Pointer to the most recently received EAP- Request packet.\r
56 @param[in] RequestSize Packet size in bytes for the most recently received\r
57 EAP-Request packet.\r
58 @param[in] Buffer Pointer to the buffer to hold the built packet.\r
59 @param[in, out] BufferSize Pointer to the buffer size in bytes. \r
60 On input, it is the buffer size provided by the caller.\r
61 On output, it is the buffer size in fact needed to contain\r
62 the packet.\r
63\r
64 @retval EFI_SUCCESS The required EAP response packet is built successfully.\r
65 @retval others Failures are encountered during the packet building process.\r
66\r
67**/\r
68typedef\r
69EFI_STATUS\r
70(EFIAPI *EFI_EAP_BUILD_RESPONSE_PACKET)(\r
71 IN EFI_PORT_HANDLE PortNumber,\r
72 IN UINT8 *RequestBuffer, \r
73 IN UINTN RequestSize, \r
74 IN UINT8 *Buffer, \r
75 IN OUT UINTN *BufferSize\r
76 );\r
77\r
78/**\r
79 Set the desired EAP authentication method for the Port.\r
80\r
81 The SetDesiredAuthMethod() function sets the desired EAP authentication method indicated \r
82 by EapAuthType for the Port.\r
83 \r
84 If EapAuthType is an invalid EAP authentication type, then EFI_INVALID_PARAMETER is \r
85 returned.\r
9095e76b
LG
86 If the EAP authentication method of EapAuthType is unsupported by the Ports, then it will\r
87 return EFI_UNSUPPORTED.\r
badd7e61 88\r
89 @param[in] This A pointer to the EFI_EAP_PROTOCOL instance that indicates \r
90 the calling context.\r
91 @param[in] EapAuthType The type of the EAP authentication method to register. It should \r
92 be the type value defined by RFC. See RFC 2284 for details.\r
93 @param[in] Handler The handler of the EAP authentication method to register.\r
94\r
95 @retval EFI_SUCCESS The EAP authentication method of EapAuthType is \r
96 registered successfully.\r
97 @retval EFI_INVALID_PARAMETER EapAuthType is an invalid EAP authentication type.\r
9095e76b
LG
98 @retval EFI_UNSUPPORTED The EAP authentication method of EapAuthType is\r
99 unsupported by the Port.\r
badd7e61 100\r
101**/\r
102typedef\r
103EFI_STATUS\r
104(EFIAPI *EFI_EAP_SET_DESIRED_AUTHENTICATION_METHOD)(\r
ea6898b9 105 IN EFI_EAP_PROTOCOL *This, \r
badd7e61 106 IN UINT8 EapAuthType\r
107 );\r
108\r
109/**\r
110 Register an EAP authentication method. \r
111\r
112 The RegisterAuthMethod() function registers the user provided EAP authentication method, \r
113 the type of which is EapAuthType and the handler of which is Handler. \r
114 \r
115 If EapAuthType is an invalid EAP authentication type, then EFI_INVALID_PARAMETER is \r
116 returned.\r
117 If there is not enough system memory to perform the registration, then \r
118 EFI_OUT_OF_RESOURCES is returned.\r
119\r
120 @param[in] This A pointer to the EFI_EAP_PROTOCOL instance that indicates \r
121 the calling context.\r
122 @param[in] EapAuthType The type of the EAP authentication method to register. It should \r
123 be the type value defined by RFC. See RFC 2284 for details.\r
124 @param[in] Handler The handler of the EAP authentication method to register.\r
125\r
126 @retval EFI_SUCCESS The EAP authentication method of EapAuthType is \r
127 registered successfully.\r
128 @retval EFI_INVALID_PARAMETER EapAuthType is an invalid EAP authentication type.\r
129 @retval EFI_OUT_OF_RESOURCES There is not enough system memory to perform the registration.\r
130\r
131**/\r
132typedef\r
133EFI_STATUS\r
134(EFIAPI *EFI_EAP_REGISTER_AUTHENTICATION_METHOD)(\r
ea6898b9 135 IN EFI_EAP_PROTOCOL *This, \r
badd7e61 136 IN UINT8 EapAuthType, \r
137 IN EFI_EAP_BUILD_RESPONSE_PACKET Handler\r
138 );\r
139\r
140///\r
141/// EFI_EAP_PROTOCOL \r
142/// is used to configure the desired EAP authentication method for the EAP \r
143/// framework and extend the EAP framework by registering new EAP authentication\r
144/// method on a Port. The EAP framework is built on a per-Port basis. Herein, a\r
145/// Port means a NIC. For the details of EAP protocol, please refer to RFC 2284. \r
146///\r
147struct _EFI_EAP_PROTOCOL {\r
148 EFI_EAP_SET_DESIRED_AUTHENTICATION_METHOD SetDesiredAuthMethod;\r
149 EFI_EAP_REGISTER_AUTHENTICATION_METHOD RegisterAuthMethod;\r
150};\r
151\r
152extern EFI_GUID gEfiEapProtocolGuid;\r
153\r
154#endif\r
155\r