summaryrefslogtreecommitdiff
path: root/src/vm/appdomainstack.inl
blob: badcb91a8933fc453e1195c670b590ec36be92eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
/*============================================================
**
** Header:  AppDomainStack.inl
**
** Purpose: Implements ADStack inline functions
**


**
===========================================================*/
#ifndef _APPDOMAINSTACK_INL
#define _APPDOMAINSTACK_INL

#include "threads.h"
#include "appdomain.hpp"
#include "appdomainstack.h"
#include "security.h"


#ifndef DACCESS_COMPILE

#ifdef _DEBUG
#define LogADStackUpdateIfDebug LogADStackUpdate()
inline void AppDomainStack::LogADStackUpdate(void)
{
    LIMITED_METHOD_CONTRACT;
    for (int i=m_numEntries-1; i >= 0; i--) {
        AppDomainStackEntry* pEntry = __GetEntryPtr(i);
           
        LOG((LF_APPDOMAIN, LL_INFO100, "    stack[%d]: AppDomain id[%d] Overrides[%d] Asserts[%d] \n", i, 
            pEntry->m_domainID.m_dwId, pEntry->m_dwOverridesCount, pEntry->m_dwAsserts));
    }
}

#else
#define LogADStackUpdateIfDebug 
#endif

inline void AppDomainStack::AddMoreDomains(void)
{
    CONTRACTL {
        THROWS;
        GC_NOTRIGGER;
        MODE_ANY;
    }
    CONTRACTL_END;
    // Need to allocate a bigger block for pMoreDomains
    AppDomainStackEntry *tmp = m_pExtraStack;
    m_pExtraStack = new AppDomainStackEntry[m_ExtraStackSize + ADSTACK_BLOCK_SIZE];
    memcpy(m_pExtraStack, tmp, sizeof(AppDomainStackEntry)*(m_ExtraStackSize));
    FillEntries((m_pExtraStack+m_ExtraStackSize), ADSTACK_BLOCK_SIZE);
    m_ExtraStackSize+= ADSTACK_BLOCK_SIZE;
    delete[] tmp; // free the old block
    
}
inline void AppDomainStack::PushDomain(ADID pDomain)
{
    CONTRACTL {
        THROWS;
        GC_NOTRIGGER;
        MODE_ANY;
    }
    CONTRACTL_END;
    LOG((LF_APPDOMAIN, LL_INFO100, "Thread::PushDomain (%d), count now %d\n", pDomain.m_dwId, m_numEntries+1));

    //
    // When entering a new AppDomain, we need to update the thread wide
    // state with the intersection of the current and the new AppDomains flags.
    // This is because the old AppDomain could have loaded new assemblies
    // that are not yet reflected in the thread wide state, and the thread
    // could then execute code in that new Assembly.
    // We save the old thread wide state in the AppDomainStackEntry so we
    // can restore it when we pop the stack entry.
    //

    // The pushed domain could be the default AppDomain (which is the starting
    // AppDomain for all threads), in which case we don't need to intersect
    // with the flags from the previous AppDomain.
    Thread* pThread = GetThread();
    if (pThread)
        m_dwThreadWideSpecialFlags &= pThread->GetDomain()->GetSecurityDescriptor()->GetDomainWideSpecialFlag();

    if (m_numEntries == ADSTACK_BLOCK_SIZE + m_ExtraStackSize)
    {
        AddMoreDomains();
    }

    _ASSERTE(m_numEntries < ADSTACK_BLOCK_SIZE + m_ExtraStackSize);
    if (m_numEntries < ADSTACK_BLOCK_SIZE)
    {
        m_pStack[m_numEntries].m_domainID = pDomain;
        m_pStack[m_numEntries].m_dwAsserts = 0;
        m_pStack[m_numEntries].m_dwOverridesCount = 0;
        m_pStack[m_numEntries].m_dwPreviousThreadWideSpecialFlags = m_dwThreadWideSpecialFlags;
    }
    else
    {
        m_pExtraStack[m_numEntries-ADSTACK_BLOCK_SIZE].m_domainID = pDomain ;
        m_pExtraStack[m_numEntries-ADSTACK_BLOCK_SIZE].m_dwAsserts = 0;
        m_pExtraStack[m_numEntries-ADSTACK_BLOCK_SIZE].m_dwOverridesCount = 0;
        m_pExtraStack[m_numEntries-ADSTACK_BLOCK_SIZE].m_dwPreviousThreadWideSpecialFlags = m_dwThreadWideSpecialFlags;
    }

    if (pThread) {
        AppDomainFromIDHolder pAppDomain(pDomain, TRUE);
        if (!pAppDomain.IsUnloaded())
            m_dwThreadWideSpecialFlags &= pAppDomain->GetSecurityDescriptor()->GetDomainWideSpecialFlag();
    }

    m_numEntries++;

    LogADStackUpdateIfDebug;
}

inline ADID AppDomainStack::PopDomain()
{
    CONTRACTL {
        NOTHROW;
        GC_NOTRIGGER;
    }
    CONTRACTL_END;

    ADID pRet = (ADID)INVALID_APPDOMAIN_ID;
    _ASSERTE(m_numEntries > 0);
    if (m_numEntries > 0)
    {
        m_numEntries--;
        AppDomainStackEntry ret_entry;
        const AppDomainStackEntry reset_entry = {ADID(INVALID_APPDOMAIN_ID), 0, 0};

        if (m_numEntries < ADSTACK_BLOCK_SIZE)
        {
            ret_entry = m_pStack[m_numEntries];
            m_pStack[m_numEntries] = reset_entry;
        }
        else
        {
            ret_entry = m_pExtraStack[m_numEntries-ADSTACK_BLOCK_SIZE];
            m_pExtraStack[m_numEntries-ADSTACK_BLOCK_SIZE] = reset_entry;
        }
        pRet=ret_entry.m_domainID;

        LOG((LF_APPDOMAIN, LL_INFO100, "PopDomain: Popping pRet.m_dwId [%d] m_dwAsserts:%d ret_entry.m_dwAsserts:%d. New m_dwAsserts:%d\n",
            pRet.m_dwId, m_dwAsserts,ret_entry.m_dwAsserts, (m_dwAsserts-ret_entry.m_dwAsserts)));
        
        m_dwAsserts -= ret_entry.m_dwAsserts;
        m_dwOverridesCount -= ret_entry.m_dwOverridesCount;
#ifdef _DEBUG    
        CheckOverridesAssertCounts();
#endif    

        //
        // When leaving an AppDomain, we need to update the thread wide state by 
        // restoring to the state we were in before entering the AppDomain
        //

        m_dwThreadWideSpecialFlags = ret_entry.m_dwPreviousThreadWideSpecialFlags;

        LOG((LF_APPDOMAIN, LL_INFO100, "Thread::PopDomain popping [%d] count now %d\n", 
            pRet.m_dwId , m_numEntries));
    }
    else
    {
        LOG((LF_APPDOMAIN, LL_INFO100, "Thread::PopDomain count now %d (error pop)\n", m_numEntries));
    }

    LogADStackUpdateIfDebug;
    return pRet;
}
#endif // DACCESS_COMPILE

inline DWORD   AppDomainStack::GetNumDomains() const
{
    LIMITED_METHOD_CONTRACT;
    _ASSERTE(m_numEntries >= 1);
    return m_numEntries;
}

inline DWORD AppDomainStack::GetThreadWideSpecialFlag() const
{
    LIMITED_METHOD_CONTRACT;
    return m_dwThreadWideSpecialFlags;
}

inline DWORD AppDomainStack::IncrementOverridesCount()
{
    
    CONTRACTL 
    {
        MODE_ANY;
        GC_NOTRIGGER;
        NOTHROW;
        SO_TOLERANT;// Yes, we update global state here, but at worst we have an incorrect overrides count that will be updated the next
    }CONTRACTL_END; // time we run any code that leads to UpdateOverrides. And I don't see even how that can happen: it doesn't look possible
                    // for use to take an SO between the update and when we return to managed code.
    AppDomainStackEntry *pEntry = ReadTopOfStack();
    _ASSERTE(pEntry->m_domainID.m_dwId != INVALID_APPDOMAIN_ID);
    ++(pEntry->m_dwOverridesCount);
    return ++m_dwOverridesCount;
}
inline DWORD AppDomainStack::DecrementOverridesCount()
{
    CONTRACTL 
    {
        MODE_ANY;
        GC_NOTRIGGER;
        NOTHROW;
        SO_TOLERANT;
    }CONTRACTL_END;
    AppDomainStackEntry *pEntry = ReadTopOfStack();
    _ASSERTE(pEntry->m_domainID.m_dwId != INVALID_APPDOMAIN_ID);
    _ASSERTE(pEntry->m_dwOverridesCount > 0);
    _ASSERTE(m_dwOverridesCount > 0);
    if (pEntry->m_dwOverridesCount > 0 && m_dwOverridesCount > 0)
    {
        --(pEntry->m_dwOverridesCount);
        return --m_dwOverridesCount;
    }
    
    return 0;
}
inline DWORD AppDomainStack::GetOverridesCount()
{
    CONTRACTL {
        NOTHROW;
        GC_NOTRIGGER;
        SO_TOLERANT;
    }
    CONTRACTL_END;
#ifdef _DEBUG    
    CheckOverridesAssertCounts();
#endif    
    return m_dwOverridesCount;
}

inline DWORD AppDomainStack::GetInnerAppDomainOverridesCount()
{
    CONTRACTL {
        NOTHROW;
        GC_NOTRIGGER;
        SO_TOLERANT;
    }
    CONTRACTL_END;
#ifdef _DEBUG    
    CheckOverridesAssertCounts();
#endif
    AppDomainStackEntry *pEntry = ReadTopOfStack();
    _ASSERTE(pEntry->m_domainID.m_dwId != INVALID_APPDOMAIN_ID);

    return pEntry->m_dwOverridesCount;
}

inline DWORD AppDomainStack::IncrementAssertCount()
{
    LIMITED_METHOD_CONTRACT;
    AppDomainStackEntry *pEntry = ReadTopOfStack();
    _ASSERTE(pEntry->m_domainID.m_dwId != INVALID_APPDOMAIN_ID);
    LOG((LF_APPDOMAIN, LL_INFO100, "IncrementAssertCount: m_dwAsserts:%d ADID:%d pEntry:%p pEntry->m_dwAsserts:%d.\n",
        m_dwAsserts, pEntry->m_domainID.m_dwId, pEntry, pEntry->m_dwAsserts));    
    ++(pEntry->m_dwAsserts);
    return ++m_dwAsserts;
}
inline DWORD AppDomainStack::DecrementAssertCount()
{
    LIMITED_METHOD_CONTRACT;
    AppDomainStackEntry *pEntry = ReadTopOfStack();
    _ASSERTE(pEntry->m_domainID.m_dwId != INVALID_APPDOMAIN_ID);
    _ASSERTE(pEntry->m_dwAsserts > 0);
    _ASSERTE(m_dwAsserts > 0);
    LOG((LF_APPDOMAIN, LL_INFO100, "DecrementAssertCount: m_dwAsserts:%d ADID:%d pEntry:%p pEntry->m_dwAsserts:%d.\n",
        m_dwAsserts, pEntry->m_domainID.m_dwId, pEntry, pEntry->m_dwAsserts));        
    --(pEntry->m_dwAsserts);
    return --m_dwAsserts;
}

inline DWORD AppDomainStack::GetAssertCount()
{
    CONTRACTL {
        NOTHROW;
        GC_NOTRIGGER;
        SO_TOLERANT;
    }
    CONTRACTL_END;
#ifdef _DEBUG    
    CheckOverridesAssertCounts();
#endif

    return m_dwAsserts;
}

inline DWORD AppDomainStack::GetInnerAppDomainAssertCount()
{
    CONTRACTL {
        NOTHROW;
        GC_NOTRIGGER;
        SO_TOLERANT;
    }
    CONTRACTL_END;
#ifdef _DEBUG    
    CheckOverridesAssertCounts();
#endif
    AppDomainStackEntry *pEntry = ReadTopOfStack();
    _ASSERTE(pEntry->m_domainID.m_dwId != INVALID_APPDOMAIN_ID);

    return pEntry->m_dwAsserts;
}

inline void AppDomainStack::InitDomainIteration(DWORD *pIndex) const
{
    LIMITED_METHOD_CONTRACT;
    *pIndex = m_numEntries;
}

inline ADID AppDomainStack::GetNextDomainOnStack(DWORD *pIndex, DWORD *pOverrides, DWORD *pAsserts) const
{
    CONTRACTL {
        NOTHROW;
        GC_NOTRIGGER;
        SO_TOLERANT;
    }
    CONTRACTL_END;
    
    _ASSERTE(*pIndex > 0 && *pIndex <= m_numEntries);
    (*pIndex) --;
    const AppDomainStackEntry *pEntry = __GetEntryPtr(*pIndex);
    if (pOverrides != NULL)
        *pOverrides = pEntry->m_dwOverridesCount;
    if (pAsserts != NULL)
        *pAsserts = pEntry->m_dwAsserts;
    return (ADID)pEntry->m_domainID.m_dwId;
}

inline AppDomainStackEntry* AppDomainStack::GetCurrentDomainEntryOnStack(DWORD pIndex)
{
    CONTRACTL {
        NOTHROW;
        GC_NOTRIGGER;
    }
    CONTRACTL_END;
    
    _ASSERTE(pIndex >=0 && pIndex < m_numEntries);
    return __GetEntryPtr(pIndex);
}

inline AppDomainStackEntry* AppDomainStack::GetNextDomainEntryOnStack(DWORD *pIndex)
{
    CONTRACTL {
        NOTHROW;
        GC_NOTRIGGER;
        SO_TOLERANT;
    }
    CONTRACTL_END;
    
    _ASSERTE(*pIndex >0 && *pIndex <= m_numEntries);
    (*pIndex) --;
    return __GetEntryPtr(*pIndex);
}

inline void AppDomainStack::UpdateDomainOnStack(DWORD pIndex, DWORD asserts, DWORD overrides)
{
    CONTRACTL {
        NOTHROW;
        GC_NOTRIGGER;
    }
    CONTRACTL_END;
    AppDomainStackEntry* entry;
    _ASSERTE(pIndex >=0 && pIndex < m_numEntries);
    entry = __GetEntryPtr(pIndex);
    _ASSERTE(entry->m_domainID.m_dwId != INVALID_APPDOMAIN_ID);
    entry->m_dwAsserts = asserts;
    entry->m_dwOverridesCount = overrides;
    UpdateStackFromEntries();
    
}


inline void AppDomainStack::UpdateStackFromEntries()
{
    LIMITED_METHOD_CONTRACT;
    DWORD   dwAppDomainIndex = 0;
    DWORD dwOverrides = 0;
    DWORD dwAsserts = 0;
    AppDomainStackEntry *pEntry = NULL;
    for(dwAppDomainIndex=0;dwAppDomainIndex<m_numEntries;dwAppDomainIndex++)
    {
        pEntry = __GetEntryPtr(dwAppDomainIndex);
        dwOverrides += pEntry->m_dwOverridesCount;
        dwAsserts += pEntry->m_dwAsserts;
    }
    LOG((LF_APPDOMAIN, LL_INFO100, "UpdateStackFromEntries: m_dwAsserts:%d Calculated dwAsserts:%d.\n",m_dwAsserts,dwAsserts));    

    m_dwAsserts = dwAsserts;
    m_dwOverridesCount = dwOverrides;
    return;
}

inline AppDomainStackEntry* AppDomainStack::ReadTopOfStack()
{
    LIMITED_METHOD_CONTRACT;
    _ASSERTE(m_numEntries > 0);
    AppDomainStackEntry* pEntry = NULL;
    if (m_numEntries <= ADSTACK_BLOCK_SIZE)
    {
        pEntry = &(m_pStack[m_numEntries-1]);
    }
    else
    {
        pEntry = &(m_pExtraStack[m_numEntries-ADSTACK_BLOCK_SIZE-1]);
    }
    return pEntry;
}

inline bool AppDomainStack::IsDefaultSecurityInfo() const
{
    LIMITED_METHOD_CONTRACT;
    return (m_numEntries == 1 && m_pStack[0].m_domainID == ADID(DefaultADID) &&
            m_pStack[0].m_dwAsserts == 0 && m_pStack[0].m_dwOverridesCount == 0);
}
inline void AppDomainStack::ClearDomainStack()
{
    CONTRACTL 
    {
        MODE_ANY;
        GC_NOTRIGGER;
        NOTHROW;
    }CONTRACTL_END;
    m_dwThreadWideSpecialFlags = 0xFFFFFFFF;
    m_numEntries = 1;
    FillEntries(m_pStack, ADSTACK_BLOCK_SIZE);
    if (m_pExtraStack != NULL)
        delete[] m_pExtraStack;
    m_pExtraStack = NULL;
    m_ExtraStackSize = 0;
    m_dwOverridesCount = 0;
    LOG((LF_APPDOMAIN, LL_INFO100, "ClearDomainStack: m_dwAsserts:%d setting to 0\n",m_dwAsserts));
    m_dwAsserts = 0;
    m_pStack[0].m_domainID = ADID(DefaultADID);
}

#endif