-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathPInvokeTableGenerator.cs
More file actions
601 lines (523 loc) · 21.3 KB
/
PInvokeTableGenerator.cs
File metadata and controls
601 lines (523 loc) · 21.3 KB
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
// 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.Reflection;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
internal sealed class PInvokeTableGenerator
{
private static readonly char[] s_charsToReplace = new[] { '.', '-', '+' };
private readonly Dictionary<Assembly, bool> _assemblyDisableRuntimeMarshallingAttributeCache = new();
private TaskLoggingHelper Log { get; set; }
public PInvokeTableGenerator(TaskLoggingHelper log) => Log = log;
public IEnumerable<string> Generate(string[] pinvokeModules, string[] assemblies, string outputPath)
{
var modules = new Dictionary<string, string>();
foreach (var module in pinvokeModules)
modules[module] = module;
var signatures = new List<string>();
var pinvokes = new List<PInvoke>();
var callbacks = new List<PInvokeCallback>();
var resolver = new PathAssemblyResolver(assemblies);
using var mlc = new MetadataLoadContext(resolver, "System.Private.CoreLib");
foreach (var aname in assemblies)
{
var a = mlc.LoadFromAssemblyPath(aname);
foreach (var type in a.GetTypes())
CollectPInvokes(pinvokes, callbacks, signatures, type);
}
string tmpFileName = Path.GetTempFileName();
try
{
using (var w = File.CreateText(tmpFileName))
{
EmitPInvokeTable(w, modules, pinvokes);
EmitNativeToInterp(w, ref callbacks);
}
if (Utils.CopyIfDifferent(tmpFileName, outputPath, useHash: false))
Log.LogMessage(MessageImportance.Low, $"Generating pinvoke table to '{outputPath}'.");
else
Log.LogMessage(MessageImportance.Low, $"PInvoke table in {outputPath} is unchanged.");
}
finally
{
File.Delete(tmpFileName);
}
return signatures;
}
private void CollectPInvokes(List<PInvoke> pinvokes, List<PInvokeCallback> callbacks, List<string> signatures, Type type)
{
foreach (var method in type.GetMethods(BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.Instance))
{
try
{
CollectPInvokesForMethod(method);
if (DoesMethodHaveCallbacks(method))
callbacks.Add(new PInvokeCallback(method));
}
catch (Exception ex) when (ex is not LogAsErrorException)
{
Log.LogWarning(null, "WASM0001", "", "", 0, 0, 0, 0,
$"Could not get pinvoke, or callbacks for method '{type.FullName}::{method.Name}' because '{ex.Message}'");
}
}
if (HasAttribute(type, "System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute"))
{
var method = type.GetMethod("Invoke");
if (method != null)
{
string? signature = SignatureMapper.MethodToSignature(method!);
if (signature == null)
throw new NotSupportedException($"Unsupported parameter type in method '{type.FullName}.{method.Name}'");
Log.LogMessage(MessageImportance.Low, $"Adding pinvoke signature {signature} for method '{type.FullName}.{method.Name}'");
signatures.Add(signature);
}
}
void CollectPInvokesForMethod(MethodInfo method)
{
if ((method.Attributes & MethodAttributes.PinvokeImpl) != 0)
{
var dllimport = method.CustomAttributes.First(attr => attr.AttributeType.Name == "DllImportAttribute");
var module = (string)dllimport.ConstructorArguments[0].Value!;
var entrypoint = (string)dllimport.NamedArguments.First(arg => arg.MemberName == "EntryPoint").TypedValue.Value!;
pinvokes.Add(new PInvoke(entrypoint, module, method));
string? signature = SignatureMapper.MethodToSignature(method);
if (signature == null)
{
throw new NotSupportedException($"Unsupported parameter type in method '{type.FullName}.{method.Name}'");
}
Log.LogMessage(MessageImportance.Low, $"Adding pinvoke signature {signature} for method '{type.FullName}.{method.Name}'");
signatures.Add(signature);
}
}
bool DoesMethodHaveCallbacks(MethodInfo method)
{
if (!MethodHasCallbackAttributes(method))
return false;
if (TryIsMethodGetParametersUnsupported(method, out string? reason))
{
Log.LogWarning(null, "WASM0001", "", "", 0, 0, 0, 0,
$"Skipping callback '{method.DeclaringType!.FullName}::{method.Name}' because '{reason}'.");
return false;
}
if (method.DeclaringType != null && HasAssemblyDisableRuntimeMarshallingAttribute(method.DeclaringType.Assembly))
return true;
// No DisableRuntimeMarshalling attribute, so check if the params/ret-type are
// blittable
bool isVoid = method.ReturnType.FullName == "System.Void";
if (!isVoid && !IsBlittable(method.ReturnType))
Error($"The return type '{method.ReturnType.FullName}' of pinvoke callback method '{method}' needs to be blittable.");
foreach (var p in method.GetParameters())
{
if (!IsBlittable(p.ParameterType))
Error("Parameter types of pinvoke callback method '" + method + "' needs to be blittable.");
}
return true;
}
static bool MethodHasCallbackAttributes(MethodInfo method)
{
foreach (CustomAttributeData cattr in CustomAttributeData.GetCustomAttributes(method))
{
try
{
if (cattr.AttributeType.FullName == "System.Runtime.InteropServices.UnmanagedCallersOnlyAttribute" ||
cattr.AttributeType.Name == "MonoPInvokeCallbackAttribute")
{
return true;
}
}
catch
{
// Assembly not found, ignore
}
}
return false;
}
}
private 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 void EmitPInvokeTable(StreamWriter w, Dictionary<string, string> modules, List<PInvoke> pinvokes)
{
w.WriteLine("// GENERATED FILE, DO NOT MODIFY");
w.WriteLine();
var pinvokesGroupedByEntryPoint = pinvokes
.Where(l => modules.ContainsKey(l.Module))
.OrderBy(l => l.EntryPoint)
.GroupBy(l => l.EntryPoint);
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.LogWarning($"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 == null || decls.Contains(decl))
continue;
w.WriteLine(decl);
decls.Add(decl);
}
}
foreach (var module in modules.Keys)
{
string symbol = ModuleNameToId(module) + "_imports";
w.WriteLine("static PinvokeImport " + symbol + " [] = {");
var assemblies_pinvokes = pinvokes.
Where(l => l.Module == module && !l.Skip).
OrderBy(l => l.EntryPoint).
GroupBy(d => d.EntryPoint).
Select(l => "{\"" + FixupSymbolName(l.Key) + "\", " + FixupSymbolName(l.Key) + "}, " +
"// " + string.Join(", ", l.Select(c => c.Method.DeclaringType!.Module!.Assembly!.GetName()!.Name!).Distinct().OrderBy(n => n)));
foreach (var pinvoke in assemblies_pinvokes)
{
w.WriteLine(pinvoke);
}
w.WriteLine("{NULL, NULL}");
w.WriteLine("};");
}
w.Write("static void *pinvoke_tables[] = { ");
foreach (var module in modules.Keys)
{
string symbol = ModuleNameToId(module) + "_imports";
w.Write(symbol + ",");
}
w.WriteLine("};");
w.Write("static char *pinvoke_names[] = { ");
foreach (var module in modules.Keys)
{
w.Write("\"" + module + "\"" + ",");
}
w.WriteLine("};");
static string ModuleNameToId(string name)
{
if (name.IndexOfAny(s_charsToReplace) < 0)
return name;
string fixedName = name;
foreach (char c in s_charsToReplace)
fixedName = fixedName.Replace(c, '_');
return fixedName;
}
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 static string FixupSymbolName(string name)
{
UTF8Encoding utf8 = new();
byte[] bytes = utf8.GetBytes(name);
StringBuilder sb = new();
foreach (byte b in bytes)
{
if ((b >= (byte)'0' && b <= (byte)'9') ||
(b >= (byte)'a' && b <= (byte)'z') ||
(b >= (byte)'A' && b <= (byte)'Z') ||
(b == (byte)'_'))
{
sb.Append((char)b);
}
else if (s_charsToReplace.Contains((char)b))
{
sb.Append('_');
}
else
{
sb.Append($"_{b:X}_");
}
}
return sb.ToString();
}
private static string SymbolNameForMethod(MethodInfo method)
{
StringBuilder sb = new();
Type? type = method.DeclaringType;
sb.Append($"{type!.Module!.Assembly!.GetName()!.Name!}_");
sb.Append($"{(type!.IsNested ? type!.FullName : type!.Name)}_");
sb.Append(method.Name);
return FixupSymbolName(sb.ToString());
}
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",
_ => "int"
};
// FIXME: System.Reflection.MetadataLoadContext can't decode function pointer types
// https://github.com/dotnet/runtime/issues/43791
private 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 sb = new StringBuilder();
var method = pinvoke.Method;
if (method.Name == "EnumCalendarInfo")
{
// FIXME: System.Reflection.MetadataLoadContext can't decode function pointer types
// https://github.com/dotnet/runtime/issues/43791
sb.Append($"int {FixupSymbolName(pinvoke.EntryPoint)} (int, int, int, int, int);");
return sb.ToString();
}
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.LogWarning(null, "WASM0001", "", "", 0, 0, 0, 0,
$"Skipping pinvoke '{pinvoke.Method.DeclaringType!.FullName}::{pinvoke.Method.Name}' because '{reason}'.");
pinvoke.Skip = true;
return null;
}
sb.Append(MapType(method.ReturnType));
sb.Append($" {FixupSymbolName(pinvoke.EntryPoint)} (");
int pindex = 0;
var pars = method.GetParameters();
foreach (var p in pars)
{
if (pindex > 0)
sb.Append(',');
sb.Append(MapType(pars[pindex].ParameterType));
pindex++;
}
sb.Append(");");
return sb.ToString();
}
private static void EmitNativeToInterp(StreamWriter w, ref 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]
// attribute.
// Only blittable parameter/return types are supposed.
int cb_index = 0;
// Arguments to interp entry functions in the runtime
w.WriteLine("InterpFtnDesc wasm_native_to_interp_ftndescs[" + callbacks.Count + "];");
var callbackNames = new HashSet<string>();
foreach (var cb in callbacks)
{
var sb = new StringBuilder();
var method = cb.Method;
// The signature of the interp entry function
// This is a gsharedvt_in signature
sb.Append("typedef void ");
sb.Append($" (*WasmInterpEntrySig_{cb_index}) (");
int pindex = 0;
if (method.ReturnType.Name != "Void")
{
sb.Append("int*");
pindex++;
}
foreach (var p in method.GetParameters())
{
if (pindex > 0)
sb.Append(',');
sb.Append("int*");
pindex++;
}
if (pindex > 0)
sb.Append(',');
// Extra arg
sb.Append("int*");
sb.Append(");\n");
bool is_void = method.ReturnType.Name == "Void";
string module_symbol = method.DeclaringType!.Module!.Assembly!.GetName()!.Name!.Replace(".", "_");
uint token = (uint)method.MetadataToken;
string class_name = method.DeclaringType.Name;
string method_name = method.Name;
string entry_name = $"wasm_native_to_interp_{module_symbol}_{class_name}_{method_name}";
if (callbackNames.Contains(entry_name))
{
Error($"Two callbacks with the same name '{method_name}' are not supported.");
}
callbackNames.Add(entry_name);
cb.EntryName = entry_name;
sb.Append(MapType(method.ReturnType));
sb.Append($" {entry_name} (");
pindex = 0;
foreach (var p in method.GetParameters())
{
if (pindex > 0)
sb.Append(',');
sb.Append(MapType(method.GetParameters()[pindex].ParameterType));
sb.Append($" arg{pindex}");
pindex++;
}
sb.Append(") { \n");
if (!is_void)
sb.Append(MapType(method.ReturnType) + " res;\n");
sb.Append($"((WasmInterpEntrySig_{cb_index})wasm_native_to_interp_ftndescs [{cb_index}].func) (");
pindex = 0;
if (!is_void)
{
sb.Append("&res");
pindex++;
}
int aindex = 0;
foreach (var p in method.GetParameters())
{
if (pindex > 0)
sb.Append(", ");
sb.Append($"&arg{aindex}");
pindex++;
aindex++;
}
if (pindex > 0)
sb.Append(", ");
sb.Append($"wasm_native_to_interp_ftndescs [{cb_index}].arg");
sb.Append(");\n");
if (!is_void)
sb.Append("return res;\n");
sb.Append('}');
w.WriteLine(sb);
cb_index++;
}
// Array of function pointers
w.Write("static void *wasm_native_to_interp_funcs[] = { ");
foreach (var cb in callbacks)
{
w.Write(cb.EntryName + ",");
}
w.WriteLine("};");
// Lookup table from method->interp entry
// The key is a string of the form <assembly name>_<method token>
// FIXME: Use a better encoding
w.Write("static const char *wasm_native_to_interp_map[] = { ");
foreach (var cb in callbacks)
{
var method = cb.Method;
string module_symbol = method.DeclaringType!.Module!.Assembly!.GetName()!.Name!.Replace(".", "_");
string class_name = method.DeclaringType.Name;
string method_name = method.Name;
w.WriteLine($"\"{module_symbol}_{class_name}_{method_name}\",");
}
w.WriteLine("};");
}
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 bool IsBlittable(Type type)
{
if (type.IsPrimitive || type.IsByRef || type.IsPointer || type.IsEnum)
return true;
else
return false;
}
private static void Error(string msg) => throw new LogAsErrorException(msg);
}
#pragma warning disable CA1067
internal sealed class PInvoke : IEquatable<PInvoke>
#pragma warning restore CA1067
{
public PInvoke(string entryPoint, string module, MethodInfo method)
{
EntryPoint = entryPoint;
Module = module;
Method = method;
}
public string EntryPoint;
public string Module;
public MethodInfo Method;
public bool Skip;
public bool Equals(PInvoke? other)
=> other != null &&
string.Equals(EntryPoint, other.EntryPoint, StringComparison.Ordinal) &&
string.Equals(Module, other.Module, StringComparison.Ordinal) &&
string.Equals(Method.ToString(), other.Method.ToString(), StringComparison.Ordinal);
public override string ToString() => $"{{ EntryPoint: {EntryPoint}, Module: {Module}, Method: {Method}, Skip: {Skip} }}";
}
internal sealed class PInvokeComparer : IEqualityComparer<PInvoke>
{
public bool Equals(PInvoke? x, PInvoke? y)
{
if (x == null && y == null)
return true;
if (x == null || y == null)
return false;
return x.Equals(y);
}
public int GetHashCode(PInvoke pinvoke)
=> $"{pinvoke.EntryPoint}{pinvoke.Module}{pinvoke.Method}".GetHashCode();
}
internal sealed class PInvokeCallback
{
public PInvokeCallback(MethodInfo method)
{
Method = method;
}
public MethodInfo Method;
public string? EntryName;
}