Changeset 19866 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- May 20, 2009 1:35:36 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 47540
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.c
r19730 r19866 38 38 #endif 39 39 #include <iprt/alloc.h> 40 #include <iprt/cpuset.h> 41 #include <iprt/handletable.h> 42 #include <iprt/mp.h> 43 #include <iprt/power.h> 44 #include <iprt/process.h> 40 45 #include <iprt/semaphore.h> 41 46 #include <iprt/spinlock.h> 42 47 #include <iprt/thread.h> 43 #include <iprt/process.h>44 #include <iprt/mp.h>45 #include <iprt/power.h>46 #include <iprt/cpuset.h>47 48 #include <iprt/uuid.h> 48 49 #include <VBox/param.h> … … 125 126 * Internal Functions * 126 127 *******************************************************************************/ 128 static DECLCALLBACK(int) supdrvSessionObjHandleRetain(RTHANDLETABLE hHandleTable, void *pvObj, void *pvCtx, void *pvUser); 129 static DECLCALLBACK(void) supdrvSessionObjHandleDelete(RTHANDLETABLE hHandleTable, uint32_t h, void *pvObj, void *pvCtx, void *pvUser); 127 130 static int supdrvMemAdd(PSUPDRVMEMREF pMem, PSUPDRVSESSION pSession); 128 131 static int supdrvMemRelease(PSUPDRVSESSION pSession, RTHCUINTPTR uPtr, SUPDRVMEMREFTYPE eType); … … 178 181 DECLASM(int) UNWIND_WRAP(SUPR0PageFree)(PSUPDRVSESSION pSession, RTR3PTR pvR3); 179 182 //DECLASM(int) UNWIND_WRAP(SUPR0Printf)(const char *pszFormat, ...); 183 DECLASM(int) UNWIND_WRAP(SUPSemEventCreate)(PSUPDRVSESSION pSession, PSUPSEMEVENT phEvent); 184 DECLASM(int) UNWIND_WRAP(SUPSemEventClose)(PSUPDRVSESSION pSession, SUPSEMEVENT hEvent); 185 DECLASM(int) UNWIND_WRAP(SUPSemEventSignal)(PSUPDRVSESSION pSession, SUPSEMEVENT hEvent); 186 DECLASM(int) UNWIND_WRAP(SUPSemEventWait)(PSUPDRVSESSION pSession, SUPSEMEVENT hEvent, uint32_t cMillies); 187 DECLASM(int) UNWIND_WRAP(SUPSemEventWaitNoResume)(PSUPDRVSESSION pSession, SUPSEMEVENT hEvent, uint32_t cMillies); 188 DECLASM(int) UNWIND_WRAP(SUPSemEventMultiCreate)(PSUPDRVSESSION pSession, PSUPSEMEVENTMULTI phEventMulti); 189 DECLASM(int) UNWIND_WRAP(SUPSemEventMultiClose)(PSUPDRVSESSION pSession, SUPSEMEVENTMULTI hEventMulti); 190 DECLASM(int) UNWIND_WRAP(SUPSemEventMultiSignal)(PSUPDRVSESSION pSession, SUPSEMEVENTMULTI hEventMulti); 191 DECLASM(int) UNWIND_WRAP(SUPSemEventMultiReset)(PSUPDRVSESSION pSession, SUPSEMEVENTMULTI hEventMulti); 192 DECLASM(int) UNWIND_WRAP(SUPSemEventMultiWait)(PSUPDRVSESSION pSession, SUPSEMEVENTMULTI hEventMulti, uint32_t cMillies); 193 DECLASM(int) UNWIND_WRAP(SUPSemEventMultiWaitNoResume)(PSUPDRVSESSION pSession, SUPSEMEVENTMULTI hEventMulti, uint32_t cMillies); 180 194 DECLASM(SUPPAGINGMODE) UNWIND_WRAP(SUPR0GetPagingMode)(void); 181 195 DECLASM(void *) UNWIND_WRAP(RTMemAlloc)(size_t cb) RT_NO_THROW; … … 316 330 { "SUPR0PageFree", (void *)UNWIND_WRAP(SUPR0PageFree) }, 317 331 { "SUPR0Printf", (void *)SUPR0Printf }, /** @todo needs wrapping? */ 332 { "SUPSemEventCreate", (void *)UNWIND_WRAP(SUPSemEventCreate) }, 333 { "SUPSemEventClose", (void *)UNWIND_WRAP(SUPSemEventClose) }, 334 { "SUPSemEventSignal", (void *)UNWIND_WRAP(SUPSemEventSignal) }, 335 { "SUPSemEventWait", (void *)UNWIND_WRAP(SUPSemEventWait) }, 336 { "SUPSemEventWaitNoResume", (void *)UNWIND_WRAP(SUPSemEventWaitNoResume) }, 337 { "SUPSemEventMultiCreate", (void *)UNWIND_WRAP(SUPSemEventMultiCreate) }, 338 { "SUPSemEventMultiClose", (void *)UNWIND_WRAP(SUPSemEventMultiClose) }, 339 { "SUPSemEventMultiSignal", (void *)UNWIND_WRAP(SUPSemEventMultiSignal) }, 340 { "SUPSemEventMultiReset", (void *)UNWIND_WRAP(SUPSemEventMultiReset) }, 341 { "SUPSemEventMultiWait", (void *)UNWIND_WRAP(SUPSemEventMultiWait) }, 342 { "SUPSemEventMultiWaitNoResume", (void *)UNWIND_WRAP(SUPSemEventMultiWaitNoResume) }, 318 343 { "SUPR0GetPagingMode", (void *)UNWIND_WRAP(SUPR0GetPagingMode) }, 319 344 { "SUPR0EnableVTx", (void *)SUPR0EnableVTx }, … … 649 674 if (!rc) 650 675 { 651 Assert(pSession->Spinlock != NIL_RTSPINLOCK); 652 pSession->pDevExt = pDevExt; 653 pSession->u32Cookie = BIRD_INV; 654 /*pSession->pLdrUsage = NULL; 655 pSession->pVM = NULL; 656 pSession->pUsage = NULL; 657 pSession->pGip = NULL; 658 pSession->fGipReferenced = false; 659 pSession->Bundle.cUsed = 0; */ 660 pSession->Uid = NIL_RTUID; 661 pSession->Gid = NIL_RTGID; 662 if (fUser) 663 { 664 pSession->Process = RTProcSelf(); 665 pSession->R0Process = RTR0ProcHandleSelf(); 666 } 667 else 668 { 669 pSession->Process = NIL_RTPROCESS; 670 pSession->R0Process = NIL_RTR0PROCESS; 671 } 672 673 LogFlow(("Created session %p initial cookie=%#x\n", pSession, pSession->u32Cookie)); 674 return VINF_SUCCESS; 675 } 676 676 rc = RTHandleTableCreateEx(&pSession->hHandleTable, 677 RTHANDLETABLE_FLAGS_LOCKED | RTHANDLETABLE_FLAGS_CONTEXT, 678 1 /*uBase*/, 32768 /*cMax*/, supdrvSessionObjHandleRetain, pSession); 679 if (RT_SUCCESS(rc)) 680 { 681 Assert(pSession->Spinlock != NIL_RTSPINLOCK); 682 pSession->pDevExt = pDevExt; 683 pSession->u32Cookie = BIRD_INV; 684 /*pSession->pLdrUsage = NULL; 685 pSession->pVM = NULL; 686 pSession->pUsage = NULL; 687 pSession->pGip = NULL; 688 pSession->fGipReferenced = false; 689 pSession->Bundle.cUsed = 0; */ 690 pSession->Uid = NIL_RTUID; 691 pSession->Gid = NIL_RTGID; 692 if (fUser) 693 { 694 pSession->Process = RTProcSelf(); 695 pSession->R0Process = RTR0ProcHandleSelf(); 696 } 697 else 698 { 699 pSession->Process = NIL_RTPROCESS; 700 pSession->R0Process = NIL_RTR0PROCESS; 701 } 702 703 LogFlow(("Created session %p initial cookie=%#x\n", pSession, pSession->u32Cookie)); 704 return VINF_SUCCESS; 705 } 706 707 RTSpinlockDestroy(pSession->Spinlock); 708 } 677 709 RTMemFree(pSession); 678 710 *ppSession = NULL; … … 721 753 void VBOXCALL supdrvCleanupSession(PSUPDRVDEVEXT pDevExt, PSUPDRVSESSION pSession) 722 754 { 755 int rc; 723 756 PSUPDRVBUNDLE pBundle; 724 757 LogFlow(("supdrvCleanupSession: pSession=%p\n", pSession)); … … 728 761 */ 729 762 RTLogSetDefaultInstanceThread(NULL, (uintptr_t)pSession); 763 764 /* 765 * Destroy the handle table. 766 */ 767 rc = RTHandleTableDestroy(pSession->hHandleTable, supdrvSessionObjHandleDelete, pSession); 768 AssertRC(rc); 769 pSession->hHandleTable = NIL_RTHANDLETABLE; 730 770 731 771 /* … … 915 955 } 916 956 Log2(("umapping GIP - done\n")); 957 } 958 959 960 /** 961 * RTHandleTableDestroy callback used by supdrvCleanupSession. 962 * 963 * @returns IPRT status code, see SUPR0ObjAddRef. 964 * @param hHandleTable The handle table handle. Ignored. 965 * @param pvObj The object pointer. 966 * @param pvCtx Context. NULL. 967 * @param pvUser Session pointer. 968 */ 969 static DECLCALLBACK(int) supdrvSessionObjHandleRetain(RTHANDLETABLE hHandleTable, void *pvObj, void *pvCtx, void *pvUser) 970 { 971 Assert(!pvCtx); 972 NOREF(pvCtx); 973 NOREF(hHandleTable); 974 return SUPR0ObjAddRef(pvObj, (PSUPDRVSESSION)pvUser); 975 } 976 977 978 /** 979 * RTHandleTableDestroy callback used by supdrvCleanupSession. 980 * 981 * @param hHandleTable The handle table handle. Ignored. 982 * @param h The handle value. Ignored. 983 * @param pvObj The object pointer. 984 * @param pvCtx Context. NULL. 985 * @param pvUser Session pointer. 986 */ 987 static DECLCALLBACK(void) supdrvSessionObjHandleDelete(RTHANDLETABLE hHandleTable, uint32_t h, void *pvObj, void *pvCtx, void *pvUser) 988 { 989 Assert(!pvCtx); 990 NOREF(pvCtx); 991 NOREF(h); 992 NOREF(hHandleTable); 993 SUPR0ObjRelease(pvObj, (PSUPDRVSESSION)pvUser); 917 994 } 918 995 … … 3180 3257 RTSemFastMutexRelease(pSession->pDevExt->mtxComponentFactory); 3181 3258 } 3259 return rc; 3260 } 3261 3262 3263 /** 3264 * Destructor for objects created by SUPSemEventCreate. 3265 * 3266 * @param pvObj The object handle. 3267 * @param pvUser1 The IPRT event handle. 3268 * @param pvUser2 NULL. 3269 */ 3270 static DECLCALLBACK(void) supR0SemEventDestructor(void *pvObj, void *pvUser1, void *pvUser2) 3271 { 3272 Assert(pvUser2 == NULL); 3273 NOREF(pvObj); 3274 RTSemEventDestroy((RTSEMEVENT)pvUser1); 3275 } 3276 3277 3278 SUPDECL(int) SUPSemEventCreate(PSUPDRVSESSION pSession, PSUPSEMEVENT phEvent) 3279 { 3280 int rc; 3281 RTSEMEVENT hEventReal; 3282 3283 /* 3284 * Input validation. 3285 */ 3286 AssertReturn(SUP_IS_SESSION_VALID(pSession), VERR_INVALID_PARAMETER); 3287 AssertPtrReturn(phEvent, VERR_INVALID_POINTER); 3288 3289 /* 3290 * Create the event semaphore object. 3291 */ 3292 rc = RTSemEventCreate(&hEventReal); 3293 if (RT_SUCCESS(rc)) 3294 { 3295 void *pvObj = SUPR0ObjRegister(pSession, SUPDRVOBJTYPE_SEM_EVENT, supR0SemEventDestructor, hEventReal, NULL); 3296 if (pvObj) 3297 { 3298 uint32_t h32; 3299 rc = RTHandleTableAllocWithCtx(pSession->hHandleTable, pvObj, SUPDRV_HANDLE_CTX_EVENT, &h32); 3300 if (RT_SUCCESS(rc)) 3301 { 3302 *phEvent = (SUPSEMEVENT)(uintptr_t)h32; 3303 return VINF_SUCCESS; 3304 } 3305 SUPR0ObjRelease(pvObj, pSession); 3306 } 3307 else 3308 RTSemEventDestroy(hEventReal); 3309 } 3310 return rc; 3311 } 3312 3313 3314 SUPDECL(int) SUPSemEventClose(PSUPDRVSESSION pSession, SUPSEMEVENT hEvent) 3315 { 3316 uint32_t h32; 3317 PSUPDRVOBJ pObj; 3318 3319 /* 3320 * Input validation. 3321 */ 3322 AssertReturn(SUP_IS_SESSION_VALID(pSession), VERR_INVALID_PARAMETER); 3323 if (hEvent == NIL_SUPSEMEVENT) 3324 return VINF_SUCCESS; 3325 h32 = (uint32_t)(uintptr_t)hEvent; 3326 if (h32 != (uintptr_t)hEvent) 3327 return VERR_INVALID_HANDLE; 3328 3329 /* 3330 * Do the job. 3331 */ 3332 pObj = (PSUPDRVOBJ)RTHandleTableFreeWithCtx(pSession->hHandleTable, h32, SUPDRV_HANDLE_CTX_EVENT); 3333 if (!pObj) 3334 return VERR_INVALID_HANDLE; 3335 3336 Assert(pObj->cUsage >= 2); 3337 SUPR0ObjRelease(pObj, pSession); /* The free call above. */ 3338 return SUPR0ObjRelease(pObj, pSession); /* The handle table reference. */ 3339 } 3340 3341 3342 SUPDECL(int) SUPSemEventSignal(PSUPDRVSESSION pSession, SUPSEMEVENT hEvent) 3343 { 3344 int rc; 3345 uint32_t h32; 3346 PSUPDRVOBJ pObj; 3347 3348 /* 3349 * Input validation. 3350 */ 3351 AssertReturn(SUP_IS_SESSION_VALID(pSession), VERR_INVALID_PARAMETER); 3352 h32 = (uint32_t)(uintptr_t)hEvent; 3353 if (h32 != (uintptr_t)hEvent) 3354 return VERR_INVALID_HANDLE; 3355 pObj = (PSUPDRVOBJ)RTHandleTableLookupWithCtx(pSession->hHandleTable, h32, SUPDRV_HANDLE_CTX_EVENT); 3356 if (!pObj) 3357 return VERR_INVALID_HANDLE; 3358 3359 /* 3360 * Do the job. 3361 */ 3362 rc = RTSemEventSignal((RTSEMEVENT)pObj->pvUser1); 3363 3364 SUPR0ObjRelease(pObj, pSession); 3365 return rc; 3366 } 3367 3368 3369 SUPDECL(int) SUPSemEventWait(PSUPDRVSESSION pSession, SUPSEMEVENT hEvent, uint32_t cMillies) 3370 { 3371 int rc; 3372 uint32_t h32; 3373 PSUPDRVOBJ pObj; 3374 3375 /* 3376 * Input validation. 3377 */ 3378 AssertReturn(SUP_IS_SESSION_VALID(pSession), VERR_INVALID_PARAMETER); 3379 h32 = (uint32_t)(uintptr_t)hEvent; 3380 if (h32 != (uintptr_t)hEvent) 3381 return VERR_INVALID_HANDLE; 3382 pObj = (PSUPDRVOBJ)RTHandleTableLookupWithCtx(pSession->hHandleTable, h32, SUPDRV_HANDLE_CTX_EVENT); 3383 if (!pObj) 3384 return VERR_INVALID_HANDLE; 3385 3386 /* 3387 * Do the job. 3388 */ 3389 rc = RTSemEventWait((RTSEMEVENT)pObj->pvUser1, cMillies); 3390 3391 SUPR0ObjRelease(pObj, pSession); 3392 return rc; 3393 } 3394 3395 3396 SUPDECL(int) SUPSemEventWaitNoResume(PSUPDRVSESSION pSession, SUPSEMEVENT hEvent, uint32_t cMillies) 3397 { 3398 int rc; 3399 uint32_t h32; 3400 PSUPDRVOBJ pObj; 3401 3402 /* 3403 * Input validation. 3404 */ 3405 AssertReturn(SUP_IS_SESSION_VALID(pSession), VERR_INVALID_PARAMETER); 3406 h32 = (uint32_t)(uintptr_t)hEvent; 3407 if (h32 != (uintptr_t)hEvent) 3408 return VERR_INVALID_HANDLE; 3409 pObj = (PSUPDRVOBJ)RTHandleTableLookupWithCtx(pSession->hHandleTable, h32, SUPDRV_HANDLE_CTX_EVENT); 3410 if (!pObj) 3411 return VERR_INVALID_HANDLE; 3412 3413 /* 3414 * Do the job. 3415 */ 3416 rc = RTSemEventWaitNoResume((RTSEMEVENT)pObj->pvUser1, cMillies); 3417 3418 SUPR0ObjRelease(pObj, pSession); 3419 return rc; 3420 } 3421 3422 3423 /** 3424 * Destructor for objects created by SUPSemEventMultiCreate. 3425 * 3426 * @param pvObj The object handle. 3427 * @param pvUser1 The IPRT event handle. 3428 * @param pvUser2 NULL. 3429 */ 3430 static DECLCALLBACK(void) supR0SemEventMultiDestructor(void *pvObj, void *pvUser1, void *pvUser2) 3431 { 3432 Assert(pvUser2 == NULL); 3433 NOREF(pvObj); 3434 RTSemEventMultiDestroy((RTSEMEVENTMULTI)pvUser1); 3435 } 3436 3437 3438 SUPDECL(int) SUPSemEventMultiCreate(PSUPDRVSESSION pSession, PSUPSEMEVENTMULTI phEventMulti) 3439 { 3440 int rc; 3441 RTSEMEVENTMULTI hEventMultReal; 3442 3443 /* 3444 * Input validation. 3445 */ 3446 AssertReturn(SUP_IS_SESSION_VALID(pSession), VERR_INVALID_PARAMETER); 3447 AssertPtrReturn(phEventMulti, VERR_INVALID_POINTER); 3448 3449 /* 3450 * Create the event semaphore object. 3451 */ 3452 rc = RTSemEventMultiCreate(&hEventMultReal); 3453 if (RT_SUCCESS(rc)) 3454 { 3455 void *pvObj = SUPR0ObjRegister(pSession, SUPDRVOBJTYPE_SEM_EVENT_MULTI, supR0SemEventMultiDestructor, hEventMultReal, NULL); 3456 if (pvObj) 3457 { 3458 uint32_t h32; 3459 rc = RTHandleTableAllocWithCtx(pSession->hHandleTable, pvObj, &h32, SUPDRV_HANDLE_CTX_EVENT_MULTI); 3460 if (RT_SUCCESS(rc)) 3461 { 3462 *phEventMulti = (SUPSEMEVENTMULTI)(uintptr_t)h32; 3463 return VINF_SUCCESS; 3464 } 3465 SUPR0ObjRelease(pvObj, pSession); 3466 } 3467 else 3468 RTSemEventMultiDestroy(hEventMultReal); 3469 } 3470 return rc; 3471 } 3472 3473 3474 SUPDECL(int) SUPSemEventMultiClose(PSUPDRVSESSION pSession, SUPSEMEVENTMULTI hEventMulti) 3475 { 3476 uint32_t h32; 3477 PSUPDRVOBJ pObj; 3478 3479 /* 3480 * Input validation. 3481 */ 3482 AssertReturn(SUP_IS_SESSION_VALID(pSession), VERR_INVALID_PARAMETER); 3483 if (hEventMulti == NIL_SUPSEMEVENTMULTI) 3484 return VINF_SUCCESS; 3485 h32 = (uint32_t)(uintptr_t)hEventMulti; 3486 if (h32 != (uintptr_t)hEventMulti) 3487 return VERR_INVALID_HANDLE; 3488 3489 /* 3490 * Do the job. 3491 */ 3492 pObj = (PSUPDRVOBJ)RTHandleTableFreeWithCtx(pSession->hHandleTable, h32, SUPDRV_HANDLE_CTX_EVENT_MULTI); 3493 if (!pObj) 3494 return VERR_INVALID_HANDLE; 3495 3496 Assert(pObj->cUsage >= 2); 3497 SUPR0ObjRelease(pObj, pSession); /* The free call above. */ 3498 return SUPR0ObjRelease(pObj, pSession); /* The handle table reference. */ 3499 } 3500 3501 3502 SUPDECL(int) SUPSemEventMultiSignal(PSUPDRVSESSION pSession, SUPSEMEVENTMULTI hEventMulti) 3503 { 3504 int rc; 3505 uint32_t h32; 3506 PSUPDRVOBJ pObj; 3507 3508 /* 3509 * Input validation. 3510 */ 3511 AssertReturn(SUP_IS_SESSION_VALID(pSession), VERR_INVALID_PARAMETER); 3512 h32 = (uint32_t)(uintptr_t)hEventMulti; 3513 if (h32 != (uintptr_t)hEventMulti) 3514 return VERR_INVALID_HANDLE; 3515 pObj = (PSUPDRVOBJ)RTHandleTableLookupWithCtx(pSession->hHandleTable, h32, SUPDRV_HANDLE_CTX_EVENT_MULTI); 3516 if (!pObj) 3517 return VERR_INVALID_HANDLE; 3518 3519 /* 3520 * Do the job. 3521 */ 3522 rc = RTSemEventMultiSignal((RTSEMEVENTMULTI)pObj->pvUser1); 3523 3524 SUPR0ObjRelease(pObj, pSession); 3525 return rc; 3526 } 3527 3528 3529 SUPDECL(int) SUPSemEventMultiReset(PSUPDRVSESSION pSession, SUPSEMEVENTMULTI hEventMulti) 3530 { 3531 int rc; 3532 uint32_t h32; 3533 PSUPDRVOBJ pObj; 3534 3535 /* 3536 * Input validation. 3537 */ 3538 AssertReturn(SUP_IS_SESSION_VALID(pSession), VERR_INVALID_PARAMETER); 3539 h32 = (uint32_t)(uintptr_t)hEventMulti; 3540 if (h32 != (uintptr_t)hEventMulti) 3541 return VERR_INVALID_HANDLE; 3542 pObj = (PSUPDRVOBJ)RTHandleTableLookupWithCtx(pSession->hHandleTable, h32, SUPDRV_HANDLE_CTX_EVENT_MULTI); 3543 if (!pObj) 3544 return VERR_INVALID_HANDLE; 3545 3546 /* 3547 * Do the job. 3548 */ 3549 rc = RTSemEventMultiReset((RTSEMEVENTMULTI)pObj->pvUser1); 3550 3551 SUPR0ObjRelease(pObj, pSession); 3552 return rc; 3553 } 3554 3555 3556 SUPDECL(int) SUPSemEventMultiWait(PSUPDRVSESSION pSession, SUPSEMEVENTMULTI hEventMulti, uint32_t cMillies) 3557 { 3558 int rc; 3559 uint32_t h32; 3560 PSUPDRVOBJ pObj; 3561 3562 /* 3563 * Input validation. 3564 */ 3565 AssertReturn(SUP_IS_SESSION_VALID(pSession), VERR_INVALID_PARAMETER); 3566 h32 = (uint32_t)(uintptr_t)hEventMulti; 3567 if (h32 != (uintptr_t)hEventMulti) 3568 return VERR_INVALID_HANDLE; 3569 pObj = (PSUPDRVOBJ)RTHandleTableLookupWithCtx(pSession->hHandleTable, h32, SUPDRV_HANDLE_CTX_EVENT_MULTI); 3570 if (!pObj) 3571 return VERR_INVALID_HANDLE; 3572 3573 /* 3574 * Do the job. 3575 */ 3576 rc = RTSemEventMultiWait((RTSEMEVENTMULTI)pObj->pvUser1, cMillies); 3577 3578 SUPR0ObjRelease(pObj, pSession); 3579 return rc; 3580 } 3581 3582 3583 SUPDECL(int) SUPSemEventMultiWaitNoResume(PSUPDRVSESSION pSession, SUPSEMEVENTMULTI hEventMulti, uint32_t cMillies) 3584 { 3585 int rc; 3586 uint32_t h32; 3587 PSUPDRVOBJ pObj; 3588 3589 /* 3590 * Input validation. 3591 */ 3592 AssertReturn(SUP_IS_SESSION_VALID(pSession), VERR_INVALID_PARAMETER); 3593 h32 = (uint32_t)(uintptr_t)hEventMulti; 3594 if (h32 != (uintptr_t)hEventMulti) 3595 return VERR_INVALID_HANDLE; 3596 pObj = (PSUPDRVOBJ)RTHandleTableLookupWithCtx(pSession->hHandleTable, h32, SUPDRV_HANDLE_CTX_EVENT_MULTI); 3597 if (!pObj) 3598 return VERR_INVALID_HANDLE; 3599 3600 /* 3601 * Do the job. 3602 */ 3603 rc = RTSemEventMultiWaitNoResume((RTSEMEVENTMULTI)pObj->pvUser1, cMillies); 3604 3605 SUPR0ObjRelease(pObj, pSession); 3182 3606 return rc; 3183 3607 } -
trunk/src/VBox/HostDrivers/Support/SUPDrvInternal.h
r19454 r19866 309 309 310 310 311 /** @name Context values for the per-session handle tables. 312 * The context value is used to distiguish between the different kinds of 313 * handles, making the handle table API do all the work. 314 * @{ */ 315 /** Handle context value for single release event handles. */ 316 #define SUPDRV_HANDLE_CTX_EVENT ((void *)(uintptr_t)(SUPDRVOBJTYPE_SEM_EVENT)) 317 /** Handle context value for multiple release event handles. */ 318 #define SUPDRV_HANDLE_CTX_EVENT_MULTI ((void *)(uintptr_t)(SUPDRVOBJTYPE_SEM_EVENT_MULTI)) 319 /** @} */ 320 311 321 312 322 /******************************************************************************* … … 494 504 uint32_t u32Cookie; 495 505 506 /** The VM associated with the session. */ 507 PVM pVM; 508 /** Handle table for IPRT semaphore wrapper APIs. 509 * Programmable from R0 and R3. */ 510 RTHANDLETABLE hHandleTable; 496 511 /** Load usage records. (protected by SUPDRVDEVEXT::mtxLdr) */ 497 512 PSUPDRVLDRUSAGE volatile pLdrUsage; 498 /** The VM associated with the session. */499 PVM pVM;500 /** List of generic usage records. (protected by SUPDRVDEVEXT::SpinLock) */501 PSUPDRVUSAGE volatile pUsage;502 513 503 514 /** Spinlock protecting the bundles and the GIP members. */ … … 509 520 /** Bundle of locked memory objects. */ 510 521 SUPDRVBUNDLE Bundle; 522 /** List of generic usage records. (protected by SUPDRVDEVEXT::SpinLock) */ 523 PSUPDRVUSAGE volatile pUsage; 511 524 512 525 /** The user id of the session. (Set by the OS part.) */ -
trunk/src/VBox/HostDrivers/Support/SUPR0.def
r19404 r19866 54 54 SUPR0MemFree 55 55 SUPR0Printf 56 SUPSemEventCreate 57 SUPSemEventClose 58 SUPSemEventSignal 59 SUPSemEventWait 60 SUPSemEventWaitNoResume 61 SUPSemEventMultiCreate 62 SUPSemEventMultiClose 63 SUPSemEventMultiSignal 64 SUPSemEventMultiReset 65 SUPSemEventMultiWait 66 SUPSemEventMultiWaitNoResume 56 67 SUPR0GetPagingMode 57 68 SUPR0EnableVTx -
trunk/src/VBox/HostDrivers/Support/linux/Makefile
r19455 r19866 104 104 common/log/logcom.o \ 105 105 common/log/logformat.o \ 106 common/misc/handletable.o \ 107 common/misc/handletablectx.o \ 106 108 common/string/strformat.o \ 107 109 common/string/strformatrt.o \ -
trunk/src/VBox/HostDrivers/Support/linux/files_vboxdrv
r14645 r19866 37 37 ${PATH_ROOT}/include/iprt/err.h=>include/iprt/err.h \ 38 38 ${PATH_ROOT}/include/iprt/heap.h=>include/iprt/heap.h \ 39 ${PATH_ROOT}/include/iprt/handletable.h=>include/iprt/handletable.h \ 39 40 ${PATH_ROOT}/include/iprt/initterm.h=>include/iprt/initterm.h \ 40 41 ${PATH_ROOT}/include/iprt/log.h=>include/iprt/log.h \ … … 81 82 ${PATH_ROOT}/src/VBox/Runtime/common/math/gcc/udivdi3.c=>math/gcc/udivdi3.c \ 82 83 ${PATH_ROOT}/src/VBox/Runtime/common/math/gcc/umoddi3.c=>math/gcc/umoddi3.c \ 84 ${PATH_ROOT}/src/VBox/Runtime/common/misc/handletable.cpp=>common/misc/handletable.c \ 85 ${PATH_ROOT}/src/VBox/Runtime/common/misc/handletable.h=>common/misc/handletable.h \ 86 ${PATH_ROOT}/src/VBox/Runtime/common/misc/handletablectx.cpp=>common/misc/handletablectx.c \ 83 87 ${PATH_ROOT}/src/VBox/Runtime/common/string/strformat.cpp=>common/string/strformat.c \ 84 88 ${PATH_ROOT}/src/VBox/Runtime/common/string/strformatrt.cpp=>common/string/strformatrt.c \ -
trunk/src/VBox/HostDrivers/Support/win/SUPDrvA-win.asm
r19393 r19866 75 75 NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, SUPR0PageFree 76 76 ;NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, SUPR0Printf - cannot wrap this buster. 77 NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, SUPSemEventCreate 78 NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, SUPSemEventClose 79 NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, SUPSemEventSignal 80 NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, SUPSemEventWait 81 NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, SUPSemEventWaitNoResume 82 NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, SUPSemEventMultiCreate 83 NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, SUPSemEventMultiClose 84 NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, SUPSemEventMultiSignal 85 NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, SUPSemEventMultiReset 86 NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, SUPSemEventMultiWait 87 NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, SUPSemEventMultiWaitNoResume 77 88 NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, SUPR0GetPagingMode 78 89 NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, RTMemAlloc
Note:
See TracChangeset
for help on using the changeset viewer.