Xin Long 644fbdeacf sctp: fix the issue that flags are ignored when using kernel_connect
Now sctp uses inet_dgram_connect as its proto_ops .connect, and the flags
param can't be passed into its proto .connect where this flags is really
needed.

sctp works around it by getting flags from socket file in __sctp_connect.
It works for connecting from userspace, as inherently the user sock has
socket file and it passes f_flags as the flags param into the proto_ops
.connect.

However, the sock created by sock_create_kern doesn't have a socket file,
and it passes the flags (like O_NONBLOCK) by using the flags param in
kernel_connect, which calls proto_ops .connect later.

So to fix it, this patch defines a new proto_ops .connect for sctp,
sctp_inet_connect, which calls __sctp_connect() directly with this
flags param. After this, the sctp's proto .connect can be removed.

Note that sctp_inet_connect doesn't need to do some checks that are not
needed for sctp, which makes thing better than with inet_dgram_connect.

Suggested-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
Acked-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Reviewed-by: Michal Kubecek <mkubecek@suse.cz>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-05-22 13:37:26 -04:00
..
2017-07-11 06:08:58 -04:00
2018-01-19 14:02:12 -05:00
2017-11-27 16:20:04 -05:00
2018-03-26 13:14:43 -04:00
2017-04-05 10:15:20 +02:00
2018-03-23 21:52:19 -04:00
2018-03-31 02:15:54 +02:00
2018-03-04 13:34:18 -05:00
2018-02-06 11:32:48 -05:00
2018-02-28 11:43:28 -05:00
2018-03-04 13:04:22 -05:00
2017-10-11 09:49:34 +02:00
2017-11-16 10:49:00 +09:00
2017-12-11 14:10:06 -05:00
2018-03-04 13:04:22 -05:00
2017-12-15 12:34:00 -05:00
2018-03-31 23:25:39 -04:00
2018-04-07 22:32:31 -04:00
2017-11-08 16:12:33 +09:00
2017-12-05 14:37:13 -05:00
2017-12-04 11:32:53 -05:00
2018-04-05 21:36:24 -07:00
2018-03-31 02:15:54 +02:00
2018-01-17 16:07:24 -05:00