I am trying to figure out the difference AES-NI brings to AES crytpo opertaions. After trying with AES-CBC it seems it makes none, as is stated by Intel. However for AES-CTR and AES-GCM modes, Intel promises a great performance improvement. I am trying to use rfc3686(ctr(aes)) crypto algorithm to decrypt an ESP packet, but no success. Here is my code snippet for crypto APIs-
struct ablkcipher_request *req;
struct crypto_ablkcipher *tfm;
uint8_t _key[20] = {0};
int ret;
tfm = crypto_alloc_ablkcipher("rfc3686(ctr(aes))", 0, CRYPTO_ALG_ASYNC);
if (IS_ERR(tfm))
return -1;
req = ablkcipher_request_alloc(tfm, GFP_KERNEL);
if (!req) {
return -1;
ablkcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
decrypt_callback, &dc);
crypto_ablkcipher_clear_flags(tfm, ~0);
memcpy(_key, sa->key, sa->len);
ret = crypto_ablkcipher_setkey(tfm, _key, 20);
sg_init_table(sg_in, 1);
sg_init_table(sg_out, 2);
sg_set_buf(sg_in, in_buf, in_buf_len);
sg_set_buf(&sg_out[0], out_buf, out_buf_len);
sg_set_buf(&sg_out[1], pad, sizeof(pad));
ablkcipher_request_set_crypt(req, sg_in, sg_out,
in_buf_len,
iv);
ret = crypto_ablkcipher_decrypt(req);
// here is the decrypt_callback
void decrypt_callback(struct crypto_async_request *req, int err)
{
struct decrypt_data *dc = req->data;
struct callback_data *cb = dc->cb;
printk("err %d\n", err);
if (err == -EINPROGRESS)
return;
ablkcipher_request_free(req);
kfree(dc);
}
Now, during packet processing, I see crypto_ablkcipher_decrypt return 0, but decrypt_callback is not called.
Also, I have put some prints in AES-NI rfc3686(ctr(aes)) decrypt routing, which I dont see coming, which when put in AES-CBC decrypt and using AES-CBC algorithm are visible.
Please advice what could be wrong.
Thanks