]> git.saurik.com Git - apt.git/blame - doc/acquire-additional-files.txt
StringView: pos argument default should be npos
[apt.git] / doc / acquire-additional-files.txt
CommitLineData
1e0f0f28
DK
1# Acquire additional files in 'update' operations
2
3The download and verification of data from multiple sources in different
4compression formats, with partial downloads and patches is an involved
5process which is hard to implement correctly and securely.
6
add81166 7APT front-ends share the code and binaries to make this happen in libapt
1e0f0f28
DK
8with the Acquire system, supported by helpers shipped in the apt package
9itself and additional transports in individual packages like
10apt-transport-https.
11
12For its own operation libapt needs or can make use of Packages, Sources
13and Translation-* files, which it will acquire by default, but
add81166 14a repository might contain more data files (e.g. Contents) a front-end
9adb9778
DK
15(e.g. apt-file) might want to use and would therefore need to be
16downloaded as well.
1e0f0f28 17
add81166 18This file describes the configuration scheme such a front-end can use to
1e0f0f28
DK
19instruct the Acquire system to download those additional files.
20
1e0f0f28
DK
21# The Configuration Stanza
22
23The Acquire system uses the same configuration settings to implement the
24files it downloads by default. These settings are the default, but if
25they would be written in a configuration file the configuration
26instructing the Acquire system to download the Packages files would look
27like this (see also apt.conf(5) manpage for configuration file syntax):
28
c2a4a8dd 29 Acquire::IndexTargets::deb::Packages {
d3a869e3 30 MetaKey "$(COMPONENT)/binary-$(ARCHITECTURE)/Packages";
1e0f0f28 31 ShortDescription "Packages";
79b60dcd 32 Description "$(RELEASE)/$(COMPONENT) $(ARCHITECTURE) Packages";
1e0f0f28 33
d3a869e3 34 flatMetaKey "Packages";
79b60dcd 35 flatDescription "$(RELEASE) Packages";
1e0f0f28 36
9adb9778 37 Optional "no";
1e0f0f28
DK
38 };
39
40All files which should be downloaded (nicknamed 'Targets') are mentioned
c2a4a8dd 41below the Acquire::IndexTargets scope. 'deb' is here the type of the
1e0f0f28
DK
42sources.list entry the file should be acquired for. The only other
43supported value is hence 'deb-src'. Beware: You can't specify multiple
8881b11e
DK
44types here and you can't download the same (evaluated) MetaKey from
45multiple types!
1e0f0f28
DK
46
47After the type you can pick any valid and unique string which preferable
48refers to the file it downloads (In the example we picked 'Packages').
8881b11e 49This string is used as identifier for the target class and accessible as
9adb9778
DK
50'Created-By' e.g. in the "apt-get indextargets" output as detailed
51below. It is also used to allow user to enable/disable targets per
52sources.list entry.
1e0f0f28
DK
53
54All targets have three main properties you can define:
d3a869e3 55* MetaKey: The identifier of the file to be downloaded as used in the
1e0f0f28
DK
56 Release file. It is also the relative location of the file from the
57 Release file. You can neither download from a different server
d3a869e3
DK
58 entirely (absolute URI) nor access directories above the Release file
59 (e.g. "../../").
1e0f0f28
DK
60* ShortDescription: Very short string intended to be displayed to the
61 user e.g. while reporting progress. apt will e.g. use this string in
62 the last line to indicate progress of e.g. the download of a specific
63 item.
64* Description: A preferable human understandable and readable identifier
65 of which file is acquired exactly. Mainly used for progress reporting
66 and error messages. apt will e.g. use this string in the Get/Hit/Err
67 progress lines.
79b60dcd
DK
68 An identifier of the site accessed as seen in the sources.list (e.g.
69 "http://example.org/debian" or "file:/path/to/a/repository") is
70 automatically prefixed for this property.
71
1e0f0f28
DK
72
73Additional optional properties:
9adb9778
DK
74* DefaultEnabled: The default value is 'yes' which means that apt will
75 try to acquire this target from all sources. If set to 'no' the user
76 has to explicitly enable this target in the sources.list file with the
77 Targets option(s) – or override this value in a config file.
78* Optional: The default value is 'yes' and should be kept at this value.
79 If enabled the acquire system will skip the download if the file isn't
80 mentioned in the Release file. Otherwise this is treated as a hard
81 error and the update process fails. Note that failures while
3fd89e62
DK
82 downloading (e.g. 404 or hash verification errors) are failures,
83 regardless of this setting.
d7a51997
DK
84* KeepCompressed: The default is the value of Acquire::GzipIndexes,
85 which defaults to false. If true, the acquire system will keep the
add81166 86 file compressed on disk rather than extract it. If your front-end can't
d7a51997
DK
87 deal with compressed files transparently you have to explicitly set
88 this option to false to avoid problems with users setting the option
89 globally. On the other hand, if you set it to true or don't set it you
add81166 90 have to ensure your front-end can deal with all compressed fileformats
341e0147
JAK
91 supported by apt (libapt users can e.g. use FileFd, others can use
92 the cat-file command of /usr/lib/apt/apt-helper).
9adb9778
DK
93* flat{MetaKey,Description}: APT supports two types of repositories:
94 dists-style repositories which are the default and by far the most
95 common which are named after the fact that the files are in an
96 elaborated directory structure. In contrast a flat-style repository
97 lumps all files together in one directory. Support for these flat
98 repositories exists mainly for legacy purposes only. It is therefore
99 recommend to not set these values.
1e0f0f28
DK
100
101
3fd89e62
DK
102The acquire system will automatically choose to download a compressed
103file if it is available and uncompress it for you, just as it will also
d7a51997 104use PDiff patching if provided by the repository and enabled by the
3fd89e62 105user. You only have to ensure that the Release file contains the
d7a51997 106information about the compressed files/PDiffs to make this happen.
1a3a14ac
DK
107*NO* properties have to be set to enable this!
108
109
add81166 110More properties exist, but these should *NOT* be set by front-ends
9adb9778
DK
111requesting files. They exist for internal and end-user usage only.
112Some of these are – which are documented here only to ensure that they
add81166 113aren't accidentally used by front-ends:
d7a51997 114* PDiffs: controls if apt will try to use PDiffs for this target.
1a3a14ac
DK
115 Defaults to the value of Acquire::PDiffs which is true by default.
116 Can be overridden per-source by the sources.list option of the same
117 name. See the documentation for both of these for details.
24e8f24e
DK
118* By-Hash: controls if apt will try to use an URI constructed from
119 a hashsum of the file to download. See the documentation for config
120 option Acquire::By-Hash and sources.list option By-Hash for details.
d7a51997
DK
121* CompressionTypes: The default value is a space separated list of
122 compression types supported by apt (see Acquire::CompressionTypes).
123 You can set this option to prevent apt from downloading a compression
add81166 124 type a front-end can't open transparently. This should always be
d7a51997 125 a temporary workaround through and a bug should be reported against
add81166 126 the front-end in question.
d7a51997 127
1e0f0f28
DK
128
129# More examples
130
131The stanzas for Translation-* files as well as for Sources files would
132look like this:
133
c2a4a8dd 134Acquire::IndexTargets {
1e0f0f28 135 deb::Translations {
d3a869e3 136 MetaKey "$(COMPONENT)/i18n/Translation-$(LANGUAGE)";
1e0f0f28 137 ShortDescription "Translation-$(LANGUAGE)";
79b60dcd 138 Description "$(RELEASE)/$(COMPONENT) Translation-$(LANGUAGE)";
1e0f0f28 139
d3a869e3 140 flatMetaKey "$(LANGUAGE)";
79b60dcd 141 flatDescription "$(RELEASE) Translation-$(LANGUAGE)";
1e0f0f28
DK
142 };
143
144 deb-src::Sources {
d3a869e3 145 MetaKey "$(COMPONENT)/source/Sources";
1e0f0f28 146 ShortDescription "Sources";
79b60dcd 147 Description "$(RELEASE)/$(COMPONENT) Sources";
1e0f0f28 148
d3a869e3 149 flatMetaKey "Sources";
79b60dcd 150 flatDescription "$(RELEASE) Sources";
1e0f0f28 151
9adb9778 152 Optional "no";
1e0f0f28
DK
153 };
154};
155
156# Substitution variables
157
158As seen in the examples, properties can contain placeholders filled in
159by the acquire system. The following variables are known; note that
160unknown variables have no default value nor are they touched: They are
3fd89e62 161printed as-is.
1e0f0f28 162
1e0f0f28 163* $(RELEASE): This is usually an archive- or codename, e.g. "stable" or
9adb9778 164 "stretch". Note that flat-style repositories do not have an archive-
1e0f0f28
DK
165 or codename per-se, so the value might very well be just "/" or so.
166* $(COMPONENT): as given in the sources.list, e.g. "main", "non-free" or
167 "universe". Note that flat-style repositories again do not really
168 have a meaningful value here.
169* $(LANGUAGE): Values are all entries (expect "none") of configuration
170 option Acquire::Languages, e.g. "en", "de" or "de_AT".
1e0f0f28
DK
171* $(ARCHITECTURE): Values are all entries of configuration option
172 APT::Architectures (potentially modified by sources.list options),
d3a869e3
DK
173 e.g. "amd64", "i386" or "armel" for the 'deb' type. In type 'deb-src'
174 this variable has the value "source".
c4d1ab98
DK
175* $(NATIVE_ARCHITECTURE): The architecture apt treats as the native
176 architecture for this system configured as APT::Architecture
177 defaulting to the architecture apt itself was built for.
8881b11e
DK
178
179Note that while more variables might exist in the implementation, these
180are to be considered undefined and their usage strongly discouraged. If
3fd89e62 181you have a need for other variables contact us.
8881b11e
DK
182
183# Accessing files
184
185Do NOT hardcode specific file locations, names or compression types in
186your application! You will notice that the configuration options give
187you no choice over where the downloaded files will be stored. This is by
188design so multiple applications can download and use the same file
189rather than each and every one of them potentially downloads and uses
190its own copy somewhere on disk.
191
c2a4a8dd 192"apt-get indextargets" can be used to get the location as well as other
8881b11e
DK
193information about all files downloaded (aka: you will see Packages,
194Sources and Translation-* files here as well). Provide a line of the
195default output format as parameter to filter out all entries which do
196not have such a line. With --format, you can further more define your
197own output style. The variables are what you see in the output, just all
198uppercase and wrapped in $(), as in the configuration file.
199
200To get all the filenames of all Translation-en files you can e.g. call:
c2a4a8dd
DK
201 apt-get indextargets --format '$(FILENAME)' "Created-By: Translations" "Language: en"
202
203The line-based filtering and the formating is rather crude and feature-
9adb9778
DK
204less by design: The default format is Debians standard format deb822 (in
205particular: Field names are case-insensitive and the order of fields in
206the stanza is undefined), so instead of apt reimplementing powerful
207filters and formating for this command, it is recommend to use piping
208and dedicated tools like 'grep-dctrl' if you need more than the basics
209provided.
8881b11e
DK
210
211Accessing this information via libapt is done by reading the
212sources.lists (pkgSourceList), iterating over the metaIndex objects this
d7a51997 213creates and calling GetIndexTargets() on them. See the source code of
c2a4a8dd 214"apt-get indextargets" for a complete example.
8881b11e 215
3fd89e62
DK
216Note that by default targets are not listed if they weren't downloaded.
217If you want to see all targets, you can use the --no-release-info, which
218also removes the Codename, Suite, Version, Origin, Label and Trusted
219fields from the output as these also display data which needs to be
220downloaded first and could hence be inaccurate [on the pro-side: This
221mode is faster as it doesn't require a valid binary cache to operate].
222The most notable difference perhaps is in the Filename field through: By
223default it indicates an existing file, potentially compressed (Hint:
224libapt users can use FileFd to open compressed files transparently). In
225the --no-release-info mode the indicated file doesn't need to exist and
226it will always refer to an uncompressed file, even if the index would be
227(or is) stored compressed.
228
229Remarks on fields only available in (default) --release-info mode:
230* Trusted: Denotes with a 'yes' or 'no' if the data in this file is
d7a51997 231 authenticated by a trust chain rooted in a trusted gpg key. You should
3fd89e62
DK
232 be careful with untrusted data and warn the user if you use it.
233* Codename, Suite, Version, Origin and Label are fields from the Release
234 file, are only present if they are present in the Release file and
235 contain the same data.
236
237Remarks on other available fields:
8881b11e
DK
238* MetaKey, ShortDesc, Description, Site, Release: as defined
239 by the configuration and described further above.
240* Created-By: configuration entity responsible for this target
241* Target-Of: type of the sources.list entry
242* URI, Repo-URI: avoid using. Contains potentially username/password.
243 Prefer 'Site', especially for display.
9adb9778
DK
244* Optional, DefaultEnabled, KeepCompressed: Decode the options of the
245 same name from the configuration.
8881b11e
DK
246* Language, Architecture, Component: as defined further above, but with
247 the catch that they might be missing if they don't effect the target
248 (aka: They weren't used while evaluating the MetaKey template).
249
3fd89e62
DK
250Again, additional fields might be visible in certain implementations,
251but you should avoid using them and instead talk to us about a portable
8881b11e
DK
252implementation.
253
9adb9778 254# Multiple applications requiring the same files
8881b11e
DK
255
256It is highly encouraged that applications talk to each other and to us
257about which files they require. It is usually best to have a common
258package ship the configuration needed to get the files, but specific
259needs might require specific solutions. Again: talk to us.
260
add81166 261Bad things will happen if multiple front-ends request the same file(s)
9adb9778
DK
262via different targets, which is another reason why coordination is very
263important!
264
8881b11e
DK
265# Acquiring files not mentioned in the Release file
266
267You can't. This is by design as these files couldn't be verified to not
268be modified in transit, corrupted by the download process or simple if
269they are present at all on the server, which would require apt to probe
270for them. APT did this in the past for legacy reasons, we do not intend
271to go back to these dark times.
272
273This is also why you can't request files from a different server. It
274would have the additional problem that this server might not even be
275accessible (e.g. proxy settings) or that local sources (file:/, cdrom:/)
276start requesting online files…
277
278In other words: We would be opening Pandora's box.
9adb9778
DK
279
280# Acquiring files to a specific location on disk
281
add81166 282You can't by design to avoid multiple front-ends requesting the same file
9adb9778
DK
283to be downloaded to multiple different places on (different) disks
284(among other reasons). See the next point for a solution if you really
285have to force a specific location by creating symlinks.
286
287# Post processing the acquired files
288
289You can't modify the files apt has downloaded as apt keeps state with
290e.g. the modification times of the files and advanced features like
291PDiffs break.
292
293You can however install an APT::Update::Post-Invoke{-Success,} hook
294script and use them to copy (modified) files to a different location.
295Use 'apt-get indextargets' (or similar) to get the filenames – do not
296look into /var/lib/apt/lists directly!
297
298Please avoid time consuming calculations in the scripts and instead just
299trigger a background task as there is little to no feedback for the user
300while hook scripts run.