I am using pinvoke to call functions from sslscan tool based on openssl; I checked by hit and trial that where exception is occuring is due to memset. It runs fine when I run it natively in VS. But using pinvoke causes a System.AccessViolation Exception in c#.

These are the declarations:

struct sslCheckOptions options;
memset(&options,0, sizeof(struct sslCheckOptions));

The struct is given:

struct sslCheckOptions
{    
    char host[512];
    int port;
    int noFailed;
    int starttls;
    int sslVersion;
    int targets;
    int pout;
    int sslbugs;
    int http;
    int quiet;

    // File Handles...
    FILE *xmlOutput;

    // TCP Connection Variables...
    struct hostent *hostStruct;
    struct sockaddr_in serverAddress;

    // SSL Variables...
    SSL_CTX *ctx;
    struct sslCipher *ciphers;
    char *clientCertsFile;
    char *privateKeyFile;
    char *privateKeyPassword;

    // CA variables...
    char *CAfile;
    char *CApath;
}

It runs fine when I click on the exe file from which I am importing functions. Yeah, I am not importing from dll but exe(console). Any ideas?

link|improve this question
Guess : Try options = {0,}; if you feel memset is problem. – Praveen S Jul 15 '10 at 15:44
Show the pinvoke side of things - is the options struct coming from the managed side? What does the call stack look like when you see the crash, and what's the pinvoke signature for the method that the managed side calls to invoke the native library? – Michael Burr Jul 15 '10 at 16:11
Also, "I am not importing from dll but exe" - I'm not familiar with what problems might be caused by doing this, but I wouldn't be surprised if there are some (especially with initialization of the module). – Michael Burr Jul 15 '10 at 16:16
Doesn't look to me as a memset problem (provided that memset is used exactly in the context you posted above). Can you try to inspect the crash with a native debugger? – atzz Jul 15 '10 at 16:33
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.