VirtualBox

source: vbox/trunk/src/VBox/VMM/include/PDMAsyncCompletionInternal.h@ 74795

Last change on this file since 74795 was 69111, checked in by vboxsync, 7 years ago

(C) year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 11.5 KB
Line 
1/* $Id: PDMAsyncCompletionInternal.h 69111 2017-10-17 14:26:02Z vboxsync $ */
2/** @file
3 * PDM - Pluggable Device Manager, Async I/O Completion internal header.
4 */
5
6/*
7 * Copyright (C) 2006-2017 Oracle Corporation
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
18#ifndef ___PDMAsyncCompletionInternal_h
19#define ___PDMAsyncCompletionInternal_h
20
21#include <iprt/critsect.h>
22#include <iprt/memcache.h>
23#include <iprt/sg.h>
24#include <VBox/types.h>
25#include <VBox/vmm/cfgm.h>
26#include <VBox/vmm/stam.h>
27#include <VBox/vmm/pdmasynccompletion.h>
28#include "PDMInternal.h"
29
30RT_C_DECLS_BEGIN
31
32
33/**
34 * PDM Async completion endpoint operations.
35 */
36typedef struct PDMASYNCCOMPLETIONEPCLASSOPS
37{
38 /** Version identifier. */
39 uint32_t u32Version;
40 /** Name of the endpoint class. */
41 const char *pszName;
42 /** Class type. */
43 PDMASYNCCOMPLETIONEPCLASSTYPE enmClassType;
44 /** Size of the global endpoint class data in bytes. */
45 size_t cbEndpointClassGlobal;
46 /** Size of an endpoint in bytes. */
47 size_t cbEndpoint;
48 /** size of a task in bytes. */
49 size_t cbTask;
50
51 /**
52 * Initializes the global data for a endpoint class.
53 *
54 * @returns VBox status code.
55 * @param pClassGlobals Pointer to the uninitialized globals data.
56 * @param pCfgNode Node for querying configuration data.
57 */
58 DECLR3CALLBACKMEMBER(int, pfnInitialize, (PPDMASYNCCOMPLETIONEPCLASS pClassGlobals, PCFGMNODE pCfgNode));
59
60 /**
61 * Frees all allocated resources which were allocated during init.
62 *
63 * @returns VBox status code.
64 * @param pClassGlobals Pointer to the globals data.
65 */
66 DECLR3CALLBACKMEMBER(void, pfnTerminate, (PPDMASYNCCOMPLETIONEPCLASS pClassGlobals));
67
68 /**
69 * Initializes a given endpoint.
70 *
71 * @returns VBox status code.
72 * @param pEndpoint Pointer to the uninitialized endpoint.
73 * @param pszUri Pointer to the string containing the endpoint
74 * destination (filename, IP address, ...)
75 * @param fFlags Creation flags.
76 */
77 DECLR3CALLBACKMEMBER(int, pfnEpInitialize, (PPDMASYNCCOMPLETIONENDPOINT pEndpoint,
78 const char *pszUri, uint32_t fFlags));
79
80 /**
81 * Closes a endpoint finishing all tasks.
82 *
83 * @returns VBox status code.
84 * @param pEndpoint Pointer to the endpoint to be closed.
85 */
86 DECLR3CALLBACKMEMBER(int, pfnEpClose, (PPDMASYNCCOMPLETIONENDPOINT pEndpoint));
87
88 /**
89 * Initiates a read request from the given endpoint.
90 *
91 * @returns VBox status code.
92 * @param pTask Pointer to the task object associated with the request.
93 * @param pEndpoint Endpoint the request is for.
94 * @param off Where to start reading from.
95 * @param paSegments Scatter gather list to store the data in.
96 * @param cSegments Number of segments in the list.
97 * @param cbRead The overall number of bytes to read.
98 */
99 DECLR3CALLBACKMEMBER(int, pfnEpRead, (PPDMASYNCCOMPLETIONTASK pTask,
100 PPDMASYNCCOMPLETIONENDPOINT pEndpoint, RTFOFF off,
101 PCRTSGSEG paSegments, size_t cSegments,
102 size_t cbRead));
103
104 /**
105 * Initiates a write request to the given endpoint.
106 *
107 * @returns VBox status code.
108 * @param pTask Pointer to the task object associated with the request.
109 * @param pEndpoint Endpoint the request is for.
110 * @param off Where to start writing to.
111 * @param paSegments Scatter gather list to store the data in.
112 * @param cSegments Number of segments in the list.
113 * @param cbRead The overall number of bytes to write.
114 */
115 DECLR3CALLBACKMEMBER(int, pfnEpWrite, (PPDMASYNCCOMPLETIONTASK pTask,
116 PPDMASYNCCOMPLETIONENDPOINT pEndpoint, RTFOFF off,
117 PCRTSGSEG paSegments, size_t cSegments,
118 size_t cbWrite));
119
120 /**
121 * Initiates a flush request on the given endpoint.
122 *
123 * @returns VBox status code.
124 * @param pTask Pointer to the task object associated with the request.
125 * @param pEndpoint Endpoint the request is for.
126 */
127 DECLR3CALLBACKMEMBER(int, pfnEpFlush, (PPDMASYNCCOMPLETIONTASK pTask,
128 PPDMASYNCCOMPLETIONENDPOINT pEndpoint));
129
130 /**
131 * Queries the size of the endpoint. Optional.
132 *
133 * @returns VBox status code.
134 * @param pEndpoint Endpoint the request is for.
135 * @param pcbSize Where to store the size of the endpoint.
136 */
137 DECLR3CALLBACKMEMBER(int, pfnEpGetSize, (PPDMASYNCCOMPLETIONENDPOINT pEndpoint,
138 uint64_t *pcbSize));
139
140 /**
141 * Sets the size of the endpoint. Optional.
142 * This is a synchronous operation.
143 *
144 *
145 * @returns VBox status code.
146 * @param pEndpoint Endpoint the request is for.
147 * @param cbSize New size for the endpoint.
148 */
149 DECLR3CALLBACKMEMBER(int, pfnEpSetSize, (PPDMASYNCCOMPLETIONENDPOINT pEndpoint,
150 uint64_t cbSize));
151
152 /** Initialization safety marker. */
153 uint32_t u32VersionEnd;
154} PDMASYNCCOMPLETIONEPCLASSOPS;
155/** Pointer to a async completion endpoint class operation table. */
156typedef PDMASYNCCOMPLETIONEPCLASSOPS *PPDMASYNCCOMPLETIONEPCLASSOPS;
157/** Const pointer to a async completion endpoint class operation table. */
158typedef const PDMASYNCCOMPLETIONEPCLASSOPS *PCPDMASYNCCOMPLETIONEPCLASSOPS;
159
160/** Version for the endpoint class operations structure. */
161#define PDMAC_EPCLASS_OPS_VERSION 0x00000001
162
163/** Pointer to a bandwidth control manager. */
164typedef struct PDMACBWMGR *PPDMACBWMGR;
165
166/**
167 * PDM Async completion endpoint class.
168 * Common data.
169 */
170typedef struct PDMASYNCCOMPLETIONEPCLASS
171{
172 /** Pointer to the VM. */
173 PVM pVM;
174 /** Critical section protecting the lists below. */
175 RTCRITSECT CritSect;
176 /** Number of endpoints in the list. */
177 volatile unsigned cEndpoints;
178 /** Head of endpoints with this class. */
179 R3PTRTYPE(PPDMASYNCCOMPLETIONENDPOINT) pEndpointsHead;
180 /** Head of the bandwidth managers for this class. */
181 R3PTRTYPE(PPDMACBWMGR) pBwMgrsHead;
182 /** Pointer to the callback table. */
183 R3PTRTYPE(PCPDMASYNCCOMPLETIONEPCLASSOPS) pEndpointOps;
184 /** Task cache. */
185 RTMEMCACHE hMemCacheTasks;
186 /** Flag whether to gather advanced statistics about requests. */
187 bool fGatherAdvancedStatistics;
188} PDMASYNCCOMPLETIONEPCLASS;
189/** Pointer to the PDM async completion endpoint class data. */
190typedef PDMASYNCCOMPLETIONEPCLASS *PPDMASYNCCOMPLETIONEPCLASS;
191
192/**
193 * A PDM Async completion endpoint.
194 * Common data.
195 */
196typedef struct PDMASYNCCOMPLETIONENDPOINT
197{
198 /** Next endpoint in the list. */
199 R3PTRTYPE(PPDMASYNCCOMPLETIONENDPOINT) pNext;
200 /** Previous endpoint in the list. */
201 R3PTRTYPE(PPDMASYNCCOMPLETIONENDPOINT) pPrev;
202 /** Pointer to the class this endpoint belongs to. */
203 R3PTRTYPE(PPDMASYNCCOMPLETIONEPCLASS) pEpClass;
204 /** Template associated with this endpoint. */
205 PPDMASYNCCOMPLETIONTEMPLATE pTemplate;
206 /** Statistics ID for endpoints having a similar URI (same filename for example)
207 * to avoid assertions. */
208 unsigned iStatId;
209 /** URI describing the endpoint */
210 char *pszUri;
211 /** Pointer to the assigned bandwidth manager. */
212 volatile PPDMACBWMGR pBwMgr;
213 /** Aligns following statistic counters on a 8 byte boundary. */
214 uint32_t u32Alignment;
215 /** @name Request size statistics.
216 * @{ */
217 STAMCOUNTER StatReqSizeSmaller512;
218 STAMCOUNTER StatReqSize512To1K;
219 STAMCOUNTER StatReqSize1KTo2K;
220 STAMCOUNTER StatReqSize2KTo4K;
221 STAMCOUNTER StatReqSize4KTo8K;
222 STAMCOUNTER StatReqSize8KTo16K;
223 STAMCOUNTER StatReqSize16KTo32K;
224 STAMCOUNTER StatReqSize32KTo64K;
225 STAMCOUNTER StatReqSize64KTo128K;
226 STAMCOUNTER StatReqSize128KTo256K;
227 STAMCOUNTER StatReqSize256KTo512K;
228 STAMCOUNTER StatReqSizeOver512K;
229 STAMCOUNTER StatReqsUnaligned512;
230 STAMCOUNTER StatReqsUnaligned4K;
231 STAMCOUNTER StatReqsUnaligned8K;
232 /** @} */
233 /** @name Request completion time statistics.
234 * @{ */
235 STAMCOUNTER StatTaskRunTimesNs[10];
236 STAMCOUNTER StatTaskRunTimesUs[10];
237 STAMCOUNTER StatTaskRunTimesMs[10];
238 STAMCOUNTER StatTaskRunTimesSec[10];
239 STAMCOUNTER StatTaskRunOver100Sec;
240 STAMCOUNTER StatIoOpsPerSec;
241 STAMCOUNTER StatIoOpsStarted;
242 STAMCOUNTER StatIoOpsCompleted;
243 uint64_t tsIntervalStartMs;
244 uint64_t cIoOpsCompleted;
245 /** @} */
246} PDMASYNCCOMPLETIONENDPOINT;
247AssertCompileMemberAlignment(PDMASYNCCOMPLETIONENDPOINT, StatReqSizeSmaller512, sizeof(uint64_t));
248AssertCompileMemberAlignment(PDMASYNCCOMPLETIONENDPOINT, StatTaskRunTimesNs, sizeof(uint64_t));
249
250/**
251 * A PDM async completion task handle.
252 * Common data.
253 */
254typedef struct PDMASYNCCOMPLETIONTASK
255{
256 /** Next task in the list
257 * (for free and assigned tasks). */
258 R3PTRTYPE(PPDMASYNCCOMPLETIONTASK) pNext;
259 /** Previous task in the list
260 * (for free and assigned tasks). */
261 R3PTRTYPE(PPDMASYNCCOMPLETIONTASK) pPrev;
262 /** Endpoint this task is assigned to. */
263 R3PTRTYPE(PPDMASYNCCOMPLETIONENDPOINT) pEndpoint;
264 /** Opaque user data for this task. */
265 void *pvUser;
266 /** Start timestamp. */
267 uint64_t tsNsStart;
268} PDMASYNCCOMPLETIONTASK;
269
270void pdmR3AsyncCompletionCompleteTask(PPDMASYNCCOMPLETIONTASK pTask, int rc, bool fCallCompletionHandler);
271bool pdmacEpIsTransferAllowed(PPDMASYNCCOMPLETIONENDPOINT pEndpoint, uint32_t cbTransfer, RTMSINTERVAL *pmsWhenNext);
272
273RT_C_DECLS_END
274
275extern const PDMASYNCCOMPLETIONEPCLASSOPS g_PDMAsyncCompletionEndpointClassFile;
276
277#endif /* !___PDMAsyncCompletionInternal_h */
278
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use