PInvokeTableGenerator.cs 12.7 KB
Newer Older
Z
Zoltan Varga 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
// 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.Collections.Immutable;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.Json;
using System.Reflection;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;

public class PInvokeTableGenerator : Task
{
    [Required]
    public ITaskItem[]? Modules { get; set; }
    [Required]
    public ITaskItem[]? Assemblies { get; set; }
    [Required]
    public string? OutputPath { get; set; }

25 26
    private static char[] s_charsToReplace = new[] { '.', '-', };

27 28
    public override bool Execute()
    {
29
        Log.LogMessage(MessageImportance.Normal, $"Generating pinvoke table to '{OutputPath}'.");
30
        GenPInvokeTable(Modules!.Select(item => item.ItemSpec).ToArray(), Assemblies!.Select(item => item.ItemSpec).ToArray());
Z
Zoltan Varga 已提交
31 32 33
        return true;
    }

34
    public void GenPInvokeTable(string[] pinvokeModules, string[] assemblies)
35
    {
36
        var modules = new Dictionary<string, string>();
Z
Zoltan Varga 已提交
37 38 39
        foreach (var module in pinvokeModules)
            modules [module] = module;

40
        var pinvokes = new List<PInvoke>();
41
        var callbacks = new List<PInvokeCallback>();
Z
Zoltan Varga 已提交
42

43 44 45 46 47 48
        var resolver = new PathAssemblyResolver(assemblies);
        var mlc = new MetadataLoadContext(resolver, "System.Private.CoreLib");
        foreach (var aname in assemblies)
        {
            var a = mlc.LoadFromAssemblyPath(aname);
            foreach (var type in a.GetTypes())
49
                CollectPInvokes(pinvokes, callbacks, type);
Z
Zoltan Varga 已提交
50 51
        }

52 53 54
        using (var w = File.CreateText(OutputPath!))
        {
            EmitPInvokeTable(w, modules, pinvokes);
55
            EmitNativeToInterp(w, callbacks);
Z
Zoltan Varga 已提交
56 57 58
        }
    }

59
    private void CollectPInvokes(List<PInvoke> pinvokes, List<PInvokeCallback> callbacks, Type type)
60
    {
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
        foreach (var method in type.GetMethods(BindingFlags.DeclaredOnly|BindingFlags.Public|BindingFlags.NonPublic|BindingFlags.Static|BindingFlags.Instance)) {
            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));
            }

            foreach (CustomAttributeData cattr in CustomAttributeData.GetCustomAttributes(method))
            {
                try
                {
                    if (cattr.AttributeType.FullName == "System.Runtime.InteropServices.UnmanagedCallersOnlyAttribute" ||
                        cattr.AttributeType.Name == "MonoPInvokeCallbackAttribute")
                        callbacks.Add(new PInvokeCallback(method));
                }
                catch
                {
                    // Assembly not found, ignore
                }
            }
Z
Zoltan Varga 已提交
83 84 85
        }
    }

86 87 88 89 90
    private void EmitPInvokeTable(StreamWriter w, Dictionary<string, string> modules, List<PInvoke> pinvokes)
    {
        w.WriteLine("// GENERATED FILE, DO NOT MODIFY");
        w.WriteLine();

91 92
        var decls = new HashSet<string>();
        foreach (var pinvoke in pinvokes.OrderBy(l => l.EntryPoint))
93
        {
94
            if (modules.ContainsKey(pinvoke.Module)) {
95 96 97 98 99
                try
                {
                    var decl = GenPInvokeDecl(pinvoke);
                    if (decls.Contains(decl))
                        continue;
100

101 102 103 104 105 106 107 108 109
                    w.WriteLine(decl);
                    decls.Add(decl);
                }
                catch (NotSupportedException)
                {
                    // See the FIXME in GenPInvokeDecl
                    Log.LogWarning($"Cannot handle function pointer arguments/return value in pinvoke method '{pinvoke.Method}' in type '{pinvoke.Method.DeclaringType}'.");
                    pinvoke.Skip = true;
                }
110
            }
Z
Zoltan Varga 已提交
111 112
        }

113 114
        foreach (var module in modules.Keys)
        {
115
            string symbol = ModuleNameToId(module) + "_imports";
116
            w.WriteLine("static PinvokeImport " + symbol + " [] = {");
117 118

            var assemblies_pinvokes = pinvokes.
119
                Where(l => l.Module == module && !l.Skip).
120 121 122 123 124 125
                OrderBy(l => l.EntryPoint).
                GroupBy(d => d.EntryPoint).
                Select (l => "{\"" + l.Key + "\", " + l.Key + "}, // " + string.Join (", ", l.Select(c => c.Method.DeclaringType!.Module!.Assembly!.GetName ()!.Name!).Distinct()));

            foreach (var pinvoke in assemblies_pinvokes) {
                w.WriteLine (pinvoke);
Z
Zoltan Varga 已提交
126
            }
127

128 129
            w.WriteLine("{NULL, NULL}");
            w.WriteLine("};");
Z
Zoltan Varga 已提交
130
        }
131
        w.Write("static void *pinvoke_tables[] = { ");
132 133
        foreach (var module in modules.Keys)
        {
134
            string symbol = ModuleNameToId(module) + "_imports";
135
            w.Write(symbol + ",");
Z
Zoltan Varga 已提交
136
        }
137
        w.WriteLine("};");
138
        w.Write("static char *pinvoke_names[] = { ");
139 140 141
        foreach (var module in modules.Keys)
        {
            w.Write("\"" + module + "\"" + ",");
Z
Zoltan Varga 已提交
142
        }
143
        w.WriteLine("};");
144 145 146 147 148 149 150 151 152 153 154 155

        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;
        }
Z
Zoltan Varga 已提交
156 157
    }

158 159
    private string MapType (Type t)
    {
Z
Zoltan Varga 已提交
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
        string name = t.Name;
        if (name == "Void")
            return "void";
        else if (name == "Double")
            return "double";
        else if (name == "Single")
            return "float";
        else if (name == "Int64")
            return "int64_t";
        else if (name == "UInt64")
            return "uint64_t";
        else
            return "int";
    }

175 176 177
    private string GenPInvokeDecl(PInvoke pinvoke)
    {
        var sb = new StringBuilder();
Z
Zoltan Varga 已提交
178
        var method = pinvoke.Method;
179 180 181 182 183 184
        if (method.Name == "EnumCalendarInfo") {
            // FIXME: System.Reflection.MetadataLoadContext can't decode function pointer types
            // https://github.com/dotnet/runtime/issues/43791
            sb.Append($"int {pinvoke.EntryPoint} (int, int, int, int, int);");
            return sb.ToString();
        }
185
        sb.Append(MapType(method.ReturnType));
186
        sb.Append($" {pinvoke.EntryPoint} (");
Z
Zoltan Varga 已提交
187
        int pindex = 0;
188
        var pars = method.GetParameters();
Z
Zoltan Varga 已提交
189 190
        foreach (var p in pars) {
            if (pindex > 0)
191
                sb.Append(',');
192
            sb.Append(MapType(pars[pindex].ParameterType));
193
            pindex++;
Z
Zoltan Varga 已提交
194
        }
195 196
        sb.Append(");");
        return sb.ToString();
Z
Zoltan Varga 已提交
197
    }
198

199
    private void EmitNativeToInterp(StreamWriter w, List<PInvokeCallback> callbacks)
200
    {
201 202 203 204 205 206 207 208 209 210 211 212 213 214
        // 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 + "];");

        foreach (var cb in callbacks) {
215 216
            MethodInfo method = cb.Method;
            bool isVoid = method.ReturnType.FullName == "System.Void";
217

218 219
            if (!isVoid && !IsBlittable(method.ReturnType))
                Error($"The return type '{method.ReturnType.FullName}' of pinvoke callback method '{method}' needs to be blittable.");
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
            foreach (var p in method.GetParameters()) {
                if (!IsBlittable(p.ParameterType))
                    Error("Parameter types of pinvoke callback method '" + method + "' needs to be blittable.");
            }
        }

        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 ");
235
            sb.Append($" (*WasmInterpEntrySig_{cb_index}) (");
236 237 238
            int pindex = 0;
            if (method.ReturnType.Name != "Void") {
                sb.Append("int");
239
                pindex++;
240 241 242
            }
            foreach (var p in method.GetParameters()) {
                if (pindex > 0)
243
                    sb.Append(',');
244
                sb.Append("int*");
245
                pindex++;
246 247
            }
            if (pindex > 0)
248
                sb.Append(',');
249
            // Extra arg
250
            sb.Append("int*");
251 252 253 254 255 256 257 258 259 260 261 262 263 264
            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);
265
            cb.EntryName = entry_name;
266 267 268 269 270
            sb.Append(MapType(method.ReturnType));
            sb.Append($" {entry_name} (");
            pindex = 0;
            foreach (var p in method.GetParameters()) {
                if (pindex > 0)
271
                    sb.Append(',');
272
                sb.Append(MapType(method.GetParameters()[pindex].ParameterType));
273
                sb.Append($" arg{pindex}");
274
                pindex++;
275 276 277 278
            }
            sb.Append(") { \n");
            if (!is_void)
                sb.Append(MapType(method.ReturnType) + " res;\n");
279
            sb.Append($"((WasmInterpEntrySig_{cb_index})wasm_native_to_interp_ftndescs [{cb_index}].func) (");
280 281 282
            pindex = 0;
            if (!is_void) {
                sb.Append("&res");
283
                pindex++;
284 285 286 287 288
            }
            int aindex = 0;
            foreach (var p in method.GetParameters()) {
                if (pindex > 0)
                    sb.Append(", ");
289
                sb.Append($"&arg{aindex}");
290 291
                pindex++;
                aindex++;
292 293 294 295 296 297 298
            }
            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");
299
            sb.Append('}');
300
            w.WriteLine(sb);
301
            cb_index++;
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
        }

        // 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 ("};");
    }
324

325
    private static bool IsBlittable (Type type)
326 327 328 329 330 331 332
    {
        if (type.IsPrimitive || type.IsByRef || type.IsPointer)
            return true;
        else
            return false;
    }

333
    private static void Error (string msg)
334 335 336 337
    {
        // FIXME:
        throw new Exception(msg);
    }
Z
Zoltan Varga 已提交
338 339
}

340
internal class PInvoke
Z
Zoltan Varga 已提交
341
{
342 343 344
    public PInvoke(string entryPoint, string module, MethodInfo method)
    {
        EntryPoint = entryPoint;
Z
Zoltan Varga 已提交
345 346 347 348 349 350 351
        Module = module;
        Method = method;
    }

    public string EntryPoint;
    public string Module;
    public MethodInfo Method;
352
    public bool Skip;
Z
Zoltan Varga 已提交
353
}
354

355
internal class PInvokeCallback
356 357 358 359 360 361 362 363 364
{
    public PInvokeCallback(MethodInfo method)
    {
        Method = method;
    }

    public MethodInfo Method;
    public string? EntryName;
}