Changeset 47817 in vbox for trunk/src/VBox/Additions/common/VBoxService
- Timestamp:
- Aug 16, 2013 3:30:15 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 88078
- Location:
- trunk/src/VBox/Additions/common/VBoxService
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.cpp
r47721 r47817 225 225 if (RT_SUCCESS(rc)) 226 226 { 227 #ifdef DEBUG 228 VBoxServiceVerbose(3, "Msg=%RU32 (%RU32 parms) retrieved\n", uMsg, cParms); 229 #endif 227 VBoxServiceVerbose(4, "Msg=%RU32 (%RU32 parms) retrieved\n", uMsg, cParms); 228 230 229 /* Set number of parameters for current host context. */ 231 230 ctxHost.uNumParms = cParms; -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlSession.cpp
r47695 r47817 103 103 104 104 105 /** @todo No locking done yet! */ 105 106 static PVBOXSERVICECTRLFILE gstcntlSessionFileGetLocked(const PVBOXSERVICECTRLSESSION pSession, 106 107 uint32_t uHandle) … … 127 128 128 129 char szFile[RTPATH_MAX]; 129 char sz OpenMode[64];130 char szAccess[64]; 130 131 char szDisposition[64]; 132 char szSharing[64]; 131 133 uint32_t uCreationMode = 0; 132 134 uint64_t uOffset = 0; 133 134 135 uint32_t uHandle = 0; 136 135 137 int rc = VbglR3GuestCtrlFileGetOpen(pHostCtx, 136 138 /* File to open. */ 137 139 szFile, sizeof(szFile), 138 140 /* Open mode. */ 139 sz OpenMode, sizeof(szOpenMode),141 szAccess, sizeof(szAccess), 140 142 /* Disposition. */ 141 143 szDisposition, sizeof(szDisposition), 144 /* Sharing. */ 145 szSharing, sizeof(szSharing), 142 146 /* Creation mode. */ 143 147 &uCreationMode, 144 148 /* Offset. */ 145 149 &uOffset); 150 #ifdef DEBUG 151 VBoxServiceVerbose(4, "[File %s]: szAccess=%s, szDisposition=%s, szSharing=%s, rc=%Rrc\n", 152 szFile, szAccess, szDisposition, szSharing, rc); 153 #endif 146 154 if (RT_SUCCESS(rc)) 147 155 { … … 149 157 if (pFile) 150 158 { 151 if (!RTStrPrintf(pFile->szName, sizeof(pFile->szName), "%s", szFile)) 152 rc = VERR_BUFFER_OVERFLOW; 159 if (!strlen(szFile)) 160 rc = VERR_INVALID_PARAMETER; 161 162 if ( RT_SUCCESS(rc) 163 && !RTStrPrintf(pFile->szName, sizeof(pFile->szName), "%s", szFile)) 164 rc = VERR_NO_MEMORY; 153 165 154 166 if (RT_SUCCESS(rc)) 155 167 { 156 uint64_t fFlags = RTFILE_O_OPEN_CREATE | RTFILE_O_WRITE | RTFILE_O_DENY_WRITE; /** @todo Modes! */ 157 rc = RTFileOpen(&pFile->hFile, pFile->szName, fFlags); 168 uint64_t fFlags; 169 rc = RTFileModeToFlagsEx(szAccess, szDisposition, 170 NULL /* pszSharing, not used yet */, &fFlags); 171 VBoxServiceVerbose(4, "[File %s]: Opening flags=0x%x, rc=%Rrc\n", pFile->szName, fFlags, rc); 172 if (RT_SUCCESS(rc)) 173 rc = RTFileOpen(&pFile->hFile, pFile->szName, fFlags); 158 174 if ( RT_SUCCESS(rc) 159 175 && uOffset) … … 165 181 pFile->szName, uOffset, rc); 166 182 } 167 else 183 else if (RT_FAILURE(rc)) 168 184 VBoxServiceVerbose(3, "[File %s]: Opening failed; rc=%Rrc\n", 169 185 pFile->szName, rc); … … 196 212 } 197 213 214 #ifdef DEBUG 215 VBoxServiceVerbose(4, "Opening file \"%s\" (open mode=\"%s\", disposition=\"%s\", creation mode=0x%x returned rc=%Rrc\n", 216 szFile, szAccess, szDisposition, uCreationMode, rc); 217 #endif 198 218 return rc; 199 219 } … … 206 226 AssertPtrReturn(pHostCtx, VERR_INVALID_POINTER); 207 227 208 uint32_t uHandle; 209 228 PVBOXSERVICECTRLFILE pFile = NULL; 229 230 uint32_t uHandle = 0; 210 231 int rc = VbglR3GuestCtrlFileGetClose(pHostCtx, &uHandle /* File handle to close */); 211 232 if (RT_SUCCESS(rc)) 212 233 { 213 PVBOXSERVICECTRLFILEpFile = gstcntlSessionFileGetLocked(pSession, uHandle);234 pFile = gstcntlSessionFileGetLocked(pSession, uHandle); 214 235 if (pFile) 215 236 { … … 227 248 } 228 249 250 #ifdef DEBUG 251 VBoxServiceVerbose(4, "Closing file \"%s\" (handle=%RU32) returned rc=%Rrc\n", 252 pFile ? pFile->szName : "<Not found>", uHandle, rc); 253 #endif 229 254 return rc; 230 255 } … … 238 263 AssertPtrReturn(pHostCtx, VERR_INVALID_POINTER); 239 264 240 uint32_t uHandle; 265 PVBOXSERVICECTRLFILE pFile = NULL; 266 267 uint32_t uHandle = 0; 241 268 uint32_t cbToRead; 242 243 269 int rc = VbglR3GuestCtrlFileGetRead(pHostCtx, &uHandle, &cbToRead); 244 270 if (RT_SUCCESS(rc)) … … 279 305 rc = rc2; 280 306 } 307 308 #ifdef DEBUG 309 VBoxServiceVerbose(4, "Reading file \"%s\" (handle=%RU32) returned rc=%Rrc\n", 310 pFile ? pFile->szName : "<Not found>", uHandle, rc); 311 #endif 281 312 return rc; 282 313 } … … 290 321 AssertPtrReturn(pHostCtx, VERR_INVALID_POINTER); 291 322 292 uint32_t uHandle; 323 PVBOXSERVICECTRLFILE pFile = NULL; 324 325 uint32_t uHandle = 0; 293 326 uint32_t cbToRead; int64_t iOffset; 294 327 295 328 int rc = VbglR3GuestCtrlFileGetReadAt(pHostCtx, 296 &uHandle, &cbToRead, (uint64_t *)&iOffset);329 &uHandle, &cbToRead, (uint64_t *)&iOffset); 297 330 if (RT_SUCCESS(rc)) 298 331 { … … 300 333 size_t cbRead = 0; 301 334 302 PVBOXSERVICECTRLFILEpFile = gstcntlSessionFileGetLocked(pSession, uHandle);335 pFile = gstcntlSessionFileGetLocked(pSession, uHandle); 303 336 if (pFile) 304 337 { … … 332 365 rc = rc2; 333 366 } 367 368 #ifdef DEBUG 369 VBoxServiceVerbose(4, "Reading file \"%s\" at offset (handle=%RU32) returned rc=%Rrc\n", 370 pFile ? pFile->szName : "<Not found>", uHandle, rc); 371 #endif 334 372 return rc; 335 373 } … … 345 383 AssertPtrReturn(cbScratchBuf, VERR_INVALID_PARAMETER); 346 384 347 uint32_t uHandle; 385 PVBOXSERVICECTRLFILE pFile = NULL; 386 387 uint32_t uHandle = 0; 348 388 uint32_t cbToWrite; 349 389 … … 354 394 { 355 395 size_t cbWritten = 0; 356 PVBOXSERVICECTRLFILEpFile = gstcntlSessionFileGetLocked(pSession, uHandle);396 pFile = gstcntlSessionFileGetLocked(pSession, uHandle); 357 397 if (pFile) 358 398 { … … 369 409 rc = rc2; 370 410 } 411 412 #ifdef DEBUG 413 VBoxServiceVerbose(4, "Writing file \"%s\" (handle=%RU32) returned rc=%Rrc\n", 414 pFile ? pFile->szName : "<Not found>", uHandle, rc); 415 #endif 371 416 return rc; 372 417 } … … 382 427 AssertPtrReturn(cbScratchBuf, VERR_INVALID_PARAMETER); 383 428 384 uint32_t uHandle; 429 PVBOXSERVICECTRLFILE pFile = NULL; 430 431 uint32_t uHandle = 0; 385 432 uint32_t cbToWrite; int64_t iOffset; 386 433 387 434 int rc = VbglR3GuestCtrlFileGetWriteAt(pHostCtx, &uHandle, 388 435 pvScratchBuf, cbScratchBuf, 389 &cbToWrite, (uint64_t *)&iOffset);436 &cbToWrite, (uint64_t *)&iOffset); 390 437 if (RT_SUCCESS(rc)) 391 438 { … … 407 454 rc = rc2; 408 455 } 456 457 #ifdef DEBUG 458 VBoxServiceVerbose(4, "Writing file \"%s\" at offset (handle=%RU32) returned rc=%Rrc\n", 459 pFile ? pFile->szName : "<Not found>", uHandle, rc); 460 #endif 409 461 return rc; 410 462 } … … 417 469 AssertPtrReturn(pHostCtx, VERR_INVALID_POINTER); 418 470 419 uint32_t uHandle; 471 PVBOXSERVICECTRLFILE pFile = NULL; 472 473 uint32_t uHandle = 0; 420 474 uint32_t uSeekMethod; 421 475 uint64_t uOffset; /* Will be converted to int64_t. */ … … 427 481 if (RT_SUCCESS(rc)) 428 482 { 429 PVBOXSERVICECTRLFILEpFile = gstcntlSessionFileGetLocked(pSession, uHandle);483 pFile = gstcntlSessionFileGetLocked(pSession, uHandle); 430 484 if (pFile) 431 485 { … … 464 518 rc = rc2; 465 519 } 520 521 #ifdef DEBUG 522 VBoxServiceVerbose(4, "Seeking file \"%s\" (handle=%RU32) returned rc=%Rrc\n", 523 pFile ? pFile->szName : "<Not found>", uHandle, rc); 524 #endif 466 525 return rc; 467 526 } … … 474 533 AssertPtrReturn(pHostCtx, VERR_INVALID_POINTER); 475 534 476 uint32_t uHandle; 535 PVBOXSERVICECTRLFILE pFile = NULL; 536 537 uint32_t uHandle = 0; 477 538 uint64_t uOffsetActual = 0; 478 539 … … 480 541 if (RT_SUCCESS(rc)) 481 542 { 482 PVBOXSERVICECTRLFILEpFile = gstcntlSessionFileGetLocked(pSession, uHandle);543 pFile = gstcntlSessionFileGetLocked(pSession, uHandle); 483 544 if (pFile) 484 545 { … … 495 556 rc = rc2; 496 557 } 558 559 #ifdef DEBUG 560 VBoxServiceVerbose(4, "Telling file \"%s\" (handle=%RU32) returned rc=%Rrc\n", 561 pFile ? pFile->szName : "<Not found>", uHandle, rc); 562 #endif 497 563 return rc; 498 564 } … … 659 725 { 660 726 fPendingClose = true; 661 #ifdef DEBUG _andy727 #ifdef DEBUG 662 728 VBoxServiceVerbose(4, "Got last process input block for PID=%RU32 (%RU32 bytes) ...\n", 663 729 uPID, cbSize); … … 679 745 } 680 746 681 682 #ifdef DEBUG_andy 747 #ifdef DEBUG 683 748 VBoxServiceVerbose(4, "Setting input for PID=%RU32 resulted in rc=%Rrc\n", 684 749 uPID, rc); … … 905 970 break; 906 971 } 972 973 if (RT_FAILURE(rc)) 974 VBoxServiceError("Error while handling message (uMsg=%RU32, cParms=%RU32), rc=%Rrc\n", 975 uMsg, pHostCtx->uNumParms, rc); 907 976 908 977 return rc; … … 1169 1238 if (RT_SUCCESS(rc)) 1170 1239 { 1171 #ifdef DEBUG 1172 VBoxServiceVerbose(3, "Msg=%RU32 (%RU32 parms) retrieved\n", uMsg, cParms); 1173 #endif 1240 VBoxServiceVerbose(4, "Msg=%RU32 (%RU32 parms) retrieved\n", uMsg, cParms); 1241 1174 1242 /* Set number of parameters for current host context. */ 1175 1243 ctxHost.uNumParms = cParms;
Note:
See TracChangeset
for help on using the changeset viewer.