hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
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
/** @file
 *
 *  Copyright (c) 2018, Andrei Warkentin <andrey.warkentin@gmail.com>
 *  Copyright (C) 2015, Red Hat, Inc.
 *  Copyright (c) 2006-2014, Intel Corporation. All rights reserved.
 *
 *  SPDX-License-Identifier: BSD-2-Clause-Patent
 *
 **/
 
#include "VarBlockService.h"
 
//
// Minimum delay to enact before reset, when variables are dirty (in μs).
// Needed to ensure that SSD-based USB 3.0 devices have time to flush their
// write cache after updating the NV vars. A much smaller delay is applied
// on Pi 3 compared to Pi 4, as we haven't had reports of issues there yet.
//
#if (RPI_MODEL == 3)
#define PLATFORM_RESET_DELAY     500000
#else
#define PLATFORM_RESET_DELAY    3500000
#endif
 
VOID *mSFSRegistration;
 
 
VOID
InstallProtocolInterfaces (
  IN EFI_FW_VOL_BLOCK_DEVICE *FvbDevice
  )
{
  EFI_STATUS Status;
  EFI_HANDLE FwbHandle;
  EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *OldFwbInterface;
 
  //
  // Find a handle with a matching device path that has supports FW Block
  // protocol.
  //
  Status = gBS->LocateDevicePath (&gEfiFirmwareVolumeBlockProtocolGuid,
                  &FvbDevice->DevicePath, &FwbHandle);
  if (EFI_ERROR (Status)) {
    //
    // LocateDevicePath fails so install a new interface and device path.
    //
    FwbHandle = NULL;
    Status = gBS->InstallMultipleProtocolInterfaces (
                    &FwbHandle,
                    &gEfiFirmwareVolumeBlockProtocolGuid,
                    &FvbDevice->FwVolBlockInstance,
                    &gEfiDevicePathProtocolGuid,
                    FvbDevice->DevicePath,
                    NULL
                  );
    ASSERT_EFI_ERROR (Status);
  } else if (IsDevicePathEnd (FvbDevice->DevicePath)) {
    //
    // Device already exists, so reinstall the FVB protocol
    //
    Status = gBS->HandleProtocol (
                    FwbHandle,
                    &gEfiFirmwareVolumeBlockProtocolGuid,
                    (VOID**)&OldFwbInterface
                  );
    ASSERT_EFI_ERROR (Status);
 
    Status = gBS->ReinstallProtocolInterface (
                    FwbHandle,
                    &gEfiFirmwareVolumeBlockProtocolGuid,
                    OldFwbInterface,
                    &FvbDevice->FwVolBlockInstance
                  );
    ASSERT_EFI_ERROR (Status);
  } else {
    //
    // There was a FVB protocol on an End Device Path node
    //
    ASSERT (FALSE);
  }
}
 
 
STATIC
VOID
EFIAPI
FvbVirtualAddressChangeEvent (
  IN EFI_EVENT Event,
  IN VOID *Context
  )
/*++
 
  Routine Description:
 
    Fixup internal data so that EFI can be called in virtual mode.
 
  Arguments:
 
    (Standard EFI notify event - EFI_EVENT_NOTIFY)
 
  Returns:
 
    None
 
--*/
{
  EfiConvertPointer (0x0, (VOID**)&mFvInstance->FvBase);
  EfiConvertPointer (0x0, (VOID**)&mFvInstance->VolumeHeader);
  EfiConvertPointer (0x0, (VOID**)&mFvInstance);
}
 
 
VOID
InstallVirtualAddressChangeHandler (
  VOID
  )
{
  EFI_STATUS Status;
  EFI_EVENT VirtualAddressChangeEvent;
 
  Status = gBS->CreateEventEx (
                  EVT_NOTIFY_SIGNAL,
                  TPL_NOTIFY,
                  FvbVirtualAddressChangeEvent,
                  NULL,
                  &gEfiEventVirtualAddressChangeGuid,
                  &VirtualAddressChangeEvent
                );
  ASSERT_EFI_ERROR (Status);
}
 
 
STATIC
EFI_STATUS
DoDump (
  IN EFI_DEVICE_PATH_PROTOCOL *Device
  )
{
  EFI_STATUS Status;
  EFI_FILE_PROTOCOL *File;
 
  Status = FileOpen (Device,
             mFvInstance->MappedFile,
             &File,
             EFI_FILE_MODE_WRITE |
             EFI_FILE_MODE_READ);
  if (EFI_ERROR (Status)) {
    return Status;
  }
 
  Status = FileWrite (File,
             mFvInstance->Offset,
             mFvInstance->FvBase,
             mFvInstance->FvLength);
  FileClose (File);
  return Status;
}
 
 
STATIC
VOID
EFIAPI
DumpVars (
  IN EFI_EVENT Event,
  IN VOID *Context
  )
{
  EFI_STATUS Status;
  RETURN_STATUS PcdStatus;
 
  if (mFvInstance->Device == NULL) {
    DEBUG ((DEBUG_INFO, "Variable store not found?\n"));
    return;
  }
 
  if (!mFvInstance->Dirty) {
    DEBUG ((DEBUG_INFO, "Variables not dirty, not dumping!\n"));
    return;
  }
 
  Status = DoDump (mFvInstance->Device);
  if (EFI_ERROR (Status)) {
    DEBUG ((DEBUG_ERROR, "Couldn't dump '%s'\n", mFvInstance->MappedFile));
    ASSERT_EFI_ERROR (Status);
    return;
  }
 
  DEBUG ((DEBUG_INFO, "Variables dumped!\n"));
 
  //
  // Add a reset delay to give time for slow/cached devices
  // to flush the NV variables write to permanent storage.
  // But only do so if this won't reduce an existing user-set delay.
  //
  if (PcdGet32 (PcdPlatformResetDelay) < PLATFORM_RESET_DELAY) {
    PcdStatus = PcdSet32S (PcdPlatformResetDelay, PLATFORM_RESET_DELAY);
    ASSERT_RETURN_ERROR (PcdStatus);
  }
 
  mFvInstance->Dirty = FALSE;
}
 
 
VOID
ReadyToBootHandler (
  IN EFI_EVENT Event,
  IN VOID *Context
  )
{
  EFI_STATUS Status;
  EFI_EVENT ImageInstallEvent;
  VOID *ImageRegistration;
 
  Status = gBS->CreateEvent (
                  EVT_NOTIFY_SIGNAL,
                  TPL_CALLBACK,
                  DumpVars,
                  NULL,
                  &ImageInstallEvent
                );
  ASSERT_EFI_ERROR (Status);
 
  Status = gBS->RegisterProtocolNotify (
                  &gEfiLoadedImageProtocolGuid,
                  ImageInstallEvent,
                  &ImageRegistration
                );
  ASSERT_EFI_ERROR (Status);
 
  DumpVars (NULL, NULL);
  Status = gBS->CloseEvent (Event);
  ASSERT_EFI_ERROR (Status);
}
 
 
VOID
InstallDumpVarEventHandlers (
  VOID
  )
{
  EFI_STATUS Status;
  EFI_EVENT ResetEvent;
  EFI_EVENT ReadyToBootEvent;
 
  Status = gBS->CreateEventEx (
                  EVT_NOTIFY_SIGNAL,
                  TPL_CALLBACK,
                  DumpVars,
                  NULL,
                  &gRaspberryPiEventResetGuid,
                  &ResetEvent
                );
  ASSERT_EFI_ERROR (Status);
 
  Status = gBS->CreateEventEx (
                  EVT_NOTIFY_SIGNAL,
                  TPL_CALLBACK,
                  ReadyToBootHandler,
                  NULL,
                  &gEfiEventReadyToBootGuid,
                  &ReadyToBootEvent
                );
  ASSERT_EFI_ERROR (Status);
}
 
 
VOID
EFIAPI
OnSimpleFileSystemInstall (
  IN EFI_EVENT Event,
  IN VOID *Context
  )
{
  EFI_STATUS Status;
  UINTN HandleSize;
  EFI_HANDLE Handle;
  EFI_DEVICE_PATH_PROTOCOL *Device;
 
  if ((mFvInstance->Device != NULL) &&
      !EFI_ERROR (CheckStoreExists (mFvInstance->Device))) {
    //
    // We've already found the variable store before,
    // and that device is not removed from the ssystem.
    //
    return;
  }
 
  while (TRUE) {
    HandleSize = sizeof (EFI_HANDLE);
    Status = gBS->LocateHandle (
                    ByRegisterNotify,
                    NULL,
                    mSFSRegistration,
                    &HandleSize,
                    &Handle
                  );
    if (Status == EFI_NOT_FOUND) {
      break;
    }
 
    ASSERT_EFI_ERROR (Status);
 
    Status = CheckStore (Handle, &Device);
    if (EFI_ERROR (Status)) {
      continue;
    }
 
    Status = DoDump (Device);
    if (EFI_ERROR (Status)) {
      DEBUG ((DEBUG_ERROR, "Couldn't update '%s'\n", mFvInstance->MappedFile));
      ASSERT_EFI_ERROR (Status);
      continue;
    }
 
    if (mFvInstance->Device != NULL) {
      gBS->FreePool (mFvInstance->Device);
    }
 
    DEBUG ((DEBUG_INFO, "Found variable store!\n"));
    mFvInstance->Device = Device;
    break;
  }
}
 
 
VOID
InstallFSNotifyHandler (
  VOID
  )
{
  EFI_STATUS Status;
  EFI_EVENT Event;
 
  Status = gBS->CreateEvent (
                  EVT_NOTIFY_SIGNAL,
                  TPL_CALLBACK,
                  OnSimpleFileSystemInstall,
                  NULL,
                  &Event
                );
  ASSERT_EFI_ERROR (Status);
 
  Status = gBS->RegisterProtocolNotify (
                  &gEfiSimpleFileSystemProtocolGuid,
                  Event,
                  &mSFSRegistration
                );
  ASSERT_EFI_ERROR (Status);
}