[PATCH RFC batadv 0/5] batman-adv: allow to specify limits for remote learned objects
Sven Eckelmann <[email protected]>
| Newsgroups | org.open-mesh.lists.batman |
|---|---|
| Message-ID | <[email protected]> |
There are some concerns that an external entity could spam the batman-adv
related interfaces with random mac addresses. The batman-adv would use more
and more resources to safe things like neighbors, originators, TT, ... and
would at some point run out of resources.
One idea is to limit the number of entries for each resource type could
have. Things which might need limits
* orig_node
* neigh_node
* tt_local_entry
* dat_entry
* bla_backbone_gw
* bla_claim
Things which are limited by other things (maybe)
* hardif_neigh_node
* gw_node
* orig_node_vlan
* orig_info
Unknown how to handle overly large tt_global_entries:
* tt_global_entry
This approach is also used for the bridge since commit bdb4dfda3b41 ("net:
bridge: Track and limit dynamically learned FDB entries"). And it is also
disabled by default.
For the moment, I just want to demonstrate how this might work with some
example code. I didn't invest any time to actually check out the other
items in the list. So, please consider these lists as vague suggestions.
Signed-off-by: Sven Eckelmann <[email protected]>
---
Sven Eckelmann (5):
batman-adv: limit numbers of parallel learned neighbors
batman-adv: limit numbers of parallel learned originators
batman-adv: limit numbers of parallel learned DAT entries
batman-adv: limit numbers of parallel learned BLA backbones
batman-adv: limit numbers of parallel learned BLA claims
include/uapi/linux/batman_adv.h | 30 ++++++++++++++++++++
net/batman-adv/bat_iv_ogm.c | 13 ++++++++-
net/batman-adv/bat_v_ogm.c | 11 ++++++++
net/batman-adv/bridge_loop_avoidance.c | 22 +++++++++++++++
net/batman-adv/distributed-arp-table.c | 11 ++++++++
net/batman-adv/mesh-interface.c | 15 ++++++++++
net/batman-adv/netlink.c | 51 ++++++++++++++++++++++++++++++++++
net/batman-adv/originator.c | 14 ++++++++++
net/batman-adv/types.h | 30 ++++++++++++++++++++
9 files changed, 196 insertions(+), 1 deletion(-)
---
base-commit: 7700c90cbd12d04b8aabb62fe031ce6b31d6a4d9
change-id: 20260516-resource-limit-5c1a32898f7c
Best regards,
--
Sven Eckelmann <[email protected]>