From: Steffen Klassert <steffen.klassert@secunet.com>
To: Dave Watson <davejwatson@fb.com>
Cc: Ilya Lesokhin <ilyal@mellanox.com>,
Aviad Yehezkel <aviadye@mellanox.com>,
Boris Pismenny <borisp@mellanox.com>,
Liran Liss <liranl@mellanox.com>,
"Matan Barak" <matanb@mellanox.com>,
David Miller <davem@davemloft.net>, <netdev@vger.kernel.org>,
Tom Herbert <tom@herbertland.com>, <herbert@gondor.apana.org.au>,
<linux-crypto@vger.kernel.org>,
"Hannes Frederic Sowa" <hannes@stressinduktion.org>,
Eric Dumazet <eric.dumazet@gmail.com>,
Alexei Starovoitov <alexei.starovoitov@gmail.com>,
<nmav@gnutls.org>, <fridolin.pokorny@gmail.com>
Subject: Re: [PATCH v3 net-next 3/4] tls: kernel TLS support
Date: Wed, 12 Jul 2017 09:20:13 +0200 [thread overview]
Message-ID: <20170712072012.GK2631@secunet.com> (raw)
In-Reply-To: <20170711185311.GA200@davejwatson-mba.dhcp.thefacebook.com>
On Tue, Jul 11, 2017 at 11:53:11AM -0700, Dave Watson wrote:
> On 07/11/17 08:29 AM, Steffen Klassert wrote:
> > Sorry for replying to old mail...
> > > +int tls_set_sw_offload(struct sock *sk, struct tls_context *ctx)
> > > +{
> >
> > ...
> >
> > > +
> > > + if (!sw_ctx->aead_send) {
> > > + sw_ctx->aead_send = crypto_alloc_aead("gcm(aes)", 0, 0);
> > > + if (IS_ERR(sw_ctx->aead_send)) {
> > > + rc = PTR_ERR(sw_ctx->aead_send);
> > > + sw_ctx->aead_send = NULL;
> > > + goto free_rec_seq;
> > > + }
> > > + }
> > > +
> >
> > When I look on how you allocate the aead transformation, it seems
> > that you should either register an asynchronous callback with
> > aead_request_set_callback(), or request for a synchronous algorithm.
> >
> > Otherwise you will crash on an asynchronous crypto return, no?
>
> The intention is for it to be synchronous, and gather directly from
> userspace buffers. It looks like calling
> crypto_alloc_aead("gcm(aes)", 0, CRYPTO_ALG_ASYNC) is the correct way
> to request synchronous algorithms only?
Yes, but then you loose the aes-ni based algorithms because they are
asynchronous. If you want to have good crypto performance, it is
better to implement the asynchronous callbacks.
>
> > Also, it seems that you have your scatterlists on a per crypto
> > transformation base istead of per crypto request. Is this intentional?
>
> We hold the socket lock and only one crypto op can happen at a time,
> so we reuse the scatterlists.
This is OK as long as the crypto happens synchronous. But as said above,
I think this is not what you want.
next prev parent reply other threads:[~2017-07-12 7:20 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <cover.1497465295.git.davejwatson@fb.com>
2017-06-14 18:37 ` [PATCH v3 net-next 1/4] tcp: ULP infrastructure Dave Watson
2017-06-17 0:14 ` Christoph Paasch
2017-07-29 20:19 ` Tom Herbert
2017-06-25 2:42 ` Levin, Alexander (Sasha Levin)
2017-06-26 14:30 ` Dave Watson
2017-06-26 15:07 ` Levin, Alexander (Sasha Levin)
2017-07-29 20:12 ` Tom Herbert
2017-07-31 22:16 ` Dave Watson
2017-08-01 18:27 ` Tom Herbert
2017-06-14 18:37 ` [PATCH v3 net-next 2/4] tcp: export do_tcp_sendpages and tcp_rate_check_app_limited functions Dave Watson
2017-06-14 18:37 ` [PATCH v3 net-next 3/4] tls: kernel TLS support Dave Watson
2017-06-16 20:56 ` Stephen Hemminger
2017-06-16 20:58 ` Stephen Hemminger
2017-06-17 0:35 ` Dave Watson
2017-07-11 6:29 ` Steffen Klassert
2017-07-11 18:53 ` Dave Watson
2017-07-11 20:24 ` Eric Biggers
2017-07-12 7:20 ` Steffen Klassert [this message]
2017-07-12 18:34 ` Dave Watson
2017-06-14 18:37 ` [PATCH v3 net-next 4/4] tls: Documentation Dave Watson
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=20170712072012.GK2631@secunet.com \
--to=steffen.klassert@secunet.com \
--cc=alexei.starovoitov@gmail.com \
--cc=aviadye@mellanox.com \
--cc=borisp@mellanox.com \
--cc=davejwatson@fb.com \
--cc=davem@davemloft.net \
--cc=eric.dumazet@gmail.com \
--cc=fridolin.pokorny@gmail.com \
--cc=hannes@stressinduktion.org \
--cc=herbert@gondor.apana.org.au \
--cc=ilyal@mellanox.com \
--cc=linux-crypto@vger.kernel.org \
--cc=liranl@mellanox.com \
--cc=matanb@mellanox.com \
--cc=netdev@vger.kernel.org \
--cc=nmav@gnutls.org \
--cc=tom@herbertland.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.