Page MenuHomeFreeBSD

pfctl: Add missing 'va' code point name
ClosedPublic

Authored by kp on Mar 4 2021, 8:04 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Mar 23, 10:26 PM
Unknown Object (File)
Jan 29 2024, 3:10 PM
Unknown Object (File)
Jan 13 2024, 11:11 PM
Unknown Object (File)
Dec 23 2023, 3:25 PM
Unknown Object (File)
Dec 22 2023, 10:02 PM
Unknown Object (File)
Dec 16 2023, 2:40 PM
Unknown Object (File)
Dec 14 2023, 10:43 PM
Unknown Object (File)
Dec 11 2023, 10:20 AM

Details

Summary

Add the 'va' (voice-admit, RFC5865) symbolic name.

MFC after: 2 weeks
Sponsored by: Rubicon Communications, LLC ("Netgate")

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

kp requested review of this revision.Mar 4 2021, 8:04 PM
gbe added a subscriber: gbe.

LGTM from manpages

I have a concern here, some of which goes beyond just this change, about aliasing DSCP to TOS. We (a small congestion control research group) have found that due to ambigious manual pages, headers and other factors, some present in PF it appears are causing mismarked traffic on the internet. DSCP is shifted left by the 2 ECN bits, the manual pages and any other documentation MUST be made explicity clear about this fact as to if your supplying the values as specified in the RFC"s on DSCP (unshifted) or are you applying TOS bits that may or may not have the ECN bits masked out.

From my reading of the code above the value supplied to TOS and to DSCP is the unshifted full byte value, and that may lead to the same mistakes we are seeing in other places.

I have further concerns that above I see verbs for what are officially obsolete by RFC TOS byte values that should probably at a minimum invoke a warning, and preferably invoke an error and no longer function such as "critical, lowdelay, throughput,reliability. We should also probably rip those out of sys/netinet/ip.h and do an exprun and purge there use.

I have a concern here, some of which goes beyond just this change, about aliasing DSCP to TOS. We (a small congestion control research group) have found that due to ambigious manual pages, headers and other factors, some present in PF it appears are causing mismarked traffic on the internet. DSCP is shifted left by the 2 ECN bits, the manual pages and any other documentation MUST be made explicity clear about this fact as to if your supplying the values as specified in the RFC"s on DSCP (unshifted) or are you applying TOS bits that may or may not have the ECN bits masked out.

I'd be happy to extend the man page to make that clearer. Do you have any suggested phrasing?

From my reading of the code above the value supplied to TOS and to DSCP is the unshifted full byte value, and that may lead to the same mistakes we are seeing in other places.

The support for the symbolic names ('af11', 'ef', ...) makes that mistake a little less likely at least.

I have further concerns that above I see verbs for what are officially obsolete by RFC TOS byte values that should probably at a minimum invoke a warning, and preferably invoke an error and no longer function such as "critical, lowdelay, throughput,reliability. We should also probably rip those out of sys/netinet/ip.h and do an exprun and purge there use.

I'm not removing support for these names. That would break existing configuration files.

I agree with Rod's assessment here.

While TOS is obsolete and a rework towards DSCP is well overdue, not fixing the 2-bit bitshift is IMHO an invitation for further confusion.

DSCP codepoints are values 0..63. Thus the expectation when setting DSCP is, that the relevant shifting etc is all handled by whoever handles a "dscp" value.

DSCP certainly does not map 1:1 to TOS. While sometimes missed, when dealing with TOS, the left-shift (and masking of ECN bits) should be harder to miss when DSCP codepoints are to be set.

I suggest to rework the parser in such a way, that the named DSCP codepoints can only be used with the DSCP keyword, and the legacy TOS values only with the keyword TOS. And the parser can deal with the necessary left-shift (the DSCP input value should be 0..63).

I'd be happy to extend the man page to make that clearer. Do you have any suggested phrasing?

I do not, bringing in some more eyes from the Transport group to get better feedback.

From my reading of the code above the value supplied to TOS and to DSCP is the unshifted full byte value, and that may lead to the same mistakes we are seeing in other places.

The support for the symbolic names ('af11', 'ef', ...) makes that mistake a little less likely at least.

Yes, but what we see is people trying to use the Hex values from an RFC, and those end up miss applied because the definition here of DSCP is actually TOS byte.

I have further concerns that above I see verbs for what are officially obsolete by RFC TOS byte values that should probably at a minimum invoke a warning, and preferably invoke an error and no longer function such as "critical, lowdelay, throughput,reliability. We should also probably rip those out of sys/netinet/ip.h and do an exprun and purge there use.

I'm not removing support for these names. That would break existing configuration files.

I gave as an option to emit a warning, and I am ok with that as a first phase, these bit values need to DIE, even the IETF has moved the original defining RFC to HISTORIC status. The continued erronous use of these definitions is causing issues with current and future work on ECN and DSCP.

I suggest to rework the parser in such a way, that the named DSCP codepoints can only be used with the DSCP keyword, and the legacy TOS values only with the keyword TOS. And the parser can deal with the necessary left-shift (the DSCP input value should be 0..63).

That will break existing configurations. So no.

For context here: the intent of this patch is diff reduction between pfsense and FreeBSD. Specifically this one: https://github.com/pfsense/FreeBSD-src/commit/9b7b2bd920aa8f142ea1c293983416a24aa1e6a7#diff-a000aa9992a4804e609eaadc9203a8f6681fdadabe279cae7b94cf836ed031c3
That adds keyword support, but only on DSCP, and masks off the ECN bits prior to matching. Both of those are already present in FreeBSD for the tos keyword, so this aims to not break pfsense configuration while removing that patch, by also accepting 'dscp' where we now only accept 'tos'.

So, I'd like to avoid having to change the pfsense control code to cope with new rules for dscp (we're not changing how the tos keyword works regardless), and having 'dscp' and 'tos' work differently is an invitation for configuration errors.

We could minimise the odds of confusion by warning if a tos or dscp value is set with either of the two lower bits (i.e. the ECN bits) set.

rgrimes requested changes to this revision.Mar 5 2021, 11:29 AM

Given the issues I would rather NOT add dscp support at all, until these issues can be addressed from down/upstream? The current situation, both in pfsense and freebsd is poor at best and may actually be one of the sources of issues we are seeing in our ECN data collection work. We know for a fact people are being told to use these ancient and obsolete TOS values by looking for them in blog posts and how-to's. Using the pry bar that is "reduce diffs between" as a reason to add a bad situation is an ever worse situation!

This revision now requires changes to proceed.Mar 5 2021, 11:29 AM

Given the issues I would rather NOT add dscp support at all, until these issues can be addressed from down/upstream? The current situation, both in pfsense and freebsd is poor at best and may actually be one of the sources of issues we are seeing in our ECN data collection work. We know for a fact people are being told to use these ancient and obsolete TOS values by looking for them in blog posts and how-to's. Using the pry bar that is "reduce diffs between" as a reason to add a bad situation is an ever worse situation!

I'm not sure I follow how this would make things worse. One way or the other I'm not changing how the tos keyword works in pf. I'm also not removing any of the currently supported names for codepoints.

Still, I'll reduce this diff to only add the 'va' codepoint, and see how hard it'll be to teach pfsense to just use 'tos' where it currently uses 'dscp'.

kp retitled this revision from pfctl: Introduce 'dscp' as a synonym for 'tos' to pfctl: Add missing 'va' code point name.
kp edited the summary of this revision. (Show Details)
kp changed the repository for this revision from rS FreeBSD src repository - subversion to rG FreeBSD src repository.

Reduce patch to only add the missing voice-admit code point.

I am ok with doing this, though it still leaves all the other issues open.

This revision is now accepted and ready to land.Mar 5 2021, 1:49 PM
This revision was automatically updated to reflect the committed changes.