* [PATCH 2/3] [AX25] zero length frame filtering in AX25
@ 2009-03-19 18:18 bernard pidoux
2009-03-21 20:34 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: bernard pidoux @ 2009-03-19 18:18 UTC (permalink / raw)
To: Linux netdev, David Miller
In previous commit 244f46ae6e9e18f6fc0be7d1f49febde4762c34b
was introduced a zero length frame filter for ROSE protocole.
This patch has the same purpose at AX25 frame level for the same
reason. Empty frames have no meaning in AX25 protocole.
Signed-off-by: Bernard Pidoux <f6bvp@amsat.org>
---
net/ax25/af_ax25.c | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/net/ax25/af_ax25.c b/net/ax25/af_ax25.c
index 532a031..ca32f57 100644
--- a/net/ax25/af_ax25.c
+++ b/net/ax25/af_ax25.c
@@ -1435,6 +1435,11 @@ static int ax25_sendmsg(struct kiocb *iocb, struct socket *sock,
size_t size;
int lv, err, addr_len = msg->msg_namelen;
+ /* AX.25 empty data frame has no meaning : don't send */
+ if (len == 0) {
+ return (0);
+ }
+
if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_EOR|MSG_CMSG_COMPAT))
return -EINVAL;
@@ -1634,6 +1639,13 @@ static int ax25_recvmsg(struct kiocb *iocb, struct socket *sock,
skb_reset_transport_header(skb);
copied = skb->len;
+ /* AX.25 empty data frame has no meaning : ignore it */
+ if (copied == 0) {
+ err = copied;
+ skb_free_datagram(sk, skb);
+ goto out;
+ }
+
if (copied > size) {
copied = size;
msg->msg_flags |= MSG_TRUNC;
--
1.6.0.6
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH 2/3] [AX25] zero length frame filtering in AX25
2009-03-19 18:18 [PATCH 2/3] [AX25] zero length frame filtering in AX25 bernard pidoux
@ 2009-03-21 20:34 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2009-03-21 20:34 UTC (permalink / raw)
To: f6bvp; +Cc: netdev
From: bernard pidoux <f6bvp@free.fr>
Date: Thu, 19 Mar 2009 19:18:15 +0100
> In previous commit 244f46ae6e9e18f6fc0be7d1f49febde4762c34b
> was introduced a zero length frame filter for ROSE protocole.
> This patch has the same purpose at AX25 frame level for the same
> reason. Empty frames have no meaning in AX25 protocole.
>
> Signed-off-by: Bernard Pidoux <f6bvp@amsat.org>
Applied.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-03-21 20:34 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-19 18:18 [PATCH 2/3] [AX25] zero length frame filtering in AX25 bernard pidoux
2009-03-21 20:34 ` David Miller
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).