-
Notifications
You must be signed in to change notification settings - Fork 5k
/
Copy pathPInvokeTableGenerator.cs
512 lines (436 loc) · 19.8 KB
/
PInvokeTableGenerator.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
// 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.CodeAnalysis;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Reflection;
using System.Runtime.InteropServices;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
using WasmAppBuilder;
using JoinedString;
internal sealed class PInvokeTableGenerator
{
private readonly Dictionary<Assembly, bool> _assemblyDisableRuntimeMarshallingAttributeCache = new();
private LogAdapter Log { get; set; }
private readonly Func<string, string> _fixupSymbolName;
private readonly HashSet<string> signatures = new();
private readonly List<PInvoke> pinvokes = new();
private readonly List<PInvokeCallback> callbacks = new();
private readonly PInvokeCollector _pinvokeCollector;
private readonly bool _isLibraryMode;
public PInvokeTableGenerator(Func<string, string> fixupSymbolName, LogAdapter log, bool isLibraryMode = false)
{
Log = log;
_fixupSymbolName = fixupSymbolName;
_pinvokeCollector = new(log);
_isLibraryMode = isLibraryMode;
}
public void ScanAssembly(Assembly asm)
{
foreach (Type type in asm.GetTypes())
_pinvokeCollector.CollectPInvokes(pinvokes, callbacks, signatures, type);
}
public IEnumerable<string> Generate(string[] pinvokeModules, string outputPath)
{
var modules = new SortedDictionary<string, string>(StringComparer.Ordinal);
foreach (var module in pinvokeModules)
modules[module] = module;
using TempFileName tmpFileName = new();
using (var w = new JoinedStringStreamWriter(tmpFileName.Path, false))
{
EmitPInvokeTable(w, modules, pinvokes);
EmitNativeToInterp(w, callbacks);
}
if (Utils.CopyIfDifferent(tmpFileName.Path, outputPath, useHash: false))
Log.LogMessage(MessageImportance.Low, $"Generating pinvoke table to '{outputPath}'.");
else
Log.LogMessage(MessageImportance.Low, $"PInvoke table in {outputPath} is unchanged.");
return signatures;
}
private void EmitPInvokeTable(StreamWriter w, SortedDictionary<string, string> modules, List<PInvoke> pinvokes)
{
foreach (var pinvoke in pinvokes)
{
if (modules.ContainsKey(pinvoke.Module))
continue;
// Handle special modules, and add them to the list of modules
// otherwise, skip them and throw an exception at runtime if they
// are called.
if (pinvoke.WasmLinkage)
{
// WasmLinkage means we needs to import the module
modules.Add(pinvoke.Module, pinvoke.Module);
Log.LogMessage(MessageImportance.Low, $"Adding module {pinvoke.Module} for WasmImportLinkage");
}
else if (pinvoke.Module == "*" || pinvoke.Module == "__Internal")
{
// Special case for __Internal and * modules to indicate static linking wihtout specifying the module
modules.Add(pinvoke.Module, pinvoke.Module);
Log.LogMessage(MessageImportance.Low, $"Adding module {pinvoke.Module} for static linking");
}
}
w.WriteLine(
$"""
// GENERATED FILE, DO NOT MODIFY (PInvokeTableGenerator.cs)
#include <mono/utils/details/mono-error-types.h>
#include <mono/metadata/assembly.h>
#include <mono/utils/mono-error.h>
#include <mono/metadata/object.h>
#include <mono/utils/details/mono-logger-types.h>
#include "runtime.h"
#include "pinvoke.h"
""");
var pinvokesGroupedByEntryPoint = pinvokes
.Where(l => modules.ContainsKey(l.Module))
.OrderBy(l => l.EntryPoint, StringComparer.Ordinal)
.GroupBy(CEntryPoint, StringComparer.Ordinal);
var comparer = new PInvokeComparer();
foreach (IGrouping<string, PInvoke> group in pinvokesGroupedByEntryPoint)
{
var candidates = group.Distinct(comparer).ToArray();
PInvoke first = candidates[0];
if (ShouldTreatAsVariadic(candidates))
{
string imports = string.Join(Environment.NewLine,
candidates.Select(
p => $" {p.Method} (in [{p.Method.DeclaringType?.Assembly.GetName().Name}] {p.Method.DeclaringType})"));
Log.Warning("WASM0001", $"Found a native function ({first.EntryPoint}) with varargs in {first.Module}." +
" Calling such functions is not supported, and will fail at runtime." +
$" Managed DllImports: {Environment.NewLine}{imports}");
foreach (var c in candidates)
c.Skip = true;
continue;
}
var decls = new HashSet<string>();
foreach (var candidate in candidates)
{
var decl = GenPInvokeDecl(candidate);
if (decl is null || decls.Contains(decl))
continue;
w.WriteLine(decl);
decls.Add(decl);
}
}
var moduleImports = new Dictionary<string, List<string>>();
foreach (var module in modules.Keys)
{
static string ListRefs(IGrouping<string, PInvoke> l) =>
string.Join(", ", l.Select(c => c.Method.DeclaringType!.Module!.Assembly!.GetName()!.Name!).Distinct().OrderBy(n => n));
var imports = pinvokes
.Where(l => l.Module == module && !l.Skip)
.OrderBy(l => l.EntryPoint, StringComparer.Ordinal)
.GroupBy(d => d.EntryPoint, StringComparer.Ordinal)
.Select(l => $"{{\"{EscapeLiteral(l.Key)}\", {CEntryPoint(l.First())}}}, // {ListRefs(l)}{w.NewLine} ")
.ToList();
moduleImports[module] = imports;
w.Write(
$$"""
static PinvokeImport {{_fixupSymbolName(module)}}_imports [] = {
{{string.Join("", imports)}}{NULL, NULL}
};
""");
}
w.Write(
$$"""
static PinvokeTable pinvoke_tables[] = {
{{modules.Keys.Join($",{w.NewLine} ", m => $"{{\"{EscapeLiteral(m)}\", {_fixupSymbolName(m)}_imports, {moduleImports[m].Count}}}")}}
};
""");
static bool ShouldTreatAsVariadic(PInvoke[] candidates)
{
if (candidates.Length < 2)
return false;
PInvoke first = candidates[0];
if (TryIsMethodGetParametersUnsupported(first.Method, out _))
return false;
int firstNumArgs = first.Method.GetParameters().Length;
return candidates
.Skip(1)
.Any(c => !TryIsMethodGetParametersUnsupported(c.Method, out _) &&
c.Method.GetParameters().Length != firstNumArgs);
}
}
private string CEntryPoint(PInvoke pinvoke)
{
if (pinvoke.WasmLinkage)
{
// We mangle the name to avoid collisions with symbols in other modules
string namespaceName = pinvoke.Method.DeclaringType?.Namespace ?? string.Empty;
return _fixupSymbolName($"{namespaceName}#{pinvoke.Module}#{pinvoke.EntryPoint}");
}
return _fixupSymbolName(pinvoke.EntryPoint);
}
private static string MapType(Type t) => t.Name switch
{
"Void" => "void",
nameof(Double) => "double",
nameof(Single) => "float",
nameof(Int64) => "int64_t",
nameof(UInt64) => "uint64_t",
nameof(Int32) => "int32_t",
nameof(UInt32) => "uint32_t",
nameof(Int16) => "int32_t",
nameof(UInt16) => "uint32_t",
nameof(Char) => "int32_t",
nameof(Boolean) => "int32_t",
nameof(SByte) => "int32_t",
nameof(Byte) => "uint32_t",
nameof(IntPtr) => "void *",
nameof(UIntPtr) => "void *",
_ => PickCTypeNameForUnknownType(t)
};
private static string PickCTypeNameForUnknownType(Type t)
{
// Pass objects by-reference (their address by-value)
if (!t.IsValueType)
return "void *";
// Pass pointers and function pointers by-value
else if (t.IsPointer || IsFunctionPointer(t))
return "void *";
else if (t.IsPrimitive)
throw new NotImplementedException("No native type mapping for type " + t);
// https://github.com/WebAssembly/tool-conventions/blob/main/BasicCABI.md#function-signatures
// Any struct or union that recursively (including through nested structs, unions, and arrays)
// contains just a single scalar value and is not specified to have greater than natural alignment.
// FIXME: Handle the scenario where there are fields of struct types that contain no members
var fields = t.GetFields(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);
if (fields.Length == 1)
return MapType(fields[0].FieldType);
else
return "void *";
}
// FIXME: System.Reflection.MetadataLoadContext can't decode function pointer types
// https://github.com/dotnet/runtime/issues/43791
public static bool TryIsMethodGetParametersUnsupported(MethodInfo method, [NotNullWhen(true)] out string? reason)
{
try
{
method.GetParameters();
}
catch (NotSupportedException nse)
{
reason = nse.Message;
return true;
}
catch
{
// not concerned with other exceptions
}
reason = null;
return false;
}
private string? GenPInvokeDecl(PInvoke pinvoke)
{
var method = pinvoke.Method;
if (TryIsMethodGetParametersUnsupported(pinvoke.Method, out string? reason))
{
// Don't use method.ToString() or any of it's parameters, or return type
// because at least one of those are unsupported, and will throw
Log.Warning("WASM0001", $"Skipping pinvoke '{pinvoke.Method.DeclaringType!.FullName}.{pinvoke.Method.Name}' because '{reason}'.");
pinvoke.Skip = true;
return null;
}
var realReturnType = method.ReturnType;
var realParameterTypes = method.GetParameters().Select(p => MapType(p.ParameterType)).ToList();
SignatureMapper.TypeToChar(realReturnType, Log, out bool resultIsByRef);
if (resultIsByRef) {
realReturnType = typeof(void);
realParameterTypes.Insert(0, "void *");
}
return
$$"""
{{(pinvoke.WasmLinkage ? $"__attribute__((import_module(\"{EscapeLiteral(pinvoke.Module)}\"),import_name(\"{EscapeLiteral(pinvoke.EntryPoint)}\")))" : "")}}
{{(pinvoke.WasmLinkage ? "extern " : "")}}{{MapType(realReturnType)}} {{CEntryPoint(pinvoke)}} ({{string.Join(", ", realParameterTypes)}});
""";
}
private static string? EscapeLiteral(string? input)
{
if (input == null)
return null;
StringBuilder sb = new StringBuilder();
for (int i = 0; i < input.Length; i++)
{
char c = input[i];
sb.Append(c switch
{
'\\' => "\\\\",
'\"' => "\\\"",
'\n' => "\\n",
'\r' => "\\r",
'\t' => "\\t",
// take special care with surrogate pairs to avoid
// potential decoding issues in generated C literals
_ when char.IsHighSurrogate(c) && i + 1 < input.Length && char.IsLowSurrogate(input[i + 1])
=> $"\\U{char.ConvertToUtf32(c, input[++i]):X8}",
_ when char.IsControl(c) || c > 127
=> $"\\u{(int)c:X4}",
_ => c.ToString()
});
}
return sb.ToString();
}
private void EmitNativeToInterp(StreamWriter w, List<PInvokeCallback> callbacks)
{
// Generate native->interp entry functions
// These are called by native code, so they need to obtain
// the interp entry function/arg from a global array
// They also need to have a signature matching what the
// native code expects, which is the native signature
// of the delegate invoke in the [MonoPInvokeCallback]
// or [UnmanagedCallersOnly] attribute.
// Only blittable parameter/return types are supposed.
w.Write(
$$"""
InterpFtnDesc wasm_native_to_interp_ftndescs[{{callbacks.Count}}] = {};
""");
var callbackNames = new HashSet<string>();
var keys = new HashSet<string>();
int cb_index = 0;
callbacks = callbacks.OrderBy(c => c, new PInvokeCallbackComparer()).ToList();
foreach (var cb in callbacks)
{
cb.EntrySymbol = _fixupSymbolName(cb.IsExport ? cb.EntryPoint! : $"wasm_native_to_interp_{cb.AssemblyName}_{cb.Namespace}_{cb.TypeName}_{cb.MethodName}");
if (callbackNames.Contains(cb.EntrySymbol))
{
Error($"Two callbacks with the same symbol '{cb.EntrySymbol}' are not supported.");
}
callbackNames.Add(cb.EntrySymbol);
if (keys.Contains(cb.Key))
{
Error($"Two callbacks with the same Name and number of arguments '{cb.Key}' are not supported.");
}
keys.Add(cb.Key);
// The signature of the interp entry function
// This is a gsharedvt_in signature
var entryArgs = new List<string>();
if (!cb.IsVoid)
{
entryArgs.Add("(int*)&result");
}
entryArgs.AddRange(cb.Parameters.Select((_, i) => $"(int*)&arg{i}"));
entryArgs.Add($"(int*)wasm_native_to_interp_ftndescs [{cb_index}].arg");
w.Write(
$$"""
{{(cb.IsExport ?
$"__attribute__((export_name(\"{EscapeLiteral(cb.EntryPoint!)}\"))){w.NewLine}" : "")}}{{
MapType(cb.ReturnType)}}
{{cb.EntrySymbol}} ({{cb.Parameters.Join(", ", (info, i) => $"{MapType(info.ParameterType)} arg{i}")}}) {
typedef void (*InterpEntry_T{{cb_index}}) ({{entryArgs.Join(", ", _ => "int*")}});{{
(!cb.IsVoid ? $"{w.NewLine} {MapType(cb.ReturnType)} result;" : "")}}
if (!(InterpEntry_T{{cb_index}})wasm_native_to_interp_ftndescs [{{cb_index}}].func) {{{
(cb.IsExport && _isLibraryMode ? $"initialize_runtime();{w.NewLine}" : "")}}
mono_wasm_marshal_get_managed_wrapper ("{{EscapeLiteral(cb.AssemblyName)}}", "{{EscapeLiteral(cb.Namespace)}}", "{{EscapeLiteral(cb.TypeName)}}", "{{EscapeLiteral(cb.MethodName)}}", {{cb.Token}}, {{cb.Parameters.Length}});
}
((InterpEntry_T{{cb_index}})wasm_native_to_interp_ftndescs [{{cb_index}}].func) ({{entryArgs.Join(", ")}});{{
(!cb.IsVoid ? $"{w.NewLine} return result;" : "")}}
}
""");
cb_index++;
}
w.Write(
$$"""
static UnmanagedExport wasm_native_to_interp_table[] = {
{{callbacks.Join($",{w.NewLine}", cb =>
$" {{\"{EscapeLiteral(cb.Key)}\", {cb.Token}, {cb.EntrySymbol}}}"
)}}
};
""");
}
private bool HasAssemblyDisableRuntimeMarshallingAttribute(Assembly assembly)
{
if (!_assemblyDisableRuntimeMarshallingAttributeCache.TryGetValue(assembly, out var value))
{
_assemblyDisableRuntimeMarshallingAttributeCache[assembly] = value = assembly
.GetCustomAttributesData()
.Any(d => d.AttributeType.Name == "DisableRuntimeMarshallingAttribute");
}
return value;
}
private static readonly Dictionary<Type, bool> _blittableCache = new();
public static bool IsFunctionPointer(Type type)
{
object? bIsFunctionPointer = type.GetType().GetProperty("IsFunctionPointer")?.GetValue(type);
return (bIsFunctionPointer is bool b) && b;
}
public static bool IsBlittable(Type type, LogAdapter log)
{
// We maintain a cache of results in order to only produce log messages the first time
// we analyze a given type. Otherwise, each (successful) use of a user-defined type
// in a callback or pinvoke would generate duplicate messages.
lock (_blittableCache)
if (_blittableCache.TryGetValue(type, out bool blittable))
return blittable;
bool result = IsBlittableUncached(type, log);
lock (_blittableCache)
_blittableCache[type] = result;
return result;
static bool IsBlittableUncached(Type type, LogAdapter log)
{
if (type.IsPrimitive || type.IsByRef || type.IsPointer || type.IsEnum)
return true;
if (IsFunctionPointer(type))
return true;
// HACK: SkiaSharp has pinvokes that rely on this
if (HasAttribute(type, "System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute"))
return true;
if (type.Name == "__NonBlittableTypeForAutomatedTests__")
return false;
if (!type.IsValueType)
{
log.InfoHigh("WASM0060", "Type {0} is not blittable: Not a ValueType", type);
return false;
}
var fields = type.GetFields(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);
if (!type.IsLayoutSequential && (fields.Length > 1))
{
log.InfoHigh("WASM0061", "Type {0} is not blittable: LayoutKind is not Sequential", type);
return false;
}
foreach (var ft in fields)
{
if (!IsBlittable(ft.FieldType, log))
{
log.InfoHigh("WASM0062", "Type {0} is not blittable: Field {1} is not blittable", type, ft.Name);
return false;
}
// HACK: Skip literals since they're complicated
// Ideally we would block initonly fields too since the callee could mutate them, but
// we rely on being able to pass types like System.Guid which are readonly
if (ft.IsLiteral)
{
log.InfoHigh("WASM0063", "Type {0} is not blittable: Field {1} is literal", type, ft.Name);
return false;
}
}
return true;
}
}
public static bool HasAttribute(MemberInfo element, params string[] attributeNames)
{
foreach (CustomAttributeData cattr in CustomAttributeData.GetCustomAttributes(element))
{
try
{
for (int i = 0; i < attributeNames.Length; ++i)
{
if (cattr.AttributeType.FullName == attributeNames[i] ||
cattr.AttributeType.Name == attributeNames[i])
{
return true;
}
}
}
catch
{
// Assembly not found, ignore
}
}
return false;
}
private static void Error(string msg) => throw new LogAsErrorException(msg);
}