detecting and escaping infinite loops with jolt michael carbin with sasa misailovic, michael kling,...

39
Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Upload: vivien-melissa-holland

Post on 17-Dec-2015

217 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Detecting and Escaping Infinite Loops with Jolt

Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard

Massachusetts Institute of Technology

Page 2: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Exceptions?

Page 3: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Our Research Context

Researcher

Developer

User

Page 4: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Motivation

• You run a program – Edit a document– Search for a keyword– Indent source code files

• Program infinite loops– You get no output– You lose your work

Page 5: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Logo courtesy J.D. Rhoades

Our Solution:

J lt

Automatically detect and escape infinite loops

Program produces output User doesn’t lose work

Page 6: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Basic Approach

1. Compile program with Jolt compiler. (adds instrumentation to mark loop boundaries)

2. Execute program.3. Program stops responding.4. Launch Jolt monitor.

– Monitor takes snapshots at each loop head.

– If two snapshots are same, infinite loop!

5. Jolt jumps to instruction after loop.

Page 7: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Does this work?

1. Are real infinite loops this simple?2. Does Jolt produce a safe execution?3. Does Jolt produce better output than

Ctrl-C?4. Does Jolt match the developer’s fix?5. Can this be implemented efficiently?

Page 8: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

stdout

Infinite Loop in Grep

v2.5

25th ECOOP

conf.in

v2.5.1

25th ECOOP

grep –E “[0-9]*” --color=always conf.in

Infinite Loop

Page 9: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Infinite Loop in Grep 2.5

1: void prline(regex_t regex, char *beg) { 3: while (true) { 4: int size = 0; 5: int off = match(regex, beg, &size); 6: if (off == -1) { 7: break; 8: } 9: char const *b = beg + off;10: fwrite(beg, 1, off, stdout);11: enable_color();10: fwrite (b, 1, size, stdout);11: disable_color();11: beg = b + size;12: }14: }

regex

“[0-9]*”

*beg“25th

ECOOP”

regex

“[0-9]*”

*beg“25th

ECOOP”

size 2

off 0rege

x“[0-9]*”

*beg“25th

ECOOP”

size 2

off 0

*b“25th

ECOOP”

regex

“[0-9]*”

*beg “th ECOOP”

size 2

off 6

*b“25th

ECOOP”regex

“[0-9]*”

*beg “th ECOOP”

size 0

off 0

*b“25th

ECOOP”

regex

“[0-9]*”

*beg“th

ECOOP”

size 0

off 0

*b“th

ECOOP”

Page 10: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Applying Jolt to Grep

Page 11: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Step 1: Compile Grep

JoltCompile

r

Adds instructions that mark loop boundaries.

Page 12: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Jolt Compiles Grep 1: void prline(regex_t regex, char *beg) { 2: … 3: 4: while (true) { 5: 6: int size = 0; 7: int offset = match(regex, beg, &size); 8: if (offset == -1) { 9:10: break;11: }12: char const *b = beg + offset;13: fwrite (b, sizeof (char), size, stdout);14: beg = b + size;15: }16:17: }18: …

Page 13: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Jolt Compiles Grep 1: void prline(regex_t regex, char *beg) { 2: … 3: jolt_loop_entry(ID); 4: while (true) { 5: jolt_loop_body(ID, &jolt_escape_dest); 6: int size = 0; 7: int offset = match(regex, beg, &size); 8: if (offset == -1) { 9: jolt_loop_exit(ID);10: break;11: }12: char const *b = beg + offset;13: fwrite (b, sizeof (char), size, stdout);14: beg = b + size;15: }16: jolt_escape_dest:17: …18: }

Page 14: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

• Grep runs as normal.• Control instrumentation overhead

~2.5%.

Step 2: Run Grep

Page 15: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

• Grep enters infinite loop, does not respond!

Step 3: Grep stops Responding

Page 16: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

• Jolt dynamically attaches to grep• Monitors execution

– Computes snapshot at each loop head– If two snapshots are the same, infinite

loop!

Step 4: Launch Jolt Monitor

Jolt

Page 17: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

How to Compute a Snapshot Efficiently

1. Log all registers and memory addresses that each loop iteration accesses.

2. Record the contents of these registers and addresses at the head of the loop.

Page 18: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Comparing Two Snapshots

• First, check if snapshots have the same accessed– Registers and– Memory addresses

• Next check if contents of– Accessed registers and– Accessed memory

addresses

are the same

regex “[0-9]*”

beg 0xdeadbeef

*beg “th ECOOP”

size 0

off 0

b 0xdeadbeef

*b “th ECOOP”

regex “[0-9]*”

beg 0xdeadbeef

*beg “th ECOOP”

size 0

off 0

b 0xdeadbeef

*b “th ECOOP”

Snapshot 1

Snapshot 2

Page 19: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

1: void prline(regex_t regex, char *beg) { 2: jolt_loop_entry(ID); 3: while (true) { 4: jolt_loop_body(ID, &jolt_escape_dest); 5: int size = 0; 6: int offset = match(regex, beg, &size); 7: if (offset == -1) { 8: jolt_loop_exit(ID); 9: break;10: }11: char const *b = beg + offset;12: fwrite (b, sizeof (char), size, stdout);13: beg = b + size;14: }15: jolt_escape_dest:16: }

Step 5: Jolt Exits the Loop

Page 20: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Output

Ctrl-C

Jolt

Page 21: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Does this work for Grep?

• Is it safe?• Yes, no side-effects (except on output files).

• Is it better than Ctrl-C?• Yes, continues to match additional lines and

files.

• Is it equivalent to the correct fix?• Yes, corrected by break if size is 0 (v2.5.1). • 3 years later no, v2.5.3 skips all size 0

matches.

25th ECOOP ‘11

Page 22: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Does this work in general?

Page 23: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

5 Applications and 8 Infinite Loops

1. ctags : line numbers of functions in code.– v5.5 : one loop in fortran module.– v5.7b : one loop in python module.

2. grep (v2.5): matches regexp against files (3 loops).

3. ping (v20100214): icmp utility.

4. indent (v1.1-svr 4): indents source code.

5. look (v1.9.1): matches a word against dictionary file.

Page 24: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Question #1

Are infinite loops this simple?

Benchmark

Detected

ctags-f Yesctags-p Yes

grep Yesping Yeslook Yes

indent No

7 of 8

Page 25: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Question #2

Does escape produce a safe execution?

• Methodology– Validated execution with Valgrind and by hand.– Tested over available infinite loop triggering

inputs.

• Results– Yes, side effects often localized = consistent

state. – Or, simple correctness invariants.

Page 26: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Question #3

Does Jolt produce a better output than Ctrl-C?

– Methodology• Defined output abstraction, and compared outputs.

– Results• Yes, errors often isolated to single output unit (e.g.,

file).

– Example• indent: correct indention resumes on next file.• Terminating indent deletes your source code!!!• Development hint: don’t update files in-place.

Page 27: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Question #4

Does escape model the developers’ fix?

– Methodology• Manually inspected a later version of each application.

– Results• ctags: no, output semantically different on some inputs.• grep: jolt matches fix for two of three loops (3 years).• ping, indent, look: yes, in all cases.

– Example• ping: developer used continue instead of break.

Page 28: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Can this be implemented efficiently?

Question #5

Benchmark

Overhead (%)

Detection(s)

ctags-f 7.3 0.319

ctags-p 5.2 0.334

grep 2.5 0.551*

ping 1.6 0.287

look 0.0 0.296

indent 8.4 x*Average over the three loops

Page 29: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Observations

• Infinite loops can (and often do) frustrate users.

• Infinite loops can be (and often are) simple.

• Errors are localized in some cases.

• Jolt’s results can be (and often are) better than no results at all.

• Applying Jolt can (and often does) model the developer’s fix.

Page 30: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Did We Just Solve the Halting Problem?

No

Page 31: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Limitations

• Jolt doesn’t detect infinite loops that always change state.– Though still possible to exit loop if user

desires.

• We did not consider busy-wait loops.– Though a good question is what does it

mean when a user thinks a program is waiting too long?

Page 32: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Future Work

• Off-the-shelf binaries - pure dynamic analysis

• Safety guarantees – shepherded execution

• Larger classes of loops - symbolic non-termination analysis

Page 33: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Related Work

• Bounding Loop Length– Detecting and Eliminating Memory Leaks Using Cyclic

Memory Allocation (Nguyen and Rinard, ISMM ‘07)

• Non-termination Provers– TNT (Gupta, et al.) using Invariant Generation (POPL

‘08)– Looper (Burnim, et al.) using Symbolic Execution (ASE

‘09)

• Termination Provers– Terminator (Cook, et al.) (PLDI ‘06)

Page 34: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Takeaway

Jolt gives users another option to deal with programs that infinite loop.

Another hammer in the toolbox to help users deal with otherwise fatal errors.

Page 35: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

From: "Armando Solar-Lezama" <[email protected]> To: "Martin Rinard" <[email protected]> Subject: Thanks

I was writing a document in Word this morning, and after about an hour of unsaved work, Word went into an infinite loop that made the application completely frozen.

So, having listened to your talks too many times, I got my debugger, paused the program, changed the program counter to a point a few instructions past the end of the loop, and let it keep running from there.

Word went back to working as if nothing had ever happened. I was able to finish my document, save it, and close Word without problems.

So thanks, Armando.

Thank You/Questions?

Page 36: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Supplementary Slides

Page 37: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Bug Reports

grep2.5 -- 13 Mar 2002

2.5.1 -- 29 Oct 2004

2.5.3 -- 02 Aug 2007

indent1994

ctags5.5 – 20035.7b –2007

Page 38: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Instrumentation Overhead

Bench. Average Lowest Highest

ctags-f 1.073 1.068 1.08

ctags-p 1.052 1.035 1.057

grep 1.025 1.014 1.028

ping 1.016 1.005 1.024

look 1 1 1

indent 1.084 1.082 1.086

Page 39: Detecting and Escaping Infinite Loops with Jolt Michael Carbin with Sasa Misailovic, Michael Kling, and Martin Rinard Massachusetts Institute of Technology

Detection Time

Bench. Time (s)Footprint

(b)Length

ctags-f 0.319 240 256

ctags-p 0.334 312 992

grep-c 0.585 992 4030

grep-cc 0.579 992 4036

grep-m 0.490 846 2506

ping 0.287 192 54

look 0.296 300 378