platform: parse netlink messages ourselves without libnl-route-3
Constructing the libnl3 object only to parse the message is wasteful. It involves several memory allocations, thread synchronization and parsing fields that we don't care about. But moreover, older libnl version might not support all the fields we are interested in, hence we have workarounds like _nl_link_parse_info_data(). Certain features might not fully work unless libnl supports it too (although kernel would). As we already parse the data ourselves sometimes, just go all they way and don't construct the intermediate libnl object. This will allow us to drop the _nl_link_parse_info_data() workarounds in next commits. That is important, because _nl_link_parse_info_data() sidesteps our platform cache and is not in sync with the cache (not to mention the extra work to explicitly refetch the data on every lookup). Also, it gets us 60% on the way to no longer needing 'libnl-route-3.so' at all and eventually drop requiring the library.
This commit is contained in: