File size: 21,579 Bytes
8c763fb | 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 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#nullable enable
using System;
using System.Buffers;
using System.IO;
using System.Management.Automation;
using System.Management.Automation.Internal;
using System.Net.Http;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
namespace Microsoft.PowerShell.Commands
{
/// <summary>
/// Microsoft.PowerShell.Commands.WebResponse has a public property RawContentStream
/// which is of type MemoryStream. We shipped like that in PowerShell 3. Creating
/// this class as a wrapper to MemoryStream to lazily initialize. Otherwise, the
/// content will unnecessarily be read even if there are no consumers for it.
/// </summary>
internal sealed class WebResponseContentMemoryStream : MemoryStream
{
#region Data
private readonly long? _contentLength;
private readonly Stream _originalStreamToProxy;
private readonly Cmdlet? _ownerCmdlet;
private readonly CancellationToken _cancellationToken;
private readonly TimeSpan _perReadTimeout;
private bool _isInitialized = false;
#endregion Data
#region Constructors
/// <summary>
/// Initializes a new instance of the <see cref="WebResponseContentMemoryStream"/> class.
/// </summary>
/// <param name="stream">Response stream.</param>
/// <param name="initialCapacity">Presize the memory stream.</param>
/// <param name="cmdlet">Owner cmdlet if any.</param>
/// <param name="contentLength">Expected download size in Bytes.</param>
/// <param name="perReadTimeout">Time permitted between reads or Timeout.InfiniteTimeSpan for no timeout.</param>
/// <param name="cancellationToken">Cancellation token.</param>
internal WebResponseContentMemoryStream(Stream stream, int initialCapacity, Cmdlet? cmdlet, long? contentLength, TimeSpan perReadTimeout, CancellationToken cancellationToken) : base(initialCapacity)
{
this._contentLength = contentLength;
_originalStreamToProxy = stream;
_ownerCmdlet = cmdlet;
_cancellationToken = cancellationToken;
_perReadTimeout = perReadTimeout;
}
#endregion Constructors
/// <summary>
/// </summary>
public override bool CanRead => true;
/// <summary>
/// </summary>
public override bool CanSeek => true;
/// <summary>
/// </summary>
public override bool CanWrite => true;
/// <summary>
/// </summary>
public override long Length
{
get
{
Initialize();
return base.Length;
}
}
/// <summary>
/// </summary>
/// <param name="destination"></param>
/// <param name="bufferSize"></param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
public override Task CopyToAsync(Stream destination, int bufferSize, CancellationToken cancellationToken)
{
Initialize(cancellationToken);
return base.CopyToAsync(destination, bufferSize, cancellationToken);
}
/// <summary>
/// </summary>
/// <param name="buffer"></param>
/// <param name="offset"></param>
/// <param name="count"></param>
/// <returns></returns>
public override int Read(byte[] buffer, int offset, int count)
{
Initialize();
return base.Read(buffer, offset, count);
}
/// <summary>
/// </summary>
/// <param name="buffer"></param>
/// <param name="offset"></param>
/// <param name="count"></param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
public override Task<int> ReadAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken)
{
Initialize(cancellationToken);
return base.ReadAsync(buffer, offset, count, cancellationToken);
}
/// <summary>
/// </summary>
/// <returns></returns>
public override int ReadByte()
{
Initialize();
return base.ReadByte();
}
/// <summary>
/// </summary>
/// <param name="value"></param>
public override void SetLength(long value)
{
Initialize();
base.SetLength(value);
}
/// <summary>
/// </summary>
/// <returns></returns>
public override byte[] ToArray()
{
Initialize();
return base.ToArray();
}
/// <summary>
/// </summary>
/// <param name="buffer"></param>
/// <param name="offset"></param>
/// <param name="count"></param>
public override void Write(byte[] buffer, int offset, int count)
{
Initialize();
base.Write(buffer, offset, count);
}
/// <summary>
/// </summary>
/// <param name="buffer"></param>
/// <param name="offset"></param>
/// <param name="count"></param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
public override Task WriteAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken)
{
Initialize(cancellationToken);
return base.WriteAsync(buffer, offset, count, cancellationToken);
}
/// <summary>
/// </summary>
/// <param name="value"></param>
public override void WriteByte(byte value)
{
Initialize();
base.WriteByte(value);
}
/// <summary>
/// </summary>
/// <param name="stream"></param>
public override void WriteTo(Stream stream)
{
Initialize();
base.WriteTo(stream);
}
/// <summary>
/// </summary>
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
}
private void Initialize(CancellationToken cancellationToken = default)
{
if (_isInitialized)
{
return;
}
if (cancellationToken == default)
{
cancellationToken = _cancellationToken;
}
_isInitialized = true;
try
{
long totalRead = 0;
byte[] buffer = new byte[StreamHelper.ChunkSize];
ProgressRecord record = new(StreamHelper.ActivityId, WebCmdletStrings.ReadResponseProgressActivity, "statusDescriptionPlaceholder");
string totalDownloadSize = _contentLength is null ? "???" : Utils.DisplayHumanReadableFileSize((long)_contentLength);
for (int read = 1; read > 0; totalRead += read)
{
if (_ownerCmdlet is not null)
{
record.StatusDescription = StringUtil.Format(
WebCmdletStrings.ReadResponseProgressStatus,
Utils.DisplayHumanReadableFileSize(totalRead),
totalDownloadSize);
if (_contentLength > 0)
{
record.PercentComplete = Math.Min((int)(totalRead * 100 / (long)_contentLength), 100);
}
_ownerCmdlet.WriteProgress(record);
if (_ownerCmdlet.IsStopping)
{
break;
}
}
read = _originalStreamToProxy.ReadAsync(buffer.AsMemory(), _perReadTimeout, cancellationToken).GetAwaiter().GetResult();
if (read > 0)
{
base.Write(buffer, 0, read);
}
}
if (_ownerCmdlet is not null)
{
record.StatusDescription = StringUtil.Format(WebCmdletStrings.ReadResponseComplete, totalRead);
record.RecordType = ProgressRecordType.Completed;
_ownerCmdlet.WriteProgress(record);
}
// Make sure the length is set appropriately
base.SetLength(totalRead);
Seek(0, SeekOrigin.Begin);
}
catch (Exception)
{
Dispose();
throw;
}
}
}
internal static class StreamTimeoutExtensions
{
internal static async Task<int> ReadAsync(this Stream stream, Memory<byte> buffer, TimeSpan readTimeout, CancellationToken cancellationToken)
{
if (readTimeout == Timeout.InfiniteTimeSpan)
{
return await stream.ReadAsync(buffer, cancellationToken).ConfigureAwait(false);
}
using var cts = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken);
try
{
cts.CancelAfter(readTimeout);
return await stream.ReadAsync(buffer, cts.Token).ConfigureAwait(false);
}
catch (TaskCanceledException ex)
{
if (cts.IsCancellationRequested)
{
throw new TimeoutException($"The request was canceled due to the configured OperationTimeout of {readTimeout.TotalSeconds} seconds elapsing", ex);
}
else
{
throw;
}
}
}
internal static async Task CopyToAsync(this Stream source, Stream destination, TimeSpan perReadTimeout, CancellationToken cancellationToken)
{
if (perReadTimeout == Timeout.InfiniteTimeSpan)
{
// No timeout - use fast path
await source.CopyToAsync(destination, cancellationToken).ConfigureAwait(false);
return;
}
byte[] buffer = ArrayPool<byte>.Shared.Rent(StreamHelper.ChunkSize);
CancellationTokenSource cts = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken);
try
{
while (true)
{
if (!cts.TryReset())
{
cts.Dispose();
cts = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken);
}
cts.CancelAfter(perReadTimeout);
int bytesRead = await source.ReadAsync(buffer, cts.Token).ConfigureAwait(false);
if (bytesRead == 0)
{
break;
}
await destination.WriteAsync(buffer.AsMemory(0, bytesRead), cancellationToken).ConfigureAwait(false);
}
}
catch (TaskCanceledException ex)
{
if (cts.IsCancellationRequested)
{
throw new TimeoutException($"The request was canceled due to the configured OperationTimeout of {perReadTimeout.TotalSeconds} seconds elapsing", ex);
}
else
{
throw;
}
}
finally
{
cts.Dispose();
ArrayPool<byte>.Shared.Return(buffer);
}
}
}
internal static class StreamHelper
{
#region Constants
internal const int DefaultReadBuffer = 100000;
internal const int ChunkSize = 10000;
// Just picked a random number
internal const int ActivityId = 174593042;
#endregion Constants
#region Static Methods
internal static void WriteToStream(Stream input, Stream output, PSCmdlet cmdlet, long? contentLength, TimeSpan perReadTimeout, CancellationToken cancellationToken)
{
ArgumentNullException.ThrowIfNull(cmdlet);
Task copyTask = input.CopyToAsync(output, perReadTimeout, cancellationToken);
bool wroteProgress = false;
ProgressRecord record = new(
ActivityId,
WebCmdletStrings.WriteRequestProgressActivity,
WebCmdletStrings.WriteRequestProgressStatus);
string totalDownloadSize = contentLength is null ? "???" : Utils.DisplayHumanReadableFileSize((long)contentLength);
try
{
while (!copyTask.Wait(1000, cancellationToken))
{
record.StatusDescription = StringUtil.Format(
WebCmdletStrings.WriteRequestProgressStatus,
Utils.DisplayHumanReadableFileSize(output.Position),
totalDownloadSize);
if (contentLength > 0)
{
record.PercentComplete = Math.Min((int)(output.Position * 100 / (long)contentLength), 100);
}
cmdlet.WriteProgress(record);
wroteProgress = true;
}
}
catch (OperationCanceledException)
{
}
finally
{
if (wroteProgress)
{
// Write out the completion progress record only if we did render the progress.
record.StatusDescription = StringUtil.Format(
copyTask.IsCompleted
? WebCmdletStrings.WriteRequestComplete
: WebCmdletStrings.WriteRequestCancelled,
output.Position);
record.RecordType = ProgressRecordType.Completed;
cmdlet.WriteProgress(record);
}
}
}
/// <summary>
/// Saves content from stream into filePath.
/// Caller need to ensure <paramref name="stream"/> position is properly set.
/// </summary>
/// <param name="stream">Input stream.</param>
/// <param name="filePath">Output file name.</param>
/// <param name="cmdlet">Current cmdlet (Invoke-WebRequest or Invoke-RestMethod).</param>
/// <param name="contentLength">Expected download size in Bytes.</param>
/// <param name="perReadTimeout">Time permitted between reads or Timeout.InfiniteTimeSpan for no timeout.</param>
/// <param name="cancellationToken">CancellationToken to track the cmdlet cancellation.</param>
internal static void SaveStreamToFile(Stream stream, string filePath, PSCmdlet cmdlet, long? contentLength, TimeSpan perReadTimeout, CancellationToken cancellationToken)
{
// If the web cmdlet should resume, append the file instead of overwriting.
FileMode fileMode = cmdlet is WebRequestPSCmdlet webCmdlet && webCmdlet.ShouldResume ? FileMode.Append : FileMode.Create;
using FileStream output = new(filePath, fileMode, FileAccess.Write, FileShare.Read);
WriteToStream(stream, output, cmdlet, contentLength, perReadTimeout, cancellationToken);
}
private static string StreamToString(Stream stream, Encoding encoding, TimeSpan perReadTimeout, CancellationToken cancellationToken)
{
StringBuilder result = new(capacity: ChunkSize);
Decoder decoder = encoding.GetDecoder();
int useBufferSize = 64;
if (useBufferSize < encoding.GetMaxCharCount(10))
{
useBufferSize = encoding.GetMaxCharCount(10);
}
char[] chars = ArrayPool<char>.Shared.Rent(useBufferSize);
byte[] bytes = ArrayPool<byte>.Shared.Rent(useBufferSize * 4);
try
{
int bytesRead = 0;
do
{
// Read at most the number of bytes that will fit in the input buffer. The
// return value is the actual number of bytes read, or zero if no bytes remain.
bytesRead = stream.ReadAsync(bytes.AsMemory(), perReadTimeout, cancellationToken).GetAwaiter().GetResult();
bool completed = false;
int byteIndex = 0;
while (!completed)
{
// If this is the last input data, flush the decoder's internal buffer and state.
bool flush = bytesRead is 0;
decoder.Convert(bytes, byteIndex, bytesRead - byteIndex, chars, 0, useBufferSize, flush, out int bytesUsed, out int charsUsed, out completed);
// The conversion produced the number of characters indicated by charsUsed. Write that number
// of characters to our result buffer
result.Append(chars, 0, charsUsed);
// Increment byteIndex to the next block of bytes in the input buffer, if any, to convert.
byteIndex += bytesUsed;
// The behavior of decoder.Convert changed start .NET 3.1-preview2.
// The change was made in https://github.com/dotnet/coreclr/pull/27229
// The recommendation from .NET team is to not check for 'completed' if 'flush' is false.
// Break out of the loop if all bytes have been read.
if (!flush && bytesRead == byteIndex)
{
break;
}
}
}
while (bytesRead != 0);
return result.ToString();
}
finally
{
ArrayPool<char>.Shared.Return(chars);
ArrayPool<byte>.Shared.Return(bytes);
}
}
internal static string DecodeStream(Stream stream, string? characterSet, out Encoding encoding, TimeSpan perReadTimeout, CancellationToken cancellationToken)
{
bool isDefaultEncoding = !TryGetEncoding(characterSet, out encoding);
string content = StreamToString(stream, encoding, perReadTimeout, cancellationToken);
if (isDefaultEncoding)
{
// We only look within the first 1k characters as the meta element and
// the xml declaration are at the start of the document
string substring = content.Substring(0, Math.Min(content.Length, 1024));
// Check for a charset attribute on the meta element to override the default
Match match = s_metaRegex.Match(substring);
// Check for a encoding attribute on the xml declaration to override the default
if (!match.Success)
{
match = s_xmlRegex.Match(substring);
}
if (match.Success)
{
characterSet = match.Groups["charset"].Value;
if (TryGetEncoding(characterSet, out Encoding localEncoding))
{
stream.Seek(0, SeekOrigin.Begin);
content = StreamToString(stream, localEncoding, perReadTimeout, cancellationToken);
encoding = localEncoding;
}
}
}
return content;
}
internal static bool TryGetEncoding(string? characterSet, out Encoding encoding)
{
bool result = false;
try
{
encoding = Encoding.GetEncoding(characterSet!);
result = true;
}
catch (ArgumentException)
{
// Use the default encoding if one wasn't provided
encoding = ContentHelper.GetDefaultEncoding();
}
return result;
}
private static readonly Regex s_metaRegex = new(
@"<meta\s.*[^.><]*charset\s*=\s*[""'\n]?(?<charset>[A-Za-z].[^\s""'\n<>]*)[\s""'\n>]",
RegexOptions.Compiled | RegexOptions.Singleline | RegexOptions.ExplicitCapture | RegexOptions.CultureInvariant | RegexOptions.IgnoreCase | RegexOptions.NonBacktracking
);
private static readonly Regex s_xmlRegex = new(
@"<\?xml\s.*[^.><]*encoding\s*=\s*[""'\n]?(?<charset>[A-Za-z].[^\s""'\n<>]*)[\s""'\n>]",
RegexOptions.Compiled | RegexOptions.Singleline | RegexOptions.ExplicitCapture | RegexOptions.CultureInvariant | RegexOptions.IgnoreCase | RegexOptions.NonBacktracking
);
internal static byte[] EncodeToBytes(string str, Encoding encoding)
{
// Just use the default encoding if one wasn't provided
encoding ??= ContentHelper.GetDefaultEncoding();
return encoding.GetBytes(str);
}
internal static Stream GetResponseStream(HttpResponseMessage response, CancellationToken cancellationToken) => response.Content.ReadAsStreamAsync(cancellationToken).GetAwaiter().GetResult();
#endregion Static Methods
}
}
|