1 # APT External Dependency Solver Protocol (EDSP) - version 0.5
3 This document describes the communication protocol between APT and
4 external dependency solvers. The protocol is called APT EDSP, for "APT
5 External Dependency Solver Protocol".
10 In the following we use the term **architecture qualified package name**
11 (or *arch-qualified package names* for short) to refer to package
12 identifiers of the form "arch:package" where "arch" is a dpkg
13 architecture and "package" a dpkg package name.
18 - **APT**: we know this one.
19 - APT is equipped with its own **internal solver** for dependencies,
20 which is identified by the string `internal`.
21 - **External solver**: an *external* software component able to resolve
22 dependencies on behalf of APT.
24 At each interaction with APT, a single solver is in use. When there is
25 a total of 2 or more solvers, internals or externals, the user can
26 choose which one to use.
28 Each solver is identified by an unique string, the **solver
29 name**. Solver names must be formed using only alphanumeric ASCII
30 characters, dashes, and underscores; solver names must start with a
31 lowercase ASCII letter. The special name `internal` denotes APT's
32 internal solver, is reserved, and cannot be used by external solvers.
37 Each external solver is installed as a file under Dir::Bin::Solvers (see
38 below), which defaults to `/usr/lib/apt/solvers`. We will assume in the
39 remainder of this section that such a default value is in effect.
41 The naming scheme is `/usr/lib/apt/solvers/NAME`, where `NAME` is the
42 name of the external solver.
44 Each file under `/usr/lib/apt/solvers` corresponding to an external
45 solver must be executable.
47 No non-solver files must be installed under `/usr/lib/apt/solvers`, so
48 that an index of available external solvers can be obtained by listing
49 the content of that directory.
54 Several APT options can be used to affect dependency solving in APT. An
55 overview of them is given below. Please refer to proper APT
56 configuration documentation for more, and more up to date, information.
58 - **APT::Solver**: the name of the solver to be used for
59 dependency solving. Defaults to `internal`
61 - **APT::Solver::Strict-Pinning**: whether pinning must be strictly
62 respected (as the internal solver does) or can be slightly deviated
63 from. Defaults to `yes`.
65 - **APT::Solver::NAME::Preferences** (where NAME is a solver name):
66 solver-specific user preference string used during dependency solving,
67 when the solver NAME is in use. Check solver-specific documentation
68 for what is supported here. Defaults to the empty string.
70 - **Dir::Bin::Solvers**: absolute path of the directory where to look for
71 external solvers. Defaults to `/usr/lib/apt/solvers`.
75 When configured to use an external solver, APT will resort to it to
76 decide which packages should be installed or removed.
78 The interaction happens **in batch**: APT will invoke the external
79 solver passing the current status of installed and available packages,
80 as well as the user request to alter the set of installed packages. The
81 external solver will compute a new complete set of installed packages
82 and gives APT a "diff" listing of which *additional* packages should be
83 installed and of which currently installed packages should be
84 *removed*. (Note: the order in which those actions have to be performed
85 will be up to APT to decide.)
87 External solvers are invoked by executing them. Communications happens
88 via the file descriptors: **stdin** (standard input) and **stdout**
89 (standard output). stderr is not used by the EDSP protocol. Solvers can
90 therefore use stderr to dump debugging information that could be
93 After invocation, the protocol passes through a sequence of phases:
95 1. APT invokes the external solver
96 2. APT send to the solver a dependency solving **scenario**
97 3. The solver solves dependencies. During this phase the solver may
98 send, repeatedly, **progress** information to APT.
99 4. The solver sends back to APT an **answer**, i.e. either a *solution*
100 or an *error* report.
101 5. The external solver exits
106 A scenario is a text file encoded in a format very similar to the "Deb
107 822" format (AKA "the format used by Debian `Packages` files"). A
108 scenario consists of two distinct parts: a **request** and a **package
109 universe**, occurring in that order. The request consists of a single
110 Deb 822 stanza, while the package universe consists of several such
111 stanzas. All stanzas occurring in a scenario are separated by an empty
117 Within a dependency solving scenario, a request represents the action on
118 installed packages requested by the user.
120 A request is a single Deb 822 stanza opened by a mandatory Request field
121 and followed by a mixture of action, preference, and global
122 configuration fields.
124 The value of the **Request:** field is a string describing the EDSP
125 protocol which will be used to communicate. At present, the string must
126 be `EDSP 0.5`. Request fields are mainly used to identify the beginning
127 of a request stanza; their actual values are otherwise not used by the
130 The following **configuration fields** are supported in request stanzas:
132 - **Architecture:** (mandatory) The name of the *native* architecture on
133 the user machine (see also: `dpkg --print-architecture`)
135 - **Architectures:** (optional, defaults to the native architecture) A
136 space separated list of *all* architectures known to APT (this is
137 roughly equivalent to the union of `dpkg --print-architecture` and
138 `dpkg --print-foreign-architectures`)
140 The following **action fields** are supported in request stanzas:
142 - **Install:** (optional, defaults to the empty string) A space
143 separated list of arch-qualified package names, with *no version
144 attached*, to install. This field denotes a list of packages that the
145 user wants to install, usually via an APT `install` request.
147 - **Remove:** (optional, defaults to the empty string) Same syntax of
148 Install. This field denotes a list of packages that the user wants to
149 remove, usually via APT `remove` or `purge` requests.
151 - **Upgrade:** (optional, defaults to `no`). Allowed values: `yes`,
152 `no`. When set to `yes`, an upgrade of all installed packages has been
153 requested, usually via an APT `upgrade` request.
155 - **Dist-Upgrade:** (optional, defaults to `no`). Allowed values: `yes`,
156 `no`. Same as Upgrade, but for APT `dist-upgrade` requests.
158 - **Autoremove:** (optional, defaults to `no`). Allowed values: `yes`,
159 `no`. When set to `yes`, a clean up of unused automatically installed
160 packages has been requested, usually via an APT `autoremove` request.
162 The following **preference fields** are supported in request stanzas:
164 - **Strict-Pinning:** (optional, defaults to `yes`). Allowed values:
165 `yes`, `no`. When set to `yes`, APT pinning is strict, in the sense
166 that the solver must not propose to install packages which are not APT
167 candidates (see the `APT-Pin` and `APT-Candidate` fields in the
168 package universe). When set to `no`, the solver does only a best
169 effort attempt to install APT candidates. Usually, the value of this
170 field comes from the `APT::Solver::Strict-Pinning` configuration
173 - **Preferences:** a solver-specific optimization string, usually coming
174 from the `APT::Solver::Preferences` configuration option.
177 #### Package universe
179 A package universe is a list of Deb 822 stanzas, one per package, called
180 **package stanzas**. Each package stanzas starts with a Package
181 field. The following fields are supported in package stanzas:
183 - All fields contained in the dpkg database, with the exception of
184 fields marked as "internal" (see the manpage `dpkg-query (1)`). Among
185 those fields, the following are mandatory for all package stanzas:
186 Package, Version, Architecture.
188 It is recommended not to pass the Description field to external
189 solvers or, alternatively, to trim it to the short description only.
191 - **Installed:** (optional, defaults to `no`). Allowed values: `yes`,
192 `no`. When set to `yes`, the corresponding package is currently
195 Note: the Status field present in the dpkg database must not be passed
196 to the external solver, as it's an internal dpkg field. Installed and
197 other fields permit to encode the most relevant aspects of Status in
198 communications with solvers.
200 - **Hold:** (optional, defaults to `no`). Allowed values: `yes`,
201 `no`. When set to `yes`, the corresponding package is marked as "on
204 - **APT-ID:** (mandatory). Unique package identifier, according to APT.
206 - **APT-Pin:** (mandatory). Must be an integer. Package pin value,
207 according to APT policy.
209 - **APT-Candidate:** (optional, defaults to `no`). Allowed values:
210 `yes`, `no`. When set to `yes`, the corresponding package is the APT
211 candidate for installation among all available packages with the same
212 name and with the same architecture.
214 - **APT-Automatic:** (optional, defaults to `no`). Allowed values:
215 `yes`, `no`. When set to `yes`, the corresponding package is marked by
216 APT as automatic installed. Note that automatic installed packages
217 should be removed by the solver only when the Autoremove action is
218 requested (see Request section).
220 - **APT-Release:** (optional) The releases the package belongs to, according to
221 APT. The format of this field is multiline with one value per line and the
222 first line (the one containing the field name) empty. Each subsequent line
223 corresponds to one of the releases the package belongs to and looks like
224 this: `o=Debian,a=unstable,n=sid,l=Debian,c=main`. That is, each release line
225 is a comma-separated list of "key=value" pairs, each of which denotes a
226 Release file entry (Origin, Label, Codename, etc.) in the format of
231 An answer from the external solver to APT is either a *solution* or an
234 The following invariant on **exit codes** must hold true. When the
235 external solver is *able to find a solution*, it will write the solution
236 to standard output and then exit with an exit code of 0. When the
237 external solver is *unable to find a solution* (and s aware of that), it
238 will write an error to standard output and then exit with an exit code
239 of 0. An exit code other than 0 will be interpreted as a solver crash
240 with no meaningful error about dependency resolution to convey to the
246 A solution is a list of Deb 822 stanzas. Each of them could be an
247 install stanza (telling APT to install a specific package), a remove
248 stanza (telling APT to remove one), or an autoremove stanza (telling APT
249 about the *future* possibility of removing a package using the
252 An **install stanza** starts with an Install field and supports the
255 - **Install:** (mandatory). The value is a package identifier,
256 referencing one of the package stanzas of the package universe via its
259 - All fields supported by package stanzas.
261 **Remove stanzas** are similar to install stanzas, but have **Remove**
262 fields instead of Install fields.
264 **Autoremove stanzas** are similar to install stanzas, but have
265 **Autoremove** fields instead of Install fields. Autoremove stanzas
266 should be output so that APT can inform the user of which packages they
267 can now autoremove, as a consequence of the executed action. However,
268 this protocol makes no assumption on the fact that a subsequent
269 invocation of an Autoremove action will actually remove the very same
270 packages indicated by Autoremove stanzas in the former solution.
272 In terms of expressivity, install and remove stanzas can carry one
273 single field each, as APT-IDs are enough to pinpoint packages to be
274 installed/removed. Nonetheless, for protocol readability, it is
275 recommended that solvers either add unconditionally the fields Package,
276 Version, and Architecture to all install/remove stanzas or,
277 alternatively, that they support a `--verbose` command line flag that
278 explicitly enables the output of those fields in solutions.
283 An error is a single Deb 822 stanza, starting the field Error. The
284 following fields are supported in error stanzas:
286 - **Error:** (mandatory). The value of this field is ignored, although
287 it should be a unique error identifier, such as a UUID.
289 - **Message:** (mandatory). The value of this field is a text string,
290 meant to be read by humans, that explains the cause of the solver
291 error. Message fields might be multi-line, like the Description field
292 in the dpkg database. The first line conveys a short message, which
293 can be explained in more details using subsequent lines.
298 During dependency solving, an external solver may send progress
299 information to APT using **progress stanzas**. A progress stanza starts
300 with the Progress field and might contain the following fields:
302 - **Progress:** (mandatory). The value of this field is a date and time
303 timestamp, in RFC 2822 format. The timestamp provides a time
304 annotation for the progress report.
306 - **Percentage:** (optional). An integer from 0 to 100, representing the
307 completion of the dependency solving process, as declared by the
310 - **Message:** (optional). A textual message, meant to be read by the
311 APT user, telling what is going on within the dependency solving
312 (e.g. the current phase of dependency solving, as declared by the
318 Potential future extensions to this protocol, listed in no specific
321 - fixed error types to identify common failures across solvers and
322 enable APT to translate error messages
323 - structured error data to explain failures in terms of packages and