4 * Support for s390 cryptographic instructions.
6 * Copyright IBM Corp. 2003,2007
7 * Author(s): Thomas Spatzier
8 * Jan Glauber (jan.glauber@de.ibm.com)
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the Free
12 * Software Foundation; either version 2 of the License, or (at your option)
16 #ifndef _CRYPTO_ARCH_S390_CRYPT_S390_H
17 #define _CRYPTO_ARCH_S390_CRYPT_S390_H
19 #include <asm/errno.h>
21 #define CRYPT_S390_OP_MASK 0xFF00
22 #define CRYPT_S390_FUNC_MASK 0x00FF
24 #define CRYPT_S390_PRIORITY 300
25 #define CRYPT_S390_COMPOSITE_PRIORITY 400
27 /* s390 cryptographic operations */
28 enum crypt_s390_operations
{
29 CRYPT_S390_KM
= 0x0100,
30 CRYPT_S390_KMC
= 0x0200,
31 CRYPT_S390_KIMD
= 0x0300,
32 CRYPT_S390_KLMD
= 0x0400,
33 CRYPT_S390_KMAC
= 0x0500
37 * function codes for KM (CIPHER MESSAGE) instruction
38 * 0x80 is the decipher modifier bit
40 enum crypt_s390_km_func
{
41 KM_QUERY
= CRYPT_S390_KM
| 0x0,
42 KM_DEA_ENCRYPT
= CRYPT_S390_KM
| 0x1,
43 KM_DEA_DECRYPT
= CRYPT_S390_KM
| 0x1 | 0x80,
44 KM_TDEA_128_ENCRYPT
= CRYPT_S390_KM
| 0x2,
45 KM_TDEA_128_DECRYPT
= CRYPT_S390_KM
| 0x2 | 0x80,
46 KM_TDEA_192_ENCRYPT
= CRYPT_S390_KM
| 0x3,
47 KM_TDEA_192_DECRYPT
= CRYPT_S390_KM
| 0x3 | 0x80,
48 KM_AES_128_ENCRYPT
= CRYPT_S390_KM
| 0x12,
49 KM_AES_128_DECRYPT
= CRYPT_S390_KM
| 0x12 | 0x80,
50 KM_AES_192_ENCRYPT
= CRYPT_S390_KM
| 0x13,
51 KM_AES_192_DECRYPT
= CRYPT_S390_KM
| 0x13 | 0x80,
52 KM_AES_256_ENCRYPT
= CRYPT_S390_KM
| 0x14,
53 KM_AES_256_DECRYPT
= CRYPT_S390_KM
| 0x14 | 0x80,
57 * function codes for KMC (CIPHER MESSAGE WITH CHAINING)
60 enum crypt_s390_kmc_func
{
61 KMC_QUERY
= CRYPT_S390_KMC
| 0x0,
62 KMC_DEA_ENCRYPT
= CRYPT_S390_KMC
| 0x1,
63 KMC_DEA_DECRYPT
= CRYPT_S390_KMC
| 0x1 | 0x80,
64 KMC_TDEA_128_ENCRYPT
= CRYPT_S390_KMC
| 0x2,
65 KMC_TDEA_128_DECRYPT
= CRYPT_S390_KMC
| 0x2 | 0x80,
66 KMC_TDEA_192_ENCRYPT
= CRYPT_S390_KMC
| 0x3,
67 KMC_TDEA_192_DECRYPT
= CRYPT_S390_KMC
| 0x3 | 0x80,
68 KMC_AES_128_ENCRYPT
= CRYPT_S390_KMC
| 0x12,
69 KMC_AES_128_DECRYPT
= CRYPT_S390_KMC
| 0x12 | 0x80,
70 KMC_AES_192_ENCRYPT
= CRYPT_S390_KMC
| 0x13,
71 KMC_AES_192_DECRYPT
= CRYPT_S390_KMC
| 0x13 | 0x80,
72 KMC_AES_256_ENCRYPT
= CRYPT_S390_KMC
| 0x14,
73 KMC_AES_256_DECRYPT
= CRYPT_S390_KMC
| 0x14 | 0x80,
74 KMC_PRNG
= CRYPT_S390_KMC
| 0x43,
78 * function codes for KIMD (COMPUTE INTERMEDIATE MESSAGE DIGEST)
81 enum crypt_s390_kimd_func
{
82 KIMD_QUERY
= CRYPT_S390_KIMD
| 0,
83 KIMD_SHA_1
= CRYPT_S390_KIMD
| 1,
84 KIMD_SHA_256
= CRYPT_S390_KIMD
| 2,
85 KIMD_SHA_512
= CRYPT_S390_KIMD
| 3,
89 * function codes for KLMD (COMPUTE LAST MESSAGE DIGEST)
92 enum crypt_s390_klmd_func
{
93 KLMD_QUERY
= CRYPT_S390_KLMD
| 0,
94 KLMD_SHA_1
= CRYPT_S390_KLMD
| 1,
95 KLMD_SHA_256
= CRYPT_S390_KLMD
| 2,
96 KLMD_SHA_512
= CRYPT_S390_KLMD
| 3,
100 * function codes for KMAC (COMPUTE MESSAGE AUTHENTICATION CODE)
103 enum crypt_s390_kmac_func
{
104 KMAC_QUERY
= CRYPT_S390_KMAC
| 0,
105 KMAC_DEA
= CRYPT_S390_KMAC
| 1,
106 KMAC_TDEA_128
= CRYPT_S390_KMAC
| 2,
107 KMAC_TDEA_192
= CRYPT_S390_KMAC
| 3
112 * @func: the function code passed to KM; see crypt_s390_km_func
113 * @param: address of parameter block; see POP for details on each func
114 * @dest: address of destination memory area
115 * @src: address of source memory area
116 * @src_len: length of src operand in bytes
118 * Executes the KM (CIPHER MESSAGE) operation of the CPU.
120 * Returns -1 for failure, 0 for the query func, number of processed
121 * bytes for encryption/decryption funcs
123 static inline int crypt_s390_km(long func
, void *param
,
124 u8
*dest
, const u8
*src
, long src_len
)
126 register long __func
asm("0") = func
& CRYPT_S390_FUNC_MASK
;
127 register void *__param
asm("1") = param
;
128 register const u8
*__src
asm("2") = src
;
129 register long __src_len
asm("3") = src_len
;
130 register u8
*__dest
asm("4") = dest
;
134 "0: .insn rre,0xb92e0000,%3,%1 \n" /* KM opcode */
135 "1: brc 1,0b \n" /* handle partial completion */
138 EX_TABLE(0b
,2b
) EX_TABLE(1b
,2b
)
139 : "=d" (ret
), "+a" (__src
), "+d" (__src_len
), "+a" (__dest
)
140 : "d" (__func
), "a" (__param
), "0" (-1) : "cc", "memory");
143 return (func
& CRYPT_S390_FUNC_MASK
) ? src_len
- __src_len
: __src_len
;
148 * @func: the function code passed to KM; see crypt_s390_kmc_func
149 * @param: address of parameter block; see POP for details on each func
150 * @dest: address of destination memory area
151 * @src: address of source memory area
152 * @src_len: length of src operand in bytes
154 * Executes the KMC (CIPHER MESSAGE WITH CHAINING) operation of the CPU.
156 * Returns -1 for failure, 0 for the query func, number of processed
157 * bytes for encryption/decryption funcs
159 static inline int crypt_s390_kmc(long func
, void *param
,
160 u8
*dest
, const u8
*src
, long src_len
)
162 register long __func
asm("0") = func
& CRYPT_S390_FUNC_MASK
;
163 register void *__param
asm("1") = param
;
164 register const u8
*__src
asm("2") = src
;
165 register long __src_len
asm("3") = src_len
;
166 register u8
*__dest
asm("4") = dest
;
170 "0: .insn rre,0xb92f0000,%3,%1 \n" /* KMC opcode */
171 "1: brc 1,0b \n" /* handle partial completion */
174 EX_TABLE(0b
,2b
) EX_TABLE(1b
,2b
)
175 : "=d" (ret
), "+a" (__src
), "+d" (__src_len
), "+a" (__dest
)
176 : "d" (__func
), "a" (__param
), "0" (-1) : "cc", "memory");
179 return (func
& CRYPT_S390_FUNC_MASK
) ? src_len
- __src_len
: __src_len
;
184 * @func: the function code passed to KM; see crypt_s390_kimd_func
185 * @param: address of parameter block; see POP for details on each func
186 * @src: address of source memory area
187 * @src_len: length of src operand in bytes
189 * Executes the KIMD (COMPUTE INTERMEDIATE MESSAGE DIGEST) operation
192 * Returns -1 for failure, 0 for the query func, number of processed
193 * bytes for digest funcs
195 static inline int crypt_s390_kimd(long func
, void *param
,
196 const u8
*src
, long src_len
)
198 register long __func
asm("0") = func
& CRYPT_S390_FUNC_MASK
;
199 register void *__param
asm("1") = param
;
200 register const u8
*__src
asm("2") = src
;
201 register long __src_len
asm("3") = src_len
;
205 "0: .insn rre,0xb93e0000,%1,%1 \n" /* KIMD opcode */
206 "1: brc 1,0b \n" /* handle partial completion */
209 EX_TABLE(0b
,2b
) EX_TABLE(1b
,2b
)
210 : "=d" (ret
), "+a" (__src
), "+d" (__src_len
)
211 : "d" (__func
), "a" (__param
), "0" (-1) : "cc", "memory");
214 return (func
& CRYPT_S390_FUNC_MASK
) ? src_len
- __src_len
: __src_len
;
219 * @func: the function code passed to KM; see crypt_s390_klmd_func
220 * @param: address of parameter block; see POP for details on each func
221 * @src: address of source memory area
222 * @src_len: length of src operand in bytes
224 * Executes the KLMD (COMPUTE LAST MESSAGE DIGEST) operation of the CPU.
226 * Returns -1 for failure, 0 for the query func, number of processed
227 * bytes for digest funcs
229 static inline int crypt_s390_klmd(long func
, void *param
,
230 const u8
*src
, long src_len
)
232 register long __func
asm("0") = func
& CRYPT_S390_FUNC_MASK
;
233 register void *__param
asm("1") = param
;
234 register const u8
*__src
asm("2") = src
;
235 register long __src_len
asm("3") = src_len
;
239 "0: .insn rre,0xb93f0000,%1,%1 \n" /* KLMD opcode */
240 "1: brc 1,0b \n" /* handle partial completion */
243 EX_TABLE(0b
,2b
) EX_TABLE(1b
,2b
)
244 : "=d" (ret
), "+a" (__src
), "+d" (__src_len
)
245 : "d" (__func
), "a" (__param
), "0" (-1) : "cc", "memory");
248 return (func
& CRYPT_S390_FUNC_MASK
) ? src_len
- __src_len
: __src_len
;
253 * @func: the function code passed to KM; see crypt_s390_klmd_func
254 * @param: address of parameter block; see POP for details on each func
255 * @src: address of source memory area
256 * @src_len: length of src operand in bytes
258 * Executes the KMAC (COMPUTE MESSAGE AUTHENTICATION CODE) operation
261 * Returns -1 for failure, 0 for the query func, number of processed
262 * bytes for digest funcs
264 static inline int crypt_s390_kmac(long func
, void *param
,
265 const u8
*src
, long src_len
)
267 register long __func
asm("0") = func
& CRYPT_S390_FUNC_MASK
;
268 register void *__param
asm("1") = param
;
269 register const u8
*__src
asm("2") = src
;
270 register long __src_len
asm("3") = src_len
;
274 "0: .insn rre,0xb91e0000,%1,%1 \n" /* KLAC opcode */
275 "1: brc 1,0b \n" /* handle partial completion */
278 EX_TABLE(0b
,2b
) EX_TABLE(1b
,2b
)
279 : "=d" (ret
), "+a" (__src
), "+d" (__src_len
)
280 : "d" (__func
), "a" (__param
), "0" (-1) : "cc", "memory");
283 return (func
& CRYPT_S390_FUNC_MASK
) ? src_len
- __src_len
: __src_len
;
287 * crypt_s390_func_available:
288 * @func: the function code of the specific function; 0 if op in general
290 * Tests if a specific crypto function is implemented on the machine.
292 * Returns 1 if func available; 0 if func or op in general not available
294 static inline int crypt_s390_func_available(int func
)
296 unsigned char status
[16];
299 /* check if CPACF facility (bit 17) is available */
300 if (!(stfl() & 1ULL << (31 - 17)))
303 switch (func
& CRYPT_S390_OP_MASK
) {
305 ret
= crypt_s390_km(KM_QUERY
, &status
, NULL
, NULL
, 0);
308 ret
= crypt_s390_kmc(KMC_QUERY
, &status
, NULL
, NULL
, 0);
310 case CRYPT_S390_KIMD
:
311 ret
= crypt_s390_kimd(KIMD_QUERY
, &status
, NULL
, 0);
313 case CRYPT_S390_KLMD
:
314 ret
= crypt_s390_klmd(KLMD_QUERY
, &status
, NULL
, 0);
316 case CRYPT_S390_KMAC
:
317 ret
= crypt_s390_kmac(KMAC_QUERY
, &status
, NULL
, 0);
324 func
&= CRYPT_S390_FUNC_MASK
;
325 func
&= 0x7f; /* mask modifier bit */
326 return (status
[func
>> 3] & (0x80 >> (func
& 7))) != 0;
329 #endif /* _CRYPTO_ARCH_S390_CRYPT_S390_H */