]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - Documentation/crypto/architecture.rst
crypto: doc - convert crypto API documentation to Sphinx
[mirror_ubuntu-zesty-kernel.git] / Documentation / crypto / architecture.rst
1 Kernel Crypto API Architecture
2 ==============================
3
4 Cipher algorithm types
5 ----------------------
6
7 The kernel crypto API provides different API calls for the following
8 cipher types:
9
10 - Symmetric ciphers
11
12 - AEAD ciphers
13
14 - Message digest, including keyed message digest
15
16 - Random number generation
17
18 - User space interface
19
20 Ciphers And Templates
21 ---------------------
22
23 The kernel crypto API provides implementations of single block ciphers
24 and message digests. In addition, the kernel crypto API provides
25 numerous "templates" that can be used in conjunction with the single
26 block ciphers and message digests. Templates include all types of block
27 chaining mode, the HMAC mechanism, etc.
28
29 Single block ciphers and message digests can either be directly used by
30 a caller or invoked together with a template to form multi-block ciphers
31 or keyed message digests.
32
33 A single block cipher may even be called with multiple templates.
34 However, templates cannot be used without a single cipher.
35
36 See /proc/crypto and search for "name". For example:
37
38 - aes
39
40 - ecb(aes)
41
42 - cmac(aes)
43
44 - ccm(aes)
45
46 - rfc4106(gcm(aes))
47
48 - sha1
49
50 - hmac(sha1)
51
52 - authenc(hmac(sha1),cbc(aes))
53
54 In these examples, "aes" and "sha1" are the ciphers and all others are
55 the templates.
56
57 Synchronous And Asynchronous Operation
58 --------------------------------------
59
60 The kernel crypto API provides synchronous and asynchronous API
61 operations.
62
63 When using the synchronous API operation, the caller invokes a cipher
64 operation which is performed synchronously by the kernel crypto API.
65 That means, the caller waits until the cipher operation completes.
66 Therefore, the kernel crypto API calls work like regular function calls.
67 For synchronous operation, the set of API calls is small and
68 conceptually similar to any other crypto library.
69
70 Asynchronous operation is provided by the kernel crypto API which
71 implies that the invocation of a cipher operation will complete almost
72 instantly. That invocation triggers the cipher operation but it does not
73 signal its completion. Before invoking a cipher operation, the caller
74 must provide a callback function the kernel crypto API can invoke to
75 signal the completion of the cipher operation. Furthermore, the caller
76 must ensure it can handle such asynchronous events by applying
77 appropriate locking around its data. The kernel crypto API does not
78 perform any special serialization operation to protect the caller's data
79 integrity.
80
81 Crypto API Cipher References And Priority
82 -----------------------------------------
83
84 A cipher is referenced by the caller with a string. That string has the
85 following semantics:
86
87 ::
88
89 template(single block cipher)
90
91
92 where "template" and "single block cipher" is the aforementioned
93 template and single block cipher, respectively. If applicable,
94 additional templates may enclose other templates, such as
95
96 ::
97
98 template1(template2(single block cipher)))
99
100
101 The kernel crypto API may provide multiple implementations of a template
102 or a single block cipher. For example, AES on newer Intel hardware has
103 the following implementations: AES-NI, assembler implementation, or
104 straight C. Now, when using the string "aes" with the kernel crypto API,
105 which cipher implementation is used? The answer to that question is the
106 priority number assigned to each cipher implementation by the kernel
107 crypto API. When a caller uses the string to refer to a cipher during
108 initialization of a cipher handle, the kernel crypto API looks up all
109 implementations providing an implementation with that name and selects
110 the implementation with the highest priority.
111
112 Now, a caller may have the need to refer to a specific cipher
113 implementation and thus does not want to rely on the priority-based
114 selection. To accommodate this scenario, the kernel crypto API allows
115 the cipher implementation to register a unique name in addition to
116 common names. When using that unique name, a caller is therefore always
117 sure to refer to the intended cipher implementation.
118
119 The list of available ciphers is given in /proc/crypto. However, that
120 list does not specify all possible permutations of templates and
121 ciphers. Each block listed in /proc/crypto may contain the following
122 information -- if one of the components listed as follows are not
123 applicable to a cipher, it is not displayed:
124
125 - name: the generic name of the cipher that is subject to the
126 priority-based selection -- this name can be used by the cipher
127 allocation API calls (all names listed above are examples for such
128 generic names)
129
130 - driver: the unique name of the cipher -- this name can be used by the
131 cipher allocation API calls
132
133 - module: the kernel module providing the cipher implementation (or
134 "kernel" for statically linked ciphers)
135
136 - priority: the priority value of the cipher implementation
137
138 - refcnt: the reference count of the respective cipher (i.e. the number
139 of current consumers of this cipher)
140
141 - selftest: specification whether the self test for the cipher passed
142
143 - type:
144
145 - skcipher for symmetric key ciphers
146
147 - cipher for single block ciphers that may be used with an
148 additional template
149
150 - shash for synchronous message digest
151
152 - ahash for asynchronous message digest
153
154 - aead for AEAD cipher type
155
156 - compression for compression type transformations
157
158 - rng for random number generator
159
160 - givcipher for cipher with associated IV generator (see the geniv
161 entry below for the specification of the IV generator type used by
162 the cipher implementation)
163
164 - blocksize: blocksize of cipher in bytes
165
166 - keysize: key size in bytes
167
168 - ivsize: IV size in bytes
169
170 - seedsize: required size of seed data for random number generator
171
172 - digestsize: output size of the message digest
173
174 - geniv: IV generation type:
175
176 - eseqiv for encrypted sequence number based IV generation
177
178 - seqiv for sequence number based IV generation
179
180 - chainiv for chain iv generation
181
182 - <builtin> is a marker that the cipher implements IV generation and
183 handling as it is specific to the given cipher
184
185 Key Sizes
186 ---------
187
188 When allocating a cipher handle, the caller only specifies the cipher
189 type. Symmetric ciphers, however, typically support multiple key sizes
190 (e.g. AES-128 vs. AES-192 vs. AES-256). These key sizes are determined
191 with the length of the provided key. Thus, the kernel crypto API does
192 not provide a separate way to select the particular symmetric cipher key
193 size.
194
195 Cipher Allocation Type And Masks
196 --------------------------------
197
198 The different cipher handle allocation functions allow the specification
199 of a type and mask flag. Both parameters have the following meaning (and
200 are therefore not covered in the subsequent sections).
201
202 The type flag specifies the type of the cipher algorithm. The caller
203 usually provides a 0 when the caller wants the default handling.
204 Otherwise, the caller may provide the following selections which match
205 the aforementioned cipher types:
206
207 - CRYPTO_ALG_TYPE_CIPHER Single block cipher
208
209 - CRYPTO_ALG_TYPE_COMPRESS Compression
210
211 - CRYPTO_ALG_TYPE_AEAD Authenticated Encryption with Associated Data
212 (MAC)
213
214 - CRYPTO_ALG_TYPE_BLKCIPHER Synchronous multi-block cipher
215
216 - CRYPTO_ALG_TYPE_ABLKCIPHER Asynchronous multi-block cipher
217
218 - CRYPTO_ALG_TYPE_GIVCIPHER Asynchronous multi-block cipher packed
219 together with an IV generator (see geniv field in the /proc/crypto
220 listing for the known IV generators)
221
222 - CRYPTO_ALG_TYPE_DIGEST Raw message digest
223
224 - CRYPTO_ALG_TYPE_HASH Alias for CRYPTO_ALG_TYPE_DIGEST
225
226 - CRYPTO_ALG_TYPE_SHASH Synchronous multi-block hash
227
228 - CRYPTO_ALG_TYPE_AHASH Asynchronous multi-block hash
229
230 - CRYPTO_ALG_TYPE_RNG Random Number Generation
231
232 - CRYPTO_ALG_TYPE_AKCIPHER Asymmetric cipher
233
234 - CRYPTO_ALG_TYPE_PCOMPRESS Enhanced version of
235 CRYPTO_ALG_TYPE_COMPRESS allowing for segmented compression /
236 decompression instead of performing the operation on one segment
237 only. CRYPTO_ALG_TYPE_PCOMPRESS is intended to replace
238 CRYPTO_ALG_TYPE_COMPRESS once existing consumers are converted.
239
240 The mask flag restricts the type of cipher. The only allowed flag is
241 CRYPTO_ALG_ASYNC to restrict the cipher lookup function to
242 asynchronous ciphers. Usually, a caller provides a 0 for the mask flag.
243
244 When the caller provides a mask and type specification, the caller
245 limits the search the kernel crypto API can perform for a suitable
246 cipher implementation for the given cipher name. That means, even when a
247 caller uses a cipher name that exists during its initialization call,
248 the kernel crypto API may not select it due to the used type and mask
249 field.
250
251 Internal Structure of Kernel Crypto API
252 ---------------------------------------
253
254 The kernel crypto API has an internal structure where a cipher
255 implementation may use many layers and indirections. This section shall
256 help to clarify how the kernel crypto API uses various components to
257 implement the complete cipher.
258
259 The following subsections explain the internal structure based on
260 existing cipher implementations. The first section addresses the most
261 complex scenario where all other scenarios form a logical subset.
262
263 Generic AEAD Cipher Structure
264 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
265
266 The following ASCII art decomposes the kernel crypto API layers when
267 using the AEAD cipher with the automated IV generation. The shown
268 example is used by the IPSEC layer.
269
270 For other use cases of AEAD ciphers, the ASCII art applies as well, but
271 the caller may not use the AEAD cipher with a separate IV generator. In
272 this case, the caller must generate the IV.
273
274 The depicted example decomposes the AEAD cipher of GCM(AES) based on the
275 generic C implementations (gcm.c, aes-generic.c, ctr.c, ghash-generic.c,
276 seqiv.c). The generic implementation serves as an example showing the
277 complete logic of the kernel crypto API.
278
279 It is possible that some streamlined cipher implementations (like
280 AES-NI) provide implementations merging aspects which in the view of the
281 kernel crypto API cannot be decomposed into layers any more. In case of
282 the AES-NI implementation, the CTR mode, the GHASH implementation and
283 the AES cipher are all merged into one cipher implementation registered
284 with the kernel crypto API. In this case, the concept described by the
285 following ASCII art applies too. However, the decomposition of GCM into
286 the individual sub-components by the kernel crypto API is not done any
287 more.
288
289 Each block in the following ASCII art is an independent cipher instance
290 obtained from the kernel crypto API. Each block is accessed by the
291 caller or by other blocks using the API functions defined by the kernel
292 crypto API for the cipher implementation type.
293
294 The blocks below indicate the cipher type as well as the specific logic
295 implemented in the cipher.
296
297 The ASCII art picture also indicates the call structure, i.e. who calls
298 which component. The arrows point to the invoked block where the caller
299 uses the API applicable to the cipher type specified for the block.
300
301 ::
302
303
304 kernel crypto API | IPSEC Layer
305 |
306 +-----------+ |
307 | | (1)
308 | aead | <----------------------------------- esp_output
309 | (seqiv) | ---+
310 +-----------+ |
311 | (2)
312 +-----------+ |
313 | | <--+ (2)
314 | aead | <----------------------------------- esp_input
315 | (gcm) | ------------+
316 +-----------+ |
317 | (3) | (5)
318 v v
319 +-----------+ +-----------+
320 | | | |
321 | skcipher | | ahash |
322 | (ctr) | ---+ | (ghash) |
323 +-----------+ | +-----------+
324 |
325 +-----------+ | (4)
326 | | <--+
327 | cipher |
328 | (aes) |
329 +-----------+
330
331
332
333 The following call sequence is applicable when the IPSEC layer triggers
334 an encryption operation with the esp_output function. During
335 configuration, the administrator set up the use of rfc4106(gcm(aes)) as
336 the cipher for ESP. The following call sequence is now depicted in the
337 ASCII art above:
338
339 1. esp_output() invokes crypto_aead_encrypt() to trigger an
340 encryption operation of the AEAD cipher with IV generator.
341
342 In case of GCM, the SEQIV implementation is registered as GIVCIPHER
343 in crypto_rfc4106_alloc().
344
345 The SEQIV performs its operation to generate an IV where the core
346 function is seqiv_geniv().
347
348 2. Now, SEQIV uses the AEAD API function calls to invoke the associated
349 AEAD cipher. In our case, during the instantiation of SEQIV, the
350 cipher handle for GCM is provided to SEQIV. This means that SEQIV
351 invokes AEAD cipher operations with the GCM cipher handle.
352
353 During instantiation of the GCM handle, the CTR(AES) and GHASH
354 ciphers are instantiated. The cipher handles for CTR(AES) and GHASH
355 are retained for later use.
356
357 The GCM implementation is responsible to invoke the CTR mode AES and
358 the GHASH cipher in the right manner to implement the GCM
359 specification.
360
361 3. The GCM AEAD cipher type implementation now invokes the SKCIPHER API
362 with the instantiated CTR(AES) cipher handle.
363
364 During instantiation of the CTR(AES) cipher, the CIPHER type
365 implementation of AES is instantiated. The cipher handle for AES is
366 retained.
367
368 That means that the SKCIPHER implementation of CTR(AES) only
369 implements the CTR block chaining mode. After performing the block
370 chaining operation, the CIPHER implementation of AES is invoked.
371
372 4. The SKCIPHER of CTR(AES) now invokes the CIPHER API with the AES
373 cipher handle to encrypt one block.
374
375 5. The GCM AEAD implementation also invokes the GHASH cipher
376 implementation via the AHASH API.
377
378 When the IPSEC layer triggers the esp_input() function, the same call
379 sequence is followed with the only difference that the operation starts
380 with step (2).
381
382 Generic Block Cipher Structure
383 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
384
385 Generic block ciphers follow the same concept as depicted with the ASCII
386 art picture above.
387
388 For example, CBC(AES) is implemented with cbc.c, and aes-generic.c. The
389 ASCII art picture above applies as well with the difference that only
390 step (4) is used and the SKCIPHER block chaining mode is CBC.
391
392 Generic Keyed Message Digest Structure
393 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
394
395 Keyed message digest implementations again follow the same concept as
396 depicted in the ASCII art picture above.
397
398 For example, HMAC(SHA256) is implemented with hmac.c and
399 sha256_generic.c. The following ASCII art illustrates the
400 implementation:
401
402 ::
403
404
405 kernel crypto API | Caller
406 |
407 +-----------+ (1) |
408 | | <------------------ some_function
409 | ahash |
410 | (hmac) | ---+
411 +-----------+ |
412 | (2)
413 +-----------+ |
414 | | <--+
415 | shash |
416 | (sha256) |
417 +-----------+
418
419
420
421 The following call sequence is applicable when a caller triggers an HMAC
422 operation:
423
424 1. The AHASH API functions are invoked by the caller. The HMAC
425 implementation performs its operation as needed.
426
427 During initialization of the HMAC cipher, the SHASH cipher type of
428 SHA256 is instantiated. The cipher handle for the SHA256 instance is
429 retained.
430
431 At one time, the HMAC implementation requires a SHA256 operation
432 where the SHA256 cipher handle is used.
433
434 2. The HMAC instance now invokes the SHASH API with the SHA256 cipher
435 handle to calculate the message digest.