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 have an application server (Jboss but this also happens in Tomcat) running as a Service in Windows Server 2003.

It is running with the -Xrs flag.

The JAVA application running under the app server calls via JNI a customizable interface written in C++ (meaning we can alter this code) which references a third party DLL for processing images (Lincoln for converting PostScript, to be exact).

When we log into the server via remote desktop in console or admin mode (mstsc /admin or mstsc /console), when we logout, if the Lincoln DLL has been loaded, the application server will hear the logoff signal and the service process will immediately terminate.

I believe the signal is a CTRL_LOGOFF, but I could be incorrect. PLEASE CORRECT ME.

I was reading the following webpage to get an idea and apparently in UNIX, the signal handlers are passed to the DLL when the DLL is processing. This means that the DLL (Lincoln in this case) listens to and responds to the CTRL_LOGOFF signal.

JavaJiggle Article on Signal Handling

I believe, AND PLEASE CORRECT ME IF I AM WRONG, that I should be able to code a signal catcher in my C++ interface to the DLL to intercept the CTRL_LOGOFF before the DLL hits it and if so, then we won't be constantly dying when someone logs off of /console|/admin mode.

Here is what I need from you:

1) Please confirm or correct the signal that I am getting on console/admin logoff/logout.

2) Please tell me whether I can or cannot write a signal interceptor in the C++ interface.

3) Please help me understand how to code that signal interceptor or point me to some code that can. I have no clue how to do this. This is a 32-bit DLL.

Thank you in advance.

EDIT: I have found this article at Microsoft, which will help me answer this question.

share|improve this question

1 Answer

up vote 0 down vote accepted

I resolved it (somewhat, there is a follow-up question that I'll post the link to here as a response) after determining the following:

I call my custom JNI class, which calls the 3rd Party DLL.

My JNI method is:

JNIEXPORT jint JNICALL Java_com_company_ConvertProxy_convertToImageType(JNIEnv *env, jclass cls, jstring input, jstring output) {

    jboolean isCopy;
    inFilename = env->GetStringUTFChars(input, &isCopy);
    outFilename = env->GetStringUTFChars(output, &isCopy);

    // Tried to call SetConsoleCtrlHandler() here, but failed; 
    // turns out 3rd Party code in ConvertImage() 
    // also calls SetConsoleCtrlHandler and overrides it if placed here.

    int value = ConvertImage();

    // Deafen Control Logoffs set by 3rd Party ConvertImage
    // SetConsoleCtrlHandler( NULL, TRUE ); // DOES NOT WORK, must use custom CtrlHandler
    SetConsoleCtrlHandler( (PHANDLER_ROUTINE) CtrlHandler, TRUE );

    return value;
}

BOOL CtrlHandler( DWORD fdwCtrlType ) { 
    switch( fdwCtrlType ) 
    { 
        // Handle the CTRL-C signal. 
        case CTRL_C_EVENT: 
          return( TRUE );

        // CTRL-CLOSE: confirm that the user wants to exit. 
        case CTRL_CLOSE_EVENT: 
          return( TRUE ); 

        case CTRL_BREAK_EVENT: 
          return( TRUE );

        case CTRL_LOGOFF_EVENT: 
          return( TRUE );

        case CTRL_SHUTDOWN_EVENT: 
          return( TRUE );

        default: 
          return FALSE; 
      }
} 

This seems to work, but I fear that each time I call it, I must keep adding handlers to the stack and obviously the 3rd Party DLL is not removing its handlers. This makes me wonder if there is a way to prevent handlers from being placed in the first place. I have asked this separate followup question for the new issue.

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.