diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2023-08-03 17:19:50 +1000 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2023-08-04 01:28:22 +0200 |
commit | 8ec757d0035cdffaca4d6d01093c1f32dc7c9743 (patch) | |
tree | b92bf6d68462c2bf6162d3035c862a1cc62338cd /netlink.c | |
parent | 9d4ab98d538f88cba871fed98665aa5a04f37da2 (diff) | |
download | passt-8ec757d0035cdffaca4d6d01093c1f32dc7c9743.tar passt-8ec757d0035cdffaca4d6d01093c1f32dc7c9743.tar.gz passt-8ec757d0035cdffaca4d6d01093c1f32dc7c9743.tar.bz2 passt-8ec757d0035cdffaca4d6d01093c1f32dc7c9743.tar.lz passt-8ec757d0035cdffaca4d6d01093c1f32dc7c9743.tar.xz passt-8ec757d0035cdffaca4d6d01093c1f32dc7c9743.tar.zst passt-8ec757d0035cdffaca4d6d01093c1f32dc7c9743.zip |
netlink: Clearer reasoning about the netlink response buffer size
Currently we set NLBUFSIZ large enough for 8192 netlink headers (128kiB in
total), and reference netlink(7). However netlink(7) says nothing about
reponse buffer sizes, and the documents which do reference 8192 *bytes* not
8192 headers.
Update NLBUFSIZ to 64kiB with a more detailed rationale.
Link: https://bugs.passt.top/show_bug.cgi?id=67
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'netlink.c')
-rw-r--r-- | netlink.c | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -35,7 +35,14 @@ #include "log.h" #include "netlink.h" -#define NLBUFSIZ (8192 * sizeof(struct nlmsghdr)) /* See netlink(7) */ +/* Netlink expects a buffer of at least 8kiB or the system page size, + * whichever is larger. 32kiB is recommended for more efficient. + * Since the largest page size on any remotely common Linux setup is + * 64kiB (ppc64), that should cover it. + * + * https://www.kernel.org/doc/html/next/userspace-api/netlink/intro.html#buffer-sizing + */ +#define NLBUFSIZ 65536 /* Socket in init, in target namespace, sequence (just needs to be monotonic) */ int nl_sock = -1; |