Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm playing with someone else's code by examining it in the repl.

It keeps calling System/exit, which brings down my repl. This is infuriating.

In all the code I have access to, I've mocked the calls out.

But it's also calling some library code I don't have the source to, both java and clojure, and this occasionally causes exits too.

Is there any way to catch these calls globally, so that an attempt to call them doesn't kill the repl thread? Ideally it would just throw an exception instead.

I think in java I could install a new SecurityManager to get this effect, but I've never done it

there seems to be something in that line here: http://jroller.com/ethdsy/entry/disabling_system_exit

So I'm thinking something like:

(System/setSecurityManager (SecurityManager.))

only I somehow need to attach

  public void checkPermission( Permission permission ) {
    if( "exitVM".equals( permission.getName() ) ) {
      throw new ExitTrappedException() ;
    }
  }

My best shot so far is:

(System/setSecurityManager
 (proxy [SecurityManager] []
   (checkPermission [p]
                    (when (= "exitVM" (.getName p))
                      (throw (Exception. "exit"))))))

or maybe

(System/setSecurityManager 
  (proxy [SecurityManager] [] 
    (checkExit [n] false)))

But they both just destroy the repl

Or is there a better way of doing this?

share|improve this question
Your "best shot" works for me: (System/exit) causes a java.security.AccessControlException. I'm on Mac OS X 10.6.6, Java 1.6.0_22, Clojure 1.2. – Jouni K. Seppänen Feb 11 '11 at 21:09
It seems to disallow everything, though. My swank repl just collapses and needs to be restarted. – John Lawrence Aspden Feb 11 '11 at 21:15

3 Answers

Use AspectJ and intercept all Calls to System.exit() with a no op.

But you are right, just configuring the security manager would be saner.

share|improve this answer

You can also use clj-sandbox to restrict code you don't trust.

share|improve this answer

You can try this: http://download.oracle.com/javase/6/docs/api/java/lang/Runtime.html#addShutdownHook(java.lang.Thread)

share|improve this answer
And how exactly will you prevent the JVM from exiting in a ShutDown Hook? – Daniel Feb 12 '11 at 6:07
Oops, wrong answer by me. :-( – Shantanu Kumar Mar 8 '11 at 15:11

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.