acquire-additional-files.txt 14 KB

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