Page MenuHomeFreeBSD

if_ovpn: remove peer limit
ClosedPublic

Authored by kp on Nov 28 2022, 9:21 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Nov 29, 12:45 PM
Unknown Object (File)
Sep 27 2024, 8:01 PM
Unknown Object (File)
Sep 27 2024, 6:08 PM
Unknown Object (File)
Sep 25 2024, 1:54 AM
Unknown Object (File)
Sep 24 2024, 10:04 AM
Unknown Object (File)
Sep 24 2024, 4:54 AM
Unknown Object (File)
Sep 23 2024, 6:16 AM
Unknown Object (File)
Sep 22 2024, 7:53 PM

Details

Summary

Replace the fixed-sized array by an RB_TREE. This should both speed up
lookups and remove the 128 peer limit.

We may wish to consider adding additional trees to also speed up the
lookup by IPv4/IPv6 addresses.

Sponsored by: Rubicon Communications, LLC ("Netgate")

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

kp requested review of this revision.Nov 28 2022, 9:21 PM
sys/net/if_ovpn.c
269

(struct ovpn_kpeer *)&p

The cast looks redundant. p is declared as struct ovpn_kpeer at line 278

1620–1623

IPv6

kp marked 2 inline comments as done.Nov 29 2022, 9:32 AM

Good catch.

Looks good to me.

And you may also want to retire OVPN_MAX_PEERS ;)

This revision is now accepted and ready to land.Dec 1 2022, 10:10 AM
In D37524#854386, @zlei wrote:

Looks good to me.

And you may also want to retire OVPN_MAX_PEERS ;)

Thanks. I spotted that one eventually and fixed it, but figured it wasn't worth updating the review for that.

This revision was automatically updated to reflect the committed changes.