ip: support SO_MARK cmsg
authorWillem de Bruijn <willemb@google.com>
Wed, 11 Sep 2019 19:50:51 +0000 (15:50 -0400)
committerDavid S. Miller <davem@davemloft.net>
Fri, 13 Sep 2019 19:44:19 +0000 (21:44 +0200)
commitc6af0c227a22bb6bb8ff72f043e0fb6d99fd6515
tree12f4f3b38877b029a5342e2a8f63d8131dad9b27
parent823eb2a3c4c7f1b3e749f0dddb70bf8b09a76a10
ip: support SO_MARK cmsg

Enable setting skb->mark for UDP and RAW sockets using cmsg.

This is analogous to existing support for TOS, TTL, txtime, etc.

Packet sockets already support this as of commit c7d39e32632e
("packet: support per-packet fwmark for af_packet sendmsg").

Similar to other fields, implement by
1. initialize the sockcm_cookie.mark from socket option sk_mark
2. optionally overwrite this in ip_cmsg_send/ip6_datagram_send_ctl
3. initialize inet_cork.mark from sockcm_cookie.mark
4. initialize each (usually just one) skb->mark from inet_cork.mark

Step 1 is handled in one location for most protocols by ipcm_init_sk
as of commit 351782067b6b ("ipv4: ipcm_cookie initializers").

Signed-off-by: Willem de Bruijn <willemb@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/inet_sock.h
include/net/ip.h
net/ipv4/ip_output.c
net/ipv4/ping.c
net/ipv4/raw.c
net/ipv4/udp.c
net/ipv6/ip6_output.c
net/ipv6/raw.c
net/ipv6/udp.c