VirtualBox

Ignore:
Timestamp:
Jul 23, 2013 4:19:20 PM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
87497
Message:

Runtime/r0drv: Reference counting for kernel thread-context hooks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r0drv/linux/threadctxhooks-r0drv-linux.c

    r47229 r47352  
    5252    uint32_t volatile           u32Magic;
    5353    /** The thread handle (owner) for which the context-hooks are registered. */
    54     RTTHREAD                    hOwner;
     54    RTNATIVETHREAD              hOwner;
    5555    /** The preemption notifier object. */
    5656    struct preempt_notifier     hPreemptNotifier;
     
    6363    /** The thread-context operations. */
    6464    struct preempt_ops          hPreemptOps;
     65    /** The reference count for this object. */
     66    uint32_t volatile           cRefs;
    6567} RTTHREADCTXINT, *PRTTHREADCTXINT;
    6668
     
    109111
    110112/**
    111  * Worker function for RTThreadCtxHooks(Deregister|Destroy)().
     113 * Worker function for RTThreadCtxHooks(Deregister|Release)().
    112114 *
    113115 * @param   pThis   Pointer to the internal thread-context object.
     
    131133        return VERR_NO_MEMORY;
    132134    pThis->u32Magic    = RTTHREADCTXINT_MAGIC;
    133     pThis->hOwner      = RTThreadSelf();
     135    pThis->hOwner      = RTThreadNativeSelf();
    134136    pThis->fRegistered = false;
    135137    preempt_notifier_init(&pThis->hPreemptNotifier, &pThis->hPreemptOps);
     138    pThis->cRefs       = 1;
    136139
    137140    *phThreadCtx = pThis;
     
    141144
    142145
    143 RTDECL(void) RTThreadCtxHooksDestroy(RTTHREADCTX hThreadCtx)
     146RTDECL(uint32_t) RTThreadCtxHooksRetain(RTTHREADCTX hThreadCtx)
    144147{
    145148    /*
    146149     * Validate input.
    147150     */
     151    uint32_t        cRefs;
     152    PRTTHREADCTXINT pThis = hThreadCtx;
     153    AssertPtr(pThis);
     154    AssertMsgReturn(pThis->u32Magic == RTTHREADCTXINT_MAGIC, ("pThis->u32Magic=%RX32 pThis=%p\n", pThis->u32Magic, pThis),
     155                    UINT32_MAX);
     156
     157    cRefs = ASMAtomicIncU32(&pThis->cRefs);
     158    Assert(cRefs < UINT32_MAX / 2);
     159    return cRefs;
     160}
     161RT_EXPORT_SYMBOL(RTThreadCtxHooksRetain);
     162
     163
     164
     165RTDECL(uint32_t) RTThreadCtxHooksRelease(RTTHREADCTX hThreadCtx)
     166{
     167    /*
     168     * Validate input.
     169     */
     170    uint32_t        cRefs;
    148171    PRTTHREADCTXINT pThis = hThreadCtx;
    149172    if (pThis == NIL_RTTHREADCTX)
    150         return;
    151     AssertPtr(pThis);
    152     AssertMsgReturnVoid(pThis->u32Magic == RTTHREADCTXINT_MAGIC, ("pThis->u32Magic=%RX32 pThis=%p\n", pThis->u32Magic, pThis));
    153     Assert(pThis->hOwner == RTThreadSelf());
     173        return 0;
     174    AssertPtr(pThis);
     175    AssertMsgReturn(pThis->u32Magic == RTTHREADCTXINT_MAGIC, ("pThis->u32Magic=%RX32 pThis=%p\n", pThis->u32Magic, pThis),
     176                    UINT32_MAX);
    154177    Assert(RTThreadPreemptIsEnabled(NIL_RTTHREAD));
    155178
    156     /*
    157      * If there's still a registered thread-context hook, deregister it now before destroying the object.
    158      */
    159     if (pThis->fRegistered)
    160         rtThreadCtxHooksDeregister(pThis);
    161 
    162     /*
    163      * Paranoia... but since these are ring-0 threads we can't be too careful.
    164      */
    165     Assert(!pThis->fRegistered);
    166     Assert(!pThis->hPreemptOps.sched_out);
    167     Assert(!pThis->hPreemptOps.sched_in);
    168 
    169     /*
    170      * Destroy the object.
    171      */
    172     ASMAtomicWriteU32(&pThis->u32Magic, ~RTTHREADCTXINT_MAGIC);
    173     RTMemFree(pThis);
    174 }
    175 RT_EXPORT_SYMBOL(RTThreadCtxHooksDestroy);
     179    cRefs = ASMAtomicDecU32(&pThis->cRefs);
     180    if (!cRefs)
     181    {
     182        /*
     183         * If there's still a registered thread-context hook, deregister it now before destroying the object.
     184         */
     185        if (pThis->fRegistered)
     186            rtThreadCtxHooksDeregister(pThis);
     187
     188        /*
     189         * Paranoia... but since these are ring-0 threads we can't be too careful.
     190         */
     191        Assert(!pThis->fRegistered);
     192        Assert(!pThis->hPreemptOps.sched_out);
     193        Assert(!pThis->hPreemptOps.sched_in);
     194
     195        ASMAtomicWriteU32(&pThis->u32Magic, ~RTTHREADCTXINT_MAGIC);
     196        RTMemFree(pThis);
     197        printk("freed pThis=%p\n", pThis);
     198    }
     199    else
     200        Assert(cRefs < UINT32_MAX / 2);
     201
     202    return cRefs;
     203}
     204RT_EXPORT_SYMBOL(RTThreadCtxHooksRelease);
    176205
    177206
     
    187216    AssertMsgReturn(pThis->u32Magic == RTTHREADCTXINT_MAGIC, ("pThis->u32Magic=%RX32 pThis=%p\n", pThis->u32Magic, pThis),
    188217                    VERR_INVALID_HANDLE);
    189     Assert(pThis->hOwner == RTThreadSelf());
     218    Assert(pThis->hOwner == RTThreadNativeSelf());
    190219    Assert(!pThis->hPreemptOps.sched_out);
    191220    Assert(!pThis->hPreemptOps.sched_in);
     
    217246    AssertMsgReturn(pThis->u32Magic == RTTHREADCTXINT_MAGIC, ("pThis->u32Magic=%RX32 pThis=%p\n", pThis->u32Magic, pThis),
    218247                    VERR_INVALID_HANDLE);
    219     Assert(pThis->hOwner == RTThreadSelf());
     248    Assert(pThis->hOwner == RTThreadNativeSelf());
    220249    Assert(pThis->fRegistered);
    221250
     
    238267
    239268
    240 RTDECL(void) RTThreadCtxHooksDestroy(RTTHREADCTX hThreadCtx)
     269RTDECL(uint32_t) RTThreadCtxHooksRetain(RTTHREADCTX hThreadCtx)
    241270{
    242271    NOREF(hThreadCtx);
    243 }
    244 RT_EXPORT_SYMBOL(RTThreadCtxHooksDestroy);
     272    return UINT32_MAX;
     273}
     274RT_EXPORT_SYMBOL(RTThreadCtxHooksRetain);
     275
     276
     277RTDECL(uint32_t) RTThreadCtxHooksRelease(RTTHREADCTX hThreadCtx)
     278{
     279    NOREF(hThreadCtx);
     280    return UINT32_MAX;
     281}
     282RT_EXPORT_SYMBOL(RTThreadCtxHooksRelease);
    245283
    246284
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