forked from microsoft/referencesource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttpserverutility.cs
1551 lines (1249 loc) · 55.3 KB
/
httpserverutility.cs
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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//------------------------------------------------------------------------------
// <copyright file="httpserverutility.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
/*
* Server intrinsic used to match ASP's object model
*
* Copyright (c) 1999 Microsoft Corporation
*/
// Don't entity encode high chars (160 to 256), to fix bugs VSWhidbey 85857/111927
//
#define ENTITY_ENCODE_HIGH_ASCII_CHARS
namespace System.Web {
using System.Collections;
using System.Collections.Specialized;
using System.Globalization;
using System.IO;
using System.Security.Permissions;
using System.Text;
using System.Threading;
using System.Web.Configuration;
using System.Web.Hosting;
using System.Web.UI;
using System.Web.Util;
internal abstract class ErrorFormatterGenerator {
internal abstract ErrorFormatter GetErrorFormatter(Exception e);
}
/// <devdoc>
/// <para>
/// Provides several
/// helper methods that can be used in the processing of Web requests.
/// </para>
/// </devdoc>
public sealed class HttpServerUtility {
private HttpContext _context;
private HttpApplication _application;
private static IDictionary _cultureCache = Hashtable.Synchronized(new Hashtable());
internal HttpServerUtility(HttpContext context) {
_context = context;
}
internal HttpServerUtility(HttpApplication application) {
_application = application;
}
//
// Misc ASP compatibility methods
//
/// <devdoc>
/// <para>
/// Instantiates a COM object identified via a progid.
/// </para>
/// </devdoc>
[SecurityPermission(SecurityAction.Demand, Unrestricted = true)]
public object CreateObject(string progID) {
EnsureHasNotTransitionedToWebSocket();
Type type = null;
object obj = null;
try {
#if !FEATURE_PAL // FEATURE_PAL does not enable COM
type = Type.GetTypeFromProgID(progID);
#else // !FEATURE_PAL
throw new NotImplementedException("ROTORTODO");
#endif // !FEATURE_PAL
}
catch {
}
if (type == null) {
throw new HttpException(SR.GetString(SR.Could_not_create_object_of_type, progID));
}
// Disallow Apartment components in non-compat mode
AspCompatApplicationStep.CheckThreadingModel(progID, type.GUID);
// Instantiate the object
obj = Activator.CreateInstance(type);
// For ASP compat: take care of OnPageStart/OnPageEnd
AspCompatApplicationStep.OnPageStart(obj);
return obj;
}
/// <devdoc>
/// <para>
/// Instantiates a COM object identified via a Type.
/// </para>
/// </devdoc>
[SecurityPermission(SecurityAction.Demand, UnmanagedCode=true)]
public object CreateObject(Type type) {
EnsureHasNotTransitionedToWebSocket();
// Disallow Apartment components in non-compat mode
AspCompatApplicationStep.CheckThreadingModel(type.FullName, type.GUID);
// Instantiate the object
Object obj = Activator.CreateInstance(type);
// For ASP compat: take care of OnPageStart/OnPageEnd
AspCompatApplicationStep.OnPageStart(obj);
return obj;
}
/// <devdoc>
/// <para>
/// Instantiates a COM object identified via a clsid.
/// </para>
/// </devdoc>
[SecurityPermission(SecurityAction.Demand, UnmanagedCode=true)]
public object CreateObjectFromClsid(string clsid) {
EnsureHasNotTransitionedToWebSocket();
Type type = null;
object obj = null;
// Create a Guid out of it
Guid guid = new Guid(clsid);
// Disallow Apartment components in non-compat mode
AspCompatApplicationStep.CheckThreadingModel(clsid, guid);
try {
#if !FEATURE_PAL // FEATURE_PAL does not enable COM
type = Type.GetTypeFromCLSID(guid, null, true /*throwOnError*/);
#else // !FEATURE_PAL
throw new NotImplementedException("ROTORTODO");
#endif // !FEATURE_PAL
// Instantiate the object
obj = Activator.CreateInstance(type);
}
catch {
}
if (obj == null) {
throw new HttpException(
SR.GetString(SR.Could_not_create_object_from_clsid, clsid));
}
// For ASP compat: take care of OnPageStart/OnPageEnd
AspCompatApplicationStep.OnPageStart(obj);
return obj;
}
// Internal static method that returns a read-only, non-user override accounted, CultureInfo object
internal static CultureInfo CreateReadOnlyCultureInfo(string name) {
if (!_cultureCache.Contains(name)) {
// To be threadsafe, get the lock before creating
lock (_cultureCache) {
if (_cultureCache[name] == null) {
_cultureCache[name] = CultureInfo.ReadOnly(new CultureInfo(name));
}
}
}
return (CultureInfo)_cultureCache[name];
}
// Internal static method that returns a read-only, non-user override accounted, culture specific CultureInfo object
internal static CultureInfo CreateReadOnlySpecificCultureInfo(string name) {
if(name.IndexOf('-') > 0) {
return CreateReadOnlyCultureInfo(name);
}
CultureInfo ci = CultureInfo.CreateSpecificCulture(name);
if (!_cultureCache.Contains(ci.Name)) {
//To be threadsafe, get the lock before creating
lock (_cultureCache) {
if (_cultureCache[ci.Name] == null) {
_cultureCache[ci.Name] = CultureInfo.ReadOnly(ci);
}
}
}
return (CultureInfo)_cultureCache[ci.Name];
}
// Internal static method that returns a read-only, non-user override accounted, CultureInfo object
internal static CultureInfo CreateReadOnlyCultureInfo(int culture) {
if (!_cultureCache.Contains(culture)) {
// To be threadsafe, get the lock before creating
lock (_cultureCache) {
if (_cultureCache[culture] == null) {
_cultureCache[culture] = CultureInfo.ReadOnly(new CultureInfo(culture));
}
}
}
return (CultureInfo)_cultureCache[culture];
}
/// <devdoc>
/// <para>
/// Maps a virtual path to a physical path.
/// </para>
/// </devdoc>
public string MapPath(string path) {
if (_context == null)
throw new HttpException(SR.GetString(SR.Server_not_available));
// Disable hiding the request so that Server.MapPath works when called from
// Application_Start in integrated mode
bool unhideRequest = _context.HideRequestResponse;
string realPath;
try {
if (unhideRequest) {
_context.HideRequestResponse = false;
}
realPath = _context.Request.MapPath(path);
}
finally {
if (unhideRequest) {
_context.HideRequestResponse = true;
}
}
return realPath;
}
/// <devdoc>
/// <para>Returns the last recorded exception.</para>
/// </devdoc>
public Exception GetLastError() {
if (_context != null)
return _context.Error;
else if (_application != null)
return _application.LastError;
else
return null;
}
/// <devdoc>
/// <para>Clears the last error.</para>
/// </devdoc>
public void ClearError() {
if (_context != null)
_context.ClearError();
else if (_application != null)
_application.ClearError();
}
//
// Server.Transfer/Server.Execute -- child requests
//
/// <devdoc>
/// <para>
/// Executes a new request (using the specified URL path as the target). Unlike
/// the Transfer method, execution of the original page continues after the executed
/// page completes.
/// </para>
/// </devdoc>
public void Execute(string path) {
Execute(path, null, true /*preserveForm*/);
}
/// <devdoc>
/// <para>
/// Executes a new request (using the specified URL path as the target). Unlike
/// the Transfer method, execution of the original page continues after the executed
/// page completes.
/// </para>
/// </devdoc>
public void Execute(string path, TextWriter writer) {
Execute(path, writer, true /*preserveForm*/);
}
/// <devdoc>
/// <para>
/// Executes a new request (using the specified URL path as the target). Unlike
/// the Transfer method, execution of the original page continues after the executed
/// page completes.
/// If preserveForm is false, the QueryString and Form collections are cleared.
/// </para>
/// </devdoc>
public void Execute(string path, bool preserveForm) {
Execute(path, null, preserveForm);
}
/// <devdoc>
/// <para>
/// Executes a new request (using the specified URL path as the target). Unlike
/// the Transfer method, execution of the original page continues after the executed
/// page completes.
/// If preserveForm is false, the QueryString and Form collections are cleared.
/// </para>
/// </devdoc>
public void Execute(string path, TextWriter writer, bool preserveForm) {
EnsureHasNotTransitionedToWebSocket();
if (_context == null)
throw new HttpException(SR.GetString(SR.Server_not_available));
if (path == null)
throw new ArgumentNullException("path");
string queryStringOverride = null;
HttpRequest request = _context.Request;
HttpResponse response = _context.Response;
// Remove potential cookie-less session id (ASURT 100558)
path = response.RemoveAppPathModifier(path);
// Allow query string override
int iqs = path.IndexOf('?');
if (iqs >= 0) {
queryStringOverride = path.Substring(iqs+1);
path = path.Substring(0, iqs);
}
if (!UrlPath.IsValidVirtualPathWithoutProtocol(path)) {
throw new ArgumentException(SR.GetString(SR.Invalid_path_for_child_request, path));
}
VirtualPath virtualPath = VirtualPath.Create(path);
// Find the handler for the path
IHttpHandler handler = null;
string physPath = request.MapPath(virtualPath); // get physical path
VirtualPath filePath = request.FilePathObject.Combine(virtualPath); // vpath
// Demand read access to the physical path of the target handler
InternalSecurityPermissions.FileReadAccess(physPath).Demand();
// We need to Assert since there typically is user code on the stack (VSWhidbey 270965)
if (HttpRuntime.IsLegacyCas) {
InternalSecurityPermissions.Unrestricted.Assert();
}
try {
// paths that ends with . are disallowed as they are used to get around
// extension mappings and server source as static file
if (StringUtil.StringEndsWith(virtualPath.VirtualPathString, '.'))
throw new HttpException(404, String.Empty);
bool useAppConfig = !filePath.IsWithinAppRoot;
using (new DisposableHttpContextWrapper(_context)) {
try {
// We need to increase the depth when calling MapHttpHandler,
// since PageHandlerFactory relies on it
_context.ServerExecuteDepth++;
if (_context.WorkerRequest is IIS7WorkerRequest) {
handler = _context.ApplicationInstance.MapIntegratedHttpHandler(
_context,
request.RequestType,
filePath,
physPath,
useAppConfig,
true /*convertNativeStaticFileModule*/);
}
else {
handler = _context.ApplicationInstance.MapHttpHandler(
_context,
request.RequestType,
filePath,
physPath,
useAppConfig);
}
}
finally {
_context.ServerExecuteDepth--;
}
}
}
catch (Exception e) {
// 500 errors (compilation errors) get preserved
if (e is HttpException) {
int code = ((HttpException)e).GetHttpCode();
if (code != 500 && code != 404) {
e = null;
}
}
throw new HttpException(SR.GetString(SR.Error_executing_child_request_for_path, path), e);
}
ExecuteInternal(handler, writer, preserveForm, true /*setPreviousPage*/,
virtualPath, filePath, physPath, null, queryStringOverride);
}
public void Execute(IHttpHandler handler, TextWriter writer, bool preserveForm) {
if (_context == null)
throw new HttpException(SR.GetString(SR.Server_not_available));
Execute(handler, writer, preserveForm, true /*setPreviousPage*/);
}
internal void Execute(IHttpHandler handler, TextWriter writer, bool preserveForm, bool setPreviousPage) {
HttpRequest request = _context.Request;
VirtualPath filePath = request.CurrentExecutionFilePathObject;
string physicalPath = request.MapPath(filePath);
ExecuteInternal(handler, writer, preserveForm, setPreviousPage,
null, filePath, physicalPath, null, null);
}
private void ExecuteInternal(IHttpHandler handler, TextWriter writer, bool preserveForm, bool setPreviousPage,
VirtualPath path, VirtualPath filePath, string physPath, Exception error, string queryStringOverride) {
EnsureHasNotTransitionedToWebSocket();
if (handler == null)
throw new ArgumentNullException("handler");
HttpRequest request = _context.Request;
HttpResponse response = _context.Response;
HttpApplication app = _context.ApplicationInstance;
HttpValueCollection savedForm = null;
VirtualPath savedCurrentExecutionFilePath = null;
string savedQueryString = null;
TextWriter savedOutputWriter = null;
AspNetSynchronizationContextBase savedSyncContext = null;
// Transaction wouldn't flow into ASPCOMPAT mode -- need to report an error
VerifyTransactionFlow(handler);
// create new trace context
_context.PushTraceContext();
// set the new handler as the current handler
_context.SetCurrentHandler(handler);
// because we call this synchrnously async operations must be disabled
bool originalSyncContextWasEnabled = _context.SyncContext.Enabled;
_context.SyncContext.Disable();
// Execute the handler
try {
try {
_context.ServerExecuteDepth++;
savedCurrentExecutionFilePath = request.SwitchCurrentExecutionFilePath(filePath);
if (!preserveForm) {
savedForm = request.SwitchForm(new HttpValueCollection());
// Clear out the query string, but honor overrides
if (queryStringOverride == null)
queryStringOverride = String.Empty;
}
// override query string if requested
if (queryStringOverride != null) {
savedQueryString = request.QueryStringText;
request.QueryStringText = queryStringOverride;
}
// capture output if requested
if (writer != null)
savedOutputWriter = response.SwitchWriter(writer);
Page targetPage = handler as Page;
if (targetPage != null) {
if (setPreviousPage) {
// Set the previousPage of the new Page as the previous Page
targetPage.SetPreviousPage(_context.PreviousHandler as Page);
}
Page sourcePage = _context.Handler as Page;
#pragma warning disable 0618 // To avoid deprecation warning
// If the source page of the transfer has smart nav on,
// always do as if the destination has it too (ASURT 97732)
if (sourcePage != null && sourcePage.SmartNavigation)
targetPage.SmartNavigation = true;
#pragma warning restore 0618
// If the target page is async need to save/restore sync context
if (targetPage is IHttpAsyncHandler) {
savedSyncContext = _context.InstallNewAspNetSynchronizationContext();
}
}
if ((handler is StaticFileHandler || handler is DefaultHttpHandler) &&
!DefaultHttpHandler.IsClassicAspRequest(filePath.VirtualPathString)) {
// cannot apply static files handler directly
// -- it would dump the source of the current page
// instead just dump the file content into response
try {
response.WriteFile(physPath);
}
catch {
// hide the real error as it could be misleading
// in case of mismapped requests like /foo.asmx/bar
error = new HttpException(404, String.Empty);
}
}
else if (!(handler is Page)) {
// disallow anything but pages
error = new HttpException(404, String.Empty);
}
else if (handler is IHttpAsyncHandler) {
// Asynchronous handler
// suspend cancellable period (don't abort this thread while
// we wait for another to finish)
bool isCancellable = _context.IsInCancellablePeriod;
if (isCancellable)
_context.EndCancellablePeriod();
try {
IHttpAsyncHandler asyncHandler = (IHttpAsyncHandler)handler;
if (!AppSettings.UseTaskFriendlySynchronizationContext) {
// Legacy code path: behavior ASP.NET <= 4.0
IAsyncResult ar = asyncHandler.BeginProcessRequest(_context, null, null);
// wait for completion
if (!ar.IsCompleted) {
// suspend app lock while waiting
bool needToRelock = false;
try {
try { }
finally {
_context.SyncContext.DisassociateFromCurrentThread();
needToRelock = true;
}
WaitHandle h = ar.AsyncWaitHandle;
if (h != null) {
h.WaitOne();
}
else {
while (!ar.IsCompleted)
Thread.Sleep(1);
}
}
finally {
if (needToRelock) {
_context.SyncContext.AssociateWithCurrentThread();
}
}
}
// end the async operation (get error if any)
try {
asyncHandler.EndProcessRequest(ar);
}
catch (Exception e) {
error = e;
}
}
else {
// New code path: behavior ASP.NET >= 4.5
IAsyncResult ar;
bool blockedThread;
using (CountdownEvent countdownEvent = new CountdownEvent(1)) {
using (_context.SyncContext.AcquireThreadLock()) {
// Kick off the asynchronous operation
ar = asyncHandler.BeginProcessRequest(_context,
cb: _ => { countdownEvent.Signal(); },
extraData: null);
}
// The callback passed to BeginProcessRequest will signal the CountdownEvent.
// The Wait() method blocks until the callback executes; no-ops if the operation completed synchronously.
blockedThread = !countdownEvent.IsSet;
countdownEvent.Wait();
}
// end the async operation (get error if any)
try {
using (_context.SyncContext.AcquireThreadLock()) {
asyncHandler.EndProcessRequest(ar);
}
// If we blocked the thread, YSOD the request to display a diagnostic message.
if (blockedThread && !_context.SyncContext.AllowAsyncDuringSyncStages) {
throw new InvalidOperationException(SR.GetString(SR.Server_execute_blocked_on_async_handler));
}
}
catch (Exception e) {
error = e;
}
}
}
finally {
// resume cancelleable period
if (isCancellable)
_context.BeginCancellablePeriod();
}
}
else {
// Synchronous handler
using (new DisposableHttpContextWrapper(_context)) {
try {
handler.ProcessRequest(_context);
}
catch (Exception e) {
error = e;
}
}
}
}
finally {
_context.ServerExecuteDepth--;
// Restore the handlers;
_context.RestoreCurrentHandler();
// restore output writer
if (savedOutputWriter != null)
response.SwitchWriter(savedOutputWriter);
// restore overriden query string
if (queryStringOverride != null && savedQueryString != null)
request.QueryStringText = savedQueryString;
if (savedForm != null)
request.SwitchForm(savedForm);
request.SwitchCurrentExecutionFilePath(savedCurrentExecutionFilePath);
if (savedSyncContext != null) {
_context.RestoreSavedAspNetSynchronizationContext(savedSyncContext);
}
if (originalSyncContextWasEnabled) {
_context.SyncContext.Enable();
}
// restore trace context
_context.PopTraceContext();
}
}
catch { // Protect against exception filters
throw;
}
// Report any error
if (error != null) {
// suppress errors with HTTP codes (for child requests they mislead more than help)
if (error is HttpException && ((HttpException)error).GetHttpCode() != 500)
error = null;
if (path != null)
throw new HttpException(SR.GetString(SR.Error_executing_child_request_for_path, path), error);
throw new HttpException(SR.GetString(SR.Error_executing_child_request_for_handler, handler.GetType().ToString()), error);
}
}
/// <devdoc>
/// <para>
/// Terminates execution of the current page and begins execution of a new
/// request using the supplied URL path.
/// If preserveForm is false, the QueryString and Form collections are cleared.
/// </para>
/// </devdoc>
public void Transfer(string path, bool preserveForm) {
Page page = _context.Handler as Page;
if ((page != null) && page.IsCallback) {
throw new ApplicationException(SR.GetString(SR.Transfer_not_allowed_in_callback));
}
// execute child request
Execute(path, null, preserveForm);
// suppress the remainder of the current one
_context.Response.End();
}
/// <devdoc>
/// <para>
/// Terminates execution of the current page and begins execution of a new
/// request using the supplied URL path.
/// </para>
/// </devdoc>
public void Transfer(string path) {
// Make sure the transfer is not treated as a postback, which could cause a stack
// overflow if the user doesn't expect it (VSWhidbey 181013).
// If the use *does* want it treated as a postback, they can call Transfer(path, true).
bool savedPreventPostback = _context.PreventPostback;
_context.PreventPostback = true;
Transfer(path, true /*preserveForm*/);
_context.PreventPostback = savedPreventPostback;
}
public void Transfer(IHttpHandler handler, bool preserveForm) {
Page page = handler as Page;
if ((page != null) && page.IsCallback) {
throw new ApplicationException(SR.GetString(SR.Transfer_not_allowed_in_callback));
}
Execute(handler, null, preserveForm);
// suppress the remainder of the current one
_context.Response.End();
}
public void TransferRequest(string path)
{
TransferRequest(path, false, null, null, preserveUser: true);
}
public void TransferRequest(string path, bool preserveForm)
{
TransferRequest(path, preserveForm, null, null, preserveUser: true);
}
public void TransferRequest(string path, bool preserveForm, string method, NameValueCollection headers) {
TransferRequest(path, preserveForm, method, headers, preserveUser: true);
}
public void TransferRequest(string path, bool preserveForm, string method, NameValueCollection headers, bool preserveUser) {
EnsureHasNotTransitionedToWebSocket();
if (!HttpRuntime.UseIntegratedPipeline) {
throw new PlatformNotSupportedException(SR.GetString(SR.Requires_Iis_Integrated_Mode));
}
if (_context == null) {
throw new HttpException(SR.GetString(SR.Server_not_available));
}
if (path == null) {
throw new ArgumentNullException("path");
}
IIS7WorkerRequest wr = _context.WorkerRequest as IIS7WorkerRequest;
HttpRequest request = _context.Request;
HttpResponse response = _context.Response;
if (wr == null) {
throw new HttpException(SR.GetString(SR.Server_not_available));
}
// Remove potential cookie-less session id (ASURT 100558)
path = response.RemoveAppPathModifier(path);
// Extract query string if specified
String qs = null;
int iqs = path.IndexOf('?');
if (iqs >= 0) {
qs = (iqs < path.Length-1) ? path.Substring(iqs+1) : String.Empty;
path = path.Substring(0, iqs);
}
if (!UrlPath.IsValidVirtualPathWithoutProtocol(path)) {
throw new ArgumentException(SR.GetString(SR.Invalid_path_for_child_request, path));
}
VirtualPath virtualPath = request.FilePathObject.Combine(VirtualPath.Create(path));
// Schedule the child execution
wr.ScheduleExecuteUrl( virtualPath.VirtualPathString,
qs,
method,
preserveForm,
preserveForm ? request.EntityBody : null,
headers,
preserveUser);
// force the completion of the current request so that the
// child execution can be performed immediately after unwind
_context.ApplicationInstance.EnsureReleaseState();
// DevDiv Bugs 162750: IIS7 Integrated Mode: TransferRequest performance issue
// Instead of calling Response.End we call HttpApplication.CompleteRequest()
_context.ApplicationInstance.CompleteRequest();
}
private void VerifyTransactionFlow(IHttpHandler handler) {
Page topPage = _context.Handler as Page;
Page childPage = handler as Page;
if (childPage != null && childPage.IsInAspCompatMode && // child page aspcompat
topPage != null && !topPage.IsInAspCompatMode && // top page is not aspcompat
Transactions.Utils.IsInTransaction) { // we are in transaction
throw new HttpException(SR.GetString(SR.Transacted_page_calls_aspcompat));
}
}
//
// Static method to execute a request outside of HttpContext and capture the response
//
internal static void ExecuteLocalRequestAndCaptureResponse(String path, TextWriter writer,
ErrorFormatterGenerator errorFormatterGenerator) {
HttpRequest request = new HttpRequest(
VirtualPath.CreateAbsolute(path),
String.Empty);
HttpResponse response = new HttpResponse(writer);
HttpContext context = new HttpContext(request, response);
HttpApplication app = HttpApplicationFactory.GetApplicationInstance(context) as HttpApplication;
context.ApplicationInstance = app;
try {
context.Server.Execute(path);
}
catch (HttpException e) {
if (errorFormatterGenerator != null) {
context.Response.SetOverrideErrorFormatter(errorFormatterGenerator.GetErrorFormatter(e));
}
context.Response.ReportRuntimeError(e, false, true);
}
finally {
if (app != null) {
context.ApplicationInstance = null;
HttpApplicationFactory.RecycleApplicationInstance(app);
}
}
}
//
// Computer name
//
private static object _machineNameLock = new object();
private static string _machineName;
private const int _maxMachineNameLength = 256;
/// <devdoc>
/// <para>
/// Gets
/// the server machine name.
/// </para>
/// </devdoc>
public string MachineName {
[AspNetHostingPermission(SecurityAction.Demand, Level=AspNetHostingPermissionLevel.Medium)]
get {
return GetMachineNameInternal();
}
}
internal static string GetMachineNameInternal()
{
if (_machineName != null)
return _machineName;
lock (_machineNameLock)
{
if (_machineName != null)
return _machineName;
StringBuilder buf = new StringBuilder (_maxMachineNameLength);
int len = _maxMachineNameLength;
if (UnsafeNativeMethods.GetComputerName (buf, ref len) == 0)
throw new HttpException (SR.GetString(SR.Get_computer_name_failed));
_machineName = buf.ToString();
}
return _machineName;
}
//
// Request Timeout
//
/// <devdoc>
/// <para>
/// Request timeout in seconds
/// </para>
/// </devdoc>
public int ScriptTimeout {
get {
if (_context != null) {
return Convert.ToInt32(_context.Timeout.TotalSeconds);
}
else {
return HttpRuntimeSection.DefaultExecutionTimeout;
}
}
[AspNetHostingPermission(SecurityAction.Demand, Level=AspNetHostingPermissionLevel.Medium)]
set {
if (_context == null)
throw new HttpException(SR.GetString(SR.Server_not_available));
if (value <= 0)
throw new ArgumentOutOfRangeException("value");
_context.Timeout = new TimeSpan(0, 0, value);
}
}
//
// Encoding / Decoding -- wrappers for HttpUtility
//
/// <devdoc>
/// <para>
/// HTML
/// decodes a given string and
/// returns the decoded string.
/// </para>
/// </devdoc>
public string HtmlDecode(string s) {
return HttpUtility.HtmlDecode(s);
}
/// <devdoc>
/// <para>
/// HTML
/// decode a string and send the result to a TextWriter output
/// stream.
/// </para>
/// </devdoc>
public void HtmlDecode(string s, TextWriter output) {
HttpUtility.HtmlDecode(s, output);
}
/// <devdoc>
/// <para>
/// HTML
/// encodes a given string and
/// returns the encoded string.
/// </para>
/// </devdoc>
public string HtmlEncode(string s) {
return HttpUtility.HtmlEncode(s);
}
/// <devdoc>
/// <para>
/// HTML
/// encodes
/// a string and returns the output to a TextWriter stream of output.
/// </para>
/// </devdoc>
public void HtmlEncode(string s, TextWriter output) {
HttpUtility.HtmlEncode(s, output);
}
/// <devdoc>
/// <para>
/// URL
/// encodes a given
/// string and returns the encoded string.
/// </para>
/// </devdoc>
public string UrlEncode(string s) {
Encoding e = (_context != null) ? _context.Response.ContentEncoding : Encoding.UTF8;
return HttpUtility.UrlEncode(s, e);
}
/// <devdoc>
/// <para>
/// URL encodes a path portion of a URL string and returns the encoded string.
/// </para>
/// </devdoc>
public string UrlPathEncode(string s) {
return HttpUtility.UrlPathEncode(s);
}
/// <devdoc>