prevalence of confusing code in software projects
play

Prevalence of Confusing Code in Software Projects Atoms of - PowerPoint PPT Presentation

Prevalence of Confusing Code in Software Projects Atoms of Confusion in the Wild Dan Gopstein NYU Hongwei Henry Zhou, Phyllis Frankl, Justin Cappos AtomsOfConfusion.com 1 Atoms of Confusion in the Wild if ((err =


  1. Prevalence of Confusing Code in Software Projects Atoms of Confusion in the Wild Dan Gopstein NYU Hongwei Henry Zhou, Phyllis Frankl, Justin Cappos AtomsOfConfusion.com 1

  2. Atoms of Confusion in the Wild if ((err = SSLHashSHA1.update(&hashCtx, &signedParams)) != 0) goto fail; goto fail; 2

  3. Atoms of Confusion in the Wild Apple’s Goto Fail bug if ((err = SSLHashSHA1.update(&hashCtx, &signedParams)) != 0) goto fail; goto fail; 3

  4. Atoms of Confusion in the Wild Apple’s Goto Fail bug if ((err = SSLHashSHA1.update(&hashCtx, &signedParams)) != 0) goto fail; goto fail; Two Atoms of Confusion: ● Assignment as Value ● Omitted Curly Brace 4

  5. Atoms of Confusion in the Wild Apple’s Goto Fail bug if ((err = SSLHashSHA1.update(&hashCtx, &signedParams)) != 0) { { goto fail; goto fail; Two Atoms of Confusion: } ● Assignment as Value ● Omitted Curly Brace 5

  6. Outline Atoms of Confusion are ... ● Confusing - Both in the lab and in the wild ● Prevalent - Occurring frequently in practice ● Buggy - Causing or correlated with faults 6

  7. Outline Atoms of Confusion are ... ● Confusing - Both in the lab and in the wild ● Prevalent - Occurring frequently in practice ● Buggy - Causing or correlated with faults 7

  8. Atoms of Confusion Understanding Misunderstandings in Source Code D. Gopstein, J. Iannacone, Y. Yan, L. DeLong, Y. Zhuang, M. Yeh, J. Cappos ESEC/FSE 2017 8

  9. Confusion When a person and a machine read the same piece of code, yet come to different conclusions about its output. printf("%d",013) 13 11 9

  10. Measurable printf("%d",013) printf("%d",11) 10

  11. Measurable printf("%d",013) printf("%d",11) 11

  12. Measurable printf("%d",013) printf("%d",11) 12

  13. Precise The smallest piece of code that can cause confusion Fluff Confusing Code Confusing Code Other Stuff 13

  14. Precise The smallest piece of code that can cause confusion Fluff Atom of Confusion Confusing Code Confusing Code Other Stuff 14

  15. Identified Atoms φ 15

  16. Atoms of Confusion φ = .63 φ = .48 Literal Encoding Logic as Control Flow printf("%d",013) V1 && F2() φ = .33 φ = .28 Operator Precedence Pre-Increment 0 && 1 || 2 V1 = ++V2; Understanding Misunderstandings in Source Code D. Gopstein, J. Iannacone, Y. Yan, L. DeLong, Y. Zhuang, M. Yeh, J. Cappos ESEC/FSE 2017 16

  17. Outline Atoms of Confusion are ... ● Confusing - Both in the lab and in the wild ● Prevalent - Occurring frequently in practice ● Buggy - Causing or correlated with faults 17

  18. Classifier if (x = 2) foo(); if = ; x 2 () foo 18

  19. Classifier if (x = 2) foo(); Classifier if = ; x 2 () foo 19

  20. Classifier if (x = 2) foo(); { Classifier if = Two Atoms of Confusion: ; x 2 ● Assignment as Value () ● Omitted Curly Brace foo 20

  21. Corpus 21

  22. How Often do Atoms Occur? 1 atom every ~12 lines 1 atom every ~44 lines 22

  23. Which Atoms Occur Most Frequently? 1 every ~51 lines 1 every ~1.6 million 23

  24. Are Confusing Patterns Less Common? φ 24

  25. Prevalent ulpmc->cmd = htobe32(V_ULPTX_CMD(ULP_TX_MEM_WRITE) | is_t4(sc) ? F_ULP_MEMIO_ORDER : F_T5_ULP_MEMIO_IMM); https://github.com/freebsd/freebsd/blob/3c60e22da7d4460db7adb2b916f55e22b7d60e26/sys/dev/cxgbe/tom/t4_ddp.c#L766 25

  26. Prevalent ulpmc->cmd = htobe32(V_ULPTX_CMD(ULP_TX_MEM_WRITE) | is_t4(sc) ? F_ULP_MEMIO_ORDER : F_T5_ULP_MEMIO_IMM); Contains: ● Operator Precedence ● Conditional Operator ● Implicit Predicate https://github.com/freebsd/freebsd/blob/3c60e22da7d4460db7adb2b916f55e22b7d60e26/sys/dev/cxgbe/tom/t4_ddp.c#L766 26

  27. Prevalent ulpmc->cmd = htobe32(V_ULPTX_CMD(ULP_TX_MEM_WRITE) | is_t4(sc) ? F_ULP_MEMIO_ORDER : F_T5_ULP_MEMIO_IMM); Contains: ● Operator Precedence ● Conditional Operator ● Implicit Predicate https://github.com/freebsd/freebsd/blob/3c60e22da7d4460db7adb2b916f55e22b7d60e26/sys/dev/cxgbe/tom/t4_ddp.c#L766 27

  28. Outline Atoms of Confusion are ... ● Confusing - Both in the lab and in the wild ● Prevalent - Occurring frequently in practice ● Buggy - Causing or correlated with faults 28

  29. Are Atoms Removed More In Bug Fix Commits? 29

  30. Are Atoms Commented More Often? 30

  31. Are Atoms Commented More Often? 1.00 31

  32. Buggy #define ABS(x) ((x) < 0 ? (-x) : (x)) https://github.com/torvalds/linux/commit/7aa92c4229fefff0cab6930cf977f4a0e3e606d8 32

  33. Buggy #define ABS(x) ((x) < 0 ? (-x) : (x)) ABS(1) => ??? https://github.com/torvalds/linux/commit/7aa92c4229fefff0cab6930cf977f4a0e3e606d8 33

  34. Buggy #define ABS(x) ((x) < 0 ? (-x) : (x)) ABS(1) => 1 https://github.com/torvalds/linux/commit/7aa92c4229fefff0cab6930cf977f4a0e3e606d8 34

  35. Buggy #define ABS(x) ((x) < 0 ? (-x) : (x)) ABS(1) => 1 ABS(-2) => ??? https://github.com/torvalds/linux/commit/7aa92c4229fefff0cab6930cf977f4a0e3e606d8 35

  36. Buggy #define ABS(x) ((x) < 0 ? (-x) : (x)) ABS(1) => 1 ABS(-2) => 2 https://github.com/torvalds/linux/commit/7aa92c4229fefff0cab6930cf977f4a0e3e606d8 36

  37. Buggy #define ABS(x) ((x) < 0 ? (-x) : (x)) ABS(1) => 1 ABS(-2) => 2 ABS(1-2) => ??? https://github.com/torvalds/linux/commit/7aa92c4229fefff0cab6930cf977f4a0e3e606d8 37

  38. Buggy #define ABS(x) ((x) < 0 ? (-x) : (x)) ABS(1) => 1 ABS(-2) => 2 ABS(1-2) => 1 https://github.com/torvalds/linux/commit/7aa92c4229fefff0cab6930cf977f4a0e3e606d8 38

  39. Buggy #define ABS(x) ((x) < 0 ? (-x) : (x)) ABS(1) => 1 ABS(-2) => 2 ABS(1-2) => 1 -3 X https://github.com/torvalds/linux/commit/7aa92c4229fefff0cab6930cf977f4a0e3e606d8 39

  40. Buggy #define ABS(x) ((x) < 0 ? (-x) : (x)) ABS(1-2) https://github.com/torvalds/linux/commit/7aa92c4229fefff0cab6930cf977f4a0e3e606d8 40

  41. Buggy #define ABS(x) ((x) < 0 ? (-x) : (x)) ABS(1-2) (( x ) < 0 ? (- x ) : ( x )) https://github.com/torvalds/linux/commit/7aa92c4229fefff0cab6930cf977f4a0e3e606d8 41

  42. Buggy #define ABS(x) ((x) < 0 ? (-x) : (x)) ABS(1-2) (( x ) < 0 ? (- x ) : ( x )) https://github.com/torvalds/linux/commit/7aa92c4229fefff0cab6930cf977f4a0e3e606d8 42

  43. Buggy #define ABS(x) ((x) < 0 ? (-x) : (x)) ABS(1-2) ((1-2) < 0 ? (-1-2) : (1-2)) https://github.com/torvalds/linux/commit/7aa92c4229fefff0cab6930cf977f4a0e3e606d8 43

  44. Buggy #define ABS(x) ((x) < 0 ? (-x) : (x)) ABS(1-2) ((1-2) < 0 ? (-1-2) : (1-2)) https://github.com/torvalds/linux/commit/7aa92c4229fefff0cab6930cf977f4a0e3e606d8 44

  45. Buggy #define ABS(x) ((x) < 0 ? (-x) : (x)) ABS(1-2) ((1-2) < 0 ? (-1-2) : (1-2)) -3 https://github.com/torvalds/linux/commit/7aa92c4229fefff0cab6930cf977f4a0e3e606d8 45

  46. Buggy #define ABS(x) ((x) < 0 ? (-x) : (x)) ABS(1-2) ((1-2) < 0 ? (-1-2) : (1-2)) -3 https://github.com/torvalds/linux/commit/7aa92c4229fefff0cab6930cf977f4a0e3e606d8 46

  47. Buggy #define ABS(x) ((x) < 0 ? (-x) : (x)) Macro Operator Precedence https://github.com/torvalds/linux/commit/7aa92c4229fefff0cab6930cf977f4a0e3e606d8 47

  48. Buggy 48

  49. Summary Atoms of Confusion are ... ● Confusing ○ Atoms are statistically more confusing than other code in the lab ○ Atoms are 13% more likely to be commented than other code ● Prevalent ○ We found millions of examples in our corpus ○ 1 in ~23 lines of code has an atom ● Buggy ○ Bug-fix commits are 25% more likely remove atoms ○ We found and fixed a handful of bugs in Linux 49

  50. Thank You Prevalence of Confusing Code in Software Projects Atoms of Confusion in the Wild Dan Gopstein NYU Hongwei Henry Zhou, Phyllis Frankl, Justin Cappos AtomsOfConfusion.com 50

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend