Changeset 50973 in vbox for trunk/src/VBox
- Timestamp:
- Apr 4, 2014 6:31:40 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 93141
- Location:
- trunk/src/VBox
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/include/cr_net.h
r42499 r50973 36 36 #include <iprt/types.h> 37 37 #include <iprt/thread.h> 38 #include <iprt/list.h> 38 39 39 40 #ifdef __cplusplus … … 245 246 CRVBOXHGSMI_CMDDATA CmdData; 246 247 # endif 248 RTLISTANCHOR PendingMsgList; 247 249 #endif 248 250 /* Used on host side to indicate that we are not allowed to store above pointers for later use -
trunk/src/VBox/GuestHost/OpenGL/include/cr_pack.h
r46757 r50973 51 51 typedef void (*CRPackErrorHandlerFunc)(int line, const char *file, GLenum error, const char *info); 52 52 53 typedef enum 54 { 55 CRPackBeginEndStateNone = 0, /* not in begin end */ 56 CRPackBeginEndStateStarted, /* begin issued */ 57 CRPackBeginEndStateFlushDone /* begin issued & buffer flash is done thus part of commands is issued to host */ 58 } CRPackBeginEndState; 53 #define CRPACKBLOCKSTATE_OP_BEGIN 0x01 54 #define CRPACKBLOCKSTATE_OP_NEWLIST 0x02 55 #define CRPACKBLOCKSTATE_OP_BEGINQUERY 0x04 56 #define CRPACKBLOCKSTATE_OP_ALL 0x07 57 58 #define CRPACKBLOCKSTATE_IS_OP_STARTED(_state, _op) (!!((_state) & (_op))) 59 60 #define CRPACKBLOCKSTATE_IS_STARTED(_state) (!!(_state)) 61 62 #define CRPACKBLOCKSTATE_OP_START(_state, _op) do { \ 63 Assert(!CRPACKBLOCKSTATE_IS_OP_STARTED(_state, _op)); \ 64 (_state) |= (_op); \ 65 } while (0) 66 67 #define CRPACKBLOCKSTATE_OP_STOP(_state, _op) do { \ 68 Assert(CRPACKBLOCKSTATE_IS_OP_STARTED(_state, _op)); \ 69 (_state) &= ~(_op); \ 70 } while (0) 71 59 72 /** 60 73 * Packer context … … 68 81 CRPackErrorHandlerFunc Error; 69 82 CRCurrentStatePointers current; 70 CRPackBeginEndState enmBeginEndState;83 uint32_t u32CmdBlockState; 71 84 GLvectorf bounds_min, bounds_max; 72 85 int updateBBOX; … … 96 109 # define CR_UNLOCK_PACKER_CONTEXT(PC) 97 110 # endif 111 extern int cr_packer_cmd_blocks_enabled; 98 112 #else /* if defined IN_RING0 */ 99 113 # define CR_PACKER_CONTEXT_ARGSINGLEDECL CRPackContext *_pCtx … … 123 137 #endif 124 138 ); 139 DECLINLINE(bool) crPackBufferIsEmpty(CRPackBuffer *buffer) 140 { 141 return (buffer->opcode_current == buffer->data_current -1); 142 } 143 125 144 extern DECLEXPORT(void) crPackFlushFunc( CRPackContext *pc, CRPackFlushFunc ff ); 126 145 extern DECLEXPORT(void) crPackFlushArg( CRPackContext *pc, void *flush_arg ); … … 217 236 218 237 238 #define CR_PACK_SPECIAL_OP( _pc, _op) \ 239 do { \ 240 data_ptr = pc->buffer.data_current; \ 241 (_pc)->buffer.data_current += 4; \ 242 WRITE_OPCODE( (_pc), (_op) ); \ 243 WRITE_DATA( 0, GLuint, 0xdeadbeef ); \ 244 data_ptr = NULL; /* <- sanity*/ \ 245 } while (0) 246 247 #define CR_CMDBLOCK_OP( _pc, _op) \ 248 do { \ 249 CR_PACK_SPECIAL_OP( _pc, _op); \ 250 } while (0) 251 252 253 #define CR_CMDBLOCK_BEGIN( pc, op ) \ 254 do { \ 255 CR_LOCK_PACKER_CONTEXT(pc); \ 256 if (!cr_packer_cmd_blocks_enabled) break; \ 257 if (!CRPACKBLOCKSTATE_IS_STARTED(pc->u32CmdBlockState)) { \ 258 THREADASSERT( pc ); \ 259 CRASSERT( pc->currentBuffer ); \ 260 if (!crPackBufferIsEmpty(&pc->buffer)) { \ 261 if ((*pc->buffer.opcode_start) != CR_NOP_OPCODE) { \ 262 pc->Flush( pc->flush_arg ); \ 263 Assert(crPackCanHoldOpcode( pc, 1, 4 ) ); \ 264 CR_CMDBLOCK_OP( pc, CR_CMDBLOCKBEGIN_OPCODE ); \ 265 } \ 266 else { \ 267 (*pc->buffer.opcode_start) = CR_CMDBLOCKBEGIN_OPCODE; \ 268 } \ 269 } \ 270 else { \ 271 Assert(crPackCanHoldOpcode( pc, 1, 4 ) ); \ 272 CR_CMDBLOCK_OP( pc, CR_CMDBLOCKBEGIN_OPCODE ); \ 273 } \ 274 } \ 275 CRPACKBLOCKSTATE_OP_START(pc->u32CmdBlockState, op); \ 276 } while (0) 277 278 #define CR_CMDBLOCK_END( pc, op ) \ 279 do { \ 280 if (!cr_packer_cmd_blocks_enabled) break; \ 281 CRPACKBLOCKSTATE_OP_STOP(pc->u32CmdBlockState, op); \ 282 if (!CRPACKBLOCKSTATE_IS_STARTED(pc->u32CmdBlockState)) { \ 283 THREADASSERT( pc ); \ 284 CRASSERT( pc->currentBuffer ); \ 285 if (!crPackBufferIsEmpty(&pc->buffer)) { \ 286 if ((*pc->buffer.opcode_start) != CR_CMDBLOCKBEGIN_OPCODE) {\ 287 if ( !crPackCanHoldOpcode( pc, 1, 4 ) ) { \ 288 pc->Flush( pc->flush_arg ); \ 289 Assert(crPackCanHoldOpcode( pc, 1, 4 ) ); \ 290 } \ 291 CR_CMDBLOCK_OP( pc, CR_CMDBLOCKEND_OPCODE ); \ 292 pc->Flush( pc->flush_arg ); \ 293 } \ 294 else { \ 295 (*pc->buffer.opcode_start) = CR_NOP_OPCODE; \ 296 } \ 297 } \ 298 else { \ 299 Assert(crPackCanHoldOpcode( pc, 1, 4 ) ); \ 300 CR_CMDBLOCK_OP( pc, CR_CMDBLOCKEND_OPCODE ); \ 301 pc->Flush( pc->flush_arg ); \ 302 } \ 303 } \ 304 } while (0) 305 219 306 /** 220 307 * Alloc space for a message of 'len' bytes (plus 1 opcode). … … 229 316 pc->Flush( pc->flush_arg ); \ 230 317 CRASSERT(crPackCanHoldOpcode( pc, 1, (len) ) ); \ 231 if (pc->enmBeginEndState == CRPackBeginEndStateStarted) { \232 pc->enmBeginEndState = CRPackBeginEndStateFlushDone; \233 } \234 318 } \ 235 319 data_ptr = pc->buffer.data_current; \ 236 320 pc->buffer.data_current += (len); \ 237 321 } while (0) 238 239 322 240 323 /** … … 279 362 pc->Flush( pc->flush_arg ); \ 280 363 CRASSERT( crPackCanHoldOpcode( pc, 1, (len) ) ); \ 281 if (pc->enmBeginEndState == CRPackBeginEndStateStarted) { \282 pc->enmBeginEndState = CRPackBeginEndStateFlushDone; \283 } \284 364 } \ 285 365 data_ptr = pc->buffer.data_current; \ -
trunk/src/VBox/GuestHost/OpenGL/include/cr_protocol.h
r50831 r50973 24 24 25 25 /* new TexPresent mechanism is available */ 26 #define CR_VBOX_CAP_TEX_PRESENT 0x0000000126 #define CR_VBOX_CAP_TEX_PRESENT 0x00000001 27 27 /* vbva command submission mechanism supported */ 28 #define CR_VBOX_CAP_CMDVBVA 0x00000002 28 #define CR_VBOX_CAP_CMDVBVA 0x00000002 29 /* host supports Command Blocks, i.e. CR_CMDBLOCKBEGIN_OPCODE and CR_CMDBLOCKEND_OPCODE opcodes. 30 * Command Block can be used by guest to prevent clients from blocking each other. 31 * The Command Block allows multiple command buffers to be processed with one run. 32 * Command Block commands have to obey to the following rules: 33 * CR_CMDBLOCKBEGIN_OPCODE - must be the first command in the command buffer, specifying the command block start 34 * CR_CMDBLOCKEND_OPCODE - must be the last command in the command buffer, specifying the command block end 35 * If not placed accordingly, CR_CMDBLOCK** commands are ignored. 36 * Server copies the command block buffer commands to its internal storage 37 * and processes them with one run when the command block end is signalled 38 */ 39 #define CR_VBOX_CAP_CMDBLOCKS 0x00000004 29 40 30 41 -
trunk/src/VBox/GuestHost/OpenGL/include/cr_unpack.h
r39288 r50973 12 12 #include "cr_protocol.h" 13 13 #include "cr_mem.h" 14 #include "cr_opcodes.h" 14 15 15 16 #include <iprt/types.h> … … 28 29 DECLEXPORT(void) crUnpackPush(void); 29 30 DECLEXPORT(void) crUnpackPop(void); 31 32 typedef enum 33 { 34 CR_UNPACK_BUFFER_TYPE_GENERIC = 0, 35 CR_UNPACK_BUFFER_TYPE_CMDBLOCK_BEGIN, 36 CR_UNPACK_BUFFER_TYPE_CMDBLOCK_END 37 } CR_UNPACK_BUFFER_TYPE; 38 39 DECLINLINE(CR_UNPACK_BUFFER_TYPE) crUnpackGetBufferType(const void *opcodes, unsigned int num_opcodes) 40 { 41 const uint8_t *pu8Codes = (const uint8_t *)opcodes; 42 43 CR_UNPACK_BUFFER_TYPE enmType; 44 uint8_t first; 45 uint8_t last; 46 47 if (!num_opcodes) 48 return CR_UNPACK_BUFFER_TYPE_GENERIC; 49 50 first = pu8Codes[0]; 51 last = pu8Codes[1-(int)num_opcodes]; 52 53 enmType = (first != CR_CMDBLOCKBEGIN_OPCODE) ? CR_UNPACK_BUFFER_TYPE_GENERIC : CR_UNPACK_BUFFER_TYPE_CMDBLOCK_BEGIN; 54 55 if (last != CR_CMDBLOCKEND_OPCODE) 56 return enmType; 57 58 /* last is CMDBLOCKEND*/ 59 return (enmType == CR_UNPACK_BUFFER_TYPE_CMDBLOCK_BEGIN) ? CR_UNPACK_BUFFER_TYPE_GENERIC : CR_UNPACK_BUFFER_TYPE_CMDBLOCK_END; 60 } 30 61 31 62 extern CRNetworkPointer * return_ptr; -
trunk/src/VBox/GuestHost/OpenGL/packer/opcodes.py
r43652 r50973 34 34 enum_index = enum_index + 1 35 35 36 if enum_index > 255: 36 print "\tCR_EXTEND_OPCODE=%d," % enum_index 37 enum_index = enum_index + 1 38 print "\tCR_CMDBLOCKBEGIN_OPCODE=%d," % enum_index 39 enum_index = enum_index + 1 40 print "\tCR_CMDBLOCKEND_OPCODE=%d," % enum_index 41 print "\tCR_NOP_OPCODE=255" 42 if enum_index > 254: 37 43 # This would have saved Mike some grief if it had been here earlier. 38 44 print >> sys.stderr, "You have more than 255 opcodes! You've been adding functions to" … … 46 52 print "#error -- more than 255 opcodes!" 47 53 sys.exit(-1) 48 print "\tCR_EXTEND_OPCODE=%d" % enum_index49 54 print "} CROpcode;\n" 50 55 -
trunk/src/VBox/GuestHost/OpenGL/packer/pack_beginend.c
r39265 r50973 13 13 unsigned char *data_ptr; 14 14 (void) pc; 15 16 CR_CMDBLOCK_BEGIN( pc, CRPACKBLOCKSTATE_OP_BEGIN ); 17 #ifndef VBOX 15 18 if (pc->buffer.canBarf) 16 19 { … … 20 23 pc->buffer.holds_BeginEnd = 1; 21 24 } 22 CR_GET_BUFFERED_POINTER( pc, 4 ); 23 CRASSERT(pc->enmBeginEndState == CRPackBeginEndStateNone); 24 pc->enmBeginEndState = CRPackBeginEndStateStarted; 25 #endif 26 CR_GET_BUFFERED_POINTER_NO_BEGINEND_FLUSH(pc, 4, GL_FALSE); 25 27 pc->current.begin_data = data_ptr; 26 28 pc->current.begin_op = pc->buffer.opcode_current; … … 36 38 unsigned char *data_ptr; 37 39 (void) pc; 40 #ifndef VBOX 38 41 if (pc->buffer.canBarf) 39 42 { … … 43 46 pc->buffer.holds_BeginEnd = 1; 44 47 } 45 CR_GET_BUFFERED_POINTER( pc, 4 ); 46 CRASSERT(pc->enmBeginEndState == CRPackBeginEndStateNone); 47 pc->enmBeginEndState = CRPackBeginEndStateStarted; 48 #endif 49 CR_GET_BUFFERED_POINTER_NO_BEGINEND_FLUSH(pc, 4, GL_FALSE); 48 50 pc->current.begin_data = data_ptr; 49 51 pc->current.begin_op = pc->buffer.opcode_current; … … 62 64 WRITE_OPCODE( pc, CR_END_OPCODE ); 63 65 pc->buffer.in_BeginEnd = 0; 64 CRASSERT(pc->enmBeginEndState == CRPackBeginEndStateStarted 65 || pc->enmBeginEndState == CRPackBeginEndStateFlushDone); 66 if (pc->enmBeginEndState == CRPackBeginEndStateFlushDone) 67 { 68 pc->Flush( pc->flush_arg ); 69 } 70 pc->enmBeginEndState = CRPackBeginEndStateNone; 66 CR_CMDBLOCK_END( pc, CRPACKBLOCKSTATE_OP_BEGIN ); 71 67 CR_UNLOCK_PACKER_CONTEXT(pc); 72 68 } … … 80 76 WRITE_OPCODE( pc, CR_END_OPCODE ); 81 77 pc->buffer.in_BeginEnd = 0; 82 CRASSERT(pc->enmBeginEndState == CRPackBeginEndStateStarted 83 || pc->enmBeginEndState == CRPackBeginEndStateFlushDone); 84 if (pc->enmBeginEndState == CRPackBeginEndStateFlushDone) 85 { 86 pc->Flush( pc->flush_arg ); 87 } 78 CR_CMDBLOCK_END( pc, CRPACKBLOCKSTATE_OP_BEGIN ); 88 79 CR_UNLOCK_PACKER_CONTEXT(pc); 89 80 } -
trunk/src/VBox/GuestHost/OpenGL/packer/pack_init.c
r39265 r50973 18 18 #endif 19 19 20 int cr_packer_cmd_blocks_enabled = 0; 21 20 22 CRPackContext *crPackNewContext( int swapping ) 21 23 { … … 29 31 crMemZero( pc, sizeof(CRPackContext)); 30 32 #endif 31 pc-> enmBeginEndState = CRPackBeginEndStateNone;33 pc->u32CmdBlockState = 0; 32 34 pc->swapping = swapping; 33 35 pc->Flush = NULL; -
trunk/src/VBox/GuestHost/OpenGL/packer/pack_lists.c
r33475 r50973 59 59 } 60 60 61 62 63 61 void PACK_APIENTRY crPackNewList( GLuint list, GLenum mode ) 64 62 { … … 66 64 unsigned char *data_ptr; 67 65 (void) pc; 68 CR_GET_BUFFERED_POINTER( pc, 16 ); 66 CR_CMDBLOCK_BEGIN( pc, CRPACKBLOCKSTATE_OP_NEWLIST ); 67 CR_GET_BUFFERED_POINTER_NO_BEGINEND_FLUSH( pc, 16, GL_FALSE ); 69 68 WRITE_DATA( 0, GLint, 16 ); 70 69 WRITE_DATA( 4, GLenum, CR_NEWLIST_EXTEND_OPCODE ); … … 86 85 WRITE_OPCODE( pc, CR_EXTEND_OPCODE ); 87 86 pc->buffer.in_List = GL_FALSE; 87 CR_CMDBLOCK_END( pc, CRPACKBLOCKSTATE_OP_NEWLIST ); 88 88 CR_UNLOCK_PACKER_CONTEXT(pc); 89 89 } -
trunk/src/VBox/GuestHost/OpenGL/packer/pack_misc.c
r46966 r50973 188 188 CR_UNLOCK_PACKER_CONTEXT(pc); 189 189 } 190 191 void PACK_APIENTRY crPackBeginQueryARB( CR_PACKER_CONTEXT_ARGDECL GLenum target, GLuint id ) 192 { 193 CR_GET_PACKER_CONTEXT(pc); 194 unsigned char *data_ptr; 195 (void) pc; 196 CR_GET_BUFFERED_POINTER( pc, 16 ); 197 WRITE_DATA( 0, GLint, 16 ); 198 WRITE_DATA( 4, GLenum, CR_BEGINQUERYARB_EXTEND_OPCODE ); 199 WRITE_DATA( 8, GLenum, target ); 200 WRITE_DATA( 12, GLuint, id ); 201 WRITE_OPCODE( pc, CR_EXTEND_OPCODE ); 202 CR_UNLOCK_PACKER_CONTEXT(pc); 203 } 204 205 void PACK_APIENTRY crPackEndQueryARB( CR_PACKER_CONTEXT_ARGDECL GLenum target ) 206 { 207 CR_GET_PACKER_CONTEXT(pc); 208 unsigned char *data_ptr; 209 (void) pc; 210 CR_GET_BUFFERED_POINTER( pc, 12 ); 211 WRITE_DATA( 0, GLint, 12 ); 212 WRITE_DATA( 4, GLenum, CR_ENDQUERYARB_EXTEND_OPCODE ); 213 WRITE_DATA( 8, GLenum, target ); 214 WRITE_OPCODE( pc, CR_EXTEND_OPCODE ); 215 CR_UNLOCK_PACKER_CONTEXT(pc); 216 } -
trunk/src/VBox/GuestHost/OpenGL/packer/pack_swap_lists.c
r33475 r50973 90 90 unsigned char *data_ptr; 91 91 (void) pc; 92 CR_GET_BUFFERED_POINTER( pc, 16 ); 92 CR_CMDBLOCK_BEGIN( pc, CRPACKBLOCKSTATE_OP_NEWLIST ); 93 CR_GET_BUFFERED_POINTER_NO_BEGINEND_FLUSH( pc, 16, GL_FALSE ); 93 94 WRITE_DATA( 0, GLint, SWAP32(16) ); 94 95 WRITE_DATA( 4, GLenum, SWAP32(CR_NEWLIST_EXTEND_OPCODE) ); … … 112 113 WRITE_OPCODE( pc, CR_EXTEND_OPCODE ); 113 114 pc->buffer.in_List = GL_FALSE; 115 CR_CMDBLOCK_END( pc, CRPACKBLOCKSTATE_OP_NEWLIST ); 114 116 CR_UNLOCK_PACKER_CONTEXT(pc); 115 117 } -
trunk/src/VBox/GuestHost/OpenGL/packer/packer_special
r46757 r50973 181 181 WindowShow 182 182 WindowSize 183 BeginQueryARB 184 EndQueryARB -
trunk/src/VBox/GuestHost/OpenGL/util/vboxhgcm.c
r50928 r50973 2441 2441 conn->cbHostBuffer = 0; 2442 2442 2443 #if !defined(IN_GUEST) 2444 RTListInit(&conn->PendingMsgList); 2445 #endif 2446 2443 2447 #ifdef CHROMIUM_THREADSAFE 2444 2448 crLockMutex(&g_crvboxhgcm.mutex); -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_config.c
r50217 r50973 226 226 { 227 227 cr_server.u32Caps = crServerVBoxParseNumerics(env, 0); 228 cr_server.u32Caps &= ~(CR_VBOX_CAP_TEX_PRESENT | CR_VBOX_CAP_CMDVBVA );228 cr_server.u32Caps &= ~(CR_VBOX_CAP_TEX_PRESENT | CR_VBOX_CAP_CMDVBVA | CR_VBOX_CAP_CMDBLOCKS); 229 229 } 230 230 else 231 231 { 232 cr_server.u32Caps = CR_VBOX_CAP_TEX_PRESENT /* | CR_VBOX_CAP_CMDVBVA*/;232 cr_server.u32Caps = CR_VBOX_CAP_TEX_PRESENT 233 233 #ifdef DEBUG_misha 234 cr_server.u32Caps |= CR_VBOX_CAP_CMDVBVA;234 | CR_VBOX_CAP_CMDVBVA | CR_VBOX_CAP_CMDBLOCKS 235 235 #endif 236 ; 236 237 237 238 } … … 376 377 { 377 378 cr_server.u32Caps = crServerVBoxParseNumerics(env, 0); 378 cr_server.u32Caps &= ~(CR_VBOX_CAP_TEX_PRESENT | CR_VBOX_CAP_CMDVBVA );379 cr_server.u32Caps &= ~(CR_VBOX_CAP_TEX_PRESENT | CR_VBOX_CAP_CMDVBVA | CR_VBOX_CAP_CMDBLOCKS); 379 380 } 380 381 else 381 382 { 382 cr_server.u32Caps = CR_VBOX_CAP_TEX_PRESENT /* | CR_VBOX_CAP_CMDVBVA*/;383 cr_server.u32Caps = CR_VBOX_CAP_TEX_PRESENT 383 384 #ifdef DEBUG_misha 384 cr_server.u32Caps |= CR_VBOX_CAP_CMDVBVA;385 | CR_VBOX_CAP_CMDVBVA | CR_VBOX_CAP_CMDBLOCKS 385 386 #endif 387 ; 386 388 } 387 389 -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_stream.c
r50627 r50973 416 416 } 417 417 418 typedef struct CR_SERVER_PENDING_MSG 419 { 420 RTLISTNODE Node; 421 CRMessage Msg; 422 } CR_SERVER_PENDING_MSG; 423 424 static int crServerPendMsg(CRConnection *conn, const CRMessage *msg, int cbMsg) 425 { 426 CR_SERVER_PENDING_MSG *pMsg = (CR_SERVER_PENDING_MSG*)RTMemAlloc(cbMsg + RT_OFFSETOF(CR_SERVER_PENDING_MSG, Msg)); 427 if (!pMsg) 428 { 429 WARN(("RTMemAlloc failed")); 430 return VERR_NO_MEMORY; 431 } 432 433 memcpy(&pMsg->Msg, msg, cbMsg); 434 435 RTListAppend(&conn->PendingMsgList, &pMsg->Node); 436 437 return VINF_SUCCESS; 438 } 439 440 static void crServerPendProcess(CRConnection *conn) 441 { 442 CR_SERVER_PENDING_MSG *pIter, *pNext; 443 RTListForEachSafe(&conn->PendingMsgList, pIter, pNext, CR_SERVER_PENDING_MSG, Node) 444 { 445 CRMessage *msg = &pIter->Msg; 446 const CRMessageOpcodes *msg_opcodes; 447 int opcodeBytes; 448 const char *data_ptr; 449 450 RTListNodeRemove(&pIter->Node); 451 452 CRASSERT(msg->header.type == CR_MESSAGE_OPCODES); 453 454 msg_opcodes = (const CRMessageOpcodes *) msg; 455 opcodeBytes = (msg_opcodes->numOpcodes + 3) & ~0x03; 456 457 data_ptr = (const char *) msg_opcodes + sizeof (CRMessageOpcodes) + opcodeBytes; 458 459 crUnpack(data_ptr, /* first command's operands */ 460 data_ptr - 1, /* first command's opcode */ 461 msg_opcodes->numOpcodes, /* how many opcodes */ 462 &(cr_server.dispatch)); /* the CR dispatch table */ 463 464 RTMemFree(pIter); 465 } 466 } 418 467 419 468 /** … … 422 471 */ 423 472 static void 424 crServerDispatchMessage(CRConnection *conn, CRMessage *msg )473 crServerDispatchMessage(CRConnection *conn, CRMessage *msg, int cbMsg) 425 474 { 426 475 const CRMessageOpcodes *msg_opcodes; … … 430 479 PCRVBOXHGSMI_CMDDATA pCmdData = NULL; 431 480 #endif 481 CR_UNPACK_BUFFER_TYPE enmType; 482 bool fUnpack = true; 432 483 433 484 if (msg->header.type == CR_MESSAGE_REDIR_PTR) … … 450 501 451 502 data_ptr = (const char *) msg_opcodes + sizeof(CRMessageOpcodes) + opcodeBytes; 452 crUnpack(data_ptr, /* first command's operands */ 453 data_ptr - 1, /* first command's opcode */ 454 msg_opcodes->numOpcodes, /* how many opcodes */ 455 &(cr_server.dispatch)); /* the CR dispatch table */ 503 504 enmType = crUnpackGetBufferType(data_ptr - 1, /* first command's opcode */ 505 msg_opcodes->numOpcodes /* how many opcodes */); 506 switch (enmType) 507 { 508 case CR_UNPACK_BUFFER_TYPE_GENERIC: 509 { 510 if (RTListIsEmpty(&conn->PendingMsgList)) 511 break; 512 513 if (RT_SUCCESS(crServerPendMsg(conn, msg, cbMsg))) 514 { 515 fUnpack = false; 516 break; 517 } 518 519 WARN(("crServerPendMsg failed")); 520 crServerPendProcess(conn); 521 break; 522 } 523 case CR_UNPACK_BUFFER_TYPE_CMDBLOCK_BEGIN: 524 { 525 if (RTListIsEmpty(&conn->PendingMsgList)) 526 { 527 if (RT_SUCCESS(crServerPendMsg(conn, msg, cbMsg))) 528 { 529 Assert(!RTListIsEmpty(&conn->PendingMsgList)); 530 fUnpack = false; 531 break; 532 } 533 else 534 WARN(("crServerPendMsg failed")); 535 } 536 else 537 WARN(("Pend List is NOT empty, drain the current list, and ignore this command")); 538 539 crServerPendProcess(conn); 540 break; 541 } 542 case CR_UNPACK_BUFFER_TYPE_CMDBLOCK_END: 543 { 544 CRASSERT(!RTListIsEmpty(&conn->PendingMsgList)); 545 crServerPendProcess(conn); 546 Assert(RTListIsEmpty(&conn->PendingMsgList)); 547 break; 548 } 549 default: 550 WARN(("unsupported buffer type")); 551 break; 552 } 553 554 if (fUnpack) 555 { 556 crUnpack(data_ptr, /* first command's operands */ 557 data_ptr - 1, /* first command's opcode */ 558 msg_opcodes->numOpcodes, /* how many opcodes */ 559 &(cr_server.dispatch)); /* the CR dispatch table */ 560 } 456 561 457 562 #ifdef VBOX_WITH_CRHGSMI … … 584 689 585 690 /* Commands get dispatched here */ 586 crServerDispatchMessage( conn, msg );691 crServerDispatchMessage( conn, msg, len ); 587 692 588 693 crNetFree( conn, msg ); -
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack.py
r39815 r50973 263 263 #endif 264 264 break; 265 case CR_CMDBLOCKBEGIN_OPCODE: 266 case CR_CMDBLOCKEND_OPCODE: 267 case CR_NOP_OPCODE: 268 INCR_DATA_PTR_NO_ARGS( ); 269 break; 265 270 default: 266 271 crError( "Unknown opcode: %d", *unpack_opcodes );
Note:
See TracChangeset
for help on using the changeset viewer.