lkml.org 
[lkml]   [2017]   [Nov]   [29]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRe: [PATCH] crypto: AF_ALG - wait for data at beginning of recvmsg
Date
Am Mittwoch, 29. November 2017, 11:22:34 CET schrieb Herbert Xu:

Hi Herbert,

> On Wed, Nov 29, 2017 at 11:17:26AM +0100, Stephan Müller wrote:
> > @@ -111,6 +111,12 @@ static int _aead_recvmsg(struct socket *sock, struct
> > msghdr *msg,>
> > size_t usedpages = 0; /* [in] RX bufs to be used from user */
> > size_t processed = 0; /* [in] TX bufs to be consumed */
> >
> > + if (ctx->more) {
> > + err = af_alg_wait_for_data(sk, flags);
> > + if (err)
> > + return err;
> > + }
>
> So what happens when sendmsg hasn't been called at all? In that
> case ctx->more would be zero, and we would skip the wait right?

Right, but wouldn't that be the correct order of operation? If somebody does
not call sendmsg, he simply did not send any data. And that is yet a proper
operation (for encryption) as it obtains the tag for the "null" data.

In case we have decryption and yet we received "null" data (e.g. sendmsg was
not called) which implies the kernel received too little data (decryption at
least requires the tag), aead_sufficient_data will return the error.

Ciao
Stephan

\
 
 \ /
  Last update: 2017-11-29 11:29    [W:0.046 / U:0.552 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site