1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux << 2 /* 1 /* 3 * Crypto user configuration API. 2 * Crypto user configuration API. 4 * 3 * 5 * Copyright (C) 2011 secunet Security Network 4 * Copyright (C) 2011 secunet Security Networks AG 6 * Copyright (C) 2011 Steffen Klassert <steffe 5 * Copyright (C) 2011 Steffen Klassert <steffen.klassert@secunet.com> 7 * 6 * 8 * This program is free software; you can redi 7 * This program is free software; you can redistribute it and/or modify it 9 * under the terms and conditions of the GNU G 8 * under the terms and conditions of the GNU General Public License, 10 * version 2, as published by the Free Softwar 9 * version 2, as published by the Free Software Foundation. 11 * 10 * 12 * This program is distributed in the hope it 11 * This program is distributed in the hope it will be useful, but WITHOUT 13 * ANY WARRANTY; without even the implied warr 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 14 * FITNESS FOR A PARTICULAR PURPOSE. See the 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 15 * more details. 14 * more details. 16 * 15 * 17 * You should have received a copy of the GNU 16 * You should have received a copy of the GNU General Public License along with 18 * this program; if not, write to the Free Sof 17 * this program; if not, write to the Free Software Foundation, Inc., 19 * 51 Franklin St - Fifth Floor, Boston, MA 02 18 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. 20 */ 19 */ 21 20 22 #ifndef _UAPI_LINUX_CRYPTOUSER_H << 23 #define _UAPI_LINUX_CRYPTOUSER_H << 24 << 25 #include <linux/types.h> 21 #include <linux/types.h> 26 22 27 /* Netlink configuration messages. */ 23 /* Netlink configuration messages. */ 28 enum { 24 enum { 29 CRYPTO_MSG_BASE = 0x10, 25 CRYPTO_MSG_BASE = 0x10, 30 CRYPTO_MSG_NEWALG = 0x10, 26 CRYPTO_MSG_NEWALG = 0x10, 31 CRYPTO_MSG_DELALG, 27 CRYPTO_MSG_DELALG, 32 CRYPTO_MSG_UPDATEALG, 28 CRYPTO_MSG_UPDATEALG, 33 CRYPTO_MSG_GETALG, 29 CRYPTO_MSG_GETALG, 34 CRYPTO_MSG_DELRNG, 30 CRYPTO_MSG_DELRNG, 35 CRYPTO_MSG_GETSTAT, /* No longer suppo << 36 __CRYPTO_MSG_MAX 31 __CRYPTO_MSG_MAX 37 }; 32 }; 38 #define CRYPTO_MSG_MAX (__CRYPTO_MSG_MAX - 1) 33 #define CRYPTO_MSG_MAX (__CRYPTO_MSG_MAX - 1) 39 #define CRYPTO_NR_MSGTYPES (CRYPTO_MSG_MAX + 1 34 #define CRYPTO_NR_MSGTYPES (CRYPTO_MSG_MAX + 1 - CRYPTO_MSG_BASE) 40 35 41 #define CRYPTO_MAX_NAME 64 36 #define CRYPTO_MAX_NAME 64 42 37 43 /* Netlink message attributes. */ 38 /* Netlink message attributes. */ 44 enum crypto_attr_type_t { 39 enum crypto_attr_type_t { 45 CRYPTOCFGA_UNSPEC, 40 CRYPTOCFGA_UNSPEC, 46 CRYPTOCFGA_PRIORITY_VAL, /* __u 41 CRYPTOCFGA_PRIORITY_VAL, /* __u32 */ 47 CRYPTOCFGA_REPORT_LARVAL, /* str 42 CRYPTOCFGA_REPORT_LARVAL, /* struct crypto_report_larval */ 48 CRYPTOCFGA_REPORT_HASH, /* str 43 CRYPTOCFGA_REPORT_HASH, /* struct crypto_report_hash */ 49 CRYPTOCFGA_REPORT_BLKCIPHER, /* str 44 CRYPTOCFGA_REPORT_BLKCIPHER, /* struct crypto_report_blkcipher */ 50 CRYPTOCFGA_REPORT_AEAD, /* str 45 CRYPTOCFGA_REPORT_AEAD, /* struct crypto_report_aead */ 51 CRYPTOCFGA_REPORT_COMPRESS, /* str 46 CRYPTOCFGA_REPORT_COMPRESS, /* struct crypto_report_comp */ 52 CRYPTOCFGA_REPORT_RNG, /* str 47 CRYPTOCFGA_REPORT_RNG, /* struct crypto_report_rng */ 53 CRYPTOCFGA_REPORT_CIPHER, /* str 48 CRYPTOCFGA_REPORT_CIPHER, /* struct crypto_report_cipher */ 54 CRYPTOCFGA_REPORT_AKCIPHER, /* str 49 CRYPTOCFGA_REPORT_AKCIPHER, /* struct crypto_report_akcipher */ 55 CRYPTOCFGA_REPORT_KPP, /* str 50 CRYPTOCFGA_REPORT_KPP, /* struct crypto_report_kpp */ 56 CRYPTOCFGA_REPORT_ACOMP, /* str 51 CRYPTOCFGA_REPORT_ACOMP, /* struct crypto_report_acomp */ 57 CRYPTOCFGA_STAT_LARVAL, /* No << 58 CRYPTOCFGA_STAT_HASH, /* No << 59 CRYPTOCFGA_STAT_BLKCIPHER, /* No << 60 CRYPTOCFGA_STAT_AEAD, /* No << 61 CRYPTOCFGA_STAT_COMPRESS, /* No << 62 CRYPTOCFGA_STAT_RNG, /* No << 63 CRYPTOCFGA_STAT_CIPHER, /* No << 64 CRYPTOCFGA_STAT_AKCIPHER, /* No << 65 CRYPTOCFGA_STAT_KPP, /* No << 66 CRYPTOCFGA_STAT_ACOMP, /* No << 67 __CRYPTOCFGA_MAX 52 __CRYPTOCFGA_MAX 68 53 69 #define CRYPTOCFGA_MAX (__CRYPTOCFGA_MAX - 1) 54 #define CRYPTOCFGA_MAX (__CRYPTOCFGA_MAX - 1) 70 }; 55 }; 71 56 72 struct crypto_user_alg { 57 struct crypto_user_alg { 73 char cru_name[CRYPTO_MAX_NAME]; 58 char cru_name[CRYPTO_MAX_NAME]; 74 char cru_driver_name[CRYPTO_MAX_NAME]; 59 char cru_driver_name[CRYPTO_MAX_NAME]; 75 char cru_module_name[CRYPTO_MAX_NAME]; 60 char cru_module_name[CRYPTO_MAX_NAME]; 76 __u32 cru_type; 61 __u32 cru_type; 77 __u32 cru_mask; 62 __u32 cru_mask; 78 __u32 cru_refcnt; 63 __u32 cru_refcnt; 79 __u32 cru_flags; 64 __u32 cru_flags; 80 }; 65 }; 81 66 82 /* No longer supported, do not use. */ << 83 struct crypto_stat_aead { << 84 char type[CRYPTO_MAX_NAME]; << 85 __u64 stat_encrypt_cnt; << 86 __u64 stat_encrypt_tlen; << 87 __u64 stat_decrypt_cnt; << 88 __u64 stat_decrypt_tlen; << 89 __u64 stat_err_cnt; << 90 }; << 91 << 92 /* No longer supported, do not use. */ << 93 struct crypto_stat_akcipher { << 94 char type[CRYPTO_MAX_NAME]; << 95 __u64 stat_encrypt_cnt; << 96 __u64 stat_encrypt_tlen; << 97 __u64 stat_decrypt_cnt; << 98 __u64 stat_decrypt_tlen; << 99 __u64 stat_verify_cnt; << 100 __u64 stat_sign_cnt; << 101 __u64 stat_err_cnt; << 102 }; << 103 << 104 /* No longer supported, do not use. */ << 105 struct crypto_stat_cipher { << 106 char type[CRYPTO_MAX_NAME]; << 107 __u64 stat_encrypt_cnt; << 108 __u64 stat_encrypt_tlen; << 109 __u64 stat_decrypt_cnt; << 110 __u64 stat_decrypt_tlen; << 111 __u64 stat_err_cnt; << 112 }; << 113 << 114 /* No longer supported, do not use. */ << 115 struct crypto_stat_compress { << 116 char type[CRYPTO_MAX_NAME]; << 117 __u64 stat_compress_cnt; << 118 __u64 stat_compress_tlen; << 119 __u64 stat_decompress_cnt; << 120 __u64 stat_decompress_tlen; << 121 __u64 stat_err_cnt; << 122 }; << 123 << 124 /* No longer supported, do not use. */ << 125 struct crypto_stat_hash { << 126 char type[CRYPTO_MAX_NAME]; << 127 __u64 stat_hash_cnt; << 128 __u64 stat_hash_tlen; << 129 __u64 stat_err_cnt; << 130 }; << 131 << 132 /* No longer supported, do not use. */ << 133 struct crypto_stat_kpp { << 134 char type[CRYPTO_MAX_NAME]; << 135 __u64 stat_setsecret_cnt; << 136 __u64 stat_generate_public_key_cnt; << 137 __u64 stat_compute_shared_secret_cnt; << 138 __u64 stat_err_cnt; << 139 }; << 140 << 141 /* No longer supported, do not use. */ << 142 struct crypto_stat_rng { << 143 char type[CRYPTO_MAX_NAME]; << 144 __u64 stat_generate_cnt; << 145 __u64 stat_generate_tlen; << 146 __u64 stat_seed_cnt; << 147 __u64 stat_err_cnt; << 148 }; << 149 << 150 /* No longer supported, do not use. */ << 151 struct crypto_stat_larval { << 152 char type[CRYPTO_MAX_NAME]; << 153 }; << 154 << 155 struct crypto_report_larval { 67 struct crypto_report_larval { 156 char type[CRYPTO_MAX_NAME]; 68 char type[CRYPTO_MAX_NAME]; 157 }; 69 }; 158 70 159 struct crypto_report_hash { 71 struct crypto_report_hash { 160 char type[CRYPTO_MAX_NAME]; 72 char type[CRYPTO_MAX_NAME]; 161 unsigned int blocksize; 73 unsigned int blocksize; 162 unsigned int digestsize; 74 unsigned int digestsize; 163 }; 75 }; 164 76 165 struct crypto_report_cipher { 77 struct crypto_report_cipher { 166 char type[CRYPTO_MAX_NAME]; 78 char type[CRYPTO_MAX_NAME]; 167 unsigned int blocksize; 79 unsigned int blocksize; 168 unsigned int min_keysize; 80 unsigned int min_keysize; 169 unsigned int max_keysize; 81 unsigned int max_keysize; 170 }; 82 }; 171 83 172 struct crypto_report_blkcipher { 84 struct crypto_report_blkcipher { 173 char type[CRYPTO_MAX_NAME]; 85 char type[CRYPTO_MAX_NAME]; 174 char geniv[CRYPTO_MAX_NAME]; 86 char geniv[CRYPTO_MAX_NAME]; 175 unsigned int blocksize; 87 unsigned int blocksize; 176 unsigned int min_keysize; 88 unsigned int min_keysize; 177 unsigned int max_keysize; 89 unsigned int max_keysize; 178 unsigned int ivsize; 90 unsigned int ivsize; 179 }; 91 }; 180 92 181 struct crypto_report_aead { 93 struct crypto_report_aead { 182 char type[CRYPTO_MAX_NAME]; 94 char type[CRYPTO_MAX_NAME]; 183 char geniv[CRYPTO_MAX_NAME]; 95 char geniv[CRYPTO_MAX_NAME]; 184 unsigned int blocksize; 96 unsigned int blocksize; 185 unsigned int maxauthsize; 97 unsigned int maxauthsize; 186 unsigned int ivsize; 98 unsigned int ivsize; 187 }; 99 }; 188 100 189 struct crypto_report_comp { 101 struct crypto_report_comp { 190 char type[CRYPTO_MAX_NAME]; 102 char type[CRYPTO_MAX_NAME]; 191 }; 103 }; 192 104 193 struct crypto_report_rng { 105 struct crypto_report_rng { 194 char type[CRYPTO_MAX_NAME]; 106 char type[CRYPTO_MAX_NAME]; 195 unsigned int seedsize; 107 unsigned int seedsize; 196 }; 108 }; 197 109 198 struct crypto_report_akcipher { 110 struct crypto_report_akcipher { 199 char type[CRYPTO_MAX_NAME]; 111 char type[CRYPTO_MAX_NAME]; 200 }; 112 }; 201 113 202 struct crypto_report_kpp { 114 struct crypto_report_kpp { 203 char type[CRYPTO_MAX_NAME]; 115 char type[CRYPTO_MAX_NAME]; 204 }; 116 }; 205 117 206 struct crypto_report_acomp { 118 struct crypto_report_acomp { 207 char type[CRYPTO_MAX_NAME]; 119 char type[CRYPTO_MAX_NAME]; 208 }; 120 }; 209 121 210 #define CRYPTO_REPORT_MAXSIZE (sizeof(struct c 122 #define CRYPTO_REPORT_MAXSIZE (sizeof(struct crypto_user_alg) + \ 211 sizeof(struct c 123 sizeof(struct crypto_report_blkcipher)) 212 << 213 #endif /* _UAPI_LINUX_CRYPTOUSER_H */ << 214 124
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.