Typedevil: Dynamic Type Inconsistency Analysis for Javascript

Typedevil: Dynamic Type Inconsistency Analysis for Javascript

TypeDevil: Dynamic Type Inconsistency Analysis for JavaScript Michael Pradel∗x, Parker Schuh∗, and Koushik Sen∗ ∗EECS Department, University of California, Berkeley xDepartment of Computer Science, TU Darmstadt Abstract—Dynamic languages, such as JavaScript, give pro- of type number with undefined, which is benign when grammers the freedom to ignore types, and enable them to write running the program in its default configuration but causes concise code in short time. Despite this freedom, many programs a crash with a slightly different configuration. Finding these follow implicit type rules, for example, that a function has a particular signature or that a property has a particular type. problems is difficult because they do not always lead to obvi- Violations of such implicit type rules often correlate with prob- ous signs of misbehavior when executing the programs. How lems in the program. This paper presents TypeDevil, a mostly can developers detect such problems despite the permissive dynamic analysis that warns developers about inconsistent types. nature of JavaScript? The key idea is to assign a set of observed types to each variable, All three examples in Figure 1 share the property that property, and function, to merge types based in their structure, and to warn developers about variables, properties, and functions a variable, property or function has multiple, inconsistent that have inconsistent types. To deal with the pervasiveness of types. In Figure 1a, variable dnaOutputStr holds both the polymorphic behavior in real-world JavaScript programs, we undefined value and string values. In Figure 1b, function present a set of techniques to remove spurious warnings and leftPad sometimes returns an object and sometimes returns to merge related warnings. Applying TypeDevil to widely used a primitive string value. In Figure 1c, variable gb contains benchmark suites and real-world web applications reveals 15 problematic type inconsistencies, including correctness problems, objects that have different structural types. performance problems, and dangerous coding practices. This paper exploits the observation that inconsistent types often correlate with problems, and presents TypeDevil, a I. INTRODUCTION mostly dynamic analysis that detects inconsistent types in Dynamic languages, such as JavaScript, are becoming in- JavaScript programs. The analysis associates type information creasingly popular for client-side and server-side web applica- with each variable, property, and function, and records the tions, traditional desktop applications, and mobile applications. types of values observed at runtime. Based on this runtime One reason for this popularity is that dynamic languages do information, the analysis merges types that are structurally not require programmers to annotate their programs with type equivalent. Finally, the analysis reports potential problems information or to follow any strict typing discipline. This free- caused by variables, properties, and functions that have multi- dom allows programmers to write concise code in short time. ple inconsistent types. To avoid unnecessary warnings caused However, the freedom offered by dynamic languages often by source code that is intentionally polymorphic, the approach comes at the cost of hidden bugs. Since the language does not aggressively filters and merges warnings, for example, based enforce any typing discipline, no compile-time warnings are on “programmer beliefs” [14] inferred from the source code reported if a program uses and combines types inconsistently. and based on dataflow relations between variables. Even worse, many dynamic languages silently coerce values Our work is enabled by two observations about JavaScript from one type into another type, leading to incorrect behavior code that occurs in practice. First, we observe that, even without any obvious sign of misbehavior. though it is not required by the language, most code follows Figure 1 shows three type-related problems that may easily implicit type rules. We speculate that programmers voluntarily remain unnoticed. Each example is a previously unreported use consistent types because it facilitates humans to reason problem that we find in a popular JavaScript benchmark. Fig- about code. Second, we observe that inconsistent types either ure 1a shows code that concatenates strings into a larger string. originate from highly polymorphic yet correct code locations, Unfortunately, concatenating the initially undefined variable or from code locations where occasional inconsistencies cor- dnaOutputStr with a string results in a string that starts relate with problems that developers should be aware of. with “undefined”. Figure 1b shows code that pads a given TypeDevil leverages these two observations by inferring types string with empty characters until it reaches a particular length. from runtime behavior and by reporting occasionally observed, Unfortunately, the function returns a String object when the inconsistent types as likely problems. given string already has the desired length and a primitive Two kinds of existing analyses reason about types in dy- string value otherwise, which is problematic because these namic languages. First, static and dynamic type inference aims two types behave differently. Figure 1c shows the constructor at assigning types to variables and functions to show that the of an object and code that modifies the properties of this program is well-typed [4], [15], [18], [20], [21], [41]. Due to object. Unfortunately, this modification overwrites properties the inherent difficulties of analyzing dynamic languages and (a) (b) (c) Program regexp-dna (SunSpider) date-format-xparb (SunSpider) GB Emulator (Octane) Source code1 var dnaOutputStr; 1 String.leftPad= function(val, size, ch) {1 function GameBoyCanvas() { 2 for (i in seqs) { 2 var result = new String(val); 2 this.width = 160; 3 dnaOutputStr += seqs[i].source; 3 if (ch == null) ch = " "; 3 this.height = 144; 4 } 4 while (result.length < size) { 4 } 5 result = ch + result; 5 function initNewCanvas() { 6 } 6 gb.canvas.width = gb.canvas.clientWidth; 7 return result; 7 gb.canvas.height = gb.canvas.clientHeight; 8 } 8 } Inconsistent Variable dnaOutputStr has types Function leftPad has return types object Variable gb has inconsistent object types (e.g., types string and undefined and string gb.canvas.width has types number and undefined) Problem Incorrect string value “undefinedGTAGG..” Return values behave differently depending Crash when changing the emulator settings on the length of the given string Fig. 1. Real-world problems related to inconsistent types. due to intentionally polymorphic code, this approach either we show that TypeDevil reveals previously unreported requires type annotations, or it leads to various type errors problems in these programs. (Section V) that include many false positives. TypeDevil has a relatively low number of false positives because it uses a mostly dy- namic analysis, because it focuses on individual problematic II. OVERVIEW AND EXAMPLE code locations instead of inferring sound types for the entire program, and because it uses a set of novel techniques to This section illustrates our approach with a simple deal with intentionally polymorphic code. Second, optimizing JavaScript program. The program in Figure 2a defines a func- JIT compilers leverage static and dynamic type inference to tion addWrapped() that takes two numbers, each wrapped emit code specialized towards particular runtime types [19], into an object, and returns the sum of the two numbers. If only [23], [35]. Instead of improving the performance of existing one argument is given, then the function returns the number programs, TypeDevil warns developers about problematic code wrapped by this argument. Wrapped numbers are objects with locations. a property v that contains the number. To wrap a number, one To evaluate TypeDevil, we apply it to popular JavaScript can either call the Wrapper() constructor or use an object benchmarks and to real-world web applications. In total, the literal, such as fv:23g. The program calls addWrapped() analysis reports 33 type inconsistencies, of which at least 15 three times, passing a single argument in line 11, and two correspond to problematic code. The detected inconsistencies arguments in each of lines 12 and 14. The intended behavior lead to incorrect but not necessarily crashing behavior, such of the program is that all three calls of addWrapped() return as Figure 1a, expose error-prone programming practices, such 23. However, the call in line 14 accidentally uses a string "18" as Figure 1b, and cause crashes and other unintended behavior instead of the number 18. Since JavaScript silently coerces in executions that are slightly different from the analyzed values from one type to another, the program executes without executions, such as Figure 1c. The most prevalent root cause any warning. Line 3 coerces the number 5 into a string "5" for inconsistent types is that a variable, property, or function and then concatenates it with the string "18". As a result, the is unintentionally undefined. However, simply reporting all call in line 14 returns "185", and not the expected number occurrences of undefined would not only report many false 23. positives but also miss four of the 15 problems that TypeDevil TypeDevil detects such problems by dynamically analyz- detects. ing the program and by reporting variables, properties, and In summary, this work contributes the following: functions that have inconsistent

View Full Text

Details

  • File Type
    pdf
  • Upload Time
    -
  • Content Languages
    English
  • Upload User
    Anonymous/Not logged-in
  • File Pages
    11 Page
  • File Size
    -

Download

Channel Download Status
Express Download Enable

Copyright

We respect the copyrights and intellectual property rights of all users. All uploaded documents are either original works of the uploader or authorized works of the rightful owners.

  • Not to be reproduced or distributed without explicit permission.
  • Not used for commercial purposes outside of approved use cases.
  • Not used to infringe on the rights of the original creators.
  • If you believe any content infringes your copyright, please contact us immediately.

Support

For help with questions, suggestions, or problems, please contact us