diff options
| author | Christian Breunig <christian@breunig.cc> | 2026-06-20 10:37:32 +0000 |
|---|---|---|
| committer | Christian Breunig <christian@breunig.cc> | 2026-06-22 21:33:50 +0200 |
| commit | 50ffc690fdeaaa30a9f353bc76fe87d748cc2e58 (patch) | |
| tree | afebfe34d5924d11b5015cb956008d2d3e259c32 /src | |
| parent | 2c6c98060ec2af764d4802ec58969399854eb140 (diff) | |
| download | vyos-1x-50ffc690fdeaaa30a9f353bc76fe87d748cc2e58.tar.gz vyos-1x-50ffc690fdeaaa30a9f353bc76fe87d748cc2e58.zip | |
vyos-netlink: T7965: only re-apply QoS configuration to individual interface
The previous vyos-netlinkd implementation for QoS policy re-apply was very heavy.
It conducted a full CLI validation and re-apply on every interface. Instead we
do not only re-apply the QoS configuration to the interface which has had an
address change detected by vyos-netlinkd.
This can be tested by checking "tc qdisc show" before disconnecting a PPPoE
interface and during/after reconnect. There will be no qdisc until the dynamic
interface has received an IP address - then the qdisc will be re-applied.
Diffstat (limited to 'src')
| -rwxr-xr-x | src/conf_mode/qos.py | 43 | ||||
| -rwxr-xr-x | src/services/vyos-netlinkd | 73 |
2 files changed, 73 insertions, 43 deletions
diff --git a/src/conf_mode/qos.py b/src/conf_mode/qos.py index e31c6b931..1e6797c60 100755 --- a/src/conf_mode/qos.py +++ b/src/conf_mode/qos.py @@ -349,6 +349,32 @@ def generate(qos): return None +def apply_interface(qos, ifname): + """ Clear and re-apply QoS for a single interface only. """ + run(f'tc qdisc del dev {ifname} parent ffff:') + run(f'tc qdisc del dev {ifname} root') + + if not qos or 'interface' not in qos or ifname not in qos['interface']: + return None + + interface_config = qos['interface'][ifname] + if not verify_interface_exists(qos, ifname, state_required=True, warning_only=True): + # When shaper is bound to a dialup (e.g. PPPoE) interface it is + # possible that it is yet not available when the QoS code runs. + # Skip the configuration and inform the user via warning_only=True + return None + + for direction in ['egress', 'ingress']: + # bail out early if shaper for given direction is not used at all + if direction not in interface_config: + continue + + shaper_type, shaper_config = get_shaper(qos, interface_config, direction) + shaper_type(ifname).update(shaper_config, direction) + + return None + + def apply(qos): # Always delete "old" shapers first for interface in interfaces(): @@ -361,21 +387,8 @@ def apply(qos): if not qos or 'interface' not in qos: return None - for interface, interface_config in qos['interface'].items(): - if not verify_interface_exists(qos, interface, state_required=True, warning_only=True): - # When shaper is bound to a dialup (e.g. PPPoE) interface it is - # possible that it is yet not available when to QoS code runs. - # Skip the configuration and inform the user via warning_only=True - continue - - for direction in ['egress', 'ingress']: - # bail out early if shaper for given direction is not used at all - if direction not in interface_config: - continue - - shaper_type, shaper_config = get_shaper(qos, interface_config, direction) - tmp = shaper_type(interface) - tmp.update(shaper_config, direction) + for ifname in qos['interface']: + apply_interface(qos, ifname) return None diff --git a/src/services/vyos-netlinkd b/src/services/vyos-netlinkd index ce54f7f8f..ddc8b1bf3 100755 --- a/src/services/vyos-netlinkd +++ b/src/services/vyos-netlinkd @@ -14,6 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. +import importlib.util import re import sys import syslog @@ -34,15 +35,23 @@ from vyos.utils.boot import boot_configuration_complete from vyos.utils.commit import commit_in_progress2 from vyos.utils.dict import dict_search from vyos.utils.process import cmd -from vyos.utils.process import call from vyos.utils.process import is_systemd_service_active from vyos.utils.process import stop_systemd_unit +def _load_conf_mode_qos(): + spec = importlib.util.spec_from_file_location( + 'conf_mode_qos', '/usr/libexec/vyos/conf_mode/qos.py') + mod = importlib.util.module_from_spec(spec) + spec.loader.exec_module(mod) + return mod + +_conf_mode_qos = _load_conf_mode_qos() + running = True # compile regex once during startup for fast match IFACE_RE = re.compile(r"^(?:eth|br|bond|wlan|pppoe|sstpc|wwan)") -dynamic_qos_interfaces: set[str] = set() +_dynamic_qos_interfaces: set[str] = set() # Per-interface previous operstate, used to suppress DHCP restarts on # UP-to-UP re-notifications (e.g. post-migration gratuitous-ARP events). @@ -66,32 +75,30 @@ def _handle_dynamic_qos_events(event: str, ifname: str, if not _is_dynamic_qos_iface(ifname): return None - if event in ['RTM_NEWLINK', 'RTM_DELLINK']: - if event == 'RTM_NEWLINK' and operstate != 'DOWN': + match event: + case 'RTM_NEWLINK' if operstate != 'DOWN': return None - if ifname in dynamic_qos_interfaces: - syslog.syslog(syslog.LOG_DEBUG, - f'Clearing QoS re-apply state on dynamic interface {ifname}...') - dynamic_qos_interfaces.discard(ifname) - - return None - - if event != 'RTM_NEWADDR': - return None - - if ifname in dynamic_qos_interfaces: - syslog.syslog(syslog.LOG_DEBUG, - f'QoS already re-applied on dynamic interface {ifname}, skipping...') - return None + case 'RTM_NEWLINK' | 'RTM_DELLINK': + if ifname in _dynamic_qos_interfaces: + syslog.syslog(syslog.LOG_DEBUG, + f'Clearing QoS re-apply state on dynamic interface {ifname}...') + _dynamic_qos_interfaces.discard(ifname) - syslog.syslog(syslog.LOG_INFO, - f'Re-applying QoS on dynamic interface {ifname}...') - call(f'/usr/libexec/vyos/conf_mode/qos.py') + case 'RTM_NEWADDR': + if ifname in _dynamic_qos_interfaces: + syslog.syslog(syslog.LOG_DEBUG, + f'QoS already re-applied on dynamic interface {ifname}, skipping...') + return None - dynamic_qos_interfaces.add(ifname) + qos = _conf_mode_qos.get_config() + if not qos or 'interface' not in qos or ifname not in qos['interface']: + return None - return None + syslog.syslog(syslog.LOG_INFO, + f'Re-applying QoS on dynamic interface {ifname}...') + _conf_mode_qos.apply_interface(qos, ifname) + _dynamic_qos_interfaces.add(ifname) def sigterm_handler(signo, frame): global running @@ -206,9 +213,16 @@ def main(): ifname = attrs.get('IFLA_IFNAME', None) or attrs.get('IFA_LABEL', None) if not ifname and 'index' in message: - links = ipr.get_links(message['index']) - if links: - ifname = dict(links[0].get('attrs', [])).get('IFLA_IFNAME', None) + try: + links = ipr.get_links(message['index']) + if links: + ifname = dict(links[0].get('attrs', [])).get('IFLA_IFNAME', None) + except NetlinkError: + # Interface can disappear between the netlink event + # arriving and this get_links() lookup (e.g. pppoe + # teardown). Skip the message rather than breaking + # the entire ipr.get() batch with an ENODEV error. + continue # Bail out early - no interface name in the message if not ifname: @@ -232,7 +246,10 @@ def main(): # Address added to an interface. For dynamic interfaces, this # means the connection completed and QoS can be re-applied. case 'RTM_NEWADDR': - syslog.syslog(syslog.LOG_DEBUG, f'RTM_NEWADDR -> {ifname}') + addr = attrs.get('IFA_ADDRESS', '<unknown>') + prefixlen = message.get('prefixlen', '') + syslog.syslog(syslog.LOG_DEBUG, + f'RTM_NEWADDR -> {ifname}, addr={addr}/{prefixlen}') _handle_dynamic_qos_events(event, ifname) # Deletion of a network link which has been previously added to the kernel @@ -241,7 +258,7 @@ def main(): ifname = attrs.get('IFLA_IFNAME', None) if ifname: _iface_prev_operstate.pop(ifname, None) - _handle_dynamic_qos_events(event, ifname) + _handle_dynamic_qos_events(event, ifname) case _: pass |
