请输入您要查询的百科知识:

 

词条 Symbolic execution
释义

  1. Example

  2. Limitations

     Path explosion  Program-dependent efficiency   Environment interactions  

  3. Tools

  4. History

  5. See also

  6. References

  7. External links

In computer science, symbolic execution (also symbolic evaluation) is a means of analyzing a program to determine what inputs cause each part of a program to execute. An interpreter follows the program, assuming symbolic values for inputs rather than obtaining actual inputs as normal execution of the program would, a case of abstract interpretation. It thus arrives at expressions in terms of those symbols for expressions and variables in the program, and constraints in terms of those symbols for the possible outcomes of each conditional branch.

The field of symbolic simulation applies the same concept to hardware. Symbolic computation applies the concept to the analysis of mathematical expressions.

Example

Consider the program below, which reads in a value and fails if the input is 6.

int f() {

  ...  y = read();  z = y * 2;  if (z == 12) {    fail();  } else {    printf("OK");  }

}

During a normal execution ("concrete" execution), the program would read a concrete input value (e.g., 5) and assign it to y. Execution would then proceed with the multiplication and the conditional branch, which would evaluate to false and print OK.

During symbolic execution, the program reads a symbolic value (e.g., λ) and assigns it to y. The program would then proceed with the multiplication and assign λ * 2 to z. When reaching the if statement, it would evaluate λ * 2 == 12. At this point of the program, λ could take any value, and symbolic execution can therefore proceed along both branches, by "forking" two paths. Each path gets assigned a copy of the program state at the branch instruction as well as a path constraint. In this example, the path constraint is λ * 2 == 12 for the then branch and λ * 2 != 12 for the else branch. Both paths can be symbolically executed independently. When paths terminate (e.g., as a result of executing fail() or simply exiting), symbolic execution computes a concrete value for λ by solving the accumulated path constraints on each path. These concrete values can be thought of as concrete test cases that can, e.g., help developers reproduce bugs. In this example, the constraint solver would determine that in order to reach the fail() statement, λ would need to equal 6.

Limitations

Path explosion

Symbolically executing all feasible program paths does not scale to large programs. The number of feasible paths in a program grows exponentially with an increase in program size and can even be infinite in the case of programs with unbounded loop iterations.[1] Solutions to the path explosion problem generally use either heuristics for path-finding to increase code coverage,[2] reduce execution time by parallelizing independent paths,[3] or by merging similar paths.[4]

Program-dependent efficiency

Symbolic execution is used to reason about a program path-by-path which is an advantage over reasoning about a program input-by-input as other testing paradigms use (e.g. Dynamic program analysis). However, if few inputs take the same path through the program, there is little savings over testing each of the inputs separately.

Environment interactions

Programs interact with their environment by performing system calls, receiving signals, etc. Consistency problems may arise when execution reaches components that are not under control of the symbolic execution tool (e.g., kernel or libraries). Consider the following example:

int main()

{
  FILE *fp = fopen("doc.txt");  ...  if (condition) {    fputs("some data", fp);  } else {    fputs("some other data", fp);  }  ...  data = fgets(..., fp);

}

This program opens a file and, based on some condition, writes different kind of data to the file. It then later reads back the written data. In theory, symbolic execution would fork two paths at line 5 and each path from there on would have its own copy of the file. The statement at line 11 would therefore return data that is consistent with the value of "condition" at line 5. In practice, file operations are implemented as system calls in the kernel, and are outside the control of the symbolic execution tool. The main approaches to address this challenge are:

Executing calls to the environment directly. The advantage of this approach is that it is simple to implement. The disadvantage is that the side effects of such calls will clobber all states managed by the symbolic execution engine. In the example above, the instruction at line 11 would return "some datasome other data" or "some other datasomedata" depending on the sequential ordering of the states.

Modeling the environment. In this case, the engine instruments the system calls with a model that simulates their effects and that keeps all the side effects in per-state storage. The advantage is that one would get correct results when symbolically executing programs that interact with the environment. The disadvantage is that one needs to implement and maintain many potentially complex models of system calls. Tools such as KLEE,[5] Cloud9, and Otter[6] take this approach by implementing models for file system operations, sockets, IPC, etc.

Forking the entire system state. Symbolic execution tools based on virtual machines solve the environment problem by forking the entire VM state. For example, in S2E[7] each state is an independent VM snapshot that can be executed separately. This approach alleviates the need for writing and maintaining complex models and allows virtually any program binary to be executed symbolically. However, it has higher memory usage overheads (VM snapshots may be large).

Tools

Tool It can analyze Arch/Lang url Can anybody use it/ Open source/ Downloadable
angr libVEX based (supporting x86, x86-64, ARM, AARCH64, MIPS, MIPS64, PPC, and PPC64) http://angr.io/yes}}
BE-PUM x86 https://github.com/NMHai/BE-PUMyes}}
FuzzBALL VineIL / Native http://bitblaze.cs.berkeley.edu/fuzzball.htmlyes}}
Jalangi2 JavaScript https://github.com/Samsung/jalangi2yes}}
janala2Java https://github.com/ksen007/janala2yes}}
JBSEJava https://github.com/pietrobraione/jbseyes}}
jCUTEJava https://github.com/osl/jcuteyes}}
JPFJava http://babelfish.arc.nasa.gov/trac/jpfyes}}
KeYJava http://www.key-project.org/yes}}
Kite LLVM http://www.cs.ubc.ca/labs/isd/Projects/Kite/yes}}
KLEE LLVM https://klee.github.io/yes}}
Manticore x86-64, ARMv7, Ethereum Virtual Machine (EVM) / Native https://github.com/trailofbits/manticore/yes}}
Mayhem Binary http://forallsecure.comno}}
Mythril-Classic Ethereum Virtual Machine (EVM) / Native https://github.com/ConsenSys/mythril-classicyes}}
Otter C https://bitbucket.org/khooyp/otter/overviewyes}}
Pathgrind[8] Native 32-bit Valgrind-based https://github.com/codelion/pathgrindyes}}
Pex .NET Framework http://research.microsoft.com/en-us/projects/pex/no}}
pysymemu x86-64 / Native https://github.com/feliam/pysymemu/yes}}
Rubyx Ruby http://www.cs.umd.edu/~avik/papers/ssarorwa.pdfno}}
S2E x86, x86-64, ARM / User and kernel-mode binaries http://s2e.systems/yes}}
SymDroid Dalvik bytecode http://www.cs.umd.edu/~jfoster/papers/symdroid.pdfno}}
SymJS JavaScript http://www.cs.utah.edu/~ligd/publications/SymJS-FSE14.pdfno}}
Triton x86 and x86-64 http://triton.quarkslab.comyes}}
ExpoSE JavaScript https://github.com/ExpoSEJS/ExpoSEyes}}

History

The concept of symbolic execution was introduced academically with descriptions of: the Select system,[9]

the EFFIGY system,[10]

the DISSECT system,[11]

and Clarke's system.[12]

See a [https://github.com/saswatanand/symexbib bibliography] of more technical papers published on symbolic execution.

See also

{{Portal|Software Testing}}
  • Abstract interpretation
  • Symbolic simulation
  • Symbolic computation
  • Concolic testing
  • Control flow graph
  • Dynamic recompilation

References

1. ^{{cite book|last=Anand|first=Saswat|author2=Patrice Godefroid |author3=Nikolai Tillmann |title=Demand-Driven Compositional Symbolic Execution|journal=Tools and Algorithms for the Construction and Analysis of Systems, Lecture Notes in Computer Science|year=2008|volume=4963|pages=367–381|doi=10.1007/978-3-540-78800-3_28|series=Lecture Notes in Computer Science|isbn=978-3-540-78799-0}}
2. ^{{cite book|last=Ma|first=Kin-Keng|author2=Khoo Yit Phang |author3=Jeffrey S. Foster |author4=Michael Hicks |title=Directed Symbolic Execution|journal=Proceedings of the 18th International Conference on Statis Analysis|year=2011|pages=95–111|url=http://dl.acm.org/citation.cfm?id=2041563|accessdate=2013-04-03|isbn=9783642237010}}
3. ^{{cite book|last=Staats|first=Matt|author2=Corina Pasareanu |title=Parallel symbolic execution for structural test generation|journal=Proceedings of the 19th International Symposium on Software Testing and Analysis|year=2010|pages=183–194|doi=10.1145/1831708.1831732|isbn=9781605588230}}
4. ^{{Cite book|title = Efficient State Merging in Symbolic Execution|publisher = ACM|journal = Proceedings of the 33rd ACM SIGPLAN Conference on Programming Language Design and Implementation|date = 2012-01-01|location = New York, NY, USA|isbn = 978-1-4503-1205-9|pages = 193–204|series = PLDI '12|doi = 10.1145/2254064.2254088|first = Volodymyr|last = Kuznetsov|first2 = Johannes|last2 = Kinder|first3 = Stefan|last3 = Bucur|first4 = George|last4 = Candea|citeseerx = 10.1.1.348.823}}
5. ^{{Cite journal|title = KLEE: Unassisted and Automatic Generation of High-coverage Tests for Complex Systems Programs|url = http://dl.acm.org/citation.cfm?id=1855741.1855756|journal = Proceedings of the 8th USENIX Conference on Operating Systems Design and Implementation|date = 2008-01-01|pages = 209–224|series = OSDI'08|first = Cristian|last = Cadar|first2 = Daniel|last2 = Dunbar|first3 = Dawson|last3 = Engler}}
6. ^{{cite web|title=MultiOtter: Multiprocess Symbolic Execution|url=https://www.cs.umd.edu/~mwh/papers/multiotter.pdf|first = Jonathan|last = Turpie|first2 = Elnatan|last2 = Reisner|first3 = Jeffrey|last3 = Foster|first4 = Michael |last4 = Hicks}}
7. ^{{Cite journal|title = The S2E Platform: Design, Implementation, and Applications|journal = ACM Trans. Comput. Syst.|date = 2012-02-01|issn = 0734-2071|pages = 2:1–2:49|volume = 30|issue = 1|doi = 10.1145/2110356.2110358|first = Vitaly|last = Chipounov|first2 = Volodymyr|last2 = Kuznetsov|first3 = George|last3 = Candea}}
8. ^{{Cite book| title = Exploiting Undefined Behaviors for Efficient Symbolic Execution| journal = ICSE 2014| pages = 727–729| doi = 10.1145/2591062.2594450| year = 2014| last1 = Sharma| first1 = Asankhaya| isbn = 9781450327688}}
9. ^Robert S. Boyer and Bernard Elspas and Karl N. Levitt SELECT--a formal system for testing and debugging programs by symbolic execution, Proceedings of the International Conference on Reliable Software, 1975,page 234--245, Los Angeles, California
10. ^James C. King,Symbolic execution and program testing, Communications of the ACM, volume 19, number 7, 1976, 385--394
11. ^William E. Howden, Experiments with a symbolic evaluation system, Proceedings, National Computer Conference, 1976.
12. ^Lori A. Clarke, A program testing system, ACM 76: Proceedings of the Annual Conference, 1976, pages 488-491, Houston, Texas, United States

External links

  • Symbolic Execution for finding bugs
  • Symbolic Execution and Software Testing presentation at NASA Ames
  • [https://ti.arc.nasa.gov/publications/3007/download/ Symbolic Execution for Software Testing in Practice – Preliminary Assessment]
{{DEFAULTSORT:Symbolic Execution}}

2 : Abstract interpretation|Computer science

随便看

 

开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。

 

Copyright © 2023 OENC.NET All Rights Reserved
京ICP备2021023879号 更新时间:2024/9/22 0:58:10