File: XamlHttpHandlerFactory.cs

package info (click to toggle)
mono 6.12.0.199%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,296,836 kB
  • sloc: cs: 11,181,803; xml: 2,850,076; ansic: 699,709; cpp: 123,344; perl: 59,361; javascript: 30,841; asm: 21,853; makefile: 20,405; sh: 15,009; python: 4,839; pascal: 925; sql: 859; sed: 16; php: 1
file content (315 lines) | stat: -rw-r--r-- 12,862 bytes parent folder | download | duplicates (7)
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
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//------------------------------------------------------------

namespace System.Xaml.Hosting
{
    using System;
    using System.Web;
    using System.Web.Hosting;
    using System.Web.Compilation;
    using System.CodeDom.Compiler;
    using System.Collections.Generic;
    using System.IO;
    using System.Diagnostics.CodeAnalysis;
    using System.Reflection;
    using System.Xaml.Hosting.Configuration;
    using System.Configuration;
    using System.Diagnostics;
    using System.Threading;
    using System.Net;
    using System.Runtime;
    using System.Security;
    using System.Collections;

    [SuppressMessage(FxCop.Category.Performance, FxCop.Rule.AvoidUninstantiatedInternalClasses,
        Justification = "This is instantiated by AspNet.")]
    sealed class XamlHttpHandlerFactory : IHttpHandlerFactory
    {
        public IHttpHandler GetHandler(HttpContext context, string requestType,
            string url, string pathTranslated)
        {
            //Get the "cache pointer" for the virtual path - if does not exist, create a cache pointer
            //This should happen under global lock
            PathInfo pathInfo = PathCache.EnsurePathInfo(context.Request.AppRelativeCurrentExecutionFilePath);
            return pathInfo.GetHandler(context, requestType, url, pathTranslated);
        }

        public void ReleaseHandler(IHttpHandler httphandler)
        {
            //Check whether the handler was created by an internal factory
            if (httphandler is HandlerWrapper)
            {
                ((HandlerWrapper)(httphandler)).ReleaseWrappedHandler();
            }
        }

        static object CreateInstance(Type type)
        {
            //The handler/factory should have an empty constructor but need not be public
            return Activator.CreateInstance(type,
                BindingFlags.CreateInstance | BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance,
                null, null, null);
        }
                
        static class PathCache
        {
            [Fx.Tag.Cache(
                typeof(PathInfo),
                Fx.Tag.CacheAttrition.None,
                Scope = "instance of declaring class", 
                SizeLimit = "unbounded",
                Timeout = "infinite"
                )] 
            static Hashtable pathCache = new Hashtable(StringComparer.OrdinalIgnoreCase);
            static object writeLock = new object();

            public static PathInfo EnsurePathInfo(string path)
            {
                PathInfo pathInfo = (PathInfo)pathCache[path];
                if (pathInfo != null)
                {
                    return pathInfo;
                }

                lock (writeLock)
                {
                    pathInfo = (PathInfo)pathCache[path];
                    if (pathInfo != null)
                    {
                        return pathInfo;
                    }

                    if (HostingEnvironment.VirtualPathProvider.FileExists(path))
                    {
                        pathInfo = new PathInfo();
                        pathCache.Add(path, pathInfo);
                        return pathInfo;
                    }
                    else
                    {
                        throw FxTrace.Exception.AsError(new HttpException((int)HttpStatusCode.NotFound, SR.ResourceNotFound));
                    }
                }
            }
        }

        class HandlerWrapper : IHttpHandler
        {
            IHttpHandlerFactory factory;

            IHttpHandler httpHandler;

            private HandlerWrapper(IHttpHandler httpHandler, IHttpHandlerFactory factory)
            {
                this.httpHandler = httpHandler;
                this.factory = factory;
            }

            public bool IsReusable
            {
                get { return httpHandler.IsReusable; }
            }

            public static IHttpHandler Create(
                IHttpHandler httpHandler, IHttpHandlerFactory factory)
            {
                if (httpHandler is IHttpAsyncHandler)
                {
                    return new AsyncHandlerWrapper((IHttpAsyncHandler)httpHandler, factory);
                }
                else
                {
                    return new HandlerWrapper(httpHandler, factory);
                }
            }

            public void ProcessRequest(HttpContext context)
            {
                httpHandler.ProcessRequest(context);
            }

            public void ReleaseWrappedHandler()
            {
                this.factory.ReleaseHandler(httpHandler);
            }

            class AsyncHandlerWrapper : HandlerWrapper, IHttpAsyncHandler
            {
                //Storing a local copy to avoid unnecessary typecasts during begin/end
                IHttpAsyncHandler httpAsyncHandler;

                public AsyncHandlerWrapper(IHttpAsyncHandler httpAsyncHandler, IHttpHandlerFactory factory)
                    : base(httpAsyncHandler, factory)
                {
                    this.httpAsyncHandler = httpAsyncHandler;
                }

                public IAsyncResult BeginProcessRequest(HttpContext context, AsyncCallback cb, object extraData)
                {
                    return this.httpAsyncHandler.BeginProcessRequest(context, cb, extraData);
                }

                public void EndProcessRequest(IAsyncResult result)
                {
                    this.httpAsyncHandler.EndProcessRequest(result);
                }
            }
        }

        class PathInfo
        {
            object cachedResult;
            Type hostedXamlType;
            object writeLock;

            public PathInfo()
            {
                this.writeLock = new object();
            }

            [Fx.Tag.Throws(typeof(ConfigurationErrorsException), "Invalid Configuration.")]
            public IHttpHandler GetHandler(HttpContext context, string requestType,
                string url, string pathTranslated)
            {
                if (this.cachedResult == null)
                {
                    //Cache won't be available if it is invoked first time 
                    //Use a local "lock" specifically for this url 
                    lock (this.writeLock)
                    {
                        if (this.cachedResult == null)
                        {
                            return GetHandlerFirstTime(context, requestType, url, pathTranslated);
                        }
                    }
                }

                return GetHandlerSubSequent(context, requestType, url, pathTranslated);
            }

            [Fx.Tag.SecurityNote(Critical = "Uses SecurityCritical method UnsafeImpersonate to establish the impersonation context",
                Safe = "Does not leak anything, does not let caller influence impersonation.")]
            // Why this triple try blocks instead of using "using" statement:
            // 1. "using" will do the impersonation prior to entering the try, 
            //    which leaves an opertunity to Thread.Abort this thread and get it to exit the method still impersonated.
            // 2. put the assignment of unsafeImpersonate in a finally block 
            //    in order to prevent Threat.Abort after impersonation but before the assignment.
            // 3. the finally of a "using" doesn't run until exception filters higher up the stack have executed.
            //    they will do so in the impersonated context if an exception is thrown inside the try.
            // In sumary, this should prevent the thread from existing this method well still impersonated. 
            Type GetCompiledCustomString(string normalizedVirtualPath)
            {
                try
                {
                    IDisposable unsafeImpersonate = null;
                    try
                    {
                        try
                        {
                        }
                        finally
                        {
                            unsafeImpersonate = HostingEnvironmentWrapper.UnsafeImpersonate();
                        }
                        return BuildManager.GetCompiledType(normalizedVirtualPath);
                    }
                    finally
                    {
                        if (null != unsafeImpersonate)
                        {
                            unsafeImpersonate.Dispose();
                        }
                    }
                }
                catch
                {
                    throw;
                }
            }


            //This function is invoked the first time a request is made to XAMLx file 
            //It caches url as key and one of the 
            //following 4 as value -> "Handler/Factory/HandlerCLRType/Exception"
            IHttpHandler GetHandlerFirstTime(HttpContext context, string requestType,
                string url, string pathTranslated)
            {
                Type httpHandlerType;
                ConfigurationErrorsException configException;

                //GetCompiledType is costly - invoke it just once. 
                //This null check is required for "error after GetCompiledType on first attempt" cases only
                if (this.hostedXamlType == null)
                {
                    this.hostedXamlType = GetCompiledCustomString(context.Request.AppRelativeCurrentExecutionFilePath);
                }

                if (XamlHostingConfiguration.TryGetHttpHandlerType(url, this.hostedXamlType, out httpHandlerType))
                {
                    if (TD.HttpHandlerPickedForUrlIsEnabled())
                    {
                        TD.HttpHandlerPickedForUrl(url, hostedXamlType.FullName, httpHandlerType.FullName);
                    }
                    if (typeof(IHttpHandler).IsAssignableFrom(httpHandlerType))
                    {
                        IHttpHandler handler = (IHttpHandler)CreateInstance(httpHandlerType);
                        if (handler.IsReusable)
                        {
                            this.cachedResult = handler;
                        }
                        else
                        {
                            this.cachedResult = httpHandlerType;
                        }
                        return handler;
                    }
                    else if (typeof(IHttpHandlerFactory).IsAssignableFrom(httpHandlerType))
                    {
                        IHttpHandlerFactory factory = (IHttpHandlerFactory)CreateInstance(httpHandlerType);
                        this.cachedResult = factory;
                        IHttpHandler handler = factory.GetHandler(context, requestType, url, pathTranslated);
                        return HandlerWrapper.Create(handler, factory);
                    }
                    else
                    {
                        configException =
                            new ConfigurationErrorsException(SR.NotHttpHandlerType(url, this.hostedXamlType, httpHandlerType.FullName));
                        this.cachedResult = configException;
                        throw FxTrace.Exception.AsError(configException);
                    }
                }
                configException =
                    new ConfigurationErrorsException(SR.HttpHandlerForXamlTypeNotFound(url, this.hostedXamlType, XamlHostingConfiguration.XamlHostingSection));
                this.cachedResult = configException;
                throw FxTrace.Exception.AsError(configException);
            }

            //This function retrievs the cached object and uses it to get handler or exception
            IHttpHandler GetHandlerSubSequent(HttpContext context, string requestType,
                string url, string pathTranslated)
            {
                if (this.cachedResult is IHttpHandler)
                {
                    return ((IHttpHandler)this.cachedResult);
                }
                else if (this.cachedResult is IHttpHandlerFactory)
                {
                    IHttpHandlerFactory factory = ((IHttpHandlerFactory)this.cachedResult);
                    IHttpHandler handler = factory.GetHandler(context, requestType, url, pathTranslated);
                    return HandlerWrapper.Create(handler, factory);
                }
                else if (this.cachedResult is Type)
                {
                    return (IHttpHandler)CreateInstance((Type)this.cachedResult);
                }
                else
                {
                    throw FxTrace.Exception.AsError((ConfigurationErrorsException)this.cachedResult);
                }
            }

        }
    }
}