Page MenuHomeFreeBSD

if_ovpn: remove peer limit
ClosedPublic

Authored by kp on Nov 28 2022, 9:21 PM.
Tags
None
Referenced Files
F153667225: D37524.id113579.diff
Wed, Apr 22, 6:59 PM
Unknown Object (File)
Tue, Apr 21, 6:44 PM
Unknown Object (File)
Tue, Apr 21, 3:15 PM
Unknown Object (File)
Tue, Apr 21, 3:11 PM
Unknown Object (File)
Sun, Apr 19, 11:30 PM
Unknown Object (File)
Sun, Apr 19, 11:26 PM
Unknown Object (File)
Wed, Apr 15, 8:17 AM
Unknown Object (File)
Sun, Apr 5, 5:32 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.