VirtualBox

Changeset 50973 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Apr 4, 2014 6:31:40 PM (11 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
93141
Message:

crOpenGL: command blocks (disabled for now)

Location:
trunk/src/VBox
Files:
15 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/GuestHost/OpenGL/include/cr_net.h

    r42499 r50973  
    3636#include <iprt/types.h>
    3737#include <iprt/thread.h>
     38#include <iprt/list.h>
    3839   
    3940#ifdef __cplusplus
     
    245246    CRVBOXHGSMI_CMDDATA CmdData;
    246247# endif
     248    RTLISTANCHOR PendingMsgList;
    247249#endif
    248250    /* 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  
    5151typedef void (*CRPackErrorHandlerFunc)(int line, const char *file, GLenum error, const char *info);
    5252
    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
    5972/**
    6073 * Packer context
     
    6881    CRPackErrorHandlerFunc Error;
    6982    CRCurrentStatePointers current;
    70     CRPackBeginEndState enmBeginEndState;
     83    uint32_t u32CmdBlockState;
    7184    GLvectorf bounds_min, bounds_max;
    7285    int updateBBOX;
     
    96109#  define CR_UNLOCK_PACKER_CONTEXT(PC)
    97110# endif
     111extern int cr_packer_cmd_blocks_enabled;
    98112#else /* if defined IN_RING0 */
    99113# define CR_PACKER_CONTEXT_ARGSINGLEDECL CRPackContext *_pCtx
     
    123137#endif
    124138        );
     139DECLINLINE(bool) crPackBufferIsEmpty(CRPackBuffer *buffer)
     140{
     141    return (buffer->opcode_current == buffer->data_current -1);
     142}
     143
    125144extern DECLEXPORT(void) crPackFlushFunc( CRPackContext *pc, CRPackFlushFunc ff );
    126145extern DECLEXPORT(void) crPackFlushArg( CRPackContext *pc, void *flush_arg );
     
    217236
    218237
     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
    219306/**
    220307 * Alloc space for a message of 'len' bytes (plus 1 opcode).
     
    229316      pc->Flush( pc->flush_arg );                                   \
    230317      CRASSERT(crPackCanHoldOpcode( pc, 1, (len) ) );               \
    231       if (pc->enmBeginEndState == CRPackBeginEndStateStarted) {     \
    232         pc->enmBeginEndState = CRPackBeginEndStateFlushDone;        \
    233       }                                                             \
    234318    }                                                               \
    235319    data_ptr = pc->buffer.data_current;                             \
    236320    pc->buffer.data_current += (len);                               \
    237321  } while (0)
    238 
    239322
    240323/**
     
    279362      pc->Flush( pc->flush_arg );                       \
    280363      CRASSERT( crPackCanHoldOpcode( pc, 1, (len) ) );  \
    281       if (pc->enmBeginEndState == CRPackBeginEndStateStarted) {     \
    282         pc->enmBeginEndState = CRPackBeginEndStateFlushDone;        \
    283       }                                                             \
    284364    }                                                   \
    285365    data_ptr = pc->buffer.data_current;                 \
  • trunk/src/VBox/GuestHost/OpenGL/include/cr_protocol.h

    r50831 r50973  
    2424
    2525/* new TexPresent mechanism is available */
    26 #define CR_VBOX_CAP_TEX_PRESENT    0x00000001
     26#define CR_VBOX_CAP_TEX_PRESENT         0x00000001
    2727/* 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
    2940
    3041
  • trunk/src/VBox/GuestHost/OpenGL/include/cr_unpack.h

    r39288 r50973  
    1212#include "cr_protocol.h"
    1313#include "cr_mem.h"
     14#include "cr_opcodes.h"
    1415
    1516#include <iprt/types.h>
     
    2829DECLEXPORT(void) crUnpackPush(void);
    2930DECLEXPORT(void) crUnpackPop(void);
     31
     32typedef 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
     39DECLINLINE(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}
    3061
    3162extern CRNetworkPointer * return_ptr;
  • trunk/src/VBox/GuestHost/OpenGL/packer/opcodes.py

    r43652 r50973  
    3434                enum_index = enum_index + 1
    3535
    36 if enum_index > 255:
     36print "\tCR_EXTEND_OPCODE=%d," % enum_index
     37enum_index = enum_index + 1
     38print "\tCR_CMDBLOCKBEGIN_OPCODE=%d," % enum_index
     39enum_index = enum_index + 1
     40print "\tCR_CMDBLOCKEND_OPCODE=%d," % enum_index
     41print "\tCR_NOP_OPCODE=255"
     42if enum_index > 254:
    3743        # This would have saved Mike some grief if it had been here earlier.
    3844        print >> sys.stderr, "You have more than 255 opcodes!  You've been adding functions to"
     
    4652        print "#error -- more than 255 opcodes!"
    4753        sys.exit(-1)
    48 print "\tCR_EXTEND_OPCODE=%d" % enum_index
    4954print "} CROpcode;\n"
    5055
  • trunk/src/VBox/GuestHost/OpenGL/packer/pack_beginend.c

    r39265 r50973  
    1313    unsigned char *data_ptr;
    1414    (void) pc;
     15
     16    CR_CMDBLOCK_BEGIN( pc, CRPACKBLOCKSTATE_OP_BEGIN );
     17#ifndef VBOX
    1518    if (pc->buffer.canBarf)
    1619    {
     
    2023        pc->buffer.holds_BeginEnd = 1;
    2124    }
    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);
    2527    pc->current.begin_data = data_ptr;
    2628    pc->current.begin_op = pc->buffer.opcode_current;
     
    3638    unsigned char *data_ptr;
    3739    (void) pc;
     40#ifndef VBOX
    3841    if (pc->buffer.canBarf)
    3942    {
     
    4346        pc->buffer.holds_BeginEnd = 1;
    4447    }
    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);
    4850    pc->current.begin_data = data_ptr;
    4951    pc->current.begin_op = pc->buffer.opcode_current;
     
    6264    WRITE_OPCODE( pc, CR_END_OPCODE );
    6365    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 );
    7167    CR_UNLOCK_PACKER_CONTEXT(pc);
    7268}
     
    8076    WRITE_OPCODE( pc, CR_END_OPCODE );
    8177    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 );
    8879    CR_UNLOCK_PACKER_CONTEXT(pc);
    8980}
  • trunk/src/VBox/GuestHost/OpenGL/packer/pack_init.c

    r39265 r50973  
    1818#endif
    1919
     20int cr_packer_cmd_blocks_enabled = 0;
     21
    2022CRPackContext *crPackNewContext( int swapping )
    2123{
     
    2931        crMemZero( pc, sizeof(CRPackContext));
    3032#endif
    31     pc->enmBeginEndState = CRPackBeginEndStateNone;
     33    pc->u32CmdBlockState = 0;
    3234    pc->swapping = swapping;
    3335    pc->Flush = NULL;
  • trunk/src/VBox/GuestHost/OpenGL/packer/pack_lists.c

    r33475 r50973  
    5959}
    6060
    61 
    62 
    6361void PACK_APIENTRY crPackNewList( GLuint list, GLenum mode )
    6462{
     
    6664    unsigned char *data_ptr;
    6765    (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 );
    6968    WRITE_DATA( 0, GLint, 16 );
    7069    WRITE_DATA( 4, GLenum, CR_NEWLIST_EXTEND_OPCODE );
     
    8685    WRITE_OPCODE( pc, CR_EXTEND_OPCODE );
    8786    pc->buffer.in_List = GL_FALSE;
     87    CR_CMDBLOCK_END( pc, CRPACKBLOCKSTATE_OP_NEWLIST );
    8888    CR_UNLOCK_PACKER_CONTEXT(pc);
    8989}
  • trunk/src/VBox/GuestHost/OpenGL/packer/pack_misc.c

    r46966 r50973  
    188188    CR_UNLOCK_PACKER_CONTEXT(pc);
    189189}
     190
     191void 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
     205void 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  
    9090    unsigned char *data_ptr;
    9191    (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 );
    9394    WRITE_DATA( 0, GLint, SWAP32(16) );
    9495    WRITE_DATA( 4, GLenum, SWAP32(CR_NEWLIST_EXTEND_OPCODE) );
     
    112113    WRITE_OPCODE( pc, CR_EXTEND_OPCODE );
    113114    pc->buffer.in_List = GL_FALSE;
     115    CR_CMDBLOCK_END( pc, CRPACKBLOCKSTATE_OP_NEWLIST );
    114116    CR_UNLOCK_PACKER_CONTEXT(pc);
    115117}
  • trunk/src/VBox/GuestHost/OpenGL/packer/packer_special

    r46757 r50973  
    181181WindowShow
    182182WindowSize
     183BeginQueryARB
     184EndQueryARB
  • trunk/src/VBox/GuestHost/OpenGL/util/vboxhgcm.c

    r50928 r50973  
    24412441    conn->cbHostBuffer = 0;
    24422442
     2443#if !defined(IN_GUEST)
     2444    RTListInit(&conn->PendingMsgList);
     2445#endif
     2446
    24432447#ifdef CHROMIUM_THREADSAFE
    24442448    crLockMutex(&g_crvboxhgcm.mutex);
  • trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_config.c

    r50217 r50973  
    226226    {
    227227        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);
    229229    }
    230230    else
    231231    {
    232         cr_server.u32Caps = CR_VBOX_CAP_TEX_PRESENT/* | CR_VBOX_CAP_CMDVBVA*/;
     232        cr_server.u32Caps = CR_VBOX_CAP_TEX_PRESENT
    233233#ifdef DEBUG_misha
    234         cr_server.u32Caps |= CR_VBOX_CAP_CMDVBVA;
     234                | CR_VBOX_CAP_CMDVBVA | CR_VBOX_CAP_CMDBLOCKS
    235235#endif
     236                ;
    236237
    237238    }
     
    376377    {
    377378        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);
    379380    }
    380381    else
    381382    {
    382         cr_server.u32Caps = CR_VBOX_CAP_TEX_PRESENT/* | CR_VBOX_CAP_CMDVBVA*/;
     383        cr_server.u32Caps = CR_VBOX_CAP_TEX_PRESENT
    383384#ifdef DEBUG_misha
    384         cr_server.u32Caps |= CR_VBOX_CAP_CMDVBVA;
     385                | CR_VBOX_CAP_CMDVBVA | CR_VBOX_CAP_CMDBLOCKS
    385386#endif
     387                ;
    386388    }
    387389
  • trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_stream.c

    r50627 r50973  
    416416}
    417417
     418typedef struct CR_SERVER_PENDING_MSG
     419{
     420    RTLISTNODE Node;
     421    CRMessage Msg;
     422} CR_SERVER_PENDING_MSG;
     423
     424static 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
     440static 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}
    418467
    419468/**
     
    422471 */
    423472static void
    424 crServerDispatchMessage(CRConnection *conn, CRMessage *msg)
     473crServerDispatchMessage(CRConnection *conn, CRMessage *msg, int cbMsg)
    425474{
    426475    const CRMessageOpcodes *msg_opcodes;
     
    430479    PCRVBOXHGSMI_CMDDATA pCmdData = NULL;
    431480#endif
     481    CR_UNPACK_BUFFER_TYPE enmType;
     482    bool fUnpack = true;
    432483
    433484    if (msg->header.type == CR_MESSAGE_REDIR_PTR)
     
    450501
    451502    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    }
    456561
    457562#ifdef VBOX_WITH_CRHGSMI
     
    584689
    585690        /* Commands get dispatched here */
    586         crServerDispatchMessage( conn, msg );
     691        crServerDispatchMessage( conn, msg, len );
    587692
    588693        crNetFree( conn, msg );
  • trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack.py

    r39815 r50973  
    263263                #endif
    264264                break;
     265            case CR_CMDBLOCKBEGIN_OPCODE:
     266            case CR_CMDBLOCKEND_OPCODE:
     267            case CR_NOP_OPCODE:
     268                INCR_DATA_PTR_NO_ARGS( );
     269                break;
    265270            default:
    266271                crError( "Unknown opcode: %d", *unpack_opcodes );
Note: See TracChangeset for help on using the changeset viewer.

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