]> git.proxmox.com Git - mirror_edk2.git/blame - NetworkPkg/Ip6Dxe/Ip6ConfigImpl.c
NetworkPkg/Ip6Dxe: Fix the potential NULL pointer free
[mirror_edk2.git] / NetworkPkg / Ip6Dxe / Ip6ConfigImpl.c
CommitLineData
a3bcde70
HT
1/** @file\r
2 The implementation of EFI IPv6 Configuration Protocol.\r
3\r
ab50ab6e 4 Copyright (c) 2009 - 2017, Intel Corporation. All rights reserved.<BR>\r
a3bcde70
HT
5\r
6 This program and the accompanying materials\r
7 are licensed and made available under the terms and conditions of the BSD License\r
8 which accompanies this distribution. The full text of the license may be found at\r
9 http://opensource.org/licenses/bsd-license.php.\r
10\r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
16#include "Ip6Impl.h"\r
17\r
18LIST_ENTRY mIp6ConfigInstanceList = {&mIp6ConfigInstanceList, &mIp6ConfigInstanceList};\r
19\r
20/**\r
21 The event process routine when the DHCPv6 service binding protocol is installed\r
22 in the system.\r
23\r
24 @param[in] Event Not used.\r
25 @param[in] Context Pointer to the IP6 config instance data.\r
26\r
27**/\r
28VOID\r
29EFIAPI\r
30Ip6ConfigOnDhcp6SbInstalled (\r
31 IN EFI_EVENT Event,\r
32 IN VOID *Context\r
33 );\r
34\r
35/**\r
36 Update the current policy to NewPolicy. During the transition\r
37 period, the default router list, on-link prefix list, autonomous prefix list\r
38 and address list in all interfaces will be released.\r
39\r
40 @param[in] IpSb The IP6 service binding instance.\r
41 @param[in] NewPolicy The new policy to be updated to.\r
42\r
43**/\r
44VOID\r
45Ip6ConfigOnPolicyChanged (\r
46 IN IP6_SERVICE *IpSb,\r
47 IN EFI_IP6_CONFIG_POLICY NewPolicy\r
48 )\r
49{\r
50 LIST_ENTRY *Entry;\r
51 LIST_ENTRY *Entry2;\r
52 LIST_ENTRY *Next;\r
53 IP6_INTERFACE *IpIf;\r
54 IP6_DAD_ENTRY *DadEntry;\r
cca5e422
FS
55 IP6_DELAY_JOIN_LIST *DelayNode;\r
56 \r
a3bcde70
HT
57 //\r
58 // Currently there are only two policies: Manual and Automatic. Regardless of\r
59 // what transition is going on, i.e., Manual -> Automatic and Automatic ->\r
60 // Manual, we have to free default router list, on-link prefix list, autonomous\r
61 // prefix list, address list in all the interfaces and destroy any IPv6 child\r
62 // instance whose local IP is neither 0 nor the link-local address.\r
63 //\r
64 Ip6CleanDefaultRouterList (IpSb);\r
65 Ip6CleanPrefixListTable (IpSb, &IpSb->OnlinkPrefix);\r
66 Ip6CleanPrefixListTable (IpSb, &IpSb->AutonomousPrefix);\r
67\r
68 //\r
69 // It's tricky... If the LinkLocal address is O.K., add back the link-local\r
70 // prefix to the on-link prefix table.\r
71 //\r
72 if (IpSb->LinkLocalOk) {\r
73 Ip6CreatePrefixListEntry (\r
74 IpSb,\r
75 TRUE,\r
76 (UINT32) IP6_INFINIT_LIFETIME,\r
77 (UINT32) IP6_INFINIT_LIFETIME,\r
78 IP6_LINK_LOCAL_PREFIX_LENGTH,\r
79 &IpSb->LinkLocalAddr\r
80 );\r
81 }\r
82\r
83 //\r
84 // All IPv6 children that use global unicast address as it's source address\r
85 // should be destryoed now. The survivers are those use the link-local address\r
86 // or the unspecified address as the source address.\r
87 // TODO: Conduct a check here.\r
88 Ip6RemoveAddr (\r
89 IpSb,\r
90 &IpSb->DefaultInterface->AddressList,\r
91 &IpSb->DefaultInterface->AddressCount,\r
92 NULL,\r
93 0\r
94 );\r
95\r
96 NET_LIST_FOR_EACH (Entry, &IpSb->Interfaces) {\r
97 //\r
cca5e422 98 // remove all pending delay node and DAD entries for the global addresses.\r
a3bcde70
HT
99 //\r
100 IpIf = NET_LIST_USER_STRUCT_S (Entry, IP6_INTERFACE, Link, IP6_INTERFACE_SIGNATURE);\r
101\r
cca5e422
FS
102 NET_LIST_FOR_EACH_SAFE (Entry2, Next, &IpIf->DelayJoinList) {\r
103 DelayNode = NET_LIST_USER_STRUCT (Entry2, IP6_DELAY_JOIN_LIST, Link);\r
104 if (!NetIp6IsLinkLocalAddr (&DelayNode->AddressInfo->Address)) {\r
105 RemoveEntryList (&DelayNode->Link);\r
106 FreePool (DelayNode);\r
107 }\r
108 }\r
109\r
a3bcde70
HT
110 NET_LIST_FOR_EACH_SAFE (Entry2, Next, &IpIf->DupAddrDetectList) {\r
111 DadEntry = NET_LIST_USER_STRUCT_S (Entry2, IP6_DAD_ENTRY, Link, IP6_DAD_ENTRY_SIGNATURE);\r
112\r
113 if (!NetIp6IsLinkLocalAddr (&DadEntry->AddressInfo->Address)) {\r
114 //\r
115 // Fail this DAD entry if the address is not link-local.\r
116 //\r
117 Ip6OnDADFinished (FALSE, IpIf, DadEntry);\r
118 }\r
119 }\r
120 }\r
121\r
122 if (NewPolicy == Ip6ConfigPolicyAutomatic) {\r
123 //\r
d1c85a17 124 // Set parameters to trigger router solicitation sending in timer handler.\r
a3bcde70
HT
125 //\r
126 IpSb->RouterAdvertiseReceived = FALSE;\r
127 IpSb->SolicitTimer = IP6_MAX_RTR_SOLICITATIONS;\r
128 //\r
129 // delay 1 second\r
130 //\r
131 IpSb->Ticks = (UINT32) IP6_GET_TICKS (IP6_ONE_SECOND_IN_MS);\r
132 }\r
133\r
134}\r
135\r
136/**\r
137 The work function to trigger the DHCPv6 process to perform a stateful autoconfiguration.\r
138\r
139 @param[in] Instance Pointer to the IP6 config instance data.\r
140 @param[in] OtherInfoOnly If FALSE, get stateful address and other information\r
141 via DHCPv6. Otherwise, only get the other information.\r
142\r
143 @retval EFI_SUCCESS The operation finished successfully.\r
144 @retval EFI_UNSUPPORTED The DHCP6 driver is not available.\r
145\r
146**/\r
147EFI_STATUS\r
148Ip6ConfigStartStatefulAutoConfig (\r
149 IN IP6_CONFIG_INSTANCE *Instance,\r
150 IN BOOLEAN OtherInfoOnly\r
151 )\r
152{\r
153 EFI_STATUS Status;\r
154 IP6_SERVICE *IpSb;\r
155 EFI_DHCP6_CONFIG_DATA Dhcp6CfgData;\r
156 EFI_DHCP6_PROTOCOL *Dhcp6;\r
157 EFI_DHCP6_PACKET_OPTION *OptList[1];\r
158 UINT16 OptBuf[4];\r
159 EFI_DHCP6_PACKET_OPTION *Oro;\r
160 EFI_DHCP6_RETRANSMISSION InfoReqReXmit;\r
161\r
162 //\r
163 // A host must not invoke stateful address configuration if it is already\r
164 // participating in the statuful protocol as a result of an earlier advertisement.\r
165 //\r
166 if (Instance->Dhcp6Handle != NULL) {\r
167 return EFI_SUCCESS;\r
168 }\r
169\r
170 IpSb = IP6_SERVICE_FROM_IP6_CONFIG_INSTANCE (Instance);\r
171\r
172 Instance->OtherInfoOnly = OtherInfoOnly;\r
173\r
174 Status = NetLibCreateServiceChild (\r
175 IpSb->Controller,\r
176 IpSb->Image,\r
177 &gEfiDhcp6ServiceBindingProtocolGuid,\r
178 &Instance->Dhcp6Handle\r
179 );\r
180\r
181 if (Status == EFI_UNSUPPORTED) {\r
182 //\r
183 // No DHCPv6 Service Binding protocol, register a notify.\r
184 //\r
185 if (Instance->Dhcp6SbNotifyEvent == NULL) {\r
186 Instance->Dhcp6SbNotifyEvent = EfiCreateProtocolNotifyEvent (\r
187 &gEfiDhcp6ServiceBindingProtocolGuid,\r
188 TPL_CALLBACK,\r
189 Ip6ConfigOnDhcp6SbInstalled,\r
190 (VOID *) Instance,\r
191 &Instance->Registration\r
192 );\r
193 }\r
194 }\r
195\r
196 if (EFI_ERROR (Status)) {\r
197 return Status;\r
198 }\r
199\r
200 if (Instance->Dhcp6SbNotifyEvent != NULL) {\r
201 gBS->CloseEvent (Instance->Dhcp6SbNotifyEvent);\r
202 }\r
203\r
204 Status = gBS->OpenProtocol (\r
205 Instance->Dhcp6Handle,\r
206 &gEfiDhcp6ProtocolGuid,\r
207 (VOID **) &Instance->Dhcp6,\r
208 IpSb->Image,\r
209 IpSb->Controller,\r
210 EFI_OPEN_PROTOCOL_BY_DRIVER\r
211 );\r
212 ASSERT_EFI_ERROR (Status);\r
213\r
214 Dhcp6 = Instance->Dhcp6;\r
215 Dhcp6->Configure (Dhcp6, NULL);\r
216\r
217 //\r
218 // Set the exta options to send. Here we only want the option request option\r
219 // with DNS SERVERS.\r
220 //\r
221 Oro = (EFI_DHCP6_PACKET_OPTION *) OptBuf;\r
142c00c3 222 Oro->OpCode = HTONS (DHCP6_OPT_ORO);\r
a3bcde70 223 Oro->OpLen = HTONS (2);\r
142c00c3 224 *((UINT16 *) &Oro->Data[0]) = HTONS (DHCP6_OPT_DNS_SERVERS);\r
a3bcde70
HT
225 OptList[0] = Oro;\r
226\r
227 Status = EFI_SUCCESS;\r
228\r
229 if (!OtherInfoOnly) {\r
230 //\r
231 // Get stateful address and other information via DHCPv6.\r
232 //\r
233 Dhcp6CfgData.Dhcp6Callback = NULL;\r
234 Dhcp6CfgData.CallbackContext = NULL;\r
235 Dhcp6CfgData.OptionCount = 1;\r
236 Dhcp6CfgData.OptionList = &OptList[0];\r
237 Dhcp6CfgData.IaDescriptor.Type = EFI_DHCP6_IA_TYPE_NA;\r
238 Dhcp6CfgData.IaDescriptor.IaId = Instance->IaId;\r
239 Dhcp6CfgData.IaInfoEvent = Instance->Dhcp6Event;\r
240 Dhcp6CfgData.ReconfigureAccept = FALSE;\r
241 Dhcp6CfgData.RapidCommit = FALSE;\r
242 Dhcp6CfgData.SolicitRetransmission = NULL;\r
243\r
244 Status = Dhcp6->Configure (Dhcp6, &Dhcp6CfgData);\r
245\r
246 if (!EFI_ERROR (Status)) {\r
247\r
248 if (IpSb->LinkLocalOk) {\r
249 Status = Dhcp6->Start (Dhcp6);\r
250 } else {\r
251 IpSb->Dhcp6NeedStart = TRUE;\r
252 }\r
253\r
254 }\r
255 } else {\r
256 //\r
257 // Only get other information via DHCPv6, this doesn't require a config\r
258 // action.\r
259 //\r
260 InfoReqReXmit.Irt = 4;\r
261 InfoReqReXmit.Mrc = 64;\r
262 InfoReqReXmit.Mrt = 60;\r
263 InfoReqReXmit.Mrd = 0;\r
264\r
265 if (IpSb->LinkLocalOk) {\r
266 Status = Dhcp6->InfoRequest (\r
267 Dhcp6,\r
268 TRUE,\r
269 Oro,\r
270 0,\r
271 NULL,\r
272 &InfoReqReXmit,\r
273 Instance->Dhcp6Event,\r
274 Ip6ConfigOnDhcp6Reply,\r
275 Instance\r
276 );\r
277 } else {\r
278 IpSb->Dhcp6NeedInfoRequest = TRUE;\r
279 }\r
280\r
281 }\r
282\r
283 return Status;\r
284}\r
285\r
286/**\r
287 Signal the registered event. It is the callback routine for NetMapIterate.\r
288\r
289 @param[in] Map Points to the list of registered event.\r
290 @param[in] Item The registered event.\r
291 @param[in] Arg Not used.\r
292\r
293**/\r
294EFI_STATUS\r
295EFIAPI\r
296Ip6ConfigSignalEvent (\r
297 IN NET_MAP *Map,\r
298 IN NET_MAP_ITEM *Item,\r
299 IN VOID *Arg\r
300 )\r
301{\r
302 gBS->SignalEvent ((EFI_EVENT) Item->Key);\r
303\r
304 return EFI_SUCCESS;\r
305}\r
306\r
307/**\r
308 Read the configuration data from variable storage according to the VarName and\r
309 gEfiIp6ConfigProtocolGuid. It checks the integrity of variable data. If the\r
310 data is corrupted, it clears the variable data to ZERO. Othewise, it outputs the\r
311 configuration data to IP6_CONFIG_INSTANCE.\r
312\r
313 @param[in] VarName The pointer to the variable name\r
314 @param[in, out] Instance The pointer to the IP6 config instance data.\r
315\r
316 @retval EFI_NOT_FOUND The variable can not be found or already corrupted.\r
317 @retval EFI_OUT_OF_RESOURCES Fail to allocate resource to complete the operation.\r
318 @retval EFI_SUCCESS The configuration data was retrieved successfully.\r
319\r
320**/\r
321EFI_STATUS\r
322Ip6ConfigReadConfigData (\r
323 IN CHAR16 *VarName,\r
324 IN OUT IP6_CONFIG_INSTANCE *Instance\r
325 )\r
326{\r
327 EFI_STATUS Status;\r
328 UINTN VarSize;\r
329 IP6_CONFIG_VARIABLE *Variable;\r
330 IP6_CONFIG_DATA_ITEM *DataItem;\r
331 UINTN Index;\r
332 IP6_CONFIG_DATA_RECORD DataRecord;\r
333 CHAR8 *Data;\r
334\r
335 //\r
336 // Try to read the configuration variable.\r
337 //\r
338 VarSize = 0;\r
339 Status = gRT->GetVariable (\r
340 VarName,\r
341 &gEfiIp6ConfigProtocolGuid,\r
342 NULL,\r
343 &VarSize,\r
344 NULL\r
345 );\r
346\r
347 if (Status == EFI_BUFFER_TOO_SMALL) {\r
348 //\r
349 // Allocate buffer and read the config variable.\r
350 //\r
351 Variable = AllocatePool (VarSize);\r
352 if (Variable == NULL) {\r
353 return EFI_OUT_OF_RESOURCES;\r
354 }\r
355\r
356 Status = gRT->GetVariable (\r
357 VarName,\r
358 &gEfiIp6ConfigProtocolGuid,\r
359 NULL,\r
360 &VarSize,\r
361 Variable\r
362 );\r
363 if (EFI_ERROR (Status) || (UINT16) (~NetblockChecksum ((UINT8 *) Variable, (UINT32) VarSize)) != 0) {\r
364 //\r
365 // GetVariable still error or the variable is corrupted.\r
366 // Fall back to the default value.\r
367 //\r
368 FreePool (Variable);\r
369\r
370 //\r
371 // Remove the problematic variable and return EFI_NOT_FOUND, a new\r
372 // variable will be set again.\r
373 //\r
374 gRT->SetVariable (\r
375 VarName,\r
376 &gEfiIp6ConfigProtocolGuid,\r
377 IP6_CONFIG_VARIABLE_ATTRIBUTE,\r
378 0,\r
379 NULL\r
380 );\r
381\r
382 return EFI_NOT_FOUND;\r
383 }\r
384\r
385 //\r
386 // Get the IAID we use.\r
387 //\r
388 Instance->IaId = Variable->IaId;\r
389\r
390 for (Index = 0; Index < Variable->DataRecordCount; Index++) {\r
391\r
392 CopyMem (&DataRecord, &Variable->DataRecord[Index], sizeof (DataRecord));\r
393\r
394 DataItem = &Instance->DataItem[DataRecord.DataType];\r
395 if (DATA_ATTRIB_SET (DataItem->Attribute, DATA_ATTRIB_SIZE_FIXED) &&\r
396 (DataItem->DataSize != DataRecord.DataSize)\r
397 ) {\r
398 //\r
399 // Perhaps a corrupted data record...\r
400 //\r
401 continue;\r
402 }\r
403\r
404 if (!DATA_ATTRIB_SET (DataItem->Attribute, DATA_ATTRIB_SIZE_FIXED)) {\r
405 //\r
406 // This data item has variable length data.\r
407 //\r
408 DataItem->Data.Ptr = AllocatePool (DataRecord.DataSize);\r
409 if (DataItem->Data.Ptr == NULL) {\r
410 //\r
411 // no memory resource\r
412 //\r
413 continue;\r
414 }\r
415 }\r
416\r
417 Data = (CHAR8 *) Variable + DataRecord.Offset;\r
418 CopyMem (DataItem->Data.Ptr, Data, DataRecord.DataSize);\r
419\r
420 DataItem->DataSize = DataRecord.DataSize;\r
421 DataItem->Status = EFI_SUCCESS;\r
422 }\r
423\r
424 FreePool (Variable);\r
425 return EFI_SUCCESS;\r
426 }\r
427\r
428 return Status;\r
429}\r
430\r
431/**\r
432 Write the configuration data from IP6_CONFIG_INSTANCE to variable storage.\r
433\r
434 @param[in] VarName The pointer to the variable name.\r
435 @param[in] Instance The pointer to the IP6 configuration instance data.\r
436\r
437 @retval EFI_OUT_OF_RESOURCES Fail to allocate resource to complete the operation.\r
438 @retval EFI_SUCCESS The configuration data is written successfully.\r
439\r
440**/\r
441EFI_STATUS\r
442Ip6ConfigWriteConfigData (\r
443 IN CHAR16 *VarName,\r
444 IN IP6_CONFIG_INSTANCE *Instance\r
445 )\r
446{\r
447 UINTN Index;\r
448 UINTN VarSize;\r
449 IP6_CONFIG_DATA_ITEM *DataItem;\r
450 IP6_CONFIG_VARIABLE *Variable;\r
451 IP6_CONFIG_DATA_RECORD *DataRecord;\r
452 CHAR8 *Heap;\r
453 EFI_STATUS Status;\r
454\r
455 VarSize = sizeof (IP6_CONFIG_VARIABLE) - sizeof (IP6_CONFIG_DATA_RECORD);\r
456\r
457 for (Index = 0; Index < Ip6ConfigDataTypeMaximum; Index++) {\r
458\r
459 DataItem = &Instance->DataItem[Index];\r
460 if (!DATA_ATTRIB_SET (DataItem->Attribute, DATA_ATTRIB_VOLATILE) && !EFI_ERROR (DataItem->Status)) {\r
461\r
462 VarSize += sizeof (IP6_CONFIG_DATA_RECORD) + DataItem->DataSize;\r
463 }\r
464 }\r
465\r
466 Variable = AllocatePool (VarSize);\r
467 if (Variable == NULL) {\r
468 return EFI_OUT_OF_RESOURCES;\r
469 }\r
470\r
471 Variable->IaId = Instance->IaId;\r
472 Heap = (CHAR8 *) Variable + VarSize;\r
473 Variable->DataRecordCount = 0;\r
474\r
475 for (Index = 0; Index < Ip6ConfigDataTypeMaximum; Index++) {\r
476\r
477 DataItem = &Instance->DataItem[Index];\r
478 if (!DATA_ATTRIB_SET (DataItem->Attribute, DATA_ATTRIB_VOLATILE) && !EFI_ERROR (DataItem->Status)) {\r
479\r
480 Heap -= DataItem->DataSize;\r
481 CopyMem (Heap, DataItem->Data.Ptr, DataItem->DataSize);\r
482\r
483 DataRecord = &Variable->DataRecord[Variable->DataRecordCount];\r
484 DataRecord->DataType = (EFI_IP6_CONFIG_DATA_TYPE) Index;\r
fdc4b0b1 485 DataRecord->DataSize = (UINT32) DataItem->DataSize;\r
a3bcde70
HT
486 DataRecord->Offset = (UINT16) (Heap - (CHAR8 *) Variable);\r
487\r
488 Variable->DataRecordCount++;\r
489 }\r
490 }\r
491\r
492 Variable->Checksum = 0;\r
493 Variable->Checksum = (UINT16) ~NetblockChecksum ((UINT8 *) Variable, (UINT32) VarSize);\r
494\r
495 Status = gRT->SetVariable (\r
496 VarName,\r
497 &gEfiIp6ConfigProtocolGuid,\r
498 IP6_CONFIG_VARIABLE_ATTRIBUTE,\r
499 VarSize,\r
500 Variable\r
501 );\r
502\r
503 FreePool (Variable);\r
504\r
505 return Status;\r
506}\r
507\r
508/**\r
509 The work function for EfiIp6ConfigGetData() to get the interface information\r
510 of the communication device this IP6Config instance manages.\r
511\r
512 @param[in] Instance Pointer to the IP6 config instance data.\r
513 @param[in, out] DataSize On input, in bytes, the size of Data. On output, in\r
514 bytes, the size of buffer required to store the specified\r
515 configuration data.\r
516 @param[in] Data The data buffer in which the configuration data is returned.\r
517 Ignored if DataSize is ZERO.\r
518\r
519 @retval EFI_BUFFER_TOO_SMALL The size of Data is too small for the specified\r
520 configuration data, and the required size is\r
521 returned in DataSize.\r
522 @retval EFI_SUCCESS The specified configuration data was obtained.\r
523\r
524**/\r
525EFI_STATUS\r
526Ip6ConfigGetIfInfo (\r
527 IN IP6_CONFIG_INSTANCE *Instance,\r
528 IN OUT UINTN *DataSize,\r
529 IN VOID *Data OPTIONAL\r
530 )\r
531{\r
532 IP6_SERVICE *IpSb;\r
533 UINTN Length;\r
534 IP6_CONFIG_DATA_ITEM *Item;\r
535 EFI_IP6_CONFIG_INTERFACE_INFO *IfInfo;\r
536 UINT32 AddressCount;\r
537 UINT32 RouteCount;\r
538\r
539 IpSb = IP6_SERVICE_FROM_IP6_CONFIG_INSTANCE (Instance);\r
540 Length = sizeof (EFI_IP6_CONFIG_INTERFACE_INFO);\r
541\r
542 //\r
543 // Calculate the required length, add the buffer size for AddressInfo and\r
544 // RouteTable\r
545 //\r
546 Ip6BuildEfiAddressList (IpSb, &AddressCount, NULL);\r
547 Ip6BuildEfiRouteTable (IpSb->RouteTable, &RouteCount, NULL);\r
548\r
549 Length += AddressCount * sizeof (EFI_IP6_ADDRESS_INFO) + RouteCount * sizeof (EFI_IP6_ROUTE_TABLE);\r
550\r
551 if (*DataSize < Length) {\r
552 *DataSize = Length;\r
553 return EFI_BUFFER_TOO_SMALL;\r
554 }\r
555\r
556 //\r
557 // Copy the fixed size part of the interface info.\r
558 //\r
559 Item = &Instance->DataItem[Ip6ConfigDataTypeInterfaceInfo];\r
560 IfInfo = (EFI_IP6_CONFIG_INTERFACE_INFO *) Data;\r
561 CopyMem (IfInfo, Item->Data.Ptr, sizeof (EFI_IP6_CONFIG_INTERFACE_INFO));\r
562\r
563 //\r
564 // AddressInfo\r
565 //\r
566 IfInfo->AddressInfo = (EFI_IP6_ADDRESS_INFO *) (IfInfo + 1);\r
567 Ip6BuildEfiAddressList (IpSb, &IfInfo->AddressInfoCount, &IfInfo->AddressInfo);\r
568\r
569 //\r
570 // RouteTable\r
571 //\r
572 IfInfo->RouteTable = (EFI_IP6_ROUTE_TABLE *) (IfInfo->AddressInfo + IfInfo->AddressInfoCount);\r
573 Ip6BuildEfiRouteTable (IpSb->RouteTable, &IfInfo->RouteCount, &IfInfo->RouteTable);\r
574\r
575 if (IfInfo->AddressInfoCount == 0) {\r
576 IfInfo->AddressInfo = NULL;\r
577 }\r
578\r
579 if (IfInfo->RouteCount == 0) {\r
580 IfInfo->RouteTable = NULL;\r
581 }\r
582\r
583 return EFI_SUCCESS;\r
584}\r
585\r
586/**\r
587 The work function for EfiIp6ConfigSetData() to set the alternative inteface ID\r
588 for the communication device managed by this IP6Config instance, if the link local\r
589 IPv6 addresses generated from the interface ID based on the default source the\r
590 EFI IPv6 Protocol uses is a duplicate address.\r
591\r
592 @param[in] Instance Pointer to the IP6 configuration instance data.\r
593 @param[in] DataSize Size of the buffer pointed to by Data in bytes.\r
594 @param[in] Data The data buffer to set.\r
595\r
596 @retval EFI_BAD_BUFFER_SIZE The DataSize does not match the size of the type,\r
597 8 bytes.\r
598 @retval EFI_SUCCESS The specified configuration data for the EFI IPv6\r
599 network stack was set.\r
600\r
601**/\r
602EFI_STATUS\r
603Ip6ConfigSetAltIfId (\r
604 IN IP6_CONFIG_INSTANCE *Instance,\r
605 IN UINTN DataSize,\r
606 IN VOID *Data\r
607 )\r
608{\r
609 EFI_IP6_CONFIG_INTERFACE_ID *OldIfId;\r
610 EFI_IP6_CONFIG_INTERFACE_ID *NewIfId;\r
611 IP6_CONFIG_DATA_ITEM *DataItem;\r
612\r
613 if (DataSize != sizeof (EFI_IP6_CONFIG_INTERFACE_ID)) {\r
614 return EFI_BAD_BUFFER_SIZE;\r
615 }\r
616\r
617 DataItem = &Instance->DataItem[Ip6ConfigDataTypeAltInterfaceId];\r
618 OldIfId = DataItem->Data.AltIfId;\r
619 NewIfId = (EFI_IP6_CONFIG_INTERFACE_ID *) Data;\r
620\r
621 CopyMem (OldIfId, NewIfId, DataSize);\r
622 DataItem->Status = EFI_SUCCESS;\r
623\r
624 return EFI_SUCCESS;\r
625}\r
626\r
627/**\r
628 The work function for EfiIp6ConfigSetData() to set the general configuration\r
629 policy for the EFI IPv6 network stack that is running on the communication device\r
630 managed by this IP6Config instance. The policy will affect other configuration settings.\r
631\r
632 @param[in] Instance Pointer to the IP6 config instance data.\r
633 @param[in] DataSize Size of the buffer pointed to by Data in bytes.\r
634 @param[in] Data The data buffer to set.\r
635\r
636 @retval EFI_INVALID_PARAMETER The to be set policy is invalid.\r
637 @retval EFI_BAD_BUFFER_SIZE The DataSize does not match the size of the type.\r
638 @retval EFI_ABORTED The new policy equals the current policy.\r
639 @retval EFI_SUCCESS The specified configuration data for the EFI IPv6\r
640 network stack was set.\r
641\r
642**/\r
643EFI_STATUS\r
644Ip6ConfigSetPolicy (\r
645 IN IP6_CONFIG_INSTANCE *Instance,\r
646 IN UINTN DataSize,\r
647 IN VOID *Data\r
648 )\r
649{\r
650 EFI_IP6_CONFIG_POLICY NewPolicy;\r
651 IP6_CONFIG_DATA_ITEM *DataItem;\r
652 IP6_SERVICE *IpSb;\r
653\r
654 if (DataSize != sizeof (EFI_IP6_CONFIG_POLICY)) {\r
655 return EFI_BAD_BUFFER_SIZE;\r
656 }\r
657\r
658 NewPolicy = *((EFI_IP6_CONFIG_POLICY *) Data);\r
659\r
660 if (NewPolicy > Ip6ConfigPolicyAutomatic) {\r
661 return EFI_INVALID_PARAMETER;\r
662 }\r
663\r
664 if (NewPolicy == Instance->Policy) {\r
665\r
666 return EFI_ABORTED;\r
667 } else {\r
00df35fe
JW
668 //\r
669 // Clean the ManualAddress, Gateway and DnsServers, shrink the variable\r
670 // data size, and fire up all the related events.\r
671 //\r
672 DataItem = &Instance->DataItem[Ip6ConfigDataTypeManualAddress];\r
673 if (DataItem->Data.Ptr != NULL) {\r
674 FreePool (DataItem->Data.Ptr);\r
675 }\r
676 DataItem->Data.Ptr = NULL;\r
677 DataItem->DataSize = 0;\r
678 DataItem->Status = EFI_NOT_FOUND;\r
679 NetMapIterate (&DataItem->EventMap, Ip6ConfigSignalEvent, NULL);\r
680\r
681 DataItem = &Instance->DataItem[Ip6ConfigDataTypeGateway];\r
682 if (DataItem->Data.Ptr != NULL) {\r
683 FreePool (DataItem->Data.Ptr);\r
684 }\r
685 DataItem->Data.Ptr = NULL;\r
686 DataItem->DataSize = 0;\r
687 DataItem->Status = EFI_NOT_FOUND;\r
688 NetMapIterate (&DataItem->EventMap, Ip6ConfigSignalEvent, NULL);\r
689\r
690 DataItem = &Instance->DataItem[Ip6ConfigDataTypeDnsServer];\r
691 DataItem->Data.Ptr = NULL;\r
692 DataItem->DataSize = 0;\r
693 DataItem->Status = EFI_NOT_FOUND;\r
694 NetMapIterate (&DataItem->EventMap, Ip6ConfigSignalEvent, NULL);\r
695 \r
696 if (NewPolicy == Ip6ConfigPolicyManual) {\r
a3bcde70
HT
697 //\r
698 // The policy is changed from automatic to manual. Stop the DHCPv6 process\r
699 // and destroy the DHCPv6 child.\r
700 //\r
701 if (Instance->Dhcp6Handle != NULL) {\r
702 Ip6ConfigDestroyDhcp6 (Instance);\r
703 }\r
704 }\r
705\r
706 IpSb = IP6_SERVICE_FROM_IP6_CONFIG_INSTANCE (Instance);\r
707 Ip6ConfigOnPolicyChanged (IpSb, NewPolicy);\r
708\r
709 Instance->Policy = NewPolicy;\r
710\r
711 return EFI_SUCCESS;\r
712 }\r
713}\r
714\r
715/**\r
716 The work function for EfiIp6ConfigSetData() to set the number of consecutive\r
717 Neighbor Solicitation messages sent while performing Duplicate Address Detection\r
718 on a tentative address. A value of ZERO indicates that Duplicate Address Detection\r
719 will not be performed on a tentative address.\r
720\r
76389e18 721 @param[in] Instance The Instance Pointer to the IP6 config instance data.\r
a3bcde70
HT
722 @param[in] DataSize Size of the buffer pointed to by Data in bytes.\r
723 @param[in] Data The data buffer to set.\r
724\r
725 @retval EFI_BAD_BUFFER_SIZE The DataSize does not match the size of the type.\r
726 @retval EFI_ABORTED The new transmit count equals the current configuration.\r
727 @retval EFI_SUCCESS The specified configuration data for the EFI IPv6\r
728 network stack was set.\r
729\r
730**/\r
731EFI_STATUS\r
732Ip6ConfigSetDadXmits (\r
733 IN IP6_CONFIG_INSTANCE *Instance,\r
734 IN UINTN DataSize,\r
735 IN VOID *Data\r
736 )\r
737{\r
738 EFI_IP6_CONFIG_DUP_ADDR_DETECT_TRANSMITS *OldDadXmits;\r
739\r
740 if (DataSize != sizeof (EFI_IP6_CONFIG_DUP_ADDR_DETECT_TRANSMITS)) {\r
741 return EFI_BAD_BUFFER_SIZE;\r
742 }\r
743\r
744 OldDadXmits = Instance->DataItem[Ip6ConfigDataTypeDupAddrDetectTransmits].Data.DadXmits;\r
745\r
746 if ((*(UINT32 *) Data) == OldDadXmits->DupAddrDetectTransmits) {\r
747\r
748 return EFI_ABORTED;\r
749 } else {\r
750\r
751 OldDadXmits->DupAddrDetectTransmits = *((UINT32 *) Data);\r
752 return EFI_SUCCESS;\r
753 }\r
754}\r
755\r
756/**\r
757 The callback function for Ip6SetAddr. The prototype is defined\r
758 as IP6_DAD_CALLBACK. It is called after Duplicate Address Detection is performed\r
759 for the manual address set by Ip6ConfigSetMaunualAddress.\r
760\r
761 @param[in] IsDadPassed If TRUE, Duplicate Address Detection passed.\r
762 @param[in] TargetAddress The tentative IPv6 address to be checked.\r
763 @param[in] Context Pointer to the IP6 configuration instance data.\r
764\r
765**/\r
766VOID\r
767Ip6ManualAddrDadCallback (\r
768 IN BOOLEAN IsDadPassed,\r
769 IN EFI_IPv6_ADDRESS *TargetAddress,\r
770 IN VOID *Context\r
771 )\r
772{\r
773 IP6_CONFIG_INSTANCE *Instance;\r
774 UINTN Index;\r
775 IP6_CONFIG_DATA_ITEM *Item;\r
776 EFI_IP6_CONFIG_MANUAL_ADDRESS *ManualAddr;\r
777 EFI_IP6_CONFIG_MANUAL_ADDRESS *PassedAddr;\r
778 UINTN DadPassCount;\r
779 UINTN DadFailCount;\r
780 IP6_SERVICE *IpSb;\r
781\r
782 Instance = (IP6_CONFIG_INSTANCE *) Context;\r
783 NET_CHECK_SIGNATURE (Instance, IP6_CONFIG_INSTANCE_SIGNATURE);\r
784 Item = &Instance->DataItem[Ip6ConfigDataTypeManualAddress];\r
785 ManualAddr = NULL;\r
786\r
787 for (Index = 0; Index < Item->DataSize / sizeof (EFI_IP6_CONFIG_MANUAL_ADDRESS); Index++) {\r
788 //\r
789 // Find the original tag used to place into the NET_MAP.\r
790 //\r
791 ManualAddr = Item->Data.ManualAddress + Index;\r
792 if (EFI_IP6_EQUAL (TargetAddress, &ManualAddr->Address)) {\r
793 break;\r
794 }\r
795 }\r
796\r
797 ASSERT (Index != Item->DataSize / sizeof (EFI_IP6_CONFIG_MANUAL_ADDRESS));\r
798\r
799 if (IsDadPassed) {\r
800 NetMapInsertTail (&Instance->DadPassedMap, ManualAddr, NULL);\r
801 } else {\r
802 NetMapInsertTail (&Instance->DadFailedMap, ManualAddr, NULL);\r
803 }\r
804\r
805 DadPassCount = NetMapGetCount (&Instance->DadPassedMap);\r
806 DadFailCount = NetMapGetCount (&Instance->DadFailedMap);\r
807\r
808 if ((DadPassCount + DadFailCount) == (Item->DataSize / sizeof (EFI_IP6_CONFIG_MANUAL_ADDRESS))) {\r
809 //\r
810 // All addresses have finished the configuration process.\r
811 //\r
812 if (DadFailCount != 0) {\r
813 //\r
814 // There is at least one duplicate address.\r
815 //\r
816 FreePool (Item->Data.Ptr);\r
817\r
818 Item->DataSize = DadPassCount * sizeof (EFI_IP6_CONFIG_MANUAL_ADDRESS);\r
819 if (Item->DataSize == 0) {\r
820 //\r
821 // All failed, bad luck.\r
822 //\r
823 Item->Data.Ptr = NULL;\r
824 Item->Status = EFI_NOT_FOUND;\r
825 } else {\r
826 //\r
827 // Part of addresses are detected to be duplicates, so update the\r
828 // data with those passed.\r
829 //\r
830 PassedAddr = (EFI_IP6_CONFIG_MANUAL_ADDRESS *) AllocatePool (Item->DataSize);\r
831 ASSERT (PassedAddr != NULL);\r
832\r
833 Item->Data.Ptr = PassedAddr;\r
834 Item->Status = EFI_SUCCESS;\r
835\r
836 while (!NetMapIsEmpty (&Instance->DadPassedMap)) {\r
837 ManualAddr = (EFI_IP6_CONFIG_MANUAL_ADDRESS *) NetMapRemoveHead (&Instance->DadPassedMap, NULL);\r
838 CopyMem (PassedAddr, ManualAddr, sizeof (EFI_IP6_CONFIG_MANUAL_ADDRESS));\r
839\r
840 PassedAddr++;\r
841 }\r
842\r
843 ASSERT ((UINTN) PassedAddr - (UINTN) Item->Data.Ptr == Item->DataSize);\r
844 }\r
845 } else {\r
846 //\r
847 // All addresses are valid.\r
848 //\r
849 Item->Status = EFI_SUCCESS;\r
850 }\r
851\r
852 //\r
853 // Remove the tags we put in the NET_MAPs.\r
854 //\r
855 while (!NetMapIsEmpty (&Instance->DadFailedMap)) {\r
856 NetMapRemoveHead (&Instance->DadFailedMap, NULL);\r
857 }\r
858\r
859 while (!NetMapIsEmpty (&Instance->DadPassedMap)) {\r
860 NetMapRemoveHead (&Instance->DadPassedMap, NULL);\r
861 }\r
862\r
863 //\r
864 // Signal the waiting events.\r
865 //\r
866 NetMapIterate (&Item->EventMap, Ip6ConfigSignalEvent, NULL);\r
867 IpSb = IP6_SERVICE_FROM_IP6_CONFIG_INSTANCE (Instance);\r
868 Ip6ConfigWriteConfigData (IpSb->MacString, Instance);\r
869 }\r
870}\r
871\r
872/**\r
873 The work function for EfiIp6ConfigSetData() to set the station addresses manually\r
874 for the EFI IPv6 network stack. It is only configurable when the policy is\r
875 Ip6ConfigPolicyManual.\r
876\r
877 @param[in] Instance Pointer to the IP6 configuration instance data.\r
878 @param[in] DataSize Size of the buffer pointed to by Data in bytes.\r
879 @param[in] Data The data buffer to set.\r
880\r
881 @retval EFI_BAD_BUFFER_SIZE The DataSize does not match the size of the type.\r
882 @retval EFI_WRITE_PROTECTED The specified configuration data cannot be set\r
883 under the current policy.\r
884 @retval EFI_INVALID_PARAMETER One or more fields in Data is invalid.\r
885 @retval EFI_OUT_OF_RESOURCES Fail to allocate resource to complete the operation.\r
886 @retval EFI_NOT_READY An asynchrous process is invoked to set the specified\r
887 configuration data, and the process is not finished.\r
888 @retval EFI_ABORTED The manual addresses to be set equal current\r
889 configuration.\r
890 @retval EFI_SUCCESS The specified configuration data for the EFI IPv6\r
891 network stack was set.\r
892\r
893**/\r
894EFI_STATUS\r
895Ip6ConfigSetMaunualAddress (\r
896 IN IP6_CONFIG_INSTANCE *Instance,\r
897 IN UINTN DataSize,\r
898 IN VOID *Data\r
899 )\r
900{\r
901 EFI_IP6_CONFIG_MANUAL_ADDRESS *NewAddress;\r
902 EFI_IP6_CONFIG_MANUAL_ADDRESS *TmpAddress;\r
903 IP6_CONFIG_DATA_ITEM *DataItem;\r
904 UINTN NewAddressCount;\r
905 UINTN Index1;\r
906 UINTN Index2;\r
907 IP6_SERVICE *IpSb;\r
908 IP6_ADDRESS_INFO *CurrentAddrInfo;\r
909 IP6_ADDRESS_INFO *Copy;\r
910 LIST_ENTRY CurrentSourceList;\r
911 UINT32 CurrentSourceCount;\r
912 LIST_ENTRY *Entry;\r
913 LIST_ENTRY *Entry2;\r
914 IP6_INTERFACE *IpIf;\r
915 IP6_PREFIX_LIST_ENTRY *PrefixEntry;\r
916 EFI_STATUS Status;\r
917 BOOLEAN IsUpdated;\r
918\r
919 ASSERT (Instance->DataItem[Ip6ConfigDataTypeManualAddress].Status != EFI_NOT_READY);\r
920\r
921 if (((DataSize % sizeof (EFI_IP6_CONFIG_MANUAL_ADDRESS)) != 0) || (DataSize == 0)) {\r
922 return EFI_BAD_BUFFER_SIZE;\r
923 }\r
924\r
925 if (Instance->Policy != Ip6ConfigPolicyManual) {\r
926 return EFI_WRITE_PROTECTED;\r
927 }\r
928\r
929 NewAddressCount = DataSize / sizeof (EFI_IP6_CONFIG_MANUAL_ADDRESS);\r
930 NewAddress = (EFI_IP6_CONFIG_MANUAL_ADDRESS *) Data;\r
931\r
932 for (Index1 = 0; Index1 < NewAddressCount; Index1++, NewAddress++) {\r
933\r
934 if (NetIp6IsLinkLocalAddr (&NewAddress->Address) ||\r
935 !NetIp6IsValidUnicast (&NewAddress->Address) ||\r
936 (NewAddress->PrefixLength > 128)\r
937 ) {\r
938 //\r
939 // make sure the IPv6 address is unicast and not link-local address &&\r
940 // the prefix length is valid.\r
941 //\r
942 return EFI_INVALID_PARAMETER;\r
943 }\r
944\r
945 TmpAddress = NewAddress + 1;\r
946 for (Index2 = Index1 + 1; Index2 < NewAddressCount; Index2++, TmpAddress++) {\r
947 //\r
948 // Any two addresses in the array can't be equal.\r
949 //\r
950 if (EFI_IP6_EQUAL (&TmpAddress->Address, &NewAddress->Address)) {\r
951\r
952 return EFI_INVALID_PARAMETER;\r
953 }\r
954 }\r
955 }\r
956\r
957 IpSb = IP6_SERVICE_FROM_IP6_CONFIG_INSTANCE (Instance);\r
958\r
959 //\r
960 // Build the current source address list.\r
961 //\r
962 InitializeListHead (&CurrentSourceList);\r
963 CurrentSourceCount = 0;\r
964\r
965 NET_LIST_FOR_EACH (Entry, &IpSb->Interfaces) {\r
966 IpIf = NET_LIST_USER_STRUCT_S (Entry, IP6_INTERFACE, Link, IP6_INTERFACE_SIGNATURE);\r
967\r
968 NET_LIST_FOR_EACH (Entry2, &IpIf->AddressList) {\r
969 CurrentAddrInfo = NET_LIST_USER_STRUCT_S (Entry2, IP6_ADDRESS_INFO, Link, IP6_ADDR_INFO_SIGNATURE);\r
970\r
971 Copy = AllocateCopyPool (sizeof (IP6_ADDRESS_INFO), CurrentAddrInfo);\r
972 if (Copy == NULL) {\r
973 break;\r
974 }\r
975\r
976 InsertTailList (&CurrentSourceList, &Copy->Link);\r
977 CurrentSourceCount++;\r
978 }\r
979 }\r
980\r
981 //\r
982 // Update the value... a long journey starts\r
983 //\r
984 NewAddress = AllocateCopyPool (DataSize, Data);\r
985 if (NewAddress == NULL) {\r
986 Ip6RemoveAddr (NULL, &CurrentSourceList, &CurrentSourceCount, NULL, 0);\r
987\r
988 return EFI_OUT_OF_RESOURCES;\r
989 }\r
990\r
991 //\r
992 // Store the new data, and init the DataItem status to EFI_NOT_READY because\r
993 // we may have an asynchronous configuration process.\r
994 //\r
995 DataItem = &Instance->DataItem[Ip6ConfigDataTypeManualAddress];\r
996 if (DataItem->Data.Ptr != NULL) {\r
997 FreePool (DataItem->Data.Ptr);\r
998 }\r
999 DataItem->Data.Ptr = NewAddress;\r
1000 DataItem->DataSize = DataSize;\r
1001 DataItem->Status = EFI_NOT_READY;\r
1002\r
1003 //\r
1004 // Trigger DAD, it's an asynchronous process.\r
1005 //\r
1006 IsUpdated = FALSE;\r
1007\r
1008 for (Index1 = 0; Index1 < NewAddressCount; Index1++, NewAddress++) {\r
1009 if (Ip6IsOneOfSetAddress (IpSb, &NewAddress->Address, NULL, &CurrentAddrInfo)) {\r
1010 ASSERT (CurrentAddrInfo != NULL);\r
1011 //\r
1012 // Remove this already existing source address from the CurrentSourceList\r
1013 // built before.\r
1014 //\r
1015 Ip6RemoveAddr (\r
1016 NULL,\r
1017 &CurrentSourceList,\r
1018 &CurrentSourceCount,\r
1019 &CurrentAddrInfo->Address,\r
1020 128\r
1021 );\r
1022\r
ae97201c
FS
1023 //\r
1024 // If the new address's prefix length is not specified, just use the previous configured\r
1025 // prefix length for this address.\r
1026 //\r
1027 if (NewAddress->PrefixLength == 0) {\r
1028 NewAddress->PrefixLength = CurrentAddrInfo->PrefixLength;\r
1029 }\r
1030\r
a3bcde70
HT
1031 //\r
1032 // This manual address is already in use, see whether prefix length is changed.\r
1033 //\r
1034 if (NewAddress->PrefixLength != CurrentAddrInfo->PrefixLength) {\r
1035 //\r
1036 // Remove the on-link prefix table, the route entry will be removed\r
1037 // implicitly.\r
1038 //\r
1039 PrefixEntry = Ip6FindPrefixListEntry (\r
1040 IpSb,\r
1041 TRUE,\r
1042 CurrentAddrInfo->PrefixLength,\r
1043 &CurrentAddrInfo->Address\r
1044 );\r
1045 if (PrefixEntry != NULL) {\r
1046 Ip6DestroyPrefixListEntry (IpSb, PrefixEntry, TRUE, FALSE);\r
1047 }\r
1048\r
1049 //\r
1050 // Save the prefix length.\r
1051 //\r
1052 CurrentAddrInfo->PrefixLength = NewAddress->PrefixLength;\r
1053 IsUpdated = TRUE;\r
1054 }\r
1055\r
1056 //\r
1057 // create a new on-link prefix entry.\r
1058 //\r
1059 PrefixEntry = Ip6FindPrefixListEntry (\r
1060 IpSb,\r
1061 TRUE,\r
1062 NewAddress->PrefixLength,\r
1063 &NewAddress->Address\r
1064 );\r
1065 if (PrefixEntry == NULL) {\r
1066 Ip6CreatePrefixListEntry (\r
1067 IpSb,\r
1068 TRUE,\r
1069 (UINT32) IP6_INFINIT_LIFETIME,\r
1070 (UINT32) IP6_INFINIT_LIFETIME,\r
1071 NewAddress->PrefixLength,\r
1072 &NewAddress->Address\r
1073 );\r
1074 }\r
1075\r
1076 CurrentAddrInfo->IsAnycast = NewAddress->IsAnycast;\r
1077 //\r
1078 // Artificially mark this address passed DAD be'coz it is already in use.\r
1079 //\r
1080 Ip6ManualAddrDadCallback (TRUE, &NewAddress->Address, Instance);\r
1081 } else {\r
1082 //\r
1083 // A new address.\r
1084 //\r
1085 IsUpdated = TRUE;\r
1086\r
1087 //\r
1088 // Set the new address, this will trigger DAD and activate the address if\r
1089 // DAD succeeds.\r
1090 //\r
1091 Ip6SetAddress (\r
1092 IpSb->DefaultInterface,\r
1093 &NewAddress->Address,\r
1094 NewAddress->IsAnycast,\r
1095 NewAddress->PrefixLength,\r
1096 (UINT32) IP6_INFINIT_LIFETIME,\r
1097 (UINT32) IP6_INFINIT_LIFETIME,\r
1098 Ip6ManualAddrDadCallback,\r
1099 Instance\r
1100 );\r
1101 }\r
1102 }\r
1103\r
1104 //\r
1105 // Check the CurrentSourceList, it now contains those addresses currently in\r
1106 // use and will be removed.\r
1107 //\r
1108 IpIf = IpSb->DefaultInterface;\r
1109\r
1110 while (!IsListEmpty (&CurrentSourceList)) {\r
1111 IsUpdated = TRUE;\r
1112\r
1113 CurrentAddrInfo = NET_LIST_HEAD (&CurrentSourceList, IP6_ADDRESS_INFO, Link);\r
1114\r
1115 //\r
1116 // This local address is going to be removed, the IP instances that are\r
1117 // currently using it will be destroyed.\r
1118 //\r
1119 Ip6RemoveAddr (\r
1120 IpSb,\r
1121 &IpIf->AddressList,\r
1122 &IpIf->AddressCount,\r
1123 &CurrentAddrInfo->Address,\r
1124 128\r
1125 );\r
1126\r
1127 //\r
1128 // Remove the on-link prefix table, the route entry will be removed\r
1129 // implicitly.\r
1130 //\r
1131 PrefixEntry = Ip6FindPrefixListEntry (\r
1132 IpSb,\r
1133 TRUE,\r
1134 CurrentAddrInfo->PrefixLength,\r
1135 &CurrentAddrInfo->Address\r
1136 );\r
1137 if (PrefixEntry != NULL) {\r
1138 Ip6DestroyPrefixListEntry (IpSb, PrefixEntry, TRUE, FALSE);\r
1139 }\r
1140\r
1141 RemoveEntryList (&CurrentAddrInfo->Link);\r
1142 FreePool (CurrentAddrInfo);\r
1143 }\r
1144\r
1145 if (IsUpdated) {\r
1146 if (DataItem->Status == EFI_NOT_READY) {\r
1147 //\r
1148 // If DAD is disabled on this interface, the configuration process is\r
1149 // actually synchronous, and the data item's status will be changed to\r
1150 // the final status before we reach here, just check it.\r
1151 //\r
1152 Status = EFI_NOT_READY;\r
1153 } else {\r
1154 Status = EFI_SUCCESS;\r
1155 }\r
1156 } else {\r
1157 //\r
1158 // No update is taken, reset the status to success and return EFI_ABORTED.\r
1159 //\r
1160 DataItem->Status = EFI_SUCCESS;\r
1161 Status = EFI_ABORTED;\r
1162 }\r
1163\r
1164 return Status;\r
1165}\r
1166\r
1167/**\r
1168 The work function for EfiIp6ConfigSetData() to set the gateway addresses manually\r
1169 for the EFI IPv6 network stack that is running on the communication device that\r
1170 this EFI IPv6 Configuration Protocol manages. It is not configurable when the policy is\r
1171 Ip6ConfigPolicyAutomatic. The gateway addresses must be unicast IPv6 addresses.\r
1172\r
1173 @param[in] Instance The pointer to the IP6 config instance data.\r
1174 @param[in] DataSize The size of the buffer pointed to by Data in bytes.\r
1175 @param[in] Data The data buffer to set. This points to an array of\r
1176 EFI_IPv6_ADDRESS instances.\r
1177\r
1178 @retval EFI_BAD_BUFFER_SIZE The DataSize does not match the size of the type.\r
1179 @retval EFI_WRITE_PROTECTED The specified configuration data cannot be set\r
1180 under the current policy.\r
1181 @retval EFI_INVALID_PARAMETER One or more fields in Data is invalid.\r
1182 @retval EFI_OUT_OF_RESOURCES Failed to allocate resource to complete the operation.\r
1183 @retval EFI_ABORTED The manual gateway addresses to be set equal the\r
1184 current configuration.\r
1185 @retval EFI_SUCCESS The specified configuration data for the EFI IPv6\r
1186 network stack was set.\r
1187\r
1188**/\r
1189EFI_STATUS\r
1190Ip6ConfigSetGateway (\r
1191 IN IP6_CONFIG_INSTANCE *Instance,\r
1192 IN UINTN DataSize,\r
1193 IN VOID *Data\r
1194 )\r
1195{\r
1196 UINTN Index1;\r
1197 UINTN Index2;\r
1198 EFI_IPv6_ADDRESS *OldGateway;\r
1199 EFI_IPv6_ADDRESS *NewGateway;\r
1200 UINTN OldGatewayCount;\r
1201 UINTN NewGatewayCount;\r
1202 IP6_CONFIG_DATA_ITEM *Item;\r
1203 BOOLEAN OneRemoved;\r
1204 BOOLEAN OneAdded;\r
1205 IP6_SERVICE *IpSb;\r
1206 IP6_DEFAULT_ROUTER *DefaultRouter;\r
1207 VOID *Tmp;\r
1208\r
1209 if ((DataSize % sizeof (EFI_IPv6_ADDRESS) != 0) || (DataSize == 0)) {\r
1210 return EFI_BAD_BUFFER_SIZE;\r
1211 }\r
1212\r
1213 if (Instance->Policy != Ip6ConfigPolicyManual) {\r
1214 return EFI_WRITE_PROTECTED;\r
1215 }\r
1216\r
1217 NewGateway = (EFI_IPv6_ADDRESS *) Data;\r
1218 NewGatewayCount = DataSize / sizeof (EFI_IPv6_ADDRESS);\r
1219 for (Index1 = 0; Index1 < NewGatewayCount; Index1++) {\r
1220\r
1221 if (!NetIp6IsValidUnicast (NewGateway + Index1)) {\r
1222\r
1223 return EFI_INVALID_PARAMETER;\r
1224 }\r
1225\r
1226 for (Index2 = Index1 + 1; Index2 < NewGatewayCount; Index2++) {\r
1227 if (EFI_IP6_EQUAL (NewGateway + Index1, NewGateway + Index2)) {\r
1228 return EFI_INVALID_PARAMETER;\r
1229 }\r
1230 }\r
1231 }\r
1232\r
1233 IpSb = IP6_SERVICE_FROM_IP6_CONFIG_INSTANCE (Instance);\r
1234 Item = &Instance->DataItem[Ip6ConfigDataTypeGateway];\r
1235 OldGateway = Item->Data.Gateway;\r
1236 OldGatewayCount = Item->DataSize / sizeof (EFI_IPv6_ADDRESS);\r
1237 OneRemoved = FALSE;\r
1238 OneAdded = FALSE;\r
1239\r
1240 if (NewGatewayCount != OldGatewayCount) {\r
1241 Tmp = AllocatePool (DataSize);\r
1242 if (Tmp == NULL) {\r
1243 return EFI_OUT_OF_RESOURCES;\r
1244 }\r
1245 } else {\r
1246 Tmp = NULL;\r
1247 }\r
1248\r
1249 for (Index1 = 0; Index1 < OldGatewayCount; Index1++) {\r
1250 //\r
1251 // Find the gateways that are no long in the new setting and remove them.\r
1252 //\r
1253 for (Index2 = 0; Index2 < NewGatewayCount; Index2++) {\r
1254 if (EFI_IP6_EQUAL (OldGateway + Index1, NewGateway + Index2)) {\r
1255 OneRemoved = TRUE;\r
1256 break;\r
1257 }\r
1258 }\r
1259\r
1260 if (Index2 == NewGatewayCount) {\r
1261 //\r
1262 // Remove this default router.\r
1263 //\r
1264 DefaultRouter = Ip6FindDefaultRouter (IpSb, OldGateway + Index1);\r
1265 if (DefaultRouter != NULL) {\r
1266 Ip6DestroyDefaultRouter (IpSb, DefaultRouter);\r
1267 }\r
1268 }\r
1269 }\r
1270\r
1271 for (Index1 = 0; Index1 < NewGatewayCount; Index1++) {\r
1272\r
1273 DefaultRouter = Ip6FindDefaultRouter (IpSb, NewGateway + Index1);\r
1274 if (DefaultRouter == NULL) {\r
1275 Ip6CreateDefaultRouter (IpSb, NewGateway + Index1, IP6_INF_ROUTER_LIFETIME);\r
1276 OneAdded = TRUE;\r
1277 }\r
1278 }\r
1279\r
1280 if (!OneRemoved && !OneAdded) {\r
1281 Item->Status = EFI_SUCCESS;\r
1282 return EFI_ABORTED;\r
1283 } else {\r
1284\r
1285 if (Tmp != NULL) {\r
1286 if (Item->Data.Ptr != NULL) {\r
1287 FreePool (Item->Data.Ptr);\r
1288 }\r
1289 Item->Data.Ptr = Tmp;\r
1290 }\r
1291\r
1292 CopyMem (Item->Data.Ptr, Data, DataSize);\r
1293 Item->DataSize = DataSize;\r
1294 Item->Status = EFI_SUCCESS;\r
1295 return EFI_SUCCESS;\r
1296 }\r
1297}\r
1298\r
1299/**\r
1300 The work function for EfiIp6ConfigSetData() to set the DNS server list for the\r
1301 EFI IPv6 network stack running on the communication device that this EFI IPv6\r
1302 Configuration Protocol manages. It is not configurable when the policy is\r
1303 Ip6ConfigPolicyAutomatic. The DNS server addresses must be unicast IPv6 addresses.\r
1304\r
1305 @param[in] Instance The pointer to the IP6 config instance data.\r
1306 @param[in] DataSize The size of the buffer pointed to by Data in bytes.\r
1307 @param[in] Data The data buffer to set, points to an array of\r
1308 EFI_IPv6_ADDRESS instances.\r
1309\r
1310 @retval EFI_BAD_BUFFER_SIZE The DataSize does not match the size of the type.\r
1311 @retval EFI_WRITE_PROTECTED The specified configuration data cannot be set\r
1312 under the current policy.\r
1313 @retval EFI_INVALID_PARAMETER One or more fields in Data is invalid.\r
1314 @retval EFI_OUT_OF_RESOURCES Failed to allocate resources to complete the operation.\r
1315 @retval EFI_ABORTED The DNS server addresses to be set equal the current\r
1316 configuration.\r
1317 @retval EFI_SUCCESS The specified configuration data for the EFI IPv6\r
1318 network stack was set.\r
1319\r
1320**/\r
1321EFI_STATUS\r
1322Ip6ConfigSetDnsServer (\r
1323 IN IP6_CONFIG_INSTANCE *Instance,\r
1324 IN UINTN DataSize,\r
1325 IN VOID *Data\r
1326 )\r
1327{\r
1328 UINTN OldIndex;\r
1329 UINTN NewIndex;\r
1330 UINTN Index1;\r
1331 EFI_IPv6_ADDRESS *OldDns;\r
1332 EFI_IPv6_ADDRESS *NewDns;\r
1333 UINTN OldDnsCount;\r
1334 UINTN NewDnsCount;\r
1335 IP6_CONFIG_DATA_ITEM *Item;\r
1336 BOOLEAN OneAdded;\r
1337 VOID *Tmp;\r
1338\r
1339 if ((DataSize % sizeof (EFI_IPv6_ADDRESS) != 0) || (DataSize == 0)) {\r
1340 return EFI_BAD_BUFFER_SIZE;\r
1341 }\r
1342\r
1343 if (Instance->Policy != Ip6ConfigPolicyManual) {\r
1344 return EFI_WRITE_PROTECTED;\r
1345 }\r
1346\r
1347 Item = &Instance->DataItem[Ip6ConfigDataTypeDnsServer];\r
1348 NewDns = (EFI_IPv6_ADDRESS *) Data;\r
1349 OldDns = Item->Data.DnsServers;\r
1350 NewDnsCount = DataSize / sizeof (EFI_IPv6_ADDRESS);\r
1351 OldDnsCount = Item->DataSize / sizeof (EFI_IPv6_ADDRESS);\r
1352 OneAdded = FALSE;\r
1353\r
1354 if (NewDnsCount != OldDnsCount) {\r
1355 Tmp = AllocatePool (DataSize);\r
1356 if (Tmp == NULL) {\r
1357 return EFI_OUT_OF_RESOURCES;\r
1358 }\r
1359 } else {\r
1360 Tmp = NULL;\r
1361 }\r
1362\r
1363 for (NewIndex = 0; NewIndex < NewDnsCount; NewIndex++) {\r
1364\r
1365 if (!NetIp6IsValidUnicast (NewDns + NewIndex)) {\r
1366 //\r
1367 // The dns server address must be unicast.\r
1368 //\r
ab50ab6e
JW
1369 if (Tmp != NULL) {\r
1370 FreePool (Tmp);\r
1371 }\r
a3bcde70
HT
1372 return EFI_INVALID_PARAMETER;\r
1373 }\r
1374\r
1375 for (Index1 = NewIndex + 1; Index1 < NewDnsCount; Index1++) {\r
1376 if (EFI_IP6_EQUAL (NewDns + NewIndex, NewDns + Index1)) {\r
ab50ab6e
JW
1377 if (Tmp != NULL) {\r
1378 FreePool (Tmp);\r
1379 }\r
a3bcde70
HT
1380 return EFI_INVALID_PARAMETER;\r
1381 }\r
1382 }\r
1383\r
1384 if (OneAdded) {\r
1385 //\r
1386 // If any address in the new setting is not in the old settings, skip the\r
1387 // comparision below.\r
1388 //\r
1389 continue;\r
1390 }\r
1391\r
1392 for (OldIndex = 0; OldIndex < OldDnsCount; OldIndex++) {\r
1393 if (EFI_IP6_EQUAL (NewDns + NewIndex, OldDns + OldIndex)) {\r
1394 //\r
1395 // If found break out.\r
1396 //\r
1397 break;\r
1398 }\r
1399 }\r
1400\r
1401 if (OldIndex == OldDnsCount) {\r
1402 OneAdded = TRUE;\r
1403 }\r
1404 }\r
1405\r
1406 if (!OneAdded && (DataSize == Item->DataSize)) {\r
1407 //\r
1408 // No new item is added and the size is the same.\r
1409 //\r
1410 Item->Status = EFI_SUCCESS;\r
1411 return EFI_ABORTED;\r
1412 } else {\r
1413 if (Tmp != NULL) {\r
1414 if (Item->Data.Ptr != NULL) {\r
1415 FreePool (Item->Data.Ptr);\r
1416 }\r
1417 Item->Data.Ptr = Tmp;\r
1418 }\r
1419\r
1420 CopyMem (Item->Data.Ptr, Data, DataSize);\r
1421 Item->DataSize = DataSize;\r
1422 Item->Status = EFI_SUCCESS;\r
1423 return EFI_SUCCESS;\r
1424 }\r
1425}\r
1426\r
1427/**\r
1428 Generate the operational state of the interface this IP6 config instance manages\r
1429 and output in EFI_IP6_CONFIG_INTERFACE_INFO.\r
1430\r
1431 @param[in] IpSb The pointer to the IP6 service binding instance.\r
1432 @param[out] IfInfo The pointer to the IP6 configuration interface information structure.\r
1433\r
1434**/\r
1435VOID\r
1436Ip6ConfigInitIfInfo (\r
1437 IN IP6_SERVICE *IpSb,\r
1438 OUT EFI_IP6_CONFIG_INTERFACE_INFO *IfInfo\r
1439 )\r
1440{\r
1441 IfInfo->Name[0] = L'e';\r
1442 IfInfo->Name[1] = L't';\r
1443 IfInfo->Name[2] = L'h';\r
1444 IfInfo->Name[3] = (CHAR16) (L'0' + IpSb->Ip6ConfigInstance.IfIndex);\r
1445 IfInfo->Name[4] = 0;\r
1446\r
1447 IfInfo->IfType = IpSb->SnpMode.IfType;\r
1448 IfInfo->HwAddressSize = IpSb->SnpMode.HwAddressSize;\r
1449 CopyMem (&IfInfo->HwAddress, &IpSb->SnpMode.CurrentAddress, IfInfo->HwAddressSize);\r
1450}\r
1451\r
1452/**\r
1453 Parse DHCPv6 reply packet to get the DNS server list.\r
1454 It is the work function for Ip6ConfigOnDhcp6Reply and Ip6ConfigOnDhcp6Event.\r
1455\r
1456 @param[in] Dhcp6 The pointer to the EFI_DHCP6_PROTOCOL instance.\r
1457 @param[in, out] Instance The pointer to the IP6 configuration instance data.\r
1458 @param[in] Reply The pointer to the DHCPv6 reply packet.\r
1459\r
1460 @retval EFI_SUCCESS The DNS server address was retrieved from the reply packet.\r
1461 @retval EFI_NOT_READY The reply packet does not contain the DNS server option, or\r
1462 the DNS server address is not valid.\r
1463\r
1464**/\r
1465EFI_STATUS\r
1466Ip6ConfigParseDhcpReply (\r
1467 IN EFI_DHCP6_PROTOCOL *Dhcp6,\r
1468 IN OUT IP6_CONFIG_INSTANCE *Instance,\r
1469 IN EFI_DHCP6_PACKET *Reply\r
1470 )\r
1471{\r
1472 EFI_STATUS Status;\r
1473 UINT32 OptCount;\r
1474 EFI_DHCP6_PACKET_OPTION **OptList;\r
1475 UINT16 OpCode;\r
1476 UINT16 Length;\r
1477 UINTN Index;\r
1478 UINTN Index2;\r
1479 EFI_IPv6_ADDRESS *DnsServer;\r
1480 IP6_CONFIG_DATA_ITEM *Item;\r
1481\r
1482 //\r
1483 // A DHCPv6 reply packet is received as the response to our InfoRequest\r
1484 // packet.\r
1485 //\r
1486 OptCount = 0;\r
1487 Status = Dhcp6->Parse (Dhcp6, Reply, &OptCount, NULL);\r
1488 if (Status != EFI_BUFFER_TOO_SMALL) {\r
1489 return EFI_NOT_READY;\r
1490 }\r
1491\r
1492 OptList = AllocatePool (OptCount * sizeof (EFI_DHCP6_PACKET_OPTION *));\r
1493 if (OptList == NULL) {\r
1494 return EFI_NOT_READY;\r
1495 }\r
1496\r
1497 Status = Dhcp6->Parse (Dhcp6, Reply, &OptCount, OptList);\r
1498 if (EFI_ERROR (Status)) {\r
1499 Status = EFI_NOT_READY;\r
1500 goto ON_EXIT;\r
1501 }\r
1502\r
1503 Status = EFI_SUCCESS;\r
1504\r
1505 for (Index = 0; Index < OptCount; Index++) {\r
1506 //\r
1507 // Go through all the options to check the ones we are interested in.\r
1508 // The OpCode and Length are in network byte-order and may not be naturally\r
1509 // aligned.\r
1510 //\r
1511 CopyMem (&OpCode, &OptList[Index]->OpCode, sizeof (OpCode));\r
1512 OpCode = NTOHS (OpCode);\r
1513\r
142c00c3 1514 if (OpCode == DHCP6_OPT_DNS_SERVERS) {\r
a3bcde70
HT
1515 CopyMem (&Length, &OptList[Index]->OpLen, sizeof (Length));\r
1516 Length = NTOHS (Length);\r
1517\r
1518 if ((Length == 0) || ((Length % sizeof (EFI_IPv6_ADDRESS)) != 0)) {\r
1519 //\r
1520 // The length should be a multiple of 16 bytes.\r
1521 //\r
1522 Status = EFI_NOT_READY;\r
1523 break;\r
1524 }\r
1525\r
1526 //\r
1527 // Validate the DnsServers: whether they are unicast addresses.\r
1528 //\r
1529 DnsServer = (EFI_IPv6_ADDRESS *) OptList[Index]->Data;\r
1530 for (Index2 = 0; Index2 < Length / sizeof (EFI_IPv6_ADDRESS); Index2++) {\r
1531 if (!NetIp6IsValidUnicast (DnsServer)) {\r
1532 Status = EFI_NOT_READY;\r
1533 goto ON_EXIT;\r
1534 }\r
1535\r
1536 DnsServer++;\r
1537 }\r
1538\r
1539 Item = &Instance->DataItem[Ip6ConfigDataTypeDnsServer];\r
1540\r
1541 if (Item->DataSize != Length) {\r
1542 if (Item->Data.Ptr != NULL) {\r
1543 FreePool (Item->Data.Ptr);\r
1544 }\r
1545\r
1546 Item->Data.Ptr = AllocatePool (Length);\r
1547 ASSERT (Item->Data.Ptr != NULL);\r
1548 }\r
1549\r
1550 CopyMem (Item->Data.Ptr, OptList[Index]->Data, Length);\r
1551 Item->DataSize = Length;\r
1552 Item->Status = EFI_SUCCESS;\r
1553\r
1554 //\r
1555 // Signal the waiting events.\r
1556 //\r
1557 NetMapIterate (&Item->EventMap, Ip6ConfigSignalEvent, NULL);\r
1558\r
1559 break;\r
1560 }\r
1561 }\r
1562\r
1563ON_EXIT:\r
1564\r
1565 FreePool (OptList);\r
1566 return Status;\r
1567}\r
1568\r
1569/**\r
1570 The callback function for Ip6SetAddr. The prototype is defined\r
1571 as IP6_DAD_CALLBACK. It is called after Duplicate Address Detection is performed\r
1572 on the tentative address by DHCPv6 in Ip6ConfigOnDhcp6Event().\r
1573\r
1574 @param[in] IsDadPassed If TRUE, Duplicate Address Detection passes.\r
1575 @param[in] TargetAddress The tentative IPv6 address to be checked.\r
1576 @param[in] Context Pointer to the IP6 configuration instance data.\r
1577\r
1578**/\r
1579VOID\r
1580Ip6ConfigSetStatefulAddrCallback (\r
1581 IN BOOLEAN IsDadPassed,\r
1582 IN EFI_IPv6_ADDRESS *TargetAddress,\r
1583 IN VOID *Context\r
1584 )\r
1585{\r
1586 IP6_CONFIG_INSTANCE *Instance;\r
1587\r
1588 Instance = (IP6_CONFIG_INSTANCE *) Context;\r
1589 NET_CHECK_SIGNATURE (Instance, IP6_CONFIG_INSTANCE_SIGNATURE);\r
1590\r
1591 //\r
1592 // We should record the addresses that fail the DAD, and DECLINE them.\r
1593 //\r
1594 if (IsDadPassed) {\r
1595 //\r
1596 // Decrease the count, no interests in those passed DAD.\r
1597 //\r
1598 if (Instance->FailedIaAddressCount > 0 ) {\r
1599 Instance->FailedIaAddressCount--;\r
1600 }\r
1601 } else {\r
1602 //\r
1603 // Record it.\r
1604 //\r
1605 IP6_COPY_ADDRESS (Instance->DeclineAddress + Instance->DeclineAddressCount, TargetAddress);\r
1606 Instance->DeclineAddressCount++;\r
1607 }\r
1608\r
1609 if (Instance->FailedIaAddressCount == Instance->DeclineAddressCount) {\r
1610 //\r
1611 // The checking on all addresses are finished.\r
1612 //\r
1613 if (Instance->DeclineAddressCount != 0) {\r
1614 //\r
1615 // Decline those duplicates.\r
1616 //\r
ae97201c
FS
1617 if (Instance->Dhcp6 != NULL) {\r
1618 Instance->Dhcp6->Decline (\r
1619 Instance->Dhcp6,\r
1620 Instance->DeclineAddressCount,\r
1621 Instance->DeclineAddress\r
1622 );\r
1623 }\r
a3bcde70
HT
1624 }\r
1625\r
1626 if (Instance->DeclineAddress != NULL) {\r
1627 FreePool (Instance->DeclineAddress);\r
1628 }\r
1629 Instance->DeclineAddress = NULL;\r
1630 Instance->DeclineAddressCount = 0;\r
1631 }\r
1632}\r
1633\r
1634/**\r
1635 The event handle routine when DHCPv6 process is finished or is updated.\r
1636\r
1637 @param[in] Event Not used.\r
1638 @param[in] Context The pointer to the IP6 configuration instance data.\r
1639\r
1640**/\r
1641VOID\r
1642EFIAPI\r
1643Ip6ConfigOnDhcp6Event (\r
1644 IN EFI_EVENT Event,\r
1645 IN VOID *Context\r
1646 )\r
1647{\r
1648 IP6_CONFIG_INSTANCE *Instance;\r
1649 EFI_DHCP6_PROTOCOL *Dhcp6;\r
1650 EFI_STATUS Status;\r
1651 EFI_DHCP6_MODE_DATA Dhcp6ModeData;\r
1652 EFI_DHCP6_IA *Ia;\r
1653 EFI_DHCP6_IA_ADDRESS *IaAddr;\r
1654 UINT32 Index;\r
1655 IP6_SERVICE *IpSb;\r
1656 IP6_ADDRESS_INFO *AddrInfo;\r
1657 IP6_INTERFACE *IpIf;\r
1658\r
1659 Instance = (IP6_CONFIG_INSTANCE *) Context;\r
1660\r
1661 if ((Instance->Policy != Ip6ConfigPolicyAutomatic) || Instance->OtherInfoOnly) {\r
1662 //\r
1663 // IPv6 is not operating in the automatic policy now or\r
1664 // the DHCPv6 information request message exchange is aborted.\r
1665 //\r
1666 return ;\r
1667 }\r
1668\r
1669 //\r
1670 // The stateful address autoconfiguration is done or updated.\r
1671 //\r
1672 Dhcp6 = Instance->Dhcp6;\r
1673\r
1674 Status = Dhcp6->GetModeData (Dhcp6, &Dhcp6ModeData, NULL);\r
1675 if (EFI_ERROR (Status)) {\r
1676 return ;\r
1677 }\r
1678\r
1679 IpSb = IP6_SERVICE_FROM_IP6_CONFIG_INSTANCE (Instance);\r
1680 IpIf = IpSb->DefaultInterface;\r
1681 Ia = Dhcp6ModeData.Ia;\r
1682 IaAddr = Ia->IaAddress;\r
1683\r
1684 if (Instance->DeclineAddress != NULL) {\r
1685 FreePool (Instance->DeclineAddress);\r
1686 }\r
1687\r
1688 Instance->DeclineAddress = (EFI_IPv6_ADDRESS *) AllocatePool (Ia->IaAddressCount * sizeof (EFI_IPv6_ADDRESS));\r
1689 if (Instance->DeclineAddress == NULL) {\r
1690 goto ON_EXIT;\r
1691 }\r
1692\r
1693 Instance->FailedIaAddressCount = Ia->IaAddressCount;\r
1694 Instance->DeclineAddressCount = 0;\r
1695\r
1696 for (Index = 0; Index < Ia->IaAddressCount; Index++, IaAddr++) {\r
1697 if (Ia->IaAddress[Index].ValidLifetime != 0 && Ia->State == Dhcp6Bound) {\r
1698 //\r
1699 // Set this address, either it's a new address or with updated lifetimes.\r
1700 // An appropriate prefix length will be set.\r
1701 //\r
1702 Ip6SetAddress (\r
1703 IpIf,\r
1704 &IaAddr->IpAddress,\r
1705 FALSE,\r
1706 0,\r
1707 IaAddr->ValidLifetime,\r
1708 IaAddr->PreferredLifetime,\r
1709 Ip6ConfigSetStatefulAddrCallback,\r
1710 Instance\r
1711 );\r
1712 } else {\r
1713 //\r
1714 // discard this address, artificially decrease the count as if this address\r
1715 // passed DAD.\r
1716 //\r
1717 if (Ip6IsOneOfSetAddress (IpSb, &IaAddr->IpAddress, NULL, &AddrInfo)) {\r
1718 ASSERT (AddrInfo != NULL);\r
1719 Ip6RemoveAddr (\r
1720 IpSb,\r
1721 &IpIf->AddressList,\r
1722 &IpIf->AddressCount,\r
1723 &AddrInfo->Address,\r
1724 AddrInfo->PrefixLength\r
1725 );\r
1726 }\r
1727\r
1728 if (Instance->FailedIaAddressCount > 0) {\r
1729 Instance->FailedIaAddressCount--;\r
1730 }\r
1731 }\r
1732 }\r
1733\r
1734 //\r
1735 // Parse the Reply packet to get the options we need.\r
1736 //\r
1737 if (Dhcp6ModeData.Ia->ReplyPacket != NULL) {\r
1738 Ip6ConfigParseDhcpReply (Dhcp6, Instance, Dhcp6ModeData.Ia->ReplyPacket);\r
1739 }\r
1740\r
1741ON_EXIT:\r
1742\r
1743 FreePool (Dhcp6ModeData.ClientId);\r
1744 FreePool (Dhcp6ModeData.Ia);\r
1745}\r
1746\r
1747/**\r
1748 The event process routine when the DHCPv6 server is answered with a reply packet\r
1749 for an information request.\r
1750\r
1751 @param[in] This Points to the EFI_DHCP6_PROTOCOL.\r
1752 @param[in] Context The pointer to the IP6 configuration instance data.\r
1753 @param[in] Packet The DHCPv6 reply packet.\r
1754\r
1755 @retval EFI_SUCCESS The DNS server address was retrieved from the reply packet.\r
1756 @retval EFI_NOT_READY The reply packet does not contain the DNS server option, or\r
1757 the DNS server address is not valid.\r
1758\r
1759**/\r
1760EFI_STATUS\r
1761EFIAPI\r
1762Ip6ConfigOnDhcp6Reply (\r
1763 IN EFI_DHCP6_PROTOCOL *This,\r
1764 IN VOID *Context,\r
1765 IN EFI_DHCP6_PACKET *Packet\r
1766 )\r
1767{\r
1768 return Ip6ConfigParseDhcpReply (This, (IP6_CONFIG_INSTANCE *) Context, Packet);\r
1769}\r
1770\r
1771/**\r
1772 The event process routine when the DHCPv6 service binding protocol is installed\r
1773 in the system.\r
1774\r
1775 @param[in] Event Not used.\r
1776 @param[in] Context The pointer to the IP6 config instance data.\r
1777\r
1778**/\r
1779VOID\r
1780EFIAPI\r
1781Ip6ConfigOnDhcp6SbInstalled (\r
1782 IN EFI_EVENT Event,\r
1783 IN VOID *Context\r
1784 )\r
1785{\r
1786 IP6_CONFIG_INSTANCE *Instance;\r
1787\r
1788 Instance = (IP6_CONFIG_INSTANCE *) Context;\r
1789\r
1790 if ((Instance->Dhcp6Handle != NULL) || (Instance->Policy != Ip6ConfigPolicyAutomatic)) {\r
1791 //\r
1792 // The DHCP6 child is already created or the policy is no longer AUTOMATIC.\r
1793 //\r
1794 return ;\r
1795 }\r
1796\r
1797 Ip6ConfigStartStatefulAutoConfig (Instance, Instance->OtherInfoOnly);\r
1798}\r
1799\r
1800/**\r
1801 Set the configuration for the EFI IPv6 network stack running on the communication\r
1802 device this EFI IPv6 Configuration Protocol instance manages.\r
1803\r
1804 This function is used to set the configuration data of type DataType for the EFI\r
1805 IPv6 network stack that is running on the communication device that this EFI IPv6\r
1806 Configuration Protocol instance manages.\r
1807\r
1808 DataSize is used to calculate the count of structure instances in the Data for\r
1809 a DataType in which multiple structure instances are allowed.\r
1810\r
1811 This function is always non-blocking. When setting some type of configuration data,\r
1812 an asynchronous process is invoked to check the correctness of the data, such as\r
1813 performing Duplicate Address Detection on the manually set local IPv6 addresses.\r
1814 EFI_NOT_READY is returned immediately to indicate that such an asynchronous process\r
1815 is invoked, and the process is not finished yet. The caller wanting to get the result\r
1816 of the asynchronous process is required to call RegisterDataNotify() to register an\r
1817 event on the specified configuration data. Once the event is signaled, the caller\r
1818 can call GetData() to obtain the configuration data and know the result.\r
1819 For other types of configuration data that do not require an asynchronous configuration\r
1820 process, the result of the operation is immediately returned.\r
1821\r
1822 @param[in] This The pointer to the EFI_IP6_CONFIG_PROTOCOL instance.\r
1823 @param[in] DataType The type of data to set.\r
1824 @param[in] DataSize Size of the buffer pointed to by Data in bytes.\r
1825 @param[in] Data The data buffer to set. The type of the data buffer is\r
1826 associated with the DataType.\r
1827\r
1828 @retval EFI_SUCCESS The specified configuration data for the EFI IPv6\r
1829 network stack was set successfully.\r
1830 @retval EFI_INVALID_PARAMETER One or more of the following are TRUE:\r
1831 - This is NULL.\r
1832 - Data is NULL.\r
1833 - One or more fields in Data do not match the requirement of the\r
1834 data type indicated by DataType.\r
1835 @retval EFI_WRITE_PROTECTED The specified configuration data is read-only or the specified\r
1836 configuration data cannot be set under the current policy.\r
1837 @retval EFI_ACCESS_DENIED Another set operation on the specified configuration\r
1838 data is already in process.\r
1839 @retval EFI_NOT_READY An asynchronous process was invoked to set the specified\r
1840 configuration data, and the process is not finished yet.\r
1841 @retval EFI_BAD_BUFFER_SIZE The DataSize does not match the size of the type\r
1842 indicated by DataType.\r
1843 @retval EFI_UNSUPPORTED This DataType is not supported.\r
1844 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.\r
1845 @retval EFI_DEVICE_ERROR An unexpected system error or network error occurred.\r
1846\r
1847**/\r
1848EFI_STATUS\r
1849EFIAPI\r
1850EfiIp6ConfigSetData (\r
1851 IN EFI_IP6_CONFIG_PROTOCOL *This,\r
1852 IN EFI_IP6_CONFIG_DATA_TYPE DataType,\r
1853 IN UINTN DataSize,\r
1854 IN VOID *Data\r
1855 )\r
1856{\r
1857 EFI_TPL OldTpl;\r
1858 EFI_STATUS Status;\r
1859 IP6_CONFIG_INSTANCE *Instance;\r
1860 IP6_SERVICE *IpSb;\r
1861\r
1862 if ((This == NULL) || (Data == NULL)) {\r
1863 return EFI_INVALID_PARAMETER;\r
1864 }\r
1865\r
1866 if (DataType >= Ip6ConfigDataTypeMaximum) {\r
1867 return EFI_UNSUPPORTED;\r
1868 }\r
1869\r
1870 Instance = IP6_CONFIG_INSTANCE_FROM_PROTOCOL (This);\r
1871 IpSb = IP6_SERVICE_FROM_IP6_CONFIG_INSTANCE (Instance);\r
1872 NET_CHECK_SIGNATURE (IpSb, IP6_SERVICE_SIGNATURE);\r
1873\r
1874 if (IpSb->LinkLocalDadFail) {\r
1875 return EFI_DEVICE_ERROR;\r
1876 }\r
1877\r
1878 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);\r
1879\r
1880 Status = Instance->DataItem[DataType].Status;\r
1881 if (Status != EFI_NOT_READY) {\r
1882\r
1883 if (Instance->DataItem[DataType].SetData == NULL) {\r
1884 //\r
1885 // This type of data is readonly.\r
1886 //\r
1887 Status = EFI_WRITE_PROTECTED;\r
1888 } else {\r
1889\r
1890 Status = Instance->DataItem[DataType].SetData (Instance, DataSize, Data);\r
1891 if (!EFI_ERROR (Status)) {\r
1892 //\r
1893 // Fire up the events registered with this type of data.\r
1894 //\r
1895 NetMapIterate (&Instance->DataItem[DataType].EventMap, Ip6ConfigSignalEvent, NULL);\r
1896 Ip6ConfigWriteConfigData (IpSb->MacString, Instance);\r
1897 } else if (Status == EFI_ABORTED) {\r
1898 //\r
1899 // The SetData is aborted because the data to set is the same with\r
1900 // the one maintained.\r
1901 //\r
1902 Status = EFI_SUCCESS;\r
1903 NetMapIterate (&Instance->DataItem[DataType].EventMap, Ip6ConfigSignalEvent, NULL);\r
1904 }\r
1905 }\r
1906 } else {\r
1907 //\r
1908 // Another asynchornous process is on the way.\r
1909 //\r
1910 Status = EFI_ACCESS_DENIED;\r
1911 }\r
1912\r
1913 gBS->RestoreTPL (OldTpl);\r
1914\r
1915 return Status;\r
1916}\r
1917\r
1918/**\r
1919 Get the configuration data for the EFI IPv6 network stack running on the communication\r
1920 device that this EFI IPv6 Configuration Protocol instance manages.\r
1921\r
1922 This function returns the configuration data of type DataType for the EFI IPv6 network\r
1923 stack running on the communication device that this EFI IPv6 Configuration Protocol instance\r
1924 manages.\r
1925\r
1926 The caller is responsible for allocating the buffer used to return the specified\r
1927 configuration data. The required size will be returned to the caller if the size of\r
1928 the buffer is too small.\r
1929\r
1930 EFI_NOT_READY is returned if the specified configuration data is not ready due to an\r
1931 asynchronous configuration process already in progress. The caller can call RegisterDataNotify()\r
1932 to register an event on the specified configuration data. Once the asynchronous configuration\r
1933 process is finished, the event will be signaled, and a subsequent GetData() call will return\r
1934 the specified configuration data.\r
1935\r
1936 @param[in] This Pointer to the EFI_IP6_CONFIG_PROTOCOL instance.\r
1937 @param[in] DataType The type of data to get.\r
1938 @param[in, out] DataSize On input, in bytes, the size of Data. On output, in bytes, the\r
1939 size of buffer required to store the specified configuration data.\r
1940 @param[in] Data The data buffer in which the configuration data is returned. The\r
1941 type of the data buffer is associated with the DataType.\r
1942 This is an optional parameter that may be NULL.\r
1943\r
1944 @retval EFI_SUCCESS The specified configuration data was obtained successfully.\r
1945 @retval EFI_INVALID_PARAMETER One or more of the followings are TRUE:\r
1946 - This is NULL.\r
1947 - DataSize is NULL.\r
1948 - Data is NULL if *DataSize is not zero.\r
1949 @retval EFI_BUFFER_TOO_SMALL The size of Data is too small for the specified configuration data,\r
1950 and the required size is returned in DataSize.\r
1951 @retval EFI_NOT_READY The specified configuration data is not ready due to an\r
1952 asynchronous configuration process already in progress.\r
1953 @retval EFI_NOT_FOUND The specified configuration data is not found.\r
1954\r
1955**/\r
1956EFI_STATUS\r
1957EFIAPI\r
1958EfiIp6ConfigGetData (\r
1959 IN EFI_IP6_CONFIG_PROTOCOL *This,\r
1960 IN EFI_IP6_CONFIG_DATA_TYPE DataType,\r
1961 IN OUT UINTN *DataSize,\r
1962 IN VOID *Data OPTIONAL\r
1963 )\r
1964{\r
1965 EFI_TPL OldTpl;\r
1966 EFI_STATUS Status;\r
1967 IP6_CONFIG_INSTANCE *Instance;\r
1968 IP6_CONFIG_DATA_ITEM *DataItem;\r
1969\r
1970 if ((This == NULL) || (DataSize == NULL) || ((*DataSize != 0) && (Data == NULL))) {\r
1971 return EFI_INVALID_PARAMETER;\r
1972 }\r
1973\r
1974 if (DataType >= Ip6ConfigDataTypeMaximum) {\r
1975 return EFI_NOT_FOUND;\r
1976 }\r
1977\r
1978 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);\r
1979\r
1980 Instance = IP6_CONFIG_INSTANCE_FROM_PROTOCOL (This);\r
1981 DataItem = &Instance->DataItem[DataType];\r
1982\r
1983 Status = Instance->DataItem[DataType].Status;\r
1984 if (!EFI_ERROR (Status)) {\r
1985\r
1986 if (DataItem->GetData != NULL) {\r
1987\r
1988 Status = DataItem->GetData (Instance, DataSize, Data);\r
1989 } else if (*DataSize < Instance->DataItem[DataType].DataSize) {\r
1990 //\r
1991 // Update the buffer length.\r
1992 //\r
1993 *DataSize = Instance->DataItem[DataType].DataSize;\r
1994 Status = EFI_BUFFER_TOO_SMALL;\r
1995 } else {\r
1996\r
1997 *DataSize = Instance->DataItem[DataType].DataSize;\r
1998 CopyMem (Data, Instance->DataItem[DataType].Data.Ptr, *DataSize);\r
1999 }\r
2000 }\r
2001\r
2002 gBS->RestoreTPL (OldTpl);\r
2003\r
2004 return Status;\r
2005}\r
2006\r
2007/**\r
2008 Register an event that is signaled whenever a configuration process on the specified\r
2009 configuration data is done.\r
2010\r
2011 This function registers an event that is to be signaled whenever a configuration\r
2012 process on the specified configuration data is performed. An event can be registered\r
2013 for a different DataType simultaneously. The caller is responsible for determining\r
2014 which type of configuration data causes the signaling of the event in such an event.\r
2015\r
2016 @param[in] This Pointer to the EFI_IP6_CONFIG_PROTOCOL instance.\r
2017 @param[in] DataType The type of data to unregister the event for.\r
2018 @param[in] Event The event to register.\r
2019\r
2020 @retval EFI_SUCCESS The notification event for the specified configuration data is\r
2021 registered.\r
2022 @retval EFI_INVALID_PARAMETER This is NULL or Event is NULL.\r
2023 @retval EFI_UNSUPPORTED The configuration data type specified by DataType is not\r
2024 supported.\r
2025 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.\r
2026 @retval EFI_ACCESS_DENIED The Event is already registered for the DataType.\r
2027\r
2028**/\r
2029EFI_STATUS\r
2030EFIAPI\r
2031EfiIp6ConfigRegisterDataNotify (\r
2032 IN EFI_IP6_CONFIG_PROTOCOL *This,\r
2033 IN EFI_IP6_CONFIG_DATA_TYPE DataType,\r
2034 IN EFI_EVENT Event\r
2035 )\r
2036{\r
2037 EFI_TPL OldTpl;\r
2038 EFI_STATUS Status;\r
2039 IP6_CONFIG_INSTANCE *Instance;\r
2040 NET_MAP *EventMap;\r
2041 NET_MAP_ITEM *Item;\r
2042\r
2043 if ((This == NULL) || (Event == NULL)) {\r
2044 return EFI_INVALID_PARAMETER;\r
2045 }\r
2046\r
2047 if (DataType >= Ip6ConfigDataTypeMaximum) {\r
2048 return EFI_UNSUPPORTED;\r
2049 }\r
2050\r
2051 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);\r
2052\r
2053 Instance = IP6_CONFIG_INSTANCE_FROM_PROTOCOL (This);\r
2054 EventMap = &Instance->DataItem[DataType].EventMap;\r
2055\r
2056 //\r
2057 // Check whether this event is already registered for this DataType.\r
2058 //\r
2059 Item = NetMapFindKey (EventMap, Event);\r
2060 if (Item == NULL) {\r
2061\r
2062 Status = NetMapInsertTail (EventMap, Event, NULL);\r
2063\r
2064 if (EFI_ERROR (Status)) {\r
2065\r
2066 Status = EFI_OUT_OF_RESOURCES;\r
2067 }\r
2068\r
2069 } else {\r
2070\r
2071 Status = EFI_ACCESS_DENIED;\r
2072 }\r
2073\r
2074 gBS->RestoreTPL (OldTpl);\r
2075\r
2076 return Status;\r
2077}\r
2078\r
2079/**\r
2080 Remove a previously registered event for the specified configuration data.\r
2081\r
2082 @param This The pointer to the EFI_IP6_CONFIG_PROTOCOL instance.\r
2083 @param DataType The type of data to remove from the previously\r
2084 registered event.\r
2085 @param Event The event to be unregistered.\r
2086\r
2087 @retval EFI_SUCCESS The event registered for the specified\r
2088 configuration data was removed.\r
2089 @retval EFI_INVALID_PARAMETER This is NULL or Event is NULL.\r
2090 @retval EFI_NOT_FOUND The Event has not been registered for the\r
2091 specified DataType.\r
2092\r
2093**/\r
2094EFI_STATUS\r
2095EFIAPI\r
2096EfiIp6ConfigUnregisterDataNotify (\r
2097 IN EFI_IP6_CONFIG_PROTOCOL *This,\r
2098 IN EFI_IP6_CONFIG_DATA_TYPE DataType,\r
2099 IN EFI_EVENT Event\r
2100 )\r
2101{\r
2102 EFI_TPL OldTpl;\r
2103 EFI_STATUS Status;\r
2104 IP6_CONFIG_INSTANCE *Instance;\r
2105 NET_MAP_ITEM *Item;\r
2106\r
2107 if ((This == NULL) || (Event == NULL)) {\r
2108 return EFI_INVALID_PARAMETER;\r
2109 }\r
2110\r
2111 if (DataType >= Ip6ConfigDataTypeMaximum) {\r
2112 return EFI_NOT_FOUND;\r
2113 }\r
2114\r
2115 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);\r
2116\r
2117 Instance = IP6_CONFIG_INSTANCE_FROM_PROTOCOL (This);\r
2118\r
2119 Item = NetMapFindKey (&Instance->DataItem[DataType].EventMap, Event);\r
2120 if (Item != NULL) {\r
2121\r
2122 NetMapRemoveItem (&Instance->DataItem[DataType].EventMap, Item, NULL);\r
2123 Status = EFI_SUCCESS;\r
2124 } else {\r
2125\r
2126 Status = EFI_NOT_FOUND;\r
2127 }\r
2128\r
2129 gBS->RestoreTPL (OldTpl);\r
2130\r
2131 return Status;\r
2132}\r
2133\r
2134/**\r
2135 Initialize an IP6_CONFIG_INSTANCE.\r
2136\r
2137 @param[out] Instance The buffer of IP6_CONFIG_INSTANCE to be initialized.\r
2138\r
2139 @retval EFI_OUT_OF_RESOURCES Failed to allocate resources to complete the operation.\r
2140 @retval EFI_SUCCESS The IP6_CONFIG_INSTANCE initialized successfully.\r
2141\r
2142**/\r
2143EFI_STATUS\r
2144Ip6ConfigInitInstance (\r
2145 OUT IP6_CONFIG_INSTANCE *Instance\r
2146 )\r
2147{\r
2148 IP6_SERVICE *IpSb;\r
2149 IP6_CONFIG_INSTANCE *TmpInstance;\r
2150 LIST_ENTRY *Entry;\r
2151 EFI_STATUS Status;\r
2152 UINTN Index;\r
2153 UINT16 IfIndex;\r
2154 IP6_CONFIG_DATA_ITEM *DataItem;\r
2155\r
2156 IpSb = IP6_SERVICE_FROM_IP6_CONFIG_INSTANCE (Instance);\r
2157\r
2158 Instance->Signature = IP6_CONFIG_INSTANCE_SIGNATURE;\r
2159\r
2160 //\r
2161 // Determine the index of this interface.\r
2162 //\r
2163 IfIndex = 0;\r
2164 NET_LIST_FOR_EACH (Entry, &mIp6ConfigInstanceList) {\r
2165 TmpInstance = NET_LIST_USER_STRUCT_S (Entry, IP6_CONFIG_INSTANCE, Link, IP6_CONFIG_INSTANCE_SIGNATURE);\r
2166\r
2167 if (TmpInstance->IfIndex > IfIndex) {\r
2168 //\r
2169 // There is a sequence hole because some interface is down.\r
2170 //\r
2171 break;\r
2172 }\r
2173\r
2174 IfIndex++;\r
2175 }\r
2176\r
2177 Instance->IfIndex = IfIndex;\r
2178 NetListInsertBefore (Entry, &Instance->Link);\r
2179\r
2180 for (Index = 0; Index < Ip6ConfigDataTypeMaximum; Index++) {\r
2181 //\r
2182 // Initialize the event map for each data item.\r
2183 //\r
2184 NetMapInit (&Instance->DataItem[Index].EventMap);\r
2185 }\r
2186\r
2187 //\r
2188 // Initialize the NET_MAPs used for DAD on manually configured source addresses.\r
2189 //\r
2190 NetMapInit (&Instance->DadFailedMap);\r
2191 NetMapInit (&Instance->DadPassedMap);\r
2192\r
2193 //\r
2194 // Initialize each data type: associate storage and set data size for the\r
2195 // fixed size data types, hook the SetData function, set the data attribute.\r
2196 //\r
2197 DataItem = &Instance->DataItem[Ip6ConfigDataTypeInterfaceInfo];\r
2198 DataItem->GetData = Ip6ConfigGetIfInfo;\r
2199 DataItem->Data.Ptr = &Instance->InterfaceInfo;\r
2200 DataItem->DataSize = sizeof (Instance->InterfaceInfo);\r
2201 SET_DATA_ATTRIB (DataItem->Attribute, DATA_ATTRIB_SIZE_FIXED | DATA_ATTRIB_VOLATILE);\r
2202 Ip6ConfigInitIfInfo (IpSb, &Instance->InterfaceInfo);\r
2203\r
2204 DataItem = &Instance->DataItem[Ip6ConfigDataTypeAltInterfaceId];\r
2205 DataItem->SetData = Ip6ConfigSetAltIfId;\r
2206 DataItem->Data.Ptr = &Instance->AltIfId;\r
2207 DataItem->DataSize = sizeof (Instance->AltIfId);\r
2208 DataItem->Status = EFI_NOT_FOUND;\r
2209 SET_DATA_ATTRIB (DataItem->Attribute, DATA_ATTRIB_SIZE_FIXED);\r
2210\r
2211 DataItem = &Instance->DataItem[Ip6ConfigDataTypePolicy];\r
2212 DataItem->SetData = Ip6ConfigSetPolicy;\r
2213 DataItem->Data.Ptr = &Instance->Policy;\r
2214 DataItem->DataSize = sizeof (Instance->Policy);\r
4720106b 2215 Instance->Policy = Ip6ConfigPolicyManual;\r
a3bcde70
HT
2216 SET_DATA_ATTRIB (DataItem->Attribute, DATA_ATTRIB_SIZE_FIXED);\r
2217\r
2218 DataItem = &Instance->DataItem[Ip6ConfigDataTypeDupAddrDetectTransmits];\r
2219 DataItem->SetData = Ip6ConfigSetDadXmits;\r
2220 DataItem->Data.Ptr = &Instance->DadXmits;\r
2221 DataItem->DataSize = sizeof (Instance->DadXmits);\r
2222 Instance->DadXmits.DupAddrDetectTransmits = IP6_CONFIG_DEFAULT_DAD_XMITS;\r
2223 SET_DATA_ATTRIB (DataItem->Attribute, DATA_ATTRIB_SIZE_FIXED);\r
2224\r
2225 DataItem = &Instance->DataItem[Ip6ConfigDataTypeManualAddress];\r
2226 DataItem->SetData = Ip6ConfigSetMaunualAddress;\r
2227 DataItem->Status = EFI_NOT_FOUND;\r
2228\r
2229 DataItem = &Instance->DataItem[Ip6ConfigDataTypeGateway];\r
2230 DataItem->SetData = Ip6ConfigSetGateway;\r
2231 DataItem->Status = EFI_NOT_FOUND;\r
2232\r
2233 DataItem = &Instance->DataItem[Ip6ConfigDataTypeDnsServer];\r
2234 DataItem->SetData = Ip6ConfigSetDnsServer;\r
2235 DataItem->Status = EFI_NOT_FOUND;\r
2236\r
2237 //\r
2238 // Create the event used for DHCP.\r
2239 //\r
2240 Status = gBS->CreateEvent (\r
2241 EVT_NOTIFY_SIGNAL,\r
2242 TPL_CALLBACK,\r
2243 Ip6ConfigOnDhcp6Event,\r
2244 Instance,\r
2245 &Instance->Dhcp6Event\r
2246 );\r
2247 ASSERT_EFI_ERROR (Status);\r
2248\r
2249 Instance->Configured = TRUE;\r
2250\r
2251 //\r
2252 // Try to read the config data from NV variable.\r
2253 //\r
2254 Status = Ip6ConfigReadConfigData (IpSb->MacString, Instance);\r
2255 if (Status == EFI_NOT_FOUND) {\r
2256 //\r
2257 // The NV variable is not set, so generate a random IAID, and write down the\r
2258 // fresh new configuration as the NV variable now.\r
2259 //\r
2260 Instance->IaId = NET_RANDOM (NetRandomInitSeed ());\r
2261\r
2262 for (Index = 0; Index < IpSb->SnpMode.HwAddressSize; Index++) {\r
2263 Instance->IaId |= (IpSb->SnpMode.CurrentAddress.Addr[Index] << ((Index << 3) & 31));\r
2264 }\r
2265\r
2266 Ip6ConfigWriteConfigData (IpSb->MacString, Instance);\r
2267 } else if (EFI_ERROR (Status)) {\r
2268 return Status;\r
2269 }\r
2270\r
2271 Instance->Ip6Config.SetData = EfiIp6ConfigSetData;\r
2272 Instance->Ip6Config.GetData = EfiIp6ConfigGetData;\r
2273 Instance->Ip6Config.RegisterDataNotify = EfiIp6ConfigRegisterDataNotify;\r
2274 Instance->Ip6Config.UnregisterDataNotify = EfiIp6ConfigUnregisterDataNotify;\r
2275\r
2276\r
2277 //\r
2278 // Publish the IP6 configuration form\r
2279 //\r
2280 return Ip6ConfigFormInit (Instance);\r
2281}\r
2282\r
2283/**\r
2284 Release an IP6_CONFIG_INSTANCE.\r
2285\r
2286 @param[in, out] Instance The buffer of IP6_CONFIG_INSTANCE to be freed.\r
2287\r
2288**/\r
2289VOID\r
2290Ip6ConfigCleanInstance (\r
2291 IN OUT IP6_CONFIG_INSTANCE *Instance\r
2292 )\r
2293{\r
2294 UINTN Index;\r
2295 IP6_CONFIG_DATA_ITEM *DataItem;\r
2296\r
2297 if (Instance->DeclineAddress != NULL) {\r
2298 FreePool (Instance->DeclineAddress);\r
2299 }\r
2300\r
2301 if (!Instance->Configured) {\r
2302 return ;\r
2303 }\r
2304\r
2305 if (Instance->Dhcp6Handle != NULL) {\r
2306\r
2307 Ip6ConfigDestroyDhcp6 (Instance);\r
2308 }\r
2309\r
2310 //\r
2311 // Close the event.\r
2312 //\r
2313 if (Instance->Dhcp6Event != NULL) {\r
2314 gBS->CloseEvent (Instance->Dhcp6Event);\r
2315 }\r
2316\r
2317 NetMapClean (&Instance->DadPassedMap);\r
2318 NetMapClean (&Instance->DadFailedMap);\r
2319\r
2320 for (Index = 0; Index < Ip6ConfigDataTypeMaximum; Index++) {\r
2321\r
2322 DataItem = &Instance->DataItem[Index];\r
2323\r
2324 if (!DATA_ATTRIB_SET (DataItem->Attribute, DATA_ATTRIB_SIZE_FIXED)) {\r
2325 if (DataItem->Data.Ptr != NULL) {\r
2326 FreePool (DataItem->Data.Ptr);\r
2327 }\r
2328 DataItem->Data.Ptr = NULL;\r
2329 DataItem->DataSize = 0;\r
2330 }\r
2331\r
2332 NetMapClean (&Instance->DataItem[Index].EventMap);\r
2333 }\r
2334\r
2335 Ip6ConfigFormUnload (Instance);\r
2336\r
2337 RemoveEntryList (&Instance->Link);\r
2338}\r
2339\r
2340/**\r
75dce340 2341 Destroy the Dhcp6 child in IP6_CONFIG_INSTANCE and release the resources.\r
a3bcde70
HT
2342\r
2343 @param[in, out] Instance The buffer of IP6_CONFIG_INSTANCE to be freed.\r
2344\r
2345 @retval EFI_SUCCESS The child was successfully destroyed.\r
75dce340 2346 @retval Others Failed to destroy the child.\r
a3bcde70
HT
2347\r
2348**/\r
2349EFI_STATUS\r
2350Ip6ConfigDestroyDhcp6 (\r
2351 IN OUT IP6_CONFIG_INSTANCE *Instance\r
2352 )\r
2353{\r
2354 IP6_SERVICE *IpSb;\r
2355 EFI_STATUS Status;\r
2356 EFI_DHCP6_PROTOCOL *Dhcp6;\r
2357\r
2358 Dhcp6 = Instance->Dhcp6;\r
2359 ASSERT (Dhcp6 != NULL);\r
2360\r
2361 Dhcp6->Stop (Dhcp6);\r
2362 Dhcp6->Configure (Dhcp6, NULL);\r
2363 Instance->Dhcp6 = NULL;\r
2364\r
2365 IpSb = IP6_SERVICE_FROM_IP6_CONFIG_INSTANCE (Instance);\r
2366\r
2367 //\r
2368 // Close DHCPv6 protocol and destroy the child.\r
2369 //\r
2370 Status = gBS->CloseProtocol (\r
2371 Instance->Dhcp6Handle,\r
2372 &gEfiDhcp6ProtocolGuid,\r
2373 IpSb->Image,\r
2374 IpSb->Controller\r
2375 );\r
2376 if (EFI_ERROR (Status)) {\r
2377 return Status;\r
2378 }\r
2379\r
2380 Status = NetLibDestroyServiceChild (\r
2381 IpSb->Controller,\r
2382 IpSb->Image,\r
2383 &gEfiDhcp6ServiceBindingProtocolGuid,\r
2384 Instance->Dhcp6Handle\r
2385 );\r
2386\r
2387 Instance->Dhcp6Handle = NULL;\r
2388\r
2389 return Status;\r
2390}\r
2391\r