]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Network/VlanConfigDxe/VlanConfigImpl.c
Co-work with patch V11137 to refine the Hii menu.
[mirror_edk2.git] / MdeModulePkg / Universal / Network / VlanConfigDxe / VlanConfigImpl.c
1 /** @file
2 HII Config Access protocol implementation of VLAN configuration module.
3
4 Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions
7 of the BSD License which accompanies this distribution. The full
8 text of the license may be found at<BR>
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 **/
15
16 #include "VlanConfigImpl.h"
17
18 EFI_GUID mVlanFormSetGuid = VLAN_CONFIG_PRIVATE_GUID;
19 CHAR16 mVlanStorageName[] = L"VlanNvData";
20 EFI_HII_CONFIG_ROUTING_PROTOCOL *mHiiConfigRouting = NULL;
21
22 VLAN_CONFIG_PRIVATE_DATA mVlanConfigPrivateDateTemplate = {
23 VLAN_CONFIG_PRIVATE_DATA_SIGNATURE,
24 {
25 VlanExtractConfig,
26 VlanRouteConfig,
27 VlanCallback
28 }
29 };
30
31 VENDOR_DEVICE_PATH mHiiVendorDevicePathNode = {
32 {
33 HARDWARE_DEVICE_PATH,
34 HW_VENDOR_DP,
35 {
36 (UINT8) (sizeof (VENDOR_DEVICE_PATH)),
37 (UINT8) ((sizeof (VENDOR_DEVICE_PATH)) >> 8)
38 }
39 },
40 VLAN_CONFIG_PRIVATE_GUID
41 };
42
43 /**
44 This function allows a caller to extract the current configuration for one
45 or more named elements from the target driver.
46
47 @param[in] This Points to the EFI_HII_CONFIG_ACCESS_PROTOCOL.
48 @param[in] Request A null-terminated Unicode string in
49 <ConfigRequest> format.
50 @param[out] Progress On return, points to a character in the Request
51 string. Points to the string's null terminator if
52 request was successful. Points to the most recent
53 '&' before the first failing name/value pair (or
54 the beginning of the string if the failure is in
55 the first name/value pair) if the request was not
56 successful.
57 @param[out] Results A null-terminated Unicode string in
58 <ConfigAltResp> format which has all values filled
59 in for the names in the Request string. String to
60 be allocated by the called function.
61
62 @retval EFI_SUCCESS The Results is filled with the requested values.
63 @retval EFI_OUT_OF_RESOURCES Not enough memory to store the results.
64 @retval EFI_INVALID_PARAMETER Request is illegal syntax, or unknown name.
65 @retval EFI_NOT_FOUND Routing data doesn't match any storage in this
66 driver.
67
68 **/
69 EFI_STATUS
70 EFIAPI
71 VlanExtractConfig (
72 IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,
73 IN CONST EFI_STRING Request,
74 OUT EFI_STRING *Progress,
75 OUT EFI_STRING *Results
76 )
77 {
78 EFI_STATUS Status;
79 UINTN BufferSize;
80 VLAN_CONFIGURATION Configuration;
81 VLAN_CONFIG_PRIVATE_DATA *PrivateData;
82 EFI_STRING ConfigRequestHdr;
83 EFI_STRING ConfigRequest;
84 BOOLEAN AllocatedRequest;
85 UINTN Size;
86
87 if (Progress == NULL || Results == NULL) {
88 return EFI_INVALID_PARAMETER;
89 }
90
91 *Progress = Request;
92 if ((Request != NULL) && !HiiIsConfigHdrMatch (Request, &mVlanFormSetGuid, mVlanStorageName)) {
93 return EFI_NOT_FOUND;
94 }
95
96 ConfigRequestHdr = NULL;
97 ConfigRequest = NULL;
98 AllocatedRequest = FALSE;
99 Size = 0;
100
101 //
102 // Retrieve the pointer to the UEFI HII Config Routing Protocol
103 //
104 if (mHiiConfigRouting == NULL) {
105 gBS->LocateProtocol (&gEfiHiiConfigRoutingProtocolGuid, NULL, (VOID **) &mHiiConfigRouting);
106 }
107 ASSERT (mHiiConfigRouting != NULL);
108
109 //
110 // Convert buffer data to <ConfigResp> by helper function BlockToConfig()
111 //
112 PrivateData = VLAN_CONFIG_PRIVATE_DATA_FROM_THIS (This);
113 ZeroMem (&Configuration, sizeof (VLAN_CONFIGURATION));
114 BufferSize = sizeof (Configuration);
115 ConfigRequest = Request;
116 if ((Request == NULL) || (StrStr (Request, L"OFFSET") == NULL)) {
117 //
118 // Request has no request element, construct full request string.
119 // Allocate and fill a buffer large enough to hold the <ConfigHdr> template
120 // followed by "&OFFSET=0&WIDTH=WWWWWWWWWWWWWWWW" followed by a Null-terminator
121 //
122 ConfigRequestHdr = HiiConstructConfigHdr (&mVlanFormSetGuid, mVlanStorageName, PrivateData->DriverHandle);
123 Size = (StrLen (ConfigRequestHdr) + 32 + 1) * sizeof (CHAR16);
124 ConfigRequest = AllocateZeroPool (Size);
125 ASSERT (ConfigRequest != NULL);
126 AllocatedRequest = TRUE;
127 UnicodeSPrint (ConfigRequest, Size, L"%s&OFFSET=0&WIDTH=%016LX", ConfigRequestHdr, (UINT64)BufferSize);
128 FreePool (ConfigRequestHdr);
129 }
130
131 Status = mHiiConfigRouting->BlockToConfig (
132 mHiiConfigRouting,
133 ConfigRequest,
134 (UINT8 *) &Configuration,
135 BufferSize,
136 Results,
137 Progress
138 );
139 //
140 // Free the allocated config request string.
141 //
142 if (AllocatedRequest) {
143 FreePool (ConfigRequest);
144 ConfigRequest = NULL;
145 }
146 //
147 // Set Progress string to the original request string.
148 //
149 if (Request == NULL) {
150 *Progress = NULL;
151 } else if (StrStr (Request, L"OFFSET") == NULL) {
152 *Progress = Request + StrLen (Request);
153 }
154
155 return Status;
156 }
157
158
159 /**
160 This function processes the results of changes in configuration.
161
162 @param[in] This Points to the EFI_HII_CONFIG_ACCESS_PROTOCOL.
163 @param[in] Configuration A null-terminated Unicode string in <ConfigResp>
164 format.
165 @param[out] Progress A pointer to a string filled in with the offset of
166 the most recent '&' before the first failing
167 name/value pair (or the beginning of the string if
168 the failure is in the first name/value pair) or
169 the terminating NULL if all was successful.
170
171 @retval EFI_SUCCESS The Results is processed successfully.
172 @retval EFI_INVALID_PARAMETER Configuration is NULL.
173 @retval EFI_NOT_FOUND Routing data doesn't match any storage in this
174 driver.
175
176 **/
177 EFI_STATUS
178 EFIAPI
179 VlanRouteConfig (
180 IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,
181 IN CONST EFI_STRING Configuration,
182 OUT EFI_STRING *Progress
183 )
184 {
185 if (Configuration == NULL || Progress == NULL) {
186 return EFI_INVALID_PARAMETER;
187 }
188
189 *Progress = Configuration;
190 if (!HiiIsConfigHdrMatch (Configuration, &mVlanFormSetGuid, mVlanStorageName)) {
191 return EFI_NOT_FOUND;
192 }
193
194 *Progress = Configuration + StrLen (Configuration);
195 return EFI_SUCCESS;
196 }
197
198 /**
199 This function processes the results of changes in configuration.
200
201 @param[in] This Points to the EFI_HII_CONFIG_ACCESS_PROTOCOL.
202 @param[in] Action Specifies the type of action taken by the browser.
203 @param[in] QuestionId A unique value which is sent to the original
204 exporting driver so that it can identify the type
205 of data to expect.
206 @param[in] Type The type of value for the question.
207 @param[in] Value A pointer to the data being sent to the original
208 exporting driver.
209 @param[out] ActionRequest On return, points to the action requested by the
210 callback function.
211
212 @retval EFI_SUCCESS The callback successfully handled the action.
213 @retval EFI_OUT_OF_RESOURCES Not enough storage is available to hold the
214 variable and its data.
215 @retval EFI_DEVICE_ERROR The variable could not be saved.
216 @retval EFI_UNSUPPORTED The specified Action is not supported by the
217 callback.
218
219 **/
220 EFI_STATUS
221 EFIAPI
222 VlanCallback (
223 IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,
224 IN EFI_BROWSER_ACTION Action,
225 IN EFI_QUESTION_ID QuestionId,
226 IN UINT8 Type,
227 IN EFI_IFR_TYPE_VALUE *Value,
228 OUT EFI_BROWSER_ACTION_REQUEST *ActionRequest
229 )
230 {
231 VLAN_CONFIG_PRIVATE_DATA *PrivateData;
232 VLAN_CONFIGURATION *Configuration;
233 EFI_VLAN_CONFIG_PROTOCOL *VlanConfig;
234 UINTN Index;
235 EFI_HANDLE VlanHandle;
236
237 PrivateData = VLAN_CONFIG_PRIVATE_DATA_FROM_THIS (This);
238
239 if (Action == EFI_BROWSER_ACTION_FORM_OPEN) {
240 if (QuestionId == VLAN_ADD_QUESTION_ID) {
241 //
242 // Update current VLAN list into Form when Form is opened.
243 // This will be done only in FORM_OPEN CallBack of question with VLAN_ADD_QUESTION_ID.
244 //
245 VlanUpdateForm (PrivateData);
246 }
247 return EFI_SUCCESS;
248 }
249
250 if (Action == EFI_BROWSER_ACTION_FORM_CLOSE) {
251 //
252 // Do nothing for UEFI FORM_CLOSE action
253 //
254 return EFI_SUCCESS;
255 }
256
257 //
258 // Get Browser data
259 //
260 Configuration = AllocateZeroPool (sizeof (VLAN_CONFIGURATION));
261 ASSERT (Configuration != NULL);
262 HiiGetBrowserData (&mVlanFormSetGuid, mVlanStorageName, sizeof (VLAN_CONFIGURATION), (UINT8 *) Configuration);
263
264 VlanConfig = PrivateData->VlanConfig;
265
266 switch (QuestionId) {
267 case VLAN_ADD_QUESTION_ID:
268 //
269 // Add a VLAN
270 //
271 VlanConfig->Set (VlanConfig, Configuration->VlanId, Configuration->Priority);
272 VlanUpdateForm (PrivateData);
273
274 //
275 // Connect the newly created VLAN device
276 //
277 VlanHandle = NetLibGetVlanHandle (PrivateData->ControllerHandle, Configuration->VlanId);
278 if (VlanHandle == NULL) {
279 //
280 // There may be no child handle created for VLAN ID 0, connect the parent handle
281 //
282 VlanHandle = PrivateData->ControllerHandle;
283 }
284 gBS->ConnectController (VlanHandle, NULL, NULL, TRUE);
285
286 //
287 // Clear UI data
288 //
289 *ActionRequest = EFI_BROWSER_ACTION_REQUEST_SUBMIT;
290 Configuration->VlanId = 0;
291 Configuration->Priority = 0;
292 break;
293
294 case VLAN_REMOVE_QUESTION_ID:
295 //
296 // Remove VLAN
297 //
298 ASSERT (PrivateData->NumberOfVlan <= MAX_VLAN_NUMBER);
299 for (Index = 0; Index < PrivateData->NumberOfVlan; Index++) {
300 if (Configuration->VlanList[Index] != 0) {
301 //
302 // Checkbox is selected, need remove this VLAN
303 //
304 VlanConfig->Remove (VlanConfig, PrivateData->VlanId[Index]);
305 }
306 }
307
308 VlanUpdateForm (PrivateData);
309 if (PrivateData->NumberOfVlan == 0) {
310 //
311 // No VLAN device now, connect the physical NIC handle.
312 // Note: PrivateData->NumberOfVlan has been updated by VlanUpdateForm()
313 //
314 gBS->ConnectController (PrivateData->ControllerHandle, NULL, NULL, TRUE);
315 }
316
317 *ActionRequest = EFI_BROWSER_ACTION_REQUEST_SUBMIT;
318 ZeroMem (Configuration->VlanList, MAX_VLAN_NUMBER);
319 break;
320
321 default:
322 break;
323 }
324
325 HiiSetBrowserData (&mVlanFormSetGuid, mVlanStorageName, sizeof (VLAN_CONFIGURATION), (UINT8 *) Configuration, NULL);
326 FreePool (Configuration);
327 return EFI_SUCCESS;
328 }
329
330
331 /**
332 This function update VLAN list in the VLAN configuration Form.
333
334 @param[in, out] PrivateData Points to VLAN configuration private data.
335
336 **/
337 VOID
338 VlanUpdateForm (
339 IN OUT VLAN_CONFIG_PRIVATE_DATA *PrivateData
340 )
341 {
342 EFI_VLAN_CONFIG_PROTOCOL *VlanConfig;
343 UINT16 NumberOfVlan;
344 UINTN Index;
345 EFI_VLAN_FIND_DATA *VlanData;
346 VOID *StartOpCodeHandle;
347 EFI_IFR_GUID_LABEL *StartLabel;
348 VOID *EndOpCodeHandle;
349 EFI_IFR_GUID_LABEL *EndLabel;
350 CHAR16 *String;
351 CHAR16 VlanStr[30];
352 CHAR16 VlanIdStr[6];
353 UINTN DigitalCount;
354 EFI_STRING_ID StringId;
355
356 //
357 // Find current VLAN configuration
358 //
359 VlanData = NULL;
360 NumberOfVlan = 0;
361 VlanConfig = PrivateData->VlanConfig;
362 VlanConfig->Find (VlanConfig, NULL, &NumberOfVlan, &VlanData);
363
364 //
365 // Update VLAN configuration in PrivateData
366 //
367 if (NumberOfVlan > MAX_VLAN_NUMBER) {
368 NumberOfVlan = MAX_VLAN_NUMBER;
369 }
370 PrivateData->NumberOfVlan = NumberOfVlan;
371
372 //
373 // Init OpCode Handle
374 //
375 StartOpCodeHandle = HiiAllocateOpCodeHandle ();
376 ASSERT (StartOpCodeHandle != NULL);
377
378 EndOpCodeHandle = HiiAllocateOpCodeHandle ();
379 ASSERT (EndOpCodeHandle != NULL);
380
381 //
382 // Create Hii Extend Label OpCode as the start opcode
383 //
384 StartLabel = (EFI_IFR_GUID_LABEL *) HiiCreateGuidOpCode (
385 StartOpCodeHandle,
386 &gEfiIfrTianoGuid,
387 NULL,
388 sizeof (EFI_IFR_GUID_LABEL)
389 );
390 StartLabel->ExtendOpCode = EFI_IFR_EXTEND_OP_LABEL;
391 StartLabel->Number = LABEL_VLAN_LIST;
392
393 //
394 // Create Hii Extend Label OpCode as the end opcode
395 //
396 EndLabel = (EFI_IFR_GUID_LABEL *) HiiCreateGuidOpCode (
397 EndOpCodeHandle,
398 &gEfiIfrTianoGuid,
399 NULL,
400 sizeof (EFI_IFR_GUID_LABEL)
401 );
402 EndLabel->ExtendOpCode = EFI_IFR_EXTEND_OP_LABEL;
403 EndLabel->Number = LABEL_END;
404
405 ZeroMem (PrivateData->VlanId, MAX_VLAN_NUMBER);
406 for (Index = 0; Index < NumberOfVlan; Index++) {
407 String = VlanStr;
408
409 StrCpy (String, L" VLAN ID:");
410 String += 10;
411 //
412 // Pad VlanId string up to 4 characters with space
413 //
414 DigitalCount = UnicodeValueToString (VlanIdStr, 0, VlanData[Index].VlanId, 5);
415 SetMem16 (String, (4 - DigitalCount) * sizeof (CHAR16), L' ');
416 StrCpy (String + 4 - DigitalCount, VlanIdStr);
417 String += 4;
418
419 StrCpy (String, L", Priority:");
420 String += 11;
421 String += UnicodeValueToString (String, 0, VlanData[Index].Priority, 4);
422 *String = 0;
423
424 StringId = HiiSetString (PrivateData->HiiHandle, 0, VlanStr, NULL);
425 ASSERT (StringId != 0);
426
427 HiiCreateCheckBoxOpCode (
428 StartOpCodeHandle,
429 (EFI_QUESTION_ID) (VLAN_LIST_VAR_OFFSET + Index),
430 VLAN_CONFIGURATION_VARSTORE_ID,
431 (UINT16) (VLAN_LIST_VAR_OFFSET + Index),
432 StringId,
433 STRING_TOKEN (STR_VLAN_VLAN_LIST_HELP),
434 0,
435 0,
436 NULL
437 );
438
439 //
440 // Save VLAN id to private data
441 //
442 PrivateData->VlanId[Index] = VlanData[Index].VlanId;
443 }
444
445 HiiUpdateForm (
446 PrivateData->HiiHandle, // HII handle
447 &mVlanFormSetGuid, // Formset GUID
448 VLAN_CONFIGURATION_FORM_ID, // Form ID
449 StartOpCodeHandle, // Label for where to insert opcodes
450 EndOpCodeHandle // Replace data
451 );
452
453 HiiFreeOpCodeHandle (StartOpCodeHandle);
454 HiiFreeOpCodeHandle (EndOpCodeHandle);
455
456 if (VlanData != NULL) {
457 FreePool (VlanData);
458 }
459 }
460
461
462 /**
463 This function publish the VLAN configuration Form for a network device. The
464 HII Config Access protocol will be installed on a child handle of the network
465 device.
466
467 @param[in, out] PrivateData Points to VLAN configuration private data.
468
469 @retval EFI_SUCCESS HII Form is installed for this network device.
470 @retval EFI_OUT_OF_RESOURCES Not enough resource for HII Form installation.
471 @retval Others Other errors as indicated.
472
473 **/
474 EFI_STATUS
475 InstallVlanConfigForm (
476 IN OUT VLAN_CONFIG_PRIVATE_DATA *PrivateData
477 )
478 {
479 EFI_STATUS Status;
480 EFI_HII_HANDLE HiiHandle;
481 EFI_HANDLE DriverHandle;
482 CHAR16 Str[26 + sizeof (EFI_MAC_ADDRESS) * 2 + 1];
483 CHAR16 *MacString;
484 EFI_DEVICE_PATH_PROTOCOL *ChildDevicePath;
485 EFI_HII_CONFIG_ACCESS_PROTOCOL *ConfigAccess;
486
487 //
488 // Create child handle and install HII Config Access Protocol
489 //
490 ChildDevicePath = AppendDevicePathNode (
491 PrivateData->ParentDevicePath,
492 (CONST EFI_DEVICE_PATH_PROTOCOL *) &mHiiVendorDevicePathNode
493 );
494 if (ChildDevicePath == NULL) {
495 return EFI_OUT_OF_RESOURCES;
496 }
497 PrivateData->ChildDevicePath = ChildDevicePath;
498
499 DriverHandle = NULL;
500 ConfigAccess = &PrivateData->ConfigAccess;
501 Status = gBS->InstallMultipleProtocolInterfaces (
502 &DriverHandle,
503 &gEfiDevicePathProtocolGuid,
504 ChildDevicePath,
505 &gEfiHiiConfigAccessProtocolGuid,
506 ConfigAccess,
507 NULL
508 );
509 if (EFI_ERROR (Status)) {
510 return Status;
511 }
512 PrivateData->DriverHandle = DriverHandle;
513
514 //
515 // Publish the HII package list
516 //
517 HiiHandle = HiiAddPackages (
518 &mVlanFormSetGuid,
519 DriverHandle,
520 VlanConfigDxeStrings,
521 VlanConfigBin,
522 NULL
523 );
524 if (HiiHandle == NULL) {
525 return EFI_OUT_OF_RESOURCES;
526 }
527 PrivateData->HiiHandle = HiiHandle;
528
529 //
530 // Update formset title
531 //
532 MacString = NULL;
533 Status = NetLibGetMacString (PrivateData->ControllerHandle, PrivateData->ImageHandle, &MacString);
534 if (EFI_ERROR (Status)) {
535 return Status;
536 }
537 PrivateData->MacString = MacString;
538
539 StrCpy (Str, L"VLAN Configuration (MAC:");
540 StrnCat (Str, MacString, sizeof (EFI_MAC_ADDRESS) * 2);
541 StrCat (Str, L")");
542 HiiSetString (
543 HiiHandle,
544 STRING_TOKEN (STR_VLAN_FORM_SET_TITLE_HELP),
545 Str,
546 NULL
547 );
548
549 //
550 // Update form title
551 //
552 HiiSetString (
553 HiiHandle,
554 STRING_TOKEN (STR_VLAN_FORM_HELP),
555 Str,
556 NULL
557 );
558
559 return EFI_SUCCESS;
560 }
561
562 /**
563 This function remove the VLAN configuration Form for a network device. The
564 child handle for HII Config Access protocol will be destroyed.
565
566 @param[in, out] PrivateData Points to VLAN configuration private data.
567
568 **/
569 VOID
570 UninstallVlanConfigForm (
571 IN OUT VLAN_CONFIG_PRIVATE_DATA *PrivateData
572 )
573 {
574 //
575 // Free MAC string
576 //
577 if (PrivateData->MacString != NULL) {
578 FreePool (PrivateData->MacString);
579 PrivateData->MacString = NULL;
580 }
581
582 //
583 // Uninstall HII package list
584 //
585 if (PrivateData->HiiHandle != NULL) {
586 HiiRemovePackages (PrivateData->HiiHandle);
587 PrivateData->HiiHandle = NULL;
588 }
589
590 //
591 // Uninstall HII Config Access Protocol
592 //
593 if (PrivateData->DriverHandle != NULL) {
594 gBS->UninstallMultipleProtocolInterfaces (
595 PrivateData->DriverHandle,
596 &gEfiDevicePathProtocolGuid,
597 PrivateData->ChildDevicePath,
598 &gEfiHiiConfigAccessProtocolGuid,
599 &PrivateData->ConfigAccess,
600 NULL
601 );
602 PrivateData->DriverHandle = NULL;
603
604 if (PrivateData->ChildDevicePath != NULL) {
605 FreePool (PrivateData->ChildDevicePath);
606 PrivateData->ChildDevicePath = NULL;
607 }
608 }
609 }