netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] sctp: implement SIOCINQ ioctl() (take 3)
@ 2010-09-03 13:47 Diego Elio Pettenò
  2010-09-08 20:09 ` David Miller
  0 siblings, 1 reply; 5+ messages in thread
From: Diego Elio Pettenò @ 2010-09-03 13:47 UTC (permalink / raw)
  To: netdev; +Cc: linux-sctp, Diego Elio 'Flameeyes' Pettenò

From: Diego Elio 'Flameeyes' Pettenò <flameeyes@gmail.com>

This simple patch copies the current approach for SIOCINQ ioctl() from DCCP
into SCTP so that the userland code working with SCTP can use a similar
interface across different protocols to know how much space to allocate for
a buffer.

Signed-off-by: Diego Elio Pettenò <flameeyes@gmail.com>
---
 net/sctp/socket.c |   35 ++++++++++++++++++++++++++++++++++-
 1 files changed, 34 insertions(+), 1 deletions(-)

diff --git a/net/sctp/socket.c b/net/sctp/socket.c
index ca44917..199ec05 100644
--- a/net/sctp/socket.c
+++ b/net/sctp/socket.c
@@ -3595,7 +3595,40 @@ out:
 /* The SCTP ioctl handler. */
 SCTP_STATIC int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg)
 {
-	return -ENOIOCTLCMD;
+	int rc = -ENOTCONN;
+
+	sctp_lock_sock(sk);
+
+	/*
+	 * SEQPACKET-style sockets in LISTENING state are valid, for
+	 * SCTP, so only discard TCP-style sockets in LISTENING state.
+	 */
+	if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
+		goto out;
+
+	switch (cmd) {
+	case SIOCINQ: {
+		struct sk_buff *skb;
+		unsigned int amount = 0;
+
+		skb = skb_peek(&sk->sk_receive_queue);
+		if (skb != NULL) {
+			/*
+			 * We will only return the amount of this packet since
+			 * that is all that will be read.
+			 */
+			amount = skb->len;
+		}
+		rc = put_user(amount, (int __user *)arg);
+	}
+		break;
+	default:
+		rc = -ENOIOCTLCMD;
+		break;
+	}
+out:
+	sctp_release_sock(sk);
+	return rc;
 }
 
 /* This is the function which gets called during socket creation to
-- 
1.7.2.2


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

* Re: [PATCH] sctp: implement SIOCINQ ioctl() (take 3)
  2010-09-03 13:47 [PATCH] sctp: implement SIOCINQ ioctl() (take 3) Diego Elio Pettenò
@ 2010-09-08 20:09 ` David Miller
  0 siblings, 0 replies; 5+ messages in thread
From: David Miller @ 2010-09-08 20:09 UTC (permalink / raw)
  To: flameeyes; +Cc: netdev, linux-sctp

From: Diego Elio Pettenò <flameeyes@gmail.com>
Date: Fri,  3 Sep 2010 15:47:03 +0200

> From: Diego Elio 'Flameeyes' Pettenò <flameeyes@gmail.com>
> 
> This simple patch copies the current approach for SIOCINQ ioctl() from DCCP
> into SCTP so that the userland code working with SCTP can use a similar
> interface across different protocols to know how much space to allocate for
> a buffer.
> 
> Signed-off-by: Diego Elio Pettenò <flameeyes@gmail.com>

Applied, thank you.

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

* [PATCH] sctp: implement SIOCINQ ioctl() (take 3)
@ 2010-09-29  1:51 Diego Elio Pettenò
  2010-10-01  0:35 ` David Miller
  0 siblings, 1 reply; 5+ messages in thread
From: Diego Elio Pettenò @ 2010-09-29  1:51 UTC (permalink / raw)
  To: netdev, linux-sctp; +Cc: Diego Elio 'Flameeyes' Pettenò

From: Diego Elio 'Flameeyes' Pettenò <flameeyes@gmail.com>

This simple patch copies the current approach for SIOCINQ ioctl() from DCCP
into SCTP so that the userland code working with SCTP can use a similar
interface across different protocols to know how much space to allocate for
a buffer.

Signed-off-by: Diego Elio Pettenò <flameeyes@gmail.com>
---
 net/sctp/socket.c |   35 ++++++++++++++++++++++++++++++++++-
 1 files changed, 34 insertions(+), 1 deletions(-)

diff --git a/net/sctp/socket.c b/net/sctp/socket.c
index ca44917..199ec05 100644
--- a/net/sctp/socket.c
+++ b/net/sctp/socket.c
@@ -3595,7 +3595,40 @@ out:
 /* The SCTP ioctl handler. */
 SCTP_STATIC int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg)
 {
-	return -ENOIOCTLCMD;
+	int rc = -ENOTCONN;
+
+	sctp_lock_sock(sk);
+
+	/*
+	 * SEQPACKET-style sockets in LISTENING state are valid, for
+	 * SCTP, so only discard TCP-style sockets in LISTENING state.
+	 */
+	if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
+		goto out;
+
+	switch (cmd) {
+	case SIOCINQ: {
+		struct sk_buff *skb;
+		unsigned int amount = 0;
+
+		skb = skb_peek(&sk->sk_receive_queue);
+		if (skb != NULL) {
+			/*
+			 * We will only return the amount of this packet since
+			 * that is all that will be read.
+			 */
+			amount = skb->len;
+		}
+		rc = put_user(amount, (int __user *)arg);
+	}
+		break;
+	default:
+		rc = -ENOIOCTLCMD;
+		break;
+	}
+out:
+	sctp_release_sock(sk);
+	return rc;
 }
 
 /* This is the function which gets called during socket creation to
-- 
1.7.3


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

* Re: [PATCH] sctp: implement SIOCINQ ioctl() (take 3)
  2010-09-29  1:51 Diego Elio Pettenò
@ 2010-10-01  0:35 ` David Miller
  2010-10-01  9:35   ` Diego Elio Pettenò
  0 siblings, 1 reply; 5+ messages in thread
From: David Miller @ 2010-10-01  0:35 UTC (permalink / raw)
  To: flameeyes; +Cc: netdev, linux-sctp

From: Diego Elio Pettenò <flameeyes@gmail.com>
Date: Wed, 29 Sep 2010 03:51:35 +0200

> +		rc = put_user(amount, (int __user *)arg);
> +	}
> +		break;

Please put the break statement inside of the basic block.

The way you have it here the indentation looks not so nice.

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

* Re: [PATCH] sctp: implement SIOCINQ ioctl() (take 3)
  2010-10-01  0:35 ` David Miller
@ 2010-10-01  9:35   ` Diego Elio Pettenò
  0 siblings, 0 replies; 5+ messages in thread
From: Diego Elio Pettenò @ 2010-10-01  9:35 UTC (permalink / raw)
  To: David Miller; +Cc: netdev, linux-sctp

Il giorno gio, 30/09/2010 alle 17.35 -0700, David Miller ha scritto:
> 
> 
> Please put the break statement inside of the basic block.
> 
> The way you have it here the indentation looks not so nice. 

Okay will resend; please do note that I copied the style (and most of
the code) from dccp anyway.

-- 
Diego Elio Pettenò — “Flameeyes”
http://blog.flameeyes.eu/

If you found a .asc file in this mail and know not what it is,
it's a GnuPG digital signature: http://www.gnupg.org/



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

end of thread, other threads:[~2010-10-01  9:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-03 13:47 [PATCH] sctp: implement SIOCINQ ioctl() (take 3) Diego Elio Pettenò
2010-09-08 20:09 ` David Miller
  -- strict thread matches above, loose matches on Subject: below --
2010-09-29  1:51 Diego Elio Pettenò
2010-10-01  0:35 ` David Miller
2010-10-01  9:35   ` Diego Elio Pettenò

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).