1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
|
/** @file
Functions in this file will program the image into flash area.
Copyright (c) 2002 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions
of the BSD License which accompanies this distribution. The
full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
**/
#include "UpdateDriver.h"
/**
Write a block size data into flash.
@param FvbProtocol Pointer to FVB protocol.
@param Lba Logic block index to be updated.
@param BlockSize Block size
@param Buffer Buffer data to be written.
@retval EFI_SUCCESS Write data successfully.
@retval other errors Write data failed.
**/
EFI_STATUS
UpdateOneBlock (
IN EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *FvbProtocol,
IN EFI_LBA Lba,
IN UINTN BlockSize,
IN UINT8 *Buffer
)
{
EFI_STATUS Status;
UINTN Size;
//
// First erase the block
//
Status = FvbProtocol->EraseBlocks (
FvbProtocol,
Lba, // Lba
1, // NumOfBlocks
EFI_LBA_LIST_TERMINATOR
);
if (EFI_ERROR (Status)) {
return Status;
}
//
// Write the block
//
Size = BlockSize;
Status = FvbProtocol->Write (
FvbProtocol,
Lba, // Lba
0, // Offset
&Size, // Size
Buffer // Buffer
);
if ((EFI_ERROR (Status)) || (Size != BlockSize)) {
return Status;
}
return EFI_SUCCESS;
}
/**
Write buffer data in a flash block.
@param FvbProtocol Pointer to FVB protocol.
@param Lba Logic block index to be updated.
@param Offset The offset within the block.
@param Length Size of buffer to be updated.
@param BlockSize Block size.
@param Buffer Buffer data to be updated.
@retval EFI_SUCCESS Write data successfully.
@retval other errors Write data failed.
**/
EFI_STATUS
UpdateBufferInOneBlock (
IN EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *FvbProtocol,
IN EFI_LBA Lba,
IN UINTN Offset,
IN UINTN Length,
IN UINTN BlockSize,
IN UINT8 *Buffer
)
{
EFI_STATUS Status;
UINTN Size;
UINT8 *ReservedBuffer;
//
// If we are going to update a whole block
//
if ((Offset == 0) && (Length == BlockSize)) {
Status = UpdateOneBlock (
FvbProtocol,
Lba,
BlockSize,
Buffer
);
return Status;
}
//
// If it is not a full block update, we need to coalesce data in
// the block that is not going to be updated and new data together.
//
//
// Allocate a reserved buffer to make up the final buffer for update
//
ReservedBuffer = NULL;
ReservedBuffer = AllocatePool (BlockSize);
if (ReservedBuffer == NULL) {
return EFI_OUT_OF_RESOURCES;
}
//
// First get the original content of the block
//
Size = BlockSize;
Status = FvbProtocol->Read (
FvbProtocol,
Lba,
0,
&Size,
ReservedBuffer
);
if ((EFI_ERROR (Status)) || (Size != BlockSize)) {
FreePool (ReservedBuffer);
return Status;
}
//
// Overwrite the reserved buffer with new content
//
CopyMem (ReservedBuffer + Offset, Buffer, Length);
Status = UpdateOneBlock (
FvbProtocol,
Lba,
BlockSize,
ReservedBuffer
);
FreePool (ReservedBuffer);
return Status;
}
/**
Get the last write log, and check the status of last write.
If not complete, restart will be taken.
@param FvbHandle Handle of FVB protocol.
@param FtwProtocol FTW protocol instance.
@param ConfigData Config data on updating driver.
@param PrivateDataSize bytes from the private data
stored for this write.
@param PrivateData A pointer to a buffer. The function will copy.
@param Lba The logical block address of the last write.
@param Offset The offset within the block of the last write.
@param Length The length of the last write.
@param Pending A Boolean value with TRUE indicating
that the write was completed.
@retval EFI_OUT_OF_RESOURCES No enough memory is allocated.
@retval EFI_ABORTED The FTW work space is damaged.
@retval EFI_NOT_FOUND The last write is not done by this driver.
@retval EFI_SUCCESS Last write log is got.
**/
EFI_STATUS
RetrieveLastWrite (
IN EFI_HANDLE FvbHandle,
IN EFI_FAULT_TOLERANT_WRITE_PROTOCOL *FtwProtocol,
IN UPDATE_CONFIG_DATA *ConfigData,
IN UINTN PrivateDataSize,
IN OUT UPDATE_PRIVATE_DATA *PrivateData,
IN OUT EFI_LBA *Lba,
IN OUT UINTN *Offset,
IN OUT UINTN *Length,
IN OUT BOOLEAN *Pending
)
{
EFI_STATUS Status;
EFI_GUID CallerId;
UINTN PrivateBufferSize;
BOOLEAN Complete;
VOID *PrivateDataBuffer;
//
// Get the last write
//
*Pending = FALSE;
PrivateBufferSize = PrivateDataSize;
PrivateDataBuffer = NULL;
Status = FtwProtocol->GetLastWrite (
FtwProtocol,
&CallerId,
Lba,
Offset,
Length,
&PrivateBufferSize,
PrivateData,
&Complete
);
if (EFI_ERROR (Status)) {
//
// If there is no incompleted record, return success.
//
if ((Status == EFI_NOT_FOUND) && Complete) {
return EFI_SUCCESS;
} else if (Status == EFI_BUFFER_TOO_SMALL) {
//
// If buffer too small, reallocate buffer and call getlastwrite again
//
PrivateDataBuffer = AllocatePool (PrivateBufferSize);
if (PrivateDataBuffer == NULL) {
return EFI_OUT_OF_RESOURCES;
}
Status = FtwProtocol->GetLastWrite (
FtwProtocol,
&CallerId,
Lba,
Offset,
Length,
&PrivateBufferSize,
PrivateDataBuffer,
&Complete
);
if (EFI_ERROR (Status)) {
FreePool ( PrivateDataBuffer);
return EFI_ABORTED;
} else {
CopyMem (PrivateData, PrivateDataBuffer, PrivateDataSize);
FreePool (PrivateDataBuffer);
PrivateDataBuffer = NULL;
}
} else {
return EFI_ABORTED;
}
}
*Pending = TRUE;
//
// If the caller is not the update driver, then return.
// The update driver cannot continue to perform the update
//
if (CompareMem (&CallerId, &gEfiCallerIdGuid, sizeof (EFI_GUID)) != 0) {
return EFI_NOT_FOUND;
}
//
// Check the private data and see if it is the one I need.
//
if (CompareMem (&(PrivateData->FileGuid), &(ConfigData->FileGuid), sizeof(EFI_GUID)) != 0) {
return EFI_NOT_FOUND;
}
//
// If the caller is the update driver and complete is not true, then restart().
//
if (!Complete) {
//
// Re-start the update
//
Status = FtwProtocol->Restart (
FtwProtocol,
FvbHandle
);
//
// If restart() error, then abort().
//
if (EFI_ERROR (Status)) {
FtwProtocol->Abort (FtwProtocol);
//
// Now set Pending as FALSE as this record has been cleared
//
*Pending = FALSE;
return EFI_SUCCESS;
}
}
return Status;
}
/**
Update the whole FV image in fault tolerant write method.
@param FvbHandle Handle of FVB protocol for the updated flash range.
@param FvbProtocol FVB protocol.
@param BlockMap Block array to specify flash area.
@param ConfigData Config data on updating driver.
@param ImageBuffer Image buffer to be updated.
@param ImageSize Image size.
@retval EFI_SUCCESS FV image is writed into flash.
@retval EFI_INVALID_PARAMETER Config data is not valid.
@retval EFI_NOT_FOUND FTW protocol doesn't exist.
@retval EFI_OUT_OF_RESOURCES No enough backup space.
@retval EFI_ABORTED Error happen when update FV.
**/
EFI_STATUS
FaultTolerantUpdateOnWholeFv (
IN EFI_HANDLE FvbHandle,
IN EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *FvbProtocol,
IN EFI_FV_BLOCK_MAP_ENTRY *BlockMap,
IN UPDATE_CONFIG_DATA *ConfigData,
IN UINT8 *ImageBuffer,
IN UINTN ImageSize
)
{
EFI_STATUS Status;
EFI_FAULT_TOLERANT_WRITE_PROTOCOL *FtwProtocol;
UINTN MaxBlockSize;
UINTN FtwMaxBlockSize;
BOOLEAN Pending;
UPDATE_PRIVATE_DATA PrivateData;
EFI_LBA PendingLba;
EFI_LBA Lba;
UINTN PendingOffset;
UINTN Offset;
UINTN PendingLength;
UINTN Length;
EFI_FV_BLOCK_MAP_ENTRY *PtrMap;
UINTN NumOfBlocks;
UINTN Index;
UINT8 *UpdateBuffer;
if ((ConfigData->UpdateType != UpdateWholeFV)
|| (!ConfigData->FaultTolerant)) {
return EFI_INVALID_PARAMETER;
}
//
// Get the FTW protocol
//
Status = gBS->LocateProtocol (
&gEfiFaultTolerantWriteProtocolGuid,
NULL,
(VOID **) &FtwProtocol
);
if (EFI_ERROR (Status)) {
return EFI_NOT_FOUND;
}
//
// Get the maximum block size of the FV, and number of blocks
// NumOfBlocks will be the NumOfUdpates.
//
MaxBlockSize = 0;
NumOfBlocks = 0;
PtrMap = BlockMap;
while (TRUE) {
if ((PtrMap->NumBlocks == 0) || (PtrMap->Length == 0)) {
break;
}
if (MaxBlockSize < PtrMap->Length) {
MaxBlockSize = PtrMap->Length;
}
NumOfBlocks = NumOfBlocks + PtrMap->NumBlocks;
PtrMap++;
}
FtwProtocol->GetMaxBlockSize (FtwProtocol, &FtwMaxBlockSize);
//
// Not enough backup space. return directly
//
if (FtwMaxBlockSize < MaxBlockSize) {
return EFI_OUT_OF_RESOURCES;
}
PendingLba = 0;
PendingOffset = 0;
PendingLength = 0;
Pending = FALSE;
//
// Fault Tolerant Write can only support actual fault tolerance if the write
// is a reclaim operation, which means the data buffer (new and old) are
// acutally both stored in flash. But for component update write, the data
// are now in memory. So we cannot actually recover the data after power
// failure.
//
Status = RetrieveLastWrite (
FvbHandle,
FtwProtocol,
ConfigData,
sizeof (UPDATE_PRIVATE_DATA),
&PrivateData,
&PendingLba,
&PendingOffset,
&PendingLength,
&Pending
);
if (Pending && (Status == EFI_NOT_FOUND)) {
//
// Cannot continue with the write operation
//
return EFI_ABORTED;
}
if (EFI_ERROR(Status)) {
return EFI_ABORTED;
}
//
// Currently we start from the pending write if there is any. But as we
// are going to update a whole FV, we can just abort last write and start
// from the very begining.
//
if (!Pending) {
//
// Now allocte the update private data in FTW. If there is pending
// write, it has already been allocated and no need to allocate here.
//
Status = FtwProtocol->Allocate (
FtwProtocol,
&gEfiCallerIdGuid,
sizeof (UPDATE_PRIVATE_DATA),
NumOfBlocks
);
if (EFI_ERROR (Status)) {
return Status;
}
}
//
// Perform the update now. If there are pending writes, we need to
// start from the pending write instead of the very beginning.
//
PtrMap = BlockMap;
Lba = 0;
Offset = 0;
UpdateBuffer = ImageBuffer;
CopyMem (
(VOID *) &PrivateData.FileGuid,
(VOID *) &ConfigData->FileGuid,
sizeof (EFI_GUID)
);
while (TRUE) {
if ((PtrMap->NumBlocks == 0) || (PtrMap->Length == 0)) {
break;
}
Length = (UINTN)PtrMap->Length;
for (Index = 0; Index < PtrMap->NumBlocks; Index++) {
//
// Add an extra check here to see if the pending record is correct
//
if (Pending && (Lba == PendingLba)) {
if ((PendingOffset != Offset) || (PendingLength != Length)) {
//
// Error.
//
Status = EFI_ABORTED;
break;
}
}
if ((!Pending) || (Lba >= PendingLba)) {
Status = FtwProtocol->Write (
FtwProtocol,
Lba, // Lba
Offset, // Offset
Length, // Size
&PrivateData, // Private Data
FvbHandle, // FVB handle
UpdateBuffer // Buffer
);
}
if (EFI_ERROR (Status)) {
break;
}
Lba++;
UpdateBuffer = (UINT8 *) ((UINTN)UpdateBuffer + Length);
}
if (EFI_ERROR (Status)) {
break;
}
PtrMap++;
}
return Status;
}
/**
Directly update the whole FV image without fault tolerant write method.
@param FvbHandle Handle of FVB protocol for the updated flash range.
@param FvbProtocol FVB protocol.
@param BlockMap Block array to specify flash area.
@param ConfigData Config data on updating driver.
@param ImageBuffer Image buffer to be updated.
@param ImageSize Image size.
@retval EFI_SUCCESS FV image is writed into flash.
@retval EFI_INVALID_PARAMETER Config data is not valid.
@retval EFI_ABORTED Error happen when update FV.
**/
EFI_STATUS
NonFaultTolerantUpdateOnWholeFv (
IN EFI_HANDLE FvbHandle,
IN EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *FvbProtocol,
IN EFI_FV_BLOCK_MAP_ENTRY *BlockMap,
IN UPDATE_CONFIG_DATA *ConfigData,
IN UINT8 *ImageBuffer,
IN UINTN ImageSize
)
{
EFI_STATUS Status;
EFI_FV_BLOCK_MAP_ENTRY *PtrMap;
UINTN Index;
EFI_LBA UpdateLba;
UINT8 *UpdateBuffer;
UINTN UpdateSize;
if ((ConfigData->UpdateType != UpdateWholeFV )
|| (ConfigData->FaultTolerant)) {
return EFI_INVALID_PARAMETER;
}
Status = EFI_SUCCESS;
PtrMap = BlockMap;
UpdateLba = 0;
UpdateBuffer = ImageBuffer;
//
// Perform the update now
//
while (TRUE) {
if ((PtrMap->NumBlocks == 0) || (PtrMap->Length == 0)) {
break;
}
UpdateSize = (UINTN)PtrMap->Length;
for (Index = 0; Index < PtrMap->NumBlocks; Index++) {
Status = UpdateOneBlock (
FvbProtocol,
UpdateLba,
UpdateSize,
UpdateBuffer
);
if (EFI_ERROR (Status)) {
break;
}
UpdateLba++;
UpdateBuffer = (UINT8 *) ((UINTN)UpdateBuffer + UpdateSize);
}
if (EFI_ERROR (Status)) {
break;
}
PtrMap++;
}
return Status;
}
/**
Update the whole FV image, and reinsall FVB protocol for the updated FV image.
@param FvbHandle Handle of FVB protocol for the updated flash range.
@param FvbProtocol FVB protocol.
@param ConfigData Config data on updating driver.
@param ImageBuffer Image buffer to be updated.
@param ImageSize Image size.
@retval EFI_INVALID_PARAMETER Update type is not UpdateWholeFV.
Or Image size is not same to the size of whole FV.
@retval EFI_OUT_OF_RESOURCES No enoug memory is allocated.
@retval EFI_SUCCESS FV image is updated, and its FVB protocol is reinstalled.
**/
EFI_STATUS
PerformUpdateOnWholeFv (
IN EFI_HANDLE FvbHandle,
IN EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *FvbProtocol,
IN UPDATE_CONFIG_DATA *ConfigData,
IN UINT8 *ImageBuffer,
IN UINTN ImageSize
)
{
EFI_STATUS Status;
EFI_FIRMWARE_VOLUME_HEADER *FwVolHeader;
EFI_FV_BLOCK_MAP_ENTRY *BlockMap;
CHAR16 *TmpStr;
if (ConfigData->UpdateType != UpdateWholeFV) {
return EFI_INVALID_PARAMETER;
}
//
// Get the header of the firmware volume
//
FwVolHeader = NULL;
FwVolHeader = AllocatePool (((EFI_FIRMWARE_VOLUME_HEADER *) ((UINTN) (ConfigData->BaseAddress)))->HeaderLength);
if (FwVolHeader == NULL) {
return EFI_OUT_OF_RESOURCES;
}
CopyMem (
FwVolHeader,
(VOID *) ((UINTN) (ConfigData->BaseAddress)),
((EFI_FIRMWARE_VOLUME_HEADER *) ((UINTN) (ConfigData->BaseAddress)))->HeaderLength
);
//
// Check if ImageSize is the same as the size of the whole FV
//
if ((UINT64)ImageSize != FwVolHeader->FvLength) {
FreePool (FwVolHeader);
return EFI_INVALID_PARAMETER;
}
//
// Print on screen
//
TmpStr = HiiGetString (gHiiHandle, STRING_TOKEN(UPDATE_FIRMWARE_VOLUME), NULL);
if (TmpStr != NULL) {
Print (TmpStr, ConfigData->BaseAddress, (FwVolHeader->FvLength + ConfigData->BaseAddress));
FreePool (TmpStr);
}
DEBUG ((EFI_D_UPDATE, "UpdateDriver: updating whole FV from %08LX to %08LX\n",
ConfigData->BaseAddress, (FwVolHeader->FvLength + ConfigData->BaseAddress)));
//
// Get the block map of the firmware volume
//
BlockMap = &(FwVolHeader->BlockMap[0]);
//
// It is about the same if we are going to fault tolerantly update
// a certain FV in our current design. But we divide non-fault tolerant
// and fault tolerant udpate here for better maintenance as fault
// tolerance may change and may be done more wisely if we have space.
//
if (ConfigData->FaultTolerant) {
Status = FaultTolerantUpdateOnWholeFv (
FvbHandle,
FvbProtocol,
BlockMap,
ConfigData,
ImageBuffer,
ImageSize
);
} else {
Status = NonFaultTolerantUpdateOnWholeFv (
FvbHandle,
FvbProtocol,
BlockMap,
ConfigData,
ImageBuffer,
ImageSize
);
}
FreePool (FwVolHeader);
if (EFI_ERROR (Status)) {
return Status;
}
//
// As the whole FV has been replaced, the FV driver shall re-parse the
// firmware volume. So re-install FVB protocol here
//
Status = gBS->ReinstallProtocolInterface (
FvbHandle,
&gEfiFirmwareVolumeBlockProtocolGuid,
FvbProtocol,
FvbProtocol
);
return Status;
}
/**
Update certain file in the FV.
@param FvbHandle Handle of FVB protocol for the updated flash range.
@param FvbProtocol FVB protocol.
@param ConfigData Config data on updating driver.
@param ImageBuffer Image buffer to be updated.
@param ImageSize Image size.
@param FileType FFS file type.
@param FileAttributes FFS file attribute
@retval EFI_INVALID_PARAMETER Update type is not UpdateFvFile.
Or Image size is not same to the size of whole FV.
@retval EFI_UNSUPPORTED PEIM FFS is unsupported to be updated.
@retval EFI_SUCCESS The FFS file is added into FV.
**/
EFI_STATUS
PerformUpdateOnFvFile (
IN EFI_HANDLE FvbHandle,
IN EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *FvbProtocol,
IN UPDATE_CONFIG_DATA *ConfigData,
IN UINT8 *ImageBuffer,
IN UINTN ImageSize,
IN EFI_FV_FILETYPE FileType,
IN EFI_FV_FILE_ATTRIBUTES FileAttributes
)
{
EFI_STATUS Status;
EFI_FIRMWARE_VOLUME2_PROTOCOL *FwVolProtocol;
EFI_FV_WRITE_FILE_DATA FileData;
CHAR16 *TmpStr;
if (ConfigData->UpdateType != UpdateFvFile) {
return EFI_INVALID_PARAMETER;
}
//
// Print on screen
//
TmpStr = HiiGetString (gHiiHandle, STRING_TOKEN(UPDATE_FIRMWARE_VOLUME_FILE), NULL);
if (TmpStr != NULL) {
Print (TmpStr, &(ConfigData->FileGuid));
FreePool (TmpStr);
}
DEBUG ((EFI_D_UPDATE, "UpdateDriver: updating file: %g\n",
&(ConfigData->FileGuid)));
//
// Get Firmware volume protocol on this FVB protocol
//
Status = gBS->HandleProtocol (
FvbHandle,
&gEfiFirmwareVolume2ProtocolGuid,
(VOID **) &FwVolProtocol
);
if (EFI_ERROR (Status)) {
return Status;
}
//
// If it is a PEIM, we need first to rebase it before committing
// the write to target
//
if ((FileType == EFI_FV_FILETYPE_PEI_CORE) || (FileType == EFI_FV_FILETYPE_PEIM )
|| (FileType == EFI_FV_FILETYPE_COMBINED_PEIM_DRIVER)) {
return EFI_UNSUPPORTED;
}
FileData.NameGuid = &(ConfigData->FileGuid);
FileData.Type = FileType;
FileData.FileAttributes = FileAttributes;
FileData.Buffer = ImageBuffer;
FileData.BufferSize = (UINT32) ImageSize;
Status = FwVolProtocol->WriteFile (
FwVolProtocol,
1, // NumberOfFiles
(EFI_FV_WRITE_POLICY)ConfigData->FaultTolerant,
&FileData
);
return Status;
}
/**
Update the buffer into flash area in fault tolerant write method.
@param ImageBuffer Image buffer to be updated.
@param SizeLeft Size of the image buffer.
@param UpdatedSize Size of the updated buffer.
@param ConfigData Config data on updating driver.
@param FlashAddress Flash address to be updated as start address.
@param FvbProtocol FVB protocol.
@param FvbHandle Handle of FVB protocol for the updated flash range.
@retval EFI_SUCCESS Buffer data is updated into flash.
@retval EFI_INVALID_PARAMETER Base flash address is not in FVB flash area.
@retval EFI_NOT_FOUND FTW protocol doesn't exist.
@retval EFI_OUT_OF_RESOURCES No enough backup space.
@retval EFI_ABORTED Error happen when update flash area.
**/
EFI_STATUS
FaultTolerantUpdateOnPartFv (
IN UINT8 *ImageBuffer,
IN UINTN SizeLeft,
IN OUT UINTN *UpdatedSize,
IN UPDATE_CONFIG_DATA *ConfigData,
IN EFI_PHYSICAL_ADDRESS FlashAddress,
IN EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *FvbProtocol,
IN EFI_HANDLE FvbHandle
)
{
EFI_STATUS Status;
EFI_FIRMWARE_VOLUME_HEADER *FwVolHeader;
EFI_FIRMWARE_VOLUME_HEADER *FwVolHeaderTmp;
EFI_PHYSICAL_ADDRESS BaseAddress;
EFI_PHYSICAL_ADDRESS FvBase;
EFI_PHYSICAL_ADDRESS NextBlock;
EFI_FV_BLOCK_MAP_ENTRY *BlockMap;
EFI_FV_BLOCK_MAP_ENTRY *PtrMap;
UINTN NumOfUpdates;
UINTN TotalSize;
EFI_PHYSICAL_ADDRESS StartAddress;
EFI_FAULT_TOLERANT_WRITE_PROTOCOL *FtwProtocol;
UINTN MaxBlockSize;
UINTN FtwMaxBlockSize;
BOOLEAN Pending;
UPDATE_PRIVATE_DATA PrivateData;
EFI_LBA PendingLba;
EFI_LBA Lba;
UINTN BlockSize;
UINTN PendingOffset;
UINTN Offset;
UINTN PendingLength;
UINTN Length;
UINTN Index;
UINT8 *Image;
//
// Get the block map to update the block one by one
//
Status = FvbProtocol->GetPhysicalAddress (
FvbProtocol,
&FvBase
);
if (EFI_ERROR (Status)) {
return Status;
}
FwVolHeaderTmp = (EFI_FIRMWARE_VOLUME_HEADER *)(UINTN)FvBase;
if ((FlashAddress < FvBase) || (FlashAddress > (FvBase + FwVolHeaderTmp->FvLength))) {
return EFI_INVALID_PARAMETER;
}
FwVolHeader = (EFI_FIRMWARE_VOLUME_HEADER *)AllocateCopyPool (
FwVolHeaderTmp->HeaderLength,
FwVolHeaderTmp
);
if (FwVolHeader == NULL) {
return EFI_OUT_OF_RESOURCES;
}
//
// For fault tolerant write, we have to know how many blocks we need to
// update. So we will calculate number of updates and max block size first
//
NumOfUpdates = 0;
MaxBlockSize = 0;
TotalSize = SizeLeft;
StartAddress = FlashAddress;
BaseAddress = FvBase;
BlockMap = &(FwVolHeader->BlockMap[0]);
PtrMap = BlockMap;
while (TotalSize > 0) {
if ((PtrMap->NumBlocks == 0) || (PtrMap->Length == 0)) {
break;
}
BlockSize = PtrMap->Length;
for (Index = 0; Index < PtrMap->NumBlocks; Index++) {
NextBlock = BaseAddress + BlockSize;
//
// Check if this block need to be updated
//
if ((StartAddress >= BaseAddress) && (StartAddress < NextBlock)) {
//
// Get the maximum block size
//
if (MaxBlockSize < BlockSize) {
MaxBlockSize = BlockSize;
}
//
// This block shall be udpated. So increment number of updates
//
NumOfUpdates++;
Offset = (UINTN) (StartAddress - BaseAddress);
Length = TotalSize;
if ((Length + Offset ) > BlockSize) {
Length = BlockSize - Offset;
}
StartAddress = StartAddress + Length;
TotalSize = TotalSize - Length;
if (TotalSize <= 0) {
break;
}
}
BaseAddress = NextBlock;
}
PtrMap++;
}
//
// Get the FTW protocol
//
Status = gBS->LocateProtocol (
&gEfiFaultTolerantWriteProtocolGuid,
NULL,
(VOID **) &FtwProtocol
);
if (EFI_ERROR (Status)) {
FreePool (FwVolHeader);
return EFI_NOT_FOUND;
}
FtwProtocol->GetMaxBlockSize (FtwProtocol, &FtwMaxBlockSize);
//
// Not enough backup space. return directly
//
if (FtwMaxBlockSize < MaxBlockSize) {
FreePool (FwVolHeader);
return EFI_OUT_OF_RESOURCES;
}
PendingLba = 0;
PendingOffset = 0;
PendingLength = 0;
Pending = FALSE;
//
// Fault Tolerant Write can only support actual fault tolerance if the write
// is a reclaim operation, which means the data buffer (new and old) are
// acutally both stored in flash. But for component update write, the data
// are now in memory. So we cannot actually recover the data after power
// failure.
//
Status = RetrieveLastWrite (
FvbHandle,
FtwProtocol,
ConfigData,
sizeof (UPDATE_PRIVATE_DATA),
&PrivateData,
&PendingLba,
&PendingOffset,
&PendingLength,
&Pending
);
if (Pending && (Status == EFI_NOT_FOUND)) {
//
// I'm not the owner of the pending fault tolerant write record
// Cannot continue with the write operation
//
FreePool (FwVolHeader);
return EFI_ABORTED;
}
if (EFI_ERROR(Status)) {
FreePool (FwVolHeader);
return EFI_ABORTED;
}
//
// Currently we start from the pending write if there is any. But if the
// caller is exactly the same, and the new data is already a in memory, (it
// cannot be stored in flash in last write,) we can just abort last write
// and start from the very begining.
//
if (!Pending) {
//
// Now allocte the update private data in FTW. If there is pending
// write, it has already been allocated and no need to allocate here.
//
Status = FtwProtocol->Allocate (
FtwProtocol,
&gEfiCallerIdGuid,
sizeof (UPDATE_PRIVATE_DATA),
NumOfUpdates
);
if (EFI_ERROR (Status)) {
FreePool (FwVolHeader);
return Status;
}
}
//
// Perform the update now. If there are pending writes, we need to
// start from the pending write instead of the very beginning.
//
TotalSize = SizeLeft;
Lba = 0;
StartAddress = FlashAddress;
BaseAddress = FvBase;
PtrMap = BlockMap;
Image = ImageBuffer;
CopyMem (
(VOID *) &PrivateData.FileGuid,
(VOID *) &ConfigData->FileGuid,
sizeof (EFI_GUID)
);
while (TotalSize > 0) {
if ((PtrMap->NumBlocks == 0) || (PtrMap->Length == 0)) {
break;
}
BlockSize = (UINTN)PtrMap->Length;
for (Index = 0; Index < PtrMap->NumBlocks; Index++) {
NextBlock = BaseAddress + BlockSize;
if ((StartAddress >= BaseAddress) && (StartAddress < NextBlock)) {
//
// So we need to update this block
//
Offset = (UINTN) (StartAddress - BaseAddress);
Length = TotalSize;
if ((Length + Offset ) > BlockSize) {
Length = BlockSize - Offset;
}
//
// Add an extra check here to see if the pending record is correct
//
if (Pending && (Lba == PendingLba)) {
if ((PendingOffset != Offset) || (PendingLength != Length)) {
//
// Error.
//
Status = EFI_ABORTED;
break;
}
}
if ((!Pending) || (Lba >= PendingLba)) {
DEBUG ((EFI_D_UPDATE, "Update Flash area from %08LX to %08LX\n", StartAddress, (UINT64)StartAddress + Length));
Status = FtwProtocol->Write (
FtwProtocol,
Lba, // Lba
Offset, // Offset
Length, // Size
&PrivateData, // Private Data
FvbHandle, // FVB handle
Image // Buffer
);
if (EFI_ERROR (Status)) {
break;
}
}
//
// Now increment StartAddress, ImageBuffer and decrease the
// left size to prepare for the next block update.
//
StartAddress = StartAddress + Length;
Image = Image + Length;
TotalSize = TotalSize - Length;
if (TotalSize <= 0) {
break;
}
}
BaseAddress = NextBlock;
Lba++;
}
if (EFI_ERROR (Status)) {
break;
}
PtrMap++;
}
FreePool (FwVolHeader);
*UpdatedSize = SizeLeft - TotalSize;
return EFI_SUCCESS;
}
/**
Directly update the buffer into flash area without fault tolerant write method.
@param ImageBuffer Image buffer to be updated.
@param SizeLeft Size of the image buffer.
@param UpdatedSize Size of the updated buffer.
@param FlashAddress Flash address to be updated as start address.
@param FvbProtocol FVB protocol.
@param FvbHandle Handle of FVB protocol for the updated flash range.
@retval EFI_SUCCESS Buffer data is updated into flash.
@retval EFI_INVALID_PARAMETER Base flash address is not in FVB flash area.
@retval EFI_OUT_OF_RESOURCES No enough backup space.
**/
EFI_STATUS
NonFaultTolerantUpdateOnPartFv (
IN UINT8 *ImageBuffer,
IN UINTN SizeLeft,
IN OUT UINTN *UpdatedSize,
IN EFI_PHYSICAL_ADDRESS FlashAddress,
IN EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *FvbProtocol,
IN EFI_HANDLE FvbHandle
)
{
EFI_STATUS Status;
EFI_FIRMWARE_VOLUME_HEADER *FwVolHeader;
EFI_FIRMWARE_VOLUME_HEADER *FwVolHeaderTmp;
EFI_PHYSICAL_ADDRESS BaseAddress;
EFI_PHYSICAL_ADDRESS NextBlock;
EFI_FV_BLOCK_MAP_ENTRY *BlockMap;
UINTN Index;
UINTN TotalSize;
UINTN BlockSize;
EFI_LBA Lba;
UINTN Offset;
UINTN Length;
UINT8 *Image;
//
// Get the block map to update the block one by one
//
Status = FvbProtocol->GetPhysicalAddress (
FvbProtocol,
&BaseAddress
);
if (EFI_ERROR (Status)) {
return Status;
}
FwVolHeaderTmp = (EFI_FIRMWARE_VOLUME_HEADER *)(UINTN)BaseAddress;
if ((FlashAddress < BaseAddress) || (FlashAddress > ( BaseAddress + FwVolHeaderTmp->FvLength ))) {
return EFI_INVALID_PARAMETER;
}
FwVolHeader = (EFI_FIRMWARE_VOLUME_HEADER *)AllocateCopyPool (
FwVolHeaderTmp->HeaderLength,
FwVolHeaderTmp
);
if (FwVolHeader == NULL) {
return EFI_OUT_OF_RESOURCES;
}
Image = ImageBuffer;
TotalSize = SizeLeft;
BlockMap = &(FwVolHeader->BlockMap[0]);
Lba = 0;
while (TotalSize > 0) {
if ((BlockMap->NumBlocks == 0) || (BlockMap->Length == 0)) {
break;
}
BlockSize = BlockMap->Length;
for (Index = 0 ; Index < BlockMap->NumBlocks ; Index++) {
NextBlock = BaseAddress + BlockSize;
if ((FlashAddress >= BaseAddress) && (FlashAddress < NextBlock)) {
//
// So we need to update this block
//
Offset = (UINTN) FlashAddress - (UINTN) BaseAddress;
Length = TotalSize;
if ((Length + Offset ) > BlockSize) {
Length = BlockSize - Offset;
}
DEBUG ((EFI_D_UPDATE, "Update Flash area from %08LX to %08LX\n", FlashAddress, (UINT64)FlashAddress + Length));
//
// Update the block
//
Status = UpdateBufferInOneBlock (
FvbProtocol,
Lba,
Offset,
Length,
BlockSize,
Image
);
if (EFI_ERROR (Status)) {
FreePool (FwVolHeader);
return Status;
}
//
// Now increment FlashAddress, ImageBuffer and decrease the
// left size to prepare for the next block update.
//
FlashAddress = FlashAddress + Length;
Image = Image + Length;
TotalSize = TotalSize - Length;
if (TotalSize <= 0) {
break;
}
}
BaseAddress = NextBlock;
Lba++;
}
if (EFI_ERROR (Status)) {
break;
}
BlockMap++;
}
FreePool (FwVolHeader);
*UpdatedSize = SizeLeft - TotalSize;
return EFI_SUCCESS;
}
|