]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/VirtioFsDxe/VirtioFsDxe.h
d1b746c0d8cf4927394b3256f895759d6738e031
[mirror_edk2.git] / OvmfPkg / VirtioFsDxe / VirtioFsDxe.h
1 /** @file
2 Internal macro definitions, type definitions, and function declarations for
3 the Virtio Filesystem device driver.
4
5 Copyright (C) 2020, Red Hat, Inc.
6
7 SPDX-License-Identifier: BSD-2-Clause-Patent
8 **/
9
10 #ifndef VIRTIO_FS_DXE_H_
11 #define VIRTIO_FS_DXE_H_
12
13 #include <Base.h> // SIGNATURE_64()
14 #include <Guid/FileInfo.h> // EFI_FILE_INFO
15 #include <IndustryStandard/VirtioFs.h> // VIRTIO_FS_TAG_BYTES
16 #include <Library/DebugLib.h> // CR()
17 #include <Protocol/SimpleFileSystem.h> // EFI_SIMPLE_FILE_SYSTEM_PROTOCOL
18 #include <Protocol/VirtioDevice.h> // VIRTIO_DEVICE_PROTOCOL
19 #include <Uefi/UefiBaseType.h> // EFI_EVENT
20
21 #define VIRTIO_FS_SIG SIGNATURE_64 ('V', 'I', 'R', 'T', 'I', 'O', 'F', 'S')
22
23 #define VIRTIO_FS_FILE_SIG \
24 SIGNATURE_64 ('V', 'I', 'O', 'F', 'S', 'F', 'I', 'L')
25
26 //
27 // The following limit applies to two kinds of pathnames.
28 //
29 // - The length of a POSIX-style, canonical pathname *at rest* never exceeds
30 // VIRTIO_FS_MAX_PATHNAME_LENGTH. (Length is defined as the number of CHAR8
31 // elements in the canonical pathname, excluding the terminating '\0'.) This
32 // is an invariant that is ensured for canonical pathnames created, and that
33 // is assumed about canonical pathname inputs (which all originate
34 // internally).
35 //
36 // - If the length of a UEFI-style pathname *argument*, originating directly or
37 // indirectly from the EFI_FILE_PROTOCOL caller, exceeds
38 // VIRTIO_FS_MAX_PATHNAME_LENGTH, then the argument is rejected. (Length is
39 // defined as the number of CHAR16 elements in the UEFI-style pathname,
40 // excluding the terminating L'\0'.) This is a restriction that's checked on
41 // external UEFI-style pathname inputs.
42 //
43 // The limit is not expected to be a practical limitation; it's only supposed
44 // to prevent attempts at overflowing size calculations. For both kinds of
45 // pathnames, separate limits could be used; a common limit is used purely for
46 // simplicity.
47 //
48 #define VIRTIO_FS_MAX_PATHNAME_LENGTH ((UINTN)65535)
49
50 //
51 // Filesystem label encoded in UCS-2, transformed from the UTF-8 representation
52 // in "VIRTIO_FS_CONFIG.Tag", and NUL-terminated. Only the printable ASCII code
53 // points (U+0020 through U+007E) are supported.
54 //
55 typedef CHAR16 VIRTIO_FS_LABEL[VIRTIO_FS_TAG_BYTES + 1];
56
57 //
58 // Main context structure, expressing an EFI_SIMPLE_FILE_SYSTEM_PROTOCOL
59 // interface on top of the Virtio Filesystem device.
60 //
61 typedef struct {
62 //
63 // Parts of this structure are initialized / torn down in various functions
64 // at various call depths. The table to the right should make it easier to
65 // track them.
66 //
67 // field init function init depth
68 // ----------- ------------------ ----------
69 UINT64 Signature; // DriverBindingStart 0
70 VIRTIO_DEVICE_PROTOCOL *Virtio; // DriverBindingStart 0
71 VIRTIO_FS_LABEL Label; // VirtioFsInit 1
72 UINT16 QueueSize; // VirtioFsInit 1
73 VRING Ring; // VirtioRingInit 2
74 VOID *RingMap; // VirtioRingMap 2
75 UINT64 RequestId; // FuseInitSession 1
76 EFI_EVENT ExitBoot; // DriverBindingStart 0
77 LIST_ENTRY OpenFiles; // DriverBindingStart 0
78 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL SimpleFs; // DriverBindingStart 0
79 } VIRTIO_FS;
80
81 #define VIRTIO_FS_FROM_SIMPLE_FS(SimpleFsReference) \
82 CR (SimpleFsReference, VIRTIO_FS, SimpleFs, VIRTIO_FS_SIG);
83
84 //
85 // Structure for describing a contiguous buffer, potentially mapped for Virtio
86 // transfer.
87 //
88 typedef struct {
89 //
90 // The following fields originate from the owner of the buffer.
91 //
92 VOID *Buffer;
93 UINTN Size;
94 //
95 // All of the fields below, until the end of the structure, are
96 // zero-initialized when the structure is initially validated.
97 //
98 // Mapped, MappedAddress and Mapping are updated when the buffer is mapped
99 // for VirtioOperationBusMasterRead or VirtioOperationBusMasterWrite. They
100 // are again updated when the buffer is unmapped.
101 //
102 BOOLEAN Mapped;
103 EFI_PHYSICAL_ADDRESS MappedAddress;
104 VOID *Mapping;
105 //
106 // Transferred is updated after VirtioFlush() returns successfully:
107 // - for VirtioOperationBusMasterRead, Transferred is set to Size;
108 // - for VirtioOperationBusMasterWrite, Transferred is calculated from the
109 // UsedLen output parameter of VirtioFlush().
110 //
111 UINTN Transferred;
112 } VIRTIO_FS_IO_VECTOR;
113
114 //
115 // Structure for describing a list of IO Vectors.
116 //
117 typedef struct {
118 //
119 // The following fields originate from the owner of the buffers.
120 //
121 VIRTIO_FS_IO_VECTOR *IoVec;
122 UINTN NumVec;
123 //
124 // TotalSize is calculated when the scatter-gather list is initially
125 // validated.
126 //
127 UINT32 TotalSize;
128 } VIRTIO_FS_SCATTER_GATHER_LIST;
129
130 //
131 // Private context structure that exposes EFI_FILE_PROTOCOL on top of an open
132 // FUSE file reference.
133 //
134 typedef struct {
135 UINT64 Signature;
136 EFI_FILE_PROTOCOL SimpleFile;
137 BOOLEAN IsDirectory;
138 BOOLEAN IsOpenForWriting;
139 VIRTIO_FS *OwnerFs;
140 LIST_ENTRY OpenFilesEntry;
141 CHAR8 *CanonicalPathname;
142 //
143 // In the FUSE wire protocol, every request except FUSE_INIT refers to a
144 // file, namely by the "VIRTIO_FS_FUSE_REQUEST.NodeId" field; that is, by the
145 // inode number of the file. However, some of the FUSE requests that we need
146 // for some of the EFI_FILE_PROTOCOL member functions require an open file
147 // handle *in addition* to the inode number. For simplicity, whenever a
148 // VIRTIO_FS_FILE object is created, primarily defined by its NodeId field,
149 // we also *open* the referenced file at once, and save the returned file
150 // handle in the FuseHandle field. This way, when an EFI_FILE_PROTOCOL member
151 // function must send a FUSE request that needs the file handle *in addition*
152 // to the inode number, FuseHandle will be at our disposal at once.
153 //
154 UINT64 NodeId;
155 UINT64 FuseHandle;
156 } VIRTIO_FS_FILE;
157
158 #define VIRTIO_FS_FILE_FROM_SIMPLE_FILE(SimpleFileReference) \
159 CR (SimpleFileReference, VIRTIO_FS_FILE, SimpleFile, VIRTIO_FS_FILE_SIG);
160
161 #define VIRTIO_FS_FILE_FROM_OPEN_FILES_ENTRY(OpenFilesEntryReference) \
162 CR (OpenFilesEntryReference, VIRTIO_FS_FILE, OpenFilesEntry, \
163 VIRTIO_FS_FILE_SIG);
164
165 //
166 // Initialization and helper routines for the Virtio Filesystem device.
167 //
168
169 EFI_STATUS
170 VirtioFsInit (
171 IN OUT VIRTIO_FS *VirtioFs
172 );
173
174 VOID
175 VirtioFsUninit (
176 IN OUT VIRTIO_FS *VirtioFs
177 );
178
179 VOID
180 EFIAPI
181 VirtioFsExitBoot (
182 IN EFI_EVENT ExitBootEvent,
183 IN VOID *VirtioFsAsVoid
184 );
185
186 EFI_STATUS
187 VirtioFsSgListsValidate (
188 IN VIRTIO_FS *VirtioFs,
189 IN OUT VIRTIO_FS_SCATTER_GATHER_LIST *RequestSgList,
190 IN OUT VIRTIO_FS_SCATTER_GATHER_LIST *ResponseSgList OPTIONAL
191 );
192
193 EFI_STATUS
194 VirtioFsSgListsSubmit (
195 IN OUT VIRTIO_FS *VirtioFs,
196 IN OUT VIRTIO_FS_SCATTER_GATHER_LIST *RequestSgList,
197 IN OUT VIRTIO_FS_SCATTER_GATHER_LIST *ResponseSgList OPTIONAL
198 );
199
200 EFI_STATUS
201 VirtioFsFuseNewRequest (
202 IN OUT VIRTIO_FS *VirtioFs,
203 OUT VIRTIO_FS_FUSE_REQUEST *Request,
204 IN UINT32 RequestSize,
205 IN VIRTIO_FS_FUSE_OPCODE Opcode,
206 IN UINT64 NodeId
207 );
208
209 EFI_STATUS
210 VirtioFsFuseCheckResponse (
211 IN VIRTIO_FS_SCATTER_GATHER_LIST *ResponseSgList,
212 IN UINT64 RequestId,
213 OUT UINTN *TailBufferFill
214 );
215
216 EFI_STATUS
217 VirtioFsErrnoToEfiStatus (
218 IN INT32 Errno
219 );
220
221 EFI_STATUS
222 VirtioFsAppendPath (
223 IN CHAR8 *LhsPath8,
224 IN CHAR16 *RhsPath16,
225 OUT CHAR8 **ResultPath8,
226 OUT BOOLEAN *RootEscape
227 );
228
229 EFI_STATUS
230 VirtioFsLookupMostSpecificParentDir (
231 IN OUT VIRTIO_FS *VirtioFs,
232 IN OUT CHAR8 *Path,
233 OUT UINT64 *DirNodeId,
234 OUT CHAR8 **LastComponent
235 );
236
237 EFI_STATUS
238 VirtioFsGetBasename (
239 IN CHAR8 *Path,
240 OUT CHAR16 *Basename OPTIONAL,
241 IN OUT UINTN *BasenameSize
242 );
243
244 EFI_STATUS
245 VirtioFsFuseAttrToEfiFileInfo (
246 IN VIRTIO_FS_FUSE_ATTRIBUTES_RESPONSE *FuseAttr,
247 OUT EFI_FILE_INFO *FileInfo
248 );
249
250 //
251 // Wrapper functions for FUSE commands (primitives).
252 //
253
254 EFI_STATUS
255 VirtioFsFuseLookup (
256 IN OUT VIRTIO_FS *VirtioFs,
257 IN UINT64 DirNodeId,
258 IN CHAR8 *Name,
259 OUT UINT64 *NodeId,
260 OUT VIRTIO_FS_FUSE_ATTRIBUTES_RESPONSE *FuseAttr
261 );
262
263 EFI_STATUS
264 VirtioFsFuseForget (
265 IN OUT VIRTIO_FS *VirtioFs,
266 IN UINT64 NodeId
267 );
268
269 EFI_STATUS
270 VirtioFsFuseGetAttr (
271 IN OUT VIRTIO_FS *VirtioFs,
272 IN UINT64 NodeId,
273 OUT VIRTIO_FS_FUSE_ATTRIBUTES_RESPONSE *FuseAttr
274 );
275
276 EFI_STATUS
277 VirtioFsFuseMkDir (
278 IN OUT VIRTIO_FS *VirtioFs,
279 IN UINT64 ParentNodeId,
280 IN CHAR8 *Name,
281 OUT UINT64 *NodeId
282 );
283
284 EFI_STATUS
285 VirtioFsFuseRemoveFileOrDir (
286 IN OUT VIRTIO_FS *VirtioFs,
287 IN UINT64 ParentNodeId,
288 IN CHAR8 *Name,
289 IN BOOLEAN IsDir
290 );
291
292 EFI_STATUS
293 VirtioFsFuseOpen (
294 IN OUT VIRTIO_FS *VirtioFs,
295 IN UINT64 NodeId,
296 IN BOOLEAN ReadWrite,
297 OUT UINT64 *FuseHandle
298 );
299
300 EFI_STATUS
301 VirtioFsFuseStatFs (
302 IN OUT VIRTIO_FS *VirtioFs,
303 IN UINT64 NodeId,
304 OUT VIRTIO_FS_FUSE_STATFS_RESPONSE *FilesysAttr
305 );
306
307 EFI_STATUS
308 VirtioFsFuseReleaseFileOrDir (
309 IN OUT VIRTIO_FS *VirtioFs,
310 IN UINT64 NodeId,
311 IN UINT64 FuseHandle,
312 IN BOOLEAN IsDir
313 );
314
315 EFI_STATUS
316 VirtioFsFuseFsyncFileOrDir (
317 IN OUT VIRTIO_FS *VirtioFs,
318 IN UINT64 NodeId,
319 IN UINT64 FuseHandle,
320 IN BOOLEAN IsDir
321 );
322
323 EFI_STATUS
324 VirtioFsFuseFlush (
325 IN OUT VIRTIO_FS *VirtioFs,
326 IN UINT64 NodeId,
327 IN UINT64 FuseHandle
328 );
329
330 EFI_STATUS
331 VirtioFsFuseInitSession (
332 IN OUT VIRTIO_FS *VirtioFs
333 );
334
335 EFI_STATUS
336 VirtioFsFuseOpenDir (
337 IN OUT VIRTIO_FS *VirtioFs,
338 IN UINT64 NodeId,
339 OUT UINT64 *FuseHandle
340 );
341
342 EFI_STATUS
343 VirtioFsFuseOpenOrCreate (
344 IN OUT VIRTIO_FS *VirtioFs,
345 IN UINT64 ParentNodeId,
346 IN CHAR8 *Name,
347 OUT UINT64 *NodeId,
348 OUT UINT64 *FuseHandle
349 );
350
351 //
352 // EFI_SIMPLE_FILE_SYSTEM_PROTOCOL member functions for the Virtio Filesystem
353 // driver.
354 //
355
356 EFI_STATUS
357 EFIAPI
358 VirtioFsOpenVolume (
359 IN EFI_SIMPLE_FILE_SYSTEM_PROTOCOL *This,
360 OUT EFI_FILE_PROTOCOL **Root
361 );
362
363 //
364 // EFI_FILE_PROTOCOL member functions for the Virtio Filesystem driver.
365 //
366
367 EFI_STATUS
368 EFIAPI
369 VirtioFsSimpleFileClose (
370 IN EFI_FILE_PROTOCOL *This
371 );
372
373 EFI_STATUS
374 EFIAPI
375 VirtioFsSimpleFileDelete (
376 IN EFI_FILE_PROTOCOL *This
377 );
378
379 EFI_STATUS
380 EFIAPI
381 VirtioFsSimpleFileFlush (
382 IN EFI_FILE_PROTOCOL *This
383 );
384
385 EFI_STATUS
386 EFIAPI
387 VirtioFsSimpleFileGetInfo (
388 IN EFI_FILE_PROTOCOL *This,
389 IN EFI_GUID *InformationType,
390 IN OUT UINTN *BufferSize,
391 OUT VOID *Buffer
392 );
393
394 EFI_STATUS
395 EFIAPI
396 VirtioFsSimpleFileGetPosition (
397 IN EFI_FILE_PROTOCOL *This,
398 OUT UINT64 *Position
399 );
400
401 EFI_STATUS
402 EFIAPI
403 VirtioFsSimpleFileOpen (
404 IN EFI_FILE_PROTOCOL *This,
405 OUT EFI_FILE_PROTOCOL **NewHandle,
406 IN CHAR16 *FileName,
407 IN UINT64 OpenMode,
408 IN UINT64 Attributes
409 );
410
411 EFI_STATUS
412 EFIAPI
413 VirtioFsSimpleFileRead (
414 IN EFI_FILE_PROTOCOL *This,
415 IN OUT UINTN *BufferSize,
416 OUT VOID *Buffer
417 );
418
419 EFI_STATUS
420 EFIAPI
421 VirtioFsSimpleFileSetInfo (
422 IN EFI_FILE_PROTOCOL *This,
423 IN EFI_GUID *InformationType,
424 IN UINTN BufferSize,
425 IN VOID *Buffer
426 );
427
428 EFI_STATUS
429 EFIAPI
430 VirtioFsSimpleFileSetPosition (
431 IN EFI_FILE_PROTOCOL *This,
432 IN UINT64 Position
433 );
434
435 EFI_STATUS
436 EFIAPI
437 VirtioFsSimpleFileWrite (
438 IN EFI_FILE_PROTOCOL *This,
439 IN OUT UINTN *BufferSize,
440 IN VOID *Buffer
441 );
442
443 #endif // VIRTIO_FS_DXE_H_