I have an unmanaged c++ dll. I am calling external methods of this unmanaged dll from c# (.net 3.5)

I am looking for a way to find witch c# assembly is calling my unmanaged c++ dll (into my c++ dll) (at least, name of assembly)

And sure, I don't want to pass any additional parameter to methods.

Thanks in advance

link|improve this question

The wicked witch of the west? – Dynite Mar 28 '11 at 14:40
feedback

4 Answers

This requires a stack walk. Works well in managed code, that's how code access security is implemented. Does not work so well when there are native stack frames to walk. You can try StackWalk64() in your native code. Expensive and not that likely to work out well, especially in .NET 4.0 where the CLR no longer fakes the module. Be very wary of the frame pointer omission optimization option.

Don't do this, I'd say. It is so much easier to solve simply by letting the managed code pass an extra argument.

link|improve this answer
feedback

Might, or might not work: call GetModuleFileName ( http://msdn.microsoft.com/en-us/library/ms683197%28v=vs.85%29.aspx ) with NULL, to find out the process name. Try it and let us know.

link|improve this answer
How should I call GetModuleFileName or GetModuleFileNameEx when my managed code is asp.net? My unmanaged dll is called from an asp.net application... – Farzin Zaker Mar 29 '11 at 6:36
feedback

You can't know. Your external methods could be called by any C-compatible language and as such Windows and the CRT store nothing extra about CLR languages.

link|improve this answer
feedback
up vote 0 down vote accepted

Finally I found the solution.

I was looking for a way to restrict not allowed access to my unmanaged dll. So I crawled the stack trace for my caller assembly location.

Finally I decided to check public key token of caller assembly (found this way) and validate it.

Thanks from you time and answers...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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