]> git.proxmox.com Git - mirror_edk2.git/blob - InOsEmuPkg/EmuSimpleFileSystemDxe/EmuSimpleFileSystem.c
Add support for SerialPortLib that maps into POSIX StdIn and StdOut. Add a device...
[mirror_edk2.git] / InOsEmuPkg / EmuSimpleFileSystemDxe / EmuSimpleFileSystem.c
1 /*++ @file
2 Produce Simple File System abstractions for directories on your PC using Posix APIs.
3 The configuration of what devices to mount or emulate comes from UNIX
4 environment variables. The variables must be visible to the Microsoft*
5 Developer Studio for them to work.
6
7 Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
8 Portions copyright (c) 2011, Apple Inc. All rights reserved.
9 This program and the accompanying materials
10 are licensed and made available under the terms and conditions of the BSD License
11 which accompanies this distribution. The full text of the license may be found at
12 http://opensource.org/licenses/bsd-license.php
13
14 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16
17 **/
18
19 #include "EmuSimpleFileSystem.h"
20
21
22
23
24 /**
25 Opens a new file relative to the source file's location.
26
27 @param This The protocol instance pointer.
28 @param NewHandle Returns File Handle for FileName.
29 @param FileName Null terminated string. "\", ".", and ".." are supported.
30 @param OpenMode Open mode for file.
31 @param Attributes Only used for EFI_FILE_MODE_CREATE.
32
33 @retval EFI_SUCCESS The device was opened.
34 @retval EFI_NOT_FOUND The specified file could not be found on the device.
35 @retval EFI_NO_MEDIA The device has no media.
36 @retval EFI_MEDIA_CHANGED The media has changed.
37 @retval EFI_DEVICE_ERROR The device reported an error.
38 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
39 @retval EFI_ACCESS_DENIED The service denied access to the file.
40 @retval EFI_OUT_OF_RESOURCES The volume was not opened due to lack of resources.
41 @retval EFI_VOLUME_FULL The volume is full.
42
43 **/
44 EFI_STATUS
45 EFIAPI
46 EmuSimpleFileSystemOpen (
47 IN EFI_FILE_PROTOCOL *This,
48 OUT EFI_FILE_PROTOCOL **NewHandle,
49 IN CHAR16 *FileName,
50 IN UINT64 OpenMode,
51 IN UINT64 Attributes
52 )
53 {
54 EMU_EFI_FILE_PRIVATE *PrivateFile;
55
56 //
57 // Check for obvious invalid parameters.
58 //
59 if (This == NULL || NewHandle == NULL || FileName == NULL) {
60 return EFI_INVALID_PARAMETER;
61 }
62
63 switch (OpenMode) {
64 case EFI_FILE_MODE_CREATE | EFI_FILE_MODE_READ | EFI_FILE_MODE_WRITE:
65 if (Attributes &~EFI_FILE_VALID_ATTR) {
66 return EFI_INVALID_PARAMETER;
67 }
68
69 if (Attributes & EFI_FILE_READ_ONLY) {
70 return EFI_INVALID_PARAMETER;
71 }
72
73 //
74 // fall through
75 //
76 case EFI_FILE_MODE_READ:
77 case EFI_FILE_MODE_READ | EFI_FILE_MODE_WRITE:
78 break;
79
80 default:
81 return EFI_INVALID_PARAMETER;
82 }
83
84 PrivateFile = EMU_EFI_FILE_PRIVATE_DATA_FROM_THIS (This);
85
86 return PrivateFile->Io->Open (PrivateFile->Io, NewHandle, FileName, OpenMode, Attributes);
87 }
88
89
90
91 /**
92 Close the file handle
93
94 @param This Protocol instance pointer.
95
96 @retval EFI_SUCCESS The file was closed.
97
98 **/
99 EFI_STATUS
100 EFIAPI
101 EmuSimpleFileSystemClose (
102 IN EFI_FILE_PROTOCOL *This
103 )
104 {
105 EFI_STATUS Status;
106 EMU_EFI_FILE_PRIVATE *PrivateFile;
107 EFI_TPL OldTpl;
108
109 if (This == NULL) {
110 return EFI_INVALID_PARAMETER;
111 }
112
113 PrivateFile = EMU_EFI_FILE_PRIVATE_DATA_FROM_THIS (This);
114
115 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
116
117 Status = PrivateFile->Io->Close (PrivateFile->Io);
118 if (!EFI_ERROR (Status)) {
119 gBS->FreePool (PrivateFile);
120 }
121
122 gBS->RestoreTPL (OldTpl);
123
124 return Status;
125 }
126
127
128 /**
129 Close and delete the file handle.
130
131 @param This Protocol instance pointer.
132
133 @retval EFI_SUCCESS The file was closed and deleted.
134 @retval EFI_WARN_DELETE_FAILURE The handle was closed but the file was not deleted.
135
136 **/
137 EFI_STATUS
138 EFIAPI
139 EmuSimpleFileSystemDelete (
140 IN EFI_FILE_PROTOCOL *This
141 )
142 {
143 EFI_STATUS Status;
144 EMU_EFI_FILE_PRIVATE *PrivateFile;
145 EFI_TPL OldTpl;
146
147 if (This == NULL) {
148 return EFI_INVALID_PARAMETER;
149 }
150
151 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
152
153 PrivateFile = EMU_EFI_FILE_PRIVATE_DATA_FROM_THIS (This);
154
155 Status = PrivateFile->Io->Delete (PrivateFile->Io);
156 if (!EFI_ERROR (Status)) {
157 gBS->FreePool (PrivateFile);
158 }
159
160 gBS->RestoreTPL (OldTpl);
161
162 return Status;
163 }
164
165
166 /**
167 Read data from the file.
168
169 @param This Protocol instance pointer.
170 @param BufferSize On input size of buffer, on output amount of data in buffer.
171 @param Buffer The buffer in which data is read.
172
173 @retval EFI_SUCCESS Data was read.
174 @retval EFI_NO_MEDIA The device has no media.
175 @retval EFI_DEVICE_ERROR The device reported an error.
176 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
177 @retval EFI_BUFFER_TO_SMALL BufferSize is too small. BufferSize contains required size.
178
179 **/
180 EFI_STATUS
181 EFIAPI
182 EmuSimpleFileSystemRead (
183 IN EFI_FILE_PROTOCOL *This,
184 IN OUT UINTN *BufferSize,
185 OUT VOID *Buffer
186 )
187 {
188 EFI_STATUS Status;
189 EMU_EFI_FILE_PRIVATE *PrivateFile;
190 EFI_TPL OldTpl;
191
192 if (This == NULL || BufferSize == NULL) {
193 return EFI_INVALID_PARAMETER;
194 }
195
196 if ((*BufferSize != 0) && (Buffer == NULL)) {
197 // Buffer can be NULL if *BufferSize is zero
198 return EFI_INVALID_PARAMETER;
199 }
200
201 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
202
203 PrivateFile = EMU_EFI_FILE_PRIVATE_DATA_FROM_THIS (This);
204
205 Status = PrivateFile->Io->Read (PrivateFile->Io, BufferSize, Buffer);
206
207 gBS->RestoreTPL (OldTpl);
208 return Status;
209 }
210
211
212 /**
213 Write data to a file.
214
215 @param This Protocol instance pointer.
216 @param BufferSize On input size of buffer, on output amount of data in buffer.
217 @param Buffer The buffer in which data to write.
218
219 @retval EFI_SUCCESS Data was written.
220 @retval EFI_UNSUPPORTED Writes to Open directory are not supported.
221 @retval EFI_NO_MEDIA The device has no media.
222 @retval EFI_DEVICE_ERROR The device reported an error.
223 @retval EFI_DEVICE_ERROR An attempt was made to write to a deleted file.
224 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
225 @retval EFI_WRITE_PROTECTED The device is write protected.
226 @retval EFI_ACCESS_DENIED The file was open for read only.
227 @retval EFI_VOLUME_FULL The volume is full.
228
229 **/
230 EFI_STATUS
231 EFIAPI
232 EmuSimpleFileSystemWrite (
233 IN EFI_FILE_PROTOCOL *This,
234 IN OUT UINTN *BufferSize,
235 IN VOID *Buffer
236 )
237 {
238 EFI_STATUS Status;
239 EMU_EFI_FILE_PRIVATE *PrivateFile;
240 EFI_TPL OldTpl;
241
242 if (This == NULL || BufferSize == NULL || Buffer == NULL) {
243 return EFI_INVALID_PARAMETER;
244 }
245
246 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
247
248 PrivateFile = EMU_EFI_FILE_PRIVATE_DATA_FROM_THIS (This);
249
250 Status = PrivateFile->Io->Write (PrivateFile->Io, BufferSize, Buffer);
251
252 gBS->RestoreTPL (OldTpl);
253 return Status;
254 }
255
256
257 /**
258 Set a files current position
259
260 @param This Protocol instance pointer.
261 @param Position Byte position from the start of the file.
262
263 @retval EFI_SUCCESS Position was updated.
264 @retval EFI_UNSUPPORTED Seek request for non-zero is not valid on open.
265
266 **/
267 EFI_STATUS
268 EFIAPI
269 EmuSimpleFileSystemGetPosition (
270 IN EFI_FILE_PROTOCOL *This,
271 OUT UINT64 *Position
272 )
273 {
274 EFI_STATUS Status;
275 EMU_EFI_FILE_PRIVATE *PrivateFile;
276 EFI_TPL OldTpl;
277
278 if (This == NULL || Position == NULL) {
279 return EFI_INVALID_PARAMETER;
280 }
281
282 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
283
284 PrivateFile = EMU_EFI_FILE_PRIVATE_DATA_FROM_THIS (This);
285
286 Status = PrivateFile->Io->GetPosition (PrivateFile->Io, Position);
287
288 gBS->RestoreTPL (OldTpl);
289 return Status;
290 }
291
292
293
294 /**
295 Get a file's current position
296
297 @param This Protocol instance pointer.
298 @param Position Byte position from the start of the file.
299
300 @retval EFI_SUCCESS Position was updated.
301 @retval EFI_UNSUPPORTED Seek request for non-zero is not valid on open..
302
303 **/
304 EFI_STATUS
305 EFIAPI
306 EmuSimpleFileSystemSetPosition (
307 IN EFI_FILE_PROTOCOL *This,
308 IN UINT64 Position
309 )
310 {
311 EFI_STATUS Status;
312 EMU_EFI_FILE_PRIVATE *PrivateFile;
313 EFI_TPL OldTpl;
314
315 if (This == NULL) {
316 return EFI_INVALID_PARAMETER;
317 }
318
319 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
320
321 PrivateFile = EMU_EFI_FILE_PRIVATE_DATA_FROM_THIS (This);
322
323 Status = PrivateFile->Io->SetPosition (PrivateFile->Io, Position);
324
325 gBS->RestoreTPL (OldTpl);
326 return Status;
327 }
328
329
330 /**
331 Get information about a file.
332
333 @param This Protocol instance pointer.
334 @param InformationType Type of information to return in Buffer.
335 @param BufferSize On input size of buffer, on output amount of data in buffer.
336 @param Buffer The buffer to return data.
337
338 @retval EFI_SUCCESS Data was returned.
339 @retval EFI_UNSUPPORTED InformationType is not supported.
340 @retval EFI_NO_MEDIA The device has no media.
341 @retval EFI_DEVICE_ERROR The device reported an error.
342 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
343 @retval EFI_WRITE_PROTECTED The device is write protected.
344 @retval EFI_ACCESS_DENIED The file was open for read only.
345 @retval EFI_BUFFER_TOO_SMALL Buffer was too small; required size returned in BufferSize.
346
347 **/
348 EFI_STATUS
349 EFIAPI
350 EmuSimpleFileSystemGetInfo (
351 IN EFI_FILE_PROTOCOL *This,
352 IN EFI_GUID *InformationType,
353 IN OUT UINTN *BufferSize,
354 OUT VOID *Buffer
355 )
356 {
357 EFI_STATUS Status;
358 EMU_EFI_FILE_PRIVATE *PrivateFile;
359 EFI_TPL OldTpl;
360
361 if (This == NULL || InformationType == NULL || BufferSize == NULL) {
362 return EFI_INVALID_PARAMETER;
363 }
364
365 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
366
367 PrivateFile = EMU_EFI_FILE_PRIVATE_DATA_FROM_THIS (This);
368
369 Status = PrivateFile->Io->GetInfo (PrivateFile->Io, InformationType, BufferSize, Buffer);
370
371 gBS->RestoreTPL (OldTpl);
372 return Status;
373 }
374
375
376 /**
377 Set information about a file
378
379 @param File Protocol instance pointer.
380 @param InformationType Type of information in Buffer.
381 @param BufferSize Size of buffer.
382 @param Buffer The data to write.
383
384 @retval EFI_SUCCESS Data was set.
385 @retval EFI_UNSUPPORTED InformationType is not supported.
386 @retval EFI_NO_MEDIA The device has no media.
387 @retval EFI_DEVICE_ERROR The device reported an error.
388 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
389 @retval EFI_WRITE_PROTECTED The device is write protected.
390 @retval EFI_ACCESS_DENIED The file was open for read only.
391
392 **/
393 EFI_STATUS
394 EFIAPI
395 EmuSimpleFileSystemSetInfo (
396 IN EFI_FILE_PROTOCOL*This,
397 IN EFI_GUID *InformationType,
398 IN UINTN BufferSize,
399 IN VOID *Buffer
400 )
401 {
402 EFI_STATUS Status;
403 EMU_EFI_FILE_PRIVATE *PrivateFile;
404 EFI_TPL OldTpl;
405
406 //
407 // Check for invalid parameters.
408 //
409 if (This == NULL || InformationType == NULL || BufferSize == 0 || Buffer == NULL) {
410 return EFI_INVALID_PARAMETER;
411 }
412
413 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
414
415 PrivateFile = EMU_EFI_FILE_PRIVATE_DATA_FROM_THIS (This);
416
417 Status = PrivateFile->Io->SetInfo (PrivateFile->Io, InformationType, BufferSize, Buffer);
418
419 gBS->RestoreTPL (OldTpl);
420 return Status;
421 }
422
423
424 /**
425 Flush data back for the file handle.
426
427 @param This Protocol instance pointer.
428
429 @retval EFI_SUCCESS Data was flushed.
430 @retval EFI_UNSUPPORTED Writes to Open directory are not supported.
431 @retval EFI_NO_MEDIA The device has no media.
432 @retval EFI_DEVICE_ERROR The device reported an error.
433 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
434 @retval EFI_WRITE_PROTECTED The device is write protected.
435 @retval EFI_ACCESS_DENIED The file was open for read only.
436 @retval EFI_VOLUME_FULL The volume is full.
437
438 **/
439 EFI_STATUS
440 EFIAPI
441 EmuSimpleFileSystemFlush (
442 IN EFI_FILE_PROTOCOL *This
443 )
444 {
445 EFI_STATUS Status;
446 EMU_EFI_FILE_PRIVATE *PrivateFile;
447 EFI_TPL OldTpl;
448
449 if (This == NULL) {
450 return EFI_INVALID_PARAMETER;
451 }
452
453 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
454
455 PrivateFile = EMU_EFI_FILE_PRIVATE_DATA_FROM_THIS (This);
456
457 Status = PrivateFile->Io->Flush (PrivateFile->Io);
458
459 gBS->RestoreTPL (OldTpl);
460 return Status;
461 }
462
463
464
465 /**
466 Open the root directory on a volume.
467
468 @param This Protocol instance pointer.
469 @param Root Returns an Open file handle for the root directory
470
471 @retval EFI_SUCCESS The device was opened.
472 @retval EFI_UNSUPPORTED This volume does not support the file system.
473 @retval EFI_NO_MEDIA The device has no media.
474 @retval EFI_DEVICE_ERROR The device reported an error.
475 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
476 @retval EFI_ACCESS_DENIED The service denied access to the file.
477 @retval EFI_OUT_OF_RESOURCES The volume was not opened due to lack of resources.
478
479 **/
480 EFI_STATUS
481 EFIAPI
482 EmuSimpleFileSystemOpenVolume (
483 IN EFI_SIMPLE_FILE_SYSTEM_PROTOCOL *This,
484 OUT EFI_FILE_PROTOCOL **Root
485 )
486 {
487 EFI_STATUS Status;
488 EMU_SIMPLE_FILE_SYSTEM_PRIVATE *Private;
489 EMU_EFI_FILE_PRIVATE *PrivateFile;
490 EFI_TPL OldTpl;
491
492 if (This == NULL || Root == NULL) {
493 return EFI_INVALID_PARAMETER;
494 }
495
496 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
497
498 Private = EMU_SIMPLE_FILE_SYSTEM_PRIVATE_DATA_FROM_THIS (This);
499
500 PrivateFile = AllocatePool (sizeof (EMU_EFI_FILE_PRIVATE));
501 if (PrivateFile == NULL) {
502 goto Done;
503 }
504
505 PrivateFile->Signature = EMU_EFI_FILE_PRIVATE_SIGNATURE;
506 PrivateFile->IoThunk = Private->IoThunk;
507 PrivateFile->SimpleFileSystem = This;
508 PrivateFile->EfiFile.Revision = EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_REVISION;
509 PrivateFile->EfiFile.Open = EmuSimpleFileSystemOpen;
510 PrivateFile->EfiFile.Close = EmuSimpleFileSystemClose;
511 PrivateFile->EfiFile.Delete = EmuSimpleFileSystemDelete;
512 PrivateFile->EfiFile.Read = EmuSimpleFileSystemRead;
513 PrivateFile->EfiFile.Write = EmuSimpleFileSystemWrite;
514 PrivateFile->EfiFile.GetPosition = EmuSimpleFileSystemGetPosition;
515 PrivateFile->EfiFile.SetPosition = EmuSimpleFileSystemSetPosition;
516 PrivateFile->EfiFile.GetInfo = EmuSimpleFileSystemGetInfo;
517 PrivateFile->EfiFile.SetInfo = EmuSimpleFileSystemSetInfo;
518 PrivateFile->EfiFile.Flush = EmuSimpleFileSystemFlush;
519
520 *Root = &PrivateFile->EfiFile;
521
522 Status = Private->Io->OpenVolume (Private->Io, &PrivateFile->Io);
523 if (EFI_ERROR (Status)) {
524 goto Done;
525 }
526
527 AddUnicodeString2 (
528 "eng",
529 gEmuSimpleFileSystemComponentName.SupportedLanguages,
530 &Private->ControllerNameTable,
531 Private->IoThunk->ConfigString,
532 TRUE
533 );
534
535 AddUnicodeString2 (
536 "en",
537 gEmuSimpleFileSystemComponentName.SupportedLanguages,
538 &Private->ControllerNameTable,
539 Private->IoThunk->ConfigString,
540 FALSE
541 );
542
543
544 Done:
545 if (EFI_ERROR (Status)) {
546 if (PrivateFile) {
547 gBS->FreePool (PrivateFile);
548 }
549
550 *Root = NULL;
551 }
552
553 gBS->RestoreTPL (OldTpl);
554
555 return Status;
556 }
557
558 /**
559 Tests to see if this driver supports a given controller. If a child device is provided,
560 it further tests to see if this driver supports creating a handle for the specified child device.
561
562 This function checks to see if the driver specified by This supports the device specified by
563 ControllerHandle. Drivers will typically use the device path attached to
564 ControllerHandle and/or the services from the bus I/O abstraction attached to
565 ControllerHandle to determine if the driver supports ControllerHandle. This function
566 may be called many times during platform initialization. In order to reduce boot times, the tests
567 performed by this function must be very small, and take as little time as possible to execute. This
568 function must not change the state of any hardware devices, and this function must be aware that the
569 device specified by ControllerHandle may already be managed by the same driver or a
570 different driver. This function must match its calls to AllocatePages() with FreePages(),
571 AllocatePool() with FreePool(), and OpenProtocol() with CloseProtocol().
572 Because ControllerHandle may have been previously started by the same driver, if a protocol is
573 already in the opened state, then it must not be closed with CloseProtocol(). This is required
574 to guarantee the state of ControllerHandle is not modified by this function.
575
576 @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.
577 @param[in] ControllerHandle The handle of the controller to test. This handle
578 must support a protocol interface that supplies
579 an I/O abstraction to the driver.
580 @param[in] RemainingDevicePath A pointer to the remaining portion of a device path. This
581 parameter is ignored by device drivers, and is optional for bus
582 drivers. For bus drivers, if this parameter is not NULL, then
583 the bus driver must determine if the bus controller specified
584 by ControllerHandle and the child controller specified
585 by RemainingDevicePath are both supported by this
586 bus driver.
587
588 @retval EFI_SUCCESS The device specified by ControllerHandle and
589 RemainingDevicePath is supported by the driver specified by This.
590 @retval EFI_ALREADY_STARTED The device specified by ControllerHandle and
591 RemainingDevicePath is already being managed by the driver
592 specified by This.
593 @retval EFI_ACCESS_DENIED The device specified by ControllerHandle and
594 RemainingDevicePath is already being managed by a different
595 driver or an application that requires exclusive access.
596 Currently not implemented.
597 @retval EFI_UNSUPPORTED The device specified by ControllerHandle and
598 RemainingDevicePath is not supported by the driver specified by This.
599 **/
600 EFI_STATUS
601 EFIAPI
602 EmuSimpleFileSystemDriverBindingSupported (
603 IN EFI_DRIVER_BINDING_PROTOCOL *This,
604 IN EFI_HANDLE ControllerHandle,
605 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath
606 )
607 {
608 EFI_STATUS Status;
609 EMU_IO_THUNK_PROTOCOL *EmuIoThunk;
610
611 //
612 // Open the IO Abstraction(s) needed to perform the supported test
613 //
614 Status = gBS->OpenProtocol (
615 ControllerHandle,
616 &gEmuIoThunkProtocolGuid,
617 (VOID **)&EmuIoThunk,
618 This->DriverBindingHandle,
619 ControllerHandle,
620 EFI_OPEN_PROTOCOL_BY_DRIVER
621 );
622 if (EFI_ERROR (Status)) {
623 return Status;
624 }
625
626 //
627 // Make sure GUID is for a File System handle.
628 //
629 Status = EFI_UNSUPPORTED;
630 if (CompareGuid (EmuIoThunk->Protocol, &gEfiSimpleFileSystemProtocolGuid)) {
631 Status = EFI_SUCCESS;
632 }
633
634 //
635 // Close the I/O Abstraction(s) used to perform the supported test
636 //
637 gBS->CloseProtocol (
638 ControllerHandle,
639 &gEmuIoThunkProtocolGuid,
640 This->DriverBindingHandle,
641 ControllerHandle
642 );
643
644 return Status;
645 }
646
647
648
649 /**
650 Starts a device controller or a bus controller.
651
652 The Start() function is designed to be invoked from the EFI boot service ConnectController().
653 As a result, much of the error checking on the parameters to Start() has been moved into this
654 common boot service. It is legal to call Start() from other locations,
655 but the following calling restrictions must be followed, or the system behavior will not be deterministic.
656 1. ControllerHandle must be a valid EFI_HANDLE.
657 2. If RemainingDevicePath is not NULL, then it must be a pointer to a naturally aligned
658 EFI_DEVICE_PATH_PROTOCOL.
659 3. Prior to calling Start(), the Supported() function for the driver specified by This must
660 have been called with the same calling parameters, and Supported() must have returned EFI_SUCCESS.
661
662 @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.
663 @param[in] ControllerHandle The handle of the controller to start. This handle
664 must support a protocol interface that supplies
665 an I/O abstraction to the driver.
666 @param[in] RemainingDevicePath A pointer to the remaining portion of a device path. This
667 parameter is ignored by device drivers, and is optional for bus
668 drivers. For a bus driver, if this parameter is NULL, then handles
669 for all the children of Controller are created by this driver.
670 If this parameter is not NULL and the first Device Path Node is
671 not the End of Device Path Node, then only the handle for the
672 child device specified by the first Device Path Node of
673 RemainingDevicePath is created by this driver.
674 If the first Device Path Node of RemainingDevicePath is
675 the End of Device Path Node, no child handle is created by this
676 driver.
677
678 @retval EFI_SUCCESS The device was started.
679 @retval EFI_DEVICE_ERROR The device could not be started due to a device error.Currently not implemented.
680 @retval EFI_OUT_OF_RESOURCES The request could not be completed due to a lack of resources.
681 @retval Others The driver failded to start the device.
682
683 **/
684 EFI_STATUS
685 EFIAPI
686 EmuSimpleFileSystemDriverBindingStart (
687 IN EFI_DRIVER_BINDING_PROTOCOL *This,
688 IN EFI_HANDLE ControllerHandle,
689 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath
690 )
691 {
692 EFI_STATUS Status;
693 EMU_IO_THUNK_PROTOCOL *EmuIoThunk;
694 EMU_SIMPLE_FILE_SYSTEM_PRIVATE *Private;
695
696 Private = NULL;
697
698 //
699 // Open the IO Abstraction(s) needed
700 //
701 Status = gBS->OpenProtocol (
702 ControllerHandle,
703 &gEmuIoThunkProtocolGuid,
704 (VOID **)&EmuIoThunk,
705 This->DriverBindingHandle,
706 ControllerHandle,
707 EFI_OPEN_PROTOCOL_BY_DRIVER
708 );
709 if (EFI_ERROR (Status)) {
710 return Status;
711 }
712
713 //
714 // Validate GUID
715 //
716 if (!CompareGuid (EmuIoThunk->Protocol, &gEfiSimpleFileSystemProtocolGuid)) {
717 Status = EFI_UNSUPPORTED;
718 goto Done;
719 }
720
721 Private = AllocateZeroPool (sizeof (EMU_SIMPLE_FILE_SYSTEM_PRIVATE));
722 if (Private == NULL) {
723 goto Done;
724 }
725
726 Status = EmuIoThunk->Open (EmuIoThunk);
727 if (EFI_ERROR (Status)) {
728 goto Done;
729 }
730
731 Private->Signature = EMU_SIMPLE_FILE_SYSTEM_PRIVATE_SIGNATURE;
732 Private->IoThunk = EmuIoThunk;
733 Private->Io = EmuIoThunk->Interface;
734
735 Private->SimpleFileSystem.Revision = EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_REVISION;
736 Private->SimpleFileSystem.OpenVolume = EmuSimpleFileSystemOpenVolume;
737
738 Private->ControllerNameTable = NULL;
739
740 AddUnicodeString2 (
741 "eng",
742 gEmuSimpleFileSystemComponentName.SupportedLanguages,
743 &Private->ControllerNameTable,
744 EmuIoThunk->ConfigString,
745 TRUE
746 );
747
748 AddUnicodeString2 (
749 "en",
750 gEmuSimpleFileSystemComponentName2.SupportedLanguages,
751 &Private->ControllerNameTable,
752 EmuIoThunk->ConfigString,
753 FALSE
754 );
755
756 Status = gBS->InstallMultipleProtocolInterfaces (
757 &ControllerHandle,
758 &gEfiSimpleFileSystemProtocolGuid, &Private->SimpleFileSystem,
759 NULL
760 );
761
762 Done:
763 if (EFI_ERROR (Status)) {
764 if (Private != NULL) {
765 if (Private->ControllerNameTable != NULL) {
766 FreeUnicodeStringTable (Private->ControllerNameTable);
767 }
768
769 gBS->FreePool (Private);
770
771 }
772
773 gBS->CloseProtocol (
774 ControllerHandle,
775 &gEmuIoThunkProtocolGuid,
776 This->DriverBindingHandle,
777 ControllerHandle
778 );
779 }
780
781 return Status;
782 }
783
784
785 /**
786 Stops a device controller or a bus controller.
787
788 The Stop() function is designed to be invoked from the EFI boot service DisconnectController().
789 As a result, much of the error checking on the parameters to Stop() has been moved
790 into this common boot service. It is legal to call Stop() from other locations,
791 but the following calling restrictions must be followed, or the system behavior will not be deterministic.
792 1. ControllerHandle must be a valid EFI_HANDLE that was used on a previous call to this
793 same driver's Start() function.
794 2. The first NumberOfChildren handles of ChildHandleBuffer must all be a valid
795 EFI_HANDLE. In addition, all of these handles must have been created in this driver's
796 Start() function, and the Start() function must have called OpenProtocol() on
797 ControllerHandle with an Attribute of EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER.
798
799 @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.
800 @param[in] ControllerHandle A handle to the device being stopped. The handle must
801 support a bus specific I/O protocol for the driver
802 to use to stop the device.
803 @param[in] NumberOfChildren The number of child device handles in ChildHandleBuffer.
804 @param[in] ChildHandleBuffer An array of child handles to be freed. May be NULL
805 if NumberOfChildren is 0.
806
807 @retval EFI_SUCCESS The device was stopped.
808 @retval EFI_DEVICE_ERROR The device could not be stopped due to a device error.
809
810 **/
811 EFI_STATUS
812 EFIAPI
813 EmuSimpleFileSystemDriverBindingStop (
814 IN EFI_DRIVER_BINDING_PROTOCOL *This,
815 IN EFI_HANDLE ControllerHandle,
816 IN UINTN NumberOfChildren,
817 IN EFI_HANDLE *ChildHandleBuffer
818 )
819 {
820 EFI_STATUS Status;
821 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL *SimpleFileSystem;
822 EMU_SIMPLE_FILE_SYSTEM_PRIVATE *Private;
823
824 //
825 // Get our context back
826 //
827 Status = gBS->OpenProtocol (
828 ControllerHandle,
829 &gEfiSimpleFileSystemProtocolGuid,
830 (VOID **)&SimpleFileSystem,
831 This->DriverBindingHandle,
832 ControllerHandle,
833 EFI_OPEN_PROTOCOL_GET_PROTOCOL
834 );
835 if (EFI_ERROR (Status)) {
836 return EFI_UNSUPPORTED;
837 }
838
839 Private = EMU_SIMPLE_FILE_SYSTEM_PRIVATE_DATA_FROM_THIS (SimpleFileSystem);
840 Status = Private->IoThunk->Close (Private->IoThunk);
841
842 //
843 // Uninstall the Simple File System Protocol from ControllerHandle
844 //
845 Status = gBS->UninstallMultipleProtocolInterfaces (
846 ControllerHandle,
847 &gEfiSimpleFileSystemProtocolGuid, &Private->SimpleFileSystem,
848 NULL
849 );
850 if (!EFI_ERROR (Status)) {
851 Status = gBS->CloseProtocol (
852 ControllerHandle,
853 &gEmuIoThunkProtocolGuid,
854 This->DriverBindingHandle,
855 ControllerHandle
856 );
857 }
858
859 if (!EFI_ERROR (Status)) {
860 //
861 // Free our instance data
862 //
863 FreeUnicodeStringTable (Private->ControllerNameTable);
864 gBS->FreePool (Private);
865 }
866
867 return Status;
868 }
869
870
871 EFI_DRIVER_BINDING_PROTOCOL gEmuSimpleFileSystemDriverBinding = {
872 EmuSimpleFileSystemDriverBindingSupported,
873 EmuSimpleFileSystemDriverBindingStart,
874 EmuSimpleFileSystemDriverBindingStop,
875 0xa,
876 NULL,
877 NULL
878 };
879
880
881
882
883 /**
884 The user Entry Point for module EmuSimpleFileSystem. The user code starts with this function.
885
886 @param[in] ImageHandle The firmware allocated handle for the EFI image.
887 @param[in] SystemTable A pointer to the EFI System Table.
888
889 @retval EFI_SUCCESS The entry point is executed successfully.
890 @retval other Some error occurs when executing this entry point.
891
892 **/
893 EFI_STATUS
894 EFIAPI
895 InitializeEmuSimpleFileSystem(
896 IN EFI_HANDLE ImageHandle,
897 IN EFI_SYSTEM_TABLE *SystemTable
898 )
899 {
900 EFI_STATUS Status;
901
902 Status = EfiLibInstallDriverBindingComponentName2 (
903 ImageHandle,
904 SystemTable,
905 &gEmuSimpleFileSystemDriverBinding,
906 ImageHandle,
907 &gEmuSimpleFileSystemComponentName,
908 &gEmuSimpleFileSystemComponentName2
909 );
910 ASSERT_EFI_ERROR (Status);
911
912 return Status;
913 }