lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Mon, 14 Jul 2014 16:27:50 +0000
From:	David Laight <David.Laight@...LAB.COM>
To:	'Vlad Yasevich' <vyasevich@...il.com>,
	"'netdev@...r.kernel.org'" <netdev@...r.kernel.org>,
	"'linux-sctp@...r.kernel.org'" <linux-sctp@...r.kernel.org>
CC:	"'davem@...emloft.net'" <davem@...emloft.net>
Subject: RE: [PATCH net-next v2 3/3] net: sctp: Add partial support for
 MSG_MORE on SCTP

From: Vlad Yasevich
...
> > +	/* Setting MSG_MORE currently has the same effect as enabling Nagle.
> > +	 * This means that the user can't force bundling of the first two data
> > +	 * chunks.  It does mean that all the data chunks will be sent
> > +	 * without an extra timer.
> > +	 * It is enough to save the last value since any data sent with
> > +	 * MSG_MORE clear will already have been sent (subject to flow control).
> > +	 */
> > +	if (msg->msg_flags & MSG_MORE)
> > +		sp->tx_delay |= SCTP_F_TX_MSG_MORE;
> > +	else
> > +		sp->tx_delay &= ~SCTP_F_TX_MSG_MORE;
> > +
> 
> This is ok for 1-1 sockets, but it doesn't really work for 1-many sockets.  If one of
> the associations uses MSG_MORE while another does not, we'll see some interesting
> side-effects on the wire.

They shouldn't cause any grief, and are somewhat unlikely.
Unless multiple threads/processes are writing data into the same socket
and are also flipping MSG_MORE (and the socket locking allows the
send path to run concurrently - I suspect it doesn't).

AFAICT the tx_delay/Nagle flag is looked at in two code paths:
1) After the application tries to send some data.
2) When processing a received ack chunk.

For 1-many sockets I suspect the code that checks tx_delay after a send()
is executed before a send() from a different thread could change the value.
And that sends for alternate destinations won't try to clear the tx queue
for the other association.
So the send() processing is unlikely to be affected by the MSG_MORE flag
value for the other association.

The only time there will be sendable data for (2) is if the connection
were flow-controlled off, or if data were unsent due the MSG_MORE/Nagle
being set when the last send was processed.
Most likely the queued data will be sent - either because there is nothing
outstanding, because there is more than a packet full, or because the last
send had MSG_MORE clear.

The expectation is that an application will send some data chunks with
MSG_MORE set, followed by one with it clear.

The only scenario I can see that might be unexpected is:
- a 1-many socket.
- one destination flow controlled (ie waiting an ack chunk) but
  with less than 1500 bytes queued.
- send with MSG_MORE set for a different destination.
- ack received, queued data not sent.

But if you are waiting for ack chunks on a 1-many socket you are already
in deep trouble - since there is only a single socket send buffer.

I don't think this is a problem.

	David


--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ