⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nf_nat_core.c

📁 linux 内核源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
/* NAT for netfilter; shared with compatibility layer. *//* (C) 1999-2001 Paul `Rusty' Russell * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */#include <linux/module.h>#include <linux/types.h>#include <linux/timer.h>#include <linux/skbuff.h>#include <net/checksum.h>#include <net/icmp.h>#include <net/ip.h>#include <net/tcp.h>  /* For tcp_prot in getorigdst */#include <linux/icmp.h>#include <linux/udp.h>#include <linux/jhash.h>#include <linux/netfilter_ipv4.h>#include <net/netfilter/nf_conntrack.h>#include <net/netfilter/nf_conntrack_core.h>#include <net/netfilter/nf_nat.h>#include <net/netfilter/nf_nat_protocol.h>#include <net/netfilter/nf_nat_core.h>#include <net/netfilter/nf_nat_helper.h>#include <net/netfilter/nf_conntrack_helper.h>#include <net/netfilter/nf_conntrack_l3proto.h>#include <net/netfilter/nf_conntrack_l4proto.h>static DEFINE_RWLOCK(nf_nat_lock);static struct nf_conntrack_l3proto *l3proto = NULL;/* Calculated at init based on memory size */static unsigned int nf_nat_htable_size;static int nf_nat_vmalloced;static struct hlist_head *bysource;#define MAX_IP_NAT_PROTO 256static struct nf_nat_protocol *nf_nat_protos[MAX_IP_NAT_PROTO];static inline struct nf_nat_protocol *__nf_nat_proto_find(u_int8_t protonum){	return rcu_dereference(nf_nat_protos[protonum]);}struct nf_nat_protocol *nf_nat_proto_find_get(u_int8_t protonum){	struct nf_nat_protocol *p;	rcu_read_lock();	p = __nf_nat_proto_find(protonum);	if (!try_module_get(p->me))		p = &nf_nat_unknown_protocol;	rcu_read_unlock();	return p;}EXPORT_SYMBOL_GPL(nf_nat_proto_find_get);voidnf_nat_proto_put(struct nf_nat_protocol *p){	module_put(p->me);}EXPORT_SYMBOL_GPL(nf_nat_proto_put);/* We keep an extra hash for each conntrack, for fast searching. */static inline unsigned inthash_by_src(const struct nf_conntrack_tuple *tuple){	/* Original src, to ensure we map it consistently if poss. */	return jhash_3words((__force u32)tuple->src.u3.ip,			    (__force u32)tuple->src.u.all,			    tuple->dst.protonum, 0) % nf_nat_htable_size;}/* Is this tuple already taken? (not by us) */intnf_nat_used_tuple(const struct nf_conntrack_tuple *tuple,		  const struct nf_conn *ignored_conntrack){	/* Conntrack tracking doesn't keep track of outgoing tuples; only	   incoming ones.  NAT means they don't have a fixed mapping,	   so we invert the tuple and look for the incoming reply.	   We could keep a separate hash if this proves too slow. */	struct nf_conntrack_tuple reply;	nf_ct_invert_tuplepr(&reply, tuple);	return nf_conntrack_tuple_taken(&reply, ignored_conntrack);}EXPORT_SYMBOL(nf_nat_used_tuple);/* If we source map this tuple so reply looks like reply_tuple, will * that meet the constraints of range. */static intin_range(const struct nf_conntrack_tuple *tuple,	 const struct nf_nat_range *range){	struct nf_nat_protocol *proto;	int ret = 0;	/* If we are supposed to map IPs, then we must be in the	   range specified, otherwise let this drag us onto a new src IP. */	if (range->flags & IP_NAT_RANGE_MAP_IPS) {		if (ntohl(tuple->src.u3.ip) < ntohl(range->min_ip) ||		    ntohl(tuple->src.u3.ip) > ntohl(range->max_ip))			return 0;	}	rcu_read_lock();	proto = __nf_nat_proto_find(tuple->dst.protonum);	if (!(range->flags & IP_NAT_RANGE_PROTO_SPECIFIED) ||	    proto->in_range(tuple, IP_NAT_MANIP_SRC,			    &range->min, &range->max))		ret = 1;	rcu_read_unlock();	return ret;}static inline intsame_src(const struct nf_conn *ct,	 const struct nf_conntrack_tuple *tuple){	const struct nf_conntrack_tuple *t;	t = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;	return (t->dst.protonum == tuple->dst.protonum &&		t->src.u3.ip == tuple->src.u3.ip &&		t->src.u.all == tuple->src.u.all);}/* Only called for SRC manip */static intfind_appropriate_src(const struct nf_conntrack_tuple *tuple,		     struct nf_conntrack_tuple *result,		     const struct nf_nat_range *range){	unsigned int h = hash_by_src(tuple);	struct nf_conn_nat *nat;	struct nf_conn *ct;	struct hlist_node *n;	read_lock_bh(&nf_nat_lock);	hlist_for_each_entry(nat, n, &bysource[h], bysource) {		ct = nat->ct;		if (same_src(ct, tuple)) {			/* Copy source part from reply tuple. */			nf_ct_invert_tuplepr(result,				       &ct->tuplehash[IP_CT_DIR_REPLY].tuple);			result->dst = tuple->dst;			if (in_range(result, range)) {				read_unlock_bh(&nf_nat_lock);				return 1;			}		}	}	read_unlock_bh(&nf_nat_lock);	return 0;}/* For [FUTURE] fragmentation handling, we want the least-used   src-ip/dst-ip/proto triple.  Fairness doesn't come into it.  Thus   if the range specifies 1.2.3.4 ports 10000-10005 and 1.2.3.5 ports   1-65535, we don't do pro-rata allocation based on ports; we choose   the ip with the lowest src-ip/dst-ip/proto usage.*/static voidfind_best_ips_proto(struct nf_conntrack_tuple *tuple,		    const struct nf_nat_range *range,		    const struct nf_conn *ct,		    enum nf_nat_manip_type maniptype){	__be32 *var_ipp;	/* Host order */	u_int32_t minip, maxip, j;	/* No IP mapping?  Do nothing. */	if (!(range->flags & IP_NAT_RANGE_MAP_IPS))		return;	if (maniptype == IP_NAT_MANIP_SRC)		var_ipp = &tuple->src.u3.ip;	else		var_ipp = &tuple->dst.u3.ip;	/* Fast path: only one choice. */	if (range->min_ip == range->max_ip) {		*var_ipp = range->min_ip;		return;	}	/* Hashing source and destination IPs gives a fairly even	 * spread in practice (if there are a small number of IPs	 * involved, there usually aren't that many connections	 * anyway).  The consistency means that servers see the same	 * client coming from the same IP (some Internet Banking sites	 * like this), even across reboots. */	minip = ntohl(range->min_ip);	maxip = ntohl(range->max_ip);	j = jhash_2words((__force u32)tuple->src.u3.ip,			 (__force u32)tuple->dst.u3.ip, 0);	*var_ipp = htonl(minip + j % (maxip - minip + 1));}/* Manipulate the tuple into the range given.  For NF_IP_POST_ROUTING, * we change the source to map into the range.  For NF_IP_PRE_ROUTING * and NF_IP_LOCAL_OUT, we change the destination to map into the * range.  It might not be possible to get a unique tuple, but we try. * At worst (or if we race), we will end up with a final duplicate in * __ip_conntrack_confirm and drop the packet. */static voidget_unique_tuple(struct nf_conntrack_tuple *tuple,		 const struct nf_conntrack_tuple *orig_tuple,		 const struct nf_nat_range *range,		 struct nf_conn *ct,		 enum nf_nat_manip_type maniptype){	struct nf_nat_protocol *proto;	/* 1) If this srcip/proto/src-proto-part is currently mapped,	   and that same mapping gives a unique tuple within the given	   range, use that.	   This is only required for source (ie. NAT/masq) mappings.	   So far, we don't do local source mappings, so multiple	   manips not an issue.  */	if (maniptype == IP_NAT_MANIP_SRC) {		if (find_appropriate_src(orig_tuple, tuple, range)) {			pr_debug("get_unique_tuple: Found current src map\n");			if (!(range->flags & IP_NAT_RANGE_PROTO_RANDOM))				if (!nf_nat_used_tuple(tuple, ct))					return;		}	}	/* 2) Select the least-used IP/proto combination in the given	   range. */	*tuple = *orig_tuple;	find_best_ips_proto(tuple, range, ct, maniptype);	/* 3) The per-protocol part of the manip is made to map into	   the range to make a unique tuple. */	rcu_read_lock();	proto = __nf_nat_proto_find(orig_tuple->dst.protonum);	/* Change protocol info to have some randomization */	if (range->flags & IP_NAT_RANGE_PROTO_RANDOM) {		proto->unique_tuple(tuple, range, maniptype, ct);		goto out;	}	/* Only bother mapping if it's not already in range and unique */	if ((!(range->flags & IP_NAT_RANGE_PROTO_SPECIFIED) ||	     proto->in_range(tuple, maniptype, &range->min, &range->max)) &&	    !nf_nat_used_tuple(tuple, ct))		goto out;	/* Last change: get protocol to try to obtain unique tuple. */	proto->unique_tuple(tuple, range, maniptype, ct);out:	rcu_read_unlock();}unsigned intnf_nat_setup_info(struct nf_conn *ct,		  const struct nf_nat_range *range,		  unsigned int hooknum){	struct nf_conntrack_tuple curr_tuple, new_tuple;	struct nf_conn_nat *nat;	int have_to_hash = !(ct->status & IPS_NAT_DONE_MASK);	enum nf_nat_manip_type maniptype = HOOK2MANIP(hooknum);	/* nat helper or nfctnetlink also setup binding */	nat = nfct_nat(ct);	if (!nat) {		nat = nf_ct_ext_add(ct, NF_CT_EXT_NAT, GFP_ATOMIC);		if (nat == NULL) {			pr_debug("failed to add NAT extension\n");			return NF_ACCEPT;		}	}	NF_CT_ASSERT(hooknum == NF_IP_PRE_ROUTING ||		     hooknum == NF_IP_POST_ROUTING ||		     hooknum == NF_IP_LOCAL_IN ||		     hooknum == NF_IP_LOCAL_OUT);	BUG_ON(nf_nat_initialized(ct, maniptype));	/* What we've got will look like inverse of reply. Normally	   this is what is in the conntrack, except for prior	   manipulations (future optimization: if num_manips == 0,	   orig_tp =	   conntrack->tuplehash[IP_CT_DIR_ORIGINAL].tuple) */	nf_ct_invert_tuplepr(&curr_tuple,			     &ct->tuplehash[IP_CT_DIR_REPLY].tuple);	get_unique_tuple(&new_tuple, &curr_tuple, range, ct, maniptype);	if (!nf_ct_tuple_equal(&new_tuple, &curr_tuple)) {		struct nf_conntrack_tuple reply;		/* Alter conntrack table so will recognize replies. */		nf_ct_invert_tuplepr(&reply, &new_tuple);		nf_conntrack_alter_reply(ct, &reply);		/* Non-atomic: we own this at the moment. */		if (maniptype == IP_NAT_MANIP_SRC)			ct->status |= IPS_SRC_NAT;		else			ct->status |= IPS_DST_NAT;	}	/* Place in source hash if this is the first time. */	if (have_to_hash) {		unsigned int srchash;		srchash = hash_by_src(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);		write_lock_bh(&nf_nat_lock);		/* nf_conntrack_alter_reply might re-allocate exntension aera */		nat = nfct_nat(ct);		nat->ct = ct;		hlist_add_head(&nat->bysource, &bysource[srchash]);		write_unlock_bh(&nf_nat_lock);	}	/* It's done. */	if (maniptype == IP_NAT_MANIP_DST)		set_bit(IPS_DST_NAT_DONE_BIT, &ct->status);	else		set_bit(IPS_SRC_NAT_DONE_BIT, &ct->status);	return NF_ACCEPT;}EXPORT_SYMBOL(nf_nat_setup_info);/* Returns true if succeeded. */static int

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -