/*BEGIN_LEGAL Intel Open Source License Copyright (c) 2002-2005 Intel Corporation All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the Intel Corporation nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE INTEL OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. END_LEGAL */ #include #include #include "pin.H" static BOOL HandleSig(INT32, INT32, CONTEXT *, BOOL hndlr, VOID *); static BOOL ParseCmdLine(int, char **); static void Usage(); // These parameters are set from the tool's command line int Signal = SIGINT; // Signal to intercept unsigned Count = 1; // Tool exits after intercepting signal this many times BOOL PassToApp = FALSE; // Whether intercepted signals should be passed to application handler int main(int argc, char **argv) { PIN_Init(argc, argv); if (!ParseCmdLine(argc, argv)) return 1; PIN_AddSignalInterceptFunction(Signal, HandleSig, 0); PIN_StartProgram(); return 0; } static BOOL HandleSig(INT32 tid, INT32 sig, CONTEXT *ctxt, BOOL hndlr, VOID *v) { cerr << "Thread : " << tid << " Intercepting signal " << sig << endl; if (--Count == 0) exit(0); return PassToApp; } static BOOL ParseCmdLine(int argc, char **argv) { // Skip over the Pin arguments. // int i; for (i = 0; i < argc; i++) { if (strcmp(argv[i], "-t") == 0 && (i+2 < argc)) { i += 2; break; } } bool done = false; for (; i < argc && !done; i++) { if (argv[i][0] != '-') { Usage(); return FALSE; } switch (argv[i][1]) { case 's': { if (i+1 >= argc) { Usage(); return FALSE; } Signal = strtol(argv[i+1], 0, 10); if (Signal < 1 || Signal > 64) { cerr << "Invalid signal number: " << argv[i+i] << endl; Usage(); return FALSE; } i++; break; } case 'c': { if (i+1 >= argc) { Usage(); return FALSE; } unsigned long count = strtoul(argv[i+1], 0, 10); if (count == 0 || count > UINT_MAX) { cerr << "Invalid count, must be greater than zero: " << argv[i+1] << endl; Usage(); return FALSE; } Count = static_cast(count); i++; break; } case 'p': { PassToApp = TRUE; break; } case '-': { done = TRUE; break; } default: { cerr << "Invalid argument: " << argv[i] << endl; Usage(); return FALSE; } } } return TRUE; } static void Usage() { cerr << endl; cerr << "pin -t intercepttool [-s ] [-c ] [-p]" << endl; cerr << " -s - Specifies signal to intercept (default is SIGINT)" << endl; cerr << " -c - Tool exits after intercepting signal this many times (default 1)" << endl; cerr << " -p - Tool forwards signal to application after intercepting" << endl; cerr << endl; }