Changeset 75720 in vbox for trunk/src/VBox/Additions/common/VBoxService
- Timestamp:
- Nov 25, 2018 6:37:51 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 126919
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlSession.cpp
r75719 r75720 724 724 startupInfo.szEnv, &startupInfo.cbEnv, &startupInfo.uNumEnvVars, 725 725 /* Credentials; for hosts with VBox < 4.3 (protocol version 1). 726 * For protoc l v2 and up the credentials are part of the session726 * For protocol v2 and up the credentials are part of the session 727 727 * opening call. */ 728 728 startupInfo.szUser, sizeof(startupInfo.szUser), … … 1067 1067 VGSvcVerbose(3, "Unsupported message (uMsg=%RU32, cParms=%RU32) from host, skipping\n", uMsg, pHostCtx->uNumParms); 1068 1068 1069 /* *1069 /* 1070 1070 * !!! HACK ALERT BEGIN !!! 1071 1071 * As peeking for the current message by VbglR3GuestCtrlMsgWaitFor() / GUEST_MSG_WAIT only gives us the message type and … … 1073 1073 * 1074 1074 * 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). */ 1078 1077 struct HGCMMsgSkip 1079 1078 { … … 1086 1085 VBGL_HGCM_HDR_INIT(&Msg.hdr, pHostCtx->uClientID, GUEST_MSG_WAIT, pHostCtx->uNumParms); 1087 1086 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. */ 1089 1088 Msg.context.type = VMMDevHGCMParmType_32bit; 1090 1089 Msg.context.u.value64 = 0; /* init unused bits to 0 */ … … 1096 1095 Msg.context.GetUInt32(&pHostCtx->uContextID); 1097 1096 1098 /* *!!! !!!1097 /* !!! !!! 1099 1098 * !!! HACK ALERT END !!! 1100 1099 * !!! !!! */ … … 1317 1316 if (RT_SUCCESS(rc)) 1318 1317 { 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. */ 1322 1320 uint32_t uFilterAdd = VBOX_GUESTCTRL_FILTER_BY_SESSION(pSession->StartupInfo.uSessionID); 1323 1321 rc = VbglR3GuestCtrlMsgFilterSet(uClientID, … … 1338 1336 } 1339 1337 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 */ 1340 1347 VGSvcError("Error connecting to guest control service, rc=%Rrc\n", rc); 1341 1348 … … 1360 1367 AssertReturn(RT_IS_POWER_OF_TWO(cbScratchBuf), RTEXITCODE_FAILURE); 1361 1368 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); 1366 1372 if (!pvScratchBuf) 1367 1373 rc = VERR_NO_MEMORY; … … 1379 1385 uint32_t cParms = 0; 1380 1386 rc = VbglR3GuestCtrlMsgWaitFor(uClientID, &uMsg, &cParms); 1381 if (rc == VERR_TOO_MUCH_DATA) 1387 if ( rc == VINF_SUCCESS 1388 || rc == VERR_TOO_MUCH_DATA) 1382 1389 { 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; 1388 1399 } 1389 1400 else if (RT_FAILURE(rc)) 1390 1401 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;1404 1402 1405 1403 /* Let others run ... */ … … 2209 2207 }; 2210 2208 2211 int ch;2212 RTGETOPTUNION ValueUnion;2213 2209 RTGETOPTSTATE GetState; 2214 2210 RTGetOptInit(&GetState, argc, argv, … … 2222 2218 g_Session.StartupInfo.uSessionID = UINT32_MAX; 2223 2219 2220 int ch; 2221 RTGETOPTUNION ValueUnion; 2224 2222 while ((ch = RTGetOpt(&GetState, &ValueUnion)) != 0) 2225 2223 {
Note:
See TracChangeset
for help on using the changeset viewer.