pasemi_mac: Improve RX interrupt mitigation
[linux-2.6/libata-dev.git] / net / xfrm / xfrm_algo.c
blobb5c5347aed666096c33d0fadbbab0065753ddd08
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 int i, status;
491 BUG_ON(in_softirq());
493 for (i = 0; i < aalg_entries(); i++) {
494 status = crypto_has_hash(aalg_list[i].name, 0,
495 CRYPTO_ALG_ASYNC);
496 if (aalg_list[i].available != status)
497 aalg_list[i].available = status;
500 for (i = 0; i < ealg_entries(); i++) {
501 status = crypto_has_blkcipher(ealg_list[i].name, 0,
502 CRYPTO_ALG_ASYNC);
503 if (ealg_list[i].available != status)
504 ealg_list[i].available = status;
507 for (i = 0; i < calg_entries(); i++) {
508 status = crypto_has_comp(calg_list[i].name, 0,
509 CRYPTO_ALG_ASYNC);
510 if (calg_list[i].available != status)
511 calg_list[i].available = status;
514 EXPORT_SYMBOL_GPL(xfrm_probe_algs);
516 int xfrm_count_auth_supported(void)
518 int i, n;
520 for (i = 0, n = 0; i < aalg_entries(); i++)
521 if (aalg_list[i].available)
522 n++;
523 return n;
525 EXPORT_SYMBOL_GPL(xfrm_count_auth_supported);
527 int xfrm_count_enc_supported(void)
529 int i, n;
531 for (i = 0, n = 0; i < ealg_entries(); i++)
532 if (ealg_list[i].available)
533 n++;
534 return n;
536 EXPORT_SYMBOL_GPL(xfrm_count_enc_supported);
538 /* Move to common area: it is shared with AH. */
540 int skb_icv_walk(const struct sk_buff *skb, struct hash_desc *desc,
541 int offset, int len, icv_update_fn_t icv_update)
543 int start = skb_headlen(skb);
544 int i, copy = start - offset;
545 int err;
546 struct scatterlist sg;
548 /* Checksum header. */
549 if (copy > 0) {
550 if (copy > len)
551 copy = len;
553 sg_init_one(&sg, skb->data + offset, copy);
555 err = icv_update(desc, &sg, copy);
556 if (unlikely(err))
557 return err;
559 if ((len -= copy) == 0)
560 return 0;
561 offset += copy;
564 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
565 int end;
567 BUG_TRAP(start <= offset + len);
569 end = start + skb_shinfo(skb)->frags[i].size;
570 if ((copy = end - offset) > 0) {
571 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
573 if (copy > len)
574 copy = len;
576 sg_init_table(&sg, 1);
577 sg_set_page(&sg, frag->page, copy,
578 frag->page_offset + offset-start);
580 err = icv_update(desc, &sg, copy);
581 if (unlikely(err))
582 return err;
584 if (!(len -= copy))
585 return 0;
586 offset += copy;
588 start = end;
591 if (skb_shinfo(skb)->frag_list) {
592 struct sk_buff *list = skb_shinfo(skb)->frag_list;
594 for (; list; list = list->next) {
595 int end;
597 BUG_TRAP(start <= offset + len);
599 end = start + list->len;
600 if ((copy = end - offset) > 0) {
601 if (copy > len)
602 copy = len;
603 err = skb_icv_walk(list, desc, offset-start,
604 copy, icv_update);
605 if (unlikely(err))
606 return err;
607 if ((len -= copy) == 0)
608 return 0;
609 offset += copy;
611 start = end;
614 BUG_ON(len);
615 return 0;
617 EXPORT_SYMBOL_GPL(skb_icv_walk);
619 #if defined(CONFIG_INET_ESP) || defined(CONFIG_INET_ESP_MODULE) || defined(CONFIG_INET6_ESP) || defined(CONFIG_INET6_ESP_MODULE)
621 void *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len)
623 if (tail != skb) {
624 skb->data_len += len;
625 skb->len += len;
627 return skb_put(tail, len);
629 EXPORT_SYMBOL_GPL(pskb_put);
630 #endif