OSDN Git Service

xfrm: fix xfrm_do_migrate() with AEAD e.g(AES-GCM)
authorAntony Antony <antony@phenome.org>
Thu, 7 Dec 2017 20:54:27 +0000 (21:54 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 26 May 2018 06:48:50 +0000 (08:48 +0200)
commitee551b8e00b0368cb1188dbf0238a3a8989e9845
treec6026f0d28f55a51421f86be78a961953122f6be
parent177a981885cf9588ca5cbcaf2ce65ab0d4b4abb3
xfrm: fix xfrm_do_migrate() with AEAD e.g(AES-GCM)

commit 75bf50f4aaa1c78d769d854ab3d975884909e4fb upstream.

copy geniv when cloning the xfrm state.

x->geniv was not copied to the new state and migration would fail.

xfrm_do_migrate
  ..
  xfrm_state_clone()
   ..
   ..
   esp_init_aead()
   crypto_alloc_aead()
    crypto_alloc_tfm()
     crypto_find_alg() return EAGAIN and failed

Signed-off-by: Antony Antony <antony@phenome.org>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
Cc: Ben Hutchings <ben.hutchings@codethink.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/xfrm/xfrm_state.c