Skip to content

Commit

Permalink
Merge pull request #468 from infosiftr/better-iptables
Browse files Browse the repository at this point in the history
Ignore the exit code of `modprobe` always
  • Loading branch information
tianon authored Jan 5, 2024
2 parents 458a535 + eb4c40e commit bfe953e
Show file tree
Hide file tree
Showing 3 changed files with 99 additions and 12 deletions.
37 changes: 33 additions & 4 deletions 24/dind/dockerd-entrypoint.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 33 additions & 4 deletions 25-rc/dind/dockerd-entrypoint.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 33 additions & 4 deletions dockerd-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -143,17 +143,46 @@ if [ "$1" = 'dockerd' ]; then
# XXX inject "docker-init" (tini) as pid1 to workaround https:/docker-library/docker/issues/318 (zombie container-shim processes)
set -- docker-init -- "$@"

if ! iptables -nL > /dev/null 2>&1; then
iptablesLegacy=
if [ -n "${DOCKER_IPTABLES_LEGACY+x}" ]; then
# let users choose explicitly to legacy or not to legacy
iptablesLegacy="$DOCKER_IPTABLES_LEGACY"
if [ -n "$iptablesLegacy" ]; then
modprobe ip_tables || :
else
modprobe nf_tables || :
fi
elif (
# https://git.netfilter.org/iptables/tree/iptables/nft-shared.c?id=f5cf76626d95d2c491a80288bccc160c53b44e88#n420
# https:/docker-library/docker/pull/468#discussion_r1442131459
for f in /proc/net/ip_tables_names /proc/net/ip6_tables_names /proc/net/arp_tables_names; do
if b="$(cat "$f")" && [ -n "$b" ]; then
exit 0
fi
done
exit 1
); then
# if we already have any "legacy" iptables rules, we should always use legacy
iptablesLegacy=1
elif ! iptables -nL > /dev/null 2>&1; then
# if iptables fails to run, chances are high the necessary kernel modules aren't loaded (perhaps the host is using xtables, for example)
# https:/docker-library/docker/issues/350
# https:/moby/moby/issues/26824
# https:/docker-library/docker/pull/437#issuecomment-1854900620
if ! modprobe nf_tables; then
modprobe nf_tables || :
if ! iptables -nL > /dev/null 2>&1; then
# might be host has no nf_tables, but Alpine is all-in now (so let's try a legacy fallback)
modprobe ip_tables || :
# see https:/docker-library/docker/issues/463 (and the dind Dockerfile where this directory is set up)
export PATH="/usr/local/sbin/.iptables-legacy:$PATH"
if /usr/local/sbin/.iptables-legacy/iptables -nL > /dev/null 2>&1; then
iptablesLegacy=1
fi
fi
fi
if [ -n "$iptablesLegacy" ]; then
# see https:/docker-library/docker/issues/463 (and the dind Dockerfile where this directory is set up)
export PATH="/usr/local/sbin/.iptables-legacy:$PATH"
fi
iptables --version # so users can see whether it's legacy or not

uid="$(id -u)"
if [ "$uid" != '0' ]; then
Expand Down

0 comments on commit bfe953e

Please sign in to comment.