Blame view

net/netfilter/nf_nat_proto_unknown.c 1.5 KB
5b1158e90   Jozsef Kadlecsik   [NETFILTER]: Add ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  /* The "unknown" protocol.  This is what is used for protocols we
   * don't understand.  It's returned by ip_ct_find_proto().
   */
  
  /* (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/types.h>
  #include <linux/init.h>
  
  #include <linux/netfilter.h>
  #include <net/netfilter/nf_nat.h>
c7232c997   Patrick McHardy   netfilter: add pr...
18
  #include <net/netfilter/nf_nat_l4proto.h>
5b1158e90   Jozsef Kadlecsik   [NETFILTER]: Add ...
19

f2ea825f4   Jan Engelhardt   [NETFILTER]: nf_n...
20
21
22
23
  static bool unknown_in_range(const struct nf_conntrack_tuple *tuple,
  			     enum nf_nat_manip_type manip_type,
  			     const union nf_conntrack_man_proto *min,
  			     const union nf_conntrack_man_proto *max)
5b1158e90   Jozsef Kadlecsik   [NETFILTER]: Add ...
24
  {
f2ea825f4   Jan Engelhardt   [NETFILTER]: nf_n...
25
  	return true;
5b1158e90   Jozsef Kadlecsik   [NETFILTER]: Add ...
26
  }
c7232c997   Patrick McHardy   netfilter: add pr...
27
28
29
  static void unknown_unique_tuple(const struct nf_nat_l3proto *l3proto,
  				 struct nf_conntrack_tuple *tuple,
  				 const struct nf_nat_range *range,
f2ea825f4   Jan Engelhardt   [NETFILTER]: nf_n...
30
31
  				 enum nf_nat_manip_type maniptype,
  				 const struct nf_conn *ct)
5b1158e90   Jozsef Kadlecsik   [NETFILTER]: Add ...
32
33
  {
  	/* Sorry: we can't help you; if it's not unique, we can't frob
c7232c997   Patrick McHardy   netfilter: add pr...
34
35
  	 * anything.
  	 */
f43dc98b3   Changli Gao   netfilter: nf_nat...
36
  	return;
5b1158e90   Jozsef Kadlecsik   [NETFILTER]: Add ...
37
  }
f2ea825f4   Jan Engelhardt   [NETFILTER]: nf_n...
38
  static bool
3db05fea5   Herbert Xu   [NETFILTER]: Repl...
39
  unknown_manip_pkt(struct sk_buff *skb,
c7232c997   Patrick McHardy   netfilter: add pr...
40
41
  		  const struct nf_nat_l3proto *l3proto,
  		  unsigned int iphdroff, unsigned int hdroff,
5b1158e90   Jozsef Kadlecsik   [NETFILTER]: Add ...
42
43
44
  		  const struct nf_conntrack_tuple *tuple,
  		  enum nf_nat_manip_type maniptype)
  {
f2ea825f4   Jan Engelhardt   [NETFILTER]: nf_n...
45
  	return true;
5b1158e90   Jozsef Kadlecsik   [NETFILTER]: Add ...
46
  }
c7232c997   Patrick McHardy   netfilter: add pr...
47
  const struct nf_nat_l4proto nf_nat_l4proto_unknown = {
5b1158e90   Jozsef Kadlecsik   [NETFILTER]: Add ...
48
49
50
51
  	.manip_pkt		= unknown_manip_pkt,
  	.in_range		= unknown_in_range,
  	.unique_tuple		= unknown_unique_tuple,
  };