Advantages of Pin Instrumentation Easytouse Instrumentation Uses dynamic

  • Slides: 55
Download presentation
Advantages of Pin Instrumentation Easy-to-use Instrumentation: • Uses dynamic instrumentation – Do not need

Advantages of Pin Instrumentation Easy-to-use Instrumentation: • Uses dynamic instrumentation – Do not need source code, recompilation, post-linking Programmable Instrumentation: • Provides rich APIs to write in C/C++ your own instrumentation tools (called Pintools) Multiplatform: • • Supports x 86, x 86 -64, Itanium, Xscale Supports Linux, Windows, Mac. OS Robust: • • • Instruments real-life applications: Database, web browsers, … Instruments multithreaded applications Supports signals Efficient: • 0 Applies compiler optimizations on instrumentation code Pin PLDI Tutorial 2007

Other Advantages • Robust and stable – – – Pin can run itself! 12+

Other Advantages • Robust and stable – – – Pin can run itself! 12+ active developers Nightly testing of 25000 binaries on 15 platforms Large user base in academia and industry Active mailing list (Pinheads) • 14, 000+ downloads 1 Pin PLDI Tutorial 2007

Using Pin Launch and instrument an application $ pin –t pintool –- application Instrumentation

Using Pin Launch and instrument an application $ pin –t pintool –- application Instrumentation engine (provided in the kit) 2 Instrumentation tool (write your own, or use one provided in the kit) Pin PLDI Tutorial 2007

Pin Instrumentation APIs Basic APIs are architecture independent: • Provide common functionalities like determining:

Pin Instrumentation APIs Basic APIs are architecture independent: • Provide common functionalities like determining: – Control-flow changes – Memory accesses Architecture-specific APIs • e. g. , Info about segmentation registers on IA 32 Call-based APIs: • Instrumentation routines • Analysis routines 3 Pin PLDI Tutorial 2007

Instrumentation vs. Analysis Concepts borrowed from the ATOM tool: Instrumentation routines define where instrumentation

Instrumentation vs. Analysis Concepts borrowed from the ATOM tool: Instrumentation routines define where instrumentation is inserted • e. g. , before instruction C Occurs first time an instruction is executed Analysis routines define what to do when instrumentation is activated • e. g. , increment counter C Occurs every time an instruction is executed 4 Pin PLDI Tutorial 2007

Pintool 1: Instruction Count sub $0 xff, %edx counter++; cmp %esi, %edx counter++; jle

Pintool 1: Instruction Count sub $0 xff, %edx counter++; cmp %esi, %edx counter++; jle <L 1> counter++; mov $0 x 1, %edi counter++; add $0 x 10, %eax counter++; 5 Pin PLDI Tutorial 2007

Pintool 1: Instruction Count Output $ /bin/ls Makefile imageload. out itrace proccount imageload inscount

Pintool 1: Instruction Count Output $ /bin/ls Makefile imageload. out itrace proccount imageload inscount 0 atrace itrace. out $ pin -t inscount 0 -- /bin/ls Makefile imageload. out itrace proccount imageload inscount 0 atrace itrace. out Count 422838 6 Pin PLDI Tutorial 2007

#include <iostream> #include "pin. h" Manual. Examples/inscount 0. cpp UINT 64 icount = 0;

#include <iostream> #include "pin. h" Manual. Examples/inscount 0. cpp UINT 64 icount = 0; void docount() { icount++; } analysis routine void Instruction(INS ins, void *v) instrumentation routine { INS_Insert. Call(ins, IPOINT_BEFORE, (AFUNPTR)docount, IARG_END); } void Fini(INT 32 code, void *v) { std: : cerr << "Count " << icount << endl; } int main(int argc, char * argv[]) { PIN_Init(argc, argv); INS_Add. Instrument. Function(Instruction, 0); PIN_Add. Fini. Function(Fini, 0); PIN_Start. Program(); return 0; } 7 Pin PLDI Tutorial 2007

Pintool 2: Instruction Trace Print(ip); sub $0 xff, %edx Print(ip); cmp %esi, %edx Print(ip);

Pintool 2: Instruction Trace Print(ip); sub $0 xff, %edx Print(ip); cmp %esi, %edx Print(ip); jle <L 1> Print(ip); mov $0 x 1, %edi Print(ip); add $0 x 10, %eax Need to pass ip argument to the analysis routine (printip()) 8 Pin PLDI Tutorial 2007

Pintool 2: Instruction Trace Output $ pin -t itrace -- /bin/ls Makefile imageload. out

Pintool 2: Instruction Trace Output $ pin -t itrace -- /bin/ls Makefile imageload. out itrace proccount imageload inscount 0 atrace itrace. out $ head -4 itrace. out 0 x 40001 e 90 0 x 40001 e 91 0 x 40001 ee 4 0 x 40001 ee 5 9 Pin PLDI Tutorial 2007

Manual. Examples/itrace. cpp #include <stdio. h> #include "pin. H" argument to analysis routine FILE

Manual. Examples/itrace. cpp #include <stdio. h> #include "pin. H" argument to analysis routine FILE * trace; void printip(void *ip) { fprintf(trace, "%pn", ip); } analysis routine instrumentation routine void Instruction(INS ins, void *v) { INS_Insert. Call(ins, IPOINT_BEFORE, (AFUNPTR)printip, IARG_INST_PTR, IARG_END); } void Fini(INT 32 code, void *v) { fclose(trace); } int main(int argc, char * argv[]) { trace = fopen("itrace. out", "w"); PIN_Init(argc, argv); INS_Add. Instrument. Function(Instruction, 0); PIN_Add. Fini. Function(Fini, 0); PIN_Start. Program(); return 0; } 10 Pin PLDI Tutorial 2007

Examples of Arguments to Analysis Routine IARG_INST_PTR • Instruction pointer (program counter) value IARG_UINT

Examples of Arguments to Analysis Routine IARG_INST_PTR • Instruction pointer (program counter) value IARG_UINT 32 <value> • An integer value IARG_REG_VALUE <register name> • Value of the register specified IARG_BRANCH_TARGET_ADDR • Target address of the branch instrumented IARG_MEMORY_READ_EA • Effective address of a memory read And many more … (refer to the Pin manual for details) 11 Pin PLDI Tutorial 2007

Recap of Pintool 1: Instruction Count counter++; sub $0 xff, %edx counter++; cmp %esi,

Recap of Pintool 1: Instruction Count counter++; sub $0 xff, %edx counter++; cmp %esi, %edx counter++; jle <L 1> counter++; mov $0 x 1, %edi counter++; add $0 x 10, %eax Straightforward, but the counting can be more efficient 12 Pin PLDI Tutorial 2007

Pintool 3: Faster Instruction Count counter += 3 sub $0 xff, %edx cmp %esi,

Pintool 3: Faster Instruction Count counter += 3 sub $0 xff, %edx cmp %esi, %edx jle <L 1> counter += 2 mov $0 x 1, %edi add 13 $0 x 10, %eax Pin PLDI Tutorial 2007 basic blocks (bbl)

Pin Overhead SPEC Integer 2006 14 Pin PLDI Tutorial 2007

Pin Overhead SPEC Integer 2006 14 Pin PLDI Tutorial 2007

Adding User Instrumentation 15 Pin PLDI Tutorial 2007

Adding User Instrumentation 15 Pin PLDI Tutorial 2007

Reducing the Pintool’s Overhead Instrumentation Routines Overhead + Analysis Routines Overhead Frequency of calling

Reducing the Pintool’s Overhead Instrumentation Routines Overhead + Analysis Routines Overhead Frequency of calling an Analysis Routine x Work required in the Analysis Routine Work required for transiting to Analysis Routine + Work done inside Analysis Routine 16 Pin PLDI Tutorial 2007

Pin for Information Flow Tracking 17 Pin PLDI Tutorial 2007

Pin for Information Flow Tracking 17 Pin PLDI Tutorial 2007

Information Flow Tracking Approach ØTrack data sources and monitor information flow using Pin ØSend

Information Flow Tracking Approach ØTrack data sources and monitor information flow using Pin ØSend program behavior to back end whenever suspicious program behavior is suspected ØProvide analysis and policies to decide classify program behavior 18 Pin PLDI Tutorial 2007

Information Flow Tracking using Pin • Pin tracks information flow in the program and

Information Flow Tracking using Pin • Pin tracks information flow in the program and identifies exact source of data Ø USER_INPUT: data is retrieved via user interaction Ø FILE: data is read from a file Ø SOCKET: data is retrieved from socket interface Ø BINARY: data is part of the program binary image Ø HARDWARE: data originated from hardware • Pin maintains data source information for all memory locations and registers • Propagates flow information by taking union of data sources of all operands 19 Pin PLDI Tutorial 2007

Example – Register Tracking • We track flow from source to destination operands. .

Example – Register Tracking • We track flow from source to destination operands. . . %ecx - {BINARY 1} /* ecx contains information from BINARY 1 */ • Pin will instrument this instruction and will insert an analysis routine to merge the source and destination operand information %esi - {FILE 2} /* esi contains information from FILE 2 */ 20 %edx, %esi dst(%esi) : = dst(%esi) XOR src(%edx) %edx - {SOCKET 1} /* edx contains information from SOCKET 1 */ . . . xor which has the following semantics: %ebx - {} %edi - {} • Assume the following XOR instruction: %edx - {SOCKET 1} /* edx contains information from SOCKET 1 */ %esi - {SOCKET 1, FILE 2} /* esi contains information from FILE 2 */ Pin PLDI Tutorial 2007

Information Flow Tracking Prototype System Calls – Instrument selected system calls (12 in prototype)

Information Flow Tracking Prototype System Calls – Instrument selected system calls (12 in prototype) Code Frequency – Instrument every basic block – Determine code “hotness” – Application binary vs. shared object Program Data Flow • • 21 System call specific data flow – Tracking file loads, mapping memory to files. . Application data flow – Instrument memory access instructions – Instrument ALU instructions Pin PLDI Tutorial 2007

Performance – Information Flow Tracking 22 Pin PLDI Tutorial 2007

Performance – Information Flow Tracking 22 Pin PLDI Tutorial 2007

A Technique for Enabling & Supporting Field Failure Debugging • Problem In-house software quality

A Technique for Enabling & Supporting Field Failure Debugging • Problem In-house software quality is challenging, which results in field failures that are difficult to replicate and resolve • Approach Improve in-house debugging of field failures by (1) Recording & Replaying executions (2) Generating minimized executions for faster debugging • Who J. Clause and A. Orso @ Georgia Institute of Technology ACM SIGSOFT Int'l. Conference on Software Engineering ‘ 07 23 Pin PLDI Tutorial 2007

Dytan: A Generic Dynamic Taint Analysis Framework • Problem Dynamic taint analysis is defined

Dytan: A Generic Dynamic Taint Analysis Framework • Problem Dynamic taint analysis is defined an adhoc-manner, which limits extendibility, experimentation & adaptability • Approach Define and develop a general framework that is customizable and performs data- and control-flow tainting • Who J. Clause, W. Li, A. Orso @ Georgia Institute of Technology Int'l. Symposium on Software Testing and Analysis ‘ 07 24 Pin PLDI Tutorial 2007

Workload Characterization • Problem Extracting important trends from programs with large data sets is

Workload Characterization • Problem Extracting important trends from programs with large data sets is challenging • Approach Collect hardware-independent characteristics across program execution and apply them to statistical data analysis and machine learning techniques to find trends • Who K. Hoste and L. Eeckhout @ Ghent University 25 Pin PLDI Tutorial 2007

Loop-Centric Profiling • Problem Identifying parallelism is difficult • Approach Provide a hierarchical view

Loop-Centric Profiling • Problem Identifying parallelism is difficult • Approach Provide a hierarchical view of how much time is spent in loops, and the loops nested within them using (1) instrumentation and (2) light-weight sampling to automatically identify opportunities of parallelism • Who T. Moseley, D. Connors, D. Grunwald, R. Peri @ University of Colorado, Boulder and Intel Corporation Int'l. Conference on Computing Frontiers (CF) ‘ 07 26 Pin PLDI Tutorial 2007

Shadow Profiling • Problem Attaining accurate profile information results in large overheads for runtime

Shadow Profiling • Problem Attaining accurate profile information results in large overheads for runtime & feedback-directed optimizers • Approach fork() shadow copies of an application onto spare cores, which can be instrumented aggressively to collect accurate information without slowing the parent process • Who T. Moseley, A. Shye, V. J. Reddi, D. Grunwald, R. Peri University of Colorado, Boulder and Intel Corporation Int'l. Conference on Code Generation and Optimization (CGO) ‘ 07 27 Pin PLDI Tutorial 2007

Pin-Based Fault Tolerance Analysis Purpose: • • Simulate the occurrence of transient faults and

Pin-Based Fault Tolerance Analysis Purpose: • • Simulate the occurrence of transient faults and analyze their impact on applications Construction of run-time system capable of providing software-centric fault tolerance service Pin • • • Easy to model errors and the generation of faults and their impact Relatively fast (5 -10 minutes per fault injection) Provides full program analysis Research Work • 28 University of Colorado: Alex Shye, Joe Blomstedt, Harshad Sane, Alpesh Vaghasia, Tipp Moseley Pin PLDI Tutorial 2007

Division of Transient Faults Analysis Bit Read? yes Detection & benign fault Correction no

Division of Transient Faults Analysis Bit Read? yes Detection & benign fault Correction no error Does bit matter? yes True Detected Unrecoverable Error 29 Bit has error protection no benign fault no error no Detection only no Particle Strike Causes Bit Flip! Does bit matter? yes False Detected Unrecoverable Error Pin PLDI Tutorial 2007 Silent Data Corruption no benign fault no error

Modeling Microarchitectural Faults in Pin Accuracy of fault methodology depends on the complexity of

Modeling Microarchitectural Faults in Pin Accuracy of fault methodology depends on the complexity of the underlying system • Microarchitecture, RTL, physical silicon Build a microarchitectural model into Pin • • A low fidelity model may suffice Adds complexity and slows down simulation time Emulate certain types of microarchitectural faults in Pin Arch Reg 30 u. Arch State Pin PLDI Tutorial 2007 Memory

Example: Destination/Source Register Transmission Fault occurs in latches when forwarding instruction output Change architectural

Example: Destination/Source Register Transmission Fault occurs in latches when forwarding instruction output Change architectural value of destination register at the instruction where fault occurs Exec Unit 31 Latches NOTE: This is different than inserting fault into register file because the destination is selected based on the instruction where fault occurs Pin PLDI Tutorial 2007 Bypass Logic ROB RS

Example: Load Data Transmission Faults Fault occurs when loading data from the memory system

Example: Load Data Transmission Faults Fault occurs when loading data from the memory system Before load instruction, insert fault into memory Execute load instruction After load instruction, remove fault from memory (Cleanup) NOTE: This models a fault occurring in the transmission of data from the STB or L 1 Cache Load Buffer 32 Latches STB DCache Pin PLDI Tutorial 2007

Steps for Fault Analysis Determine ‘WHEN’ the error occurs Determine ‘WHERE’ the error occurs

Steps for Fault Analysis Determine ‘WHEN’ the error occurs Determine ‘WHERE’ the error occurs Inject Error Determine/Analyze Outcome 33 Pin PLDI Tutorial 2007

Step: WHEN Sample Pin Tool: Inst. Count. C • Purpose: Efficiently determines the number

Step: WHEN Sample Pin Tool: Inst. Count. C • Purpose: Efficiently determines the number of dynamic instances of each static instruction Output: For each static instruction • • Function name Dynamic instructions per static instruction IP: IP: IP: 34 135000941 135000939 135000961 135000959 135000956 135000950 Count: Count: 492714322 492701800 Func: Func: Pin PLDI Tutorial 2007 propagate_block. 104

Step: WHEN Inst. Prof. C • Purpose: Traces basic blocks for contents and execution

Step: WHEN Inst. Prof. C • Purpose: Traces basic blocks for contents and execution count Output: For a program input • • Listing of dynamic block executions Used to generate a profile to select error injection point (opcode, function, etc) BBL Num. Ins: 6 Count: 13356 Func: build_tree 804 cb 88 BINARY ADD [Dest: ax] [Src: ax edx] MR: 1 MW: 0 804 cb 90 SHIFT [Dest: eax] [Src: eax] MR: 0 MW: 0 SHL 804 cb 92 DATAXFER MOV [Dest: ] [Src: esp edx ax] MR: 0 MW: 1 804 cb 97 BINARY INC [Dest: edx] [Src: edx] MR: 0 MW: 0 804 cb 98 BINARY CMP [Dest: ] [Src: edx] MR: 0 MW: 0 804 cb 9 b COND_BR JLE [Dest: ] [Src: ] MR: 0 MW: 0 35 Pin PLDI Tutorial 2007

Error Insertion State Diagram No START Insert Error Count By Basic Block Clear Code

Error Insertion State Diagram No START Insert Error Count By Basic Block Clear Code Cache Count Insts After Error No Restart Using Context Reached Threshold? Yes Detach From Pin & Run to Completion Yes No Count Every Instruction Cleanup? No Yes 36 Reached Check. Point? Found Inst? Cleanup Error Pre-Error Pin PLDI Tutorial 2007 Post Error

Step: WHERE Reality: • • Where the transient fault occurs is a function of

Step: WHERE Reality: • • Where the transient fault occurs is a function of the size of the structure on the chip Faults can occur in both architectural and microarchitectural state Approximation: • 37 Pin only provides architectural state, not microarchitectural state (no uops, for instance) – Either inject faults only into architectural state – Build an approximation for some microarchitectural state Pin PLDI Tutorial 2007

Error Insertion State Diagram No START Insert Error Count By Basic Block Clear Code

Error Insertion State Diagram No START Insert Error Count By Basic Block Clear Code Cache Count Insts After Error No Restart Using Context Reached Threshold? Yes Detach From Pin & Run to Completion Yes No Count Every Instruction Cleanup? Pre-Error 38 No Yes Found Inst? Reached Check. Point? Cleanup Error Pin PLDI Tutorial 2007 Post Error

Step: Injecting Error VOID Insert. Fault(CONTEXT* _ctxt) { srand(cur. Dyn. Inst); Error Insertion Routine

Step: Injecting Error VOID Insert. Fault(CONTEXT* _ctxt) { srand(cur. Dyn. Inst); Error Insertion Routine Get. Faulty. Bit(_ctxt, &fault. Reg, &fault. Bit); UINT 32 old_val; UINT 32 new_val; old_val = PIN_Get. Context. Reg(_ctxt, fault. Reg); fault. Mask = (1 << fault. Bit); new_val = old_val ^ fault. Mask; PIN_Set. Context. Reg(_ctxt, fault. Reg, new_val); PIN_Remove. Instrumentation(); fault. Done = 1; PIN_Execute. At(_ctxt); } 39 Pin PLDI Tutorial 2007

Step: Determining Outcomes that can be tracked: 40 • • • Did the program

Step: Determining Outcomes that can be tracked: 40 • • • Did the program complete? • If the program crashed, why did it crash (trapping signals)? Did the program complete and have the correct IO result? If the program crashed, how many instructions were executed after fault injection before program crashed? Pin PLDI Tutorial 2007

Register Fault Pin Tool: Reg. Fault. C MAIN main(int argc, char * argv[]) {

Register Fault Pin Tool: Reg. Fault. C MAIN main(int argc, char * argv[]) { if (PIN_Init(argc, argv)) return Usage(); out_file. open(Knob. Output. File. Value(). c_str()); fault. Inst = Knob. Fault. Inst. Value(); TRACE_Add. Instrument. Function (Trace, 0); INS_Add. Instrument. Function(Instruction, 0); PIN_Add. Fini. Function(Fini, 0); PIN_Add. Signal. Intercept. Function(SIGSEGV, Sig. Func, 0); PIN_Add. Signal. Intercept. Function(SIGFPE, Sig. Func, 0); PIN_Add. Signal. Intercept. Function(SIGILL, Sig. Func, 0); PIN_Add. Signal. Intercept. Function(SIGSYS, Sig. Func, 0); } 41 PIN_Start. Program(); return 0; Pin PLDI Tutorial 2007

Error Insertion State Diagram No START Insert Error Count By Basic Block Clear Code

Error Insertion State Diagram No START Insert Error Count By Basic Block Clear Code Cache Count Insts After Error No Restart Using Context Reached Threshold? Yes Detach From Pin & Run to Completion Yes No Count Every Instruction Cleanup? No Yes 42 Reached Check. Point? Found Inst? Cleanup Error Pre-Error Pin PLDI Tutorial 2007 Post Error

Fault Checker: Fault Insertion Error Insertion Fork Process & Setup Communication Links Parent Process?

Fault Checker: Fault Insertion Error Insertion Fork Process & Setup Communication Links Parent Process? Yes Insert Error No Restart Using Context Yes Parent Process? Cleanup Required? No No Parent Both Post Error 43 Cleanup Error Pin PLDI Tutorial 2007

Control Flow: Tracing Propagation of Injected Errors Diverging Point 44 w/o fault Injection Pin

Control Flow: Tracing Propagation of Injected Errors Diverging Point 44 w/o fault Injection Pin PLDI Tutorial 2007 w/ fault Injection

Data Flow: Tracing Propagation of Injected Errors Fault Detection 45 w/o fault Injection Pin

Data Flow: Tracing Propagation of Injected Errors Fault Detection 45 w/o fault Injection Pin PLDI Tutorial 2007 w/ fault Injection

Fault Coverage Experimental Results Watchdog timeout very rare so not shown PLR detects all

Fault Coverage Experimental Results Watchdog timeout very rare so not shown PLR detects all Incorrect and Failed cases Effectively detects relevant faults and ignores benign faults 46 Pin PLDI Tutorial 2007

Function Analysis Experimental Results Per-function (top 10 function executed per application) 47 Pin PLDI

Function Analysis Experimental Results Per-function (top 10 function executed per application) 47 Pin PLDI Tutorial 2007

Fault Timeline Experimental Results Error Injection until equal time segments of applications 48 Pin

Fault Timeline Experimental Results Error Injection until equal time segments of applications 48 Pin PLDI Tutorial 2007

Run-time System for Fault Tolerance Process technology trends • • Single transistor error rate

Run-time System for Fault Tolerance Process technology trends • • Single transistor error rate is expected to stay close to constant Number of transistors is increasing exponentially with each generation Transient faults will be a problem for microprocessors! Hardware Approaches • Specialized redundant hardware, redundant multi-threading Software Approaches • • Compiler solutions: instruction duplication, control flow checking Low-cost, flexible alternative but higher overhead Goal: Leverage available hardware parallelism in multicore architectures to improve the performance of software-based transient fault tolerance 49 Pin PLDI Tutorial 2007

Process-level Redundancy 50 Pin PLDI Tutorial 2007

Process-level Redundancy 50 Pin PLDI Tutorial 2007

Replicating Processes A Straight-forward and fast fork() A’ fork() Let OS schedule to cores

Replicating Processes A Straight-forward and fast fork() A’ fork() Let OS schedule to cores System Call Interface Operating System Maintain transparency in replica System calls Shared memory R/W Replicas provide an extra copy of the program+input What can we do with this? • • • 51 Software transient fault tolerance Low-overhead program instrumentation More? Pin PLDI Tutorial 2007

Process-Level Redundancy (PLR) Master Process • Only process allowed to perform system I/O App

Process-Level Redundancy (PLR) Master Process • Only process allowed to perform system I/O App App Libs Sys. Call Emulation Unit Redundant Processes • Identical address space, file descriptors, etc. • Not allowed to perform system I/O Watchdog Alarm Operating System Call Emulation Unit Creates redundant processes Barrier synchronize at all system calls Emulates system calls to guarantee determinism among all processes Detects and recovers from transient faults 52 Pin PLDI Tutorial 2007 Watchdog Alarm • Occasionally a process will hang • Set at beginning of barrier synchronization to ensure that all processes are alive

PLR Performance for single processor (PLR 1 x 1), 2 SMT processors (PLR 2

PLR Performance for single processor (PLR 1 x 1), 2 SMT processors (PLR 2 x 1) and 4 way SMP (PLR 4 x 1) Slowdown for 4 -way SMP only 1. 26 x 53 Pin PLDI Tutorial 2007

Conclusion Fault insertion using Pin is a great way to determine the impacts faults

Conclusion Fault insertion using Pin is a great way to determine the impacts faults have within an application • • • Easy to use Enables full program analysis Accurately describes fault behavior once it has reached architectural state Transient fault tolerance at 30% overhead • Future work 54 • Support non-determinism (shared memory, interrupts, multi-threading) • Fault coverage-performance trade-off in switching on/off Pin PLDI Tutorial 2007