]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/VirtioFsDxe/SimpleFsClose.c
OvmfPkg: Apply uncrustify changes
[mirror_edk2.git] / OvmfPkg / VirtioFsDxe / SimpleFsClose.c
1 /** @file
2 EFI_FILE_PROTOCOL.Close() member function for the Virtio Filesystem driver.
3
4 Copyright (C) 2020, Red Hat, Inc.
5
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7 **/
8
9 #include <Library/BaseLib.h> // RemoveEntryList()
10 #include <Library/MemoryAllocationLib.h> // FreePool()
11
12 #include "VirtioFsDxe.h"
13
14 EFI_STATUS
15 EFIAPI
16 VirtioFsSimpleFileClose (
17 IN EFI_FILE_PROTOCOL *This
18 )
19 {
20 VIRTIO_FS_FILE *VirtioFsFile;
21 VIRTIO_FS *VirtioFs;
22
23 VirtioFsFile = VIRTIO_FS_FILE_FROM_SIMPLE_FILE (This);
24 VirtioFs = VirtioFsFile->OwnerFs;
25
26 //
27 // All actions in this function are "best effort"; the UEFI spec requires
28 // EFI_FILE_PROTOCOL.Close() to sync all data to the device, but it also
29 // requires EFI_FILE_PROTOCOL.Close() to release resources unconditionally,
30 // and to return EFI_SUCCESS unconditionally.
31 //
32 // Flush, sync, release, and (if needed) forget. If any action fails, we
33 // still try the others.
34 //
35 if (VirtioFsFile->IsOpenForWriting) {
36 if (!VirtioFsFile->IsDirectory) {
37 VirtioFsFuseFlush (
38 VirtioFs,
39 VirtioFsFile->NodeId,
40 VirtioFsFile->FuseHandle
41 );
42 }
43
44 VirtioFsFuseFsyncFileOrDir (
45 VirtioFs,
46 VirtioFsFile->NodeId,
47 VirtioFsFile->FuseHandle,
48 VirtioFsFile->IsDirectory
49 );
50 }
51
52 VirtioFsFuseReleaseFileOrDir (
53 VirtioFs,
54 VirtioFsFile->NodeId,
55 VirtioFsFile->FuseHandle,
56 VirtioFsFile->IsDirectory
57 );
58
59 //
60 // VirtioFsFile->FuseHandle is gone at this point, but VirtioFsFile->NodeId
61 // is still valid. If we've known VirtioFsFile->NodeId from a lookup, then
62 // now we should ask the server to forget it *once*.
63 //
64 if (VirtioFsFile->NodeId != VIRTIO_FS_FUSE_ROOT_DIR_NODE_ID) {
65 VirtioFsFuseForget (VirtioFs, VirtioFsFile->NodeId);
66 }
67
68 //
69 // One fewer file left open for the owner filesystem.
70 //
71 RemoveEntryList (&VirtioFsFile->OpenFilesEntry);
72
73 FreePool (VirtioFsFile->CanonicalPathname);
74 if (VirtioFsFile->FileInfoArray != NULL) {
75 FreePool (VirtioFsFile->FileInfoArray);
76 }
77
78 FreePool (VirtioFsFile);
79 return EFI_SUCCESS;
80 }