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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551
|
//------------------------------------------------------------------------------
// <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>
/// <para>
/// URL
/// encodes
/// a string and returns the output to a TextWriter output stream.
/// </para>
/// </devdoc>
public void UrlEncode(string s, TextWriter output) {
if (s != null)
output.Write(UrlEncode(s));
}
/// <devdoc>
/// <para>
/// URL decodes a string and returns the output in a string.
/// </para>
/// </devdoc>
public string UrlDecode(string s) {
Encoding e = (_context != null) ? _context.Request.ContentEncoding : Encoding.UTF8;
return HttpUtility.UrlDecode(s, e);
}
/// <devdoc>
/// <para>
/// URL decodes a string and returns the output as a TextWriter output
/// stream.
/// </para>
/// </devdoc>
public void UrlDecode(string s, TextWriter output) {
if (s != null)
output.Write(UrlDecode(s));
}
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
static public string UrlTokenEncode(byte [] input)
{
return HttpEncoder.Current.UrlTokenEncode(input);
}
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
static public byte [] UrlTokenDecode(string input) {
return HttpEncoder.Current.UrlTokenDecode(input);
}
// helper that throws an exception if we have transitioned the current request to a WebSocket request
internal void EnsureHasNotTransitionedToWebSocket() {
if (_context != null) {
_context.EnsureHasNotTransitionedToWebSocket();
}
}
}
/// <devdoc>
/// </devdoc>
// VSWhidbey 473228 - removed link demand from HttpUtility for ClickOnce scenario
public sealed class HttpUtility {
public HttpUtility () {}
//////////////////////////////////////////////////////////////////////////
//
// HTML Encoding / Decoding
//
/// <devdoc>
/// <para>
/// HTML decodes a string and returns the decoded string.
/// </para>
/// </devdoc>
public static string HtmlDecode(string s) {
return HttpEncoder.Current.HtmlDecode(s);
}
/// <devdoc>
/// <para>
/// HTML decode a string and send the result to a TextWriter output stream.
/// </para>
/// </devdoc>
public static void HtmlDecode(string s, TextWriter output) {
HttpEncoder.Current.HtmlDecode(s, output);
}
/// <devdoc>
/// <para>
/// HTML encodes a string and returns the encoded string.
/// </para>
/// </devdoc>
public static String HtmlEncode(String s) {
return HttpEncoder.Current.HtmlEncode(s);
}
/// <devdoc>
/// <para>
/// HTML encodes an object's string representation and returns the encoded string.
/// If the object implements IHtmlString, don't encode it
/// </para>
/// </devdoc>
public static String HtmlEncode(object value) {
if (value == null) {
// Return null to be consistent with HtmlEncode(string)
return null;
}
var htmlString = value as IHtmlString;
if (htmlString != null) {
return htmlString.ToHtmlString();
}
return HtmlEncode(Convert.ToString(value, CultureInfo.CurrentCulture));
}
/// <devdoc>
/// <para>
/// HTML encodes a string and returns the output to a TextWriter stream of
/// output.
/// </para>
/// </devdoc>
public static void HtmlEncode(String s, TextWriter output) {
HttpEncoder.Current.HtmlEncode(s, output);
}
/// <devdoc>
/// <para>
/// Encodes a string to make it a valid HTML attribute and returns the encoded string.
/// </para>
/// </devdoc>
public static String HtmlAttributeEncode(String s) {
return HttpEncoder.Current.HtmlAttributeEncode(s);
}
/// <devdoc>
/// <para>
/// Encodes a string to make it a valid HTML attribute and returns the output
/// to a TextWriter stream of
/// output.
/// </para>
/// </devdoc>
public static void HtmlAttributeEncode(String s, TextWriter output) {
HttpEncoder.Current.HtmlAttributeEncode(s, output);
}
internal static string FormatPlainTextSpacesAsHtml(string s) {
if (s == null) {
return null;
}
StringBuilder builder = new StringBuilder();
StringWriter writer = new StringWriter(builder);
int cb = s.Length;
for (int i = 0; i < cb; i++) {
char ch = s[i];
if(ch == ' ') {
writer.Write(" ");
}
else {
writer.Write(ch);
}
}
return builder.ToString();
}
internal static String FormatPlainTextAsHtml(String s) {
if (s == null)
return null;
StringBuilder builder = new StringBuilder();
StringWriter writer = new StringWriter(builder);
FormatPlainTextAsHtml(s, writer);
return builder.ToString();
}
internal static void FormatPlainTextAsHtml(String s, TextWriter output) {
if (s == null)
return;
int cb = s.Length;
char prevCh = '\0';
for (int i=0; i<cb; i++) {
char ch = s[i];
switch (ch) {
case '<':
output.Write("<");
break;
case '>':
output.Write(">");
break;
case '"':
output.Write(""");
break;
case '&':
output.Write("&");
break;
case ' ':
if (prevCh == ' ')
output.Write(" ");
else
output.Write(ch);
break;
case '\r':
// Ignore \r, only handle \n
break;
case '\n':
output.Write("<br>");
break;
//
default:
#if ENTITY_ENCODE_HIGH_ASCII_CHARS
// The seemingly arbitrary 160 comes from RFC
if (ch >= 160 && ch < 256) {
output.Write("&#");
output.Write(((int)ch).ToString(NumberFormatInfo.InvariantInfo));
output.Write(';');
break;
}
#endif // ENTITY_ENCODE_HIGH_ASCII_CHARS
output.Write(ch);
break;
}
prevCh = ch;
}
}
//////////////////////////////////////////////////////////////////////////
//
// ASII encode - everything all non-7-bit to '?'
//
/*internal static String AsciiEncode(String s) {
if (s == null)
return null;
StringBuilder sb = new StringBuilder(s.Length);
for (int i = 0; i < s.Length; i++) {
char ch = s[i];
if (((ch & 0xff80) != 0) || (ch < ' ' && ch != '\r' && ch != '\n' && ch != '\t'))
ch = '?';
sb.Append(ch);
}
return sb.ToString();
}*/
//
// Query string parsing support
//
public static NameValueCollection ParseQueryString(string query) {
return ParseQueryString(query, Encoding.UTF8);
}
public static NameValueCollection ParseQueryString(string query, Encoding encoding) {
if (query == null) {
throw new ArgumentNullException("query");
}
if (encoding == null) {
throw new ArgumentNullException("encoding");
}
if (query.Length > 0 && query[0] == '?') {
query = query.Substring(1);
}
return new HttpValueCollection(query, false, true, encoding);
}
//////////////////////////////////////////////////////////////////////////
//
// URL decoding / encoding
//
//////////////////////////////////////////////////////////////////////////
//
// Public static methods
//
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public static string UrlEncode(string str) {
if (str == null)
return null;
return UrlEncode(str, Encoding.UTF8);
}
/// <devdoc>
/// <para>
/// URL encodes a path portion of a URL string and returns the encoded string.
/// </para>
/// </devdoc>
public static string UrlPathEncode(string str) {
return HttpEncoder.Current.UrlPathEncode(str);
}
internal static string AspCompatUrlEncode(string s) {
s = UrlEncode(s);
s = s.Replace("!", "%21");
s = s.Replace("*", "%2A");
s = s.Replace("(", "%28");
s = s.Replace(")", "%29");
s = s.Replace("-", "%2D");
s = s.Replace(".", "%2E");
s = s.Replace("_", "%5F");
s = s.Replace("\\", "%5C");
return s;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public static string UrlEncode(string str, Encoding e) {
if (str == null)
return null;
return Encoding.ASCII.GetString(UrlEncodeToBytes(str, e));
}
// Helper to encode the non-ASCII url characters only
internal static String UrlEncodeNonAscii(string str, Encoding e) {
return HttpEncoder.Current.UrlEncodeNonAscii(str, e);
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public static string UrlEncode(byte[] bytes) {
if (bytes == null)
return null;
return Encoding.ASCII.GetString(UrlEncodeToBytes(bytes));
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public static string UrlEncode(byte[] bytes, int offset, int count) {
if (bytes == null)
return null;
return Encoding.ASCII.GetString(UrlEncodeToBytes(bytes, offset, count));
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public static byte[] UrlEncodeToBytes(string str) {
if (str == null)
return null;
return UrlEncodeToBytes(str, Encoding.UTF8);
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public static byte[] UrlEncodeToBytes(string str, Encoding e) {
if (str == null)
return null;
byte[] bytes = e.GetBytes(str);
return HttpEncoder.Current.UrlEncode(bytes, 0, bytes.Length, false /* alwaysCreateNewReturnValue */);
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public static byte[] UrlEncodeToBytes(byte[] bytes) {
if (bytes == null)
return null;
return UrlEncodeToBytes(bytes, 0, bytes.Length);
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public static byte[] UrlEncodeToBytes(byte[] bytes, int offset, int count) {
return HttpEncoder.Current.UrlEncode(bytes, offset, count, true /* alwaysCreateNewReturnValue */);
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
[Obsolete("This method produces non-standards-compliant output and has interoperability issues. The preferred alternative is UrlEncode(String).")]
public static string UrlEncodeUnicode(string str) {
return HttpEncoder.Current.UrlEncodeUnicode(str, false /* ignoreAscii */);
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
[Obsolete("This method produces non-standards-compliant output and has interoperability issues. The preferred alternative is UrlEncodeToBytes(String).")]
public static byte[] UrlEncodeUnicodeToBytes(string str) {
if (str == null)
return null;
return Encoding.ASCII.GetBytes(UrlEncodeUnicode(str));
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public static string UrlDecode(string str) {
if (str == null)
return null;
return UrlDecode(str, Encoding.UTF8);
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public static string UrlDecode(string str, Encoding e) {
return HttpEncoder.Current.UrlDecode(str, e);
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public static string UrlDecode(byte[] bytes, Encoding e) {
if (bytes == null)
return null;
return UrlDecode(bytes, 0, bytes.Length, e);
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public static string UrlDecode(byte[] bytes, int offset, int count, Encoding e) {
return HttpEncoder.Current.UrlDecode(bytes, offset, count, e);
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public static byte[] UrlDecodeToBytes(string str) {
if (str == null)
return null;
return UrlDecodeToBytes(str, Encoding.UTF8);
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public static byte[] UrlDecodeToBytes(string str, Encoding e) {
if (str == null)
return null;
return UrlDecodeToBytes(e.GetBytes(str));
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public static byte[] UrlDecodeToBytes(byte[] bytes) {
if (bytes == null)
return null;
return UrlDecodeToBytes(bytes, 0, (bytes != null) ? bytes.Length : 0);
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public static byte[] UrlDecodeToBytes(byte[] bytes, int offset, int count) {
return HttpEncoder.Current.UrlDecode(bytes, offset, count);
}
//////////////////////////////////////////////////////////////////////////
//
// Misc helpers
//
//////////////////////////////////////////////////////////////////////////
internal static String FormatHttpDateTime(DateTime dt) {
if (dt < DateTime.MaxValue.AddDays(-1) && dt > DateTime.MinValue.AddDays(1))
dt = dt.ToUniversalTime();
return dt.ToString("R", DateTimeFormatInfo.InvariantInfo);
}
internal static String FormatHttpDateTimeUtc(DateTime dt) {
return dt.ToString("R", DateTimeFormatInfo.InvariantInfo);
}
internal static String FormatHttpCookieDateTime(DateTime dt) {
if (dt < DateTime.MaxValue.AddDays(-1) && dt > DateTime.MinValue.AddDays(1))
dt = dt.ToUniversalTime();
return dt.ToString("ddd, dd-MMM-yyyy HH':'mm':'ss 'GMT'", DateTimeFormatInfo.InvariantInfo);
}
//
// JavaScriptStringEncode
//
public static String JavaScriptStringEncode(string value) {
return JavaScriptStringEncode(value, false);
}
public static String JavaScriptStringEncode(string value, bool addDoubleQuotes) {
string encoded = HttpEncoder.Current.JavaScriptStringEncode(value);
return (addDoubleQuotes) ? "\"" + encoded + "\"" : encoded;
}
/// <summary>
/// Attempts to parse a co-ordinate as a double precision floating point value.
/// This essentially does a Double.TryParse while disallowing specific floating point constructs such as the exponent.
/// </summary>
internal static bool TryParseCoordinates(string value, out double doubleValue) {
var flags = NumberStyles.AllowLeadingWhite | NumberStyles.AllowTrailingWhite | NumberStyles.AllowDecimalPoint | NumberStyles.AllowLeadingSign;
return Double.TryParse(value, flags, CultureInfo.InvariantCulture, out doubleValue);
}
}
}
|