2013-07-24 12:22:54 +00:00
|
|
|
/*
|
2014-03-07 13:38:51 +00:00
|
|
|
* bridge_driver_platform.h: platform specific routines for bridge driver
|
2013-07-24 12:22:54 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2006-2013 Red Hat, Inc.
|
|
|
|
* Copyright (C) 2006 Daniel P. Berrange
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-06-18 16:12:33 +00:00
|
|
|
#pragma once
|
2013-07-24 12:22:54 +00:00
|
|
|
|
2019-06-18 16:12:33 +00:00
|
|
|
#include "internal.h"
|
|
|
|
#include "virthread.h"
|
|
|
|
#include "virdnsmasq.h"
|
|
|
|
#include "virnetworkobj.h"
|
|
|
|
#include "object_event.h"
|
2013-07-24 12:22:54 +00:00
|
|
|
|
|
|
|
/* Main driver state */
|
|
|
|
struct _virNetworkDriverState {
|
|
|
|
virMutex lock;
|
|
|
|
|
2018-01-26 11:16:00 +00:00
|
|
|
/* Read-only */
|
|
|
|
bool privileged;
|
|
|
|
|
2019-05-23 10:34:08 +00:00
|
|
|
/* pid file FD, ensures two copies of the driver can't use the same root */
|
|
|
|
int lockFD;
|
|
|
|
|
2015-03-10 14:42:18 +00:00
|
|
|
/* Immutable pointer, self-locking APIs */
|
2015-02-23 15:41:55 +00:00
|
|
|
virNetworkObjListPtr networks;
|
2013-07-24 12:22:54 +00:00
|
|
|
|
2015-03-10 14:42:18 +00:00
|
|
|
/* Immutable pointers, Immutable objects */
|
2013-07-24 12:22:54 +00:00
|
|
|
char *networkConfigDir;
|
|
|
|
char *networkAutostartDir;
|
|
|
|
char *stateDir;
|
|
|
|
char *pidDir;
|
|
|
|
char *dnsmasqStateDir;
|
|
|
|
char *radvdStateDir;
|
2015-03-10 14:42:18 +00:00
|
|
|
|
|
|
|
/* Require lock to get a reference on the object,
|
|
|
|
* lockless access thereafter
|
|
|
|
*/
|
2013-07-24 12:22:54 +00:00
|
|
|
dnsmasqCapsPtr dnsmasqCaps;
|
2013-12-11 10:38:02 +00:00
|
|
|
|
2015-03-10 14:42:18 +00:00
|
|
|
/* Immutable pointer, self-locking APIs */
|
2013-12-11 10:38:02 +00:00
|
|
|
virObjectEventStatePtr networkEventState;
|
2019-07-14 16:11:06 +00:00
|
|
|
|
|
|
|
virNetworkXMLOptionPtr xmlopt;
|
2013-07-24 12:22:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _virNetworkDriverState virNetworkDriverState;
|
|
|
|
typedef virNetworkDriverState *virNetworkDriverStatePtr;
|
|
|
|
|
network: force re-creation of iptables private chains on firewalld restart
When firewalld is stopped, it removes *all* iptables rules and chains,
including those added by libvirt. Since restarting firewalld means
stopping and then starting it, any time it is restarted, libvirt needs
to recreate all the private iptables chains it uses, along with all
the rules it adds.
We already have code in place to call networkReloadFirewallRules() any
time we're notified of a firewalld start, and
networkReloadFirewallRules() will call
networkPreReloadFirewallRules(), which calls
networkSetupPrivateChains(); unfortunately that last call is called
using virOnce(), meaning that it will only be called the first time
through networkPreReloadFirewallRules() after libvirtd starts - so of
course when firewalld is later restarted, the call to
networkSetupPrivateChains() is skipped.
The neat and tidy way to fix this would be if there was a standard way
to reset a pthread_once_t object so that the next time virOnce was
called, it would think the function hadn't been called, and call it
again. Unfortunately, there isn't any official way of doing that (we
*could* just fill it with 0 and hope for the best, but that doesn't
seem very safe.
So instead, this patch just adds a static variable called
chainInitDone, which is set to true after networkSetupPrivateChains()
is called for the first time, and then during calls to
networkPreReloadFirewallRules(), if chainInitDone is set, we call
networkSetupPrivateChains() directly instead of via virOnce().
It may seem unsafe to directly call a function that is meant to be
called only once, but I think in this case we're safe - there's
nothing in the function that is inherently "once only" - it doesn't
initialize anything that can't safely be re-initialized (as long as
two threads don't try to do it at the same time), and it only happens
when responding to a dbus message that firewalld has been started (and
I don't think it's possible for us to be processing two of those at
once), and even then only if the initial call to the function has
already been completed (so we're safe if we receive a firewalld
restart call at a time when we haven't yet called it, or even if
another thread is already in the process of executing it. The only
problematic bit I can think of is if another thread is in the process
of adding an iptable rule at the time we're executing this function,
but 1) none of those threads will be trying to add chains, and 2) if
there was a concurrency problem with other threads adding iptables
rules while firewalld was being restarted, it would still be a problem
even without this change.
This is yet another patch that fixes an occurrence of this error:
COMMAND_FAILED: '/usr/sbin/iptables -w10 -w --table filter --insert LIBVIRT_INP --in-interface virbr0 --protocol tcp --destination-port 67 --jump ACCEPT' failed: iptables: No chain/target/match by that name.
In particular, this resolves: https://bugzilla.redhat.com/1813830
Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
2020-05-08 01:54:39 +00:00
|
|
|
void networkPreReloadFirewallRules(virNetworkDriverStatePtr driver, bool startup, bool force);
|
2018-12-05 13:29:07 +00:00
|
|
|
void networkPostReloadFirewallRules(bool startup);
|
|
|
|
|
2014-03-19 16:56:35 +00:00
|
|
|
int networkCheckRouteCollision(virNetworkDefPtr def);
|
2013-07-24 12:22:54 +00:00
|
|
|
|
2014-03-19 16:56:35 +00:00
|
|
|
int networkAddFirewallRules(virNetworkDefPtr def);
|
2013-07-24 12:22:54 +00:00
|
|
|
|
2014-03-19 16:56:35 +00:00
|
|
|
void networkRemoveFirewallRules(virNetworkDefPtr def);
|