VirtualBox

Ignore:
Timestamp:
Nov 25, 2018 6:37:51 PM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
126919
Message:

VBoxServiceControlSession.cpp: Pointed out bogus error handling in vgsvcGstCtrlSessionSpawnWorker() for the author to have a look at. Also, don't use doxygen comments inside functions. Did some other cleanups to help follow the code flow.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlSession.cpp

    r75719 r75720  
    724724                                         startupInfo.szEnv,      &startupInfo.cbEnv,            &startupInfo.uNumEnvVars,
    725725                                         /* Credentials; for hosts with VBox < 4.3 (protocol version 1).
    726                                           * For protocl v2 and up the credentials are part of the session
     726                                          * For protocol v2 and up the credentials are part of the session
    727727                                          * opening call. */
    728728                                         startupInfo.szUser,     sizeof(startupInfo.szUser),
     
    10671067        VGSvcVerbose(3, "Unsupported message (uMsg=%RU32, cParms=%RU32) from host, skipping\n", uMsg, pHostCtx->uNumParms);
    10681068
    1069         /**
     1069        /*
    10701070         * !!! HACK ALERT BEGIN !!!
    10711071         * As peeking for the current message by VbglR3GuestCtrlMsgWaitFor() / GUEST_MSG_WAIT only gives us the message type and
     
    10731073         *
    10741074         * This is needed in order to reply to the host with the current context ID, without breaking existing clients.
    1075          * Not doing this isn't fatal, but will make host clients wait longer (timing out) for not implemented messages.
    1076          ** @todo Get rid of this as soon as we have a protocl bump (v4).
    1077          */
     1075         * Not doing this isn't fatal, but will make host clients wait longer (timing out) for not implemented messages. */
     1076        /** @todo Get rid of this as soon as we have a protocol bump (v4). */
    10781077        struct HGCMMsgSkip
    10791078        {
     
    10861085        VBGL_HGCM_HDR_INIT(&Msg.hdr, pHostCtx->uClientID, GUEST_MSG_WAIT, pHostCtx->uNumParms);
    10871086
    1088         /* Don't want to drag in VbglHGCMParmUInt32Set(). */
     1087        /* Don't want to drag in VbglHGCMParmUInt32Set(). */ /** @todo r=bird: Why don't we?  It's an inline function, so little dragging.  */
    10891088        Msg.context.type      = VMMDevHGCMParmType_32bit;
    10901089        Msg.context.u.value64 = 0; /* init unused bits to 0 */
     
    10961095            Msg.context.GetUInt32(&pHostCtx->uContextID);
    10971096
    1098         /** !!!                !!!
     1097        /*  !!!                !!!
    10991098         *  !!! HACK ALERT END !!!
    11001099         *  !!!                !!! */
     
    13171316    if (RT_SUCCESS(rc))
    13181317    {
    1319         /* Set session filter. This prevents the guest control
    1320          * host service to send messages which belong to another
    1321          * session we don't want to handle. */
     1318        /* Set session filter. This prevents the guest control host service from
     1319           sending messages which belong to another session we don't want to handle. */
    13221320        uint32_t uFilterAdd = VBOX_GUESTCTRL_FILTER_BY_SESSION(pSession->StartupInfo.uSessionID);
    13231321        rc = VbglR3GuestCtrlMsgFilterSet(uClientID,
     
    13381336    }
    13391337    else
     1338/** @todo r=bird: This should return to caller, shouldn't it it?!?
     1339 * Because VbglR3GuestCtrlSessionNotify() below is now using an uninitialized
     1340 * uClientID, right?  If you check VbglR3GuestCtrlConnect, you can clearly see
     1341 * that it will not be set, except on success.  So, this is a terrible idea!
     1342 *
     1343 * Did this happen because of a weird desire to have a single return statement?
     1344 * Or was it some other confusion wrt program flow/state?  Indentation fright?
     1345 * Please figure out why and try not to do it again. :-)
     1346 */
    13401347        VGSvcError("Error connecting to guest control service, rc=%Rrc\n", rc);
    13411348
     
    13601367    AssertReturn(RT_IS_POWER_OF_TWO(cbScratchBuf), RTEXITCODE_FAILURE);
    13611368    uint8_t *pvScratchBuf = NULL;
    1362 
    1363     if (RT_SUCCESS(rc))
    1364     {
    1365         pvScratchBuf = (uint8_t*)RTMemAlloc(cbScratchBuf);
     1369    if (RT_SUCCESS(rc))
     1370    {
     1371        pvScratchBuf = (uint8_t *)RTMemAlloc(cbScratchBuf);
    13661372        if (!pvScratchBuf)
    13671373            rc = VERR_NO_MEMORY;
     
    13791385            uint32_t cParms = 0;
    13801386            rc = VbglR3GuestCtrlMsgWaitFor(uClientID, &uMsg, &cParms);
    1381             if (rc == VERR_TOO_MUCH_DATA)
     1387            if (   rc == VINF_SUCCESS
     1388                || rc == VERR_TOO_MUCH_DATA)
    13821389            {
    1383 #ifdef DEBUG
    1384                 VGSvcVerbose(4, "Message requires %RU32 parameters, but only 2 supplied -- retrying request (no error!)...\n",
    1385                              cParms);
    1386 #endif
    1387                 rc = VINF_SUCCESS; /* Try to get "real" message in next block below. */
     1390                VGSvcVerbose(4, "Msg=%RU32 (%RU32 parms) retrieved (%Rrc)\n", uMsg, cParms, rc);
     1391
     1392                /* Set number of parameters for current host context and pass it on to the
     1393                   session handler.
     1394                   Note! Only when handling HOST_SESSION_CLOSE is the rc used. */
     1395                ctxHost.uNumParms = cParms;
     1396                rc = VGSvcGstCtrlSessionHandler(pSession, uMsg, &ctxHost, pvScratchBuf, cbScratchBuf, &fShutdown);
     1397                if (fShutdown)
     1398                    break;
    13881399            }
    13891400            else if (RT_FAILURE(rc))
    13901401                VGSvcVerbose(3, "Getting host message failed with %Rrc\n", rc); /* VERR_GEN_IO_FAILURE seems to be normal if ran into timeout. */
    1391             if (RT_SUCCESS(rc))
    1392             {
    1393                 VGSvcVerbose(4, "Msg=%RU32 (%RU32 parms) retrieved\n", uMsg, cParms);
    1394 
    1395                 /* Set number of parameters for current host context. */
    1396                 ctxHost.uNumParms = cParms;
    1397 
    1398                 /* ... and pass it on to the session handler. */
    1399                 rc = VGSvcGstCtrlSessionHandler(pSession, uMsg, &ctxHost, pvScratchBuf, cbScratchBuf, &fShutdown);
    1400             }
    1401 
    1402             if (fShutdown)
    1403                 break;
    14041402
    14051403            /* Let others run ... */
     
    22092207    };
    22102208
    2211     int ch;
    2212     RTGETOPTUNION ValueUnion;
    22132209    RTGETOPTSTATE GetState;
    22142210    RTGetOptInit(&GetState, argc, argv,
     
    22222218    g_Session.StartupInfo.uSessionID = UINT32_MAX;
    22232219
     2220    int ch;
     2221    RTGETOPTUNION ValueUnion;
    22242222    while ((ch = RTGetOpt(&GetState, &ValueUnion)) != 0)
    22252223    {
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