| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
| |
Previously, a NULL argument would most likely also do thing, but it also
hits undefined behavior.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Currently, rtnl_link_macsec_set_offload rejects any value
greater than 1 limiting the MACSEC_ATTR_OFFLOAD attribute
to the values 0 and 1 where other values are also legal.
Drop such a check since it is redundant, eventually the user
will send the netlink message to kernel, and whether the
message is valid depends on kernel.
Fixes: b6cc13d76b29 ('Supporting Hardware offload capability for MACsec')
Signed-off-by: Emeel Hakim <ehakim@nvidia.com>
http://lists.infradead.org/pipermail/libnl/2023-February/002417.html
http://lists.infradead.org/pipermail/libnl/2023-February/002420.html
http://lists.infradead.org/pipermail/libnl/2023-February/002424.html
https://github.com/thom311/libnl/pull/336
https://github.com/thom311/libnl/pull/341
|
|\ |
|
| |
| |
| |
| | |
Instead rely on the "flake8" file.
|
| |
| |
| |
| |
| | |
Add a `.flake8` file, so that running plain flake8 in the source tree
does the right thing.
|
| |
| |
| |
| | |
./python/netlink/route/links/bridge.py:29:31: E712 comparison to False should be 'if cond is False:' or 'if not cond:'
|
| |
| |
| |
| | |
./python/netlink/core.py:194:17: E711 comparison to None should be 'if cond is None:'
|
| |
| |
| |
| | |
./python/netlink/util.py:19:1: E302 expected 2 blank lines, found 1
|
| |
| |
| |
| |
| |
| |
| | |
./python/netlink/core.py:424:9: E741 ambiguous variable name 'l'
./python/netlink/route/link.py:476:13: E741 ambiguous variable name 'l'
./python/netlink/route/tc.py:554:5: E741 ambiguous variable name 'l'
./python/netlink/route/tc.py:574:5: E741 ambiguous variable name 'l'
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
./python/examples/iface.py:66:5: F841 local variable 'e' is assigned to but never used
./python/examples/iface.py:66:5: F841 local variable 'e' is assigned to but never used
./python/examples/iface.py:109:1: F841 local variable 'e' is assigned to but never used
./python/examples/wiphy.py:116:5: F841 local variable 'e' is assigned to but never used
./python/examples/wiphy.py:116:5: F841 local variable 'e' is assigned to but never used
./python/examples/wiphy.py:158:1: F841 local variable 'e' is assigned to but never used
|
| |
| |
| |
| |
| |
| |
| | |
./doc/resolve-asciidoc-refs.py:14:22: W605 invalid escape sequence '\['
./doc/resolve-asciidoc-refs.py:14:24: W605 invalid escape sequence '\['
./doc/resolve-asciidoc-refs.py:14:30: W605 invalid escape sequence '\]'
./doc/resolve-asciidoc-refs.py:14:32: W605 invalid escape sequence '\]'
|
|/
|
|
|
|
|
|
|
| |
./doc/doxygen-link.py:4:1: F401 'fileinput' imported but unused
./doc/resolve-asciidoc-refs.py:5:1: F401 'fileinput' imported but unused
./python/doc/conf.py:14:1: F401 'sys' imported but unused
./python/doc/conf.py:14:1: F401 'os' imported but unused
./python/netlink/util.py:13:1: F401 '.core as netlink' imported but unused
./python/netlink/util.py:16:1: F401 'types' imported but unused
|
|\ |
|
| |
| |
| |
| |
| |
| |
| | |
This helps somewhat with the problem, that we need the correct
version of clang-format for the formatting script.
The script runs a Fedora container. It needs a working podman setup.
|
| |
| |
| |
| |
| |
| |
| |
| | |
Also relevant, the actual formatting depends on the version of
clang-format. Which is somewhat cumbersome.
The authoritative version is the one from our github action, which
currently is the one from Fedora 38.
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
| |
Historically is libnl3 not formatted with clang-format, as the project
is old.
However, we have a mostly usable ".clang-format" file. Also, various new
files follow the automated formatting.
Add a script for helping with the reformatting.
Also, the script has an exclude list for files that should not be
formatted. That means, new files will be required to follow the
formatting. That is considered a benefit.
|
|\ |
|
| |
| |
| |
| |
| |
| |
| |
| | |
Note that the formatting depends on the used black version.
The authoritative black version is always the one used by
the github CI check.
Currently that is black==22.12.0.
|
| |
| |
| |
| |
| |
| | |
If you want to use git-blame and are bothered by the large diff due to
the automated reformatting (python-black), consider ignoring the reformatting
commit by using ".git-blame-ignore-revs" file.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Automated code formatting is great. Use python-black for that ([1]).
Black us not configurable much (uncompromising) and follows PEP8.
It thus generates quite a standard, pleasing format.
But the point isn't whether the formatting is always the most
subjectively pleasing. The point is that the style is generated and
enforceable by an automated tool. It takes away places for nit picking,
while resulting in a more consistent code base.
As this reformats the entire code base, it introduces a large diff and
interferes with tools like git-blame. That will be somewhat alleviated
by adding a "blame.ignoreRevsFile" for git in the next commit.
The change is done automatically, by running python-black version
black-22.8.0-2.fc38.noarch:
$ black .
The result is the same as
$ ( git grep -l '#!.*\(PYTHON\|python\)' ; git ls-files '*.py' '*.py.in' ) \
| sort -u \
| xargs -d '\n' black
Note that the exact result depends on the version of black. Currently
that version is black==22.12.0 from pip. Yes, this means when we bump
the version in the future, some reformatting will happen.
[1] https://github.com/psf/black
|
| |
| |
| |
| |
| | |
This allows to run `black .` and only reformat the files, that are
actually black formatted.
|
| |
| |
| |
| | |
No need to duplicate the test.
|
|/ |
|
|
|
|
|
|
| |
Fixes: 1a4031d6db73 ('lib/route: Support IFLA_BRIDGE_MODE')
https://github.com/thom311/libnl/pull/339
|
|\
| |
| |
| | |
https://github.com/thom311/libnl/pull/335
|
| |
| |
| |
| |
| |
| | |
Flush stdout after object dumps to have complete and immediate output when
stdout is not line buffered, such as when piping the test-cache-mngr output
to grep.
|
| |
| |
| |
| | |
The format is the same as `ip -ts monitor` so the two can be compared.
|
| |
| |
| |
| |
| | |
Useful for some caches with multiple families in co_groups, such as the
"route/link" cache.
|
| |
| |
| |
| |
| | |
Some problems are related to change callbacks and those are much easier to
see when they're not mixed with the cache dump.
|
|/
|
|
| |
Many problems are only apparent when printing at level "details".
|
|
|
|
|
|
|
|
|
| |
Check that ops->ao_override_rtm() is set before using it,
which prevents a segfault whenever af_request_type() is
called with a type that has ops but that does not initialize
said function in their ops struct.
https://github.com/thom311/libnl/pull/333
|
|\ |
|
| |
| |
| |
| |
| | |
The test runs in a virtual environment. We cannot just install
python packages via apt. Use pip as it was meant to be.
|
| |
| |
| |
| |
| | |
The toplevel "autogen.sh" script already runs "doc/autogen.sh".
No need to do it again.
|
| | |
|
|/ |
|
| |
|
|
|
|
| |
https://github.com/thom311/libnl/pull/345
|
|\
| |
| |
| |
| |
| | |
The patch from #342 with follow-ups.
https://github.com/thom311/libnl/pull/342
|
| |
| |
| |
| |
| |
| |
| | |
The point is to bump DEVCONF_MAX.
Taken from upstream kernel commit 6995e2de6891c724bfeb2db33d7b87775f913ad1
(v6.4).
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
On the netlink API, IFLA_INET6_CONF is a list of uint32_t integers, but
the number of actually provided values depends on the kernel version (and
the DEVCONF_MAX value that it was compiled with.
We clone the kernel header in our source tree, so DEVCONF_MAX from the
libnl3 build may differ from the running kernel. We need to keep track
how many values kernel actually provides.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
It's not clear how this API is useful. I don't think that kernel accepts
netlink requests to change the settings. So constructing a libnl3 object
in the user application seems not useful.
Also, because of the difficulty that DEVCONF_MAX is depending on the
current kernel, and changing. We need to improve how to handle the
option, and a rtnl_link_inet6_set_conf() only makes that more confusing.
The same is the case for rtnl_link_inet6_set_flags(), but that API
already exists, while rtnl_link_inet6_set_conf() is still new and
unreleased.
|
| | |
|
|/
|
|
| |
Signed-off-by: Abdurrahman Hussain <abdurrahman@hussain.rocks>
|
|\
| |
| |
| |
| |
| | |
'kacperlud:bridge-Add-support-for-link_info-of-a-bridge'
https://github.com/thom311/libnl/pull/329
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
rtnl_link_bridge_set_vlan_filtering() to boolean
In bridge-info, we have two u8 attributes (vlan-filtering and
stats-enabled). In both cases, kernel only expects there a boolean
value (either zero or one).
In case of vlan-filtering, I think kernel actually doesn't care, and
would treat any non-zero value as true. In case of stats-enabled, kernel
would reject values outside the values zero or one.
Previously, libnl3 would normalize the boolean value for vlan-filtering,
but not for stats-enabled. That is at least inconsistent, in particular
considering that kernel requires a normalized value for stats-enabled, but
not for vlan-filtering.
Our public API has uint8_t parameters (and not bool). That makes sense,
as it follows the netlink API.
It's not clear how to handle these boolean u8 attributes best. Should
the API be bool or uint8_t? Should we normalize the boolean values?
In any case, do something consistently. For no particular reason, choose
to not add additional logic. The user can set any value, whether that
value makes sense, it's up to them.
|
| |
| |
| |
| |
| | |
On netlink, IFLA_BR_VLAN_PROTOCOL attribute is be16. In the libnl3 API,
expose the number in native endianness.
|
| | |
|
| | |
|