Artificial Intelligence and Machine Learning Research

Generating and Exploiting Automated Reasoning Proof Certificates

Moving toward a full suite of proof-producing automated reasoning tools with SMT solvers that can produce full, independently checkable proofs for real-world problems.

Posted

Automated reasoning refers to a set of tools and techniques for automatically proving or disproving formulas in mathematical logic.35 It has many applications in computer science—for example, questions about the existence of bugs or security vulnerabilities in hardware or software systems can often be phrased as logical formulas, or verification conditions, whose validity can then be proved or disproved using automated reasoning techniques, a process known as formal verification.15,26 When successful, formal verification can guarantee freedom from certain kinds of design errors, an outcome that is otherwise extremely difficult to achieve. Driven by such potential benefits, the past couple of decades have seen a dramatic improvement in the performance and capabilities of automated reasoning tools, with a corresponding explosion of use cases, including formal verification, automated test-case generation, program analysis, program synthesis, and many more.5,37,38

Back to Top

Key Insights

  • Automated reasoning tools are used to find bugs and security vulnerabilities in hardware and software systems or to guarantee that there are none, making it crucial such tools be trustworthy.
  • Having such tools produce formal proof certificates makes it possible to independently check their results, greatly improving trustworthiness.
  • We explain how this can be done for SMT solvers and show how proof certificates also open up new applications in proof assistant automation as well as regulatory compliance.

These applications rely crucially on automated reasoning tools producing correct results. However, ensuring correctness is a significant challenge. To meet the perpetual demand for better performance, automated reasoning tools have large and complex code bases, are highly optimized, and evolve rapidly, all of which puts their reliability at risk. While conventional software-engineering best practices can help, they are insufficient, especially when the goal is to provide incontrovertible mathematical guarantees. Formal verification of automated reasoning tools themselves requires an enormous effort and would have to be revisited every time the tools change. Fortunately, it is possible to provide strong correctness guarantees for an automated reasoner without having to trust the tool at all. The idea is to separate proof finding from proof checking. In contrast to the complex tools for finding proofs, automated proof checkers can be relatively simple (that is, a few thousand lines of code as opposed to a few hundred-thousand lines of code) and need only be revisited when the proof format changes, a relatively rare event. Because of their relative simplicity, proof checkers can also be vetted by the community when made open source. Even formal verification of simple proof checkers is not out of the question. It is also worth noting that proof checking can often be done offline, reducing the impact on performance.

The main challenge with this approach lies in the need to instrument automated reasoning tools to produce independently checkable proofs. First steps in this direction have already been taken for one class of tools, namely those that check the satisfiability of propositional (that is, Boolean) formulas, or SAT solvers. Thanks to steady progress in this area, most modern SAT solvers can produce proofs in standard formats (for example, DRAT23), which can then be independently checked by proof checkers for those formats.22

Many crucial industrial applications require more reasoning power than is provided by SAT solvers (an example is offered in the section titled Motivating Example) and often rely instead on solvers for Satisfiability Modulo Theories (SMT).11 SMT solvers accept a more expressive language and have specialized procedures for reasoning about data types that arise when modeling systems. Their additional power suits them for a wider array of applications but also makes producing proofs much more challenging.

In this article, we take the next step toward a full suite of proof-producing automated reasoning tools by demonstrating that SMT solvers can now produce full, independently checkable proofs for real-world problems using a rich set of constraints. This requires solving a series of challenging problems, both theoretical and technical. We stress that, although we focus on SMT solvers here, many of the ideas and techniques are broadly applicable to automated reasoning tools. We outline our approach, describe its implementation in the cvc5 SMT solver,6 and discuss several exciting applications unlocked by this new capability.

Back to Top

SMT Solvers

SMT solvers are satisfiability checkers: They take as input a logical formula and try to determine if the formula has a solution—that is, is satisfiable. More specifically, they are constraint solvers: They determine if there is a valuation of the formula’s variables that makes the formula true. Often, however, we are not interested in showing that a property, expressed as a formula F, is true in some cases; rather, we want to know if it is true in all cases. Technically, we are interested in proving that F is valid—that is, unfalsifiable. This can be done with SMT solvers by checking if the negation of the formula, ¬F, is false in all cases, or unsatisfiable. A proof of the unsatisfiability of ¬F provides evidence that F is valid. Since valid formulas are often referred to as theorems, SMT solvers can then serve both as constraint solvers and as theorem provers.

What distinguishes SMT solvers from other automated reasoning tools is that they are specialized to reason about logical theories that formalize the main data types used in computer science, such as finite and infinite precision integer/rational numbers, floating point numbers, strings, arrays, sequences, records, and finite sets. In a precise sense, SMT solvers know about the salient algebraic properties of the types mentioned above. Their theories are built in. The details of how this is done are beyond the scope of this article but can be found in the literature—for example, Barrett et al.10 and Barrett and Tinelli.11

Motivating example. The security of data in the cloud relies on tightly controlling who has access to it. At Amazon Web Services (AWS), for example, the Identity and Access Management (IAM) policy language encodes access-control information as a JSON document (a structured text format supporting hierarchy and key/value pairs). Each data request is evaluated against the control policy to determine if it is permitted. The power of conventional testing in this context is quite limited, both theoretically and practically, since the policy language allows the use of unbounded strings, making the number of possible requests essentially infinite. In contrast, it is possible to reason formally and symbolically about both policies and requests using SMT solvers,3 as we describe next.

For private data, a key property that one may want to check is that the data cannot be accessed from outside of a given organization. We can capture this requirement as a policy that defines an upper bound for allowable requests. Figure 1a shows an example of such a boundary policy. The policy allows access only to resources with the prefix bucket/private/, and only from within the VPN vpc-123. Consider now the specific policy shown in Figure 1b. To show that it complies with the boundary policy, we must prove that every request it accepts is also accepted by the boundary policy. We can do this by constructing a formula P defining the requests allowed by the boundary policy and a formula B defining the requests allowed by the bucket policy, and then asking a solver whether the implication BP always holds. In this case, P can be encoded using the theory of strings as prefixof("bucket/private/“, r) ∧ vpcExistsvpc"vpc-123", where r and vpc are string variables that represent the resource and PN values of the request, and vpcExists is a Boolean variable indicating whether the VPN is defined in the request or not. The semantics of prefixof is defined by the theory of strings and is true if r has the string "bucket/private" as a prefix. B can be encoded similarly.

f1.jpg
Figure 1. Example access policies.

If BP holds, then the policy is compliant, and a proof-producing SMT solver can generate a proof effectively demonstrating why. The example bucket policy is indeed compliant, because the first part only allows the retrieval of objects from bucket/private/reports, and the second part denies requests that do not match the VPN vpc-123.a

Back to Top

Producing Proofs in SMT Solvers

We now move to the question of how best to produce proofs in SMT solvers. We distinguish here a proof, generated internally by the solver using a suitable data structure, from a proof certificate, a representation of the proof emitted by the solver for external consumption. Proof certificates are discussed later in the article.

As mentioned above, instrumenting solvers to be proof-producing in a way that is comprehensive and minimally impacts performance is a hard technical problem. It is no surprise that even though several SMT solvers with proof-producing capabilities have been developed,13,16,19,24 each targets a different proof format, uses a unique and insulated toolchain, and, more importantly, has one or more of the following shortcomings:

  • Does not produce detailed enough proofs, thereby requiring a high-complexity proof checker.
  • Has non-proof-producing, performance-critical components, so the solver is unusable or unacceptably slow when producing proofs.
  • Emits proof certificates only checkable in a monolithic setup, rendering them unusable outside that setup.

In the following, we describe how to overcome these shortcomings and produce fast, comprehensive, and flexible proofs which are also simple to check.


Formal verification can guarantee freedom from certain kinds of design errors, an outcome that is otherwise extremely difficult to achieve.


Proof representation. In general, SMT solvers check the joint satisfiability of a set {F1,…,Fn} of input formulas. The solver concludes that the input set is unsatisfiable when it can prove ⊥, the universally unsatisfiable formula, from the assumptions {F1,…,Fn}.

A proof is a justification, via a series of proof steps, for deriving a conclusion from a set of assumptions. Each proof step is the application of a proof rule, which infers a formula, the conclusion of the rule, from zero or more premises. Premises must either be assumptions or previously inferred formulas. Rules without premises are typically used to introduce either valid formulas (for example, t = t, for some term t) or assumptions in a proof. Proof rules with premises are applicable only when their premises match previously inferred formulas. Each rule must be sound, a technical notion guaranteeing the rule’s conclusion logically follows from its premises. A proof-producing solver fixes a set of sound proof rules and produces proofs based on them. Rule soundness is argued for externally to the proof-checking mechanism, and hence the rules are part of the solver’s trusted core—that is, a part of the system that must be trusted as opposed to a part of the system that is being checked.

A proof can be represented internally in the solver as a directed acyclic graph whose nodes represent individual proof steps. Each proof node stores a reference to the applied proof rule and the inferred conclusion. Edges in the graph connect a proof node to nodes representing its premises, if any. A proof graph is well formed if it is acyclic and each node represents a proof step that applies its corresponding proof rule correctly. A well-formed proof of a formula F from some assumptions {F1,…,Fn} has a single root node, with F as its conclusion. Its leaves are either valid formulas or assumptions taken from {F1,…,Fn}.

Producing modular proofs. Most SMT solvers are based on a common architecture (see, for example, Barrett et al.10 or Nieuwenhuis et al.30) with the following main components:

  • A preprocessing module, which simplifies the input formulas as much as possible.
  • A clausifier, which converts the preprocessed formulas into a formula F that is a conjunction of clauses. Each clause is a disjunction of literals, where a literal is either a theory atom or the negation of a theory atom.
  • A SAT engine, which reasons about the Boolean abstraction of F (where each theory atom is treated as a Boolean variable) and searches for a solution.
  • A combination of theory solvers, each specialized for a single theory. Whenever, during its search, the SAT engine assigns a value to a variable, the corresponding literal is sent to the theory solvers as an assertion. The theory solvers cooperatively check the satisfiability of these assertions with respect to their theories and produce either a solution, when the assertions are jointly satisfiable, or an explanation (an unsatisfiable subset of the assertions) when they are not. Theory solvers can also produce lemmas, formulas that are valid in the theory and aid the SAT engine in its search.
  • Several theory rewriters, each implementing a set of theory-specific rewrite rules used to simplify terms in F.

For an SMT solver to produce proofs, each of the above components must be instrumented accordingly. Fortunately, this can be done modularly: Each component produces proofs for its own reasoning steps, and these are then combined to form the full proof. The process starts with a Boolean proof produced by the SAT engine, which justifies the (prepositional) unsatisfiability of its clauses. These clauses either come from the clausifier or are lemmas or explanations from the theory solvers, and thus proofs of the clauses can be obtained from those modules. The clausifier, in turn, receives its input from the output of the preprocessing module, and both the preprocessing module and the theory solvers use proof steps that depend on the theory rewriters.

Producing well-formed proofs. It is of course possible to make mistakes when instrumenting a solver to produce proofs. Such mistakes manifest as ill-formed proofs. Proofs can be complex and very large, making proof debugging rather challenging. The ability to identify errors early on and pinpoint their source is crucial. Three types of errors can occur in proof graphs:

Type 1: Erroneous proof step. A node’s premises and conclusion are not a valid instance of its associated proof rule.

Type 2: Cyclic proof. The graph has a cycle, that is, a proof node has itself as a descendant, making the proof meaningless.

Type 3: Open proof. The proof relies on assumptions other than the allowed ones provided as input.

Type 1 errors result when the code that creates a proof node is faulty. Type 2 errors are possible because of proof transformations that change a proof node’s children. Type 3 errors are possible when a proof system contains rules that introduce local (temporary) assumptions. For instance, a rule may allow proving an implication of the form PQ by temporarily assuming P and then proving Q based on the assumption P. Once Q is proved, the assumption P is discharged to obtain the conclusion PQ, with P no longer considered an assumption in the resulting proof. If the proof fails to discharge such an assumption, the proof is left open. Type 1 errors can be detected by employing an internal proof checker which, when enabled, is immediately applied to each proof node as it is generated. Errors are thus detected at proof node creation time, making them much easier to localize. The checker must implement a checking method for each supported proof rule. Type 2 and 3 errors can be caught with more expensive checks, which do a full traversal of the current proof graph. Such checks can be made available as debugging aids but should be disabled during normal use.


Automated reasoning tools have large and complex code bases, are highly optimized, and evolve rapidly.


As mentioned, proofs are highly modular, which also makes it possible to debug them modularly. Each time a component noted in the Producing Modular Proofs section produces a proof, it can be checked for the three types of errors mentioned above. And error checking can be done again each time two proofs are combined. This makes it possible to distinguish errors originating within a component from errors introduced during proof combination.

Producing proofs efficiently. SMT solver performance is critical, so it is important to ensure that it is minimally impacted by the proof infrastructure. One powerful technique for controlling proof overhead is lazy proof generation. The idea is to generate only a proof sketch at solving time—a high-level proof composed of simpler, unproven lemmas—and convert this to a full proof after the solver determines the unsatisfiability of the input. There are two main advantages to this approach:

  • It is simpler and less invasive to generate proof sketches. This helps not only with performance but also with keeping the implementation effort low.
  • During the search phase of solving, many directions are explored and lemmas are generated that end up being irrelevant to the final proof. By delaying the generation of detailed proofs, only the lemmas required in the final proof must be expanded.

Lazy proof generation is a key feature of the DRAT proof format23 used by SAT solvers, and several ways of expanding (also known as elaborating) DRAT proofs have been proposed.17,25,27 Lazy proof generation has also been explored in the context of SMT24 to generate proofs in cvc5‘s predecessor, CVC4.9,b In that work, the only information kept during solving is the list of derived lemmas and explanations. The elaboration process then consists of invoking a separate proof-producing instance of the component associated with each lemma or explanation.

We improve on this approach in several ways. First, we use a more general notion of a lazy proof. In particular, we introduce a new kind of proof node, a lazy proof node, containing the conclusion F as well as a reference to a proof generator.c The proof generator encapsulates the information necessary to compute a standard proof node Nconcluding F, possibly including references to other lazy proof nodes.d Proof generators can be configured to compute N eagerly when the lazy proof node is first constructed, or later, during the elaboration of the lazy proof. As a general rule, a proof step should be generated eagerly only when the cost of doing so is less than or comparable to that of storing the information needed by the corresponding proof generator. A theory solver for equality and uninterpreted functions, for example, could produce proofs eagerly, since its explanation method typically already generates all the information necessary for proof-production (see, for example, Nieuwenhuis and Oliveras29).

Another important innovation is the use of macro steps. A macro step compresses the result of applying several proof rules into a single proof node. An example would be deriving ¬A from AB and ¬B. This step can be justified in terms of basic proof steps as follows: locally assume A; derive B from AB; derive a contradiction with ¬B; and conclude ¬A from the contradiction. Using macro rules reduces the size of proofs and eases the implementation burden when trying to capture multi-step reasoning. On the other hand, such rules complicate the job of the proof checker. To avoid this, we propose expanding macro steps into their more basic parts as a post-processing step. Post-processing is invoked after solving is complete and includes invoking the proof generators of lazy proof nodes and connecting sub-proofs produced by different components. A useful byproduct of our approach is that it can support proofs at different levels of granularity—with or without macro steps.

Proof certificates and proof checking. A proof certificate is a textual representation of a proof. Checking a proof certificate for the unsatisfiability of a set F of formulas amounts to checking that it represents a well-formed proof of ⊥ from F. Whereas there is an extensive literature on proof procedures in SMT, as well as some consensus on how best to implement them, there is much less consensus on what specific form a proof certificate should take.

We can agree that a proof certificate for an unsatisfiable set F should be in a formal language and provide convincing evidence of F‘s unsatisfiability. This is a minimal requirement for the certificate to be checkable by a separate tool. Even so, the certificate could still take many forms, each differing in syntactic structure, level of detail, or both. A pragmatic criterion for the acceptability of a proof certificate format, which we espouse and propose here, is that checking proof certificates must be fundamentally simpler than finding the proof in the first place. It is reasonable to expect, for instance, that certificates be checkable in time polynomial (ideally, linear) in their size. A proof checker should not need complex data structures or, worse, expensive search algorithms to check a certificate. Such needs would greatly increase the checker’s complexity, thereby defeating the purpose of making the checker easy to trust.

An orthogonal challenge for identifying a suitable proof certificate format is that different SMT solvers rely on different solving techniques and proof procedures. Since a proof is a record of the arguments used internally by the solver, these differences mean that solvers may have highly diverse requirements for a proof certificate format.e

Ultimately, proof certificates must be understood by a proof checker, so the design of the proof checker also influences design decisions about the format. One appealing approach for proof checking is to embed a proof checker within an existing trusted system, such as a proof assistant. Proof assistants are powerful, interactive theorem-proving systems that rely on manual effort and expertise to produce proofs. So-called skeptical proof assistants are designed with a small trusted kernel, a designated part of the system whose correctness must be trusted. By design, all other parts of the system inherit their correctness from the correctness of the kernel. Widely used skeptical proof assistants such as Coq40 and Isabelle/HOL31 have time-tested kernels generally regarded as highly trustworthy. The input languages of proof assistants are typically quite powerful (that is, both Turing-complete and feature-rich) to facilitate the construction of proof scripts and tactics for guiding proof search tasks.f These features make skeptical proof assistants an attractive environment for developing a proof checker. Proof checkers embedded in proof assistants can be proved correct within the proof assistant itself. Alternatively, they can be used to translate proof certificates into trusted theorems based on the proof assistant’s kernel. In either case, the only trusted component of the entire tool chain (including the proof-producing SMT solver) is the proof assistant’s kernel. Alethe36 is an emerging format for SMT proofs designed with proof assistant integration in mind. The Alethe format currently supports proofs for a subset of SMT theories and has been co-designed with proof checkers written within Coq and Isabelle/HOL. This means that for problems in the SMT fragment supported by Alethe, one can use proof checkers embedded in proof assistants to achieve the highest level of confidence currently possible for SMT solver results. Alternatively, proof checking can be performed by standalone checkers whose trustworthiness must be established independently. Such checkers are more easily extensible, since the new extensions do not have to be formally verified in a proof assistant. Furthermore, standalone checkers are typically much more efficient than checkers built within proof assistants, especially when dealing with large proof certificates. The main reason for this is that the execution speed of programs in proof assistants can be quite slow.g An effort to address this issue is part of the motivation behind a more recent proof assistant called Lean.18 A successful example of a format specifically co-designed with an accompanying, high-performance, stand-alone checker is a logical framework with side conditions,h or LFSC.39

Though the full LFSC checker must be trusted, it is nevertheless fairly small, comparable in size to a trusted kernel of a proof assistant. A distinguishing feature of the LFSC proof checker is that it takes as input not just a proof certificate but also a logical specification, referred to as a signature, of the proof system (essentially, the proof rules) used to build the proof. This feature makes it possible to specify any proof system used by a specific SMT solver without having to change the proof format or the checker. This great level of flexibility comes at the cost of having to also trust the signature provided to the checker as well as the checker itself.

Back to Top

Implementation

We have implemented our approach in cvc5, an efficient and full-featured open-source SMT solver.6 In this section, we provide some insights gained by this implementation effort. Additional details can be found in Barbosa et al.8

Instrumenting modules to produce proofs. We instrumented each of the previously mentioned modules in cvc5 to produce proofs. The preprocessing module in cvc5 consists of 34 distinct passes, each of which presents unique challenges. As an example, in one pass, an input of the form x = t, F1,…,Fn (with x not occurring in t) is transformed into cacm6610_a.gif where, for cacm6610_b.gif is the result of replacing all occurrences of x in Fi by t. Notably, this preprocessing pass has resisted previous attempts at proof production. Specifically, it is mentioned in Barbosa et al.7 as beyond the scope of their approach. cvc5 fully supports proofs for this pass with negligible overhead during solving by leveraging a macro step for substitution coupled with lazy proof generation.

cvc5 uses a modified version of MiniSat20 for its SAT engine, which we have instrumented to be proof-producing. As mentioned earlier, modern SAT solvers have native support for the DRAT proof format. Integrating such a SAT engine in cvc5 is part of the road-map for future work.

The theory solvers and rewriters in cvc5 implement theory-specific reasoning, and for non-trivial theories, they can be quite involved. Instrumenting these modules thus requires a commensurate amount of effort, which can be significant. To better understand what is required, we consider the theory of strings.

The string solver in cvc5 comprises approximately 20,000 lines of C++ code. The theory solver takes as input a set of literals and deduces new literals from that set. For each deduced literal l, the solver can produce an explanation of the form l1 ∧ ··· ∧ lnl, where {l1,…,ln} is a subset of literals from the current input set. Internally, the solver consists of several different layers, each providing a solver for a different fragment of the theory.14 The layers are invoked in sequence, with more costly layers used only if the cheaper ones fail to make new deductions. This is important for performance because the worst-case computational complexity of constraint solving in different fragments of the same theory can vary greatly, as shown in Figure 2 for the theory of strings over a finite alphabet.

f2.jpg
Figure 2. An example of layering string constraints and the computational complexity of each layer.

At the core layer of cvc5's solver for the theory of strings is a procedure that infers consequences of the basic axioms of equality. For instance, from the literals x = x2, x1 = x2, and x1 · y1x2 · y2 (__ · __ denotes string concatenation), it can infer x · y1x · y2. The next layer performs a basic form of string-specific reasoning based on word equations—that is, (dis)equalities between concatenations of string variables and string literals.28 This layer can infer y1y2 from x · y1x · y2, or ⊥ from "abc"·y1 = "b"·y2. Reasoning about string-length constraints is done in cooperation with a theory solver for linear integer arithmetic. Another layer processes constraints containing string operators other than concatenation by simplifying them based on the current set of literals34 and lazily reducing them to word equations, length constraints, and quantified constraints.33 Across the various layers in the string solver, we currently distinguish between 72 string-specific inferences, each captured by a proof rule. Additional non-string-specific rules are used to capture inferences for the equality, arithmetic, and quantifier reasoning proof steps the string solver relies on.

The theory rewriter for strings in cvc5 consists of 183 individual rewrite rules. A detailed proof requires proof steps for each of the relevant applications of these rewrite rules. We do this lazily using a rewrite rule DSL coupled with a proof-reconstruction algorithm.32

Proof-certificate formats. Given the existence of various proof-certificate formats, each with their own tradeoffs, we built cvc5‘s proof infrastructure to be flexible enough to support multiple formats. We achieved this by applying proof post-processing mechanisms like those described for lazy proofs. The final proof produced by cvc5 in its internal proof system is converted, step by step, to a proof-tree data structure that captures the abstract syntax of proofs in the target proof certificate format. Since the level of granularity, term representation, and allowed proof rules may vary significantly between internal and target formats, the conversion is more than just a syntactic translation. In fact, it often requires elaborate transformations.i Once the proof has been converted, a pretty printer is used to produce a proof certificate in the concrete syntax of the target format. We have implemented proof converters in cvc5 for both Alethe and LFSC. For LFSC, we have also developed signatures that capture cvc5‘s own proof system, making the conversion fairly direct. Note that these signatures are more general than the ones developed for CVC4, which also generated LFSC proof certificates.24,39 At the same time, we are collaborating with the developers of Alethe, Isabelle/HOL, and Coq to improve and extend both the Alethe format itself, as well as Isabelle’s and Coq’s support for it, to increase the range and expressiveness of SMT formulas that can be checked with these tools.


SMT solvers can serve both as constraint solvers and as theorem provers.


Finally, we have taken promising initial steps toward a third proof converter for the Lean proof assistant. Our Lean converter is similar in spirit to the LFSC one in that it relies on a formalization in Lean of cvc5‘s proof system. The goal in this case is to achieve the flexibility and proof-checking performance afforded by LFSC’s standalone checker while also being able to prove the correctness of cvc5‘s proof system in Lean itself.

Back to Top

Applications

The most obvious benefit of proof production is the ability to reduce the size of the trusted code base. However, there are many other potential advantages. Our experience with cvc5 suggests that instrumenting a solver to produce proofs improves the quality of its code. This is because proof instrumentation requires the code to be clear and modular and often uncovers bugs and other issues. Additionally, proof infrastructure is a valuable debugging aid not only for proofs but also for the SMT solver itself. For example, if the solver incorrectly finds an input formula unsatisfiable, then either the attempt to produce a proof will fail or an incorrect proof will be generated. In the first case, the place in the solver’s code where proof generation fails provides a good indication of where the problem is. In the second case, a proof checker (either internal or external) can identify the problem, serving effectively as a test oracle for the solver. Beyond these benefits to SMT solver developers, proofs open the door to many potential novel applications. Here, we mention just two: automation for proof assistants and regulatory compliance automation.

Automation for proof assistants. As previously discussed, proof assistants can be used to construct highly trustworthy proof checkers for SMT proofs. However, the ability to communicate between SMT solvers and proof assistants is also useful in the other direction, to bring more automation to proof assistants.

Proof assistants allow users to formulate conjectures and then prove them using a sequence of steps. Each step consists of the application of a proof rule built into the assistant or the application of a previously proved lemma. A limited degree of automation is provided by tactics, small programs that attempt to prove conjectures by systematically applying different rules and lemmas. However, these tactics fall short of the degree of automation provided by an SMT solver. This gap can be addressed with a proof-producing SMT solver and a proof checker embedded in the proof assistant. When a proof step requires only reasoning in a logical fragment understood by SMT solvers, a lemma required to complete the proof step is automatically extracted and translated into an SMT formula. The formula is then sent to the SMT solver (used as a theorem prover) which produces a proof certificate for it. This certificate can then be fed to the proof checker in the proof assistant. If the check is successful, the checker will have produced precisely the lemma needed to complete the original proof step.

The SMTCoq21 and Sledgehammer12 tools implement this workflow (for fragments of the full SMT language) for the Coq40 and Isabelle/HOL31 proof assistants, respectively. Ongoing efforts by the authors and others aim to extend these tools and to provide similar functionality for the Lean18 proof assistant.

Regulatory compliance automation. Government regulation and industry standards are designed to give us confidence that the products and infrastructure we use are safe. For companies that build, operate, or use information technology (IT), various regulations apply, depending on which technologies they use, which industries they are a part of, and which countries they operate in. The Payment Card Industry Security Standards Council, for example, defines the “Payment Card Industry Data Security Standard” (PCI-DSS) for organizations that handle branded credit cards from the major card schemes. As the world increasingly relies on IT, more government regulation and industry standards will be common.

Regulation comes at a cost, and organizations today take on time-consuming and expensive processes to ensure compliance with these regulations. Moreover, since irrefutable evidence is hard to construct, compliance audits often must be performed by independent and industry-trusted third-party organizations. AWS, for example, works with independent third-party auditors on thousands of certifications, frameworks, and requirements worldwide. These audits are typically manual and slow. The result, both for AWS and other organizations that use IT, is that their products and services are more costly to launch, operate, and maintain.

Compliance automation has the potential to provide safety guarantees that are comparable to—or even stronger than—those provided by current techniques while dramatically lowering the cost and time required. The challenges for compliance automation in this context are usually computational in nature. In particular, showing compliance typically requires reasoning about the reachability of states in a computer system. PCI-DSS 1.3.1, for example, asks if there exists an execution that would allow unauthorized access into the defined DMZ.j If we attempt to check this with exhaustive testing, we must test all possible interactions of the branching behaviors of the underlying programs and hardware systems, and thus the size of the set of scenarios quickly grows intractably large.

Fortunately, automated reasoning tools can solve many of these kinds of problems efficiently in practice. Collins Aerospace, for example, uses them in the certification of airborne systems and air traffic management systems.41 In AWS’s spring 2021 audit for PCI-DSS, automated reasoning solvers were used to automatically check PCI controls on ingress and egress (PCI-DSS requirements 1.3.x), default deny-all for logical access (requirement 7.2), network security (requirement 4.1), and required logging metadata (requirements 10.x). The solver-based approach decreased the time for evidence collection and audit for relevant controls by a factor of 10.8. Furthermore, the solver-based approach provided exhaustive coverage, whereas the previous audit techniques were based on sampling.

While these initial efforts are extremely promising, a remaining challenge is to convince auditors to accept the solver results as evidence of compliance. This is where proof certificates play a key role. If the solver produces a result that can be independently confirmed by a trusted proof checker, this provides the assurance required for the result to be accepted as evidence by auditors. Indeed, in the aforementioned AWS audit, the third-party auditor extended its criteria for evidence to include the output of automated reasoning solvers that produce auditable proofs.1 Figure 3 shows the envisioned scheme for automated regulatory compliance based on proof production and proof checking. Currently, cvc5 is the only SMT solver compatible with this workflow, and as a result, it is being used by AWS to produce evidence for compliance whenever possible (in particular, it is being used for the PCI-DSS requirements mentioned above).

f3.jpg
Figure 3. Overview of automated compliance checking using proof certificates: 1) auditors and auditee agree on a model of the system and the controls for ensuring a compliance requirement, 2) a solver proves the model complies with the controls and produces a proof certificate, and 3) an independent proof checker ensures the validity of the proof certificate.

Back to Top

Conclusion

Independently checkable proofs are an exciting new emerging capability in automated reasoning tools. In addition to vastly improving the trustworthiness of these tools, they have the potential to enable a host of new directions and applications, including better integration of tools and automatic generation of evidence for IT regulatory compliance.

Implementing proof production is a significant challenge. We have presented several key ideas to help address the challenge, including modular proof design, online error-checking, and the use of lazy proofs and macro steps. We have implemented these ideas in the cvc5 SMT solver, and our initial efforts have already confirmed its usefulness and viability for improving proof assistant automation and for automating regulatory compliance in an industrial setting.

Back to Top

Back to Top

Back to Top

 

    1. Amrutesh K. and Cook, B. How I learned to stop worrying and start applying automated reasoning. In Proceedings of the 33rd Intern. Conf. on Computer-Aided Verification (2021); https://bit.ly/3QO7vLt.

    2. Andreotti, B., Lachnitt, H., and Barbosa, B. Carcara: An efficient proof checker and elaborator for SMT proofs in the Alethe format. In Proceedings of the 29th Intern. Conf. of Tools and Algorithms for the Construction and Analysis of Systems (April 2023).

    3. Backes, J. et al. Semantic-based automated reasoning for AWS access policies using SMT. 2018 Formal Methods in Computer Aided Design, 1–9.

    4. Baek, S., Carneiro, M., and Heule, M.J.H. A flexible proof format for SAT solver-elaborator communication. In Proceedings of the 27th Intern. Conf. on Tools and Algorithms for the Construction and Analysis of Systems, J.F. Groote and K.G. Larsen (Eds.), Springer (2021), 59–75.

    5. Baldoni, R. et al. A survey of symbolic execution techniques. ACM Computing Surveys 51, 3 (2018), 50:1–50:39.

    6. Barbosa, H. et al. cvc5: A versatile and industrial-strength SMT solver. In Proceedings of the 28th Intern. Conf. on Tools and Algorithms for the Construction and Analysis of Systems, D. Fisman and G. Rosu (Eds.), Springer (2022), 415–442.

    7. Barbosa, H. et al. Scalable fine-grained proofs for formula processing. J. Autom. Reasoning 64, 3 (2020), 485–510.

    8. Barbosa, H. et al. Flexible proof production in an industrial-strength SMT solver. J. Blanchette, L. Kovács, and D. Pattinson (Eds.) In Proceedings of the 11th Intern. Joint Conf. on Automated Reasoning. Springer (2022), 15–35.

    9. Barrett, C.W. et al. CVC4. In Proceedings of the 23rd Intern. Conf. on Computer Aided Verification, G. Gopalakrishnan and S. Qadeer (Eds.), Springer (July 2011), 171–177.

    10. Barrett, C.W. Satisfiability modulo theories. Handbook of Satisfiability—2nd Edition. A. Biere, M. Heule, H. van Maaren, and T. Walsh, (Eds.), IOS Press (2021), 1267–1329.

    11. Barrett, C.W. and Tinelli, C. Satisfiability modulo theories. Handbook of Model Checking, E.M. Clarke, T.A. Henzinger, H. Veith, and R. Bloem (Eds.), Springer (2018), 305–343.

    12. Blanchette, J.C., Böhme, S., and Paulson, L.C. Extending sledgehammer with SMT solvers. J. Autom. Reasoning 51, 1 (2013), 109–128.

    13. Bouton, T. et al. verit: An open, trustable and efficient smt-solver. In Proceedings of the 22nd Intern. Conf. on Automated Deduction, R.A. Schmidt, (Ed.), Springer (Aug. 2009), 151–156.

    14. Bozzano, M. et al. An incremental and layered procedure for the satisfiability of linear arithmetic logic. In Proceedings of the 11th Intern. Conf. on Tools and Algorithms for the Construction and Analysis of Systems, N. Halbwachs and L.D. Zuck, (Eds.), Springer (Apr. 2005), 317–333.

    15. Bradley, A.R. and Manna, Z. The Calculus of Computation—Decision Procedures With Applications to Verification, Springer (2007).

    16. Christ, J., Hoenicke, J., and Nutz, D. Smtinterpol: An interpolating SMT solver. In Proceedings of the 19th Intern. Workshop on Model Checking Software, A.F. Donaldson and D. Parker (Eds.), Springer (July 2012), 248–254.

    17. Cruz-Filipe, L. et al. Efficient certified RAT verification. In Proceedings of the 28th Intern. Conf. on Automated Deduction, L. de Moura (Ed.), Springer (Aug. 2017), 220–236.

    18. de Moura, L. and Ullrich, S. The lean 4 theorem prover and programming language. In Proceedings of the 28th Intern. Conf. on Automated Deduction, A. Platzer and G. Sutcliffe (Eds.), Springer (July 2021), 625–635.

    19. de Moura, L.M. and Bjørner, N.S. Proofs and refutations, and Z3. In Proceedings of the LPAR 2008 Workshops, Knowledge Exchange: Automated Provers and Proof Assistants and the 7th Intern. Workshop on the Implementation of Logics, P. Rudnicki, G. Sutcliffe, B. Konev, R.A. Schmidt, and S. Schulz (Eds.), (Nov. 2008).

    20. Eén, N. and Sörensson, N. An extensible sat-solver. In Proceedings of the 6th Intern. Conf. on Theory and Applications of Satisfiability Testing, E. Giunchiglia and A. Tacchella (Eds.), Springer (May 2003), 502–518.

    21. Ekici, B., et al. Smtcoq: A plug-in for integrating SMT solvers into coq. In Proceedings of the 29th Intern. Conf. on Computer Aided Verification, Part II, R. Majumdar and V. Kuncak (Eds.), Springer (July 2017), 126–133.

    22. Heule, M. et al. Efficient, verified checking of propositional proofs. In Proceedings 8th Intern. Conf. on Interactive Theorem Proving, M. Ayala-Rincón and C.A. Muñoz (Eds.), Springer (Sept. 2017), 269–284.

    23. Heule, M.J.H. The DRAT format and drat-trim checker. CoRR, abs/1610.06229, 2016.

    24. Katz, G. et al. Lazy proofs for DPLL(T)-based SMT solvers. In Proceedings of the 2016 Formal Methods in Computer-Aided Design, R. Piskac and M. Talupur (Eds.), IEEE, 93–100.

    25. Kiesl, B., Rebola-Pardo, A., and Heule, M.J.H. Extended resolution simulates DRAT. In Proceedings of the 9th Intern. Joint Conf. on Automated Reasoning, D. Galmiche, S. Schulz, and R. Sebastiani, (Eds.), Springer (July 2018), 516–531.

    26. Konnov, I. et al. (Eds.): Handbook of model checking. In Proceedings of Formal Aspects of Computing 31, 4, Springer (2019), 455–456.

    27. Lammich, P. Efficient verified (UN)SAT certificate checking. In Proceedings of the 26th Intern. Conf. on Automated Deduction, L. de Moura (Ed.), Springer (Aug. 2017), 237–254.

    28. Liang, T. et al. A DPLL(T) theory solver for a theory of strings and regular expressions. In Proceedings of the 26th Computer Aided Verification Intern. Conf., A. Biere and R. Bloem, (Eds.), Springer (July 2014), 646–662.

    29. Nieuwenhuis, R. and Oliveras, A. Proof-producing congruence closure. In Proceedings of the 16th Intern. Conf. Term Rewriting and Applications, J. Giesl (Ed.), Springer (Apr. 2005), 453–468.

    30. Nieuwenhuis, R., Oliveras, A., and Tinelli, C. Solving SAT and SAT modulo theories: From an abstract davis–putnam–logemann–loveland procedure to DPLL(T). J. ACM 53, 6 (2006), 937–977.

    31. Nipkow, T., Paulson, L.C., and Wenzel, M. Isabelle/HOL - A Proof Assistant for Higher-Order Logic, Springer (2002).

    32. Nötzli, A. et al. Reconstructing fine-grained proofs of rewrites using a domain-specific language. In Proceedings of the 2022 Formal Methods in Computer Aided Design, IEEE, 65–74.

    33. Reynolds, A. et al. Reductions for strings and regular expressions revisited. In Proceedings of the 2020 Formal Methods in Computer Aided Design, IEEE, 225–235.

    34. Reynolds, A. et al. Scaling up DPLL(T) string solvers using context-dependent simplification. In Proceedings of the 29th Computer Aided Verification Intern. Conf., R. Majumdar and V. Kuncak, (Eds.), Springer (July 2017), 453–474.

    35. Robinson, J.A. and Voronkov, A. Preface. Handbook of Automated Reasoning (in 2 Volumes), Elsevier and MIT Press (2001), v–vii.

    36. Schurr H-J. et al. Alethe: Towards a generic SMT proof format (extended abstract), (2021), 336:49–54.

    37. Shankar, N. Automated deduction for verification. ACM Comput. Surveys 41, 4 (2009), 20:1–20:56.

    38. Srivastava, S., Gulwani, S., and Foster, J.S. From program verification to program synthesis. In Proceedings of the 37th ACM SIGPLAN-SIGACT Symp. on Principles of Programming Languages, M.V. Hermenegildo and J. Palsberg, (Eds.), (Jan. 2010), 313–326.

    39. Stump, A. et al. SMT proof checking using a logical framework. Formal Methods Syst. Des. 42, 1 (2013), 91–118.

    40. The Coq development team. The coq proof assistant reference manual version 8.9, (2019).

    41. Wagner, L.G et al. Qualification of a model checker for avionics software verification. In Proceedings of the 9th Intern. Symp. of NASA Formal Methods, C.W. Barrett, M. Davies, and T. Kahsai (Eds.), (May 2017), 404–419.

    a. Note that the semantics of StringNotEqualsIf-Exists are such that if the request does not specify any VPN, the policy still denies access.

    b. Previous CVC systems, including CVC4, used capital letters. With the introduction of cvc5, we moved to lowercase letters.

    c. This is analogous to the notion of futures or promises in some programming languages.

    d. Similar methods for improving proof elaboration via the recording of key information during solving have recently been employed in the context of SAT solving as well.4

    e. This is a major reason it has been difficult to identify and establish a common format for SMT proof certificates.

    f. The functional programming language ML was originally designed as the tactic language (or meta language) of LCF, an early proof assistant.

    g. Optimizing this has historically not been a priority since proofs are typically constructed manually and interactively.

    h. Recently, a high-performance stand-alone checker for the Alethe format was also introduced.2

    i. A simple and very frequent example of the need for such transformations is the conversion of proof steps with multiple premises into a proof using rules with at most two premises.

    j. In a computer network, a demilitarized zone (DMZ) is a subnet that separates a local network from external networks.

Join the Discussion (0)

Become a Member or Sign In to Post a Comment

The Latest from CACM

Shape the Future of Computing

ACM encourages its members to take a direct hand in shaping the future of the association. There are more ways than ever to get involved.

Get Involved

Communications of the ACM (CACM) is now a fully Open Access publication.

By opening CACM to the world, we hope to increase engagement among the broader computer science community and encourage non-members to discover the rich resources ACM has to offer.

Learn More