balena-os / meta-balena

A collection of Yocto layers used to build balenaOS images
https://www.balena.io/os
968 stars 115 forks source link

networkmanager: Wait for iptables lock in shared dispatcher script #3388

Closed mtoman closed 5 months ago

mtoman commented 5 months ago

The dispatcher script that moves around FORWARD rules of shared interfaces currently calls iptables assuming it will always work but in practice two iptables commands can not run in parallel and we have occasionally seen the script fail with:

Another app is currently holding the xtables lock. Perhaps you want to use the -w option?

This patch adds the -w option to make the script wait for the lock when necessary.

It also makes the script exit with an error code if anything fails, which will log the output as WARN instead of INFO as the errors are easy to overlook at this moment.


Contributor checklist

Reviewer Guidelines