blob: 54f10478e8e30ccda77da9d345c01b9ace781e07 [file] [log] [blame]
Patrick McHardy56832642013-04-17 06:47:07 +00001This file documents how to use memory mapped I/O with netlink.
2
3Author: Patrick McHardy <kaber@trash.net>
4
5Overview
6--------
7
8Memory mapped netlink I/O can be used to increase throughput and decrease
9overhead of unicast receive and transmit operations. Some netlink subsystems
10require high throughput, these are mainly the netfilter subsystems
11nfnetlink_queue and nfnetlink_log, but it can also help speed up large
12dump operations of f.i. the routing database.
13
14Memory mapped netlink I/O used two circular ring buffers for RX and TX which
15are mapped into the processes address space.
16
17The RX ring is used by the kernel to directly construct netlink messages into
18user-space memory without copying them as done with regular socket I/O,
19additionally as long as the ring contains messages no recvmsg() or poll()
20syscalls have to be issued by user-space to get more message.
21
22The TX ring is used to process messages directly from user-space memory, the
23kernel processes all messages contained in the ring using a single sendmsg()
24call.
25
26Usage overview
27--------------
28
29In order to use memory mapped netlink I/O, user-space needs three main changes:
30
31- ring setup
32- conversion of the RX path to get messages from the ring instead of recvmsg()
33- conversion of the TX path to construct messages into the ring
34
35Ring setup is done using setsockopt() to provide the ring parameters to the
36kernel, then a call to mmap() to map the ring into the processes address space:
37
38- setsockopt(fd, SOL_NETLINK, NETLINK_RX_RING, &params, sizeof(params));
39- setsockopt(fd, SOL_NETLINK, NETLINK_TX_RING, &params, sizeof(params));
40- ring = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
41
42Usage of either ring is optional, but even if only the RX ring is used the
43mapping still needs to be writable in order to update the frame status after
44processing.
45
46Conversion of the reception path involves calling poll() on the file
47descriptor, once the socket is readable the frames from the ring are
Masanari Iidac17cb8b2013-10-30 16:46:15 +090048processed in order until no more messages are available, as indicated by
Patrick McHardy56832642013-04-17 06:47:07 +000049a status word in the frame header.
50
51On kernel side, in order to make use of memory mapped I/O on receive, the
52originating netlink subsystem needs to support memory mapped I/O, otherwise
53it will use an allocated socket buffer as usual and the contents will be
54 copied to the ring on transmission, nullifying most of the performance gains.
55Dumps of kernel databases automatically support memory mapped I/O.
56
Anatol Pomozovf884ab12013-05-08 16:56:16 -070057Conversion of the transmit path involves changing message construction to
Patrick McHardy56832642013-04-17 06:47:07 +000058use memory from the TX ring instead of (usually) a buffer declared on the
Masanari Iidac17cb8b2013-10-30 16:46:15 +090059stack and setting up the frame header appropriately. Optionally poll() can
Patrick McHardy56832642013-04-17 06:47:07 +000060be used to wait for free frames in the TX ring.
61
62Structured and definitions for using memory mapped I/O are contained in
63<linux/netlink.h>.
64
65RX and TX rings
66----------------
67
Anatol Pomozovf884ab12013-05-08 16:56:16 -070068Each ring contains a number of continuous memory blocks, containing frames of
69fixed size dependent on the parameters used for ring setup.
Patrick McHardy56832642013-04-17 06:47:07 +000070
71Ring: [ block 0 ]
72 [ frame 0 ]
73 [ frame 1 ]
74 [ block 1 ]
75 [ frame 2 ]
76 [ frame 3 ]
77 ...
78 [ block n ]
79 [ frame 2 * n ]
80 [ frame 2 * n + 1 ]
81
82The blocks are only visible to the kernel, from the point of view of user-space
Anatol Pomozovf884ab12013-05-08 16:56:16 -070083the ring just contains the frames in a continuous memory zone.
Patrick McHardy56832642013-04-17 06:47:07 +000084
85The ring parameters used for setting up the ring are defined as follows:
86
87struct nl_mmap_req {
88 unsigned int nm_block_size;
89 unsigned int nm_block_nr;
90 unsigned int nm_frame_size;
91 unsigned int nm_frame_nr;
92};
93
Anatol Pomozovf884ab12013-05-08 16:56:16 -070094Frames are grouped into blocks, where each block is a continuous region of memory
Patrick McHardy56832642013-04-17 06:47:07 +000095and holds nm_block_size / nm_frame_size frames. The total number of frames in
96the ring is nm_frame_nr. The following invariants hold:
97
98- frames_per_block = nm_block_size / nm_frame_size
99
100- nm_frame_nr = frames_per_block * nm_block_nr
101
102Some parameters are constrained, specifically:
103
104- nm_block_size must be a multiple of the architectures memory page size.
105 The getpagesize() function can be used to get the page size.
106
107- nm_frame_size must be equal or larger to NL_MMAP_HDRLEN, IOW a frame must be
108 able to hold at least the frame header
109
110- nm_frame_size must be smaller or equal to nm_block_size
111
112- nm_frame_size must be a multiple of NL_MMAP_MSG_ALIGNMENT
113
114- nm_frame_nr must equal the actual number of frames as specified above.
115
Anatol Pomozovf884ab12013-05-08 16:56:16 -0700116When the kernel can't allocate physically continuous memory for a ring block,
Masanari Iida3dd17ed2013-05-24 07:05:59 +0000117it will fall back to use physically discontinuous memory. This might affect
Patrick McHardy56832642013-04-17 06:47:07 +0000118performance negatively, in order to avoid this the nm_frame_size parameter
119should be chosen to be as small as possible for the required frame size and
120the number of blocks should be increased instead.
121
122Ring frames
123------------
124
125Each frames contain a frame header, consisting of a synchronization word and some
126meta-data, and the message itself.
127
128Frame: [ header message ]
129
130The frame header is defined as follows:
131
132struct nl_mmap_hdr {
133 unsigned int nm_status;
134 unsigned int nm_len;
135 __u32 nm_group;
136 /* credentials */
137 __u32 nm_pid;
138 __u32 nm_uid;
139 __u32 nm_gid;
140};
141
142- nm_status is used for synchronizing processing between the kernel and user-
143 space and specifies ownership of the frame as well as the operation to perform
144
145- nm_len contains the length of the message contained in the data area
146
147- nm_group specified the destination multicast group of message
148
149- nm_pid, nm_uid and nm_gid contain the netlink pid, UID and GID of the sending
150 process. These values correspond to the data available using SOCK_PASSCRED in
151 the SCM_CREDENTIALS cmsg.
152
153The possible values in the status word are:
154
155- NL_MMAP_STATUS_UNUSED:
156 RX ring: frame belongs to the kernel and contains no message
157 for user-space. Approriate action is to invoke poll()
158 to wait for new messages.
159
160 TX ring: frame belongs to user-space and can be used for
161 message construction.
162
163- NL_MMAP_STATUS_RESERVED:
164 RX ring only: frame is currently used by the kernel for message
165 construction and contains no valid message yet.
166 Appropriate action is to invoke poll() to wait for
167 new messages.
168
169- NL_MMAP_STATUS_VALID:
170 RX ring: frame contains a valid message. Approriate action is
171 to process the message and release the frame back to
172 the kernel by setting the status to
173 NL_MMAP_STATUS_UNUSED or queue the frame by setting the
174 status to NL_MMAP_STATUS_SKIP.
175
176 TX ring: the frame contains a valid message from user-space to
177 be processed by the kernel. After completing processing
178 the kernel will release the frame back to user-space by
179 setting the status to NL_MMAP_STATUS_UNUSED.
180
181- NL_MMAP_STATUS_COPY:
182 RX ring only: a message is ready to be processed but could not be
183 stored in the ring, either because it exceeded the
184 frame size or because the originating subsystem does
185 not support memory mapped I/O. Appropriate action is
186 to invoke recvmsg() to receive the message and release
187 the frame back to the kernel by setting the status to
188 NL_MMAP_STATUS_UNUSED.
189
190- NL_MMAP_STATUS_SKIP:
191 RX ring only: user-space queued the message for later processing, but
192 processed some messages following it in the ring. The
193 kernel should skip this frame when looking for unused
194 frames.
195
196The data area of a frame begins at a offset of NL_MMAP_HDRLEN relative to the
197frame header.
198
199TX limitations
200--------------
201
Richard Weinbergere6b02be2015-01-30 20:50:44 +0100202As of Jan 2015 the message is always copied from the ring frame to an
203allocated buffer due to unresolved security concerns.
204See commit 4682a0358639b29cf ("netlink: Always copy on mmap TX.").
Patrick McHardy56832642013-04-17 06:47:07 +0000205
206Example
207-------
208
209Ring setup:
210
211 unsigned int block_size = 16 * getpagesize();
212 struct nl_mmap_req req = {
213 .nm_block_size = block_size,
214 .nm_block_nr = 64,
215 .nm_frame_size = 16384,
216 .nm_frame_nr = 64 * block_size / 16384,
217 };
218 unsigned int ring_size;
219 void *rx_ring, *tx_ring;
220
221 /* Configure ring parameters */
stephen hemminger88050042014-03-19 21:54:20 -0700222 if (setsockopt(fd, SOL_NETLINK, NETLINK_RX_RING, &req, sizeof(req)) < 0)
Patrick McHardy56832642013-04-17 06:47:07 +0000223 exit(1);
stephen hemminger88050042014-03-19 21:54:20 -0700224 if (setsockopt(fd, SOL_NETLINK, NETLINK_TX_RING, &req, sizeof(req)) < 0)
Patrick McHardy56832642013-04-17 06:47:07 +0000225 exit(1)
226
Masanari Iidac17cb8b2013-10-30 16:46:15 +0900227 /* Calculate size of each individual ring */
Patrick McHardy56832642013-04-17 06:47:07 +0000228 ring_size = req.nm_block_nr * req.nm_block_size;
229
230 /* Map RX/TX rings. The TX ring is located after the RX ring */
231 rx_ring = mmap(NULL, 2 * ring_size, PROT_READ | PROT_WRITE,
232 MAP_SHARED, fd, 0);
233 if ((long)rx_ring == -1L)
234 exit(1);
235 tx_ring = rx_ring + ring_size:
236
237Message reception:
238
239This example assumes some ring parameters of the ring setup are available.
240
241 unsigned int frame_offset = 0;
242 struct nl_mmap_hdr *hdr;
243 struct nlmsghdr *nlh;
244 unsigned char buf[16384];
245 ssize_t len;
246
247 while (1) {
248 struct pollfd pfds[1];
249
250 pfds[0].fd = fd;
251 pfds[0].events = POLLIN | POLLERR;
252 pfds[0].revents = 0;
253
254 if (poll(pfds, 1, -1) < 0 && errno != -EINTR)
255 exit(1);
256
257 /* Check for errors. Error handling omitted */
258 if (pfds[0].revents & POLLERR)
259 <handle error>
260
261 /* If no new messages, poll again */
262 if (!(pfds[0].revents & POLLIN))
263 continue;
264
265 /* Process all frames */
266 while (1) {
267 /* Get next frame header */
268 hdr = rx_ring + frame_offset;
269
Cong Wang76237572013-06-24 19:46:54 +0800270 if (hdr->nm_status == NL_MMAP_STATUS_VALID) {
Patrick McHardy56832642013-04-17 06:47:07 +0000271 /* Regular memory mapped frame */
Cong Wang76237572013-06-24 19:46:54 +0800272 nlh = (void *)hdr + NL_MMAP_HDRLEN;
Patrick McHardy56832642013-04-17 06:47:07 +0000273 len = hdr->nm_len;
274
275 /* Release empty message immediately. May happen
276 * on error during message construction.
277 */
278 if (len == 0)
279 goto release;
280 } else if (hdr->nm_status == NL_MMAP_STATUS_COPY) {
281 /* Frame queued to socket receive queue */
282 len = recv(fd, buf, sizeof(buf), MSG_DONTWAIT);
283 if (len <= 0)
284 break;
285 nlh = buf;
286 } else
287 /* No more messages to process, continue polling */
288 break;
289
290 process_msg(nlh);
291release:
292 /* Release frame back to the kernel */
293 hdr->nm_status = NL_MMAP_STATUS_UNUSED;
294
295 /* Advance frame offset to next frame */
296 frame_offset = (frame_offset + frame_size) % ring_size;
297 }
298 }
299
300Message transmission:
301
302This example assumes some ring parameters of the ring setup are available.
303A single message is constructed and transmitted, to send multiple messages
304at once they would be constructed in consecutive frames before a final call
305to sendto().
306
307 unsigned int frame_offset = 0;
308 struct nl_mmap_hdr *hdr;
309 struct nlmsghdr *nlh;
310 struct sockaddr_nl addr = {
311 .nl_family = AF_NETLINK,
312 };
313
314 hdr = tx_ring + frame_offset;
315 if (hdr->nm_status != NL_MMAP_STATUS_UNUSED)
316 /* No frame available. Use poll() to avoid. */
317 exit(1);
318
319 nlh = (void *)hdr + NL_MMAP_HDRLEN;
320
321 /* Build message */
322 build_message(nlh);
323
324 /* Fill frame header: length and status need to be set */
325 hdr->nm_len = nlh->nlmsg_len;
326 hdr->nm_status = NL_MMAP_STATUS_VALID;
327
328 if (sendto(fd, NULL, 0, 0, &addr, sizeof(addr)) < 0)
329 exit(1);
330
331 /* Advance frame offset to next frame */
332 frame_offset = (frame_offset + frame_size) % ring_size;