mirror of
https://github.com/breeze303/nss-packages.git
synced 2025-12-16 16:57:29 +00:00
74 lines
2.5 KiB
Diff
74 lines
2.5 KiB
Diff
--- a/frontends/nss/ecm_nss_ported_ipv4.c
|
|
+++ b/frontends/nss/ecm_nss_ported_ipv4.c
|
|
@@ -335,8 +335,12 @@ static void ecm_nss_ported_ipv4_connecti
|
|
uint8_t dest_mac_xlate[ETH_ALEN];
|
|
ecm_db_direction_t ecm_dir;
|
|
ecm_front_end_acceleration_mode_t result_mode;
|
|
- struct net *net = nf_ct_net(ct);
|
|
- struct nf_tcp_net *tn = nf_tcp_pernet(net);
|
|
+ struct nf_tcp_net *tn;
|
|
+
|
|
+ if (ct) {
|
|
+ struct net *net = nf_ct_net(ct);
|
|
+ tn = nf_tcp_pernet(net);
|
|
+ }
|
|
|
|
DEBUG_CHECK_MAGIC(feci, ECM_FRONT_END_CONNECTION_INSTANCE_MAGIC, "%px: magic failed", feci);
|
|
|
|
--- a/frontends/nss/ecm_nss_ported_ipv6.c
|
|
+++ b/frontends/nss/ecm_nss_ported_ipv6.c
|
|
@@ -340,8 +340,12 @@ static void ecm_nss_ported_ipv6_connecti
|
|
ip_addr_t src_ip;
|
|
ip_addr_t dest_ip;
|
|
ecm_front_end_acceleration_mode_t result_mode;
|
|
- struct net *net = nf_ct_net(ct);
|
|
- struct nf_tcp_net *tn = nf_tcp_pernet(net);
|
|
+ struct nf_tcp_net *tn;
|
|
+
|
|
+ if (ct) {
|
|
+ struct net *net = nf_ct_net(ct);
|
|
+ tn = nf_tcp_pernet(net);
|
|
+ }
|
|
|
|
DEBUG_CHECK_MAGIC(feci, ECM_FRONT_END_CONNECTION_INSTANCE_MAGIC, "%px: magic failed", feci);
|
|
|
|
--- a/frontends/sfe/ecm_sfe_ported_ipv4.c
|
|
+++ b/frontends/sfe/ecm_sfe_ported_ipv4.c
|
|
@@ -339,10 +339,14 @@ static void ecm_sfe_ported_ipv4_connecti
|
|
uint8_t dest_mac_xlate[ETH_ALEN];
|
|
ecm_db_direction_t ecm_dir;
|
|
ecm_front_end_acceleration_mode_t result_mode;
|
|
- struct net *net = nf_ct_net(ct);
|
|
- struct nf_tcp_net *tn = nf_tcp_pernet(net);
|
|
+ struct nf_tcp_net *tn;
|
|
struct ecm_classifier_instance *aci;
|
|
struct ecm_classifier_rule_create ecrc;
|
|
+ if (ct) {
|
|
+ struct net *net = nf_ct_net(ct);
|
|
+ tn = nf_tcp_pernet(net);
|
|
+ }
|
|
+
|
|
uint32_t l2_accel_bits = (ECM_SFE_COMMON_FLOW_L2_ACCEL_ALLOWED | ECM_SFE_COMMON_RETURN_L2_ACCEL_ALLOWED);
|
|
ecm_sfe_common_l2_accel_check_callback_t l2_accel_check;
|
|
|
|
--- a/frontends/sfe/ecm_sfe_ported_ipv6.c
|
|
+++ b/frontends/sfe/ecm_sfe_ported_ipv6.c
|
|
@@ -345,11 +345,15 @@ static void ecm_sfe_ported_ipv6_connecti
|
|
struct ecm_classifier_instance *aci;
|
|
struct ecm_classifier_rule_create ecrc;
|
|
ecm_front_end_acceleration_mode_t result_mode;
|
|
- struct net *net = nf_ct_net(ct);
|
|
- struct nf_tcp_net *tn = nf_tcp_pernet(net);
|
|
+ struct nf_tcp_net *tn;
|
|
uint32_t l2_accel_bits = (ECM_SFE_COMMON_FLOW_L2_ACCEL_ALLOWED | ECM_SFE_COMMON_RETURN_L2_ACCEL_ALLOWED);
|
|
ecm_sfe_common_l2_accel_check_callback_t l2_accel_check;
|
|
|
|
+ if (ct) {
|
|
+ struct net *net = nf_ct_net(ct);
|
|
+ tn = nf_tcp_pernet(net);
|
|
+ }
|
|
+
|
|
DEBUG_CHECK_MAGIC(feci, ECM_FRONT_END_CONNECTION_INSTANCE_MAGIC, "%px: magic failed", feci);
|
|
|
|
/*
|