-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathMetadataReader.cs
421 lines (367 loc) · 13.9 KB
/
MetadataReader.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
// 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.Specialized;
#if RUNTIME_TYPE_NETCORE
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using System.Reflection.Metadata;
using System.Reflection.PortableExecutable;
#else
using System.Diagnostics.CodeAnalysis;
using System.Runtime.InteropServices;
#endif
#nullable disable
namespace Microsoft.Build.Tasks.Deployment.ManifestUtilities
{
#if RUNTIME_TYPE_NETCORE
internal class MetadataReader : IDisposable
{
private StringDictionary _attributes;
private List<string> _customAttributes;
private FileStream _assemblyStream;
private PEReader _peReader;
private System.Reflection.Metadata.MetadataReader _reader;
private MetadataReader(string path)
{
try
{
_assemblyStream = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Delete | FileShare.Read);
if (_assemblyStream != null)
{
_peReader = new PEReader(_assemblyStream, PEStreamOptions.LeaveOpen);
if (_peReader != null)
{
if (_peReader.HasMetadata)
{
_reader = _peReader.GetMetadataReader();
}
}
}
}
catch (Exception)
{
Close();
}
}
public static MetadataReader Create(string path)
{
var r = new MetadataReader(path);
return r._reader != null ? r : null;
}
public bool HasAssemblyAttribute(string name)
{
if (_customAttributes == null)
{
lock (this)
{
if (_customAttributes == null)
{
ImportCustomAttributesNames();
}
}
}
return _customAttributes.Contains(name);
}
public string Name => Attributes[nameof(Name)];
public string Version => Attributes[nameof(Version)];
public string PublicKeyToken => Attributes[nameof(PublicKeyToken)];
public string Culture => Attributes[nameof(Culture)];
public string ProcessorArchitecture => Attributes[nameof(ProcessorArchitecture)];
private void ImportCustomAttributesNames()
{
_customAttributes = new List<string>();
AssemblyDefinition def = _reader.GetAssemblyDefinition();
CustomAttributeHandleCollection col = def.GetCustomAttributes();
foreach (CustomAttributeHandle handle in col)
{
EntityHandle ctorHandle = _reader.GetCustomAttribute(handle).Constructor;
if (ctorHandle.Kind != HandleKind.MemberReference)
{
continue;
}
EntityHandle mHandle = _reader.GetMemberReference((MemberReferenceHandle)ctorHandle).Parent;
if (mHandle.Kind != HandleKind.TypeReference)
{
continue;
}
string type = GetTypeName((TypeReferenceHandle)mHandle);
_customAttributes.Add(type);
}
}
private StringDictionary Attributes
{
get
{
if (_attributes == null)
{
lock (this)
{
if (_attributes == null)
{
ImportAttributes();
}
}
}
return _attributes;
}
}
private string GetTypeName(TypeReferenceHandle handle)
{
TypeReference reference = _reader.GetTypeReference(handle);
// We don't need the type reference scope.
return reference.Namespace.IsNil
? _reader.GetString(reference.Name)
: _reader.GetString(reference.Namespace) + "." + _reader.GetString(reference.Name);
}
private void ImportAttributes()
{
AssemblyDefinition ad = _reader.GetAssemblyDefinition();
string name = _reader.GetString(ad.Name);
string version = ad.Version.ToString();
string publicKeyToken = GetPublicKeyToken();
string culture = _reader.GetString(ad.Culture);
if (String.IsNullOrEmpty(culture))
{
culture = "neutral";
}
string processorArchitecture = GetProcessorArchitecture();
_attributes = new StringDictionary
{
{ "Name", name },
{ "Version", version },
{ "PublicKeyToken", publicKeyToken },
{ "Culture", culture },
{ "ProcessorArchitecture", processorArchitecture }
};
}
private string GetPublicKeyToken()
{
string publicKeyToken = null;
AssemblyDefinition ad = _reader.GetAssemblyDefinition();
BlobReader br = _reader.GetBlobReader(ad.PublicKey);
byte[] pk = br.ReadBytes(br.Length);
if (pk.Length != 0)
{
AssemblyName an = new AssemblyName();
an.SetPublicKey(pk);
byte[] pkt = an.GetPublicKeyToken();
publicKeyToken =
#if NET
Convert.ToHexString(pkt);
#else
BitConverter.ToString(pkt).Replace("-", "");
#endif
}
if (!String.IsNullOrEmpty(publicKeyToken))
{
publicKeyToken = publicKeyToken.ToUpperInvariant();
}
return publicKeyToken;
}
private string GetProcessorArchitecture()
{
string processorArchitecture = "unknown";
if (_peReader.PEHeaders == null ||
_peReader.PEHeaders.CoffHeader == null)
{
return processorArchitecture;
}
Machine machine = _peReader.PEHeaders.CoffHeader.Machine;
CorHeader corHeader = _peReader.PEHeaders.CorHeader;
if (corHeader != null)
{
CorFlags corFlags = corHeader.Flags;
if ((corFlags & CorFlags.ILLibrary) != 0)
{
processorArchitecture = "msil";
}
else
{
switch (machine)
{
case Machine.I386:
// "x86" only if corflags "requires" but not "prefers" x86
if ((corFlags & CorFlags.Requires32Bit) != 0 &&
(corFlags & CorFlags.Prefers32Bit) == 0)
{
processorArchitecture = "x86";
}
else
{
processorArchitecture = "msil";
}
break;
case Machine.IA64:
processorArchitecture = "ia64";
break;
case Machine.Amd64:
processorArchitecture = "amd64";
break;
case Machine.Arm:
processorArchitecture = "arm";
break;
case Machine.Arm64:
processorArchitecture = "arm64";
break;
default:
break;
}
}
}
return processorArchitecture;
}
public void Close()
{
if (_peReader != null)
{
_peReader.Dispose();
}
if (_assemblyStream != null)
{
_assemblyStream.Close();
}
_attributes = null;
_reader = null;
_peReader = null;
_assemblyStream = null;
}
void IDisposable.Dispose()
{
Close();
}
}
#else
internal class MetadataReader : IDisposable
{
private readonly string _path;
private StringDictionary _attributes;
private IMetaDataDispenser _metaDispenser;
private IMetaDataAssemblyImport _assemblyImport;
private static Guid s_importerGuid = GetGuidOfType(typeof(IMetaDataImport));
private static Guid s_refidGuid = GetGuidOfType(typeof(IReferenceIdentity));
private MetadataReader(string path)
{
_path = path;
// Create the metadata dispenser and open scope on the source file.
_metaDispenser = (IMetaDataDispenser)new CorMetaDataDispenser();
int hr = _metaDispenser.OpenScope(path, 0, ref s_importerGuid, out object obj);
if (hr == 0)
{
_assemblyImport = (IMetaDataAssemblyImport)obj;
}
}
public static MetadataReader Create(string path)
{
var r = new MetadataReader(path);
return r._assemblyImport != null ? r : null;
}
[SuppressMessage("Microsoft.Usage", "CA1806:DoNotIgnoreMethodResults", MessageId = "Microsoft.Build.Tasks.IMetaDataImport2.GetCustomAttributeByName(System.UInt32,System.String,System.IntPtr@,System.UInt32@)", Justification = "We verify the valueLen, we don't care what the return value is in this case")]
public bool HasAssemblyAttribute(string name)
{
_assemblyImport.GetAssemblyFromScope(out uint assemblyScope);
IMetaDataImport2 import2 = (IMetaDataImport2)_assemblyImport;
IntPtr valuePtr;
import2.GetCustomAttributeByName(assemblyScope, name, out valuePtr, out uint valueLen);
return valueLen != 0;
}
public string Name => Attributes[nameof(Name)];
public string Version => Attributes[nameof(Version)];
public string PublicKeyToken => Attributes[nameof(PublicKeyToken)];
public string Culture => Attributes[nameof(Culture)];
public string ProcessorArchitecture => Attributes[nameof(ProcessorArchitecture)];
private StringDictionary Attributes
{
get
{
if (_attributes == null)
{
lock (this)
{
if (_attributes == null)
{
ImportAttributes();
}
}
}
return _attributes;
}
}
public void Close()
{
if (_assemblyImport != null)
{
Marshal.ReleaseComObject(_assemblyImport);
}
if (_metaDispenser != null)
{
Marshal.ReleaseComObject(_metaDispenser);
}
_attributes = null;
_metaDispenser = null;
_assemblyImport = null;
}
private void ImportAttributes()
{
IReferenceIdentity refid = (IReferenceIdentity)NativeMethods.GetAssemblyIdentityFromFile(_path, ref s_refidGuid);
string name = refid.GetAttribute(null, "name");
string version = refid.GetAttribute(null, "version");
string publicKeyToken = refid.GetAttribute(null, "publicKeyToken");
if (String.Equals(publicKeyToken, "neutral", StringComparison.OrdinalIgnoreCase))
{
publicKeyToken = String.Empty;
}
else if (!String.IsNullOrEmpty(publicKeyToken))
{
publicKeyToken = publicKeyToken.ToUpperInvariant();
}
string culture = refid.GetAttribute(null, "culture");
string processorArchitecture = refid.GetAttribute(null, "processorArchitecture");
if (!String.IsNullOrEmpty(processorArchitecture))
{
processorArchitecture = processorArchitecture.ToLowerInvariant();
}
_attributes = new StringDictionary
{
{ "Name", name },
{ "Version", version },
{ "PublicKeyToken", publicKeyToken },
{ "Culture", culture },
{ "ProcessorArchitecture", processorArchitecture }
};
}
void IDisposable.Dispose()
{
Close();
}
private static Guid GetGuidOfType(Type type)
{
var guidAttr = (GuidAttribute)Attribute.GetCustomAttribute(type, typeof(GuidAttribute), false);
return new Guid(guidAttr.Value);
}
[ComImport]
[Guid("6eaf5ace-7917-4f3c-b129-e046a9704766")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
private interface IReferenceIdentity
{
[return: MarshalAs(UnmanagedType.LPWStr)]
string GetAttribute([In, MarshalAs(UnmanagedType.LPWStr)] string Namespace, [In, MarshalAs(UnmanagedType.LPWStr)] string Name);
void SetAttribute();
void EnumAttributes();
void Clone();
}
[ComImport]
[Guid("809c652e-7396-11d2-9771-00a0c9b4d50c")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
[TypeLibType(TypeLibTypeFlags.FRestricted)]
private interface IMetaDataDispenser
{
int DefineScope();
[PreserveSig]
int OpenScope([In][MarshalAs(UnmanagedType.LPWStr)] string szScope, [In] UInt32 dwOpenFlags, [In] ref Guid riid, [Out][MarshalAs(UnmanagedType.Interface)] out object obj);
int OpenScopeOnMemory();
}
}
#endif
}