Flexible and Optimal Dependency Management via Max-SMT

Donald Pinckney, Federico Cassano, Arjun Guha, Jonathan Bell, Massimiliano Culpo, Todd Gamblin
IEEE/ACM International Conference on Software Engineering (ICSE), 2023

Package managers such as NPM have become essential for software development. The NPM repository hosts over 2 million packages and serves over 43 billion downloads every week. Unfortunately, the NPM dependency solver has several shortcomings. 1) NPM is greedy and often fails to installs the newest versions of dependencies; 2) NPM’s algorithm leads to duplicated dependencies and bloated code, which is particularly bad for web applications that need to minimize code size; 3) NPM’s vulnerability fixing algorithm is also greedy, and can even introduce new vulnerabilities; and 4) NPM’s ability to duplicate dependencies can break stateful frameworks and requires a lot of care to workaround. Although existing tools try to address these problems they are either brittle, rely on post hoc changes to the dependency tree, do not guarantee optimality, and are not composable.

We present PacSolve, a unifying framework and implementation for dependency solving which allows for customizable constraints and optimization goals. We use PacSolve to build MaxNPM, a complete, drop-in replacement for NPM, which empowers developers to combine multiple objectives when installing dependencies. We evaluate MaxNPM with a large sample of packages from the NPM ecosystem and show that it can: 1) reduce more vulnerabilities in dependencies than NPM’s auditing tool in 33% cases; 2) chooses newer dependencies than NPM in 14% cases; and 3)chooses fewer dependencies than NPM in 21% cases. All our code and data is open and available.

PDF available on arXiv

  @inproceedings{pinckney:maxnpm,
    author = "Donald Pinckney and Federico Cassano and Arjun Guha and 
              Jonathan Bell and Massimiliano Culpo and Todd Gamblin",
    title = "Flexible and Optimal Dependency Management via Max-{SMT}",
    booktitle = "IEEE/ACM International Conference on Software Engineering",
    year = 2023
}