-
Notifications
You must be signed in to change notification settings - Fork 78
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
CDI-727 CDI.current() should use privileged block #391
Conversation
I was unable to recreate a similar error than in the ticket. We may consider adding a small jar with a fake CDI provider to be in the same condition. |
I don't think that
No problem. That's a common practice. |
Yes, good point. I forgot that we switched to service loader from 1.2 to 2.0 |
Hmm, just genuinely interested - why is it common practice? Just to prevent anyone using it? I thought these SM calls are basically caller-sensitive. So even if it was used by someone else, it shouldn't cause harm. But I guess I am missing something here? |
@manovotn If you make the |
Hmm that's exactly what I thought would be addressed by caller sensitivity, apparently I was wrong. Thanks for explanation. |
@manovotn The point is that a "privileged" caller basically removes the callers up in the stack from the set of callers that will be checked when making access control decisions. Weld's
See also https://docs.oracle.com/javase/7/docs/technotes/guides/security/doprivileged.html |
@antoinesd I just tested this with EntityListenerBeanManagerInjectionTestCase in wildfly testsuite (with WFLY-10125 workaround removed and set to use cdi-api:2.1-SNAPSHOT) and I confirm this fixes the bug. 👍 |
Thanks @hkalina. Do you have a suggestion to create a simple test to reproduce your issue? Mine is obviously too basic since it doesn't trigger any |
@antoinesd are you sure the test is running with security manager enabled? (is System.getSecurityManager() not null?) |
No description provided.