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?
optionsstruct 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:11memsetproblem (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