forked from mirrors/linux
		
	netfilter: nft_flow_offload: set liberal tracking mode for tcp
Without it, whenever a packet has to be pushed up the stack (e.g. because of mtu mismatch), then conntrack will flag packets as invalid, which in turn breaks NAT. Signed-off-by: Florian Westphal <fw@strlen.de> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
		
							parent
							
								
									e75b3e1c9b
								
							
						
					
					
						commit
						8437a6209f
					
				
					 1 changed files with 8 additions and 0 deletions
				
			
		| 
						 | 
					@ -72,6 +72,7 @@ static void nft_flow_offload_eval(const struct nft_expr *expr,
 | 
				
			||||||
	struct nf_flow_route route;
 | 
						struct nf_flow_route route;
 | 
				
			||||||
	struct flow_offload *flow;
 | 
						struct flow_offload *flow;
 | 
				
			||||||
	enum ip_conntrack_dir dir;
 | 
						enum ip_conntrack_dir dir;
 | 
				
			||||||
 | 
						bool is_tcp = false;
 | 
				
			||||||
	struct nf_conn *ct;
 | 
						struct nf_conn *ct;
 | 
				
			||||||
	int ret;
 | 
						int ret;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -84,6 +85,8 @@ static void nft_flow_offload_eval(const struct nft_expr *expr,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	switch (ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.dst.protonum) {
 | 
						switch (ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.dst.protonum) {
 | 
				
			||||||
	case IPPROTO_TCP:
 | 
						case IPPROTO_TCP:
 | 
				
			||||||
 | 
							is_tcp = true;
 | 
				
			||||||
 | 
							break;
 | 
				
			||||||
	case IPPROTO_UDP:
 | 
						case IPPROTO_UDP:
 | 
				
			||||||
		break;
 | 
							break;
 | 
				
			||||||
	default:
 | 
						default:
 | 
				
			||||||
| 
						 | 
					@ -108,6 +111,11 @@ static void nft_flow_offload_eval(const struct nft_expr *expr,
 | 
				
			||||||
	if (!flow)
 | 
						if (!flow)
 | 
				
			||||||
		goto err_flow_alloc;
 | 
							goto err_flow_alloc;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if (is_tcp) {
 | 
				
			||||||
 | 
							ct->proto.tcp.seen[0].flags |= IP_CT_TCP_FLAG_BE_LIBERAL;
 | 
				
			||||||
 | 
							ct->proto.tcp.seen[1].flags |= IP_CT_TCP_FLAG_BE_LIBERAL;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	ret = flow_offload_add(flowtable, flow);
 | 
						ret = flow_offload_add(flowtable, flow);
 | 
				
			||||||
	if (ret < 0)
 | 
						if (ret < 0)
 | 
				
			||||||
		goto err_flow_add;
 | 
							goto err_flow_add;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue