为什么即使GetLastError为0,CLRHosting API也无法正常工作?

时间:2014-02-02 13:05:50

标签: c# c++ .net dll-injection clr-hosting

我正在尝试按照此tutorial将托管C#dll加载到托管C#进程中。我已经在C / C ++中做了相当多的编码并且掌握了MS COM的工作知识,但是C#和托管代码对我来说是一个全新的野兽,所以如果我做错了就要原谅。我的系统上有.NET 4.5,这是默认使用的相同运行时(我认为)。到目前为止的代码(主要是从上面的链接复制):

代码 - C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace InjectSample
{
    public class Program
    {
        int EntryPoint(String pwzArgument)
        {
            System.Media.SystemSounds.Beep.Play();

            MessageBox.Show(
                "I am a managed app.\n\n" +
                "I am running inside: [" +
                System.Diagnostics.Process.GetCurrentProcess().ProcessName +
                "]\n\n" + (String.IsNullOrEmpty(pwzArgument) ?
                "I was not given an argument" :
                "I was given this argument: [" + pwzArgument + "]"));

            return 0;
        }

        static void Main(string[] args)
        {
            Program prog = new Program();
            prog.EntryPoint("hello world");
        }
    }
}

原生代码

#include <metahost.h>
#pragma comment(lib, "mscoree.lib")
#import "mscorlib.tlb" raw_interfaces_only \
    high_property_prefixes("_get","_put","_putref") \
    rename("ReportEvent", "InteropServices_ReportEvent")


#include <strsafe.h>
void ErrorExit(LPCWSTR lpszFunction, DWORD dwLastError) 
{ 
    if(dwLastError == 0) return;
    LPVOID lpMsgBuf;
    LPVOID lpDisplayBuf;
    DWORD dwFlag = FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS;
    FormatMessage( dwFlag, NULL, dwLastError, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPTSTR) &lpMsgBuf, 0, NULL );

    lpDisplayBuf = (LPVOID)LocalAlloc(LMEM_ZEROINIT, (lstrlen((LPCTSTR)lpMsgBuf) + lstrlen((LPCTSTR)lpszFunction) + 40) * sizeof(TCHAR)); 
    StringCchPrintf((LPTSTR)lpDisplayBuf, LocalSize(lpDisplayBuf) / sizeof(TCHAR), TEXT("%s failed with error %d: %s"), lpszFunction, dwLastError, lpMsgBuf); 

    ::MessageBox(NULL, (LPCTSTR)lpDisplayBuf, TEXT("Error"), MB_OK); 

    LocalFree(lpMsgBuf);
    LocalFree(lpDisplayBuf);
}

int wmain(int argc, wchar_t* argv[])
{
    HRESULT hr;
    ICLRMetaHost *pMetaHost = NULL;
    ICLRRuntimeInfo *pRuntimeInfo = NULL;
    ICLRRuntimeHost *pClrRuntimeHost = NULL;

    // build runtime
    hr = CLRCreateInstance(CLSID_CLRMetaHost, IID_PPV_ARGS(&pMetaHost));
    hr = pMetaHost->GetRuntime(L"v4.0.30319", IID_PPV_ARGS(&pRuntimeInfo));
    hr = pRuntimeInfo->GetInterface(CLSID_CLRRuntimeHost, 
        IID_PPV_ARGS(&pClrRuntimeHost));

    // start runtime
    hr = pClrRuntimeHost->Start();

    // execute managed assembly
    DWORD pReturnValue;
    SetLastError(0);
    hr = pClrRuntimeHost->ExecuteInDefaultAppDomain(
        L"C:\\Temp\\InjectSample.exe", 
        L"InjectExample.Program", 
        L"int EntryPoint(String pwzArgument)", 
        L"hello .net runtime", 
        &pReturnValue);

    ErrorExit(L"ExecuteInDefaultAppDomain()", GetLastError());
    // free resources
    pMetaHost->Release();
    pRuntimeInfo->Release();
    pClrRuntimeHost->Release();

    return 0;
}

问题

现在的问题是,当我执行本机代码时,GetLastError()会返回0。就在致电ExecuteInDefaultAppDomain()之后。根据Codeproject链接,它应该显示对话框,但在我的情况下它没有显示任何内容。

我不确定这个问题,任何建议/指针都会有所帮助。感谢。

1 个答案:

答案 0 :(得分:3)

托管api使用COM,它不会通过GetLastError()报告错误。该方法的返回值是错误代码。它是一个HRESULT,托管api通常返回错误代码,如0x8013xxxx。您可以在CorError.h SDK标头中找到xxxx值。

你需要这样的东西:

hr = pClrRuntimeHost->ExecuteInDefaultAppDomain(...);
if (FAILED(hr)) ErrorExit(L"Execute", hr);

并将此检查添加到您发出的每个电话。不这样做可能会使您的程序以难以诊断的方式崩溃。你需要得到所有帮助,你不再需要友好的.NET例外来告诉你出了什么问题。

其他生存策略正在使用混合模式调试,因此您可以在将托管异常变为HRESULT之前对其进行诊断,在托管代码中编写AppDomain.CurrentDomain.UnhandledException事件处理程序,使用IErrorInfo以便您可以获得异常主机中的消息,使用正确的方法名称,它是L“EntryPoint”,并根据需要将其设为 static