| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
| |
Seems this can happen, but we probably can just continue with the
unit test. Just ignore the error.
https://github.com/thom311/libnl/issues/308
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
"check-direct" needs to statically link with the libraries, because
it wants to test internal ABI, which is hidden in the share libraries.
When configuring with "--disable-static", static libs are not build
and the test tool cannot be build.
Just skip the test in that case.
https://github.com/thom311/libnl/issues/306
|
| |
|
|
|
|
| |
Fixes: d9dc6c20a360 ('ip6vti: Add IPv6 VTI support')
|
| |
|
| |
|
|\
| |
| |
| | |
https://github.com/thom311/libnl/pull/305
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The kernel bridge now support (permanent) forwarding of MAC multicast
using the MDB. Internally the kernel use AF_UNSPEC, but we remap this
here to AF_LLC for the benefit for nl_addrs.
To test, put `nl-monitor mdb` in the background. Then, with a bridge
and at least one port, run the following command:
# nl-monitor mdb &
# bridge mdb add dev br0 port eth0 grp 01:02:03:c0:ff:ee vid 1 permanent
dev 9
port 3 vid 1 proto 0x0000 address 01:02:03:c0:ff:ee
Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
|
| |
| |
| |
| |
| |
| |
| |
| | |
When using, e.g., nl-monitor to debug the bridge mdb the nl-monitor tool
did not dump anything. This change adds the missing stats dump callback
to rectify this issue, and also the details callback for completeness.
Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
|
| |
| |
| |
| |
| |
| |
| | |
When debugging subystemns in libnl it's rather handy to use nl-monitor.
This change adds support for setting the nl_debug level of libnl.
Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
|
|/
|
|
| |
Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
|
|
|
|
|
|
|
|
| |
The enum macsec_validation_type in the Linux Kernel has values 0-2.
With the existing check >1, value STRICT (2) cannot be set.
The check should be done against the end marker of the enum instead.
https://github.com/thom311/libnl/pull/304
|
|
|
|
|
|
|
|
|
|
|
|
| |
Adds support for the new VLAN_FLAG_BRIDGE_BINDING, for VLAN interfaces
created on top of a VLAN aware bridge. For details, see the kernel
patch:
https://lore.kernel.org/netdev/20190418173535.22925-1-mmanning@vyatta.att-mail.com/
Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
https://github.com/thom311/libnl/pull/303
|
|
|
|
| |
In addition to gcc.
|
| |
|
|\
| |
| |
| | |
https://github.com/thom311/libnl/pull/301
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
nl_object_clone() first does a shallow copy using memcpy().
That is useful, because it can correctly copy simple fields
(like numbers). For pointer values, we need to implement
oo_clone() to fixup the pointers and get the deep-copy correct.
Now, oo_clone() must always follow through, to un-alias the copied
pointer. In particular also in the error case. The oo_clone()
implementations sometimes fail (with ENOMEM) and just return.
In those cases, we must make sure that we don't leave the wrong pointers
there. The pointers must be cleared first.
Otherwise, any failure (which basically are ENOMEM) leave the object
in an inconsistent state, and we double-free/use-after-free the
pointers.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
nl_object_clone() first does a shallow copy, before calling
oo_clone() (link_clone()). That means, the pointer values
of the link object in link_clone() are invalid (as they alias
the pointers from the source object).
We need to get the ref-counting for dst->l_info_ops right.
It was not.
For example, previously when we called io_clone() handler, dst->l_info_ops
would still point to the one from src->l_info_ops, but without owning
the additional reference. Then we call io_clone(), for example
can_clone() for can devices. That one calls first rtnl_link_set_type(),
which first calls release_link_info() -- and unrefs the ops, without
having owned a reference.
Fix that, by getting the reference counting right, before calling
io_clone(). Arguably, we now do duplicate work. First taking a ref, then
calling rtnl_link_set_type() which releases and retakes the ref. But at
least, this way it's correct.
This probably did not cause issues before, because the entire
ref-counting is mostly useless anyway. It's only used for asserting
during rtnl_link_unregister_info() -- and then it checks that the ref
count is not positive (but we release too many references, not too few).
Anyway. *sigh*.
|
| |
| |
| |
| |
| |
| | |
If the object has no complex data (pointers!), then the base
implementation using memcpy() is enough. No need to implement
oo_clone().
|
| |
| |
| |
| |
| |
| | |
If an error happens (ENOMEM), we should leave the object in a consistent
state (e.g. setting log_msg_payload *and* log_msg_payload_len). Or even
better, don't modify it at all in the error case.
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
io_refcnt
|
|/
|
|
|
|
| |
We have a base-set of tools, under netlink-private. It should not be
necessary to include all the bits individually. Just drag this all in.
Only downside is that the compiler has more to parse.
|
|\
| |
| |
| | |
https://github.com/thom311/libnl/pull/302
|
| | |
|
| |
| |
| |
| |
| | |
This suite has fixture/teardown which creates a new netns for the test.
No tests implemented yet.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
We run the unit tests as non-root user, so usually we wouldn't have
CAP_NET_ADMIN permissions to change networking. Also, we wouldn't want
that our unit tests depend on the networking of the test host (or
changes it).
For each test, enter a new network namespace (and user/mnt namespace).
There we will have the necessary permissions, and we are in full control
of the things in the namespace.
Note yet used.
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- we have "check-all.c" and "check-direct.c", which contains the
main functions of the actual tests.
On the other hand, the other "check-{addr,attr,ematch-tree-clone}.c"
files only contained the test suites for "check-all.c". Rename
the latter to have a separate name prefix.
- rename "tests/util.h" to "tests/cksuite-all.h". It's really the
header that declares all the suites.
- add a "tests/nl-test-util.c" as a static helper library with
test code.
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
Closing an invalid filedescriptor is a serious bug, because we need to
know whether an integer at hand is valid or not (cannot close arbitrary
files). Add _nl_close() wrapper, which asserts against EBADF.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Libnl historically is closely related to kernel development and follows
the same coding style. Copy kernel's format specification, in the hope to
be useful. There is no plan to reformat existing code, but with this
file in place, a developer can choose to selectively reformat the code.
Taken from linux kernel at [1]. The file is unmodified, except for the
"ForEachMacros".
[1] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/.clang-format?id=56e337f2cf1326323844927a04e9dbce9a244835
|
|/
|
|
|
|
|
|
|
| |
Libnl3 is C11. Not sure this was defined somewhere, but at this point,
it seems a safe requirement to make.
Also, we make use of gcc-isms (typeof(), attribute(cleanup()),
expression statements). Both gcc and clang support that. These
C extensions are too good to miss.
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
The problem here is not really NOMEM (because rtnl_tc_data_peek() wouldn't
allocate new memory. The problem is, that the cls instance has no such data
field. Return -NLE_INVAL instead.
|
|\
| |
| |
| | |
https://github.com/thom311/libnl/pull/200
|
| |
| |
| |
| |
| |
| | |
nl_object_clone() already does a shallow clone using memcpy(). So all
simple fields are already initialized. We only need the oo_clone() implementation
to get the deep-copy right.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
We often require that a valid output pointer is passed to the
getters. But here, let's be forgiving. Being more forgiving
may be inconsistent, but on the safe side: the user is still
welcome to assume they must provide a valid output pointer.
Also, we always need to initialize the output mask, not only
with `f->cf_mask & FLOWER_ATTR_DST_MAC_MASK`. The reason is that
the caller cannot know whether the mask is present, so conditionally
initializing the output is error prone (it requires the caller
to NUL initialize first). Also, "f->cf_dst_mac_mask" really should
be zero initialized, if the mask indicates that it's unset. This
means, we can just always memcpy the mask.
|
| | |
|
| | |
|