]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Network/VlanConfigDxe/VlanConfigImpl.c
Update HiiConfigAccess.ExtractConfig interface to support NULL request string and...
[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.<BR>
5 All rights reserved. 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 NULL, 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 (VLAN_CONFIG_PRIVATE_DATA);
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 //
241 // On FORM_OPEN event, update current VLAN list
242 //
243 VlanUpdateForm (PrivateData);
244
245 return EFI_SUCCESS;
246 }
247
248 //
249 // Get Browser data
250 //
251 Configuration = AllocateZeroPool (sizeof (VLAN_CONFIGURATION));
252 ASSERT (Configuration != NULL);
253 HiiGetBrowserData (&mVlanFormSetGuid, mVlanStorageName, sizeof (VLAN_CONFIGURATION), (UINT8 *) Configuration);
254
255 VlanConfig = PrivateData->VlanConfig;
256
257 switch (QuestionId) {
258 case VLAN_ADD_QUESTION_ID:
259 //
260 // Add a VLAN
261 //
262 VlanConfig->Set (VlanConfig, Configuration->VlanId, Configuration->Priority);
263 VlanUpdateForm (PrivateData);
264
265 //
266 // Connect the newly created VLAN device
267 //
268 VlanHandle = NetLibGetVlanHandle (PrivateData->ControllerHandle, Configuration->VlanId);
269 if (VlanHandle == NULL) {
270 //
271 // There may be no child handle created for VLAN ID 0, connect the parent handle
272 //
273 VlanHandle = PrivateData->ControllerHandle;
274 }
275 gBS->ConnectController (VlanHandle, NULL, NULL, TRUE);
276
277 //
278 // Clear UI data
279 //
280 *ActionRequest = EFI_BROWSER_ACTION_REQUEST_SUBMIT;
281 Configuration->VlanId = 0;
282 Configuration->Priority = 0;
283 break;
284
285 case VLAN_REMOVE_QUESTION_ID:
286 //
287 // Remove VLAN
288 //
289 ASSERT (PrivateData->NumberOfVlan <= MAX_VLAN_NUMBER);
290 for (Index = 0; Index < PrivateData->NumberOfVlan; Index++) {
291 if (Configuration->VlanList[Index] != 0) {
292 //
293 // Checkbox is selected, need remove this VLAN
294 //
295 VlanConfig->Remove (VlanConfig, PrivateData->VlanId[Index]);
296 }
297 }
298
299 VlanUpdateForm (PrivateData);
300 if (PrivateData->NumberOfVlan == 0) {
301 //
302 // No VLAN device now, connect the physical NIC handle.
303 // Note: PrivateData->NumberOfVlan has been updated by VlanUpdateForm()
304 //
305 gBS->ConnectController (PrivateData->ControllerHandle, NULL, NULL, TRUE);
306 }
307
308 *ActionRequest = EFI_BROWSER_ACTION_REQUEST_SUBMIT;
309 ZeroMem (Configuration->VlanList, MAX_VLAN_NUMBER);
310 break;
311
312 default:
313 break;
314 }
315
316 HiiSetBrowserData (&mVlanFormSetGuid, mVlanStorageName, sizeof (VLAN_CONFIGURATION), (UINT8 *) Configuration, NULL);
317 FreePool (Configuration);
318 return EFI_SUCCESS;
319 }
320
321
322 /**
323 This function update VLAN list in the VLAN configuration Form.
324
325 @param[in, out] PrivateData Points to VLAN configuration private data.
326
327 **/
328 VOID
329 VlanUpdateForm (
330 IN OUT VLAN_CONFIG_PRIVATE_DATA *PrivateData
331 )
332 {
333 EFI_VLAN_CONFIG_PROTOCOL *VlanConfig;
334 UINT16 NumberOfVlan;
335 UINTN Index;
336 EFI_VLAN_FIND_DATA *VlanData;
337 VOID *StartOpCodeHandle;
338 EFI_IFR_GUID_LABEL *StartLabel;
339 VOID *EndOpCodeHandle;
340 EFI_IFR_GUID_LABEL *EndLabel;
341 CHAR16 *String;
342 CHAR16 VlanStr[30];
343 CHAR16 VlanIdStr[6];
344 UINTN DigitalCount;
345 EFI_STRING_ID StringId;
346
347 //
348 // Find current VLAN configuration
349 //
350 VlanData = NULL;
351 NumberOfVlan = 0;
352 VlanConfig = PrivateData->VlanConfig;
353 VlanConfig->Find (VlanConfig, NULL, &NumberOfVlan, &VlanData);
354
355 //
356 // Update VLAN configuration in PrivateData
357 //
358 if (NumberOfVlan > MAX_VLAN_NUMBER) {
359 NumberOfVlan = MAX_VLAN_NUMBER;
360 }
361 PrivateData->NumberOfVlan = NumberOfVlan;
362
363 //
364 // Init OpCode Handle
365 //
366 StartOpCodeHandle = HiiAllocateOpCodeHandle ();
367 ASSERT (StartOpCodeHandle != NULL);
368
369 EndOpCodeHandle = HiiAllocateOpCodeHandle ();
370 ASSERT (EndOpCodeHandle != NULL);
371
372 //
373 // Create Hii Extend Label OpCode as the start opcode
374 //
375 StartLabel = (EFI_IFR_GUID_LABEL *) HiiCreateGuidOpCode (
376 StartOpCodeHandle,
377 &gEfiIfrTianoGuid,
378 NULL,
379 sizeof (EFI_IFR_GUID_LABEL)
380 );
381 StartLabel->ExtendOpCode = EFI_IFR_EXTEND_OP_LABEL;
382 StartLabel->Number = LABEL_VLAN_LIST;
383
384 //
385 // Create Hii Extend Label OpCode as the end opcode
386 //
387 EndLabel = (EFI_IFR_GUID_LABEL *) HiiCreateGuidOpCode (
388 EndOpCodeHandle,
389 &gEfiIfrTianoGuid,
390 NULL,
391 sizeof (EFI_IFR_GUID_LABEL)
392 );
393 EndLabel->ExtendOpCode = EFI_IFR_EXTEND_OP_LABEL;
394 EndLabel->Number = LABEL_END;
395
396 ZeroMem (PrivateData->VlanId, MAX_VLAN_NUMBER);
397 for (Index = 0; Index < NumberOfVlan; Index++) {
398 String = VlanStr;
399
400 StrCpy (String, L" VLAN ID:");
401 String += 10;
402 //
403 // Pad VlanId string up to 4 characters with space
404 //
405 DigitalCount = UnicodeValueToString (VlanIdStr, 0, VlanData[Index].VlanId, 5);
406 SetMem16 (String, (4 - DigitalCount) * sizeof (CHAR16), L' ');
407 StrCpy (String + 4 - DigitalCount, VlanIdStr);
408 String += 4;
409
410 StrCpy (String, L", Priority:");
411 String += 11;
412 String += UnicodeValueToString (String, 0, VlanData[Index].Priority, 4);
413 *String = 0;
414
415 StringId = HiiSetString (PrivateData->HiiHandle, 0, VlanStr, NULL);
416 ASSERT (StringId != 0);
417
418 HiiCreateCheckBoxOpCode (
419 StartOpCodeHandle,
420 (EFI_QUESTION_ID) (VLAN_LIST_VAR_OFFSET + Index),
421 VLAN_CONFIGURATION_VARSTORE_ID,
422 (UINT16) (VLAN_LIST_VAR_OFFSET + Index),
423 StringId,
424 STRING_TOKEN (STR_VLAN_VLAN_LIST_HELP),
425 0,
426 0,
427 NULL
428 );
429
430 //
431 // Save VLAN id to private data
432 //
433 PrivateData->VlanId[Index] = VlanData[Index].VlanId;
434 }
435
436 HiiUpdateForm (
437 PrivateData->HiiHandle, // HII handle
438 &mVlanFormSetGuid, // Formset GUID
439 VLAN_CONFIGURATION_FORM_ID, // Form ID
440 StartOpCodeHandle, // Label for where to insert opcodes
441 EndOpCodeHandle // Replace data
442 );
443
444 HiiFreeOpCodeHandle (StartOpCodeHandle);
445 HiiFreeOpCodeHandle (EndOpCodeHandle);
446
447 if (VlanData != NULL) {
448 FreePool (VlanData);
449 }
450 }
451
452
453 /**
454 This function publish the VLAN configuration Form for a network device. The
455 HII Config Access protocol will be installed on a child handle of the network
456 device.
457
458 @param[in, out] PrivateData Points to VLAN configuration private data.
459
460 @retval EFI_SUCCESS HII Form is installed for this network device.
461 @retval EFI_OUT_OF_RESOURCES Not enough resource for HII Form installation.
462 @retval Others Other errors as indicated.
463
464 **/
465 EFI_STATUS
466 InstallVlanConfigForm (
467 IN OUT VLAN_CONFIG_PRIVATE_DATA *PrivateData
468 )
469 {
470 EFI_STATUS Status;
471 EFI_HII_HANDLE HiiHandle;
472 EFI_HANDLE DriverHandle;
473 CHAR16 Str[26 + sizeof (EFI_MAC_ADDRESS) * 2 + 1];
474 CHAR16 *MacString;
475 EFI_DEVICE_PATH_PROTOCOL *ChildDevicePath;
476 EFI_HII_CONFIG_ACCESS_PROTOCOL *ConfigAccess;
477
478 //
479 // Create child handle and install HII Config Access Protocol
480 //
481 ChildDevicePath = AppendDevicePathNode (
482 PrivateData->ParentDevicePath,
483 (CONST EFI_DEVICE_PATH_PROTOCOL *) &mHiiVendorDevicePathNode
484 );
485 if (ChildDevicePath == NULL) {
486 return EFI_OUT_OF_RESOURCES;
487 }
488 PrivateData->ChildDevicePath = ChildDevicePath;
489
490 DriverHandle = NULL;
491 ConfigAccess = &PrivateData->ConfigAccess;
492 Status = gBS->InstallMultipleProtocolInterfaces (
493 &DriverHandle,
494 &gEfiDevicePathProtocolGuid,
495 ChildDevicePath,
496 &gEfiHiiConfigAccessProtocolGuid,
497 ConfigAccess,
498 NULL
499 );
500 if (EFI_ERROR (Status)) {
501 return Status;
502 }
503 PrivateData->DriverHandle = DriverHandle;
504
505 //
506 // Publish the HII package list
507 //
508 HiiHandle = HiiAddPackages (
509 &mVlanFormSetGuid,
510 DriverHandle,
511 VlanConfigDxeStrings,
512 VlanConfigBin,
513 NULL
514 );
515 if (HiiHandle == NULL) {
516 return EFI_OUT_OF_RESOURCES;
517 }
518 PrivateData->HiiHandle = HiiHandle;
519
520 //
521 // Update formset title
522 //
523 MacString = NULL;
524 Status = NetLibGetMacString (PrivateData->ControllerHandle, PrivateData->ImageHandle, &MacString);
525 if (EFI_ERROR (Status)) {
526 return Status;
527 }
528 PrivateData->MacString = MacString;
529
530 StrCpy (Str, L"VLAN Configuration (MAC:");
531 StrnCat (Str, MacString, sizeof (EFI_MAC_ADDRESS) * 2);
532 StrCat (Str, L")");
533 HiiSetString (
534 HiiHandle,
535 STRING_TOKEN (STR_VLAN_FORM_SET_TITLE),
536 Str,
537 NULL
538 );
539
540 //
541 // Update form title
542 //
543 HiiSetString (
544 HiiHandle,
545 STRING_TOKEN (STR_VLAN_FORM_TITLE),
546 Str,
547 NULL
548 );
549
550 return EFI_SUCCESS;
551 }
552
553 /**
554 This function remove the VLAN configuration Form for a network device. The
555 child handle for HII Config Access protocol will be destroyed.
556
557 @param[in, out] PrivateData Points to VLAN configuration private data.
558
559 **/
560 VOID
561 UninstallVlanConfigForm (
562 IN OUT VLAN_CONFIG_PRIVATE_DATA *PrivateData
563 )
564 {
565 //
566 // Free MAC string
567 //
568 if (PrivateData->MacString != NULL) {
569 FreePool (PrivateData->MacString);
570 PrivateData->MacString = NULL;
571 }
572
573 //
574 // Uninstall HII package list
575 //
576 if (PrivateData->HiiHandle != NULL) {
577 HiiRemovePackages (PrivateData->HiiHandle);
578 PrivateData->HiiHandle = NULL;
579 }
580
581 //
582 // Uninstall HII Config Access Protocol
583 //
584 if (PrivateData->DriverHandle != NULL) {
585 gBS->UninstallMultipleProtocolInterfaces (
586 PrivateData->DriverHandle,
587 &gEfiDevicePathProtocolGuid,
588 PrivateData->ChildDevicePath,
589 &gEfiHiiConfigAccessProtocolGuid,
590 &PrivateData->ConfigAccess,
591 NULL
592 );
593 PrivateData->DriverHandle = NULL;
594
595 if (PrivateData->ChildDevicePath != NULL) {
596 FreePool (PrivateData->ChildDevicePath);
597 PrivateData->ChildDevicePath = NULL;
598 }
599 }
600 }