]> git.baikalelectronics.ru Git - kernel.git/commit
inet_diag: fix reporting cgroup classid and fallback to priority
authorKonstantin Khlebnikov <khlebnikov@yandex-team.ru>
Sat, 9 Feb 2019 10:35:52 +0000 (13:35 +0300)
committerDavid S. Miller <davem@davemloft.net>
Tue, 12 Feb 2019 18:35:57 +0000 (13:35 -0500)
commit22bc77361fc763246aba03b09c79a4ef915f481c
tree2803b2f52d171321ab90a37b174582b13abf9a3f
parentda6f50619cd30c009bc4808d0b263ed4a0579df7
inet_diag: fix reporting cgroup classid and fallback to priority

Field idiag_ext in struct inet_diag_req_v2 used as bitmap of requested
extensions has only 8 bits. Thus extensions starting from DCTCPINFO
cannot be requested directly. Some of them included into response
unconditionally or hook into some of lower 8 bits.

Extension INET_DIAG_CLASS_ID has not way to request from the beginning.

This patch bundle it with INET_DIAG_TCLASS (ipv6 tos), fixes space
reservation, and documents behavior for other extensions.

Also this patch adds fallback to reporting socket priority. This filed
is more widely used for traffic classification because ipv4 sockets
automatically maps TOS to priority and default qdisc pfifo_fast knows
about that. But priority could be changed via setsockopt SO_PRIORITY so
INET_DIAG_TOS isn't enough for predicting class.

Also cgroup2 obsoletes net_cls classid (it always zero), but we cannot
reuse this field for reporting cgroup2 id because it is 64-bit (ino+gen).

So, after this patch INET_DIAG_CLASS_ID will report socket priority
for most common setup when net_cls isn't set and/or cgroup2 in use.

Fixes: aa805f384608 ("net: inet: diag: expose sockets cgroup classid")
Signed-off-by: Konstantin Khlebnikov <khlebnikov@yandex-team.ru>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/uapi/linux/inet_diag.h
net/ipv4/inet_diag.c
net/sctp/diag.c