From: Stephan Mueller <smueller@chronox.de>
To: Marcel Holtmann <marcel@holtmann.org>
Cc: Mat Martineau <mathew.j.martineau@linux.intel.com>,
Herbert Xu <herbert@gondor.apana.org.au>,
Linux Crypto Mailing List <linux-crypto@vger.kernel.org>,
dhowells@redhat.com
Subject: Re: [PATCH v8 0/4] crypto: add algif_akcipher user space API
Date: Mon, 14 Aug 2017 08:24:51 +0200 [thread overview]
Message-ID: <30055124.HBDiccPrro@tauon.chronox.de> (raw)
In-Reply-To: <B3DDB822-FCDC-41A2-A5AB-9956866D6725@holtmann.org>
Am Freitag, 11. August 2017, 18:02:55 CEST schrieb Marcel Holtmann:
Hi Marcel,
> > Thanks for the reminder. I have looked at that but I am unsure about
> > whether this one covers asym crypto appropriately, too.
> >
> > The issue is that some hardware may only offer accelerators without a full
> > blown RSA siggen/ver logic (that pulls in PKCS or OAEP or others). How do
> > you propose to cover raw primitives with keyctl?
>
> where is such a hardware?
Strangely, I see such support all the time in embedded devices where
asymmetric acceleration is really necessary.
> And what is the usage of it? Look at what we are
> using asymmetric crypto for at the moment. It is either for sign and verify
> with secure boot etc. Or it is for key exchange purposes.
I understand that this is the core purpose of asymmetric ciphers. Yet,
asymmetric ciphers are complex and we as kernel developers do not know (or
shall not mandate?) where the complexity shall be implemented. By forcing all
into the keyctl, we would insist that the entire complexity of the full-blown
asym cipher is in the kernel without an option that user space may implement
it.
What we are currently seemingly discuss is the choice of
- keyctl: having all complexity of the entire asym logic including its key
handling in the kernel with the benefit of the kernel protection of the
private key
- algif_akcipher (maybe with a link to keyctl): only exporting the cipher
support and allow user space to decide where the complexity lies
Just to give you an example: A full blown RSA operation (excluding the hashing
part for signatures) consists of padding and the asymmetric operation. For the
asymmetric operation, we have sign/verify and encrypt/decrypt (keywrap). There
are a gazillion padding types out there:
- PKCS1
- OAEP
- SP800-56B: RSAEP, RSADP, RSASVE, RSA-OAEP, RSA-KEM-KWS
And there may be others.
When we talk about encryption/decryption we have to consider the KDFs
(SP800-108, RFC5689, SP800-56A).
When we consider the KDFs, we have to think of the KDF data styles (ASN.1,
concatenation)
With keyctl to me it seems that we need to integrate all that logic into the
kernel. As all of that is just processing logic, securing it in the kernel may
not be the right way as this code does not need the elevated privileges in the
kernel for that.
Yet, some hardware may provide some/all of this logic. And we want to make
that available to user space.
>
> The asymmetric crypto is a means to an end. If it is not for certification
> verification, then it for is creating a symmetric key to be used with a
> symmetric cipher. We have the the asymmetric_keys subsystem for
> representing the nature of this crypto. Also the list of asymmetric ciphers
> is a lot smaller than the symmetric ones.
>
> What raw primitives? When we are using for example ECDH for Bluetooth where
> you need to create a pairwise symmetric key, then what you really want from
> the cryptographic primitives is this:
>
> 1) Create public/private key pair
See above, it is my opinion that with asym ciphers, there is a lot of
complexity and lots of options. I do not think that the kernel API should be a
limiting factor here, because the kernel simply does not implement a specific
cipher type.
> 2) Give public key to applications and store the private key safely
> 3) Retrieve public key from remote side and challenge
This assumes that always the Linux kernel is the manager of keys (or the
gatekeeper to the key store). Are we sure that this is always the case?
Ciao
Stephan
next prev parent reply other threads:[~2017-08-14 6:24 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-10 6:39 [PATCH v8 0/4] crypto: add algif_akcipher user space API Stephan Müller
2017-08-10 6:39 ` [PATCH v8 1/4] crypto: AF_ALG -- add sign/verify API Stephan Müller
2017-08-10 12:49 ` Tudor Ambarus
2017-08-10 13:03 ` Stephan Mueller
2017-08-10 13:59 ` Tudor Ambarus
2017-08-10 14:06 ` Stephan Müller
2017-08-10 6:39 ` [PATCH v8 2/4] crypto: AF_ALG -- add setpubkey setsockopt call Stephan Müller
2017-08-10 6:40 ` [PATCH v8 3/4] crypto: AF_ALG -- add asymmetric cipher Stephan Müller
2017-08-11 12:51 ` Tudor Ambarus
2017-08-19 13:53 ` Stephan Müller
2017-08-21 8:55 ` Tudor Ambarus
2017-08-21 9:23 ` Tudor Ambarus
2017-08-21 9:39 ` Stephan Mueller
2017-08-10 6:40 ` [PATCH v8 4/4] crypto: algif_akcipher - enable compilation Stephan Müller
2017-08-11 12:56 ` Tudor Ambarus
2017-08-11 13:03 ` Stephan Mueller
2017-08-11 0:48 ` [PATCH v8 0/4] crypto: add algif_akcipher user space API Mat Martineau
2017-08-11 5:13 ` Marcel Holtmann
2017-08-11 6:30 ` Stephan Müller
2017-08-11 16:02 ` Marcel Holtmann
2017-08-14 6:24 ` Stephan Mueller [this message]
2017-08-14 6:42 ` Marcel Holtmann
2017-08-11 7:18 ` Stephan Mueller
2017-08-11 16:05 ` Marcel Holtmann
2017-08-13 8:52 ` Gilad Ben-Yossef
2017-08-14 6:01 ` Stephan Mueller
2017-08-17 13:17 ` Tudor Ambarus
2017-08-30 6:15 ` Tudor Ambarus
2017-08-30 7:21 ` Marcel Holtmann
2017-08-30 8:17 ` Tudor Ambarus
2017-08-30 12:36 ` Marcel Holtmann
2017-08-11 10:18 ` Andrew Zaborowski
2017-08-11 19:43 ` Mat Martineau
2017-08-14 6:03 ` Stephan Mueller
2017-08-14 6:26 ` Marcel Holtmann
2017-08-14 7:23 ` Stephan Mueller
2017-08-14 9:26 ` Marcel Holtmann
2017-10-02 14:15 ` Tudor Ambarus
2017-10-03 0:09 ` Mat Martineau
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=30055124.HBDiccPrro@tauon.chronox.de \
--to=smueller@chronox.de \
--cc=dhowells@redhat.com \
--cc=herbert@gondor.apana.org.au \
--cc=linux-crypto@vger.kernel.org \
--cc=marcel@holtmann.org \
--cc=mathew.j.martineau@linux.intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox