source: chapter08/pkgmgt.xml

trunk
Last change on this file was 343ab13, checked in by Xi Ruoyao <xry111@…>, 3 months ago

Add info about how to upgrade Glibc on a running system

Let's change our policy to match other "rolling release" distros and
ease the procedure to fix Glibc security vulnerabilities.

Squashed the commits in xry111/update-glibc branch to keep the history
clean.

Co-Authored-By: Pierre Labastie <pierre.labastie@…>
Co-Authored-By: Douglas R. Reno <renodr@…>

  • Property mode set to 100644
File size: 18.8 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-system-pkgmgt">
9 <?dbhtml filename="pkgmgt.html"?>
10
11 <title>Package Management</title>
12
13 <para>Package Management is an often requested addition to the LFS Book. A
14 Package Manager tracks the installation of files, making it easier to
15 remove and upgrade packages. A good package manager will also handle the
16 configuration files specially to keep the user configuration when the
17 package is reinstalled or upgraded. Before
18 you begin to wonder, NO&mdash;this section will not talk about nor recommend
19 any particular package manager. What it does provide is a roundup of the more
20 popular techniques and how they work. The perfect package manager for you may
21 be among these techniques, or it may be a combination of two or more of these
22 techniques. This section briefly mentions issues that may arise when upgrading
23 packages.</para>
24
25 <para>Some reasons why no package manager is mentioned in LFS or BLFS
26 include:</para>
27
28 <itemizedlist>
29 <listitem>
30 <para>Dealing with package management takes the focus away from the goals
31 of these books&mdash;teaching how a Linux system is built.</para>
32 </listitem>
33
34 <listitem>
35 <para>There are multiple solutions for package management, each having
36 its strengths and drawbacks. Finding one solution that satisfies all audiences
37 is difficult.</para>
38 </listitem>
39 </itemizedlist>
40
41 <para>There are some hints written on the topic of package management. Visit
42 the <ulink url="&hints-root;">Hints Project</ulink> and see if one of them
43 fits your needs.</para>
44
45 <sect2 id='pkgmgmt-upgrade-issues'>
46 <title>Upgrade Issues</title>
47
48 <para>A Package Manager makes it easy to upgrade to newer versions when they
49 are released. Generally the instructions in the LFS and BLFS books can be
50 used to upgrade to the newer versions. Here are some points that you should
51 be aware of when upgrading packages, especially on a running system.</para>
52
53 <itemizedlist>
54 <listitem>
55 <para>If the Linux kernel needs to be upgraded (for example, from
56 5.10.17 to 5.10.18 or 5.11.1), nothing else needs to be rebuilt.
57 The system will keep working fine thanks to the well-defined interface
58 between the kernel and userspace. Specifically, Linux API headers
59 need not be upgraded
60 along with the kernel. You will merely need to reboot your system to use the
61 upgraded kernel.</para>
62 </listitem>
63
64 <listitem>
65 <para>If Glibc needs to be upgraded to a newer
66 version, (e.g., from Glibc-2.36 to Glibc-&glibc-version;),
67 some extra steps are needed to avoid breaking the system.
68 Read <xref linkend='ch-system-glibc'/> for details.</para>
69 </listitem>
70
71 <listitem> <para>If a package containing a shared library is updated, and
72 if the name of the library changes, then any packages dynamically
73 linked to the library must be recompiled, to link against the
74 newer library. (Note that there is no correlation between the package
75 version and the name of the library.) For example, consider a package
76 foo-1.2.3 that installs a shared library with the name <filename
77 class='libraryfile'>libfoo.so.1</filename>. Suppose you upgrade the package to
78 a newer version foo-1.2.4 that installs a shared library with the name
79 <filename class='libraryfile'>libfoo.so.2</filename>. In this case, any
80 packages that are dynamically linked to <filename
81 class='libraryfile'>libfoo.so.1</filename> need to be recompiled to link
82 against <filename class='libraryfile'>libfoo.so.2</filename> in order to
83 use the new library version. You should not remove the old
84 libraries until all the dependent packages have been recompiled.</para>
85 </listitem>
86
87 <listitem><para>If a package is (directly or indirectly) linked to both
88 the old and new names of a shared library (for example, the package
89 links to both <filename class='libraryfile'>libfoo.so.2</filename> and
90 <filename class='libraryfile'>libbar.so.1</filename>, while the latter
91 links to <filename class='libraryfile'>libfoo.so.3</filename>), the
92 package may malfunction because the different revisions of the shared
93 library present incompatible definitions for some symbol names. This can be
94 caused by recompiling some, but not all, of the packages linked to the
95 old shared library after the package providing the shared library is
96 upgraded. To avoid the issue, users will need to rebuild every package
97 linked to a shared library with an updated revision (e.g. libfoo.so.2 to
98 libfoo.so.3) as soon as possible.
99 </para></listitem>
100
101 <listitem> <para>If a package containing a shared library is updated,
102 and the name of the library doesn't change, but the version number of the
103 library <emphasis role="bold">file</emphasis> decreases (for example,
104 the library is still named
105 <filename class='libraryfile'>libfoo.so.1</filename>,
106 but the name of the library file is changed from
107 <filename class='libraryfile'>libfoo.so.1.25</filename> to
108 <filename class='libraryfile'>libfoo.so.1.24</filename>),
109 you should remove the library file from the previously installed version
110 (<filename class='libraryfile'>libfoo.so.1.25</filename> in this case).
111 Otherwise, a <command>ldconfig</command> command (invoked by yourself from the command
112 line, or by the installation of some package) will reset the symlink
113 <filename class='libraryfile'>libfoo.so.1</filename> to point to
114 the old library file because it seems to be a <quote>newer</quote>
115 version; its version number is larger. This situation may arise if
116 you have to downgrade a package, or if the authors change the versioning
117 scheme for library files.</para> </listitem>
118
119 <listitem><para>If a package containing a shared library is updated,
120 and the name of the library doesn't change, but a severe issue
121 (especially, a security vulnerability) is fixed, all running programs
122 linked to the shared library should be restarted. The following
123 command, run as <systemitem class="username">root</systemitem> after
124 the update is complete, will list which processes are using the old versions of those libraries
125 (replace <replaceable>libfoo</replaceable> with the name of the
126 library):</para>
127
128<screen role="nodump"><userinput>grep -l '<replaceable>libfoo</replaceable>.*deleted' /proc/*/maps | tr -cd 0-9\\n | xargs -r ps u</userinput></screen>
129
130 <para>
131 If <application>OpenSSH</application> is being used to access
132 the system and it is linked to the updated library, you must
133 restart the <command>sshd</command> service, then logout, login again,
134 and run the preceding command again to confirm that nothing is still using the
135 deleted libraries.
136 </para>
137
138 <para revision='systemd'>
139 If the <command>systemd</command> daemon (running as PID 1) is
140 linked to the updated library, you can restart it without rebooting
141 by running <command>systemctl daemon-reexec</command> as the
142 <systemitem class='username'>root</systemitem> user.
143 </para></listitem>
144
145 <listitem>
146 <para>If an executable program or a shared library is overwritten, the processes
147 using the code or data in that program or library may crash. The
148 correct way to update a program or a shared library without causing
149 the process to crash is to remove it first, then install the new
150 version. The <command>install</command> command
151 provided by <application>coreutils</application> has already
152 implemented this, and most packages use that command to install binary files and
153 libraries. This means that you won't be troubled by this issue most of the time.
154 However, the install process of some packages (notably SpiderMonkey
155 in BLFS) just overwrites the file if it exists; this causes a crash. So
156 it's safer to save your work and close unneeded running processes
157 before updating a package.</para> <!-- binary is an adjective, not a noun. -->
158 </listitem>
159 </itemizedlist>
160
161 </sect2>
162
163 <sect2>
164 <title>Package Management Techniques</title>
165
166 <para>The following are some common package management techniques. Before
167 making a decision on a package manager, do some research on the various
168 techniques, particularly the drawbacks of each particular scheme.</para>
169
170 <sect3>
171 <title>It is All in My Head!</title>
172
173 <para>Yes, this is a package management technique. Some folks do not
174 need a package manager because they know the packages intimately
175 and know which files are installed by each package. Some users also do not
176 need any package management because they plan on rebuilding the entire
177 system whenever a package is changed.</para>
178
179 </sect3>
180
181 <sect3>
182 <title>Install in Separate Directories</title>
183
184 <para>This is a simplistic package management technique that does not need a
185 special program to manage the packages. Each package is installed in a
186 separate directory. For example, package foo-1.1 is installed in
187 <filename class='directory'>/opt/foo-1.1</filename>
188 and a symlink is made from <filename>/opt/foo</filename> to
189 <filename class='directory'>/opt/foo-1.1</filename>. When
190 a new version foo-1.2 comes along, it is installed in
191 <filename class='directory'>/opt/foo-1.2</filename> and the previous
192 symlink is replaced by a symlink to the new version.</para>
193
194 <para>Environment variables such as <envar>PATH</envar>,
195 <envar>MANPATH</envar>, <envar>INFOPATH</envar>,
196 <envar>PKG_CONFIG_PATH</envar>, <envar>CPPFLAGS</envar>,
197 <envar>LDFLAGS</envar>, and the configuration file
198 <filename>/etc/ld.so.conf</filename> may need to be expanded to
199 include the corresponding subdirectories in
200 <filename class='directory'>/opt/foo-x.y</filename>.</para>
201
202 <para>
203 This scheme is used by the BLFS book to install some very large
204 packages to make it easier to upgrade them. If you install more
205 than a few packages, this scheme becomes unmanageable. And some
206 packages (for example Linux API headers and Glibc) may not work well
207 with this scheme.
208 <emphasis role='bold'>Never use this scheme system-wide.</emphasis>
209 </para>
210 </sect3>
211
212 <sect3>
213 <title>Symlink Style Package Management</title>
214
215 <para>This is a variation of the previous package management technique.
216 Each package is installed as in the previous scheme. But instead of
217 making the symlink via a generic package name, each file is symlinked into the
218 <filename class='directory'>/usr</filename> hierarchy. This removes the
219 need to expand the environment variables. Though the symlinks can be
220 created by the user, many package managers use this approach, and
221 automate the creation of the symlinks. A few of the popular ones include Stow,
222 Epkg, Graft, and Depot.</para>
223
224 <para>The installation script needs to be fooled, so the package thinks
225 it is installed in <filename class="directory">/usr</filename> though in
226 reality it is installed in the
227 <filename class="directory">/usr/pkg</filename> hierarchy. Installing in
228 this manner is not usually a trivial task. For example, suppose you
229 are installing a package libfoo-1.1. The following instructions may
230 not install the package properly:</para>
231
232<screen role="nodump"><userinput>./configure --prefix=/usr/pkg/libfoo/1.1
233make
234make install</userinput></screen>
235
236 <para>The installation will work, but the dependent packages may not link
237 to libfoo as you would expect. If you compile a package that links against
238 libfoo, you may notice that it is linked to
239 <filename class='libraryfile'>/usr/pkg/libfoo/1.1/lib/libfoo.so.1</filename>
240 instead of <filename class='libraryfile'>/usr/lib/libfoo.so.1</filename>
241 as you would expect. The correct approach is to use the
242 <envar>DESTDIR</envar> variable to direct the installation. This
243 approach works as follows:</para>
244
245<screen role="nodump"><userinput>./configure --prefix=/usr
246make
247make DESTDIR=/usr/pkg/libfoo/1.1 install</userinput></screen>
248
249 <para>Most packages support this approach, but there are some which do not.
250 For the non-compliant packages, you may either need to install the
251 package manually, or you may find that it is easier to install some problematic
252 packages into <filename class='directory'>/opt</filename>.</para>
253
254 </sect3>
255
256 <sect3>
257 <title>Timestamp Based</title>
258
259 <para>In this technique, a file is timestamped before the installation of
260 the package. After the installation, a simple use of the
261 <command>find</command> command with the appropriate options can generate
262 a log of all the files installed after the timestamp file was created. A
263 package manager that uses this approach is install-log.</para>
264
265 <para>Though this scheme has the advantage of being simple, it has two
266 drawbacks. If, during installation, the files are installed with any
267 timestamp other than the current time, those files will not be tracked by
268 the package manager. Also, this scheme can only be used when packages
269 are installed one at a time. The logs are not reliable if two packages are
270 installed simultaneously from two different consoles.</para>
271
272 </sect3>
273
274 <sect3>
275 <title>Tracing Installation Scripts</title>
276
277 <para>In this approach, the commands that the installation scripts perform
278 are recorded. There are two techniques that one can use:</para>
279
280 <para>The <envar>LD_PRELOAD</envar> environment variable can be set to
281 point to a library to be preloaded before installation. During
282 installation, this library tracks the packages that are being installed by
283 attaching itself to various executables such as <command>cp</command>,
284 <command>install</command>, <command>mv</command> and tracking the system
285 calls that modify the filesystem. For this approach to work, all the
286 executables need to be dynamically linked without the suid or sgid bit.
287 Preloading the library may cause some unwanted side-effects during
288 installation. Therefore, it's a good idea to perform some tests to
289 ensure that the package manager does not break anything, and that it logs all the
290 appropriate files.</para>
291
292 <para>Another technique is to use <command>strace</command>, which
293 logs all the system calls made during the execution of the installation
294 scripts.</para>
295 </sect3>
296
297 <sect3>
298 <title>Creating Package Archives</title>
299
300 <para>In this scheme, the package installation is faked into a separate
301 tree as previously described in the symlink style package management section. After the
302 installation, a package archive is created using the installed files.
303 This archive is then used to install the package on the local
304 machine or even on other machines.</para>
305
306 <para>This approach is used by most of the package managers found in the
307 commercial distributions. Examples of package managers that follow this
308 approach are RPM (which, incidentally, is required by the <ulink
309 url="https://refspecs.linuxfoundation.org/lsb.shtml">Linux
310 Standard Base Specification</ulink>), pkg-utils, Debian's apt, and
311 Gentoo's Portage system. A hint describing how to adopt this style of
312 package management for LFS systems is located at <ulink
313 url="&hints-root;fakeroot.txt"/>.</para>
314
315 <para>The creation of package files that include dependency information is
316 complex, and beyond the scope of LFS.</para>
317
318 <para>Slackware uses a <command>tar</command>-based system for package
319 archives. This system purposely does not handle package dependencies
320 as more complex package managers do. For details of Slackware package
321 management, see <ulink
322 url="https://www.slackbook.org/html/package-management.html"/>.</para>
323 </sect3>
324
325 <sect3>
326 <title>User Based Management</title>
327
328 <para>This scheme, unique to LFS, was devised by Matthias Benkmann, and is
329 available from the <ulink url="&hints-root;">Hints Project</ulink>. In
330 this scheme, each package is installed as a separate user into the
331 standard locations. Files belonging to a package are easily identified by
332 checking the user ID. The features and shortcomings of this approach are
333 too complex to describe in this section. For the details please see the
334 hint at <ulink url="&hints-root;more_control_and_pkg_man.txt"/>.</para>
335
336 </sect3>
337
338 </sect2>
339
340 <sect2>
341 <title>Deploying LFS on Multiple Systems</title>
342
343 <para>One of the advantages of an LFS system is that there are no files that
344 depend on the position of files on a disk system. Cloning an LFS build to
345 another computer with the same architecture as the base system is as
346 simple as using <command>tar</command> on the LFS partition that contains
347 the root directory (about 900MB uncompressed for a basic LFS build), copying
348 <!-- D. Bryant created LFS 11.2 in October 2022; 900MB is (roughly) the size of his rsync archive. -->
349 that file via network transfer or CD-ROM / USB stick to the new system, and expanding
350 it. After that, a few configuration files will have to be changed.
351 Configuration files that may need to be updated include:
352 <filename>/etc/hosts</filename>,
353 <filename>/etc/fstab</filename>,
354 <filename>/etc/passwd</filename>,
355 <filename>/etc/group</filename>,
356 <phrase revision="systemd">
357 <filename>/etc/shadow</filename>, and
358 <filename>/etc/ld.so.conf</filename>.
359 </phrase>
360 <phrase revision="sysv">
361 <filename>/etc/shadow</filename>,
362 <filename>/etc/ld.so.conf</filename>,
363 <filename>/etc/sysconfig/rc.site</filename>,
364 <filename>/etc/sysconfig/network</filename>, and
365 <filename>/etc/sysconfig/ifconfig.eth0</filename>.
366 </phrase>
367 </para>
368
369 <para>A custom kernel may be needed for the new system, depending on
370 differences in system hardware and the original kernel
371 configuration.</para>
372
373 <note><para>There have been some reports of issues when copying between
374 similar but not identical architectures. For instance, the instruction set
375 for an Intel system is not identical with the AMD processor's instructions, and later
376 versions of some processors may provide instructions that are unavailable with
377 earlier versions.</para></note>
378
379 <para>Finally, the new system has to be made bootable via <xref
380 linkend="ch-bootable-grub"/>.</para>
381
382 </sect2>
383
384</sect1>
Note: See TracBrowser for help on using the repository browser.