summary refs log tree commit diff
path: root/drivers/misc
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2019-12-18 15:53:01 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2019-12-27 18:18:03 +0800
commit5f567fffaae995dce3498e175e47d5a779fb0270 (patch)
tree5c9d1ea0730f324296ef35af028bbd1042c066e6 /drivers/misc
parent3932aa1ce38148cd54b6ec2fd1ce070e2160b628 (diff)
downloadlinux-5f567fffaae995dce3498e175e47d5a779fb0270.tar.gz
crypto: api - Retain alg refcount in crypto_grab_spawn
This patch changes crypto_grab_spawn to retain the reference count
on the algorithm.  This is because the caller needs to access the
algorithm parameters and without the reference count the algorithm
can be freed at any time.

The reference count will be subsequently dropped by the crypto API
once the instance has been registered.  The helper crypto_drop_spawn
will also conditionally drop the reference count depending on whether
it has been registered.

Note that the code is actually added to crypto_init_spawn.  However,
unless the caller activates this by setting spawn->dropref beforehand
then nothing happens.  The only caller that sets dropref is currently
crypto_grab_spawn.

Once all legacy users of crypto_init_spawn disappear, then we can
kill the dropref flag.

Internally each instance will maintain a list of its spawns prior
to registration.  This memory used by this list is shared with
other fields that are only used after registration.  In order for
this to work a new flag spawn->registered is added to indicate
whether spawn->inst can be used.

Fixes: d6ef2f198d4c ("crypto: api - Add crypto_grab_spawn primitive")
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/misc')
0 files changed, 0 insertions, 0 deletions