Blame view

net/xfrm/xfrm_algo.c 13.4 KB
a716c1197   YOSHIFUJI Hideaki   [NET] XFRM: Fix w...
1
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
5
6
7
   * xfrm algorithm interface
   *
   * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
   *
   * This program is free software; you can redistribute it and/or modify it
   * under the terms of the GNU General Public License as published by the Free
a716c1197   YOSHIFUJI Hideaki   [NET] XFRM: Fix w...
8
   * Software Foundation; either version 2 of the License, or (at your option)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
9
10
   * any later version.
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
11
12
13
14
  #include <linux/module.h>
  #include <linux/kernel.h>
  #include <linux/pfkeyv2.h>
  #include <linux/crypto.h>
b3b724f48   Heiko Carstens   net: fix xfrm bui...
15
  #include <linux/scatterlist.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
16
17
18
19
20
21
22
  #include <net/xfrm.h>
  #if defined(CONFIG_INET_AH) || defined(CONFIG_INET_AH_MODULE) || defined(CONFIG_INET6_AH) || defined(CONFIG_INET6_AH_MODULE)
  #include <net/ah.h>
  #endif
  #if defined(CONFIG_INET_ESP) || defined(CONFIG_INET_ESP_MODULE) || defined(CONFIG_INET6_ESP) || defined(CONFIG_INET6_ESP_MODULE)
  #include <net/esp.h>
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
23
24
25
26
27
28
29
  
  /*
   * Algorithms supported by IPsec.  These entries contain properties which
   * are used in key negotiation and xfrm processing, and are used to verify
   * that instantiated crypto transforms have correct parameters for IPsec
   * purposes.
   */
1a6509d99   Herbert Xu   [IPSEC]: Add supp...
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
  static struct xfrm_algo_desc aead_list[] = {
  {
  	.name = "rfc4106(gcm(aes))",
  
  	.uinfo = {
  		.aead = {
  			.icv_truncbits = 64,
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_X_EALG_AES_GCM_ICV8,
  		.sadb_alg_ivlen = 8,
  		.sadb_alg_minbits = 128,
  		.sadb_alg_maxbits = 256
  	}
  },
  {
  	.name = "rfc4106(gcm(aes))",
  
  	.uinfo = {
  		.aead = {
  			.icv_truncbits = 96,
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_X_EALG_AES_GCM_ICV12,
  		.sadb_alg_ivlen = 8,
  		.sadb_alg_minbits = 128,
  		.sadb_alg_maxbits = 256
  	}
  },
  {
  	.name = "rfc4106(gcm(aes))",
  
  	.uinfo = {
  		.aead = {
  			.icv_truncbits = 128,
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_X_EALG_AES_GCM_ICV16,
  		.sadb_alg_ivlen = 8,
  		.sadb_alg_minbits = 128,
  		.sadb_alg_maxbits = 256
  	}
  },
  {
  	.name = "rfc4309(ccm(aes))",
  
  	.uinfo = {
  		.aead = {
  			.icv_truncbits = 64,
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_X_EALG_AES_CCM_ICV8,
  		.sadb_alg_ivlen = 8,
  		.sadb_alg_minbits = 128,
  		.sadb_alg_maxbits = 256
  	}
  },
  {
  	.name = "rfc4309(ccm(aes))",
  
  	.uinfo = {
  		.aead = {
  			.icv_truncbits = 96,
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_X_EALG_AES_CCM_ICV12,
  		.sadb_alg_ivlen = 8,
  		.sadb_alg_minbits = 128,
  		.sadb_alg_maxbits = 256
  	}
  },
  {
  	.name = "rfc4309(ccm(aes))",
  
  	.uinfo = {
  		.aead = {
  			.icv_truncbits = 128,
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_X_EALG_AES_CCM_ICV16,
  		.sadb_alg_ivlen = 8,
  		.sadb_alg_minbits = 128,
  		.sadb_alg_maxbits = 256
  	}
  },
73c89c15b   Tobias Brunner   crypto: gcm - Add...
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
  {
  	.name = "rfc4543(gcm(aes))",
  
  	.uinfo = {
  		.aead = {
  			.icv_truncbits = 128,
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_X_EALG_NULL_AES_GMAC,
  		.sadb_alg_ivlen = 8,
  		.sadb_alg_minbits = 128,
  		.sadb_alg_maxbits = 256
  	}
  },
1a6509d99   Herbert Xu   [IPSEC]: Add supp...
143
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
144
145
  static struct xfrm_algo_desc aalg_list[] = {
  {
01a2202c9   Herbert Xu   [IPSEC]: Use dige...
146
  	.name = "digest_null",
a716c1197   YOSHIFUJI Hideaki   [NET] XFRM: Fix w...
147

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
148
149
150
151
152
153
  	.uinfo = {
  		.auth = {
  			.icv_truncbits = 0,
  			.icv_fullbits = 0,
  		}
  	},
a716c1197   YOSHIFUJI Hideaki   [NET] XFRM: Fix w...
154

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
155
156
157
158
159
160
161
162
  	.desc = {
  		.sadb_alg_id = SADB_X_AALG_NULL,
  		.sadb_alg_ivlen = 0,
  		.sadb_alg_minbits = 0,
  		.sadb_alg_maxbits = 0
  	}
  },
  {
07d4ee583   Herbert Xu   [IPSEC]: Use HMAC...
163
164
  	.name = "hmac(md5)",
  	.compat = "md5",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
165
166
167
168
169
170
171
  
  	.uinfo = {
  		.auth = {
  			.icv_truncbits = 96,
  			.icv_fullbits = 128,
  		}
  	},
a716c1197   YOSHIFUJI Hideaki   [NET] XFRM: Fix w...
172

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
173
174
175
176
177
178
179
180
  	.desc = {
  		.sadb_alg_id = SADB_AALG_MD5HMAC,
  		.sadb_alg_ivlen = 0,
  		.sadb_alg_minbits = 128,
  		.sadb_alg_maxbits = 128
  	}
  },
  {
07d4ee583   Herbert Xu   [IPSEC]: Use HMAC...
181
182
  	.name = "hmac(sha1)",
  	.compat = "sha1",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
  
  	.uinfo = {
  		.auth = {
  			.icv_truncbits = 96,
  			.icv_fullbits = 160,
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_AALG_SHA1HMAC,
  		.sadb_alg_ivlen = 0,
  		.sadb_alg_minbits = 160,
  		.sadb_alg_maxbits = 160
  	}
  },
  {
07d4ee583   Herbert Xu   [IPSEC]: Use HMAC...
199
200
  	.name = "hmac(sha256)",
  	.compat = "sha256",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
  
  	.uinfo = {
  		.auth = {
  			.icv_truncbits = 96,
  			.icv_fullbits = 256,
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_X_AALG_SHA2_256HMAC,
  		.sadb_alg_ivlen = 0,
  		.sadb_alg_minbits = 256,
  		.sadb_alg_maxbits = 256
  	}
  },
  {
bc74b0c8a   Martin Willi   xfrm: Add SHA384 ...
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
  	.name = "hmac(sha384)",
  
  	.uinfo = {
  		.auth = {
  			.icv_truncbits = 192,
  			.icv_fullbits = 384,
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_X_AALG_SHA2_384HMAC,
  		.sadb_alg_ivlen = 0,
  		.sadb_alg_minbits = 384,
  		.sadb_alg_maxbits = 384
  	}
  },
  {
  	.name = "hmac(sha512)",
  
  	.uinfo = {
  		.auth = {
  			.icv_truncbits = 256,
  			.icv_fullbits = 512,
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_X_AALG_SHA2_512HMAC,
  		.sadb_alg_ivlen = 0,
  		.sadb_alg_minbits = 512,
  		.sadb_alg_maxbits = 512
  	}
  },
  {
a13366c63   Adrian-Ken Rueegsegger   xfrm: xfrm_algo: ...
251
252
  	.name = "hmac(rmd160)",
  	.compat = "rmd160",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
  
  	.uinfo = {
  		.auth = {
  			.icv_truncbits = 96,
  			.icv_fullbits = 160,
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_X_AALG_RIPEMD160HMAC,
  		.sadb_alg_ivlen = 0,
  		.sadb_alg_minbits = 160,
  		.sadb_alg_maxbits = 160
  	}
  },
7cf4c1a5f   Kazunori MIYAZAWA   [IPSEC]: Add supp...
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
  {
  	.name = "xcbc(aes)",
  
  	.uinfo = {
  		.auth = {
  			.icv_truncbits = 96,
  			.icv_fullbits = 128,
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_X_AALG_AES_XCBC_MAC,
  		.sadb_alg_ivlen = 0,
  		.sadb_alg_minbits = 128,
  		.sadb_alg_maxbits = 128
  	}
  },
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
285
286
287
288
  };
  
  static struct xfrm_algo_desc ealg_list[] = {
  {
6b7326c84   Herbert Xu   [IPSEC] ESP: Use ...
289
290
  	.name = "ecb(cipher_null)",
  	.compat = "cipher_null",
a716c1197   YOSHIFUJI Hideaki   [NET] XFRM: Fix w...
291

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
292
293
294
295
296
297
  	.uinfo = {
  		.encr = {
  			.blockbits = 8,
  			.defkeybits = 0,
  		}
  	},
a716c1197   YOSHIFUJI Hideaki   [NET] XFRM: Fix w...
298

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
299
300
301
302
303
304
305
306
  	.desc = {
  		.sadb_alg_id =	SADB_EALG_NULL,
  		.sadb_alg_ivlen = 0,
  		.sadb_alg_minbits = 0,
  		.sadb_alg_maxbits = 0
  	}
  },
  {
6b7326c84   Herbert Xu   [IPSEC] ESP: Use ...
307
308
  	.name = "cbc(des)",
  	.compat = "des",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
  
  	.uinfo = {
  		.encr = {
  			.blockbits = 64,
  			.defkeybits = 64,
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_EALG_DESCBC,
  		.sadb_alg_ivlen = 8,
  		.sadb_alg_minbits = 64,
  		.sadb_alg_maxbits = 64
  	}
  },
  {
6b7326c84   Herbert Xu   [IPSEC] ESP: Use ...
325
326
  	.name = "cbc(des3_ede)",
  	.compat = "des3_ede",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
  
  	.uinfo = {
  		.encr = {
  			.blockbits = 64,
  			.defkeybits = 192,
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_EALG_3DESCBC,
  		.sadb_alg_ivlen = 8,
  		.sadb_alg_minbits = 192,
  		.sadb_alg_maxbits = 192
  	}
  },
  {
245acb877   Herbert Xu   ipsec: Fix name o...
343
344
  	.name = "cbc(cast5)",
  	.compat = "cast5",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
  
  	.uinfo = {
  		.encr = {
  			.blockbits = 64,
  			.defkeybits = 128,
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_X_EALG_CASTCBC,
  		.sadb_alg_ivlen = 8,
  		.sadb_alg_minbits = 40,
  		.sadb_alg_maxbits = 128
  	}
  },
  {
6b7326c84   Herbert Xu   [IPSEC] ESP: Use ...
361
362
  	.name = "cbc(blowfish)",
  	.compat = "blowfish",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
  
  	.uinfo = {
  		.encr = {
  			.blockbits = 64,
  			.defkeybits = 128,
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_X_EALG_BLOWFISHCBC,
  		.sadb_alg_ivlen = 8,
  		.sadb_alg_minbits = 40,
  		.sadb_alg_maxbits = 448
  	}
  },
  {
6b7326c84   Herbert Xu   [IPSEC] ESP: Use ...
379
380
  	.name = "cbc(aes)",
  	.compat = "aes",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
  
  	.uinfo = {
  		.encr = {
  			.blockbits = 128,
  			.defkeybits = 128,
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_X_EALG_AESCBC,
  		.sadb_alg_ivlen = 8,
  		.sadb_alg_minbits = 128,
  		.sadb_alg_maxbits = 256
  	}
  },
  {
a716c1197   YOSHIFUJI Hideaki   [NET] XFRM: Fix w...
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
  	.name = "cbc(serpent)",
  	.compat = "serpent",
  
  	.uinfo = {
  		.encr = {
  			.blockbits = 128,
  			.defkeybits = 128,
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_X_EALG_SERPENTCBC,
  		.sadb_alg_ivlen = 8,
  		.sadb_alg_minbits = 128,
  		.sadb_alg_maxbits = 256,
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
413
414
  },
  {
6a0dc8d73   Noriaki TAKAMIYA   [IPSEC]: added th...
415
  	.name = "cbc(camellia)",
138f3c851   Li Yewang   ipsec: can not ad...
416
  	.compat = "camellia",
6a0dc8d73   Noriaki TAKAMIYA   [IPSEC]: added th...
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
  
  	.uinfo = {
  		.encr = {
  			.blockbits = 128,
  			.defkeybits = 128,
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_X_EALG_CAMELLIACBC,
  		.sadb_alg_ivlen = 8,
  		.sadb_alg_minbits = 128,
  		.sadb_alg_maxbits = 256
  	}
  },
  {
a716c1197   YOSHIFUJI Hideaki   [NET] XFRM: Fix w...
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
  	.name = "cbc(twofish)",
  	.compat = "twofish",
  
  	.uinfo = {
  		.encr = {
  			.blockbits = 128,
  			.defkeybits = 128,
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_X_EALG_TWOFISHCBC,
  		.sadb_alg_ivlen = 8,
  		.sadb_alg_minbits = 128,
  		.sadb_alg_maxbits = 256
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
449
  },
405137d16   Joy Latten   [IPSEC]: Add supp...
450
451
452
453
454
455
456
457
458
459
460
461
462
  {
  	.name = "rfc3686(ctr(aes))",
  
  	.uinfo = {
  		.encr = {
  			.blockbits = 128,
  			.defkeybits = 160, /* 128-bit key + 32-bit nonce */
  		}
  	},
  
  	.desc = {
  		.sadb_alg_id = SADB_X_EALG_AESCTR,
  		.sadb_alg_ivlen	= 8,
4203223a1   Tushar Gohad   xfrm: Fix key len...
463
464
  		.sadb_alg_minbits = 160,
  		.sadb_alg_maxbits = 288
405137d16   Joy Latten   [IPSEC]: Add supp...
465
466
  	}
  },
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
  };
  
  static struct xfrm_algo_desc calg_list[] = {
  {
  	.name = "deflate",
  	.uinfo = {
  		.comp = {
  			.threshold = 90,
  		}
  	},
  	.desc = { .sadb_alg_id = SADB_X_CALG_DEFLATE }
  },
  {
  	.name = "lzs",
  	.uinfo = {
  		.comp = {
  			.threshold = 90,
  		}
  	},
  	.desc = { .sadb_alg_id = SADB_X_CALG_LZS }
  },
  {
  	.name = "lzjh",
  	.uinfo = {
  		.comp = {
  			.threshold = 50,
  		}
  	},
  	.desc = { .sadb_alg_id = SADB_X_CALG_LZJH }
  },
  };
1a6509d99   Herbert Xu   [IPSEC]: Add supp...
498
499
500
501
  static inline int aead_entries(void)
  {
  	return ARRAY_SIZE(aead_list);
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
502
503
504
505
506
507
508
509
510
511
512
513
514
515
  static inline int aalg_entries(void)
  {
  	return ARRAY_SIZE(aalg_list);
  }
  
  static inline int ealg_entries(void)
  {
  	return ARRAY_SIZE(ealg_list);
  }
  
  static inline int calg_entries(void)
  {
  	return ARRAY_SIZE(calg_list);
  }
c92b3a2f1   Herbert Xu   [IPSEC] pfkey: Lo...
516
517
518
519
520
521
  struct xfrm_algo_list {
  	struct xfrm_algo_desc *algs;
  	int entries;
  	u32 type;
  	u32 mask;
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
522

1a6509d99   Herbert Xu   [IPSEC]: Add supp...
523
524
525
526
527
528
  static const struct xfrm_algo_list xfrm_aead_list = {
  	.algs = aead_list,
  	.entries = ARRAY_SIZE(aead_list),
  	.type = CRYPTO_ALG_TYPE_AEAD,
  	.mask = CRYPTO_ALG_TYPE_MASK,
  };
c92b3a2f1   Herbert Xu   [IPSEC] pfkey: Lo...
529
530
531
532
  static const struct xfrm_algo_list xfrm_aalg_list = {
  	.algs = aalg_list,
  	.entries = ARRAY_SIZE(aalg_list),
  	.type = CRYPTO_ALG_TYPE_HASH,
6fbf2cb77   Herbert Xu   [IPSEC]: Allow as...
533
  	.mask = CRYPTO_ALG_TYPE_HASH_MASK,
c92b3a2f1   Herbert Xu   [IPSEC] pfkey: Lo...
534
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
535

c92b3a2f1   Herbert Xu   [IPSEC] pfkey: Lo...
536
537
538
539
  static const struct xfrm_algo_list xfrm_ealg_list = {
  	.algs = ealg_list,
  	.entries = ARRAY_SIZE(ealg_list),
  	.type = CRYPTO_ALG_TYPE_BLKCIPHER,
6fbf2cb77   Herbert Xu   [IPSEC]: Allow as...
540
  	.mask = CRYPTO_ALG_TYPE_BLKCIPHER_MASK,
c92b3a2f1   Herbert Xu   [IPSEC] pfkey: Lo...
541
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
542

c92b3a2f1   Herbert Xu   [IPSEC] pfkey: Lo...
543
544
545
546
  static const struct xfrm_algo_list xfrm_calg_list = {
  	.algs = calg_list,
  	.entries = ARRAY_SIZE(calg_list),
  	.type = CRYPTO_ALG_TYPE_COMPRESS,
6fbf2cb77   Herbert Xu   [IPSEC]: Allow as...
547
  	.mask = CRYPTO_ALG_TYPE_MASK,
c92b3a2f1   Herbert Xu   [IPSEC] pfkey: Lo...
548
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
549

c92b3a2f1   Herbert Xu   [IPSEC] pfkey: Lo...
550
551
552
553
  static struct xfrm_algo_desc *xfrm_find_algo(
  	const struct xfrm_algo_list *algo_list,
  	int match(const struct xfrm_algo_desc *entry, const void *data),
  	const void *data, int probe)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
554
  {
c92b3a2f1   Herbert Xu   [IPSEC] pfkey: Lo...
555
  	struct xfrm_algo_desc *list = algo_list->algs;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
556
  	int i, status;
c92b3a2f1   Herbert Xu   [IPSEC] pfkey: Lo...
557
558
  	for (i = 0; i < algo_list->entries; i++) {
  		if (!match(list + i, data))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
559
560
561
562
563
564
565
  			continue;
  
  		if (list[i].available)
  			return &list[i];
  
  		if (!probe)
  			break;
c92b3a2f1   Herbert Xu   [IPSEC] pfkey: Lo...
566
567
  		status = crypto_has_alg(list[i].name, algo_list->type,
  					algo_list->mask);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
568
569
570
571
572
573
574
575
  		if (!status)
  			break;
  
  		list[i].available = status;
  		return &list[i];
  	}
  	return NULL;
  }
c92b3a2f1   Herbert Xu   [IPSEC] pfkey: Lo...
576
577
578
  static int xfrm_alg_id_match(const struct xfrm_algo_desc *entry,
  			     const void *data)
  {
26b8e51e9   Herbert Xu   [IPSEC]: Fix warn...
579
  	return entry->desc.sadb_alg_id == (unsigned long)data;
c92b3a2f1   Herbert Xu   [IPSEC] pfkey: Lo...
580
581
582
583
584
  }
  
  struct xfrm_algo_desc *xfrm_aalg_get_byid(int alg_id)
  {
  	return xfrm_find_algo(&xfrm_aalg_list, xfrm_alg_id_match,
26b8e51e9   Herbert Xu   [IPSEC]: Fix warn...
585
  			      (void *)(unsigned long)alg_id, 1);
c92b3a2f1   Herbert Xu   [IPSEC] pfkey: Lo...
586
587
588
589
590
591
  }
  EXPORT_SYMBOL_GPL(xfrm_aalg_get_byid);
  
  struct xfrm_algo_desc *xfrm_ealg_get_byid(int alg_id)
  {
  	return xfrm_find_algo(&xfrm_ealg_list, xfrm_alg_id_match,
26b8e51e9   Herbert Xu   [IPSEC]: Fix warn...
592
  			      (void *)(unsigned long)alg_id, 1);
c92b3a2f1   Herbert Xu   [IPSEC] pfkey: Lo...
593
594
595
596
597
598
  }
  EXPORT_SYMBOL_GPL(xfrm_ealg_get_byid);
  
  struct xfrm_algo_desc *xfrm_calg_get_byid(int alg_id)
  {
  	return xfrm_find_algo(&xfrm_calg_list, xfrm_alg_id_match,
26b8e51e9   Herbert Xu   [IPSEC]: Fix warn...
599
  			      (void *)(unsigned long)alg_id, 1);
c92b3a2f1   Herbert Xu   [IPSEC] pfkey: Lo...
600
601
602
603
604
605
606
607
608
609
610
  }
  EXPORT_SYMBOL_GPL(xfrm_calg_get_byid);
  
  static int xfrm_alg_name_match(const struct xfrm_algo_desc *entry,
  			       const void *data)
  {
  	const char *name = data;
  
  	return name && (!strcmp(name, entry->name) ||
  			(entry->compat && !strcmp(name, entry->compat)));
  }
6f2f19ed9   David S. Miller   xfrm: Pass name a...
611
  struct xfrm_algo_desc *xfrm_aalg_get_byname(const char *name, int probe)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
612
  {
c92b3a2f1   Herbert Xu   [IPSEC] pfkey: Lo...
613
614
  	return xfrm_find_algo(&xfrm_aalg_list, xfrm_alg_name_match, name,
  			      probe);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
615
616
  }
  EXPORT_SYMBOL_GPL(xfrm_aalg_get_byname);
6f2f19ed9   David S. Miller   xfrm: Pass name a...
617
  struct xfrm_algo_desc *xfrm_ealg_get_byname(const char *name, int probe)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
618
  {
c92b3a2f1   Herbert Xu   [IPSEC] pfkey: Lo...
619
620
  	return xfrm_find_algo(&xfrm_ealg_list, xfrm_alg_name_match, name,
  			      probe);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
621
622
  }
  EXPORT_SYMBOL_GPL(xfrm_ealg_get_byname);
6f2f19ed9   David S. Miller   xfrm: Pass name a...
623
  struct xfrm_algo_desc *xfrm_calg_get_byname(const char *name, int probe)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
624
  {
c92b3a2f1   Herbert Xu   [IPSEC] pfkey: Lo...
625
626
  	return xfrm_find_algo(&xfrm_calg_list, xfrm_alg_name_match, name,
  			      probe);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
627
628
  }
  EXPORT_SYMBOL_GPL(xfrm_calg_get_byname);
1a6509d99   Herbert Xu   [IPSEC]: Add supp...
629
630
631
632
633
634
635
636
637
638
639
640
641
642
  struct xfrm_aead_name {
  	const char *name;
  	int icvbits;
  };
  
  static int xfrm_aead_name_match(const struct xfrm_algo_desc *entry,
  				const void *data)
  {
  	const struct xfrm_aead_name *aead = data;
  	const char *name = aead->name;
  
  	return aead->icvbits == entry->uinfo.aead.icv_truncbits && name &&
  	       !strcmp(name, entry->name);
  }
6f2f19ed9   David S. Miller   xfrm: Pass name a...
643
  struct xfrm_algo_desc *xfrm_aead_get_byname(const char *name, int icv_len, int probe)
1a6509d99   Herbert Xu   [IPSEC]: Add supp...
644
645
646
647
648
649
650
651
652
653
  {
  	struct xfrm_aead_name data = {
  		.name = name,
  		.icvbits = icv_len,
  	};
  
  	return xfrm_find_algo(&xfrm_aead_list, xfrm_aead_name_match, &data,
  			      probe);
  }
  EXPORT_SYMBOL_GPL(xfrm_aead_get_byname);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
  struct xfrm_algo_desc *xfrm_aalg_get_byidx(unsigned int idx)
  {
  	if (idx >= aalg_entries())
  		return NULL;
  
  	return &aalg_list[idx];
  }
  EXPORT_SYMBOL_GPL(xfrm_aalg_get_byidx);
  
  struct xfrm_algo_desc *xfrm_ealg_get_byidx(unsigned int idx)
  {
  	if (idx >= ealg_entries())
  		return NULL;
  
  	return &ealg_list[idx];
  }
  EXPORT_SYMBOL_GPL(xfrm_ealg_get_byidx);
  
  /*
   * Probe for the availability of crypto algorithms, and set the available
   * flag for any algorithms found on the system.  This is typically called by
   * pfkey during userspace SA add, update or register.
   */
  void xfrm_probe_algs(void)
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
679
  	int i, status;
a716c1197   YOSHIFUJI Hideaki   [NET] XFRM: Fix w...
680

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
681
682
683
  	BUG_ON(in_softirq());
  
  	for (i = 0; i < aalg_entries(); i++) {
e4d5b79c6   Herbert Xu   [CRYPTO] users: U...
684
685
  		status = crypto_has_hash(aalg_list[i].name, 0,
  					 CRYPTO_ALG_ASYNC);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
686
687
688
  		if (aalg_list[i].available != status)
  			aalg_list[i].available = status;
  	}
a716c1197   YOSHIFUJI Hideaki   [NET] XFRM: Fix w...
689

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
690
  	for (i = 0; i < ealg_entries(); i++) {
e4d5b79c6   Herbert Xu   [CRYPTO] users: U...
691
692
  		status = crypto_has_blkcipher(ealg_list[i].name, 0,
  					      CRYPTO_ALG_ASYNC);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
693
694
695
  		if (ealg_list[i].available != status)
  			ealg_list[i].available = status;
  	}
a716c1197   YOSHIFUJI Hideaki   [NET] XFRM: Fix w...
696

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
697
  	for (i = 0; i < calg_entries(); i++) {
e4d5b79c6   Herbert Xu   [CRYPTO] users: U...
698
699
  		status = crypto_has_comp(calg_list[i].name, 0,
  					 CRYPTO_ALG_ASYNC);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
700
701
702
  		if (calg_list[i].available != status)
  			calg_list[i].available = status;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
  }
  EXPORT_SYMBOL_GPL(xfrm_probe_algs);
  
  int xfrm_count_auth_supported(void)
  {
  	int i, n;
  
  	for (i = 0, n = 0; i < aalg_entries(); i++)
  		if (aalg_list[i].available)
  			n++;
  	return n;
  }
  EXPORT_SYMBOL_GPL(xfrm_count_auth_supported);
  
  int xfrm_count_enc_supported(void)
  {
  	int i, n;
  
  	for (i = 0, n = 0; i < ealg_entries(); i++)
  		if (ealg_list[i].available)
  			n++;
  	return n;
  }
  EXPORT_SYMBOL_GPL(xfrm_count_enc_supported);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
727
  #if defined(CONFIG_INET_ESP) || defined(CONFIG_INET_ESP_MODULE) || defined(CONFIG_INET6_ESP) || defined(CONFIG_INET6_ESP_MODULE)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
728
729
730
731
732
733
734
735
736
737
  void *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len)
  {
  	if (tail != skb) {
  		skb->data_len += len;
  		skb->len += len;
  	}
  	return skb_put(tail, len);
  }
  EXPORT_SYMBOL_GPL(pskb_put);
  #endif