forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContractDescriptorTarget.cs
634 lines (536 loc) · 22.8 KB
/
ContractDescriptorTarget.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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Numerics;
using System.Runtime.CompilerServices;
using System.Text;
using Microsoft.Diagnostics.DataContractReader.Data;
namespace Microsoft.Diagnostics.DataContractReader;
/// <summary>
/// Representation of the target under inspection
/// </summary>
/// <remarks>
/// This class provides APIs used by contracts for reading from the target and getting type and globals
/// information based on the target's contract descriptor. Like the contracts themselves in cdacreader,
/// these are throwing APIs. Any callers at the boundaries (for example, unmanaged entry points, COM)
/// should handle any exceptions.
/// </remarks>
public sealed unsafe class ContractDescriptorTarget : Target
{
private const int StackAllocByteThreshold = 1024;
private readonly struct Configuration
{
public bool IsLittleEndian { get; init; }
public int PointerSize { get; init; }
}
private readonly Configuration _config;
private readonly Reader _reader;
private readonly Dictionary<string, int> _contracts = [];
private readonly IReadOnlyDictionary<string, (ulong Value, string? Type)> _globals = new Dictionary<string, (ulong, string?)>();
private readonly Dictionary<DataType, Target.TypeInfo> _knownTypes = [];
private readonly Dictionary<string, Target.TypeInfo> _types = [];
public override ContractRegistry Contracts { get; }
public override DataCache ProcessedData { get; }
public delegate int ReadFromTargetDelegate(ulong address, Span<byte> bufferToFill);
public delegate int GetTargetThreadContextDelegate(uint threadId, uint contextFlags, uint contextSize, Span<byte> bufferToFill);
public delegate int GetTargetPlatformDelegate(out int platform);
/// <summary>
/// Create a new target instance from a contract descriptor embedded in the target memory.
/// </summary>
/// <param name="contractDescriptor">The offset of the contract descriptor in the target memory</param>
/// <param name="readFromTarget">A callback to read memory blocks at a given address from the target</param>
/// <param name="getThreadContext">A callback to fetch a thread's context</param>
/// <param name="getTargetPlatform">A callback to fetch the target's platform</param>
/// <param name="target">The target object.</param>
/// <returns>If a target instance could be created, <c>true</c>; otherwise, <c>false</c>.</returns>
public static bool TryCreate(
ulong contractDescriptor,
ReadFromTargetDelegate readFromTarget,
GetTargetThreadContextDelegate getThreadContext,
GetTargetPlatformDelegate getTargetPlatform,
out ContractDescriptorTarget? target)
{
Reader reader = new Reader(readFromTarget, getThreadContext, getTargetPlatform);
if (TryReadContractDescriptor(
contractDescriptor,
reader,
out Configuration config,
out ContractDescriptorParser.ContractDescriptor? descriptor,
out TargetPointer[] pointerData))
{
target = new ContractDescriptorTarget(config, descriptor!, pointerData, reader);
return true;
}
target = null;
return false;
}
/// <summary>
/// Create a new target instance from an externally-provided contract descriptor.
/// </summary>
/// <param name="contractDescriptor">The contract descriptor to use for this target</param>
/// <param name="globalPointerValues">The values for any global pointers specified in the contract descriptor.</param>
/// <param name="readFromTarget">A callback to read memory blocks at a given address from the target</param>
/// <param name="getThreadContext">A callback to fetch a thread's context</param>
/// <param name="getTargetPlatform">A callback to fetch the target's platform</param>
/// <param name="isLittleEndian">Whether the target is little-endian</param>
/// <param name="pointerSize">The size of a pointer in bytes in the target process.</param>
/// <returns>The target object.</returns>
public static ContractDescriptorTarget Create(
ContractDescriptorParser.ContractDescriptor contractDescriptor,
TargetPointer[] globalPointerValues,
ReadFromTargetDelegate readFromTarget,
GetTargetThreadContextDelegate getThreadContext,
GetTargetPlatformDelegate getTargetPlatform,
bool isLittleEndian,
int pointerSize)
{
return new ContractDescriptorTarget(
new Configuration { IsLittleEndian = isLittleEndian, PointerSize = pointerSize },
contractDescriptor,
globalPointerValues,
new Reader(readFromTarget, getThreadContext, getTargetPlatform));
}
private ContractDescriptorTarget(Configuration config, ContractDescriptorParser.ContractDescriptor descriptor, TargetPointer[] pointerData, Reader reader)
{
Contracts = new CachingContractRegistry(this, this.TryGetContractVersion);
ProcessedData = new DataCache(this);
_config = config;
_reader = reader;
_contracts = descriptor.Contracts ?? [];
// Set pointer type size
_knownTypes[DataType.pointer] = new TypeInfo { Size = (uint)_config.PointerSize };
// Read types and map to known data types
if (descriptor.Types is not null)
{
foreach ((string name, ContractDescriptorParser.TypeDescriptor type) in descriptor.Types)
{
Dictionary<string, Target.FieldInfo> fieldInfos = [];
if (type.Fields is not null)
{
foreach ((string fieldName, ContractDescriptorParser.FieldDescriptor field) in type.Fields)
{
fieldInfos[fieldName] = new Target.FieldInfo()
{
Offset = field.Offset,
Type = field.Type is null ? DataType.Unknown : GetDataType(field.Type),
TypeName = field.Type
};
}
}
Target.TypeInfo typeInfo = new() { Size = type.Size, Fields = fieldInfos };
DataType dataType = GetDataType(name);
if (dataType is not DataType.Unknown)
{
_knownTypes[dataType] = typeInfo;
}
else
{
_types[name] = typeInfo;
}
}
}
// Read globals and map indirect values to pointer data
if (descriptor.Globals is not null)
{
Dictionary<string, (ulong Value, string? Type)> globals = [];
foreach ((string name, ContractDescriptorParser.GlobalDescriptor global) in descriptor.Globals)
{
ulong value = global.Value;
if (global.Indirect)
{
if (value >= (ulong)pointerData.Length)
throw new InvalidOperationException($"Invalid pointer data index {value}.");
value = pointerData[value].Value;
}
globals[name] = (value, global.Type);
}
_globals = globals;
}
}
// See docs/design/datacontracts/contract-descriptor.md
private static bool TryReadContractDescriptor(
ulong address,
Reader reader,
out Configuration config,
out ContractDescriptorParser.ContractDescriptor? descriptor,
out TargetPointer[] pointerData)
{
config = default;
descriptor = null;
pointerData = [];
// Magic - uint64_t
Span<byte> buffer = stackalloc byte[sizeof(ulong)];
if (reader.ReadFromTarget(address, buffer) < 0)
return false;
address += sizeof(ulong);
ReadOnlySpan<byte> magicLE = "DNCCDAC\0"u8;
ReadOnlySpan<byte> magicBE = "\0CADCCND"u8;
bool isLittleEndian = buffer.SequenceEqual(magicLE);
if (!isLittleEndian && !buffer.SequenceEqual(magicBE))
return false;
// Flags - uint32_t
if (!TryRead(address, isLittleEndian, reader, out uint flags))
return false;
address += sizeof(uint);
// Bit 1 represents the pointer size. 0 = 64-bit, 1 = 32-bit.
int pointerSize = (int)(flags & 0x2) == 0 ? sizeof(ulong) : sizeof(uint);
config = new Configuration { IsLittleEndian = isLittleEndian, PointerSize = pointerSize };
// Descriptor size - uint32_t
if (!TryRead(address, config.IsLittleEndian, reader, out uint descriptorSize))
return false;
address += sizeof(uint);
// Descriptor - char*
if (!TryReadPointer(address, config, reader, out TargetPointer descriptorAddr))
return false;
address += (uint)pointerSize;
// Pointer data count - uint32_t
if (!TryRead(address, config.IsLittleEndian, reader, out uint pointerDataCount))
return false;
address += sizeof(uint);
// Padding - uint32_t
address += sizeof(uint);
// Pointer data - uintptr_t*
if (!TryReadPointer(address, config, reader, out TargetPointer pointerDataAddr))
return false;
// Read descriptor
Span<byte> descriptorBuffer = descriptorSize <= StackAllocByteThreshold
? stackalloc byte[(int)descriptorSize]
: new byte[(int)descriptorSize];
if (reader.ReadFromTarget(descriptorAddr.Value, descriptorBuffer) < 0)
return false;
descriptor = ContractDescriptorParser.ParseCompact(descriptorBuffer);
if (descriptor is null)
return false;
// Read pointer data
pointerData = new TargetPointer[pointerDataCount];
for (int i = 0; i < pointerDataCount; i++)
{
if (!TryReadPointer(pointerDataAddr.Value + (uint)(i * pointerSize), config, reader, out pointerData[i]))
return false;
}
return true;
}
private static DataType GetDataType(string type)
{
if (Enum.TryParse(type, false, out DataType dataType) && Enum.IsDefined(dataType))
return dataType;
return DataType.Unknown;
}
public override int PointerSize => _config.PointerSize;
public override bool IsLittleEndian => _config.IsLittleEndian;
public override CorDebugPlatform Platform
{
get
{
_reader.GetTargetPlatform(out int platform);
return (CorDebugPlatform)platform;
}
}
public override bool TryGetThreadContext(ulong threadId, uint contextFlags, Span<byte> buffer)
{
// Underlying API only supports 32-bit thread IDs, mask off top 32 bits
int hr = _reader.GetThreadContext((uint)(threadId & uint.MaxValue), contextFlags, (uint)buffer.Length, buffer);
return hr == 0;
}
/// <summary>
/// Read a value from the target in target endianness
/// </summary>
/// <typeparam name="T">Type of value to read</typeparam>
/// <param name="address">Address to start reading from</param>
/// <returns>Value read from the target</returns>
public override T Read<T>(ulong address)
{
if (!TryRead(address, _config.IsLittleEndian, _reader, out T value))
throw new InvalidOperationException($"Failed to read {typeof(T)} at 0x{address:x8}.");
return value;
}
private static bool TryRead<T>(ulong address, bool isLittleEndian, Reader reader, out T value) where T : unmanaged, IBinaryInteger<T>, IMinMaxValue<T>
{
value = default;
Span<byte> buffer = stackalloc byte[sizeof(T)];
if (reader.ReadFromTarget(address, buffer) < 0)
return false;
return isLittleEndian
? T.TryReadLittleEndian(buffer, !IsSigned<T>(), out value)
: T.TryReadBigEndian(buffer, !IsSigned<T>(), out value);
}
private static T Read<T>(ReadOnlySpan<byte> bytes, bool isLittleEndian) where T : unmanaged, IBinaryInteger<T>, IMinMaxValue<T>
{
if (sizeof(T) != bytes.Length)
throw new ArgumentException(nameof(bytes));
T value;
if (isLittleEndian)
{
T.TryReadLittleEndian(bytes, !IsSigned<T>(), out value);
}
else
{
T.TryReadBigEndian(bytes, !IsSigned<T>(), out value);
}
return value;
}
public override void ReadBuffer(ulong address, Span<byte> buffer)
{
if (!TryReadBuffer(address, buffer))
throw new InvalidOperationException($"Failed to read {buffer.Length} bytes at 0x{address:x8}.");
}
private bool TryReadBuffer(ulong address, Span<byte> buffer)
{
return _reader.ReadFromTarget(address, buffer) >= 0;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
private static bool IsSigned<T>() where T : struct, INumberBase<T>, IMinMaxValue<T>
{
return T.IsNegative(T.MinValue);
}
/// <summary>
/// Read a pointer from the target in target endianness
/// </summary>
/// <param name="address">Address to start reading from</param>
/// <returns>Pointer read from the target</returns>}
public override TargetPointer ReadPointer(ulong address)
{
if (!TryReadPointer(address, _config, _reader, out TargetPointer pointer))
throw new InvalidOperationException($"Failed to read pointer at 0x{address:x8}.");
return pointer;
}
public override TargetPointer ReadPointerFromSpan(ReadOnlySpan<byte> bytes)
{
if (_config.PointerSize == sizeof(uint))
{
return new TargetPointer(Read<uint>(bytes.Slice(0, sizeof(uint)), _config.IsLittleEndian));
}
else
{
return new TargetPointer(Read<ulong>(bytes.Slice(0, sizeof(ulong)), _config.IsLittleEndian));
}
}
public override TargetCodePointer ReadCodePointer(ulong address)
{
TypeInfo codePointerTypeInfo = GetTypeInfo(DataType.CodePointer);
if (codePointerTypeInfo.Size is sizeof(uint))
{
return new TargetCodePointer(Read<uint>(address));
}
else if (codePointerTypeInfo.Size is sizeof(ulong))
{
return new TargetCodePointer(Read<ulong>(address));
}
throw new InvalidOperationException($"Failed to read code pointer at 0x{address:x8} because CodePointer size is not 4 or 8");
}
public void ReadPointers(ulong address, Span<TargetPointer> buffer)
{
// TODO(cdac) - This could do a single read, and then swizzle in place if it is useful for performance
for (int i = 0; i < buffer.Length; i++)
{
buffer[i] = ReadPointer(address);
checked
{
address += (ulong)_config.PointerSize;
}
}
}
/// <summary>
/// Read a null-terminated UTF-8 string from the target
/// </summary>
/// <param name="address">Address to start reading from</param>
/// <returns>String read from the target</returns>}
public override string ReadUtf8String(ulong address)
{
// Read characters until we find the null terminator
ulong end = address;
while (Read<byte>(end) != 0)
{
end += sizeof(byte);
}
int length = (int)(end - address);
if (length == 0)
return string.Empty;
Span<byte> span = length <= StackAllocByteThreshold
? stackalloc byte[length]
: new byte[length];
ReadBuffer(address, span);
return Encoding.UTF8.GetString(span);
}
/// <summary>
/// Read a null-terminated UTF-16 string from the target in target endianness
/// </summary>
/// <param name="address">Address to start reading from</param>
/// <returns>String read from the target</returns>}
public override string ReadUtf16String(ulong address)
{
// Read characters until we find the null terminator
ulong end = address;
while (Read<char>(end) != 0)
{
end += sizeof(char);
}
int length = (int)(end - address);
if (length == 0)
return string.Empty;
Span<byte> span = length <= StackAllocByteThreshold
? stackalloc byte[length]
: new byte[length];
ReadBuffer(address, span);
string result = _config.IsLittleEndian
? Encoding.Unicode.GetString(span)
: Encoding.BigEndianUnicode.GetString(span);
return result;
}
/// <summary>
/// Read a native unsigned integer from the target in target endianness
/// </summary>
/// <param name="address">Address to start reading from</param>
/// <returns>Value read from the target</returns>
public override TargetNUInt ReadNUInt(ulong address)
{
if (!TryReadNUInt(address, _config, _reader, out ulong value))
throw new InvalidOperationException($"Failed to read nuint at 0x{address:x8}.");
return new TargetNUInt(value);
}
private static bool TryReadPointer(ulong address, Configuration config, Reader reader, out TargetPointer pointer)
{
pointer = TargetPointer.Null;
if (!TryReadNUInt(address, config, reader, out ulong value))
return false;
pointer = new TargetPointer(value);
return true;
}
private static bool TryReadNUInt(ulong address, Configuration config, Reader reader, out ulong value)
{
value = 0;
if (config.PointerSize == sizeof(uint)
&& TryRead(address, config.IsLittleEndian, reader, out uint value32))
{
value = value32;
return true;
}
else if (config.PointerSize == sizeof(ulong)
&& TryRead(address, config.IsLittleEndian, reader, out ulong value64))
{
value = value64;
return true;
}
return false;
}
public static bool IsAligned(ulong value, int alignment)
=> (value & (ulong)(alignment - 1)) == 0;
public bool IsAlignedToPointerSize(uint value)
=> IsAligned(value, _config.PointerSize);
public bool IsAlignedToPointerSize(ulong value)
=> IsAligned(value, _config.PointerSize);
public override bool IsAlignedToPointerSize(TargetPointer pointer)
=> IsAligned(pointer.Value, _config.PointerSize);
public override bool TryReadGlobal<T>(string name, [NotNullWhen(true)] out T? value)
=> TryReadGlobal<T>(name, out value, out _);
public bool TryReadGlobal<T>(string name, [NotNullWhen(true)] out T? value, out string? type) where T : struct, INumber<T>
{
value = null;
type = null;
if (!_globals.TryGetValue(name, out (ulong Value, string? Type) global))
{
return false;
}
type = global.Type;
value = T.CreateChecked(global.Value);
return true;
}
public override T ReadGlobal<T>(string name)
=> ReadGlobal<T>(name, out _);
public T ReadGlobal<T>(string name, out string? type) where T : struct, INumber<T>
{
if (!_globals.TryGetValue(name, out (ulong Value, string? Type) global))
throw new InvalidOperationException($"Failed to read global {typeof(T)} '{name}'.");
type = global.Type;
return T.CreateChecked(global.Value);
}
public override TargetPointer ReadGlobalPointer(string name)
=> ReadGlobalPointer(name, out _);
public TargetPointer ReadGlobalPointer(string name, out string? type)
{
if (!_globals.TryGetValue(name, out (ulong Value, string? Type) global))
throw new InvalidOperationException($"Failed to read global pointer '{name}'.");
type = global.Type;
return new TargetPointer(global.Value);
}
public override TypeInfo GetTypeInfo(DataType type)
{
if (!_knownTypes.TryGetValue(type, out Target.TypeInfo typeInfo))
throw new InvalidOperationException($"Failed to get type info for '{type}'");
return typeInfo;
}
public Target.TypeInfo GetTypeInfo(string type)
{
if (_types.TryGetValue(type, out Target.TypeInfo typeInfo))
return typeInfo;
DataType dataType = GetDataType(type);
if (dataType is not DataType.Unknown)
return GetTypeInfo(dataType);
throw new InvalidOperationException($"Failed to get type info for '{type}'");
}
internal bool TryGetContractVersion(string contractName, out int version)
=> _contracts.TryGetValue(contractName, out version);
/// <summary>
/// Store of addresses that have already been read into corresponding data models.
/// This is simply used to avoid re-processing data on every request.
/// </summary>
public sealed class DataCache : Target.IDataCache
{
private readonly ContractDescriptorTarget _target;
private readonly Dictionary<(ulong, Type), object?> _readDataByAddress = [];
public DataCache(ContractDescriptorTarget target)
{
_target = target;
}
public T GetOrAdd<T>(TargetPointer address) where T : IData<T>
{
if (TryGet(address, out T? result))
return result;
T constructed = T.Create(_target, address);
if (_readDataByAddress.TryAdd((address, typeof(T)), constructed))
return constructed;
bool found = TryGet(address, out result);
Debug.Assert(found);
return result!;
}
public bool TryGet<T>(ulong address, [NotNullWhen(true)] out T? data)
{
data = default;
if (!_readDataByAddress.TryGetValue((address, typeof(T)), out object? dataObj))
return false;
if (dataObj is T dataMaybe)
{
data = dataMaybe;
return true;
}
return false;
}
public void Clear()
{
_readDataByAddress.Clear();
}
}
private readonly struct Reader(
ReadFromTargetDelegate readFromTarget,
GetTargetThreadContextDelegate getThreadContext,
GetTargetPlatformDelegate getTargetPlatform)
{
public int ReadFromTarget(ulong address, Span<byte> buffer)
{
return readFromTarget(address, buffer);
}
public int ReadFromTarget(ulong address, byte* buffer, uint bytesToRead)
=> readFromTarget(address, new Span<byte>(buffer, checked((int)bytesToRead)));
public int GetTargetPlatform(out int platform)
{
return getTargetPlatform(out platform);
}
public int GetThreadContext(uint threadId, uint contextFlags, uint contextSize, Span<byte> buffer)
{
return getThreadContext(threadId, contextFlags, contextSize, buffer);
}
}
}