Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If you implement an interface in Java, there is nothing to prevent the caller from looking at what concrete implementation you have supplied, casting to that class and calling methods that are not in the interface. I believe this is called "malicious downcasting".

A way to prevent this is to create a wrapper that only has the interface's methods and does not expose the implementation instance to which it delegates. Short of reflection to private variables you should be safe.

Is there a way to automatically create these kind of wrappers (at run-time, not using a code creation wizard in the IDE, because that still creates a source file that needs to be maintained) ?

share|improve this question
1  
Thanks to Chris Jester-Young for his edit. Now that we can upvote comments, I also want to upvote edits... – Thilo Apr 20 '09 at 4:07
Thanks for your compliment! Much appreciated. – Chris Jester-Young Apr 20 '09 at 4:32

2 Answers

up vote 8 down vote accepted

Another way to protect against this is to use a factory class, and have the implementation be a private inner class of the factory. Only the factory can see it and it will return only the interface type so there is no concrete implementation to cast against.

share|improve this answer
I suppose along the same lines, one could also use a package protected class for one's concrete implementation. – Thilo Apr 20 '09 at 4:37
1  
The problem with a package protected class is what prevents someone from adding to your package and then seeing what is going on? – James Black Apr 20 '09 at 19:36
@James: That would require permission to use a custom classloader, wouldn't it? And if your SecurityManager doesn't prohibit that, then you've lost already. – Chris Jester-Young Apr 20 '09 at 22:41
2  
(Hint: private inner/nested classes are still, in Java's permissions system, package-private; reflection can be used to get at the concrete type, if known, and if the calling class is in the right package.) – Chris Jester-Young Apr 20 '09 at 22:54
By using AOP you can get past most protections, even if you shouldn't have access to classes. I can put an around on a call to the concrete class methods and do whatever I want. – James Black Apr 21 '09 at 1:30
show 1 more comment

I like James Black's answer, but for diversity, I'll post an alternative approach.

You can use java.lang.reflect.Proxy to do this. See this post for some code I wrote (for a different question) that uses Proxy; you can use similar code, if you strip out the synchronization stuff.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.