...
- Assume different tools for different language but methods of packaging and distributing need to be similar.
- Full desktops apps -- for even command line tools with complex local configuration -- could be a support problem.
- A service-model could be useful to managers and architects providing oversight.
- Interesting in integrating compliance checking into Bamboo build process - implies scriptable command-line tools.
raeburn:
Bug detection is an important part, but the more general goal (for Ken's project) is code quality improvement. So while finding defects is important, even false positives that require careful inspection to identify as such may indicate areas where the code could be made clearer or more maintainable. Refactoring tools, especially if they automatically detect things like code duplication, may also be of use. (raeburn)
Tools or services to consider (list obviously needs winnowing to make manageable):
...
Compiler warnings:
- gcc (various)
- Sun compiler warningscc
- Windows compiler warnings?
- ...other compilers?
Lint variants:
- pc-lint/flexelint
- Solaris lint: supposedly significantly enhanced compared to traditional lintpc- lint/flexelint
- other flavors of lint?
- splint (already tried on parts of krb5 code, found some bugs, has issues).
- Web site: http://www.splint.org/
- Languages supported: C (C90, most C99 extensions, some GNU C extensions).
- License: GNU GPL
- Platforms: UNIX
- Problems detected include (list is excerpt from manual):
- Dereferencing a possibly null pointer
- Using possibly undefined storage or returning storage that is not properly defined
- Type mismatches, with greater precision and flexibility than provided by C compilers
- Violations of information hiding
- Memory management errors including uses of dangling references and memory leaks
- Dangerous aliasing
- Modifications and global variable uses that are inconsistent with specified interfaces
- Problematic control flow such as likely infinite loops, fall through cases or incomplete switches, and suspicious statements
- Buffer overflow vulnerabilities
- Dangerous macro implementations or invocations
- Violations of customized naming conventions.
- Observations: Splint maintenance seems minimal these days, and development pretty much stopped. The memory management tracking is interesting, based on the idea that one pointer handle "owns" an object at any one time, ownership can be transferred, functions shouldn't remember pointers they don't own, etc. However, it doesn't understand functions with different behavior in success and failure cases – - like C's very critical realloc. Inline comments in code can disable warnings, alert splint to memory ownership handling that's different from its default assumptions, etc.
- Web site: http://www.splint.org/
Other:
- cadvise (hpux only)
- calysto (work in progress by Domagoj Babic; already tried on krb5 code, found some problems; currently a service only, send email to developer)
- ccfinder, ccfinderx polyspace (www.mathworks.comccfinder.net; code clone finder; supports Java, C/C++, VB, C#; runs on Windows XP)
- checkstyle (checkstyle.sourceforge.net; runs many checks on java code including coding conventions, code duplication)
- codesonar (www.grammatech.com; commercial, free trial available; supports c/c++, Ada for embedded systems, runs on Windows, Linux and Solaris; does interprocedural, whole-program analysis)
- coverity (current status as of early February: Kerberos team evaluating)
- Eclipse metrics tools:
- flawfinder
- fortify findbugs (java only)
- fortify sca
- its4 (www.cigital.com/its4; not supported; just matches on token sequences in un-preprocessed code)
- klocwork insight, klocwork developer (www.klocwork.com; works on c, c++, java)
- pmd (java only)
- oink (based on cqual) www.cubewano.org/oink
- Pixy (http://pixybox.seclab.tuwien.ac.at/pixy/) checks PHP for XSS and SQL injection vulnerabilities.
- pmd fortify findbugs (java only)
- codesonar polyspace (www.grammatechmathworks.com; commercial, free trial available; supports c/c++, runs on Windows, Linux and Solaris; does interprocedural, whole-program analysis)
- fortify sca
- supports C/C++, Ada for embedded systems)
- PScan (format string problems mainly; flawfinder, RATS, and gcc can do similar things; server not responding 1/24)
- pychecker (Python only)
- rats (Rough Auditing Tool for Security; rough analysis intended as a starting point for manual analysis; http://www.fortifysoftware.com/security-resources/rats.jsp)flawfinder
- simian (similarity analyser; www.redhillconsulting.com.au/products/simian/overview.html; identifies duplication in c, c++, c#, java, html, ml, vb, text, etc; runs in .net 1.1 or java 1.4 or later; free for non-commercial or open source use)
- checkstyle (checkstyle.sourceforge.net; runs many checks on java code including coding conventions, code duplication)
- xrefactory (www.xref-tech.com; c and java refactoring tool and source browser; includes emacs support)
- ccfinder, ccfinderx (www.ccfinder.net; code clone finder; supports Java, C/C++, VB, C#; runs on Windows XP)
- unpaste (finds parallel syntactic constructs that are sometimes duplicated or nearly identical code)
- cadvise (hpux only)
- oink (based on cqual) www.cubewano.org/oink
- its4 (www.cigital.com/its4; not supported; just matches on token sequences in un-preprocessed code)
- rats (Rough Auditing Tool for Security; rough analysis intended as a starting point for manual analysis; http://www.fortifysoftware.com/security-resources/rats.jsp
)
- Veracode SecurityReview (binary code analysis service?)
- skavenger: mostly for php (fancy grep replacement, really?) (http://code.google.com/p/skavenger/)
- SmartRisk Analyzer (gone? originally @stake, which was acquired by Symantec)
- PScan (format string problems mainly; flawfinder, RATS, and gcc can do similar things; server not responding 1/24)
- calysto (work in progress by Domagoj Babic; already tried on krb5 code, found some problems; currently a service only, send email to developer)
- sparse (http://www.kernel.org/pub/software/devel/sparse/
)
- pychecker (Python only)
- Pixy (http://pixybox.seclab.tuwien.ac.at/pixy/
) checks PHP for XSS and SQL injection vulnerabilities.
- Eclipse metrics tools:
- xrefactory (www.xref-tech.com; c and java refactoring tool and source browser; includes emacs support)
- unpaste (finds parallel syntactic constructs that are sometimes duplicated or nearly identical code)
- Veracode SecurityReview (binary code analysis service?)
See also lists at:
- http://en.wikipedia.org/wiki/List_of_tools_for_static_code_analysis
- http://samate.nist.gov/index.php/Tools
- http://www.dwheeler.com/flawfinder/
(has commentary on some tools)
- http://www.securityfocus.com/tools/
There are also various tools out there for building analysis tools, like bddbddb or LLVM, but unless they easily enable some specific sorts of useful checks that are difficult to get through other tools, let's not invest effort at this time.
...