VirtualBox

source: vbox/trunk/src/VBox/VMM/PDMAsyncCompletionFile.cpp@ 22978

Last change on this file since 22978 was 22978, checked in by vboxsync, 15 years ago

PDMAsyncCompletion: Fix crash on FreeBSD with failsafe manager. Need to advance to next task before freeing it. File sizes are only set during writes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 26.0 KB
Line 
1/* $Id: PDMAsyncCompletionFile.cpp 22978 2009-09-13 13:38:16Z vboxsync $ */
2/** @file
3 * PDM Async I/O - Transport data asynchronous in R3 using EMT.
4 */
5
6/*
7 * Copyright (C) 2006-2008 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22
23
24/*******************************************************************************
25* Header Files *
26*******************************************************************************/
27#define LOG_GROUP LOG_GROUP_PDM_ASYNC_COMPLETION
28#include "PDMInternal.h"
29#include <VBox/pdm.h>
30#include <VBox/mm.h>
31#include <VBox/vm.h>
32#include <VBox/err.h>
33
34#include <VBox/log.h>
35#include <iprt/asm.h>
36#include <iprt/assert.h>
37#include <iprt/thread.h>
38#include <iprt/mem.h>
39#include <iprt/critsect.h>
40#include <iprt/file.h>
41#include <iprt/semaphore.h>
42#include <iprt/string.h>
43
44#include "PDMAsyncCompletionFileInternal.h"
45
46/**
47 * Frees a task.
48 *
49 * @returns nothing.
50 * @param pEndpoint Pointer to the endpoint the segment was for.
51 * @param pTask The task to free.
52 */
53void pdmacFileTaskFree(PPDMASYNCCOMPLETIONENDPOINTFILE pEndpoint,
54 PPDMACTASKFILE pTask)
55{
56 PPDMASYNCCOMPLETIONEPCLASSFILE pEpClass = (PPDMASYNCCOMPLETIONEPCLASSFILE)pEndpoint->Core.pEpClass;
57
58 LogFlowFunc((": pEndpoint=%p pTask=%p\n", pEndpoint, pTask));
59
60 /* Try the per endpoint cache first. */
61 if (pEndpoint->cTasksCached < pEpClass->cTasksCacheMax)
62 {
63 /* Add it to the list. */
64 pEndpoint->pTasksFreeTail->pNext = pTask;
65 pEndpoint->pTasksFreeTail = pTask;
66 ASMAtomicIncU32(&pEndpoint->cTasksCached);
67 }
68 else if (false)
69 {
70 /* Bigger class cache */
71 }
72 else
73 {
74 Log(("Freeing task %p because all caches are full\n", pTask));
75 MMR3HeapFree(pTask);
76 }
77}
78
79/**
80 * Allocates a task segment
81 *
82 * @returns Pointer to the new task segment or NULL
83 * @param pEndpoint Pointer to the endpoint
84 */
85PPDMACTASKFILE pdmacFileTaskAlloc(PPDMASYNCCOMPLETIONENDPOINTFILE pEndpoint)
86{
87 PPDMACTASKFILE pTask = NULL;
88
89 /* Try the small per endpoint cache first. */
90 if (pEndpoint->pTasksFreeHead == pEndpoint->pTasksFreeTail)
91 {
92 /* Try the bigger endpoint class cache. */
93 PPDMASYNCCOMPLETIONEPCLASSFILE pEndpointClass = (PPDMASYNCCOMPLETIONEPCLASSFILE)pEndpoint->Core.pEpClass;
94
95#if 0
96 /* We start with the assigned slot id to distribute the load when allocating new tasks. */
97 unsigned iSlot = pEndpoint->iSlotStart;
98 do
99 {
100 pTask = (PPDMASYNCCOMPLETIONTASK)ASMAtomicXchgPtr((void * volatile *)&pEndpointClass->apTaskCache[iSlot], NULL);
101 if (pTask)
102 break;
103
104 iSlot = (iSlot + 1) % RT_ELEMENTS(pEndpointClass->apTaskCache);
105 } while (iSlot != pEndpoint->iSlotStart);
106#endif
107 if (!pTask)
108 {
109 /*
110 * Allocate completely new.
111 * If this fails we return NULL.
112 */
113 int rc = MMR3HeapAllocZEx(pEndpointClass->Core.pVM, MM_TAG_PDM_ASYNC_COMPLETION,
114 sizeof(PDMACTASKFILE),
115 (void **)&pTask);
116 if (RT_FAILURE(rc))
117 pTask = NULL;
118
119 LogFlow(("Allocated task %p\n", pTask));
120 }
121#if 0
122 else
123 {
124 /* Remove the first element and put the rest into the slot again. */
125 PPDMASYNCCOMPLETIONTASK pTaskHeadNew = pTask->pNext;
126
127 pTaskHeadNew->pPrev = NULL;
128
129 /* Put back into the list adding any new tasks. */
130 while (true)
131 {
132 bool fChanged = ASMAtomicCmpXchgPtr((void * volatile *)&pEndpointClass->apTaskCache[iSlot], pTaskHeadNew, NULL);
133
134 if (fChanged)
135 break;
136
137 PPDMASYNCCOMPLETIONTASK pTaskHead = (PPDMASYNCCOMPLETIONTASK)ASMAtomicXchgPtr((void * volatile *)&pEndpointClass->apTaskCache[iSlot], NULL);
138
139 /* The new task could be taken inbetween */
140 if (pTaskHead)
141 {
142 /* Go to the end of the probably much shorter new list. */
143 PPDMASYNCCOMPLETIONTASK pTaskTail = pTaskHead;
144 while (pTaskTail->pNext)
145 pTaskTail = pTaskTail->pNext;
146
147 /* Concatenate */
148 pTaskTail->pNext = pTaskHeadNew;
149
150 pTaskHeadNew = pTaskHead;
151 }
152 /* Another round trying to change the list. */
153 }
154 /* We got a task from the global cache so decrement the counter */
155 ASMAtomicDecU32(&pEndpointClass->cTasksCached);
156 }
157#endif
158 }
159 else
160 {
161 /* Grab a free task from the head. */
162 AssertMsg(pEndpoint->cTasksCached > 0, ("No tasks cached but list contains more than one element\n"));
163
164 pTask = pEndpoint->pTasksFreeHead;
165 pEndpoint->pTasksFreeHead = pTask->pNext;
166 ASMAtomicDecU32(&pEndpoint->cTasksCached);
167 }
168
169 pTask->pNext = NULL;
170
171 return pTask;
172}
173
174PPDMACTASKFILE pdmacFileEpGetNewTasks(PPDMASYNCCOMPLETIONENDPOINTFILE pEndpoint)
175{
176 PPDMACTASKFILE pTasks = NULL;
177
178 /*
179 * Get pending tasks.
180 */
181 pTasks = (PPDMACTASKFILE)ASMAtomicXchgPtr((void * volatile *)&pEndpoint->pTasksNewHead, NULL);
182
183 /* Reverse the list to process in FIFO order. */
184 if (pTasks)
185 {
186 PPDMACTASKFILE pTask = pTasks;
187
188 pTasks = NULL;
189
190 while (pTask)
191 {
192 PPDMACTASKFILE pCur = pTask;
193 pTask = pTask->pNext;
194 pCur->pNext = pTasks;
195 pTasks = pCur;
196 }
197 }
198
199 return pTasks;
200}
201
202static void pdmacFileAioMgrWakeup(PPDMACEPFILEMGR pAioMgr)
203{
204 bool fWokenUp = ASMAtomicXchgBool(&pAioMgr->fWokenUp, true);
205
206 if (!fWokenUp)
207 {
208 int rc = VINF_SUCCESS;
209 bool fWaitingEventSem = ASMAtomicReadBool(&pAioMgr->fWaitingEventSem);
210
211 if (fWaitingEventSem)
212 rc = RTSemEventSignal(pAioMgr->EventSem);
213
214 AssertRC(rc);
215 }
216}
217
218static int pdmacFileAioMgrWaitForBlockingEvent(PPDMACEPFILEMGR pAioMgr, PDMACEPFILEAIOMGRBLOCKINGEVENT enmEvent)
219{
220 int rc = VINF_SUCCESS;
221
222 ASMAtomicWriteU32((volatile uint32_t *)&pAioMgr->enmBlockingEvent, enmEvent);
223 Assert(!pAioMgr->fBlockingEventPending);
224 ASMAtomicXchgBool(&pAioMgr->fBlockingEventPending, true);
225
226 /* Wakeup the async I/O manager */
227 pdmacFileAioMgrWakeup(pAioMgr);
228
229 /* Wait for completion. */
230 rc = RTSemEventWait(pAioMgr->EventSemBlock, RT_INDEFINITE_WAIT);
231 AssertRC(rc);
232
233 ASMAtomicXchgBool(&pAioMgr->fBlockingEventPending, false);
234 ASMAtomicWriteU32((volatile uint32_t *)&pAioMgr->enmBlockingEvent, PDMACEPFILEAIOMGRBLOCKINGEVENT_INVALID);
235
236 return rc;
237}
238
239int pdmacFileAioMgrAddEndpoint(PPDMACEPFILEMGR pAioMgr, PPDMASYNCCOMPLETIONENDPOINTFILE pEndpoint)
240{
241 int rc;
242
243 rc = RTCritSectEnter(&pAioMgr->CritSectBlockingEvent);
244 AssertRCReturn(rc, rc);
245
246 ASMAtomicWritePtr((void * volatile *)&pAioMgr->BlockingEventData.AddEndpoint.pEndpoint, pEndpoint);
247 rc = pdmacFileAioMgrWaitForBlockingEvent(pAioMgr, PDMACEPFILEAIOMGRBLOCKINGEVENT_ADD_ENDPOINT);
248
249 RTCritSectLeave(&pAioMgr->CritSectBlockingEvent);
250
251 if (RT_SUCCESS(rc))
252 ASMAtomicWritePtr((void * volatile *)&pEndpoint->pAioMgr, pAioMgr);
253
254 return rc;
255}
256
257static int pdmacFileAioMgrRemoveEndpoint(PPDMACEPFILEMGR pAioMgr, PPDMASYNCCOMPLETIONENDPOINTFILE pEndpoint)
258{
259 int rc;
260
261 rc = RTCritSectEnter(&pAioMgr->CritSectBlockingEvent);
262 AssertRCReturn(rc, rc);
263
264 ASMAtomicWritePtr((void * volatile *)&pAioMgr->BlockingEventData.RemoveEndpoint.pEndpoint, pEndpoint);
265 rc = pdmacFileAioMgrWaitForBlockingEvent(pAioMgr, PDMACEPFILEAIOMGRBLOCKINGEVENT_REMOVE_ENDPOINT);
266
267 RTCritSectLeave(&pAioMgr->CritSectBlockingEvent);
268
269 return rc;
270}
271
272static int pdmacFileAioMgrCloseEndpoint(PPDMACEPFILEMGR pAioMgr, PPDMASYNCCOMPLETIONENDPOINTFILE pEndpoint)
273{
274 int rc;
275
276 rc = RTCritSectEnter(&pAioMgr->CritSectBlockingEvent);
277 AssertRCReturn(rc, rc);
278
279 ASMAtomicWritePtr((void * volatile *)&pAioMgr->BlockingEventData.CloseEndpoint.pEndpoint, pEndpoint);
280 rc = pdmacFileAioMgrWaitForBlockingEvent(pAioMgr, PDMACEPFILEAIOMGRBLOCKINGEVENT_CLOSE_ENDPOINT);
281
282 RTCritSectLeave(&pAioMgr->CritSectBlockingEvent);
283
284 return rc;
285}
286
287static int pdmacFileAioMgrShutdown(PPDMACEPFILEMGR pAioMgr)
288{
289 int rc;
290
291 rc = RTCritSectEnter(&pAioMgr->CritSectBlockingEvent);
292 AssertRCReturn(rc, rc);
293
294 rc = pdmacFileAioMgrWaitForBlockingEvent(pAioMgr, PDMACEPFILEAIOMGRBLOCKINGEVENT_SHUTDOWN);
295
296 RTCritSectLeave(&pAioMgr->CritSectBlockingEvent);
297
298 return rc;
299}
300
301int pdmacFileEpAddTask(PPDMASYNCCOMPLETIONENDPOINTFILE pEndpoint, PPDMACTASKFILE pTask)
302{
303 PPDMACTASKFILE pNext;
304 do
305 {
306 pNext = pEndpoint->pTasksNewHead;
307 pTask->pNext = pNext;
308 } while (!ASMAtomicCmpXchgPtr((void * volatile *)&pEndpoint->pTasksNewHead, (void *)pTask, (void *)pNext));
309
310 pdmacFileAioMgrWakeup((PPDMACEPFILEMGR)ASMAtomicReadPtr((void * volatile *)&pEndpoint->pAioMgr));
311
312 return VINF_SUCCESS;
313}
314
315void pdmacFileEpTaskCompleted(PPDMACTASKFILE pTask, void *pvUser)
316{
317 PPDMASYNCCOMPLETIONTASKFILE pTaskFile = (PPDMASYNCCOMPLETIONTASKFILE)pvUser;
318
319 if (pTask->enmTransferType == PDMACTASKFILETRANSFER_FLUSH)
320 {
321 pdmR3AsyncCompletionCompleteTask(&pTaskFile->Core);
322 }
323 else
324 {
325 uint32_t uOld = ASMAtomicSubU32(&pTaskFile->cbTransferLeft, pTask->DataSeg.cbSeg);
326
327 if (!(uOld - pTask->DataSeg.cbSeg)
328 && !ASMAtomicXchgBool(&pTaskFile->fCompleted, true))
329 pdmR3AsyncCompletionCompleteTask(&pTaskFile->Core);
330 }
331}
332
333int pdmacFileEpTaskInitiate(PPDMASYNCCOMPLETIONTASK pTask,
334 PPDMASYNCCOMPLETIONENDPOINT pEndpoint, RTFOFF off,
335 PCPDMDATASEG paSegments, size_t cSegments,
336 size_t cbTransfer, PDMACTASKFILETRANSFER enmTransfer)
337{
338 int rc = VINF_SUCCESS;
339 PPDMASYNCCOMPLETIONENDPOINTFILE pEpFile = (PPDMASYNCCOMPLETIONENDPOINTFILE)pEndpoint;
340 PPDMASYNCCOMPLETIONTASKFILE pTaskFile = (PPDMASYNCCOMPLETIONTASKFILE)pTask;
341 PPDMACEPFILEMGR pAioMgr = pEpFile->pAioMgr;
342
343 Assert( (enmTransfer == PDMACTASKFILETRANSFER_READ)
344 || (enmTransfer == PDMACTASKFILETRANSFER_WRITE));
345
346 ASMAtomicWriteS32(&pTaskFile->cbTransferLeft, cbTransfer);
347 ASMAtomicWriteBool(&pTaskFile->fCompleted, false);
348
349 for (unsigned i = 0; i < cSegments; i++)
350 {
351 PPDMACTASKFILE pIoTask = pdmacFileTaskAlloc(pEpFile);
352 AssertPtr(pIoTask);
353
354 pIoTask->pEndpoint = pEpFile;
355 pIoTask->enmTransferType = enmTransfer;
356 pIoTask->Off = off;
357 pIoTask->DataSeg.cbSeg = paSegments[i].cbSeg;
358 pIoTask->DataSeg.pvSeg = paSegments[i].pvSeg;
359 pIoTask->pvUser = pTaskFile;
360 pIoTask->pfnCompleted = pdmacFileEpTaskCompleted;
361
362 /* Send it off to the I/O manager. */
363 pdmacFileEpAddTask(pEpFile, pIoTask);
364 off += paSegments[i].cbSeg;
365 cbTransfer -= paSegments[i].cbSeg;
366 }
367
368 AssertMsg(!cbTransfer, ("Incomplete transfer %u bytes left\n", cbTransfer));
369
370 if (ASMAtomicReadS32(&pTaskFile->cbTransferLeft) == 0
371 && !ASMAtomicXchgBool(&pTaskFile->fCompleted, true))
372 pdmR3AsyncCompletionCompleteTask(pTask);
373
374 return VINF_SUCCESS;
375}
376
377/**
378 * Creates a new async I/O manager.
379 *
380 * @returns VBox status code.
381 * @param pEpClass Pointer to the endpoint class data.
382 * @param ppAioMgr Where to store the pointer to the new async I/O manager on success.
383 */
384int pdmacFileAioMgrCreate(PPDMASYNCCOMPLETIONEPCLASSFILE pEpClass, PPPDMACEPFILEMGR ppAioMgr)
385{
386 int rc = VINF_SUCCESS;
387 PPDMACEPFILEMGR pAioMgrNew;
388
389 LogFlowFunc((": Entered\n"));
390
391 rc = MMR3HeapAllocZEx(pEpClass->Core.pVM, MM_TAG_PDM_ASYNC_COMPLETION, sizeof(PDMACEPFILEMGR), (void **)&pAioMgrNew);
392 if (RT_SUCCESS(rc))
393 {
394 pAioMgrNew->fFailsafe = pEpClass->fFailsafe;
395
396 rc = RTSemEventCreate(&pAioMgrNew->EventSem);
397 if (RT_SUCCESS(rc))
398 {
399 rc = RTSemEventCreate(&pAioMgrNew->EventSemBlock);
400 if (RT_SUCCESS(rc))
401 {
402 rc = RTCritSectInit(&pAioMgrNew->CritSectBlockingEvent);
403 if (RT_SUCCESS(rc))
404 {
405 /* Init the rest of the manager. */
406 if (!pAioMgrNew->fFailsafe)
407 rc = pdmacFileAioMgrNormalInit(pAioMgrNew);
408
409 if (RT_SUCCESS(rc))
410 {
411 pAioMgrNew->enmState = PDMACEPFILEMGRSTATE_RUNNING;
412
413 rc = RTThreadCreateF(&pAioMgrNew->Thread,
414 pAioMgrNew->fFailsafe
415 ? pdmacFileAioMgrFailsafe
416 : pdmacFileAioMgrNormal,
417 pAioMgrNew,
418 0,
419 RTTHREADTYPE_IO,
420 0,
421 "AioMgr%d-%s", pEpClass->cAioMgrs,
422 pAioMgrNew->fFailsafe
423 ? "F"
424 : "N");
425 if (RT_SUCCESS(rc))
426 {
427 /* Link it into the list. */
428 RTCritSectEnter(&pEpClass->CritSect);
429 pAioMgrNew->pNext = pEpClass->pAioMgrHead;
430 if (pEpClass->pAioMgrHead)
431 pEpClass->pAioMgrHead->pPrev = pAioMgrNew;
432 pEpClass->pAioMgrHead = pAioMgrNew;
433 pEpClass->cAioMgrs++;
434 RTCritSectLeave(&pEpClass->CritSect);
435
436 *ppAioMgr = pAioMgrNew;
437
438 Log(("PDMAC: Successfully created new file AIO Mgr {%s}\n", RTThreadGetName(pAioMgrNew->Thread)));
439 return VINF_SUCCESS;
440 }
441 pdmacFileAioMgrNormalDestroy(pAioMgrNew);
442 }
443 RTCritSectDelete(&pAioMgrNew->CritSectBlockingEvent);
444 }
445 RTSemEventDestroy(pAioMgrNew->EventSem);
446 }
447 RTSemEventDestroy(pAioMgrNew->EventSemBlock);
448 }
449 MMR3HeapFree(pAioMgrNew);
450 }
451
452 LogFlowFunc((": Leave rc=%Rrc\n", rc));
453
454 return rc;
455}
456
457/**
458 * Destroys a async I/O manager.
459 *
460 * @returns nothing.
461 * @param pAioMgr The async I/O manager to destroy.
462 */
463static void pdmacFileAioMgrDestroy(PPDMASYNCCOMPLETIONEPCLASSFILE pEpClassFile, PPDMACEPFILEMGR pAioMgr)
464{
465 int rc = pdmacFileAioMgrShutdown(pAioMgr);
466 AssertRC(rc);
467
468 /* Unlink from the list. */
469 rc = RTCritSectEnter(&pEpClassFile->CritSect);
470 AssertRC(rc);
471
472 PPDMACEPFILEMGR pPrev = pAioMgr->pPrev;
473 PPDMACEPFILEMGR pNext = pAioMgr->pNext;
474
475 if (pPrev)
476 pPrev->pNext = pNext;
477 else
478 pEpClassFile->pAioMgrHead = pNext;
479
480 if (pNext)
481 pNext->pPrev = pPrev;
482
483 pEpClassFile->cAioMgrs--;
484
485 rc = RTCritSectLeave(&pEpClassFile->CritSect);
486 AssertRC(rc);
487
488 /* Free the ressources. */
489 RTCritSectDelete(&pAioMgr->CritSectBlockingEvent);
490 RTSemEventDestroy(pAioMgr->EventSem);
491 if (!pAioMgr->fFailsafe)
492 pdmacFileAioMgrNormalDestroy(pAioMgr);
493
494 MMR3HeapFree(pAioMgr);
495}
496
497static int pdmacFileInitialize(PPDMASYNCCOMPLETIONEPCLASS pClassGlobals, PCFGMNODE pCfgNode)
498{
499 int rc = VINF_SUCCESS;
500 RTFILEAIOLIMITS AioLimits; /** < Async I/O limitations. */
501
502 PPDMASYNCCOMPLETIONEPCLASSFILE pEpClassFile = (PPDMASYNCCOMPLETIONEPCLASSFILE)pClassGlobals;
503
504 rc = RTFileAioGetLimits(&AioLimits);
505 if (RT_FAILURE(rc))
506 {
507 LogRel(("AIO: Async I/O manager not supported (rc=%Rrc). Falling back to failsafe manager\n",
508 rc));
509 pEpClassFile->fFailsafe = true;
510 }
511 else
512 {
513 pEpClassFile->uBitmaskAlignment = AioLimits.cbBufferAlignment ? ~((RTR3UINTPTR)AioLimits.cbBufferAlignment - 1) : RTR3UINTPTR_MAX;
514 pEpClassFile->cReqsOutstandingMax = AioLimits.cReqsOutstandingMax;
515 pEpClassFile->fFailsafe = false;
516 }
517
518 /* Init critical section. */
519 rc = RTCritSectInit(&pEpClassFile->CritSect);
520 if (RT_SUCCESS(rc))
521 {
522 /* Init cache structure */
523 rc = pdmacFileCacheInit(pEpClassFile, pCfgNode);
524 if (RT_FAILURE(rc))
525 RTCritSectDelete(&pEpClassFile->CritSect);
526 }
527
528 return rc;
529}
530
531static void pdmacFileTerminate(PPDMASYNCCOMPLETIONEPCLASS pClassGlobals)
532{
533 PPDMASYNCCOMPLETIONEPCLASSFILE pEpClassFile = (PPDMASYNCCOMPLETIONEPCLASSFILE)pClassGlobals;
534
535 /* All endpoints should be closed at this point. */
536 AssertMsg(!pEpClassFile->Core.pEndpointsHead, ("There are still endpoints left\n"));
537
538 /* Destroy all left async I/O managers. */
539 while (pEpClassFile->pAioMgrHead)
540 pdmacFileAioMgrDestroy(pEpClassFile, pEpClassFile->pAioMgrHead);
541
542 RTCritSectDelete(&pEpClassFile->CritSect);
543}
544
545static int pdmacFileEpInitialize(PPDMASYNCCOMPLETIONENDPOINT pEndpoint,
546 const char *pszUri, uint32_t fFlags)
547{
548 int rc = VINF_SUCCESS;
549 PPDMASYNCCOMPLETIONENDPOINTFILE pEpFile = (PPDMASYNCCOMPLETIONENDPOINTFILE)pEndpoint;
550 PPDMASYNCCOMPLETIONEPCLASSFILE pEpClassFile = (PPDMASYNCCOMPLETIONEPCLASSFILE)pEndpoint->pEpClass;
551
552 AssertMsgReturn((fFlags & ~(PDMACEP_FILE_FLAGS_READ_ONLY | PDMACEP_FILE_FLAGS_CACHING)) == 0,
553 ("PDMAsyncCompletion: Invalid flag specified\n"), VERR_INVALID_PARAMETER);
554
555 unsigned fFileFlags = fFlags & PDMACEP_FILE_FLAGS_READ_ONLY
556 ? RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_NONE
557 : RTFILE_O_READWRITE | RTFILE_O_OPEN | RTFILE_O_DENY_WRITE;
558
559 if (!pEpClassFile->fFailsafe)
560 {
561 fFileFlags |= (RTFILE_O_ASYNC_IO | RTFILE_O_WRITE_THROUGH);
562
563 /*
564 * We only disable the cache if the size of the file is a multiple of 512.
565 * Certain hosts like Windows, Linux and Solaris require that transfer sizes
566 * are aligned to the volume sector size.
567 * If not we just make sure that the data is written to disk with RTFILE_O_WRITE_THROUGH
568 * which will trash the host cache but ensures that the host cache will not
569 * contain dirty buffers.
570 */
571 RTFILE File = NIL_RTFILE;
572
573 rc = RTFileOpen(&File, pszUri, RTFILE_O_OPEN | RTFILE_O_READ | RTFILE_O_DENY_NONE);
574 if (RT_SUCCESS(rc))
575 {
576 uint64_t cbSize;
577
578 rc = RTFileGetSize(File, &cbSize);
579 if (RT_SUCCESS(rc) && ((cbSize % 512) == 0))
580 {
581 fFileFlags &= ~RTFILE_O_WRITE_THROUGH;
582 fFileFlags |= RTFILE_O_NO_CACHE;
583 }
584
585 pEpFile->cbFile = cbSize;
586
587 RTFileClose(File);
588 }
589 }
590
591 pEpFile->fFlags = fFileFlags;
592
593 /* Open with final flags. */
594 rc = RTFileOpen(&pEpFile->File, pszUri, fFileFlags);
595 if (RT_SUCCESS(rc))
596 {
597 rc = RTFileGetSize(pEpFile->File, (uint64_t *)&pEpFile->cbFile);
598 if (RT_SUCCESS(rc))
599 {
600 /* Initialize the segment cache */
601 rc = MMR3HeapAllocZEx(pEpClassFile->Core.pVM, MM_TAG_PDM_ASYNC_COMPLETION,
602 sizeof(PDMACTASKFILE),
603 (void **)&pEpFile->pTasksFreeHead);
604 if (RT_SUCCESS(rc))
605 {
606 PPDMACEPFILEMGR pAioMgr = NULL;
607
608 pEpFile->pTasksFreeTail = pEpFile->pTasksFreeHead;
609 pEpFile->cTasksCached = 0;
610
611 if (pEpClassFile->fFailsafe)
612 {
613 /* Safe mode. Every file has its own async I/O manager. */
614 rc = pdmacFileAioMgrCreate(pEpClassFile, &pAioMgr);
615 AssertRC(rc);
616 }
617 else
618 {
619 if (fFlags & PDMACEP_FILE_FLAGS_CACHING)
620 {
621 pEpFile->fCaching = true;
622 rc = pdmacFileEpCacheInit(pEpFile, pEpClassFile);
623 if (RT_FAILURE(rc))
624 {
625 LogRel(("AIOMgr: Endpoint for \"%s\" was opened with caching but initializing cache failed. Disabled caching\n", pszUri));
626 pEpFile->fCaching = false;
627 }
628 }
629
630 /* Check for an idling one or create new if not found */
631 if (!pEpClassFile->pAioMgrHead)
632 {
633 rc = pdmacFileAioMgrCreate(pEpClassFile, &pAioMgr);
634 AssertRC(rc);
635 }
636 else
637 {
638 pAioMgr = pEpClassFile->pAioMgrHead;
639 }
640 }
641
642 pEpFile->enmState = PDMASYNCCOMPLETIONENDPOINTFILESTATE_ACTIVE;
643
644 /* Assign the endpoint to the thread. */
645 rc = pdmacFileAioMgrAddEndpoint(pAioMgr, pEpFile);
646 if (RT_FAILURE(rc))
647 MMR3HeapFree(pEpFile->pTasksFreeHead);
648 }
649 }
650
651 if (RT_FAILURE(rc))
652 RTFileClose(pEpFile->File);
653 }
654
655 return rc;
656}
657
658static int pdmacFileEpClose(PPDMASYNCCOMPLETIONENDPOINT pEndpoint)
659{
660 PPDMASYNCCOMPLETIONENDPOINTFILE pEpFile = (PPDMASYNCCOMPLETIONENDPOINTFILE)pEndpoint;
661 PPDMASYNCCOMPLETIONEPCLASSFILE pEpClassFile = (PPDMASYNCCOMPLETIONEPCLASSFILE)pEndpoint->pEpClass;
662
663 /* Make sure that all tasks finished for this endpoint. */
664 int rc = pdmacFileAioMgrCloseEndpoint(pEpFile->pAioMgr, pEpFile);
665 AssertRC(rc);
666
667 /*
668 * If the async I/O manager is in failsafe mode this is the only endpoint
669 * he processes and thus can be destroyed now.
670 */
671 if (pEpFile->pAioMgr->fFailsafe)
672 pdmacFileAioMgrDestroy(pEpClassFile, pEpFile->pAioMgr);
673
674 /* Free cached tasks. */
675 PPDMACTASKFILE pTask = pEpFile->pTasksFreeHead;
676
677 while (pTask)
678 {
679 PPDMACTASKFILE pTaskFree = pTask;
680 pTask = pTask->pNext;
681 MMR3HeapFree(pTaskFree);
682 }
683
684 /* Free the cached data. */
685 if (pEpFile->fCaching)
686 pdmacFileEpCacheDestroy(pEpFile);
687
688 return VINF_SUCCESS;
689}
690
691static int pdmacFileEpRead(PPDMASYNCCOMPLETIONTASK pTask,
692 PPDMASYNCCOMPLETIONENDPOINT pEndpoint, RTFOFF off,
693 PCPDMDATASEG paSegments, size_t cSegments,
694 size_t cbRead)
695{
696 PPDMASYNCCOMPLETIONENDPOINTFILE pEpFile = (PPDMASYNCCOMPLETIONENDPOINTFILE)pEndpoint;
697
698 if (pEpFile->fCaching)
699 return pdmacFileEpCacheRead(pEpFile, (PPDMASYNCCOMPLETIONTASKFILE)pTask,
700 off, paSegments, cSegments, cbRead);
701 else
702 return pdmacFileEpTaskInitiate(pTask, pEndpoint, off, paSegments, cSegments, cbRead,
703 PDMACTASKFILETRANSFER_READ);
704}
705
706static int pdmacFileEpWrite(PPDMASYNCCOMPLETIONTASK pTask,
707 PPDMASYNCCOMPLETIONENDPOINT pEndpoint, RTFOFF off,
708 PCPDMDATASEG paSegments, size_t cSegments,
709 size_t cbWrite)
710{
711 PPDMASYNCCOMPLETIONENDPOINTFILE pEpFile = (PPDMASYNCCOMPLETIONENDPOINTFILE)pEndpoint;
712
713 if (RT_UNLIKELY(pEpFile->fReadonly))
714 return VERR_NOT_SUPPORTED;
715
716 if (pEpFile->fCaching)
717 return pdmacFileEpCacheWrite(pEpFile, (PPDMASYNCCOMPLETIONTASKFILE)pTask,
718 off, paSegments, cSegments, cbWrite);
719 else
720 return pdmacFileEpTaskInitiate(pTask, pEndpoint, off, paSegments, cSegments, cbWrite,
721 PDMACTASKFILETRANSFER_WRITE);
722}
723
724static int pdmacFileEpFlush(PPDMASYNCCOMPLETIONTASK pTask,
725 PPDMASYNCCOMPLETIONENDPOINT pEndpoint)
726{
727 PPDMASYNCCOMPLETIONENDPOINTFILE pEpFile = (PPDMASYNCCOMPLETIONENDPOINTFILE)pEndpoint;
728 PPDMASYNCCOMPLETIONTASKFILE pTaskFile = (PPDMASYNCCOMPLETIONTASKFILE)pTask;
729
730 if (RT_UNLIKELY(pEpFile->fReadonly))
731 return VERR_NOT_SUPPORTED;
732
733 pTaskFile->cbTransferLeft = 0;
734
735 PPDMACTASKFILE pIoTask = pdmacFileTaskAlloc(pEpFile);
736 AssertPtr(pIoTask);
737
738 pIoTask->pEndpoint = pEpFile;
739 pIoTask->enmTransferType = PDMACTASKFILETRANSFER_FLUSH;
740 pIoTask->pvUser = pTaskFile;
741 pIoTask->pfnCompleted = pdmacFileEpTaskCompleted;
742 pdmacFileEpAddTask(pEpFile, pIoTask);
743
744 return VINF_SUCCESS;
745}
746
747static int pdmacFileEpGetSize(PPDMASYNCCOMPLETIONENDPOINT pEndpoint, uint64_t *pcbSize)
748{
749 PPDMASYNCCOMPLETIONENDPOINTFILE pEpFile = (PPDMASYNCCOMPLETIONENDPOINTFILE)pEndpoint;
750
751 *pcbSize = ASMAtomicReadU64(&pEpFile->cbFile);
752
753 return VINF_SUCCESS;
754}
755
756const PDMASYNCCOMPLETIONEPCLASSOPS g_PDMAsyncCompletionEndpointClassFile =
757{
758 /* u32Version */
759 PDMAC_EPCLASS_OPS_VERSION,
760 /* pcszName */
761 "File",
762 /* enmClassType */
763 PDMASYNCCOMPLETIONEPCLASSTYPE_FILE,
764 /* cbEndpointClassGlobal */
765 sizeof(PDMASYNCCOMPLETIONEPCLASSFILE),
766 /* cbEndpoint */
767 sizeof(PDMASYNCCOMPLETIONENDPOINTFILE),
768 /* cbTask */
769 sizeof(PDMASYNCCOMPLETIONTASKFILE),
770 /* pfnInitialize */
771 pdmacFileInitialize,
772 /* pfnTerminate */
773 pdmacFileTerminate,
774 /* pfnEpInitialize. */
775 pdmacFileEpInitialize,
776 /* pfnEpClose */
777 pdmacFileEpClose,
778 /* pfnEpRead */
779 pdmacFileEpRead,
780 /* pfnEpWrite */
781 pdmacFileEpWrite,
782 /* pfnEpFlush */
783 pdmacFileEpFlush,
784 /* pfnEpGetSize */
785 pdmacFileEpGetSize,
786 /* u32VersionEnd */
787 PDMAC_EPCLASS_OPS_VERSION
788};
789
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette