1 | /* $Id: PDMAsyncCompletionInternal.h 44358 2013-01-24 16:05:55Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * PDM - Pluggable Device Manager, Async I/O Completion internal header.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2013 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 |
|
---|
30 | RT_C_DECLS_BEGIN
|
---|
31 |
|
---|
32 |
|
---|
33 | /**
|
---|
34 | * PDM Async completion endpoint operations.
|
---|
35 | */
|
---|
36 | typedef 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. */
|
---|
156 | typedef PDMASYNCCOMPLETIONEPCLASSOPS *PPDMASYNCCOMPLETIONEPCLASSOPS;
|
---|
157 | /** Const pointer to a async completion endpoint class operation table. */
|
---|
158 | typedef 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. */
|
---|
164 | typedef struct PDMACBWMGR *PPDMACBWMGR;
|
---|
165 |
|
---|
166 | /**
|
---|
167 | * PDM Async completion endpoint class.
|
---|
168 | * Common data.
|
---|
169 | */
|
---|
170 | typedef 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. */
|
---|
190 | typedef PDMASYNCCOMPLETIONEPCLASS *PPDMASYNCCOMPLETIONEPCLASS;
|
---|
191 |
|
---|
192 | /**
|
---|
193 | * A PDM Async completion endpoint.
|
---|
194 | * Common data.
|
---|
195 | */
|
---|
196 | typedef 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 | /** Reference count. */
|
---|
207 | unsigned cUsers;
|
---|
208 | /** URI describing the endpoint */
|
---|
209 | char *pszUri;
|
---|
210 | /** Pointer to the assigned bandwidth manager. */
|
---|
211 | volatile PPDMACBWMGR pBwMgr;
|
---|
212 | /** Aligns following statistic counters on a 8 byte boundary. */
|
---|
213 | uint32_t u32Alignment;
|
---|
214 | /** @name Request size statistics.
|
---|
215 | * @{ */
|
---|
216 | STAMCOUNTER StatReqSizeSmaller512;
|
---|
217 | STAMCOUNTER StatReqSize512To1K;
|
---|
218 | STAMCOUNTER StatReqSize1KTo2K;
|
---|
219 | STAMCOUNTER StatReqSize2KTo4K;
|
---|
220 | STAMCOUNTER StatReqSize4KTo8K;
|
---|
221 | STAMCOUNTER StatReqSize8KTo16K;
|
---|
222 | STAMCOUNTER StatReqSize16KTo32K;
|
---|
223 | STAMCOUNTER StatReqSize32KTo64K;
|
---|
224 | STAMCOUNTER StatReqSize64KTo128K;
|
---|
225 | STAMCOUNTER StatReqSize128KTo256K;
|
---|
226 | STAMCOUNTER StatReqSize256KTo512K;
|
---|
227 | STAMCOUNTER StatReqSizeOver512K;
|
---|
228 | STAMCOUNTER StatReqsUnaligned512;
|
---|
229 | STAMCOUNTER StatReqsUnaligned4K;
|
---|
230 | STAMCOUNTER StatReqsUnaligned8K;
|
---|
231 | /** @} */
|
---|
232 | /** @name Request completion time statistics.
|
---|
233 | * @{ */
|
---|
234 | STAMCOUNTER StatTaskRunTimesNs[10];
|
---|
235 | STAMCOUNTER StatTaskRunTimesUs[10];
|
---|
236 | STAMCOUNTER StatTaskRunTimesMs[10];
|
---|
237 | STAMCOUNTER StatTaskRunTimesSec[10];
|
---|
238 | STAMCOUNTER StatTaskRunOver100Sec;
|
---|
239 | STAMCOUNTER StatIoOpsPerSec;
|
---|
240 | STAMCOUNTER StatIoOpsStarted;
|
---|
241 | STAMCOUNTER StatIoOpsCompleted;
|
---|
242 | uint64_t tsIntervalStartMs;
|
---|
243 | uint64_t cIoOpsCompleted;
|
---|
244 | /** @} */
|
---|
245 | } PDMASYNCCOMPLETIONENDPOINT;
|
---|
246 | AssertCompileMemberAlignment(PDMASYNCCOMPLETIONENDPOINT, StatReqSizeSmaller512, sizeof(uint64_t));
|
---|
247 | AssertCompileMemberAlignment(PDMASYNCCOMPLETIONENDPOINT, StatTaskRunTimesNs, sizeof(uint64_t));
|
---|
248 |
|
---|
249 | /**
|
---|
250 | * A PDM async completion task handle.
|
---|
251 | * Common data.
|
---|
252 | */
|
---|
253 | typedef struct PDMASYNCCOMPLETIONTASK
|
---|
254 | {
|
---|
255 | /** Next task in the list
|
---|
256 | * (for free and assigned tasks). */
|
---|
257 | R3PTRTYPE(PPDMASYNCCOMPLETIONTASK) pNext;
|
---|
258 | /** Previous task in the list
|
---|
259 | * (for free and assigned tasks). */
|
---|
260 | R3PTRTYPE(PPDMASYNCCOMPLETIONTASK) pPrev;
|
---|
261 | /** Endpoint this task is assigned to. */
|
---|
262 | R3PTRTYPE(PPDMASYNCCOMPLETIONENDPOINT) pEndpoint;
|
---|
263 | /** Opaque user data for this task. */
|
---|
264 | void *pvUser;
|
---|
265 | /** Start timestamp. */
|
---|
266 | uint64_t tsNsStart;
|
---|
267 | } PDMASYNCCOMPLETIONTASK;
|
---|
268 |
|
---|
269 | void pdmR3AsyncCompletionCompleteTask(PPDMASYNCCOMPLETIONTASK pTask, int rc, bool fCallCompletionHandler);
|
---|
270 | bool pdmacEpIsTransferAllowed(PPDMASYNCCOMPLETIONENDPOINT pEndpoint, uint32_t cbTransfer, RTMSINTERVAL *pmsWhenNext);
|
---|
271 |
|
---|
272 | RT_C_DECLS_END
|
---|
273 |
|
---|
274 | extern const PDMASYNCCOMPLETIONEPCLASSOPS g_PDMAsyncCompletionEndpointClassFile;
|
---|
275 |
|
---|
276 | #endif /* !___PDMAsyncCompletionInternal_h */
|
---|
277 |
|
---|