/* * Copyright 2002-2019 Intel Corporation. * * This software is provided to you as Sample Source Code as defined in the accompanying * End User License Agreement for the Intel(R) Software Development Products ("Agreement") * section 1.L. * * This software and the related documents are provided as is, with no express or implied * warranties, other than those that are expressly stated in the License. */ // // This tool demonstrates how to get the value of the application's // error code on windows in jit mode. // #include "pin.H" #include #include #include using std::cerr; using std::endl; using std::cout; namespace WINDOWS { #include } AFUNPTR pfnGetLastError = 0; /* ===================================================================== */ VOID ToolCheckError( CONTEXT * ctxt ) { unsigned long err_code; if ( pfnGetLastError != 0 ) { cerr << "Tool: calling GetLastError()" << endl; PIN_CallApplicationFunction( ctxt, PIN_ThreadId(), CALLINGSTD_DEFAULT, pfnGetLastError, NULL, PIN_PARG(unsigned long), &err_code, PIN_PARG_END() ); cerr << "Tool: error code=" << err_code << endl; } else cerr << "Tool: GetLastError() not found." << endl; } /* ===================================================================== */ VOID ImageLoad(IMG img, VOID *v) { if ( IMG_IsMainExecutable( img )) { PROTO proto = PROTO_Allocate( PIN_PARG(void), CALLINGSTD_DEFAULT, "CheckError", PIN_PARG_END() ); RTN rtn = RTN_FindByName(img, "CheckError"); if (RTN_Valid(rtn)) { cout << "Replacing " << RTN_Name(rtn) << " in " << IMG_Name(img) << endl; RTN_ReplaceSignature(rtn, AFUNPTR(ToolCheckError), IARG_PROTOTYPE, proto, IARG_CONTEXT, IARG_END); } PROTO_Free( proto ); } } /* ===================================================================== */ int main(INT32 argc, CHAR *argv[]) { pfnGetLastError = (AFUNPTR)WINDOWS::GetProcAddress( WINDOWS::GetModuleHandle("kernel32.dll"), "GetLastError"); PIN_InitSymbols(); PIN_Init(argc, argv); IMG_AddInstrumentFunction(ImageLoad, 0); PIN_StartProgram(); return 0; } /* ===================================================================== */ /* eof */ /* ===================================================================== */