netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* AF_ALG buggy with sendfile
@ 2013-11-24 17:21 Shawn Landden
  2013-11-24 22:00 ` Shawn Landden
  0 siblings, 1 reply; 18+ messages in thread
From: Shawn Landden @ 2013-11-24 17:21 UTC (permalink / raw)
  To: Linux Kernel Mailing List, netdev, herbert, linux-crypto

[-- Attachment #1: Type: text/plain, Size: 273 bytes --]

If I use sendfile() to send to a accept()ed AF_ALG socket set up for
"hash", I get the wrong
answer, if I read() and then write() I get the right answer. None of
the system calls return an error.

test case attached.

-- 

---
Shawn Landden
+1 360 389 3001 (SMS preferred)

[-- Attachment #2: af_alg.c --]
[-- Type: text/x-csrc, Size: 976 bytes --]


#include <sys/sendfile.h>
#include <sys/socket.h>
#include <linux/if_alg.h>
#include <stdio.h>
#include <sys/stat.h>
#include <fcntl.h>

int main(void)
{
	int opfd;
	int tfmfd;
	struct sockaddr_alg sa = {
		.salg_family = AF_ALG,
		.salg_type = "hash",
		.salg_name = "sha1"
	};
	char buf2[10000000];
	char buf[20];
	int i;
	struct stat st;

	tfmfd = socket(AF_ALG, SOCK_SEQPACKET, 0);

	bind(tfmfd, (struct sockaddr *)&sa, sizeof(sa));

	opfd = accept(tfmfd, NULL, 0);

        int true = open("/bin/true", O_RDONLY);
        fstat(true, &st);

        sendfile(opfd, true, NULL, st.st_size);
	read(opfd, &buf, 20);

	for (i = 0; i < 20; i++) {
		printf("%02x", (unsigned char)buf[i]);
	}
	printf("\n");

        lseek(true, 0, SEEK_SET);
        read(true, &buf2, st.st_size);
        write(opfd, &buf2, st.st_size);
	read(opfd, &buf, 20);

	for (i = 0; i < 20; i++) {
		printf("%02x", (unsigned char)buf[i]);
	}
	printf("\n");

	close(opfd);
	close(tfmfd);

	return 0;
}


^ permalink raw reply	[flat|nested] 18+ messages in thread
* Re: [PATCH] update consumers of MSG_MORE to recognize MSG_SENDPAGE_NOTLAST
@ 2013-11-26  2:43 Shawn Landden
  0 siblings, 0 replies; 18+ messages in thread
From: Shawn Landden @ 2013-11-26  2:43 UTC (permalink / raw)
  To: Linux Kernel Mailing List, linux-fsdevel, viro, Shawn Landden,
	linux-crypto, netdev, Herbert Xu, Tom Herbert, David S. Miller,
	stable, Richard Weinberger

On Mon, Nov 25, 2013 at 7:36 AM, Shawn Landden <shawn@churchofgit.com> wrote:
> Commit 35f9c09fe (tcp: tcp_sendpages() should call tcp_push() once)
> added an internal flag MSG_SENDPAGE_NOTLAST, similar to
> MSG_MORE.
>
> algif_hash, algif_skcipher, and udp used MSG_MORE from tcp_sendpages()
> and need to see the new flag as identical to MSG_MORE.
>
> This fixes sendfile() on AF_ALG.
>
> v3: also fix udp
>
> Cc: Tom Herbert <therbert@google.com>
> Cc: Eric Dumazet <eric.dumazet@gmail.com>
> Cc: David S. Miller <davem@davemloft.net>
> Cc: <stable@vger.kernel.org> # 3.4.x + 3.2.x
> Reported-and-tested-by: Shawn Landden <shawnlandden@gmail.com>
> Original-patch: Richard Weinberger <richard@nod.at>
> Signed-off-by: Shawn Landden <shawn@churchofgit.com>

>May I ask why you took over the my patch without even CC'in me nor
>replying to the original
>thread "[PATCH] pipe_to_sendpage: Ensure that MSG_MORE is set if we
>set MSG_SENDPAGE_NOTLAST"?
>You are acting very rude.
Not CCing you was an oversight.

>The discussion at the original thread is not done.
>Does skcipher_sendpage() really also need fixing? or UDP?

UDP needs it or it will send out packets mid-sendfile. skcipher needs
it or it will produce incorrect
output like hash.
>I didn't send another patch because I'm waiting for Eric's answer first.
Eric forgot to update consumers internal consumers of MSG_MORE when he created
this distinction in sendpage. That became clear when he first
responded. Changing this where the consumers are makes sense. I just
want this bug fixed, feel free to send your next version.

>Thanks,
>//richard

-Shawn

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2013-11-29 21:33 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-24 17:21 AF_ALG buggy with sendfile Shawn Landden
2013-11-24 22:00 ` Shawn Landden
2013-11-24 22:04   ` Shawn Landden
2013-11-24 23:42   ` [PATCH] pipe_to_sendpage: Ensure that MSG_MORE is set if we set MSG_SENDPAGE_NOTLAST Richard Weinberger
2013-11-25  0:03     ` Shawn Landden
2013-11-25  1:25     ` Eric Dumazet
2013-11-25  1:40       ` Shawn Landden
2013-11-25  2:04       ` [PATCH] Commit 35f9c09fe (tcp: tcp_sendpages() should call tcp_push() once) added an internal flag MSG_SENDPAGE_NOTLAST, similar to MSG_MORE Shawn Landden
2013-11-25  2:08       ` [PATCH] update consumers of MSG_MORE to recognize MSG_SENDPAGE_NOTLAST Shawn Landden
2013-11-25  4:26         ` Hannes Frederic Sowa
2013-11-25  6:36           ` Shawn Landden
2013-11-25 23:27             ` Richard Weinberger
2013-11-29  5:47             ` Hannes Frederic Sowa
2013-11-29  8:50               ` Richard Weinberger
2013-11-29 21:33             ` David Miller
2013-11-25  7:42       ` [PATCH] pipe_to_sendpage: Ensure that MSG_MORE is set if we set MSG_SENDPAGE_NOTLAST Richard Weinberger
2013-11-26  0:02         ` Eric Dumazet
  -- strict thread matches above, loose matches on Subject: below --
2013-11-26  2:43 [PATCH] update consumers of MSG_MORE to recognize MSG_SENDPAGE_NOTLAST Shawn Landden

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).