mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 01:30:54 +07:00
496322bc91
Pull networking updates from David Miller:
"This is a re-do of the net-next pull request for the current merge
window. The only difference from the one I made the other day is that
this has Eliezer's interface renames and the timeout handling changes
made based upon your feedback, as well as a few bug fixes that have
trickeled in.
Highlights:
1) Low latency device polling, eliminating the cost of interrupt
handling and context switches. Allows direct polling of a network
device from socket operations, such as recvmsg() and poll().
Currently ixgbe, mlx4, and bnx2x support this feature.
Full high level description, performance numbers, and design in
commit 0a4db187a9
("Merge branch 'll_poll'")
From Eliezer Tamir.
2) With the routing cache removed, ip_check_mc_rcu() gets exercised
more than ever before in the case where we have lots of multicast
addresses. Use a hash table instead of a simple linked list, from
Eric Dumazet.
3) Add driver for Atheros CQA98xx 802.11ac wireless devices, from
Bartosz Markowski, Janusz Dziedzic, Kalle Valo, Marek Kwaczynski,
Marek Puzyniak, Michal Kazior, and Sujith Manoharan.
4) Support reporting the TUN device persist flag to userspace, from
Pavel Emelyanov.
5) Allow controlling network device VF link state using netlink, from
Rony Efraim.
6) Support GRE tunneling in openvswitch, from Pravin B Shelar.
7) Adjust SOCK_MIN_RCVBUF and SOCK_MIN_SNDBUF for modern times, from
Daniel Borkmann and Eric Dumazet.
8) Allow controlling of TCP quickack behavior on a per-route basis,
from Cong Wang.
9) Several bug fixes and improvements to vxlan from Stephen
Hemminger, Pravin B Shelar, and Mike Rapoport. In particular,
support receiving on multiple UDP ports.
10) Major cleanups, particular in the area of debugging and cookie
lifetime handline, to the SCTP protocol code. From Daniel
Borkmann.
11) Allow packets to cross network namespaces when traversing tunnel
devices. From Nicolas Dichtel.
12) Allow monitoring netlink traffic via AF_PACKET sockets, in a
manner akin to how we monitor real network traffic via ptype_all.
From Daniel Borkmann.
13) Several bug fixes and improvements for the new alx device driver,
from Johannes Berg.
14) Fix scalability issues in the netem packet scheduler's time queue,
by using an rbtree. From Eric Dumazet.
15) Several bug fixes in TCP loss recovery handling, from Yuchung
Cheng.
16) Add support for GSO segmentation of MPLS packets, from Simon
Horman.
17) Make network notifiers have a real data type for the opaque
pointer that's passed into them. Use this to properly handle
network device flag changes in arp_netdev_event(). From Jiri
Pirko and Timo Teräs.
18) Convert several drivers over to module_pci_driver(), from Peter
Huewe.
19) tcp_fixup_rcvbuf() can loop 500 times over loopback, just use a
O(1) calculation instead. From Eric Dumazet.
20) Support setting of explicit tunnel peer addresses in ipv6, just
like ipv4. From Nicolas Dichtel.
21) Protect x86 BPF JIT against spraying attacks, from Eric Dumazet.
22) Prevent a single high rate flow from overruning an individual cpu
during RX packet processing via selective flow shedding. From
Willem de Bruijn.
23) Don't use spinlocks in TCP md5 signing fast paths, from Eric
Dumazet.
24) Don't just drop GSO packets which are above the TBF scheduler's
burst limit, chop them up so they are in-bounds instead. Also
from Eric Dumazet.
25) VLAN offloads are missed when configured on top of a bridge, fix
from Vlad Yasevich.
26) Support IPV6 in ping sockets. From Lorenzo Colitti.
27) Receive flow steering targets should be updated at poll() time
too, from David Majnemer.
28) Fix several corner case regressions in PMTU/redirect handling due
to the routing cache removal, from Timo Teräs.
29) We have to be mindful of ipv4 mapped ipv6 sockets in
upd_v6_push_pending_frames(). From Hannes Frederic Sowa.
30) Fix L2TP sequence number handling bugs, from James Chapman."
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next: (1214 commits)
drivers/net: caif: fix wrong rtnl_is_locked() usage
drivers/net: enic: release rtnl_lock on error-path
vhost-net: fix use-after-free in vhost_net_flush
net: mv643xx_eth: do not use port number as platform device id
net: sctp: confirm route during forward progress
virtio_net: fix race in RX VQ processing
virtio: support unlocked queue poll
net/cadence/macb: fix bug/typo in extracting gem_irq_read_clear bit
Documentation: Fix references to defunct linux-net@vger.kernel.org
net/fs: change busy poll time accounting
net: rename low latency sockets functions to busy poll
bridge: fix some kernel warning in multicast timer
sfc: Fix memory leak when discarding scattered packets
sit: fix tunnel update via netlink
dt:net:stmmac: Add dt specific phy reset callback support.
dt:net:stmmac: Add support to dwmac version 3.610 and 3.710
dt:net:stmmac: Allocate platform data only if its NULL.
net:stmmac: fix memleak in the open method
ipv6: rt6_check_neigh should successfully verify neigh if no NUD information are available
net: ipv6: fix wrong ping_v6_sendmsg return value
...
340 lines
11 KiB
Plaintext
340 lines
11 KiB
Plaintext
This file documents how to use memory mapped I/O with netlink.
|
|
|
|
Author: Patrick McHardy <kaber@trash.net>
|
|
|
|
Overview
|
|
--------
|
|
|
|
Memory mapped netlink I/O can be used to increase throughput and decrease
|
|
overhead of unicast receive and transmit operations. Some netlink subsystems
|
|
require high throughput, these are mainly the netfilter subsystems
|
|
nfnetlink_queue and nfnetlink_log, but it can also help speed up large
|
|
dump operations of f.i. the routing database.
|
|
|
|
Memory mapped netlink I/O used two circular ring buffers for RX and TX which
|
|
are mapped into the processes address space.
|
|
|
|
The RX ring is used by the kernel to directly construct netlink messages into
|
|
user-space memory without copying them as done with regular socket I/O,
|
|
additionally as long as the ring contains messages no recvmsg() or poll()
|
|
syscalls have to be issued by user-space to get more message.
|
|
|
|
The TX ring is used to process messages directly from user-space memory, the
|
|
kernel processes all messages contained in the ring using a single sendmsg()
|
|
call.
|
|
|
|
Usage overview
|
|
--------------
|
|
|
|
In order to use memory mapped netlink I/O, user-space needs three main changes:
|
|
|
|
- ring setup
|
|
- conversion of the RX path to get messages from the ring instead of recvmsg()
|
|
- conversion of the TX path to construct messages into the ring
|
|
|
|
Ring setup is done using setsockopt() to provide the ring parameters to the
|
|
kernel, then a call to mmap() to map the ring into the processes address space:
|
|
|
|
- setsockopt(fd, SOL_NETLINK, NETLINK_RX_RING, ¶ms, sizeof(params));
|
|
- setsockopt(fd, SOL_NETLINK, NETLINK_TX_RING, ¶ms, sizeof(params));
|
|
- ring = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
|
|
|
|
Usage of either ring is optional, but even if only the RX ring is used the
|
|
mapping still needs to be writable in order to update the frame status after
|
|
processing.
|
|
|
|
Conversion of the reception path involves calling poll() on the file
|
|
descriptor, once the socket is readable the frames from the ring are
|
|
processsed in order until no more messages are available, as indicated by
|
|
a status word in the frame header.
|
|
|
|
On kernel side, in order to make use of memory mapped I/O on receive, the
|
|
originating netlink subsystem needs to support memory mapped I/O, otherwise
|
|
it will use an allocated socket buffer as usual and the contents will be
|
|
copied to the ring on transmission, nullifying most of the performance gains.
|
|
Dumps of kernel databases automatically support memory mapped I/O.
|
|
|
|
Conversion of the transmit path involves changing message construction to
|
|
use memory from the TX ring instead of (usually) a buffer declared on the
|
|
stack and setting up the frame header approriately. Optionally poll() can
|
|
be used to wait for free frames in the TX ring.
|
|
|
|
Structured and definitions for using memory mapped I/O are contained in
|
|
<linux/netlink.h>.
|
|
|
|
RX and TX rings
|
|
----------------
|
|
|
|
Each ring contains a number of continuous memory blocks, containing frames of
|
|
fixed size dependent on the parameters used for ring setup.
|
|
|
|
Ring: [ block 0 ]
|
|
[ frame 0 ]
|
|
[ frame 1 ]
|
|
[ block 1 ]
|
|
[ frame 2 ]
|
|
[ frame 3 ]
|
|
...
|
|
[ block n ]
|
|
[ frame 2 * n ]
|
|
[ frame 2 * n + 1 ]
|
|
|
|
The blocks are only visible to the kernel, from the point of view of user-space
|
|
the ring just contains the frames in a continuous memory zone.
|
|
|
|
The ring parameters used for setting up the ring are defined as follows:
|
|
|
|
struct nl_mmap_req {
|
|
unsigned int nm_block_size;
|
|
unsigned int nm_block_nr;
|
|
unsigned int nm_frame_size;
|
|
unsigned int nm_frame_nr;
|
|
};
|
|
|
|
Frames are grouped into blocks, where each block is a continuous region of memory
|
|
and holds nm_block_size / nm_frame_size frames. The total number of frames in
|
|
the ring is nm_frame_nr. The following invariants hold:
|
|
|
|
- frames_per_block = nm_block_size / nm_frame_size
|
|
|
|
- nm_frame_nr = frames_per_block * nm_block_nr
|
|
|
|
Some parameters are constrained, specifically:
|
|
|
|
- nm_block_size must be a multiple of the architectures memory page size.
|
|
The getpagesize() function can be used to get the page size.
|
|
|
|
- nm_frame_size must be equal or larger to NL_MMAP_HDRLEN, IOW a frame must be
|
|
able to hold at least the frame header
|
|
|
|
- nm_frame_size must be smaller or equal to nm_block_size
|
|
|
|
- nm_frame_size must be a multiple of NL_MMAP_MSG_ALIGNMENT
|
|
|
|
- nm_frame_nr must equal the actual number of frames as specified above.
|
|
|
|
When the kernel can't allocate physically continuous memory for a ring block,
|
|
it will fall back to use physically discontinuous memory. This might affect
|
|
performance negatively, in order to avoid this the nm_frame_size parameter
|
|
should be chosen to be as small as possible for the required frame size and
|
|
the number of blocks should be increased instead.
|
|
|
|
Ring frames
|
|
------------
|
|
|
|
Each frames contain a frame header, consisting of a synchronization word and some
|
|
meta-data, and the message itself.
|
|
|
|
Frame: [ header message ]
|
|
|
|
The frame header is defined as follows:
|
|
|
|
struct nl_mmap_hdr {
|
|
unsigned int nm_status;
|
|
unsigned int nm_len;
|
|
__u32 nm_group;
|
|
/* credentials */
|
|
__u32 nm_pid;
|
|
__u32 nm_uid;
|
|
__u32 nm_gid;
|
|
};
|
|
|
|
- nm_status is used for synchronizing processing between the kernel and user-
|
|
space and specifies ownership of the frame as well as the operation to perform
|
|
|
|
- nm_len contains the length of the message contained in the data area
|
|
|
|
- nm_group specified the destination multicast group of message
|
|
|
|
- nm_pid, nm_uid and nm_gid contain the netlink pid, UID and GID of the sending
|
|
process. These values correspond to the data available using SOCK_PASSCRED in
|
|
the SCM_CREDENTIALS cmsg.
|
|
|
|
The possible values in the status word are:
|
|
|
|
- NL_MMAP_STATUS_UNUSED:
|
|
RX ring: frame belongs to the kernel and contains no message
|
|
for user-space. Approriate action is to invoke poll()
|
|
to wait for new messages.
|
|
|
|
TX ring: frame belongs to user-space and can be used for
|
|
message construction.
|
|
|
|
- NL_MMAP_STATUS_RESERVED:
|
|
RX ring only: frame is currently used by the kernel for message
|
|
construction and contains no valid message yet.
|
|
Appropriate action is to invoke poll() to wait for
|
|
new messages.
|
|
|
|
- NL_MMAP_STATUS_VALID:
|
|
RX ring: frame contains a valid message. Approriate action is
|
|
to process the message and release the frame back to
|
|
the kernel by setting the status to
|
|
NL_MMAP_STATUS_UNUSED or queue the frame by setting the
|
|
status to NL_MMAP_STATUS_SKIP.
|
|
|
|
TX ring: the frame contains a valid message from user-space to
|
|
be processed by the kernel. After completing processing
|
|
the kernel will release the frame back to user-space by
|
|
setting the status to NL_MMAP_STATUS_UNUSED.
|
|
|
|
- NL_MMAP_STATUS_COPY:
|
|
RX ring only: a message is ready to be processed but could not be
|
|
stored in the ring, either because it exceeded the
|
|
frame size or because the originating subsystem does
|
|
not support memory mapped I/O. Appropriate action is
|
|
to invoke recvmsg() to receive the message and release
|
|
the frame back to the kernel by setting the status to
|
|
NL_MMAP_STATUS_UNUSED.
|
|
|
|
- NL_MMAP_STATUS_SKIP:
|
|
RX ring only: user-space queued the message for later processing, but
|
|
processed some messages following it in the ring. The
|
|
kernel should skip this frame when looking for unused
|
|
frames.
|
|
|
|
The data area of a frame begins at a offset of NL_MMAP_HDRLEN relative to the
|
|
frame header.
|
|
|
|
TX limitations
|
|
--------------
|
|
|
|
Kernel processing usually involves validation of the message received by
|
|
user-space, then processing its contents. The kernel must assure that
|
|
userspace is not able to modify the message contents after they have been
|
|
validated. In order to do so, the message is copied from the ring frame
|
|
to an allocated buffer if either of these conditions is false:
|
|
|
|
- only a single mapping of the ring exists
|
|
- the file descriptor is not shared between processes
|
|
|
|
This means that for threaded programs, the kernel will fall back to copying.
|
|
|
|
Example
|
|
-------
|
|
|
|
Ring setup:
|
|
|
|
unsigned int block_size = 16 * getpagesize();
|
|
struct nl_mmap_req req = {
|
|
.nm_block_size = block_size,
|
|
.nm_block_nr = 64,
|
|
.nm_frame_size = 16384,
|
|
.nm_frame_nr = 64 * block_size / 16384,
|
|
};
|
|
unsigned int ring_size;
|
|
void *rx_ring, *tx_ring;
|
|
|
|
/* Configure ring parameters */
|
|
if (setsockopt(fd, NETLINK_RX_RING, &req, sizeof(req)) < 0)
|
|
exit(1);
|
|
if (setsockopt(fd, NETLINK_TX_RING, &req, sizeof(req)) < 0)
|
|
exit(1)
|
|
|
|
/* Calculate size of each invididual ring */
|
|
ring_size = req.nm_block_nr * req.nm_block_size;
|
|
|
|
/* Map RX/TX rings. The TX ring is located after the RX ring */
|
|
rx_ring = mmap(NULL, 2 * ring_size, PROT_READ | PROT_WRITE,
|
|
MAP_SHARED, fd, 0);
|
|
if ((long)rx_ring == -1L)
|
|
exit(1);
|
|
tx_ring = rx_ring + ring_size:
|
|
|
|
Message reception:
|
|
|
|
This example assumes some ring parameters of the ring setup are available.
|
|
|
|
unsigned int frame_offset = 0;
|
|
struct nl_mmap_hdr *hdr;
|
|
struct nlmsghdr *nlh;
|
|
unsigned char buf[16384];
|
|
ssize_t len;
|
|
|
|
while (1) {
|
|
struct pollfd pfds[1];
|
|
|
|
pfds[0].fd = fd;
|
|
pfds[0].events = POLLIN | POLLERR;
|
|
pfds[0].revents = 0;
|
|
|
|
if (poll(pfds, 1, -1) < 0 && errno != -EINTR)
|
|
exit(1);
|
|
|
|
/* Check for errors. Error handling omitted */
|
|
if (pfds[0].revents & POLLERR)
|
|
<handle error>
|
|
|
|
/* If no new messages, poll again */
|
|
if (!(pfds[0].revents & POLLIN))
|
|
continue;
|
|
|
|
/* Process all frames */
|
|
while (1) {
|
|
/* Get next frame header */
|
|
hdr = rx_ring + frame_offset;
|
|
|
|
if (hdr->nm_status == NL_MMAP_STATUS_VALID) {
|
|
/* Regular memory mapped frame */
|
|
nlh = (void *)hdr + NL_MMAP_HDRLEN;
|
|
len = hdr->nm_len;
|
|
|
|
/* Release empty message immediately. May happen
|
|
* on error during message construction.
|
|
*/
|
|
if (len == 0)
|
|
goto release;
|
|
} else if (hdr->nm_status == NL_MMAP_STATUS_COPY) {
|
|
/* Frame queued to socket receive queue */
|
|
len = recv(fd, buf, sizeof(buf), MSG_DONTWAIT);
|
|
if (len <= 0)
|
|
break;
|
|
nlh = buf;
|
|
} else
|
|
/* No more messages to process, continue polling */
|
|
break;
|
|
|
|
process_msg(nlh);
|
|
release:
|
|
/* Release frame back to the kernel */
|
|
hdr->nm_status = NL_MMAP_STATUS_UNUSED;
|
|
|
|
/* Advance frame offset to next frame */
|
|
frame_offset = (frame_offset + frame_size) % ring_size;
|
|
}
|
|
}
|
|
|
|
Message transmission:
|
|
|
|
This example assumes some ring parameters of the ring setup are available.
|
|
A single message is constructed and transmitted, to send multiple messages
|
|
at once they would be constructed in consecutive frames before a final call
|
|
to sendto().
|
|
|
|
unsigned int frame_offset = 0;
|
|
struct nl_mmap_hdr *hdr;
|
|
struct nlmsghdr *nlh;
|
|
struct sockaddr_nl addr = {
|
|
.nl_family = AF_NETLINK,
|
|
};
|
|
|
|
hdr = tx_ring + frame_offset;
|
|
if (hdr->nm_status != NL_MMAP_STATUS_UNUSED)
|
|
/* No frame available. Use poll() to avoid. */
|
|
exit(1);
|
|
|
|
nlh = (void *)hdr + NL_MMAP_HDRLEN;
|
|
|
|
/* Build message */
|
|
build_message(nlh);
|
|
|
|
/* Fill frame header: length and status need to be set */
|
|
hdr->nm_len = nlh->nlmsg_len;
|
|
hdr->nm_status = NL_MMAP_STATUS_VALID;
|
|
|
|
if (sendto(fd, NULL, 0, 0, &addr, sizeof(addr)) < 0)
|
|
exit(1);
|
|
|
|
/* Advance frame offset to next frame */
|
|
frame_offset = (frame_offset + frame_size) % ring_size;
|