Remove referenced to unused FW3_FLAG_DELETED flag
[project/firewall3.git] / zones.c
diff --git a/zones.c b/zones.c
index 9f4df58..55f2e6c 100644 (file)
--- a/zones.c
+++ b/zones.c
@@ -73,7 +73,7 @@ const struct fw3_option fw3_zone_opts[] = {
 
        FW3_LIST("network",            device,   zone,     networks),
        FW3_LIST("device",             device,   zone,     devices),
-       FW3_LIST("subnet",             address,  zone,     subnets),
+       FW3_LIST("subnet",             network,  zone,     subnets),
 
        FW3_OPT("input",               target,   zone,     policy_input),
        FW3_OPT("forward",             target,   zone,     policy_forward),
@@ -94,6 +94,9 @@ const struct fw3_option fw3_zone_opts[] = {
        FW3_OPT("log",                 bool,     zone,     log),
        FW3_OPT("log_limit",           limit,    zone,     log_limit),
 
+       FW3_OPT("__flags_v4",          int,      zone,     flags[0]),
+       FW3_OPT("__flags_v6",          int,      zone,     flags[1]),
+
        { }
 };
 
@@ -152,9 +155,6 @@ fw3_alloc_zone(void)
        INIT_LIST_HEAD(&zone->masq_src);
        INIT_LIST_HEAD(&zone->masq_dest);
 
-       INIT_LIST_HEAD(&zone->running_networks);
-       INIT_LIST_HEAD(&zone->running_devices);
-
        zone->enabled = true;
        zone->custom_chains = true;
        zone->log_limit.rate = 10;
@@ -273,7 +273,6 @@ print_zone_chain(struct fw3_state *state, enum fw3_family family,
        if (c || r)
        {
                info("   * Zone '%s'", zone->name);
-               fw3_set_running(zone, &state->running_zones);
 
                set(zone->flags, family, table);
        }
@@ -465,7 +464,7 @@ print_zone_rule(struct fw3_state *state, enum fw3_family family,
                                if (!fw3_is_family(msrc, family) ||
                                    !fw3_is_family(mdest, family))
                                        continue;
-                               
+
                                fw3_pr("-A zone_%s_postrouting", zone->name);
                                fw3_format_src_dest(msrc, mdest);
                                fw3_pr(" -j MASQUERADE\n");
@@ -512,7 +511,7 @@ fw3_flush_zones(struct fw3_state *state, enum fw3_family family,
        if (reload)
                delbit(custom_mask, FW3_FLAG_CUSTOM_CHAINS);
 
-       list_for_each_entry_safe(z, tmp, &state->running_zones, running_list)
+       list_for_each_entry_safe(z, tmp, &state->zones, list)
        {
                if (!has(z->flags, family, table))
                        continue;
@@ -533,7 +532,7 @@ fw3_hotplug_zones(struct fw3_state *state, bool add)
 
        if (add)
        {
-               list_for_each_entry(z, &state->running_zones, running_list)
+               list_for_each_entry(z, &state->zones, list)
                {
                        if (!hasbit(z->flags[0], FW3_FLAG_HOTPLUG))
                        {
@@ -546,11 +545,11 @@ fw3_hotplug_zones(struct fw3_state *state, bool add)
        }
        else
        {
-               list_for_each_entry(z, &state->running_zones, running_list)
+               list_for_each_entry(z, &state->zones, list)
                {
                        if (hasbit(z->flags[0], FW3_FLAG_HOTPLUG))
                        {
-                               list_for_each_entry(d, &z->running_devices, list)
+                               list_for_each_entry(d, &z->devices, list)
                                        fw3_hotplug(add, z, d);
 
                                delbit(z->flags[0], FW3_FLAG_HOTPLUG);
@@ -560,7 +559,7 @@ fw3_hotplug_zones(struct fw3_state *state, bool add)
 }
 
 struct fw3_zone *
-fw3_lookup_zone(struct fw3_state *state, const char *name, bool running)
+fw3_lookup_zone(struct fw3_state *state, const char *name)
 {
        struct fw3_zone *z;
 
@@ -572,10 +571,7 @@ fw3_lookup_zone(struct fw3_state *state, const char *name, bool running)
                if (strcmp(z->name, name))
                        continue;
 
-               if (!running || z->running_list.next)
-                       return z;
-
-               break;
+               return z;
        }
 
        return NULL;
@@ -586,13 +582,13 @@ fw3_free_zone(struct fw3_zone *zone)
 {
        struct fw3_device *dev, *tmp;
 
-       list_for_each_entry_safe(dev, tmp, &zone->running_devices, list)
+       list_for_each_entry_safe(dev, tmp, &zone->devices, list)
        {
                list_del(&dev->list);
                free(dev);
        }
 
-       list_for_each_entry_safe(dev, tmp, &zone->running_networks, list)
+       list_for_each_entry_safe(dev, tmp, &zone->networks, list)
        {
                list_del(&dev->list);
                free(dev);