IPoIB/cm: Factor out ipoib_cm_free_rx_ring()
[firewire-audio.git] / net / xfrm / xfrm_algo.c
blob1686f64c4352c2ee19d565d54017608474a98b83
1 /*
2 * xfrm algorithm interface
4 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
9 * any later version.
12 #include <linux/module.h>
13 #include <linux/kernel.h>
14 #include <linux/pfkeyv2.h>
15 #include <linux/crypto.h>
16 #include <linux/scatterlist.h>
17 #include <net/xfrm.h>
18 #if defined(CONFIG_INET_AH) || defined(CONFIG_INET_AH_MODULE) || defined(CONFIG_INET6_AH) || defined(CONFIG_INET6_AH_MODULE)
19 #include <net/ah.h>
20 #endif
21 #if defined(CONFIG_INET_ESP) || defined(CONFIG_INET_ESP_MODULE) || defined(CONFIG_INET6_ESP) || defined(CONFIG_INET6_ESP_MODULE)
22 #include <net/esp.h>
23 #endif
26 * Algorithms supported by IPsec. These entries contain properties which
27 * are used in key negotiation and xfrm processing, and are used to verify
28 * that instantiated crypto transforms have correct parameters for IPsec
29 * purposes.
31 static struct xfrm_algo_desc aalg_list[] = {
33 .name = "hmac(digest_null)",
34 .compat = "digest_null",
36 .uinfo = {
37 .auth = {
38 .icv_truncbits = 0,
39 .icv_fullbits = 0,
43 .desc = {
44 .sadb_alg_id = SADB_X_AALG_NULL,
45 .sadb_alg_ivlen = 0,
46 .sadb_alg_minbits = 0,
47 .sadb_alg_maxbits = 0
51 .name = "hmac(md5)",
52 .compat = "md5",
54 .uinfo = {
55 .auth = {
56 .icv_truncbits = 96,
57 .icv_fullbits = 128,
61 .desc = {
62 .sadb_alg_id = SADB_AALG_MD5HMAC,
63 .sadb_alg_ivlen = 0,
64 .sadb_alg_minbits = 128,
65 .sadb_alg_maxbits = 128
69 .name = "hmac(sha1)",
70 .compat = "sha1",
72 .uinfo = {
73 .auth = {
74 .icv_truncbits = 96,
75 .icv_fullbits = 160,
79 .desc = {
80 .sadb_alg_id = SADB_AALG_SHA1HMAC,
81 .sadb_alg_ivlen = 0,
82 .sadb_alg_minbits = 160,
83 .sadb_alg_maxbits = 160
87 .name = "hmac(sha256)",
88 .compat = "sha256",
90 .uinfo = {
91 .auth = {
92 .icv_truncbits = 96,
93 .icv_fullbits = 256,
97 .desc = {
98 .sadb_alg_id = SADB_X_AALG_SHA2_256HMAC,
99 .sadb_alg_ivlen = 0,
100 .sadb_alg_minbits = 256,
101 .sadb_alg_maxbits = 256
105 .name = "hmac(ripemd160)",
106 .compat = "ripemd160",
108 .uinfo = {
109 .auth = {
110 .icv_truncbits = 96,
111 .icv_fullbits = 160,
115 .desc = {
116 .sadb_alg_id = SADB_X_AALG_RIPEMD160HMAC,
117 .sadb_alg_ivlen = 0,
118 .sadb_alg_minbits = 160,
119 .sadb_alg_maxbits = 160
123 .name = "xcbc(aes)",
125 .uinfo = {
126 .auth = {
127 .icv_truncbits = 96,
128 .icv_fullbits = 128,
132 .desc = {
133 .sadb_alg_id = SADB_X_AALG_AES_XCBC_MAC,
134 .sadb_alg_ivlen = 0,
135 .sadb_alg_minbits = 128,
136 .sadb_alg_maxbits = 128
141 static struct xfrm_algo_desc ealg_list[] = {
143 .name = "ecb(cipher_null)",
144 .compat = "cipher_null",
146 .uinfo = {
147 .encr = {
148 .blockbits = 8,
149 .defkeybits = 0,
153 .desc = {
154 .sadb_alg_id = SADB_EALG_NULL,
155 .sadb_alg_ivlen = 0,
156 .sadb_alg_minbits = 0,
157 .sadb_alg_maxbits = 0
161 .name = "cbc(des)",
162 .compat = "des",
164 .uinfo = {
165 .encr = {
166 .blockbits = 64,
167 .defkeybits = 64,
171 .desc = {
172 .sadb_alg_id = SADB_EALG_DESCBC,
173 .sadb_alg_ivlen = 8,
174 .sadb_alg_minbits = 64,
175 .sadb_alg_maxbits = 64
179 .name = "cbc(des3_ede)",
180 .compat = "des3_ede",
182 .uinfo = {
183 .encr = {
184 .blockbits = 64,
185 .defkeybits = 192,
189 .desc = {
190 .sadb_alg_id = SADB_EALG_3DESCBC,
191 .sadb_alg_ivlen = 8,
192 .sadb_alg_minbits = 192,
193 .sadb_alg_maxbits = 192
197 .name = "cbc(cast128)",
198 .compat = "cast128",
200 .uinfo = {
201 .encr = {
202 .blockbits = 64,
203 .defkeybits = 128,
207 .desc = {
208 .sadb_alg_id = SADB_X_EALG_CASTCBC,
209 .sadb_alg_ivlen = 8,
210 .sadb_alg_minbits = 40,
211 .sadb_alg_maxbits = 128
215 .name = "cbc(blowfish)",
216 .compat = "blowfish",
218 .uinfo = {
219 .encr = {
220 .blockbits = 64,
221 .defkeybits = 128,
225 .desc = {
226 .sadb_alg_id = SADB_X_EALG_BLOWFISHCBC,
227 .sadb_alg_ivlen = 8,
228 .sadb_alg_minbits = 40,
229 .sadb_alg_maxbits = 448
233 .name = "cbc(aes)",
234 .compat = "aes",
236 .uinfo = {
237 .encr = {
238 .blockbits = 128,
239 .defkeybits = 128,
243 .desc = {
244 .sadb_alg_id = SADB_X_EALG_AESCBC,
245 .sadb_alg_ivlen = 8,
246 .sadb_alg_minbits = 128,
247 .sadb_alg_maxbits = 256
251 .name = "cbc(serpent)",
252 .compat = "serpent",
254 .uinfo = {
255 .encr = {
256 .blockbits = 128,
257 .defkeybits = 128,
261 .desc = {
262 .sadb_alg_id = SADB_X_EALG_SERPENTCBC,
263 .sadb_alg_ivlen = 8,
264 .sadb_alg_minbits = 128,
265 .sadb_alg_maxbits = 256,
269 .name = "cbc(camellia)",
271 .uinfo = {
272 .encr = {
273 .blockbits = 128,
274 .defkeybits = 128,
278 .desc = {
279 .sadb_alg_id = SADB_X_EALG_CAMELLIACBC,
280 .sadb_alg_ivlen = 8,
281 .sadb_alg_minbits = 128,
282 .sadb_alg_maxbits = 256
286 .name = "cbc(twofish)",
287 .compat = "twofish",
289 .uinfo = {
290 .encr = {
291 .blockbits = 128,
292 .defkeybits = 128,
296 .desc = {
297 .sadb_alg_id = SADB_X_EALG_TWOFISHCBC,
298 .sadb_alg_ivlen = 8,
299 .sadb_alg_minbits = 128,
300 .sadb_alg_maxbits = 256
305 static struct xfrm_algo_desc calg_list[] = {
307 .name = "deflate",
308 .uinfo = {
309 .comp = {
310 .threshold = 90,
313 .desc = { .sadb_alg_id = SADB_X_CALG_DEFLATE }
316 .name = "lzs",
317 .uinfo = {
318 .comp = {
319 .threshold = 90,
322 .desc = { .sadb_alg_id = SADB_X_CALG_LZS }
325 .name = "lzjh",
326 .uinfo = {
327 .comp = {
328 .threshold = 50,
331 .desc = { .sadb_alg_id = SADB_X_CALG_LZJH }
335 static inline int aalg_entries(void)
337 return ARRAY_SIZE(aalg_list);
340 static inline int ealg_entries(void)
342 return ARRAY_SIZE(ealg_list);
345 static inline int calg_entries(void)
347 return ARRAY_SIZE(calg_list);
350 struct xfrm_algo_list {
351 struct xfrm_algo_desc *algs;
352 int entries;
353 u32 type;
354 u32 mask;
357 static const struct xfrm_algo_list xfrm_aalg_list = {
358 .algs = aalg_list,
359 .entries = ARRAY_SIZE(aalg_list),
360 .type = CRYPTO_ALG_TYPE_HASH,
361 .mask = CRYPTO_ALG_TYPE_HASH_MASK | CRYPTO_ALG_ASYNC,
364 static const struct xfrm_algo_list xfrm_ealg_list = {
365 .algs = ealg_list,
366 .entries = ARRAY_SIZE(ealg_list),
367 .type = CRYPTO_ALG_TYPE_BLKCIPHER,
368 .mask = CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_ASYNC,
371 static const struct xfrm_algo_list xfrm_calg_list = {
372 .algs = calg_list,
373 .entries = ARRAY_SIZE(calg_list),
374 .type = CRYPTO_ALG_TYPE_COMPRESS,
375 .mask = CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_ASYNC,
378 static struct xfrm_algo_desc *xfrm_find_algo(
379 const struct xfrm_algo_list *algo_list,
380 int match(const struct xfrm_algo_desc *entry, const void *data),
381 const void *data, int probe)
383 struct xfrm_algo_desc *list = algo_list->algs;
384 int i, status;
386 for (i = 0; i < algo_list->entries; i++) {
387 if (!match(list + i, data))
388 continue;
390 if (list[i].available)
391 return &list[i];
393 if (!probe)
394 break;
396 status = crypto_has_alg(list[i].name, algo_list->type,
397 algo_list->mask);
398 if (!status)
399 break;
401 list[i].available = status;
402 return &list[i];
404 return NULL;
407 static int xfrm_alg_id_match(const struct xfrm_algo_desc *entry,
408 const void *data)
410 return entry->desc.sadb_alg_id == (unsigned long)data;
413 struct xfrm_algo_desc *xfrm_aalg_get_byid(int alg_id)
415 return xfrm_find_algo(&xfrm_aalg_list, xfrm_alg_id_match,
416 (void *)(unsigned long)alg_id, 1);
418 EXPORT_SYMBOL_GPL(xfrm_aalg_get_byid);
420 struct xfrm_algo_desc *xfrm_ealg_get_byid(int alg_id)
422 return xfrm_find_algo(&xfrm_ealg_list, xfrm_alg_id_match,
423 (void *)(unsigned long)alg_id, 1);
425 EXPORT_SYMBOL_GPL(xfrm_ealg_get_byid);
427 struct xfrm_algo_desc *xfrm_calg_get_byid(int alg_id)
429 return xfrm_find_algo(&xfrm_calg_list, xfrm_alg_id_match,
430 (void *)(unsigned long)alg_id, 1);
432 EXPORT_SYMBOL_GPL(xfrm_calg_get_byid);
434 static int xfrm_alg_name_match(const struct xfrm_algo_desc *entry,
435 const void *data)
437 const char *name = data;
439 return name && (!strcmp(name, entry->name) ||
440 (entry->compat && !strcmp(name, entry->compat)));
443 struct xfrm_algo_desc *xfrm_aalg_get_byname(char *name, int probe)
445 return xfrm_find_algo(&xfrm_aalg_list, xfrm_alg_name_match, name,
446 probe);
448 EXPORT_SYMBOL_GPL(xfrm_aalg_get_byname);
450 struct xfrm_algo_desc *xfrm_ealg_get_byname(char *name, int probe)
452 return xfrm_find_algo(&xfrm_ealg_list, xfrm_alg_name_match, name,
453 probe);
455 EXPORT_SYMBOL_GPL(xfrm_ealg_get_byname);
457 struct xfrm_algo_desc *xfrm_calg_get_byname(char *name, int probe)
459 return xfrm_find_algo(&xfrm_calg_list, xfrm_alg_name_match, name,
460 probe);
462 EXPORT_SYMBOL_GPL(xfrm_calg_get_byname);
464 struct xfrm_algo_desc *xfrm_aalg_get_byidx(unsigned int idx)
466 if (idx >= aalg_entries())
467 return NULL;
469 return &aalg_list[idx];
471 EXPORT_SYMBOL_GPL(xfrm_aalg_get_byidx);
473 struct xfrm_algo_desc *xfrm_ealg_get_byidx(unsigned int idx)
475 if (idx >= ealg_entries())
476 return NULL;
478 return &ealg_list[idx];
480 EXPORT_SYMBOL_GPL(xfrm_ealg_get_byidx);
483 * Probe for the availability of crypto algorithms, and set the available
484 * flag for any algorithms found on the system. This is typically called by
485 * pfkey during userspace SA add, update or register.
487 void xfrm_probe_algs(void)
489 #ifdef CONFIG_CRYPTO
490 int i, status;
492 BUG_ON(in_softirq());
494 for (i = 0; i < aalg_entries(); i++) {
495 status = crypto_has_hash(aalg_list[i].name, 0,
496 CRYPTO_ALG_ASYNC);
497 if (aalg_list[i].available != status)
498 aalg_list[i].available = status;
501 for (i = 0; i < ealg_entries(); i++) {
502 status = crypto_has_blkcipher(ealg_list[i].name, 0,
503 CRYPTO_ALG_ASYNC);
504 if (ealg_list[i].available != status)
505 ealg_list[i].available = status;
508 for (i = 0; i < calg_entries(); i++) {
509 status = crypto_has_comp(calg_list[i].name, 0,
510 CRYPTO_ALG_ASYNC);
511 if (calg_list[i].available != status)
512 calg_list[i].available = status;
514 #endif
516 EXPORT_SYMBOL_GPL(xfrm_probe_algs);
518 int xfrm_count_auth_supported(void)
520 int i, n;
522 for (i = 0, n = 0; i < aalg_entries(); i++)
523 if (aalg_list[i].available)
524 n++;
525 return n;
527 EXPORT_SYMBOL_GPL(xfrm_count_auth_supported);
529 int xfrm_count_enc_supported(void)
531 int i, n;
533 for (i = 0, n = 0; i < ealg_entries(); i++)
534 if (ealg_list[i].available)
535 n++;
536 return n;
538 EXPORT_SYMBOL_GPL(xfrm_count_enc_supported);
540 /* Move to common area: it is shared with AH. */
542 int skb_icv_walk(const struct sk_buff *skb, struct hash_desc *desc,
543 int offset, int len, icv_update_fn_t icv_update)
545 int start = skb_headlen(skb);
546 int i, copy = start - offset;
547 int err;
548 struct scatterlist sg;
550 /* Checksum header. */
551 if (copy > 0) {
552 if (copy > len)
553 copy = len;
555 sg_init_one(&sg, skb->data + offset, copy);
557 err = icv_update(desc, &sg, copy);
558 if (unlikely(err))
559 return err;
561 if ((len -= copy) == 0)
562 return 0;
563 offset += copy;
566 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
567 int end;
569 BUG_TRAP(start <= offset + len);
571 end = start + skb_shinfo(skb)->frags[i].size;
572 if ((copy = end - offset) > 0) {
573 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
575 if (copy > len)
576 copy = len;
578 sg_init_table(&sg, 1);
579 sg_set_page(&sg, frag->page, copy,
580 frag->page_offset + offset-start);
582 err = icv_update(desc, &sg, copy);
583 if (unlikely(err))
584 return err;
586 if (!(len -= copy))
587 return 0;
588 offset += copy;
590 start = end;
593 if (skb_shinfo(skb)->frag_list) {
594 struct sk_buff *list = skb_shinfo(skb)->frag_list;
596 for (; list; list = list->next) {
597 int end;
599 BUG_TRAP(start <= offset + len);
601 end = start + list->len;
602 if ((copy = end - offset) > 0) {
603 if (copy > len)
604 copy = len;
605 err = skb_icv_walk(list, desc, offset-start,
606 copy, icv_update);
607 if (unlikely(err))
608 return err;
609 if ((len -= copy) == 0)
610 return 0;
611 offset += copy;
613 start = end;
616 BUG_ON(len);
617 return 0;
619 EXPORT_SYMBOL_GPL(skb_icv_walk);
621 #if defined(CONFIG_INET_ESP) || defined(CONFIG_INET_ESP_MODULE) || defined(CONFIG_INET6_ESP) || defined(CONFIG_INET6_ESP_MODULE)
623 void *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len)
625 if (tail != skb) {
626 skb->data_len += len;
627 skb->len += len;
629 return skb_put(tail, len);
631 EXPORT_SYMBOL_GPL(pskb_put);
632 #endif