SEApr 27, 2017

Source File Set Search for Clone-and-Own Reuse Analysis

arXiv:1704.08395v124 citations
Originality Incremental advance
AI Analysis

This addresses a specific issue for software developers and security analysts in managing clone-and-own reuse, though it is incremental as it builds on existing similarity techniques.

The paper tackles the problem of identifying original software components from cloned code to assess bugs and vulnerabilities, proposing a code search method that achieved a recall of 0.907 for top-five components, outperforming a baseline with 0.773 recall.

Clone-and-own approach is a natural way of source code reuse for software developers. To assess how known bugs and security vulnerabilities of a cloned component affect an application, developers and security analysts need to identify an original version of the component and understand how the cloned component is different from the original one. Although developers may record the original version information in a version control system and/or directory names, such information is often either unavailable or incomplete. In this research, we propose a code search method that takes as input a set of source files and extracts all the components including similar files from a software ecosystem (i.e., a collection of existing versions of software packages). Our method employs an efficient file similarity computation using b-bit minwise hashing technique. We use an aggregated file similarity for ranking components. To evaluate the effectiveness of this tool, we analyzed 75 cloned components in Firefox and Android source code. The tool took about two hours to report the original components from 10 million files in Debian GNU/Linux packages. Recall of the top-five components in the extracted lists is 0.907, while recall of a baseline using SHA-1 file hash is 0.773, according to the ground truth recorded in the source code repositories.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes