Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AssemblyName.GetPublicKeyToken() may return byte[160] instead of byte[8] #69153

Closed
AArnott opened this issue May 10, 2022 · 15 comments · Fixed by #69169
Closed

AssemblyName.GetPublicKeyToken() may return byte[160] instead of byte[8] #69153

AArnott opened this issue May 10, 2022 · 15 comments · Fixed by #69169
Assignees
Milestone

Comments

@AArnott
Copy link
Contributor

AArnott commented May 10, 2022

This is a regression in .NET 7, possibly due to #62866.
This only repros when the AssemblyName is obtained from AssemblyName.GetAssemblyName when passed the path to an ILMerge output assembly.

Consider the following test:

string assemblyPath = Environment.ExpandEnvironmentVariables("ILmergeProduced.dll");
Assert.Equal(8, AssemblyName.GetAssemblyName(this.assemblyPath).GetPublicKeyToken()?.Length)

That test passes on net472 and net6.0, but fails on net7.0 with:

Assert.Equal() Failure
Expected: 8
Actual:   160

Consider this full repro.
Just open in VS and run tests in Test Explorer (assuming .NET 7 Preview 5 is installed).

@dotnet-issue-labeler
Copy link

I couldn't figure out the best area label to add to this issue. If you have write-permissions please help me learn by adding exactly one area label.

@ghost ghost added the untriaged New issue has not been triaged by the area owner label May 10, 2022
@ghost
Copy link

ghost commented May 10, 2022

Tagging subscribers to this area: @vitek-karas, @agocke, @VSadov
See info in area-owners.md if you want to be subscribed.

Issue Details

This is a regression in .NET 7, possibly due to #62866.
This only repros when the AssemblyName is obtained from AssemblyName.GetAssemblyName when passed the path to an ILMerge output assembly.

Consider the following test:

string assemblyPath = Environment.ExpandEnvironmentVariables("ILmergeProduced.dll");
Assert.Equal(8, AssemblyName.GetAssemblyName(this.assemblyPath).GetPublicKeyToken()?.Length)

That test passes on net472 and net6.0, but fails on net7.0 with:

Assert.Equal() Failure
Expected: 8
Actual:   160

Consider this full repro.
Just open in VS and run tests in Test Explorer (assuming .NET 7 Preview 5 is installed).

Author: AArnott
Assignees: -
Labels:

area-AssemblyLoader-coreclr, untriaged

Milestone: -

@danmoseley

This comment was marked as off-topic.

@VSadov VSadov self-assigned this May 10, 2022
@VSadov
Copy link
Member

VSadov commented May 10, 2022

@AArnott - thanks for reporting. I will take a look.
I wonder if there could be a smaller repro - so that I could put it into a testcase.

@jkotas
Copy link
Member

jkotas commented May 10, 2022

Related to or duplicate of #66785

@AArnott
Copy link
Contributor Author

AArnott commented May 10, 2022

@VSadov the repro is just two lines of code, plus the assembly to be loaded. Maybe check in the assembly?

@VSadov
Copy link
Member

VSadov commented May 11, 2022

This is not related to #66785 . That is a matter of visualizing missing PublicKeyToken - whether we write out PublicKeyToken=null or not if the key is missing.

It looks like 6.0 prints that and we should too, but I wonder if that is always the case or there are other hints to consider on whether to print this or not.

@VSadov
Copy link
Member

VSadov commented May 11, 2022

I assume #69157 fixed this.

@VSadov VSadov closed this as completed May 11, 2022
@ghost ghost removed the untriaged New issue has not been triaged by the area owner label May 11, 2022
@jkotas
Copy link
Member

jkotas commented May 11, 2022

#69157 did not fix this. #69157 affected Assembly.Load only. This bug is in AssemblyName.GetAssemblyName

@jkotas jkotas reopened this May 11, 2022
@ghost ghost added the untriaged New issue has not been triaged by the area owner label May 11, 2022
@jkotas
Copy link
Member

jkotas commented May 11, 2022

This is not related to #66785 . That is a matter of visualizing missing PublicKeyToken - whether we write out PublicKeyToken=null or not if the key is missing.

I think you meant to add this comment to #66785 .

I believe that the problem in both #66785 and #69153 (this issue) is that the AssemblyName.GetAssemblyName is setting the flags on AssemblyName differently from how they used to be set by internal runtime GetAssemblyName.

@VSadov
Copy link
Member

VSadov commented May 11, 2022

I thought #66785 was an issue similar to the one that was fixed in

// compat: normalize 'null' culture name to "" to match AssemblyName.GetAssemblyName()

just like with culture name we expect empty instead of null when metadata has Nil handle for the token

but maybe this is an issue with flags.

@jkotas
Copy link
Member

jkotas commented May 11, 2022

AssemblyName.GetPublicKeyToken() may return byte[160] instead of byte[8]

The runtime unconditionally sets afPublicKey on the name read from assembly definition: https://github.com/dotnet/runtime/blob/main/src/coreclr/vm/baseassemblyspec.inl#L310-L311 . Notice that this quirk is only applied to name read from assembly definition, but it is not applied to name read from assembly reference.

System.Reflection.Metadata does not have this quirk that compensates for mall-formed assemblies with missing afPublicKey bit.

@VSadov
Copy link
Member

VSadov commented May 11, 2022

@AArnott Is it possible to share the dll that exhibits this behavior (ILmergeProduced.dll ?)

I have managed to make the attached test to run, but it is passing. I think it would be simpler if I just have the dll.

@AArnott
Copy link
Contributor Author

AArnott commented May 11, 2022

@VSadov Yes, check out my full repro (linked from the issue description) to get an actual repro that includes the dll.

@AaronRobinsonMSFT AaronRobinsonMSFT removed the untriaged New issue has not been triaged by the area owner label May 12, 2022
@AaronRobinsonMSFT AaronRobinsonMSFT added this to the 7.0.0 milestone May 12, 2022
@VSadov
Copy link
Member

VSadov commented May 12, 2022

With @AArnott help I was able to reproduce the bug. @jkotas is right, #69157 does not fix it.

The fix in #69169 (i.e. forcing PublicKey bit in definitions) is not sufficient either, but having a consistent repro definitely helps.

@ghost ghost added the in-pr There is an active PR which will close this issue when it is merged label May 12, 2022
@ghost ghost removed the in-pr There is an active PR which will close this issue when it is merged label May 13, 2022
@ghost ghost locked as resolved and limited conversation to collaborators Jun 12, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants