]> git.ipfire.org Git - people/ms/strongswan.git/commitdiff
child-cfg: Add setting that controls whether outbound FWD policies are installed
authorTobias Brunner <tobias@strongswan.org>
Thu, 18 Aug 2016 14:11:34 +0000 (16:11 +0200)
committerTobias Brunner <tobias@strongswan.org>
Wed, 28 Sep 2016 15:56:43 +0000 (17:56 +0200)
src/libcharon/config/child_cfg.c
src/libcharon/config/child_cfg.h

index 76d7f2c58d3dded9c4fdeabf0ba36f9116e35e1b..6a9c342f44ee5f2aab7c7b8b04075d031d1bd4e6 100644 (file)
@@ -153,6 +153,11 @@ struct private_child_cfg_t {
         */
        bool install_policy;
 
+       /**
+        * Install outbound FWD policies
+        */
+       bool fwd_out_policy;
+
        /**
         * anti-replay window size
         */
@@ -564,6 +569,12 @@ METHOD(child_cfg_t, install_policy, bool,
        return this->install_policy;
 }
 
+METHOD(child_cfg_t, install_fwd_out_policy, bool,
+       private_child_cfg_t *this)
+{
+       return this->fwd_out_policy;
+}
+
 #define LT_PART_EQUALS(a, b) ({ a.life == b.life && a.rekey == b.rekey && a.jitter == b.jitter; })
 #define LIFETIME_EQUALS(a, b) ({ LT_PART_EQUALS(a.time, b.time) && LT_PART_EQUALS(a.bytes, b.bytes) && LT_PART_EQUALS(a.packets, b.packets); })
 
@@ -613,6 +624,7 @@ METHOD(child_cfg_t, equals, bool,
                this->replay_window == other->replay_window &&
                this->proxy_mode == other->proxy_mode &&
                this->install_policy == other->install_policy &&
+               this->fwd_out_policy == other->fwd_out_policy &&
                streq(this->updown, other->updown) &&
                streq(this->interface, other->interface);
 }
@@ -673,6 +685,7 @@ child_cfg_t *child_cfg_create(char *name, child_cfg_create_t *data)
                        .set_replay_window = _set_replay_window,
                        .use_proxy_mode = _use_proxy_mode,
                        .install_policy = _install_policy,
+                       .install_fwd_out_policy = _install_fwd_out_policy,
                        .equals = _equals,
                        .get_ref = _get_ref,
                        .destroy = _destroy,
@@ -695,6 +708,7 @@ child_cfg_t *child_cfg_create(char *name, child_cfg_create_t *data)
                .manual_prio = data->priority,
                .interface = strdupnull(data->interface),
                .install_policy = !data->suppress_policies,
+               .fwd_out_policy = data->fwd_out_policies,
                .refcount = 1,
                .proposals = linked_list_create(),
                .my_ts = linked_list_create(),
index e736b273786a9e586904eb1cd39f58ee11cfae7b..b85bfd9bc1995ce8da2ecadfb88fa826261b86ee 100644 (file)
@@ -283,6 +283,14 @@ struct child_cfg_t {
         */
        bool (*install_policy)(child_cfg_t *this);
 
+       /**
+        * Check whether outbound FWD IPsec policies should be installed.
+        *
+        * @return                              TRUE, if outbound FWD policies should be installed
+        *                                              FALSE, otherwise
+        */
+       bool (*install_fwd_out_policy)(child_cfg_t *this);
+
        /**
         * Check if two child_cfg objects are equal.
         *
@@ -346,6 +354,8 @@ struct child_cfg_create_t {
        bool hostaccess;
        /** Don't install IPsec policies */
        bool suppress_policies;
+       /** Install outbound FWD IPsec policies to bypass drop policies */
+       bool fwd_out_policies;
 };
 
 /**