-
Notifications
You must be signed in to change notification settings - Fork 4k
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
Cannot change initonly field outside its .ctor regression #22485
Comments
@marek-safar Which previous version produced an error? Is it VS2017/2015 (Roslyn) or older (native compiler)? |
Tried on native compiler, and I only got a warning for un-assigned field:
|
@gafter Could you comment on expected behavior? Thanks |
@jcouv this is codegen regression not compiler warning regression |
@marek-safar sorry, I failed to notice the PEVerify step. |
I tried with Roslyn 2.3 and older and it worked. I guess this is related to the new readonly ref support somehow |
This behavior is by design. There is nothing that violates type safety here and it is more efficient to avoid the copy for non mutating operations. |
@jaredpar, didn't we add a flag ( |
@jaredpar I agree but this is a regression for scenarios where peverify is involved |
Yes it is |
@marek-safar can u elaborate on the scenarios? The runtime team is generally skeptical that PEVerify is in significant use. Hence why it is not keeping up with changes to the language. Scenarios will help us with decisions in this area going forward. |
@jaredpar I have experience with it in testing only scenarios, e.g. we use it with Cecil (manipulates the IL) to verify the output IL in various test cases where input source code is C#. I agree this is not significantly important scenarios but it would be nice to keep peverify up-to-date. |
@marek-safar one option we've been discussing is moving verification to a managed library. Makes it easier to update and use in testing scenarios. The latter is very interesting to the compiler team as well. Would that work for the Cecil scenarios? Also how do you handle the scenarios that already exist for which PEVerify will fail? Most notably ref returns and netstandard. |
@jaredpar that's something we just have to workaround as it's a new feature (e.g. ref-return) and not strictly speaking a regression. |
@jaredpar thinking about it the managed library approach would work just fine for us but it's a lot of work on your side |
Just to make sure I understand the situation with this issue: This appears to be a functional regression whereby the compiler now produces nonverifiable code for source that used to result in verifiable code. However, we have added the flag |
Is this new behavior? (Very happy if so) Do the methods get annotated with non-modifying/Pure or similar? |
It is related to the |
In other words ... start marking your structs as readonly 😄 |
@marek-safar I believe we have not provided a new verifier spec. Please open a new issue for that. |
@gafter here or do you have a different repo for that? |
@marek-safar Here to start, since the question is about what safety rules Roslyn generates code for. |
AFAIK this is already in progress here: https://github.com/dotnet/corert/tree/master/src/ILVerify |
@Suchiman Yes, that's indeed the effort that we're counting on. |
I started using VS 2017 update 15.7.0 yesterday. I switched a SQL CLR project to using latest (for C# 7.3), and I changed several member fields to use readonly per the IDE0044 recommendation. Then I started getting the "Cannot change initonly field outside its .ctor." error when trying to use SQL's CREATE ASSEMBLY command. Thankfully, I found this issue, and the fix was just adding peverify-compat into my .csproj file. I wanted to post this here in case anyone else runs into SQL CLR errors with this like I did. My full error message was this: System.Data.SqlClient.SqlException: CREATE ASSEMBLY for assembly 'XXX.Sql.Common' failed because assembly 'XXX.Sql.Common' failed verification. Check if the referenced assemblies are up-to-date and trusted (for external_access or unsafe) to execute in the database. CLR Verifier error messages if any will follow this message FWIW, I'm using [assembly: AllowPartiallyTrustedCallers] per Microsoft's recommendation for SQL CLR assemblies. But after going to the C# 7.3 compiler, the peverify-compat feature is required. I also wanted to mention this here since @jaredpar said above on Oct 4, 2017, "The runtime team is generally skeptical that PEVerify is in significant use." For anyone using SQL CLR with safe or external_access assemblies, we're stuck with PEVerify. We may not count as "significant use", but we don't want to be left out of using the latest language changes. :-) |
I just upgraded a SQLCLR (external_access) project to Visual Studio 2019, and started getting the same error: "Cannot change initonly field outside its .ctor." We have a lot of readonly variables, so I didn't want to go changing all this code. But then I came across the post from @bmenees about C# 7.3. We weren't actually specifying a C# version, so I set the project to use C# 6.0 (the highest I could set other than 'default') and our stored procedures can now be deployed successfully. But until this is fixed, we're now prevented from using newer versions of C#. |
The particular error your getting here indicates you are using a partial trust environment on .NET Framework. That environment is not compatible with more recent versions of C# because the runtime is not updated to handle the new IL patterns that are emitted. C# 7.0 should work here without modification. C# 7.3 can work if you pass C# 8.0 and later is only officially supported on .NET Core though. |
Version Used: 2.6.0.62126 (1758d50)
Steps to Reproduce:
Expected Behavior:
No error (as in previous releases)
Actual Behavior:
[IL]: Error: [output.exe : S::ToString][offset 0x00000002] Cannot change initonly field outside its .ctor.
The text was updated successfully, but these errors were encountered: