]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Network/IScsiDxe/IScsiConfig.c
Update the copyright notice format
[mirror_edk2.git] / MdeModulePkg / Universal / Network / IScsiDxe / IScsiConfig.c
1 /** @file
2 Helper functions for configuring or getting the parameters relating to iSCSI.
3
4 Copyright (c) 2004 - 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 of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #include "IScsiImpl.h"
16
17 EFI_GUID mVendorGuid = ISCSI_CONFIG_GUID;
18 CHAR16 mVendorStorageName[] = L"ISCSI_CONFIG_IFR_NVDATA";
19 BOOLEAN mIScsiDeviceListUpdated = FALSE;
20 UINTN mNumberOfIScsiDevices = 0;
21 ISCSI_FORM_CALLBACK_INFO *mCallbackInfo = NULL;
22
23 LIST_ENTRY mIScsiConfigFormList = {
24 &mIScsiConfigFormList,
25 &mIScsiConfigFormList
26 };
27
28 HII_VENDOR_DEVICE_PATH mIScsiHiiVendorDevicePath = {
29 {
30 {
31 HARDWARE_DEVICE_PATH,
32 HW_VENDOR_DP,
33 {
34 (UINT8) (sizeof (VENDOR_DEVICE_PATH)),
35 (UINT8) ((sizeof (VENDOR_DEVICE_PATH)) >> 8)
36 }
37 },
38 //
39 // {49D7B73E-143D-4716-977B-C45F1CB038CC}
40 //
41 { 0x49d7b73e, 0x143d, 0x4716, { 0x97, 0x7b, 0xc4, 0x5f, 0x1c, 0xb0, 0x38, 0xcc } }
42 },
43 {
44 END_DEVICE_PATH_TYPE,
45 END_ENTIRE_DEVICE_PATH_SUBTYPE,
46 {
47 (UINT8) (END_DEVICE_PATH_LENGTH),
48 (UINT8) ((END_DEVICE_PATH_LENGTH) >> 8)
49 }
50 }
51 };
52
53 /**
54 Convert the IPv4 address into a dotted string.
55
56 @param[in] Ip The IPv4 address.
57 @param[out] Str The dotted IP string.
58 **/
59 VOID
60 IScsiIpToStr (
61 IN EFI_IPv4_ADDRESS *Ip,
62 OUT CHAR16 *Str
63 )
64 {
65 UnicodeSPrint ( Str, 2 * IP4_STR_MAX_SIZE, L"%d.%d.%d.%d", Ip->Addr[0], Ip->Addr[1], Ip->Addr[2], Ip->Addr[3]);
66 }
67
68 /**
69 Update the list of iSCSI devices the iSCSI driver is controlling.
70
71 @retval EFI_SUCCESS The callback successfully handled the action.
72 @retval Others Other errors as indicated.
73 **/
74 EFI_STATUS
75 IScsiUpdateDeviceList (
76 VOID
77 )
78 {
79 EFI_STATUS Status;
80 ISCSI_DEVICE_LIST *DeviceList;
81 UINTN DataSize;
82 UINTN NumHandles;
83 EFI_HANDLE *Handles;
84 UINTN HandleIndex;
85 UINTN Index;
86 UINTN LastDeviceIndex;
87 EFI_MAC_ADDRESS MacAddress;
88 UINTN HwAddressSize;
89 UINT16 VlanId;
90 ISCSI_MAC_INFO *CurMacInfo;
91 ISCSI_MAC_INFO TempMacInfo;
92 CHAR16 MacString[70];
93 UINTN DeviceListSize;
94
95 //
96 // Dump all the handles the Managed Network Service Binding Protocol is installed on.
97 //
98 Status = gBS->LocateHandleBuffer (
99 ByProtocol,
100 &gEfiManagedNetworkServiceBindingProtocolGuid,
101 NULL,
102 &NumHandles,
103 &Handles
104 );
105 if (EFI_ERROR (Status)) {
106 return Status;
107 }
108
109 DataSize = 0;
110 Status = gRT->GetVariable (
111 L"iSCSIDeviceList",
112 &mVendorGuid,
113 NULL,
114 &DataSize,
115 NULL
116 );
117 if (Status == EFI_BUFFER_TOO_SMALL) {
118 DeviceList = (ISCSI_DEVICE_LIST *) AllocatePool (DataSize);
119
120 gRT->GetVariable (
121 L"iSCSIDeviceList",
122 &mVendorGuid,
123 NULL,
124 &DataSize,
125 DeviceList
126 );
127
128 LastDeviceIndex = 0;
129
130 for (HandleIndex = 0; HandleIndex < NumHandles; HandleIndex++) {
131 Status = NetLibGetMacAddress (Handles[HandleIndex], &MacAddress, &HwAddressSize);
132 ASSERT (Status == EFI_SUCCESS);
133 VlanId = NetLibGetVlanId (Handles[HandleIndex]);
134
135 for (Index = LastDeviceIndex; Index < DeviceList->NumDevice; Index++) {
136 CurMacInfo = &DeviceList->MacInfo[Index];
137 if ((CurMacInfo->Len == HwAddressSize) &&
138 (CurMacInfo->VlanId == VlanId) &&
139 (NET_MAC_EQUAL (&CurMacInfo->Mac, MacAddress.Addr, HwAddressSize))
140 ) {
141 //
142 // The previous configured NIC is still here.
143 //
144 if (Index != LastDeviceIndex) {
145 //
146 // Swap the current MAC address entry with the one indexed by
147 // LastDeviceIndex.
148 //
149 CopyMem (&TempMacInfo, CurMacInfo, sizeof (ISCSI_MAC_INFO));
150 CopyMem (CurMacInfo, &DeviceList->MacInfo[LastDeviceIndex], sizeof (ISCSI_MAC_INFO));
151 CopyMem (&DeviceList->MacInfo[LastDeviceIndex], &TempMacInfo, sizeof (ISCSI_MAC_INFO));
152 }
153
154 LastDeviceIndex++;
155 }
156 }
157
158 if (LastDeviceIndex == DeviceList->NumDevice) {
159 break;
160 }
161 }
162
163 for (Index = LastDeviceIndex; Index < DeviceList->NumDevice; Index++) {
164 //
165 // delete the variables
166 //
167 CurMacInfo = &DeviceList->MacInfo[Index];
168 IScsiMacAddrToStr (&CurMacInfo->Mac, CurMacInfo->Len, CurMacInfo->VlanId, MacString);
169 gRT->SetVariable (MacString, &gEfiIScsiInitiatorNameProtocolGuid, 0, 0, NULL);
170 gRT->SetVariable (MacString, &mIScsiCHAPAuthInfoGuid, 0, 0, NULL);
171 }
172
173 FreePool (DeviceList);
174 } else if (Status != EFI_NOT_FOUND) {
175 FreePool (Handles);
176 return Status;
177 }
178 //
179 // Construct the new iSCSI device list.
180 //
181 DeviceListSize = sizeof (ISCSI_DEVICE_LIST) + (NumHandles - 1) * sizeof (ISCSI_MAC_INFO);
182 DeviceList = (ISCSI_DEVICE_LIST *) AllocatePool (DeviceListSize);
183 DeviceList->NumDevice = (UINT8) NumHandles;
184
185 for (Index = 0; Index < NumHandles; Index++) {
186 NetLibGetMacAddress (Handles[Index], &MacAddress, &HwAddressSize);
187
188 CurMacInfo = &DeviceList->MacInfo[Index];
189 CopyMem (&CurMacInfo->Mac, MacAddress.Addr, HwAddressSize);
190 CurMacInfo->Len = (UINT8) HwAddressSize;
191 CurMacInfo->VlanId = NetLibGetVlanId (Handles[Index]);
192 }
193
194 gRT->SetVariable (
195 L"iSCSIDeviceList",
196 &mVendorGuid,
197 ISCSI_CONFIG_VAR_ATTR,
198 DeviceListSize,
199 DeviceList
200 );
201
202 FreePool (DeviceList);
203 FreePool (Handles);
204
205 return Status;
206 }
207
208 /**
209 Get the iSCSI configuration form entry by the index of the goto opcode actived.
210
211 @param[in] Index The 0-based index of the goto opcode actived.
212
213 @return The iSCSI configuration form entry found.
214 **/
215 ISCSI_CONFIG_FORM_ENTRY *
216 IScsiGetConfigFormEntryByIndex (
217 IN UINT32 Index
218 )
219 {
220 UINT32 CurrentIndex;
221 LIST_ENTRY *Entry;
222 ISCSI_CONFIG_FORM_ENTRY *ConfigFormEntry;
223
224 CurrentIndex = 0;
225 ConfigFormEntry = NULL;
226
227 NET_LIST_FOR_EACH (Entry, &mIScsiConfigFormList) {
228 if (CurrentIndex == Index) {
229 ConfigFormEntry = NET_LIST_USER_STRUCT (Entry, ISCSI_CONFIG_FORM_ENTRY, Link);
230 break;
231 }
232
233 CurrentIndex++;
234 }
235
236 return ConfigFormEntry;
237 }
238
239 /**
240 Convert the iSCSI configuration data into the IFR data.
241
242 @param[in] ConfigFormEntry The iSCSI configuration form entry.
243 @param[out] IfrNvData The IFR nv data.
244 **/
245 VOID
246 IScsiConvertDeviceConfigDataToIfrNvData (
247 IN ISCSI_CONFIG_FORM_ENTRY *ConfigFormEntry,
248 OUT ISCSI_CONFIG_IFR_NVDATA *IfrNvData
249 )
250 {
251 ISCSI_SESSION_CONFIG_NVDATA *SessionConfigData;
252 ISCSI_CHAP_AUTH_CONFIG_NVDATA *AuthConfigData;
253
254 //
255 // Normal session configuration parameters.
256 //
257 SessionConfigData = &ConfigFormEntry->SessionConfigData;
258 IfrNvData->Enabled = SessionConfigData->Enabled;
259
260 IfrNvData->InitiatorInfoFromDhcp = SessionConfigData->InitiatorInfoFromDhcp;
261 IfrNvData->TargetInfoFromDhcp = SessionConfigData->TargetInfoFromDhcp;
262 IfrNvData->TargetPort = SessionConfigData->TargetPort;
263
264 IScsiIpToStr (&SessionConfigData->LocalIp, IfrNvData->LocalIp);
265 IScsiIpToStr (&SessionConfigData->SubnetMask, IfrNvData->SubnetMask);
266 IScsiIpToStr (&SessionConfigData->Gateway, IfrNvData->Gateway);
267 IScsiIpToStr (&SessionConfigData->TargetIp, IfrNvData->TargetIp);
268
269 IScsiAsciiStrToUnicodeStr (SessionConfigData->TargetName, IfrNvData->TargetName);
270
271 IScsiLunToUnicodeStr (SessionConfigData->BootLun, IfrNvData->BootLun);
272
273 //
274 // CHAP authentication parameters.
275 //
276 AuthConfigData = &ConfigFormEntry->AuthConfigData;
277
278 IfrNvData->CHAPType = AuthConfigData->CHAPType;
279
280 IScsiAsciiStrToUnicodeStr (AuthConfigData->CHAPName, IfrNvData->CHAPName);
281 IScsiAsciiStrToUnicodeStr (AuthConfigData->CHAPSecret, IfrNvData->CHAPSecret);
282 IScsiAsciiStrToUnicodeStr (AuthConfigData->ReverseCHAPName, IfrNvData->ReverseCHAPName);
283 IScsiAsciiStrToUnicodeStr (AuthConfigData->ReverseCHAPSecret, IfrNvData->ReverseCHAPSecret);
284 }
285
286 /**
287 This function allows the caller to request the current
288 configuration for one or more named elements. The resulting
289 string is in <ConfigAltResp> format. Any and all alternative
290 configuration strings shall also be appended to the end of the
291 current configuration string. If they are, they must appear
292 after the current configuration. They must contain the same
293 routing (GUID, NAME, PATH) as the current configuration string.
294 They must have an additional description indicating the type of
295 alternative configuration the string represents,
296 "ALTCFG=<StringToken>". That <StringToken> (when
297 converted from Hex UNICODE to binary) is a reference to a
298 string in the associated string pack.
299
300 @param[in] This Points to the EFI_HII_CONFIG_ACCESS_PROTOCOL.
301 @param[in] Request A null-terminated Unicode string in
302 <ConfigRequest> format. Note that this
303 includes the routing information as well as
304 the configurable name / value pairs. It is
305 invalid for this string to be in
306 <MultiConfigRequest> format.
307 @param[out] Progress On return, points to a character in the
308 Request string. Points to the string's null
309 terminator if request was successful. Points
310 to the most recent "&" before the first
311 failing name / value pair (or the beginning
312 of the string if the failure is in the first
313 name / value pair) if the request was not
314 successful.
315 @param[out] Results A null-terminated Unicode string in
316 <ConfigAltResp> format which has all values
317 filled in for the names in the Request string.
318 String to be allocated by the called function.
319
320 @retval EFI_SUCCESS The Results string is filled with the
321 values corresponding to all requested
322 names.
323 @retval EFI_OUT_OF_RESOURCES Not enough memory to store the
324 parts of the results that must be
325 stored awaiting possible future
326 protocols.
327 @retval EFI_INVALID_PARAMETER For example, passing in a NULL
328 for the Request parameter
329 would result in this type of
330 error. In this case, the
331 Progress parameter would be
332 set to NULL.
333 @retval EFI_NOT_FOUND Routing data doesn't match any
334 known driver. Progress set to the
335 first character in the routing header.
336 Note: There is no requirement that the
337 driver validate the routing data. It
338 must skip the <ConfigHdr> in order to
339 process the names.
340 @retval EFI_INVALID_PARAMETER Illegal syntax. Progress set
341 to most recent & before the
342 error or the beginning of the
343 string.
344 @retval EFI_INVALID_PARAMETER Unknown name. Progress points
345 to the & before the name in
346 question.Currently not implemented.
347 **/
348 EFI_STATUS
349 EFIAPI
350 IScsiFormExtractConfig (
351 IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,
352 IN CONST EFI_STRING Request,
353 OUT EFI_STRING *Progress,
354 OUT EFI_STRING *Results
355 )
356 {
357 EFI_STATUS Status;
358 CHAR8 InitiatorName[ISCSI_NAME_IFR_MAX_SIZE];
359 UINTN BufferSize;
360 ISCSI_CONFIG_IFR_NVDATA *IfrNvData;
361 ISCSI_FORM_CALLBACK_INFO *Private;
362 EFI_HII_CONFIG_ROUTING_PROTOCOL *HiiConfigRouting;
363 EFI_STRING ConfigRequestHdr;
364 EFI_STRING ConfigRequest;
365 BOOLEAN AllocatedRequest;
366 UINTN Size;
367
368 if (Progress == NULL || Results == NULL) {
369 return EFI_INVALID_PARAMETER;
370 }
371
372 *Progress = Request;
373 if ((Request != NULL) && !HiiIsConfigHdrMatch (Request, &mVendorGuid, mVendorStorageName)) {
374 return EFI_NOT_FOUND;
375 }
376
377 ConfigRequestHdr = NULL;
378 ConfigRequest = NULL;
379 AllocatedRequest = FALSE;
380 Size = 0;
381
382 if (!mIScsiDeviceListUpdated) {
383 //
384 // Update the device list.
385 //
386 IScsiUpdateDeviceList ();
387 mIScsiDeviceListUpdated = TRUE;
388 }
389
390 Private = ISCSI_FORM_CALLBACK_INFO_FROM_FORM_CALLBACK (This);
391 IfrNvData = AllocateZeroPool (sizeof (ISCSI_CONFIG_IFR_NVDATA));
392 ASSERT (IfrNvData != NULL);
393 if (Private->Current != NULL) {
394 IScsiConvertDeviceConfigDataToIfrNvData (Private->Current, IfrNvData);
395 }
396
397 BufferSize = ISCSI_NAME_IFR_MAX_SIZE;
398 Status = gIScsiInitiatorName.Get (&gIScsiInitiatorName, &BufferSize, InitiatorName);
399 if (EFI_ERROR (Status)) {
400 IfrNvData->InitiatorName[0] = L'\0';
401 } else {
402 IScsiAsciiStrToUnicodeStr (InitiatorName, IfrNvData->InitiatorName);
403 }
404
405 //
406 // Convert buffer data to <ConfigResp> by helper function BlockToConfig()
407 //
408 HiiConfigRouting = Private->ConfigRouting;
409 BufferSize = sizeof (ISCSI_CONFIG_IFR_NVDATA);
410 ConfigRequest = Request;
411 if ((Request == NULL) || (StrStr (Request, L"OFFSET") == NULL)) {
412 //
413 // Request has no request element, construct full request string.
414 // Allocate and fill a buffer large enough to hold the <ConfigHdr> template
415 // followed by "&OFFSET=0&WIDTH=WWWWWWWWWWWWWWWW" followed by a Null-terminator
416 //
417 ConfigRequestHdr = HiiConstructConfigHdr (&mVendorGuid, mVendorStorageName, Private->DriverHandle);
418 Size = (StrLen (ConfigRequestHdr) + 32 + 1) * sizeof (CHAR16);
419 ConfigRequest = AllocateZeroPool (Size);
420 ASSERT (ConfigRequest != NULL);
421 AllocatedRequest = TRUE;
422 UnicodeSPrint (ConfigRequest, Size, L"%s&OFFSET=0&WIDTH=%016LX", ConfigRequestHdr, (UINT64)BufferSize);
423 FreePool (ConfigRequestHdr);
424 }
425 Status = HiiConfigRouting->BlockToConfig (
426 HiiConfigRouting,
427 ConfigRequest,
428 (UINT8 *) IfrNvData,
429 BufferSize,
430 Results,
431 Progress
432 );
433 FreePool (IfrNvData);
434 //
435 // Free the allocated config request string.
436 //
437 if (AllocatedRequest) {
438 FreePool (ConfigRequest);
439 ConfigRequest = NULL;
440 }
441
442 //
443 // Set Progress string to the original request string.
444 //
445 if (Request == NULL) {
446 *Progress = NULL;
447 } else if (StrStr (Request, L"OFFSET") == NULL) {
448 *Progress = Request + StrLen (Request);
449 }
450
451 return Status;
452 }
453
454 /**
455 This function applies changes in a driver's configuration.
456 Input is a Configuration, which has the routing data for this
457 driver followed by name / value configuration pairs. The driver
458 must apply those pairs to its configurable storage. If the
459 driver's configuration is stored in a linear block of data
460 and the driver's name / value pairs are in <BlockConfig>
461 format, it may use the ConfigToBlock helper function (above) to
462 simplify the job. Currently not implemented.
463
464 @param[in] This Points to the EFI_HII_CONFIG_ACCESS_PROTOCOL.
465 @param[in] Configuration A null-terminated Unicode string in
466 <ConfigString> format.
467 @param[out] Progress A pointer to a string filled in with the
468 offset of the most recent '&' before the
469 first failing name / value pair (or the
470 beginn ing of the string if the failure
471 is in the first name / value pair) or
472 the terminating NULL if all was
473 successful.
474
475 @retval EFI_SUCCESS The results have been distributed or are
476 awaiting distribution.
477 @retval EFI_OUT_OF_RESOURCES Not enough memory to store the
478 parts of the results that must be
479 stored awaiting possible future
480 protocols.
481 @retval EFI_INVALID_PARAMETERS Passing in a NULL for the
482 Results parameter would result
483 in this type of error.
484 @retval EFI_NOT_FOUND Target for the specified routing data
485 was not found.
486 **/
487 EFI_STATUS
488 EFIAPI
489 IScsiFormRouteConfig (
490 IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,
491 IN CONST EFI_STRING Configuration,
492 OUT EFI_STRING *Progress
493 )
494 {
495 if (Configuration == NULL || Progress == NULL) {
496 return EFI_INVALID_PARAMETER;
497 }
498
499 //
500 // Check routing data in <ConfigHdr>.
501 // Note: if only one Storage is used, then this checking could be skipped.
502 //
503 if (!HiiIsConfigHdrMatch (Configuration, &mVendorGuid, mVendorStorageName)) {
504 *Progress = Configuration;
505 return EFI_NOT_FOUND;
506 }
507
508 *Progress = Configuration + StrLen (Configuration);
509 return EFI_SUCCESS;
510 }
511
512 /**
513 This function is called to provide results data to the driver.
514 This data consists of a unique key that is used to identify
515 which data is either being passed back or being asked for.
516
517 @param[in] This Points to the EFI_HII_CONFIG_ACCESS_PROTOCOL.
518 @param[in] Action Specifies the type of action taken by the browser.
519 @param[in] QuestionId A unique value which is sent to the original
520 exporting driver so that it can identify the type
521 of data to expect. The format of the data tends to
522 vary based on the opcode that enerated the callback.
523 @param[in] Type The type of value for the question.
524 @param[in] Value A pointer to the data being sent to the original
525 exporting driver.
526 @param[out] ActionRequest On return, points to the action requested by the
527 callback function.
528
529 @retval EFI_SUCCESS The callback successfully handled the action.
530 @retval EFI_OUT_OF_RESOURCES Not enough storage is available to hold the
531 variable and its data.
532 @retval EFI_DEVICE_ERROR The variable could not be saved.
533 @retval EFI_UNSUPPORTED The specified Action is not supported by the
534 callback.Currently not implemented.
535 @retval EFI_INVALID_PARAMETERS Passing in wrong parameter.
536 @retval Others Other errors as indicated.
537 **/
538 EFI_STATUS
539 EFIAPI
540 IScsiFormCallback (
541 IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,
542 IN EFI_BROWSER_ACTION Action,
543 IN EFI_QUESTION_ID QuestionId,
544 IN UINT8 Type,
545 IN EFI_IFR_TYPE_VALUE *Value,
546 OUT EFI_BROWSER_ACTION_REQUEST *ActionRequest
547 )
548 {
549 ISCSI_FORM_CALLBACK_INFO *Private;
550 UINTN BufferSize;
551 CHAR8 IScsiName[ISCSI_NAME_IFR_MAX_SIZE];
552 CHAR16 PortString[128];
553 CHAR8 Ip4String[IP4_STR_MAX_SIZE];
554 CHAR8 LunString[ISCSI_LUN_STR_MAX_LEN];
555 UINT64 Lun;
556 EFI_STRING_ID DeviceFormTitleToken;
557 ISCSI_CONFIG_IFR_NVDATA *IfrNvData;
558 ISCSI_CONFIG_FORM_ENTRY *ConfigFormEntry;
559 EFI_IP_ADDRESS HostIp;
560 EFI_IP_ADDRESS SubnetMask;
561 EFI_IP_ADDRESS Gateway;
562 EFI_STATUS Status;
563 EFI_INPUT_KEY Key;
564
565 Private = ISCSI_FORM_CALLBACK_INFO_FROM_FORM_CALLBACK (This);
566
567 //
568 // Retrive uncommitted data from Browser
569 //
570 IfrNvData = AllocateZeroPool (sizeof (ISCSI_CONFIG_IFR_NVDATA));
571 ASSERT (IfrNvData != NULL);
572 if (!HiiGetBrowserData (&mVendorGuid, mVendorStorageName, sizeof (ISCSI_CONFIG_IFR_NVDATA), (UINT8 *) IfrNvData)) {
573 FreePool (IfrNvData);
574 return EFI_NOT_FOUND;
575 }
576
577 Status = EFI_SUCCESS;
578
579 switch (QuestionId) {
580 case KEY_INITIATOR_NAME:
581 IScsiUnicodeStrToAsciiStr (IfrNvData->InitiatorName, IScsiName);
582 BufferSize = AsciiStrLen (IScsiName) + 1;
583
584 Status = gIScsiInitiatorName.Set (&gIScsiInitiatorName, &BufferSize, IScsiName);
585 if (EFI_ERROR (Status)) {
586 CreatePopUp (EFI_LIGHTGRAY | EFI_BACKGROUND_BLUE, &Key, L"Invalid iSCSI Name!", NULL);
587 }
588
589 break;
590
591 case KEY_LOCAL_IP:
592 IScsiUnicodeStrToAsciiStr (IfrNvData->LocalIp, Ip4String);
593 Status = IScsiAsciiStrToIp (Ip4String, &HostIp.v4);
594 if (EFI_ERROR (Status) || !NetIp4IsUnicast (NTOHL (HostIp.Addr[0]), 0)) {
595 CreatePopUp (EFI_LIGHTGRAY | EFI_BACKGROUND_BLUE, &Key, L"Invalid IP address!", NULL);
596 Status = EFI_INVALID_PARAMETER;
597 } else {
598 CopyMem (&Private->Current->SessionConfigData.LocalIp, &HostIp.v4, sizeof (HostIp.v4));
599 }
600
601 break;
602
603 case KEY_SUBNET_MASK:
604 IScsiUnicodeStrToAsciiStr (IfrNvData->SubnetMask, Ip4String);
605 Status = IScsiAsciiStrToIp (Ip4String, &SubnetMask.v4);
606 if (EFI_ERROR (Status) || ((SubnetMask.Addr[0] != 0) && (IScsiGetSubnetMaskPrefixLength (&SubnetMask.v4) == 0))) {
607 CreatePopUp (EFI_LIGHTGRAY | EFI_BACKGROUND_BLUE, &Key, L"Invalid Subnet Mask!", NULL);
608 Status = EFI_INVALID_PARAMETER;
609 } else {
610 CopyMem (&Private->Current->SessionConfigData.SubnetMask, &SubnetMask.v4, sizeof (SubnetMask.v4));
611 }
612
613 break;
614
615 case KEY_GATE_WAY:
616 IScsiUnicodeStrToAsciiStr (IfrNvData->Gateway, Ip4String);
617 Status = IScsiAsciiStrToIp (Ip4String, &Gateway.v4);
618 if (EFI_ERROR (Status) || ((Gateway.Addr[0] != 0) && !NetIp4IsUnicast (NTOHL (Gateway.Addr[0]), 0))) {
619 CreatePopUp (EFI_LIGHTGRAY | EFI_BACKGROUND_BLUE, &Key, L"Invalid Gateway!", NULL);
620 Status = EFI_INVALID_PARAMETER;
621 } else {
622 CopyMem (&Private->Current->SessionConfigData.Gateway, &Gateway.v4, sizeof (Gateway.v4));
623 }
624
625 break;
626
627 case KEY_TARGET_IP:
628 IScsiUnicodeStrToAsciiStr (IfrNvData->TargetIp, Ip4String);
629 Status = IScsiAsciiStrToIp (Ip4String, &HostIp.v4);
630 if (EFI_ERROR (Status) || !NetIp4IsUnicast (NTOHL (HostIp.Addr[0]), 0)) {
631 CreatePopUp (EFI_LIGHTGRAY | EFI_BACKGROUND_BLUE, &Key, L"Invalid IP address!", NULL);
632 Status = EFI_INVALID_PARAMETER;
633 } else {
634 CopyMem (&Private->Current->SessionConfigData.TargetIp, &HostIp.v4, sizeof (HostIp.v4));
635 }
636
637 break;
638
639 case KEY_TARGET_NAME:
640 IScsiUnicodeStrToAsciiStr (IfrNvData->TargetName, IScsiName);
641 Status = IScsiNormalizeName (IScsiName, AsciiStrLen (IScsiName));
642 if (EFI_ERROR (Status)) {
643 CreatePopUp (EFI_LIGHTGRAY | EFI_BACKGROUND_BLUE, &Key, L"Invalid iSCSI Name!", NULL);
644 } else {
645 AsciiStrCpy (Private->Current->SessionConfigData.TargetName, IScsiName);
646 }
647
648 break;
649
650 case KEY_DHCP_ENABLE:
651 if (IfrNvData->InitiatorInfoFromDhcp == 0) {
652 IfrNvData->TargetInfoFromDhcp = 0;
653 }
654
655 break;
656
657 case KEY_BOOT_LUN:
658 IScsiUnicodeStrToAsciiStr (IfrNvData->BootLun, LunString);
659 Status = IScsiAsciiStrToLun (LunString, (UINT8 *) &Lun);
660 if (EFI_ERROR (Status)) {
661 CreatePopUp (EFI_LIGHTGRAY | EFI_BACKGROUND_BLUE, &Key, L"Invalid LUN string!", NULL);
662 } else {
663 CopyMem (Private->Current->SessionConfigData.BootLun, &Lun, sizeof (Lun));
664 }
665
666 break;
667
668 case KEY_CHAP_NAME:
669 IScsiUnicodeStrToAsciiStr (IfrNvData->CHAPName, Private->Current->AuthConfigData.CHAPName);
670 break;
671
672 case KEY_CHAP_SECRET:
673 IScsiUnicodeStrToAsciiStr (IfrNvData->CHAPSecret, Private->Current->AuthConfigData.CHAPSecret);
674 break;
675
676 case KEY_REVERSE_CHAP_NAME:
677 IScsiUnicodeStrToAsciiStr (IfrNvData->ReverseCHAPName, Private->Current->AuthConfigData.ReverseCHAPName);
678 break;
679
680 case KEY_REVERSE_CHAP_SECRET:
681 IScsiUnicodeStrToAsciiStr (IfrNvData->ReverseCHAPSecret, Private->Current->AuthConfigData.ReverseCHAPSecret);
682 break;
683
684 case KEY_SAVE_CHANGES:
685 //
686 // First, update those fields which don't have INTERACTIVE set.
687 //
688 Private->Current->SessionConfigData.Enabled = IfrNvData->Enabled;
689 Private->Current->SessionConfigData.InitiatorInfoFromDhcp = IfrNvData->InitiatorInfoFromDhcp;
690 Private->Current->SessionConfigData.TargetPort = IfrNvData->TargetPort;
691 if (Private->Current->SessionConfigData.TargetPort == 0) {
692 Private->Current->SessionConfigData.TargetPort = ISCSI_WELL_KNOWN_PORT;
693 }
694
695 Private->Current->SessionConfigData.TargetInfoFromDhcp = IfrNvData->TargetInfoFromDhcp;
696 Private->Current->AuthConfigData.CHAPType = IfrNvData->CHAPType;
697
698 //
699 // Only do full parameter validation if iSCSI is enabled on this device.
700 //
701 if (Private->Current->SessionConfigData.Enabled) {
702 //
703 // Validate the address configuration of the Initiator if DHCP isn't
704 // deployed.
705 //
706 if (!Private->Current->SessionConfigData.InitiatorInfoFromDhcp) {
707 CopyMem (&HostIp.v4, &Private->Current->SessionConfigData.LocalIp, sizeof (HostIp.v4));
708 CopyMem (&SubnetMask.v4, &Private->Current->SessionConfigData.SubnetMask, sizeof (SubnetMask.v4));
709 CopyMem (&Gateway.v4, &Private->Current->SessionConfigData.Gateway, sizeof (Gateway.v4));
710
711 if ((Gateway.Addr[0] != 0)) {
712 if (SubnetMask.Addr[0] == 0) {
713 CreatePopUp (EFI_LIGHTGRAY | EFI_BACKGROUND_BLUE, &Key, L"Gateway address is set but subnet mask is zero.", NULL);
714 Status = EFI_INVALID_PARAMETER;
715 break;
716 } else if (!IP4_NET_EQUAL (HostIp.Addr[0], Gateway.Addr[0], SubnetMask.Addr[0])) {
717 CreatePopUp (EFI_LIGHTGRAY | EFI_BACKGROUND_BLUE, &Key, L"Local IP and Gateway are not in the same subnet.", NULL);
718 Status = EFI_INVALID_PARAMETER;
719 break;
720 }
721 }
722 }
723 //
724 // Validate target configuration if DHCP isn't deployed.
725 //
726 if (!Private->Current->SessionConfigData.TargetInfoFromDhcp) {
727 CopyMem (&HostIp.v4, &Private->Current->SessionConfigData.TargetIp, sizeof (HostIp.v4));
728 if (!NetIp4IsUnicast (NTOHL (HostIp.Addr[0]), 0)) {
729 CreatePopUp (EFI_LIGHTGRAY | EFI_BACKGROUND_BLUE, &Key, L"Target IP is invalid!", NULL);
730 Status = EFI_INVALID_PARAMETER;
731 break;
732 }
733 }
734
735 if (IfrNvData->CHAPType != ISCSI_CHAP_NONE) {
736 if ((IfrNvData->CHAPName[0] == '\0') || (IfrNvData->CHAPSecret[0] == '\0')) {
737 CreatePopUp (EFI_LIGHTGRAY | EFI_BACKGROUND_BLUE, &Key, L"CHAP Name or CHAP Secret is invalid!", NULL);
738 Status = EFI_INVALID_PARAMETER;
739 break;
740 }
741
742 if ((IfrNvData->CHAPType == ISCSI_CHAP_MUTUAL) &&
743 ((IfrNvData->ReverseCHAPName[0] == '\0') || (IfrNvData->ReverseCHAPSecret[0] == '\0'))
744 ) {
745 CreatePopUp (EFI_LIGHTGRAY | EFI_BACKGROUND_BLUE, &Key, L"Reverse CHAP Name or Reverse CHAP Secret is invalid!", NULL);
746 Status = EFI_INVALID_PARAMETER;
747 break;
748 }
749 }
750 }
751
752 BufferSize = sizeof (Private->Current->SessionConfigData);
753 gRT->SetVariable (
754 Private->Current->MacString,
755 &gEfiIScsiInitiatorNameProtocolGuid,
756 ISCSI_CONFIG_VAR_ATTR,
757 BufferSize,
758 &Private->Current->SessionConfigData
759 );
760
761 BufferSize = sizeof (Private->Current->AuthConfigData);
762 gRT->SetVariable (
763 Private->Current->MacString,
764 &mIScsiCHAPAuthInfoGuid,
765 ISCSI_CONFIG_VAR_ATTR,
766 BufferSize,
767 &Private->Current->AuthConfigData
768 );
769 *ActionRequest = EFI_BROWSER_ACTION_REQUEST_SUBMIT;
770 break;
771
772 default:
773 if ((QuestionId >= KEY_DEVICE_ENTRY_BASE) && (QuestionId < (mNumberOfIScsiDevices + KEY_DEVICE_ENTRY_BASE))) {
774 //
775 // In case goto the device configuration form, update the device form title.
776 //
777 ConfigFormEntry = IScsiGetConfigFormEntryByIndex ((UINT32) (QuestionId - KEY_DEVICE_ENTRY_BASE));
778 ASSERT (ConfigFormEntry != NULL);
779
780 UnicodeSPrint (PortString, (UINTN) 128, L"Port %s", ConfigFormEntry->MacString);
781 DeviceFormTitleToken = (EFI_STRING_ID) STR_ISCSI_DEVICE_FORM_TITLE;
782 HiiSetString (Private->RegisteredHandle, DeviceFormTitleToken, PortString, NULL);
783
784 IScsiConvertDeviceConfigDataToIfrNvData (ConfigFormEntry, IfrNvData);
785
786 Private->Current = ConfigFormEntry;
787 }
788
789 break;
790 }
791
792 if (!EFI_ERROR (Status)) {
793 //
794 // Pass changed uncommitted data back to Form Browser
795 //
796 HiiSetBrowserData (&mVendorGuid, mVendorStorageName, sizeof (ISCSI_CONFIG_IFR_NVDATA), (UINT8 *) IfrNvData, NULL);
797 }
798
799 FreePool (IfrNvData);
800 return Status;
801 }
802
803 /**
804 Updates the iSCSI configuration form to add/delete an entry for the iSCSI
805 device specified by the Controller.
806
807 @param[in] DriverBindingHandle The driverbinding handle.
808 @param[in] Controller The controller handle of the iSCSI device.
809 @param[in] AddForm Whether to add or delete a form entry.
810
811 @retval EFI_SUCCESS The iSCSI configuration form is updated.
812 @retval EFI_OUT_OF_RESOURCES Failed to allocate memory.
813 @retval Others Other errors as indicated.
814 **/
815 EFI_STATUS
816 IScsiConfigUpdateForm (
817 IN EFI_HANDLE DriverBindingHandle,
818 IN EFI_HANDLE Controller,
819 IN BOOLEAN AddForm
820 )
821 {
822 LIST_ENTRY *Entry;
823 ISCSI_CONFIG_FORM_ENTRY *ConfigFormEntry;
824 BOOLEAN EntryExisted;
825 EFI_STATUS Status;
826 EFI_MAC_ADDRESS MacAddress;
827 UINTN HwAddressSize;
828 UINT16 VlanId;
829 CHAR16 PortString[128];
830 UINT16 FormIndex;
831 UINTN BufferSize;
832 VOID *StartOpCodeHandle;
833 VOID *EndOpCodeHandle;
834 EFI_IFR_GUID_LABEL *StartLabel;
835 EFI_IFR_GUID_LABEL *EndLabel;
836
837 ConfigFormEntry = NULL;
838 EntryExisted = FALSE;
839
840 NET_LIST_FOR_EACH (Entry, &mIScsiConfigFormList) {
841 ConfigFormEntry = NET_LIST_USER_STRUCT (Entry, ISCSI_CONFIG_FORM_ENTRY, Link);
842
843 if (ConfigFormEntry->Controller == Controller) {
844 EntryExisted = TRUE;
845 break;
846 }
847 }
848
849 if (AddForm) {
850 if (EntryExisted) {
851 return EFI_SUCCESS;
852 } else {
853 //
854 // Add a new form.
855 //
856 ConfigFormEntry = (ISCSI_CONFIG_FORM_ENTRY *) AllocateZeroPool (sizeof (ISCSI_CONFIG_FORM_ENTRY));
857 if (ConfigFormEntry == NULL) {
858 return EFI_OUT_OF_RESOURCES;
859 }
860
861 InitializeListHead (&ConfigFormEntry->Link);
862 ConfigFormEntry->Controller = Controller;
863
864 //
865 // Get the MAC address and convert it into the formatted string.
866 //
867 Status = NetLibGetMacAddress (Controller, &MacAddress, &HwAddressSize);
868 ASSERT (Status == EFI_SUCCESS);
869 VlanId = NetLibGetVlanId (Controller);
870
871 IScsiMacAddrToStr (&MacAddress, (UINT32) HwAddressSize, VlanId, ConfigFormEntry->MacString);
872
873 //
874 // Get the normal session configuration data.
875 //
876 BufferSize = sizeof (ConfigFormEntry->SessionConfigData);
877 Status = gRT->GetVariable (
878 ConfigFormEntry->MacString,
879 &gEfiIScsiInitiatorNameProtocolGuid,
880 NULL,
881 &BufferSize,
882 &ConfigFormEntry->SessionConfigData
883 );
884 if (EFI_ERROR (Status)) {
885 ZeroMem (&ConfigFormEntry->SessionConfigData, sizeof (ConfigFormEntry->SessionConfigData));
886 }
887 //
888 // Get the CHAP authentication configuration data.
889 //
890 BufferSize = sizeof (ConfigFormEntry->AuthConfigData);
891 Status = gRT->GetVariable (
892 ConfigFormEntry->MacString,
893 &mIScsiCHAPAuthInfoGuid,
894 NULL,
895 &BufferSize,
896 &ConfigFormEntry->AuthConfigData
897 );
898 if (EFI_ERROR (Status)) {
899 ZeroMem (&ConfigFormEntry->AuthConfigData, sizeof (ConfigFormEntry->AuthConfigData));
900 }
901 //
902 // Compose the Port string and create a new EFI_STRING_ID.
903 //
904 UnicodeSPrint (PortString, 128, L"Port %s", ConfigFormEntry->MacString);
905 ConfigFormEntry->PortTitleToken = HiiSetString (mCallbackInfo->RegisteredHandle, 0, PortString, NULL);
906
907 //
908 // Compose the help string of this port and create a new EFI_STRING_ID.
909 //
910 UnicodeSPrint (PortString, 128, L"Set the iSCSI parameters on port %s", ConfigFormEntry->MacString);
911 ConfigFormEntry->PortTitleHelpToken = HiiSetString (mCallbackInfo->RegisteredHandle, 0, PortString, NULL);
912
913 InsertTailList (&mIScsiConfigFormList, &ConfigFormEntry->Link);
914 mNumberOfIScsiDevices++;
915 }
916 } else {
917 ASSERT (EntryExisted);
918
919 mNumberOfIScsiDevices--;
920 RemoveEntryList (&ConfigFormEntry->Link);
921 FreePool (ConfigFormEntry);
922 }
923 //
924 // Allocate space for creation of Buffer
925 //
926
927 //
928 // Init OpCode Handle
929 //
930 StartOpCodeHandle = HiiAllocateOpCodeHandle ();
931 ASSERT (StartOpCodeHandle != NULL);
932
933 EndOpCodeHandle = HiiAllocateOpCodeHandle ();
934 ASSERT (EndOpCodeHandle != NULL);
935
936 //
937 // Create Hii Extend Label OpCode as the start opcode
938 //
939 StartLabel = (EFI_IFR_GUID_LABEL *) HiiCreateGuidOpCode (StartOpCodeHandle, &gEfiIfrTianoGuid, NULL, sizeof (EFI_IFR_GUID_LABEL));
940 StartLabel->ExtendOpCode = EFI_IFR_EXTEND_OP_LABEL;
941 StartLabel->Number = DEVICE_ENTRY_LABEL;
942
943 //
944 // Create Hii Extend Label OpCode as the end opcode
945 //
946 EndLabel = (EFI_IFR_GUID_LABEL *) HiiCreateGuidOpCode (EndOpCodeHandle, &gEfiIfrTianoGuid, NULL, sizeof (EFI_IFR_GUID_LABEL));
947 EndLabel->ExtendOpCode = EFI_IFR_EXTEND_OP_LABEL;
948 EndLabel->Number = LABEL_END;
949
950 FormIndex = 0;
951 NET_LIST_FOR_EACH (Entry, &mIScsiConfigFormList) {
952 ConfigFormEntry = NET_LIST_USER_STRUCT (Entry, ISCSI_CONFIG_FORM_ENTRY, Link);
953
954 HiiCreateGotoOpCode (
955 StartOpCodeHandle, // Container for dynamic created opcodes
956 FORMID_DEVICE_FORM, // Target Form ID
957 ConfigFormEntry->PortTitleToken, // Prompt text
958 ConfigFormEntry->PortTitleHelpToken, // Help text
959 EFI_IFR_FLAG_CALLBACK, // Question flag
960 (UINT16)(KEY_DEVICE_ENTRY_BASE + FormIndex) // Question ID
961 );
962
963 FormIndex++;
964 }
965
966 HiiUpdateForm (
967 mCallbackInfo->RegisteredHandle,
968 &mVendorGuid,
969 FORMID_MAIN_FORM,
970 StartOpCodeHandle, // Label DEVICE_ENTRY_LABEL
971 EndOpCodeHandle // LABEL_END
972 );
973
974 HiiFreeOpCodeHandle (StartOpCodeHandle);
975 HiiFreeOpCodeHandle (EndOpCodeHandle);
976
977 return EFI_SUCCESS;
978 }
979
980 /**
981 Initialize the iSCSI configuration form.
982
983 @param[in] DriverBindingHandle The iSCSI driverbinding handle.
984
985 @retval EFI_SUCCESS The iSCSI configuration form is initialized.
986 @retval EFI_OUT_OF_RESOURCES Failed to allocate memory.
987 @retval Others Other errors as indicated.
988 **/
989 EFI_STATUS
990 IScsiConfigFormInit (
991 VOID
992 )
993 {
994 EFI_STATUS Status;
995 EFI_HII_DATABASE_PROTOCOL *HiiDatabase;
996 ISCSI_FORM_CALLBACK_INFO *CallbackInfo;
997
998 Status = gBS->LocateProtocol (&gEfiHiiDatabaseProtocolGuid, NULL, (VOID **)&HiiDatabase);
999 if (EFI_ERROR (Status)) {
1000 return Status;
1001 }
1002
1003 CallbackInfo = (ISCSI_FORM_CALLBACK_INFO *) AllocateZeroPool (sizeof (ISCSI_FORM_CALLBACK_INFO));
1004 if (CallbackInfo == NULL) {
1005 return EFI_OUT_OF_RESOURCES;
1006 }
1007
1008 CallbackInfo->Signature = ISCSI_FORM_CALLBACK_INFO_SIGNATURE;
1009 CallbackInfo->HiiDatabase = HiiDatabase;
1010 CallbackInfo->Current = NULL;
1011
1012 CallbackInfo->ConfigAccess.ExtractConfig = IScsiFormExtractConfig;
1013 CallbackInfo->ConfigAccess.RouteConfig = IScsiFormRouteConfig;
1014 CallbackInfo->ConfigAccess.Callback = IScsiFormCallback;
1015
1016 Status = gBS->LocateProtocol (&gEfiHiiConfigRoutingProtocolGuid, NULL, (VOID **)&CallbackInfo->ConfigRouting);
1017 if (EFI_ERROR (Status)) {
1018 FreePool(CallbackInfo);
1019 return Status;
1020 }
1021
1022 //
1023 // Install Device Path Protocol and Config Access protocol to driver handle
1024 //
1025 Status = gBS->InstallMultipleProtocolInterfaces (
1026 &CallbackInfo->DriverHandle,
1027 &gEfiDevicePathProtocolGuid,
1028 &mIScsiHiiVendorDevicePath,
1029 &gEfiHiiConfigAccessProtocolGuid,
1030 &CallbackInfo->ConfigAccess,
1031 NULL
1032 );
1033 ASSERT_EFI_ERROR (Status);
1034
1035 //
1036 // Publish our HII data
1037 //
1038 CallbackInfo->RegisteredHandle = HiiAddPackages (
1039 &mVendorGuid,
1040 CallbackInfo->DriverHandle,
1041 IScsiDxeStrings,
1042 IScsiConfigDxeBin,
1043 NULL
1044 );
1045 if (CallbackInfo->RegisteredHandle == NULL) {
1046 FreePool(CallbackInfo);
1047 return EFI_OUT_OF_RESOURCES;
1048 }
1049
1050 mCallbackInfo = CallbackInfo;
1051
1052 return Status;
1053 }
1054
1055 /**
1056 Unload the iSCSI configuration form, this includes: delete all the iSCSI
1057 device configuration entries, uninstall the form callback protocol and
1058 free the resources used.
1059
1060 @param[in] DriverBindingHandle The iSCSI driverbinding handle.
1061
1062 @retval EFI_SUCCESS The iSCSI configuration form is unloaded.
1063 @retval EFI_OUT_OF_RESOURCES Failed to allocate memory.
1064 **/
1065 EFI_STATUS
1066 IScsiConfigFormUnload (
1067 IN EFI_HANDLE DriverBindingHandle
1068 )
1069 {
1070 ISCSI_CONFIG_FORM_ENTRY *ConfigFormEntry;
1071
1072 while (!IsListEmpty (&mIScsiConfigFormList)) {
1073 //
1074 // Uninstall the device forms as the iSCSI driver instance may fail to
1075 // control the controller but still install the device configuration form.
1076 // In such case, upon driver unloading, the driver instance's driverbinding.
1077 // stop () won't be called, so we have to take this chance here to uninstall
1078 // the device form.
1079 //
1080 ConfigFormEntry = NET_LIST_USER_STRUCT (mIScsiConfigFormList.ForwardLink, ISCSI_CONFIG_FORM_ENTRY, Link);
1081 IScsiConfigUpdateForm (DriverBindingHandle, ConfigFormEntry->Controller, FALSE);
1082 }
1083
1084 //
1085 // Remove HII package list
1086 //
1087 mCallbackInfo->HiiDatabase->RemovePackageList (
1088 mCallbackInfo->HiiDatabase,
1089 mCallbackInfo->RegisteredHandle
1090 );
1091
1092 //
1093 // Uninstall EFI_HII_CONFIG_ACCESS_PROTOCOL
1094 //
1095 gBS->UninstallMultipleProtocolInterfaces (
1096 mCallbackInfo->DriverHandle,
1097 &gEfiDevicePathProtocolGuid,
1098 &mIScsiHiiVendorDevicePath,
1099 &gEfiHiiConfigAccessProtocolGuid,
1100 &mCallbackInfo->ConfigAccess,
1101 NULL
1102 );
1103 FreePool (mCallbackInfo);
1104
1105 return EFI_SUCCESS;
1106 }