source: postlfs/security/cryptsetup.xml@ de70936

12.0 12.1 ken/TL2024 ken/tuningfonts lazarus plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18 xry111/xf86-video-removal
Last change on this file since de70936 was b9567b04, checked in by Xi Ruoyao <xry111@…>, 12 months ago

postlfs: Remove non-exist User Notes link

Part of User Notes removal by
https://www.linuxfromscratch.org/~xry111/remove-nonexist-usernote.sh

  • Property mode set to 100644
File size: 9.2 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
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 <!ENTITY cryptsetup-download-http "&kernel-dl;/linux/utils/cryptsetup/v&cryptsetup-minor;/cryptsetup-&cryptsetup-version;.tar.xz">
8 <!ENTITY cryptsetup-download-ftp " ">
9 <!ENTITY cryptsetup-md5sum "2303d57e78d4977344188a46e125095c">
10 <!ENTITY cryptsetup-size "11 MB">
11 <!ENTITY cryptsetup-buildsize "29 MB (add 5 MB for tests)">
12 <!ENTITY cryptsetup-time "0.2 SBU (add 19 SBU for tests)">
13]>
14
15<sect1 id="cryptsetup" xreflabel="cryptsetup-&cryptsetup-version;">
16 <?dbhtml filename="cryptsetup.html"?>
17
18
19 <title>cryptsetup-&cryptsetup-version;</title>
20
21 <indexterm zone="cryptsetup">
22 <primary sortas="a-cryptsetup">cryptsetup</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to cryptsetup</title>
27
28 <para>
29 cryptsetup is used to set up transparent encryption of block devices
30 using the kernel crypto API.
31 </para>
32
33 &lfs113_checked;
34
35 <bridgehead renderas="sect3">Package Information</bridgehead>
36 <itemizedlist spacing="compact">
37 <listitem>
38 <para>
39 Download (HTTP): <ulink url="&cryptsetup-download-http;"/>
40 </para>
41 </listitem>
42 <listitem>
43 <para>
44 Download (FTP): <ulink url="&cryptsetup-download-ftp;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download MD5 sum: &cryptsetup-md5sum;
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download size: &cryptsetup-size;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Estimated disk space required: &cryptsetup-buildsize;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated build time: &cryptsetup-time;
65 </para>
66 </listitem>
67 </itemizedlist>
68
69<!-- No longer needed with 2.3.2.
70 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
71 <itemizedlist spacing="compact">
72 <listitem>
73 <para>
74 Required patch:
75 <ulink url="&patch-root;/cryptsetup-&cryptsetup-version;-upstream_fixes-1.patch"/>
76 </para>
77 </listitem>
78 </itemizedlist>
79-->
80
81 <bridgehead renderas="sect3">cryptsetup Dependencies</bridgehead>
82
83 <bridgehead renderas="sect4">Required</bridgehead>
84 <para role="required">
85 <xref linkend="json-c"/>,
86 <xref linkend="lvm2"/>, and
87 <xref linkend="popt"/>
88 </para>
89
90 <bridgehead renderas="sect4">Optional</bridgehead>
91 <para role="optional">
92 <xref linkend="libpwquality"/>,
93 <ulink url="https://github.com/P-H-C/phc-winner-argon2">argon2</ulink>,
94 <ulink url="https://www.libssh.org/">libssh</ulink>, and
95 <ulink url="https://www.openwall.com/passwdqc/">passwdqc</ulink>
96 </para>
97
98
99 </sect2>
100
101 <sect2 role="kernel" id="cryptsetup-kernel">
102 <title>Kernel Configuration</title>
103
104 <para>
105 Encrypted block devices require kernel support. To use it, the
106 appropriate kernel configuration parameters need to be set:
107 </para>
108
109<screen><literal>Device Drivers ---&gt;
110 [*] Multiple devices driver support (RAID and LVM) ---&gt; [CONFIG_MD]
111 &lt;*/M&gt; Device mapper support [CONFIG_BLK_DEV_DM]
112 &lt;*/M&gt; Crypt target support [CONFIG_DM_CRYPT]
113
114-*- Cryptographic API ---&gt; [CONFIG_CRYPTO]
115 Length-preserving ciphers and modes ---&gt;
116 &lt;*/M&gt; XTS support [CONFIG_CRYPTO_XTS]
117 Hashes, digests, and MACs --->
118 -*- SHA224 and SHA256 digest algorithm [CONFIG_CRYPTO_SHA256]
119 Block ciphers --->
120 -*- AES cipher algorithms [CONFIG_CRYPTO_AES]
121 Userspace interface --->
122 &lt;*/M&gt; Symmetric key cipher algorithms [CONFIG_CRYPTO_USER_API_SKCIPHER]
123 For tests:
124 Block ciphers --->
125 &lt;*/M&gt; Twofish [CONFIG_CRYPTO_TWOFISH]</literal></screen>
126
127 <indexterm zone="cryptsetup cryptsetup-kernel">
128 <primary sortas="d-cryptsetup">cryptsetup</primary>
129 </indexterm>
130
131 </sect2>
132
133 <sect2 role="installation">
134 <title>Installation of cryptsetup</title>
135
136<!-- No longer needed with 2.3.2
137 <para>
138 First, apply a patch to fix a build problem caused by API changes in
139 <xref role="nodep" linkend="json-c"/>:
140 </para>
141
142<screen><userinput remap="pre">patch -Np1 -i ../cryptsetup-&cryptsetup-version;-upstream_fixes-1.patch</userinput></screen>
143-->
144
145 <para>
146 Install <application>cryptsetup</application> by running the following
147 commands:
148 </para>
149
150<screen><userinput>./configure --prefix=/usr --disable-ssh-token &amp;&amp;
151make</userinput></screen>
152
153 <para>
154 To test the result, issue as the <systemitem
155 class="username">root</systemitem> user: <command>make check</command>.
156 Some tests will fail if appropriate kernel configuration options are not
157 set. Some additional options that may be needed for tests are:
158 CONFIG_SCSI_LOWLEVEL,
159 CONFIG_SCSI_DEBUG,
160 CONFIG_BLK_DEV_DM_BUILTIN,
161 CONFIG_CRYPTO_USER,
162 CONFIG_CRYPTO_CRYPTD,
163 CONFIG_CRYPTO_LRW,
164 CONFIG_CRYPTO_XTS,
165 CONFIG_CRYPTO_ESSIV,
166 CONFIG_CRYPTO_CRCT10DIF,
167 CONFIG_CRYPTO_AES_TI,
168 CONFIG_CRYPTO_AES_NI_INTEL,
169 CONFIG_CRYPTO_BLOWFISH,
170 CONFIG_CRYPTO_CAST5,
171 CONFIG_CRYPTO_SERPENT,
172 CONFIG_CRYPTO_SERPENT_SSE2_X86_64,
173 CONFIG_CRYPTO_SERPENT_AVX_X86_64,
174 CONFIG_CRYPTO_SERPENT_AVX2_X86_64, and
175 CONFIG_CRYPTO_TWOFISH_X86_64.
176 <!--I had 1 of 21 tests fail with the above crypto options in the
177 kernel. Eight tests were not run. Version 2.4.3.
178 Failed test was tcrypt-compat-test
179 tcrypt-images/tc_1-ripemd160-cbc-aes [FAILED]
180 bdubbs -->
181 </para>
182
183 <para>
184 Now, as the <systemitem class="username">root</systemitem> user:
185 </para>
186
187<screen role="root"><userinput>make install</userinput></screen>
188
189 </sect2>
190
191 <sect2 role="commands">
192 <title>Command Explanations</title>
193 <para>
194 <option>--disable-ssh-token</option>: This option is required if
195 the optional libssh dependency is not installed.
196 </para>
197 </sect2>
198
199 <sect2 role="configuration">
200 <title>Configuring cryptsetup</title>
201
202 <para>
203 Because of the number of possible configurations, setup of encrypted
204 volumes is beyond the scope of the BLFS book. Please see the
205 configuration guide in the cryptsetup <ulink
206 url="https://gitlab.com/cryptsetup/cryptsetup/wikis/FrequentlyAskedQuestions#2-setup">
207 FAQ</ulink>.
208 </para>
209
210 </sect2>
211
212 <sect2 role="content">
213 <title>Contents</title>
214
215 <segmentedlist>
216 <segtitle>Installed Programs</segtitle>
217 <segtitle>Installed Libraries</segtitle>
218 <segtitle>Installed Directories</segtitle>
219
220 <seglistitem>
221 <seg>
222 cryptsetup,
223 cryptsetup-reencrypt,
224 integritysetup, and
225 veritysetup
226 </seg>
227 <seg>
228 libcryptsetup.so
229 </seg>
230 <seg>
231 None
232 </seg>
233 </seglistitem>
234 </segmentedlist>
235
236 <variablelist>
237 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
238 <?dbfo list-presentation="list"?>
239 <?dbhtml list-presentation="table"?>
240
241 <varlistentry id="cryptsetup-prog">
242 <term><command>cryptsetup</command></term>
243 <listitem>
244 <para>
245 is used to setup dm-crypt managed device-mapper mappings
246 </para>
247 <indexterm zone="cryptsetup cryptsetup-prog">
248 <primary sortas="b-cryptsetup">cryptsetup</primary>
249 </indexterm>
250 </listitem>
251 </varlistentry>
252
253 <varlistentry id="cryptsetup-reencrypt">
254 <term><command>cryptsetup-reencrypt</command></term>
255 <listitem>
256 <para>
257 is a tool for offline LUKS device re-encryption
258 </para>
259 <indexterm zone="cryptsetup cryptsetup-reencrypt">
260 <primary sortas="b-cryptsetup-reencrypt">cryptsetup-reencrypt</primary>
261 </indexterm>
262 </listitem>
263 </varlistentry>
264
265 <varlistentry id="integritysetup">
266 <term><command>integritysetup</command></term>
267 <listitem>
268 <para>
269 is a tool to manage dm-integrity (block level integrity) volumes
270 </para>
271 <indexterm zone="cryptsetup integritysetup">
272 <primary sortas="b-integritysetup">integritysetup</primary>
273 </indexterm>
274 </listitem>
275 </varlistentry>
276
277 <varlistentry id="veritysetup">
278 <term><command>veritysetup</command></term>
279 <listitem>
280 <para>
281 is used to configure dm-verity managed device-mapper mappings.
282 Device-mapper verity target provides read-only transparent integrity
283 checking of block devices using kernel crypto API
284 </para>
285 <indexterm zone="cryptsetup veritysetup">
286 <primary sortas="b-veritysetup">veritysetup</primary>
287 </indexterm>
288 </listitem>
289 </varlistentry>
290
291 </variablelist>
292
293 </sect2>
294
295</sect1>
Note: See TracBrowser for help on using the repository browser.